composer.lock 563 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746137471374813749137501375113752137531375413755137561375713758137591376013761137621376313764137651376613767137681376913770137711377213773137741377513776137771377813779137801378113782137831378413785137861378713788137891379013791137921379313794137951379613797137981379913800138011380213803138041380513806138071380813809138101381113812138131381413815138161381713818138191382013821138221382313824138251382613827138281382913830138311383213833138341383513836138371383813839138401384113842138431384413845138461384713848138491385013851138521385313854138551385613857138581385913860138611386213863138641386513866138671386813869138701387113872138731387413875138761387713878138791388013881138821388313884138851388613887138881388913890138911389213893138941389513896138971389813899139001390113902139031390413905139061390713908139091391013911139121391313914139151391613917139181391913920139211392213923139241392513926139271392813929139301393113932139331393413935139361393713938139391394013941139421394313944139451394613947139481394913950139511395213953139541395513956139571395813959139601396113962139631396413965139661396713968139691397013971139721397313974139751397613977139781397913980139811398213983139841398513986139871398813989139901399113992139931399413995139961399713998139991400014001140021400314004140051400614007140081400914010140111401214013140141401514016140171401814019140201402114022140231402414025140261402714028140291403014031140321403314034140351403614037140381403914040140411404214043140441404514046140471404814049140501405114052140531405414055140561405714058140591406014061140621406314064140651406614067140681406914070140711407214073140741407514076140771407814079140801408114082140831408414085140861408714088140891409014091140921409314094140951409614097140981409914100141011410214103141041410514106141071410814109141101411114112141131411414115141161411714118141191412014121141221412314124141251412614127141281412914130141311413214133141341413514136141371413814139141401414114142141431414414145141461414714148141491415014151141521415314154141551415614157141581415914160141611416214163141641416514166141671416814169141701417114172141731417414175141761417714178141791418014181141821418314184141851418614187141881418914190141911419214193141941419514196141971419814199142001420114202142031420414205142061420714208142091421014211142121421314214142151421614217142181421914220142211422214223142241422514226142271422814229142301423114232142331423414235142361423714238142391424014241142421424314244142451424614247142481424914250142511425214253142541425514256142571425814259142601426114262142631426414265142661426714268142691427014271142721427314274142751427614277142781427914280142811428214283142841428514286142871428814289142901429114292142931429414295142961429714298142991430014301143021430314304143051430614307143081430914310143111431214313143141431514316143171431814319143201432114322143231432414325143261432714328143291433014331143321433314334143351433614337143381433914340143411434214343143441434514346143471434814349143501435114352143531435414355143561435714358143591436014361143621436314364143651436614367143681436914370143711437214373143741437514376143771437814379143801438114382143831438414385143861438714388143891439014391143921439314394143951439614397143981439914400144011440214403144041440514406144071440814409144101441114412144131441414415144161441714418144191442014421144221442314424144251442614427144281442914430144311443214433144341443514436144371443814439144401444114442144431444414445144461444714448144491445014451144521445314454144551445614457144581445914460144611446214463144641446514466144671446814469144701447114472144731447414475144761447714478144791448014481144821448314484144851448614487144881448914490144911449214493144941449514496144971449814499145001450114502145031450414505145061450714508145091451014511145121451314514145151451614517145181451914520145211452214523145241452514526145271452814529145301453114532145331453414535145361453714538145391454014541145421454314544145451454614547145481454914550145511455214553145541455514556145571455814559145601456114562145631456414565145661456714568145691457014571145721457314574145751457614577145781457914580145811458214583145841458514586145871458814589145901459114592145931459414595145961459714598145991460014601146021460314604146051460614607146081460914610146111461214613146141461514616146171461814619146201462114622146231462414625146261462714628146291463014631146321463314634146351463614637146381463914640146411464214643146441464514646146471464814649146501465114652146531465414655146561465714658146591466014661146621466314664146651466614667146681466914670146711467214673146741467514676146771467814679146801468114682146831468414685146861468714688146891469014691146921469314694146951469614697146981469914700147011470214703147041470514706147071470814709147101471114712147131471414715147161471714718147191472014721147221472314724147251472614727147281472914730147311473214733147341473514736147371473814739147401474114742147431474414745147461474714748147491475014751147521475314754147551475614757147581475914760147611476214763147641476514766147671476814769147701477114772147731477414775147761477714778147791478014781147821478314784147851478614787147881478914790147911479214793147941479514796147971479814799148001480114802148031480414805148061480714808148091481014811148121481314814148151481614817148181481914820148211482214823148241482514826148271482814829148301483114832148331483414835148361483714838148391484014841148421484314844148451484614847148481484914850148511485214853148541485514856148571485814859148601486114862148631486414865148661486714868148691487014871148721487314874148751487614877148781487914880148811488214883148841488514886148871488814889148901489114892148931489414895148961489714898148991490014901149021490314904149051490614907149081490914910149111491214913149141491514916149171491814919149201492114922149231492414925149261492714928149291493014931149321493314934149351493614937149381493914940149411494214943149441494514946149471494814949149501495114952149531495414955149561495714958149591496014961149621496314964149651496614967149681496914970149711497214973149741497514976149771497814979149801498114982149831498414985149861498714988149891499014991149921499314994149951499614997149981499915000150011500215003150041500515006150071500815009150101501115012150131501415015150161501715018150191502015021150221502315024150251502615027150281502915030150311503215033150341503515036150371503815039150401504115042150431504415045150461504715048150491505015051150521505315054150551505615057150581505915060150611506215063150641506515066150671506815069150701507115072150731507415075150761507715078150791508015081150821508315084150851508615087150881508915090150911509215093150941509515096150971509815099151001510115102151031510415105151061510715108151091511015111151121511315114151151511615117151181511915120151211512215123151241512515126151271512815129151301513115132151331513415135151361513715138151391514015141151421514315144151451514615147151481514915150151511515215153151541515515156151571515815159151601516115162151631516415165151661516715168151691517015171151721517315174151751517615177151781517915180151811518215183151841518515186151871518815189151901519115192151931519415195151961519715198151991520015201152021520315204152051520615207152081520915210152111521215213152141521515216152171521815219152201522115222152231522415225152261522715228152291523015231152321523315234152351523615237152381523915240152411524215243152441524515246152471524815249152501525115252152531525415255152561525715258152591526015261152621526315264152651526615267152681526915270
  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": "c05df6e03a5264e2df33d35cac9991b2",
  8. "packages": [
  9. {
  10. "name": "alchemy/zippy",
  11. "version": "0.4.9",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/alchemy-fr/Zippy.git",
  15. "reference": "59fbeefb9a249122867ef25e53addfcce31850d7"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/alchemy-fr/Zippy/zipball/59fbeefb9a249122867ef25e53addfcce31850d7",
  20. "reference": "59fbeefb9a249122867ef25e53addfcce31850d7",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "doctrine/collections": "~1.0",
  25. "php": ">=5.5",
  26. "symfony/filesystem": "^2.0.5 || ^3.0 || ^4.0",
  27. "symfony/polyfill-mbstring": "^1.3",
  28. "symfony/process": "^2.1 || ^3.0 || ^4.0"
  29. },
  30. "require-dev": {
  31. "ext-zip": "*",
  32. "guzzle/guzzle": "~3.0",
  33. "guzzlehttp/guzzle": "^6.0",
  34. "phpunit/phpunit": "^4.0 || ^5.0",
  35. "symfony/finder": "^2.0.5 || ^3.0 || ^4.0"
  36. },
  37. "suggest": {
  38. "ext-zip": "To use the ZipExtensionAdapter",
  39. "guzzle/guzzle": "To use the GuzzleTeleporter with Guzzle 3",
  40. "guzzlehttp/guzzle": "To use the GuzzleTeleporter with Guzzle 6"
  41. },
  42. "type": "library",
  43. "extra": {
  44. "branch-alias": {
  45. "dev-master": "0.4.x-dev"
  46. }
  47. },
  48. "autoload": {
  49. "psr-4": {
  50. "Alchemy\\Zippy\\": "src/"
  51. }
  52. },
  53. "notification-url": "https://packagist.org/downloads/",
  54. "license": [
  55. "MIT"
  56. ],
  57. "authors": [
  58. {
  59. "name": "Alchemy",
  60. "email": "dev.team@alchemy.fr",
  61. "homepage": "http://www.alchemy.fr/"
  62. }
  63. ],
  64. "description": "Zippy, the archive manager companion",
  65. "keywords": [
  66. "bzip",
  67. "compression",
  68. "tar",
  69. "zip"
  70. ],
  71. "support": {
  72. "issues": "https://github.com/alchemy-fr/Zippy/issues",
  73. "source": "https://github.com/alchemy-fr/Zippy/tree/master"
  74. },
  75. "time": "2018-02-22T13:58:36+00:00"
  76. },
  77. {
  78. "name": "asm89/stack-cors",
  79. "version": "1.3.0",
  80. "source": {
  81. "type": "git",
  82. "url": "https://github.com/asm89/stack-cors.git",
  83. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08"
  84. },
  85. "dist": {
  86. "type": "zip",
  87. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/b9c31def6a83f84b4d4a40d35996d375755f0e08",
  88. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08",
  89. "shasum": ""
  90. },
  91. "require": {
  92. "php": ">=5.5.9",
  93. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  94. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  95. },
  96. "require-dev": {
  97. "phpunit/phpunit": "^5.0 || ^4.8.10",
  98. "squizlabs/php_codesniffer": "^2.3"
  99. },
  100. "type": "library",
  101. "extra": {
  102. "branch-alias": {
  103. "dev-master": "1.2-dev"
  104. }
  105. },
  106. "autoload": {
  107. "psr-4": {
  108. "Asm89\\Stack\\": "src/Asm89/Stack/"
  109. }
  110. },
  111. "notification-url": "https://packagist.org/downloads/",
  112. "license": [
  113. "MIT"
  114. ],
  115. "authors": [
  116. {
  117. "name": "Alexander",
  118. "email": "iam.asm89@gmail.com"
  119. }
  120. ],
  121. "description": "Cross-origin resource sharing library and stack middleware",
  122. "homepage": "https://github.com/asm89/stack-cors",
  123. "keywords": [
  124. "cors",
  125. "stack"
  126. ],
  127. "support": {
  128. "issues": "https://github.com/asm89/stack-cors/issues",
  129. "source": "https://github.com/asm89/stack-cors/tree/1.3.0"
  130. },
  131. "time": "2019-12-24T22:41:47+00:00"
  132. },
  133. {
  134. "name": "chi-teck/drupal-code-generator",
  135. "version": "1.33.1",
  136. "source": {
  137. "type": "git",
  138. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  139. "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388"
  140. },
  141. "dist": {
  142. "type": "zip",
  143. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/5f814e980b6f9cf1ca8c74cc9385c3d81090d388",
  144. "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388",
  145. "shasum": ""
  146. },
  147. "require": {
  148. "ext-json": "*",
  149. "php": ">=5.5.9",
  150. "symfony/console": "^3.4 || ^4.0",
  151. "symfony/filesystem": "^2.7 || ^3.4 || ^4.0",
  152. "twig/twig": "^1.41 || ^2.12"
  153. },
  154. "conflict": {
  155. "drush/drush": "< 10.3.2"
  156. },
  157. "bin": [
  158. "bin/dcg"
  159. ],
  160. "type": "library",
  161. "extra": {
  162. "branch-alias": {
  163. "dev-master": "1.x-dev"
  164. }
  165. },
  166. "autoload": {
  167. "files": [
  168. "src/bootstrap.php"
  169. ],
  170. "psr-4": {
  171. "DrupalCodeGenerator\\": "src"
  172. }
  173. },
  174. "notification-url": "https://packagist.org/downloads/",
  175. "license": [
  176. "GPL-2.0-or-later"
  177. ],
  178. "description": "Drupal code generator",
  179. "support": {
  180. "issues": "https://github.com/Chi-teck/drupal-code-generator/issues",
  181. "source": "https://github.com/Chi-teck/drupal-code-generator/tree/1.33.1"
  182. },
  183. "time": "2020-12-05T05:59:11+00:00"
  184. },
  185. {
  186. "name": "clue/stream-filter",
  187. "version": "v1.6.0",
  188. "source": {
  189. "type": "git",
  190. "url": "https://github.com/clue/stream-filter.git",
  191. "reference": "d6169430c7731d8509da7aecd0af756a5747b78e"
  192. },
  193. "dist": {
  194. "type": "zip",
  195. "url": "https://api.github.com/repos/clue/stream-filter/zipball/d6169430c7731d8509da7aecd0af756a5747b78e",
  196. "reference": "d6169430c7731d8509da7aecd0af756a5747b78e",
  197. "shasum": ""
  198. },
  199. "require": {
  200. "php": ">=5.3"
  201. },
  202. "require-dev": {
  203. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.36"
  204. },
  205. "type": "library",
  206. "autoload": {
  207. "files": [
  208. "src/functions_include.php"
  209. ],
  210. "psr-4": {
  211. "Clue\\StreamFilter\\": "src/"
  212. }
  213. },
  214. "notification-url": "https://packagist.org/downloads/",
  215. "license": [
  216. "MIT"
  217. ],
  218. "authors": [
  219. {
  220. "name": "Christian Lück",
  221. "email": "christian@clue.engineering"
  222. }
  223. ],
  224. "description": "A simple and modern approach to stream filtering in PHP",
  225. "homepage": "https://github.com/clue/php-stream-filter",
  226. "keywords": [
  227. "bucket brigade",
  228. "callback",
  229. "filter",
  230. "php_user_filter",
  231. "stream",
  232. "stream_filter_append",
  233. "stream_filter_register"
  234. ],
  235. "support": {
  236. "issues": "https://github.com/clue/stream-filter/issues",
  237. "source": "https://github.com/clue/stream-filter/tree/v1.6.0"
  238. },
  239. "funding": [
  240. {
  241. "url": "https://clue.engineering/support",
  242. "type": "custom"
  243. },
  244. {
  245. "url": "https://github.com/clue",
  246. "type": "github"
  247. }
  248. ],
  249. "time": "2022-02-21T13:15:14+00:00"
  250. },
  251. {
  252. "name": "commerceguys/addressing",
  253. "version": "v1.4.2",
  254. "source": {
  255. "type": "git",
  256. "url": "https://github.com/commerceguys/addressing.git",
  257. "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308"
  258. },
  259. "dist": {
  260. "type": "zip",
  261. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/406c7b5f0fbe4f6a64155c0fe03b1adb34d01308",
  262. "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308",
  263. "shasum": ""
  264. },
  265. "require": {
  266. "doctrine/collections": "^1.2 || ^2.0",
  267. "php": ">=7.3"
  268. },
  269. "require-dev": {
  270. "ext-json": "*",
  271. "mikey179/vfsstream": "^1.6.10",
  272. "phpunit/phpunit": "^9.5",
  273. "squizlabs/php_codesniffer": "^3.6",
  274. "symfony/validator": "^4.4 || ^5.4 || ^6.0"
  275. },
  276. "suggest": {
  277. "symfony/validator": "to validate addresses"
  278. },
  279. "type": "library",
  280. "extra": {
  281. "branch-alias": {
  282. "dev-master": "1.x-dev"
  283. }
  284. },
  285. "autoload": {
  286. "psr-4": {
  287. "CommerceGuys\\Addressing\\": "src"
  288. }
  289. },
  290. "notification-url": "https://packagist.org/downloads/",
  291. "license": [
  292. "MIT"
  293. ],
  294. "authors": [
  295. {
  296. "name": "Bojan Zivanovic"
  297. },
  298. {
  299. "name": "Damien Tournoud"
  300. }
  301. ],
  302. "description": "Addressing library powered by CLDR and Google's address data.",
  303. "keywords": [
  304. "address",
  305. "internationalization",
  306. "localization",
  307. "postal"
  308. ],
  309. "support": {
  310. "issues": "https://github.com/commerceguys/addressing/issues",
  311. "source": "https://github.com/commerceguys/addressing/tree/v1.4.2"
  312. },
  313. "time": "2023-02-15T10:11:14+00:00"
  314. },
  315. {
  316. "name": "components/highlightjs",
  317. "version": "9.7.0",
  318. "dist": {
  319. "type": "zip",
  320. "url": "https://github.com/components/highlightjs/archive/9.7.0.zip"
  321. },
  322. "type": "drupal-library"
  323. },
  324. {
  325. "name": "composer/installers",
  326. "version": "v1.12.0",
  327. "source": {
  328. "type": "git",
  329. "url": "https://github.com/composer/installers.git",
  330. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19"
  331. },
  332. "dist": {
  333. "type": "zip",
  334. "url": "https://api.github.com/repos/composer/installers/zipball/d20a64ed3c94748397ff5973488761b22f6d3f19",
  335. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19",
  336. "shasum": ""
  337. },
  338. "require": {
  339. "composer-plugin-api": "^1.0 || ^2.0"
  340. },
  341. "replace": {
  342. "roundcube/plugin-installer": "*",
  343. "shama/baton": "*"
  344. },
  345. "require-dev": {
  346. "composer/composer": "1.6.* || ^2.0",
  347. "composer/semver": "^1 || ^3",
  348. "phpstan/phpstan": "^0.12.55",
  349. "phpstan/phpstan-phpunit": "^0.12.16",
  350. "symfony/phpunit-bridge": "^4.2 || ^5",
  351. "symfony/process": "^2.3"
  352. },
  353. "type": "composer-plugin",
  354. "extra": {
  355. "class": "Composer\\Installers\\Plugin",
  356. "branch-alias": {
  357. "dev-main": "1.x-dev"
  358. }
  359. },
  360. "autoload": {
  361. "psr-4": {
  362. "Composer\\Installers\\": "src/Composer/Installers"
  363. }
  364. },
  365. "notification-url": "https://packagist.org/downloads/",
  366. "license": [
  367. "MIT"
  368. ],
  369. "authors": [
  370. {
  371. "name": "Kyle Robinson Young",
  372. "email": "kyle@dontkry.com",
  373. "homepage": "https://github.com/shama"
  374. }
  375. ],
  376. "description": "A multi-framework Composer library installer",
  377. "homepage": "https://composer.github.io/installers/",
  378. "keywords": [
  379. "Craft",
  380. "Dolibarr",
  381. "Eliasis",
  382. "Hurad",
  383. "ImageCMS",
  384. "Kanboard",
  385. "Lan Management System",
  386. "MODX Evo",
  387. "MantisBT",
  388. "Mautic",
  389. "Maya",
  390. "OXID",
  391. "Plentymarkets",
  392. "Porto",
  393. "RadPHP",
  394. "SMF",
  395. "Starbug",
  396. "Thelia",
  397. "Whmcs",
  398. "WolfCMS",
  399. "agl",
  400. "aimeos",
  401. "annotatecms",
  402. "attogram",
  403. "bitrix",
  404. "cakephp",
  405. "chef",
  406. "cockpit",
  407. "codeigniter",
  408. "concrete5",
  409. "croogo",
  410. "dokuwiki",
  411. "drupal",
  412. "eZ Platform",
  413. "elgg",
  414. "expressionengine",
  415. "fuelphp",
  416. "grav",
  417. "installer",
  418. "itop",
  419. "joomla",
  420. "known",
  421. "kohana",
  422. "laravel",
  423. "lavalite",
  424. "lithium",
  425. "magento",
  426. "majima",
  427. "mako",
  428. "mediawiki",
  429. "miaoxing",
  430. "modulework",
  431. "modx",
  432. "moodle",
  433. "osclass",
  434. "pantheon",
  435. "phpbb",
  436. "piwik",
  437. "ppi",
  438. "processwire",
  439. "puppet",
  440. "pxcms",
  441. "reindex",
  442. "roundcube",
  443. "shopware",
  444. "silverstripe",
  445. "sydes",
  446. "sylius",
  447. "symfony",
  448. "tastyigniter",
  449. "typo3",
  450. "wordpress",
  451. "yawik",
  452. "zend",
  453. "zikula"
  454. ],
  455. "support": {
  456. "issues": "https://github.com/composer/installers/issues",
  457. "source": "https://github.com/composer/installers/tree/v1.12.0"
  458. },
  459. "funding": [
  460. {
  461. "url": "https://packagist.com",
  462. "type": "custom"
  463. },
  464. {
  465. "url": "https://github.com/composer",
  466. "type": "github"
  467. },
  468. {
  469. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  470. "type": "tidelift"
  471. }
  472. ],
  473. "time": "2021-09-13T08:19:44+00:00"
  474. },
  475. {
  476. "name": "composer/semver",
  477. "version": "3.3.2",
  478. "source": {
  479. "type": "git",
  480. "url": "https://github.com/composer/semver.git",
  481. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9"
  482. },
  483. "dist": {
  484. "type": "zip",
  485. "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9",
  486. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9",
  487. "shasum": ""
  488. },
  489. "require": {
  490. "php": "^5.3.2 || ^7.0 || ^8.0"
  491. },
  492. "require-dev": {
  493. "phpstan/phpstan": "^1.4",
  494. "symfony/phpunit-bridge": "^4.2 || ^5"
  495. },
  496. "type": "library",
  497. "extra": {
  498. "branch-alias": {
  499. "dev-main": "3.x-dev"
  500. }
  501. },
  502. "autoload": {
  503. "psr-4": {
  504. "Composer\\Semver\\": "src"
  505. }
  506. },
  507. "notification-url": "https://packagist.org/downloads/",
  508. "license": [
  509. "MIT"
  510. ],
  511. "authors": [
  512. {
  513. "name": "Nils Adermann",
  514. "email": "naderman@naderman.de",
  515. "homepage": "http://www.naderman.de"
  516. },
  517. {
  518. "name": "Jordi Boggiano",
  519. "email": "j.boggiano@seld.be",
  520. "homepage": "http://seld.be"
  521. },
  522. {
  523. "name": "Rob Bast",
  524. "email": "rob.bast@gmail.com",
  525. "homepage": "http://robbast.nl"
  526. }
  527. ],
  528. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  529. "keywords": [
  530. "semantic",
  531. "semver",
  532. "validation",
  533. "versioning"
  534. ],
  535. "support": {
  536. "irc": "irc://irc.freenode.org/composer",
  537. "issues": "https://github.com/composer/semver/issues",
  538. "source": "https://github.com/composer/semver/tree/3.3.2"
  539. },
  540. "funding": [
  541. {
  542. "url": "https://packagist.com",
  543. "type": "custom"
  544. },
  545. {
  546. "url": "https://github.com/composer",
  547. "type": "github"
  548. },
  549. {
  550. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  551. "type": "tidelift"
  552. }
  553. ],
  554. "time": "2022-04-01T19:23:25+00:00"
  555. },
  556. {
  557. "name": "consolidation/annotated-command",
  558. "version": "4.9.1",
  559. "source": {
  560. "type": "git",
  561. "url": "https://github.com/consolidation/annotated-command.git",
  562. "reference": "e01152f698eff4cb5df3ebfe5e097ef335dbd3c9"
  563. },
  564. "dist": {
  565. "type": "zip",
  566. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/e01152f698eff4cb5df3ebfe5e097ef335dbd3c9",
  567. "reference": "e01152f698eff4cb5df3ebfe5e097ef335dbd3c9",
  568. "shasum": ""
  569. },
  570. "require": {
  571. "consolidation/output-formatters": "^4.3.1",
  572. "php": ">=7.1.3",
  573. "psr/log": "^1 || ^2 || ^3",
  574. "symfony/console": "^4.4.8 || ^5 || ^6",
  575. "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6",
  576. "symfony/finder": "^4.4.8 || ^5 || ^6"
  577. },
  578. "require-dev": {
  579. "composer-runtime-api": "^2.0",
  580. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  581. "squizlabs/php_codesniffer": "^3",
  582. "yoast/phpunit-polyfills": "^0.2.0"
  583. },
  584. "type": "library",
  585. "extra": {
  586. "branch-alias": {
  587. "dev-main": "4.x-dev"
  588. }
  589. },
  590. "autoload": {
  591. "psr-4": {
  592. "Consolidation\\AnnotatedCommand\\": "src"
  593. }
  594. },
  595. "notification-url": "https://packagist.org/downloads/",
  596. "license": [
  597. "MIT"
  598. ],
  599. "authors": [
  600. {
  601. "name": "Greg Anderson",
  602. "email": "greg.1.anderson@greenknowe.org"
  603. }
  604. ],
  605. "description": "Initialize Symfony Console commands from annotated command class methods.",
  606. "support": {
  607. "issues": "https://github.com/consolidation/annotated-command/issues",
  608. "source": "https://github.com/consolidation/annotated-command/tree/4.9.1"
  609. },
  610. "time": "2023-05-20T04:19:01+00:00"
  611. },
  612. {
  613. "name": "consolidation/config",
  614. "version": "1.2.1",
  615. "source": {
  616. "type": "git",
  617. "url": "https://github.com/consolidation/config.git",
  618. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  619. },
  620. "dist": {
  621. "type": "zip",
  622. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  623. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  624. "shasum": ""
  625. },
  626. "require": {
  627. "dflydev/dot-access-data": "^1.1.0",
  628. "grasmash/expander": "^1",
  629. "php": ">=5.4.0"
  630. },
  631. "require-dev": {
  632. "g1a/composer-test-scenarios": "^3",
  633. "php-coveralls/php-coveralls": "^1",
  634. "phpunit/phpunit": "^5",
  635. "squizlabs/php_codesniffer": "2.*",
  636. "symfony/console": "^2.5|^3|^4",
  637. "symfony/yaml": "^2.8.11|^3|^4"
  638. },
  639. "suggest": {
  640. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  641. },
  642. "type": "library",
  643. "extra": {
  644. "scenarios": {
  645. "symfony4": {
  646. "require-dev": {
  647. "symfony/console": "^4.0"
  648. },
  649. "config": {
  650. "platform": {
  651. "php": "7.1.3"
  652. }
  653. }
  654. },
  655. "symfony2": {
  656. "require-dev": {
  657. "symfony/console": "^2.8",
  658. "symfony/event-dispatcher": "^2.8",
  659. "phpunit/phpunit": "^4.8.36"
  660. },
  661. "remove": [
  662. "php-coveralls/php-coveralls"
  663. ],
  664. "config": {
  665. "platform": {
  666. "php": "5.4.8"
  667. }
  668. }
  669. }
  670. },
  671. "branch-alias": {
  672. "dev-master": "1.x-dev"
  673. }
  674. },
  675. "autoload": {
  676. "psr-4": {
  677. "Consolidation\\Config\\": "src"
  678. }
  679. },
  680. "notification-url": "https://packagist.org/downloads/",
  681. "license": [
  682. "MIT"
  683. ],
  684. "authors": [
  685. {
  686. "name": "Greg Anderson",
  687. "email": "greg.1.anderson@greenknowe.org"
  688. }
  689. ],
  690. "description": "Provide configuration services for a commandline tool.",
  691. "support": {
  692. "issues": "https://github.com/consolidation/config/issues",
  693. "source": "https://github.com/consolidation/config/tree/master"
  694. },
  695. "time": "2019-03-03T19:37:04+00:00"
  696. },
  697. {
  698. "name": "consolidation/filter-via-dot-access-data",
  699. "version": "1.0.0",
  700. "source": {
  701. "type": "git",
  702. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  703. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  704. },
  705. "dist": {
  706. "type": "zip",
  707. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  708. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  709. "shasum": ""
  710. },
  711. "require": {
  712. "dflydev/dot-access-data": "^1.1.0",
  713. "php": ">=5.5.0"
  714. },
  715. "require-dev": {
  716. "consolidation/robo": "^1.2.3",
  717. "g1a/composer-test-scenarios": "^3",
  718. "knplabs/github-api": "^2.7",
  719. "php-coveralls/php-coveralls": "^1",
  720. "php-http/guzzle6-adapter": "^1.1",
  721. "phpunit/phpunit": "^5",
  722. "squizlabs/php_codesniffer": "^2.8",
  723. "symfony/console": "^2.8|^3|^4"
  724. },
  725. "type": "library",
  726. "extra": {
  727. "scenarios": {
  728. "phpunit5": {
  729. "require-dev": {
  730. "phpunit/phpunit": "^5.7.27"
  731. },
  732. "remove": [
  733. "php-coveralls/php-coveralls"
  734. ],
  735. "config": {
  736. "platform": {
  737. "php": "5.6.33"
  738. }
  739. }
  740. }
  741. },
  742. "branch-alias": {
  743. "dev-master": "1.x-dev"
  744. }
  745. },
  746. "autoload": {
  747. "psr-4": {
  748. "Consolidation\\Filter\\": "src"
  749. }
  750. },
  751. "notification-url": "https://packagist.org/downloads/",
  752. "license": [
  753. "MIT"
  754. ],
  755. "authors": [
  756. {
  757. "name": "Greg Anderson",
  758. "email": "greg.1.anderson@greenknowe.org"
  759. }
  760. ],
  761. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  762. "support": {
  763. "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/1.0.0"
  764. },
  765. "time": "2019-01-18T06:05:07+00:00"
  766. },
  767. {
  768. "name": "consolidation/log",
  769. "version": "2.1.1",
  770. "source": {
  771. "type": "git",
  772. "url": "https://github.com/consolidation/log.git",
  773. "reference": "3ad08dc57e8aff9400111bad36beb0ed387fe6a9"
  774. },
  775. "dist": {
  776. "type": "zip",
  777. "url": "https://api.github.com/repos/consolidation/log/zipball/3ad08dc57e8aff9400111bad36beb0ed387fe6a9",
  778. "reference": "3ad08dc57e8aff9400111bad36beb0ed387fe6a9",
  779. "shasum": ""
  780. },
  781. "require": {
  782. "php": ">=7.1.3",
  783. "psr/log": "^1 || ^2",
  784. "symfony/console": "^4 || ^5 || ^6"
  785. },
  786. "require-dev": {
  787. "phpunit/phpunit": ">=7.5.20",
  788. "squizlabs/php_codesniffer": "^3",
  789. "yoast/phpunit-polyfills": "^0.2.0"
  790. },
  791. "type": "library",
  792. "extra": {
  793. "branch-alias": {
  794. "dev-main": "2.x-dev"
  795. }
  796. },
  797. "autoload": {
  798. "psr-4": {
  799. "Consolidation\\Log\\": "src"
  800. }
  801. },
  802. "notification-url": "https://packagist.org/downloads/",
  803. "license": [
  804. "MIT"
  805. ],
  806. "authors": [
  807. {
  808. "name": "Greg Anderson",
  809. "email": "greg.1.anderson@greenknowe.org"
  810. }
  811. ],
  812. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  813. "support": {
  814. "issues": "https://github.com/consolidation/log/issues",
  815. "source": "https://github.com/consolidation/log/tree/2.1.1"
  816. },
  817. "time": "2022-02-24T04:27:32+00:00"
  818. },
  819. {
  820. "name": "consolidation/output-formatters",
  821. "version": "4.3.2",
  822. "source": {
  823. "type": "git",
  824. "url": "https://github.com/consolidation/output-formatters.git",
  825. "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58"
  826. },
  827. "dist": {
  828. "type": "zip",
  829. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/06711568b4cd169700ff7e8075db0a9a341ceb58",
  830. "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58",
  831. "shasum": ""
  832. },
  833. "require": {
  834. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  835. "php": ">=7.1.3",
  836. "symfony/console": "^4 || ^5 || ^6",
  837. "symfony/finder": "^4 || ^5 || ^6"
  838. },
  839. "require-dev": {
  840. "php-coveralls/php-coveralls": "^2.4.2",
  841. "phpunit/phpunit": "^7 || ^8 || ^9",
  842. "squizlabs/php_codesniffer": "^3",
  843. "symfony/var-dumper": "^4 || ^5 || ^6",
  844. "symfony/yaml": "^4 || ^5 || ^6",
  845. "yoast/phpunit-polyfills": "^1"
  846. },
  847. "suggest": {
  848. "symfony/var-dumper": "For using the var_dump formatter"
  849. },
  850. "type": "library",
  851. "autoload": {
  852. "psr-4": {
  853. "Consolidation\\OutputFormatters\\": "src"
  854. }
  855. },
  856. "notification-url": "https://packagist.org/downloads/",
  857. "license": [
  858. "MIT"
  859. ],
  860. "authors": [
  861. {
  862. "name": "Greg Anderson",
  863. "email": "greg.1.anderson@greenknowe.org"
  864. }
  865. ],
  866. "description": "Format text by applying transformations provided by plug-in formatters.",
  867. "support": {
  868. "issues": "https://github.com/consolidation/output-formatters/issues",
  869. "source": "https://github.com/consolidation/output-formatters/tree/4.3.2"
  870. },
  871. "time": "2023-07-06T04:45:41+00:00"
  872. },
  873. {
  874. "name": "consolidation/robo",
  875. "version": "3.0.12",
  876. "source": {
  877. "type": "git",
  878. "url": "https://github.com/consolidation/robo.git",
  879. "reference": "0c3a5085357f46c90a0b756e3d326f44847158b8"
  880. },
  881. "dist": {
  882. "type": "zip",
  883. "url": "https://api.github.com/repos/consolidation/robo/zipball/0c3a5085357f46c90a0b756e3d326f44847158b8",
  884. "reference": "0c3a5085357f46c90a0b756e3d326f44847158b8",
  885. "shasum": ""
  886. },
  887. "require": {
  888. "consolidation/annotated-command": "^4.3",
  889. "consolidation/config": "^1.2.1 || ^2.0.1",
  890. "consolidation/log": "^1.1.1 || ^2.0.2",
  891. "consolidation/output-formatters": "^4.1.2",
  892. "consolidation/self-update": "^2.0",
  893. "league/container": "^3.3.1 || ^4.0",
  894. "php": ">=7.1.3",
  895. "symfony/console": "^4.4.19 || ^5 || ^6",
  896. "symfony/event-dispatcher": "^4.4.19 || ^5 || ^6",
  897. "symfony/filesystem": "^4.4.9 || ^5 || ^6",
  898. "symfony/finder": "^4.4.9 || ^5 || ^6",
  899. "symfony/process": "^4.4.9 || ^5 || ^6",
  900. "symfony/yaml": "^4.4 || ^5 || ^6"
  901. },
  902. "conflict": {
  903. "codegyre/robo": "*"
  904. },
  905. "require-dev": {
  906. "natxet/cssmin": "3.0.4",
  907. "patchwork/jsqueeze": "^2",
  908. "pear/archive_tar": "^1.4.4",
  909. "phpunit/phpunit": "^7.5.20 || ^8",
  910. "squizlabs/php_codesniffer": "^3.6",
  911. "yoast/phpunit-polyfills": "^0.2.0"
  912. },
  913. "suggest": {
  914. "natxet/cssmin": "For minifying CSS files in taskMinify",
  915. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  916. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.",
  917. "totten/lurkerlite": "For monitoring filesystem changes in taskWatch"
  918. },
  919. "bin": [
  920. "robo"
  921. ],
  922. "type": "library",
  923. "extra": {
  924. "scenarios": {
  925. "symfony4": {
  926. "require": {
  927. "symfony/console": "^4.4.11",
  928. "symfony/event-dispatcher": "^4.4.11",
  929. "symfony/filesystem": "^4.4.11",
  930. "symfony/finder": "^4.4.11",
  931. "symfony/process": "^4.4.11",
  932. "phpunit/phpunit": "^6",
  933. "nikic/php-parser": "^2"
  934. },
  935. "remove": [
  936. "codeception/phpunit-wrapper"
  937. ],
  938. "config": {
  939. "platform": {
  940. "php": "7.1.3"
  941. }
  942. }
  943. }
  944. },
  945. "branch-alias": {
  946. "dev-master": "2.x-dev",
  947. "dev-main": "2.x-dev"
  948. }
  949. },
  950. "autoload": {
  951. "psr-4": {
  952. "Robo\\": "src"
  953. }
  954. },
  955. "notification-url": "https://packagist.org/downloads/",
  956. "license": [
  957. "MIT"
  958. ],
  959. "authors": [
  960. {
  961. "name": "Davert",
  962. "email": "davert.php@resend.cc"
  963. }
  964. ],
  965. "description": "Modern task runner",
  966. "support": {
  967. "issues": "https://github.com/consolidation/robo/issues",
  968. "source": "https://github.com/consolidation/robo/tree/3.0.12"
  969. },
  970. "time": "2023-04-30T21:18:09+00:00"
  971. },
  972. {
  973. "name": "consolidation/self-update",
  974. "version": "2.2.0",
  975. "source": {
  976. "type": "git",
  977. "url": "https://github.com/consolidation/self-update.git",
  978. "reference": "972a1016761c9b63314e040836a12795dff6953a"
  979. },
  980. "dist": {
  981. "type": "zip",
  982. "url": "https://api.github.com/repos/consolidation/self-update/zipball/972a1016761c9b63314e040836a12795dff6953a",
  983. "reference": "972a1016761c9b63314e040836a12795dff6953a",
  984. "shasum": ""
  985. },
  986. "require": {
  987. "composer/semver": "^3.2",
  988. "php": ">=5.5.0",
  989. "symfony/console": "^2.8 || ^3 || ^4 || ^5 || ^6",
  990. "symfony/filesystem": "^2.5 || ^3 || ^4 || ^5 || ^6"
  991. },
  992. "bin": [
  993. "scripts/release"
  994. ],
  995. "type": "library",
  996. "extra": {
  997. "branch-alias": {
  998. "dev-main": "2.x-dev"
  999. }
  1000. },
  1001. "autoload": {
  1002. "psr-4": {
  1003. "SelfUpdate\\": "src"
  1004. }
  1005. },
  1006. "notification-url": "https://packagist.org/downloads/",
  1007. "license": [
  1008. "MIT"
  1009. ],
  1010. "authors": [
  1011. {
  1012. "name": "Alexander Menk",
  1013. "email": "menk@mestrona.net"
  1014. },
  1015. {
  1016. "name": "Greg Anderson",
  1017. "email": "greg.1.anderson@greenknowe.org"
  1018. }
  1019. ],
  1020. "description": "Provides a self:update command for Symfony Console applications.",
  1021. "support": {
  1022. "issues": "https://github.com/consolidation/self-update/issues",
  1023. "source": "https://github.com/consolidation/self-update/tree/2.2.0"
  1024. },
  1025. "time": "2023-03-18T01:37:41+00:00"
  1026. },
  1027. {
  1028. "name": "consolidation/site-alias",
  1029. "version": "3.1.7",
  1030. "source": {
  1031. "type": "git",
  1032. "url": "https://github.com/consolidation/site-alias.git",
  1033. "reference": "3b6519592c7e8557423f935806cd73adf69ed6c7"
  1034. },
  1035. "dist": {
  1036. "type": "zip",
  1037. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/3b6519592c7e8557423f935806cd73adf69ed6c7",
  1038. "reference": "3b6519592c7e8557423f935806cd73adf69ed6c7",
  1039. "shasum": ""
  1040. },
  1041. "require": {
  1042. "consolidation/config": "^1.2.1 || ^2",
  1043. "php": ">=5.5.0",
  1044. "symfony/filesystem": "^4.4 || ^5.4 || ^6",
  1045. "symfony/finder": "~2.3 || ^3 || ^4.4 || ^5 || ^6",
  1046. "webmozart/path-util": "^2.3"
  1047. },
  1048. "require-dev": {
  1049. "php-coveralls/php-coveralls": "^2.4.2",
  1050. "phpunit/phpunit": ">=7",
  1051. "squizlabs/php_codesniffer": "^3",
  1052. "symfony/var-dumper": "^4",
  1053. "yoast/phpunit-polyfills": "^0.2.0"
  1054. },
  1055. "type": "library",
  1056. "extra": {
  1057. "branch-alias": {
  1058. "dev-main": "3.x-dev"
  1059. }
  1060. },
  1061. "autoload": {
  1062. "psr-4": {
  1063. "Consolidation\\SiteAlias\\": "src"
  1064. }
  1065. },
  1066. "notification-url": "https://packagist.org/downloads/",
  1067. "license": [
  1068. "MIT"
  1069. ],
  1070. "authors": [
  1071. {
  1072. "name": "Greg Anderson",
  1073. "email": "greg.1.anderson@greenknowe.org"
  1074. },
  1075. {
  1076. "name": "Moshe Weitzman",
  1077. "email": "weitzman@tejasa.com"
  1078. }
  1079. ],
  1080. "description": "Manage alias records for local and remote sites.",
  1081. "support": {
  1082. "issues": "https://github.com/consolidation/site-alias/issues",
  1083. "source": "https://github.com/consolidation/site-alias/tree/3.1.7"
  1084. },
  1085. "time": "2022-10-15T01:21:09+00:00"
  1086. },
  1087. {
  1088. "name": "consolidation/site-process",
  1089. "version": "4.2.1",
  1090. "source": {
  1091. "type": "git",
  1092. "url": "https://github.com/consolidation/site-process.git",
  1093. "reference": "ee3bf69001694b2117cc2f96c2ef70d8d45f1234"
  1094. },
  1095. "dist": {
  1096. "type": "zip",
  1097. "url": "https://api.github.com/repos/consolidation/site-process/zipball/ee3bf69001694b2117cc2f96c2ef70d8d45f1234",
  1098. "reference": "ee3bf69001694b2117cc2f96c2ef70d8d45f1234",
  1099. "shasum": ""
  1100. },
  1101. "require": {
  1102. "consolidation/config": "^1.2.1 || ^2",
  1103. "consolidation/site-alias": "^3 || ^4",
  1104. "php": ">=7.1.3",
  1105. "symfony/console": "^2.8.52 || ^3 || ^4.4 || ^5",
  1106. "symfony/process": "^4.3.4 || ^5"
  1107. },
  1108. "require-dev": {
  1109. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  1110. "squizlabs/php_codesniffer": "^3",
  1111. "yoast/phpunit-polyfills": "^0.2.0"
  1112. },
  1113. "type": "library",
  1114. "extra": {
  1115. "branch-alias": {
  1116. "dev-main": "4.x-dev"
  1117. }
  1118. },
  1119. "autoload": {
  1120. "psr-4": {
  1121. "Consolidation\\SiteProcess\\": "src"
  1122. }
  1123. },
  1124. "notification-url": "https://packagist.org/downloads/",
  1125. "license": [
  1126. "MIT"
  1127. ],
  1128. "authors": [
  1129. {
  1130. "name": "Greg Anderson",
  1131. "email": "greg.1.anderson@greenknowe.org"
  1132. },
  1133. {
  1134. "name": "Moshe Weitzman",
  1135. "email": "weitzman@tejasa.com"
  1136. }
  1137. ],
  1138. "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.",
  1139. "support": {
  1140. "issues": "https://github.com/consolidation/site-process/issues",
  1141. "source": "https://github.com/consolidation/site-process/tree/4.2.1"
  1142. },
  1143. "time": "2022-10-18T13:19:35+00:00"
  1144. },
  1145. {
  1146. "name": "cweagans/composer-patches",
  1147. "version": "1.7.1",
  1148. "source": {
  1149. "type": "git",
  1150. "url": "https://github.com/cweagans/composer-patches.git",
  1151. "reference": "9888dcc74993c030b75f3dd548bb5e20cdbd740c"
  1152. },
  1153. "dist": {
  1154. "type": "zip",
  1155. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/9888dcc74993c030b75f3dd548bb5e20cdbd740c",
  1156. "reference": "9888dcc74993c030b75f3dd548bb5e20cdbd740c",
  1157. "shasum": ""
  1158. },
  1159. "require": {
  1160. "composer-plugin-api": "^1.0 || ^2.0",
  1161. "php": ">=5.3.0"
  1162. },
  1163. "require-dev": {
  1164. "composer/composer": "~1.0 || ~2.0",
  1165. "phpunit/phpunit": "~4.6"
  1166. },
  1167. "type": "composer-plugin",
  1168. "extra": {
  1169. "class": "cweagans\\Composer\\Patches"
  1170. },
  1171. "autoload": {
  1172. "psr-4": {
  1173. "cweagans\\Composer\\": "src"
  1174. }
  1175. },
  1176. "notification-url": "https://packagist.org/downloads/",
  1177. "license": [
  1178. "BSD-3-Clause"
  1179. ],
  1180. "authors": [
  1181. {
  1182. "name": "Cameron Eagans",
  1183. "email": "me@cweagans.net"
  1184. }
  1185. ],
  1186. "description": "Provides a way to patch Composer packages.",
  1187. "support": {
  1188. "issues": "https://github.com/cweagans/composer-patches/issues",
  1189. "source": "https://github.com/cweagans/composer-patches/tree/1.7.1"
  1190. },
  1191. "time": "2021-06-08T15:12:46+00:00"
  1192. },
  1193. {
  1194. "name": "d3/d3",
  1195. "version": "v3.5.17",
  1196. "dist": {
  1197. "type": "zip",
  1198. "url": "https://github.com/d3/d3/archive/v3.5.17.zip"
  1199. },
  1200. "type": "drupal-library"
  1201. },
  1202. {
  1203. "name": "davedevelopment/stiphle",
  1204. "version": "0.9.2",
  1205. "source": {
  1206. "type": "git",
  1207. "url": "https://github.com/davedevelopment/stiphle.git",
  1208. "reference": "76151e6474741adee258c1a4860a0460e319563b"
  1209. },
  1210. "dist": {
  1211. "type": "zip",
  1212. "url": "https://api.github.com/repos/davedevelopment/stiphle/zipball/76151e6474741adee258c1a4860a0460e319563b",
  1213. "reference": "76151e6474741adee258c1a4860a0460e319563b",
  1214. "shasum": ""
  1215. },
  1216. "require": {
  1217. "php": ">=5.3.1"
  1218. },
  1219. "require-dev": {
  1220. "phpunit/phpunit": "^5.5",
  1221. "predis/predis": "^1.1"
  1222. },
  1223. "suggest": {
  1224. "doctrine/cache": "~1.0",
  1225. "predis/predis": "~1.1"
  1226. },
  1227. "type": "library",
  1228. "autoload": {
  1229. "psr-0": {
  1230. "Stiphle": "src/"
  1231. }
  1232. },
  1233. "notification-url": "https://packagist.org/downloads/",
  1234. "license": [
  1235. "MIT"
  1236. ],
  1237. "authors": [
  1238. {
  1239. "name": "Dave Marshall",
  1240. "email": "dave.marshall@atstsolutions.co.uk",
  1241. "homepage": "http://davedevelopment.co.uk"
  1242. }
  1243. ],
  1244. "description": "Simple rate limiting/throttling for php",
  1245. "homepage": "http://github.com/davedevelopment/stiphle",
  1246. "keywords": [
  1247. "rate limit",
  1248. "rate limiting",
  1249. "throttle",
  1250. "throttling"
  1251. ],
  1252. "support": {
  1253. "issues": "https://github.com/davedevelopment/stiphle/issues",
  1254. "source": "https://github.com/davedevelopment/stiphle/tree/0.9.2"
  1255. },
  1256. "time": "2017-08-16T07:58:18+00:00"
  1257. },
  1258. {
  1259. "name": "dekor/php-array-table",
  1260. "version": "2.0",
  1261. "source": {
  1262. "type": "git",
  1263. "url": "https://github.com/deniskoronets/php-array-table.git",
  1264. "reference": "ca40b21ba84eee6a9658a33fc5f897d76baaf8e5"
  1265. },
  1266. "dist": {
  1267. "type": "zip",
  1268. "url": "https://api.github.com/repos/deniskoronets/php-array-table/zipball/ca40b21ba84eee6a9658a33fc5f897d76baaf8e5",
  1269. "reference": "ca40b21ba84eee6a9658a33fc5f897d76baaf8e5",
  1270. "shasum": ""
  1271. },
  1272. "require": {
  1273. "ext-mbstring": "*",
  1274. "php": ">=5.6.0"
  1275. },
  1276. "require-dev": {
  1277. "phpunit/phpunit": "^10"
  1278. },
  1279. "type": "library",
  1280. "autoload": {
  1281. "psr-4": {
  1282. "dekor\\": "src"
  1283. }
  1284. },
  1285. "notification-url": "https://packagist.org/downloads/",
  1286. "license": [
  1287. "BSD-3-Clause"
  1288. ],
  1289. "authors": [
  1290. {
  1291. "name": "Denis Koronets",
  1292. "email": "deniskoronets@woo.zp.ua",
  1293. "homepage": "https://woo.zp.ua/"
  1294. }
  1295. ],
  1296. "description": "PHP Library for printing associative arrays as text table (similar to mysql terminal console)",
  1297. "keywords": [
  1298. "library",
  1299. "php"
  1300. ],
  1301. "support": {
  1302. "issues": "https://github.com/deniskoronets/php-array-table/issues",
  1303. "source": "https://github.com/deniskoronets/php-array-table/tree/2.0"
  1304. },
  1305. "time": "2023-02-10T10:13:42+00:00"
  1306. },
  1307. {
  1308. "name": "dflydev/dot-access-configuration",
  1309. "version": "v1.0.3",
  1310. "source": {
  1311. "type": "git",
  1312. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  1313. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  1314. },
  1315. "dist": {
  1316. "type": "zip",
  1317. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1318. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1319. "shasum": ""
  1320. },
  1321. "require": {
  1322. "dflydev/dot-access-data": "1.*",
  1323. "dflydev/placeholder-resolver": "1.*",
  1324. "php": ">=5.3.2"
  1325. },
  1326. "require-dev": {
  1327. "symfony/yaml": "~2.1"
  1328. },
  1329. "suggest": {
  1330. "symfony/yaml": "Required for using the YAML Configuration Builders"
  1331. },
  1332. "type": "library",
  1333. "extra": {
  1334. "branch-alias": {
  1335. "dev-master": "1.0-dev"
  1336. }
  1337. },
  1338. "autoload": {
  1339. "psr-0": {
  1340. "Dflydev\\DotAccessConfiguration": "src"
  1341. }
  1342. },
  1343. "notification-url": "https://packagist.org/downloads/",
  1344. "license": [
  1345. "MIT"
  1346. ],
  1347. "authors": [
  1348. {
  1349. "name": "Dragonfly Development Inc.",
  1350. "email": "info@dflydev.com",
  1351. "homepage": "http://dflydev.com"
  1352. },
  1353. {
  1354. "name": "Beau Simensen",
  1355. "email": "beau@dflydev.com",
  1356. "homepage": "http://beausimensen.com"
  1357. }
  1358. ],
  1359. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  1360. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  1361. "keywords": [
  1362. "config",
  1363. "configuration"
  1364. ],
  1365. "support": {
  1366. "issues": "https://github.com/dflydev/dflydev-dot-access-configuration/issues",
  1367. "source": "https://github.com/dflydev/dflydev-dot-access-configuration/tree/master"
  1368. },
  1369. "time": "2018-09-08T23:00:17+00:00"
  1370. },
  1371. {
  1372. "name": "dflydev/dot-access-data",
  1373. "version": "v1.1.0",
  1374. "source": {
  1375. "type": "git",
  1376. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1377. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1378. },
  1379. "dist": {
  1380. "type": "zip",
  1381. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1382. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1383. "shasum": ""
  1384. },
  1385. "require": {
  1386. "php": ">=5.3.2"
  1387. },
  1388. "type": "library",
  1389. "extra": {
  1390. "branch-alias": {
  1391. "dev-master": "1.0-dev"
  1392. }
  1393. },
  1394. "autoload": {
  1395. "psr-0": {
  1396. "Dflydev\\DotAccessData": "src"
  1397. }
  1398. },
  1399. "notification-url": "https://packagist.org/downloads/",
  1400. "license": [
  1401. "MIT"
  1402. ],
  1403. "authors": [
  1404. {
  1405. "name": "Dragonfly Development Inc.",
  1406. "email": "info@dflydev.com",
  1407. "homepage": "http://dflydev.com"
  1408. },
  1409. {
  1410. "name": "Beau Simensen",
  1411. "email": "beau@dflydev.com",
  1412. "homepage": "http://beausimensen.com"
  1413. },
  1414. {
  1415. "name": "Carlos Frutos",
  1416. "email": "carlos@kiwing.it",
  1417. "homepage": "https://github.com/cfrutos"
  1418. }
  1419. ],
  1420. "description": "Given a deep data structure, access data by dot notation.",
  1421. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1422. "keywords": [
  1423. "access",
  1424. "data",
  1425. "dot",
  1426. "notation"
  1427. ],
  1428. "support": {
  1429. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1430. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/master"
  1431. },
  1432. "time": "2017-01-20T21:14:22+00:00"
  1433. },
  1434. {
  1435. "name": "dflydev/placeholder-resolver",
  1436. "version": "v1.0.3",
  1437. "source": {
  1438. "type": "git",
  1439. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1440. "reference": "d0161b4be1e15838327b01b21d0149f382d69906"
  1441. },
  1442. "dist": {
  1443. "type": "zip",
  1444. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/d0161b4be1e15838327b01b21d0149f382d69906",
  1445. "reference": "d0161b4be1e15838327b01b21d0149f382d69906",
  1446. "shasum": ""
  1447. },
  1448. "require": {
  1449. "php": ">=5.3.2"
  1450. },
  1451. "type": "library",
  1452. "extra": {
  1453. "branch-alias": {
  1454. "dev-master": "1.0-dev"
  1455. }
  1456. },
  1457. "autoload": {
  1458. "psr-0": {
  1459. "Dflydev\\PlaceholderResolver": "src"
  1460. }
  1461. },
  1462. "notification-url": "https://packagist.org/downloads/",
  1463. "license": [
  1464. "MIT"
  1465. ],
  1466. "authors": [
  1467. {
  1468. "name": "Dragonfly Development Inc.",
  1469. "email": "info@dflydev.com",
  1470. "homepage": "http://dflydev.com"
  1471. },
  1472. {
  1473. "name": "Beau Simensen",
  1474. "email": "beau@dflydev.com",
  1475. "homepage": "http://beausimensen.com"
  1476. }
  1477. ],
  1478. "description": "Given a data source representing key => value pairs, resolve placeholders like ${foo.bar} to the value associated with the 'foo.bar' key in the data source.",
  1479. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1480. "keywords": [
  1481. "placeholder",
  1482. "resolver"
  1483. ],
  1484. "support": {
  1485. "issues": "https://github.com/dflydev/dflydev-placeholder-resolver/issues",
  1486. "source": "https://github.com/dflydev/dflydev-placeholder-resolver/tree/v1.0.3"
  1487. },
  1488. "time": "2021-12-03T16:48:58+00:00"
  1489. },
  1490. {
  1491. "name": "doctrine/annotations",
  1492. "version": "1.13.3",
  1493. "source": {
  1494. "type": "git",
  1495. "url": "https://github.com/doctrine/annotations.git",
  1496. "reference": "648b0343343565c4a056bfc8392201385e8d89f0"
  1497. },
  1498. "dist": {
  1499. "type": "zip",
  1500. "url": "https://api.github.com/repos/doctrine/annotations/zipball/648b0343343565c4a056bfc8392201385e8d89f0",
  1501. "reference": "648b0343343565c4a056bfc8392201385e8d89f0",
  1502. "shasum": ""
  1503. },
  1504. "require": {
  1505. "doctrine/lexer": "1.*",
  1506. "ext-tokenizer": "*",
  1507. "php": "^7.1 || ^8.0",
  1508. "psr/cache": "^1 || ^2 || ^3"
  1509. },
  1510. "require-dev": {
  1511. "doctrine/cache": "^1.11 || ^2.0",
  1512. "doctrine/coding-standard": "^6.0 || ^8.1",
  1513. "phpstan/phpstan": "^1.4.10 || ^1.8.0",
  1514. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
  1515. "symfony/cache": "^4.4 || ^5.2",
  1516. "vimeo/psalm": "^4.10"
  1517. },
  1518. "type": "library",
  1519. "autoload": {
  1520. "psr-4": {
  1521. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1522. }
  1523. },
  1524. "notification-url": "https://packagist.org/downloads/",
  1525. "license": [
  1526. "MIT"
  1527. ],
  1528. "authors": [
  1529. {
  1530. "name": "Guilherme Blanco",
  1531. "email": "guilhermeblanco@gmail.com"
  1532. },
  1533. {
  1534. "name": "Roman Borschel",
  1535. "email": "roman@code-factory.org"
  1536. },
  1537. {
  1538. "name": "Benjamin Eberlei",
  1539. "email": "kontakt@beberlei.de"
  1540. },
  1541. {
  1542. "name": "Jonathan Wage",
  1543. "email": "jonwage@gmail.com"
  1544. },
  1545. {
  1546. "name": "Johannes Schmitt",
  1547. "email": "schmittjoh@gmail.com"
  1548. }
  1549. ],
  1550. "description": "Docblock Annotations Parser",
  1551. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1552. "keywords": [
  1553. "annotations",
  1554. "docblock",
  1555. "parser"
  1556. ],
  1557. "support": {
  1558. "issues": "https://github.com/doctrine/annotations/issues",
  1559. "source": "https://github.com/doctrine/annotations/tree/1.13.3"
  1560. },
  1561. "time": "2022-07-02T10:48:51+00:00"
  1562. },
  1563. {
  1564. "name": "doctrine/collections",
  1565. "version": "1.8.0",
  1566. "source": {
  1567. "type": "git",
  1568. "url": "https://github.com/doctrine/collections.git",
  1569. "reference": "2b44dd4cbca8b5744327de78bafef5945c7e7b5e"
  1570. },
  1571. "dist": {
  1572. "type": "zip",
  1573. "url": "https://api.github.com/repos/doctrine/collections/zipball/2b44dd4cbca8b5744327de78bafef5945c7e7b5e",
  1574. "reference": "2b44dd4cbca8b5744327de78bafef5945c7e7b5e",
  1575. "shasum": ""
  1576. },
  1577. "require": {
  1578. "doctrine/deprecations": "^0.5.3 || ^1",
  1579. "php": "^7.1.3 || ^8.0"
  1580. },
  1581. "require-dev": {
  1582. "doctrine/coding-standard": "^9.0 || ^10.0",
  1583. "phpstan/phpstan": "^1.4.8",
  1584. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.1.5",
  1585. "vimeo/psalm": "^4.22"
  1586. },
  1587. "type": "library",
  1588. "autoload": {
  1589. "psr-4": {
  1590. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  1591. }
  1592. },
  1593. "notification-url": "https://packagist.org/downloads/",
  1594. "license": [
  1595. "MIT"
  1596. ],
  1597. "authors": [
  1598. {
  1599. "name": "Guilherme Blanco",
  1600. "email": "guilhermeblanco@gmail.com"
  1601. },
  1602. {
  1603. "name": "Roman Borschel",
  1604. "email": "roman@code-factory.org"
  1605. },
  1606. {
  1607. "name": "Benjamin Eberlei",
  1608. "email": "kontakt@beberlei.de"
  1609. },
  1610. {
  1611. "name": "Jonathan Wage",
  1612. "email": "jonwage@gmail.com"
  1613. },
  1614. {
  1615. "name": "Johannes Schmitt",
  1616. "email": "schmittjoh@gmail.com"
  1617. }
  1618. ],
  1619. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  1620. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  1621. "keywords": [
  1622. "array",
  1623. "collections",
  1624. "iterators",
  1625. "php"
  1626. ],
  1627. "support": {
  1628. "issues": "https://github.com/doctrine/collections/issues",
  1629. "source": "https://github.com/doctrine/collections/tree/1.8.0"
  1630. },
  1631. "time": "2022-09-01T20:12:10+00:00"
  1632. },
  1633. {
  1634. "name": "doctrine/common",
  1635. "version": "3.5.0",
  1636. "source": {
  1637. "type": "git",
  1638. "url": "https://github.com/doctrine/common.git",
  1639. "reference": "d9ea4a54ca2586db781f0265d36bea731ac66ec5"
  1640. },
  1641. "dist": {
  1642. "type": "zip",
  1643. "url": "https://api.github.com/repos/doctrine/common/zipball/d9ea4a54ca2586db781f0265d36bea731ac66ec5",
  1644. "reference": "d9ea4a54ca2586db781f0265d36bea731ac66ec5",
  1645. "shasum": ""
  1646. },
  1647. "require": {
  1648. "doctrine/persistence": "^2.0 || ^3.0 || ^4.0",
  1649. "php": "^7.1 || ^8.0"
  1650. },
  1651. "require-dev": {
  1652. "doctrine/coding-standard": "^9.0 || ^10.0",
  1653. "doctrine/collections": "^1",
  1654. "phpstan/phpstan": "^1.4.1",
  1655. "phpstan/phpstan-phpunit": "^1",
  1656. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  1657. "squizlabs/php_codesniffer": "^3.0",
  1658. "symfony/phpunit-bridge": "^6.1",
  1659. "vimeo/psalm": "^4.4"
  1660. },
  1661. "type": "library",
  1662. "autoload": {
  1663. "psr-4": {
  1664. "Doctrine\\Common\\": "src"
  1665. }
  1666. },
  1667. "notification-url": "https://packagist.org/downloads/",
  1668. "license": [
  1669. "MIT"
  1670. ],
  1671. "authors": [
  1672. {
  1673. "name": "Guilherme Blanco",
  1674. "email": "guilhermeblanco@gmail.com"
  1675. },
  1676. {
  1677. "name": "Roman Borschel",
  1678. "email": "roman@code-factory.org"
  1679. },
  1680. {
  1681. "name": "Benjamin Eberlei",
  1682. "email": "kontakt@beberlei.de"
  1683. },
  1684. {
  1685. "name": "Jonathan Wage",
  1686. "email": "jonwage@gmail.com"
  1687. },
  1688. {
  1689. "name": "Johannes Schmitt",
  1690. "email": "schmittjoh@gmail.com"
  1691. },
  1692. {
  1693. "name": "Marco Pivetta",
  1694. "email": "ocramius@gmail.com"
  1695. }
  1696. ],
  1697. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, proxies and much more.",
  1698. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1699. "keywords": [
  1700. "common",
  1701. "doctrine",
  1702. "php"
  1703. ],
  1704. "support": {
  1705. "issues": "https://github.com/doctrine/common/issues",
  1706. "source": "https://github.com/doctrine/common/tree/3.5.0"
  1707. },
  1708. "funding": [
  1709. {
  1710. "url": "https://www.doctrine-project.org/sponsorship.html",
  1711. "type": "custom"
  1712. },
  1713. {
  1714. "url": "https://www.patreon.com/phpdoctrine",
  1715. "type": "patreon"
  1716. },
  1717. {
  1718. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1719. "type": "tidelift"
  1720. }
  1721. ],
  1722. "time": "2025-01-01T22:12:03+00:00"
  1723. },
  1724. {
  1725. "name": "doctrine/deprecations",
  1726. "version": "1.1.5",
  1727. "source": {
  1728. "type": "git",
  1729. "url": "https://github.com/doctrine/deprecations.git",
  1730. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38"
  1731. },
  1732. "dist": {
  1733. "type": "zip",
  1734. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  1735. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  1736. "shasum": ""
  1737. },
  1738. "require": {
  1739. "php": "^7.1 || ^8.0"
  1740. },
  1741. "conflict": {
  1742. "phpunit/phpunit": "<=7.5 || >=13"
  1743. },
  1744. "require-dev": {
  1745. "doctrine/coding-standard": "^9 || ^12 || ^13",
  1746. "phpstan/phpstan": "1.4.10 || 2.1.11",
  1747. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  1748. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12",
  1749. "psr/log": "^1 || ^2 || ^3"
  1750. },
  1751. "suggest": {
  1752. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1753. },
  1754. "type": "library",
  1755. "autoload": {
  1756. "psr-4": {
  1757. "Doctrine\\Deprecations\\": "src"
  1758. }
  1759. },
  1760. "notification-url": "https://packagist.org/downloads/",
  1761. "license": [
  1762. "MIT"
  1763. ],
  1764. "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.",
  1765. "homepage": "https://www.doctrine-project.org/",
  1766. "support": {
  1767. "issues": "https://github.com/doctrine/deprecations/issues",
  1768. "source": "https://github.com/doctrine/deprecations/tree/1.1.5"
  1769. },
  1770. "time": "2025-04-07T20:06:18+00:00"
  1771. },
  1772. {
  1773. "name": "doctrine/event-manager",
  1774. "version": "2.0.1",
  1775. "source": {
  1776. "type": "git",
  1777. "url": "https://github.com/doctrine/event-manager.git",
  1778. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  1779. },
  1780. "dist": {
  1781. "type": "zip",
  1782. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  1783. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  1784. "shasum": ""
  1785. },
  1786. "require": {
  1787. "php": "^8.1"
  1788. },
  1789. "conflict": {
  1790. "doctrine/common": "<2.9"
  1791. },
  1792. "require-dev": {
  1793. "doctrine/coding-standard": "^12",
  1794. "phpstan/phpstan": "^1.8.8",
  1795. "phpunit/phpunit": "^10.5",
  1796. "vimeo/psalm": "^5.24"
  1797. },
  1798. "type": "library",
  1799. "autoload": {
  1800. "psr-4": {
  1801. "Doctrine\\Common\\": "src"
  1802. }
  1803. },
  1804. "notification-url": "https://packagist.org/downloads/",
  1805. "license": [
  1806. "MIT"
  1807. ],
  1808. "authors": [
  1809. {
  1810. "name": "Guilherme Blanco",
  1811. "email": "guilhermeblanco@gmail.com"
  1812. },
  1813. {
  1814. "name": "Roman Borschel",
  1815. "email": "roman@code-factory.org"
  1816. },
  1817. {
  1818. "name": "Benjamin Eberlei",
  1819. "email": "kontakt@beberlei.de"
  1820. },
  1821. {
  1822. "name": "Jonathan Wage",
  1823. "email": "jonwage@gmail.com"
  1824. },
  1825. {
  1826. "name": "Johannes Schmitt",
  1827. "email": "schmittjoh@gmail.com"
  1828. },
  1829. {
  1830. "name": "Marco Pivetta",
  1831. "email": "ocramius@gmail.com"
  1832. }
  1833. ],
  1834. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1835. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1836. "keywords": [
  1837. "event",
  1838. "event dispatcher",
  1839. "event manager",
  1840. "event system",
  1841. "events"
  1842. ],
  1843. "support": {
  1844. "issues": "https://github.com/doctrine/event-manager/issues",
  1845. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  1846. },
  1847. "funding": [
  1848. {
  1849. "url": "https://www.doctrine-project.org/sponsorship.html",
  1850. "type": "custom"
  1851. },
  1852. {
  1853. "url": "https://www.patreon.com/phpdoctrine",
  1854. "type": "patreon"
  1855. },
  1856. {
  1857. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1858. "type": "tidelift"
  1859. }
  1860. ],
  1861. "time": "2024-05-22T20:47:39+00:00"
  1862. },
  1863. {
  1864. "name": "doctrine/lexer",
  1865. "version": "1.2.3",
  1866. "source": {
  1867. "type": "git",
  1868. "url": "https://github.com/doctrine/lexer.git",
  1869. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1870. },
  1871. "dist": {
  1872. "type": "zip",
  1873. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1874. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1875. "shasum": ""
  1876. },
  1877. "require": {
  1878. "php": "^7.1 || ^8.0"
  1879. },
  1880. "require-dev": {
  1881. "doctrine/coding-standard": "^9.0",
  1882. "phpstan/phpstan": "^1.3",
  1883. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1884. "vimeo/psalm": "^4.11"
  1885. },
  1886. "type": "library",
  1887. "autoload": {
  1888. "psr-4": {
  1889. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1890. }
  1891. },
  1892. "notification-url": "https://packagist.org/downloads/",
  1893. "license": [
  1894. "MIT"
  1895. ],
  1896. "authors": [
  1897. {
  1898. "name": "Guilherme Blanco",
  1899. "email": "guilhermeblanco@gmail.com"
  1900. },
  1901. {
  1902. "name": "Roman Borschel",
  1903. "email": "roman@code-factory.org"
  1904. },
  1905. {
  1906. "name": "Johannes Schmitt",
  1907. "email": "schmittjoh@gmail.com"
  1908. }
  1909. ],
  1910. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1911. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1912. "keywords": [
  1913. "annotations",
  1914. "docblock",
  1915. "lexer",
  1916. "parser",
  1917. "php"
  1918. ],
  1919. "support": {
  1920. "issues": "https://github.com/doctrine/lexer/issues",
  1921. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1922. },
  1923. "funding": [
  1924. {
  1925. "url": "https://www.doctrine-project.org/sponsorship.html",
  1926. "type": "custom"
  1927. },
  1928. {
  1929. "url": "https://www.patreon.com/phpdoctrine",
  1930. "type": "patreon"
  1931. },
  1932. {
  1933. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1934. "type": "tidelift"
  1935. }
  1936. ],
  1937. "time": "2022-02-28T11:07:21+00:00"
  1938. },
  1939. {
  1940. "name": "doctrine/persistence",
  1941. "version": "4.0.0",
  1942. "source": {
  1943. "type": "git",
  1944. "url": "https://github.com/doctrine/persistence.git",
  1945. "reference": "45004aca79189474f113cbe3a53847c2115a55fa"
  1946. },
  1947. "dist": {
  1948. "type": "zip",
  1949. "url": "https://api.github.com/repos/doctrine/persistence/zipball/45004aca79189474f113cbe3a53847c2115a55fa",
  1950. "reference": "45004aca79189474f113cbe3a53847c2115a55fa",
  1951. "shasum": ""
  1952. },
  1953. "require": {
  1954. "doctrine/event-manager": "^1 || ^2",
  1955. "php": "^8.1",
  1956. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1957. },
  1958. "conflict": {
  1959. "doctrine/common": "<2.10"
  1960. },
  1961. "require-dev": {
  1962. "doctrine/coding-standard": "^12",
  1963. "phpstan/phpstan": "1.12.7",
  1964. "phpstan/phpstan-phpunit": "^1",
  1965. "phpstan/phpstan-strict-rules": "^1.1",
  1966. "phpunit/phpunit": "^9.6",
  1967. "symfony/cache": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  1968. },
  1969. "type": "library",
  1970. "autoload": {
  1971. "psr-4": {
  1972. "Doctrine\\Persistence\\": "src/Persistence"
  1973. }
  1974. },
  1975. "notification-url": "https://packagist.org/downloads/",
  1976. "license": [
  1977. "MIT"
  1978. ],
  1979. "authors": [
  1980. {
  1981. "name": "Guilherme Blanco",
  1982. "email": "guilhermeblanco@gmail.com"
  1983. },
  1984. {
  1985. "name": "Roman Borschel",
  1986. "email": "roman@code-factory.org"
  1987. },
  1988. {
  1989. "name": "Benjamin Eberlei",
  1990. "email": "kontakt@beberlei.de"
  1991. },
  1992. {
  1993. "name": "Jonathan Wage",
  1994. "email": "jonwage@gmail.com"
  1995. },
  1996. {
  1997. "name": "Johannes Schmitt",
  1998. "email": "schmittjoh@gmail.com"
  1999. },
  2000. {
  2001. "name": "Marco Pivetta",
  2002. "email": "ocramius@gmail.com"
  2003. }
  2004. ],
  2005. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  2006. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  2007. "keywords": [
  2008. "mapper",
  2009. "object",
  2010. "odm",
  2011. "orm",
  2012. "persistence"
  2013. ],
  2014. "support": {
  2015. "issues": "https://github.com/doctrine/persistence/issues",
  2016. "source": "https://github.com/doctrine/persistence/tree/4.0.0"
  2017. },
  2018. "funding": [
  2019. {
  2020. "url": "https://www.doctrine-project.org/sponsorship.html",
  2021. "type": "custom"
  2022. },
  2023. {
  2024. "url": "https://www.patreon.com/phpdoctrine",
  2025. "type": "patreon"
  2026. },
  2027. {
  2028. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  2029. "type": "tidelift"
  2030. }
  2031. ],
  2032. "time": "2024-11-01T21:49:07+00:00"
  2033. },
  2034. {
  2035. "name": "doctrine/reflection",
  2036. "version": "1.2.4",
  2037. "source": {
  2038. "type": "git",
  2039. "url": "https://github.com/doctrine/reflection.git",
  2040. "reference": "6bcea3e81ab8b3d0abe5fde5300bbc8a968960c7"
  2041. },
  2042. "dist": {
  2043. "type": "zip",
  2044. "url": "https://api.github.com/repos/doctrine/reflection/zipball/6bcea3e81ab8b3d0abe5fde5300bbc8a968960c7",
  2045. "reference": "6bcea3e81ab8b3d0abe5fde5300bbc8a968960c7",
  2046. "shasum": ""
  2047. },
  2048. "require": {
  2049. "doctrine/annotations": "^1.0 || ^2.0",
  2050. "ext-tokenizer": "*",
  2051. "php": "^7.1 || ^8.0"
  2052. },
  2053. "conflict": {
  2054. "doctrine/common": "<2.9"
  2055. },
  2056. "require-dev": {
  2057. "doctrine/coding-standard": "^9",
  2058. "doctrine/common": "^3.3",
  2059. "phpstan/phpstan": "^1.4.10",
  2060. "phpstan/phpstan-phpunit": "^1",
  2061. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5"
  2062. },
  2063. "type": "library",
  2064. "autoload": {
  2065. "psr-4": {
  2066. "Doctrine\\Common\\": "lib/Doctrine/Common"
  2067. }
  2068. },
  2069. "notification-url": "https://packagist.org/downloads/",
  2070. "license": [
  2071. "MIT"
  2072. ],
  2073. "authors": [
  2074. {
  2075. "name": "Guilherme Blanco",
  2076. "email": "guilhermeblanco@gmail.com"
  2077. },
  2078. {
  2079. "name": "Roman Borschel",
  2080. "email": "roman@code-factory.org"
  2081. },
  2082. {
  2083. "name": "Benjamin Eberlei",
  2084. "email": "kontakt@beberlei.de"
  2085. },
  2086. {
  2087. "name": "Jonathan Wage",
  2088. "email": "jonwage@gmail.com"
  2089. },
  2090. {
  2091. "name": "Johannes Schmitt",
  2092. "email": "schmittjoh@gmail.com"
  2093. },
  2094. {
  2095. "name": "Marco Pivetta",
  2096. "email": "ocramius@gmail.com"
  2097. }
  2098. ],
  2099. "description": "The Doctrine Reflection project is a simple library used by the various Doctrine projects which adds some additional functionality on top of the reflection functionality that comes with PHP. It allows you to get the reflection information about classes, methods and properties statically.",
  2100. "homepage": "https://www.doctrine-project.org/projects/reflection.html",
  2101. "keywords": [
  2102. "reflection",
  2103. "static"
  2104. ],
  2105. "support": {
  2106. "issues": "https://github.com/doctrine/reflection/issues",
  2107. "source": "https://github.com/doctrine/reflection/tree/1.2.4"
  2108. },
  2109. "abandoned": "roave/better-reflection",
  2110. "time": "2023-07-27T18:11:59+00:00"
  2111. },
  2112. {
  2113. "name": "drupal/address",
  2114. "version": "1.12.0",
  2115. "source": {
  2116. "type": "git",
  2117. "url": "https://git.drupalcode.org/project/address.git",
  2118. "reference": "8.x-1.12"
  2119. },
  2120. "dist": {
  2121. "type": "zip",
  2122. "url": "https://ftp.drupal.org/files/projects/address-8.x-1.12.zip",
  2123. "reference": "8.x-1.12",
  2124. "shasum": "67dd4699040aabf0cd6169e437706fa6a39b0b3a"
  2125. },
  2126. "require": {
  2127. "commerceguys/addressing": "^1.4.2",
  2128. "drupal/core": "^9.2 || ^10",
  2129. "php": "^7.3 || ^8.0"
  2130. },
  2131. "require-dev": {
  2132. "drupal/token": "^1.0"
  2133. },
  2134. "type": "drupal-module",
  2135. "extra": {
  2136. "drupal": {
  2137. "version": "8.x-1.12",
  2138. "datestamp": "1684710176",
  2139. "security-coverage": {
  2140. "status": "covered",
  2141. "message": "Covered by Drupal's security advisory policy"
  2142. }
  2143. }
  2144. },
  2145. "notification-url": "https://packages.drupal.org/8/downloads",
  2146. "license": [
  2147. "GPL-2.0-or-later"
  2148. ],
  2149. "authors": [
  2150. {
  2151. "name": "bojanz",
  2152. "homepage": "https://www.drupal.org/user/86106"
  2153. },
  2154. {
  2155. "name": "Centarro",
  2156. "homepage": "https://www.drupal.org/user/3661446"
  2157. },
  2158. {
  2159. "name": "dww",
  2160. "homepage": "https://www.drupal.org/user/46549"
  2161. },
  2162. {
  2163. "name": "googletorp",
  2164. "homepage": "https://www.drupal.org/user/386230"
  2165. },
  2166. {
  2167. "name": "jsacksick",
  2168. "homepage": "https://www.drupal.org/user/972218"
  2169. },
  2170. {
  2171. "name": "mglaman",
  2172. "homepage": "https://www.drupal.org/user/2416470"
  2173. },
  2174. {
  2175. "name": "rszrama",
  2176. "homepage": "https://www.drupal.org/user/49344"
  2177. }
  2178. ],
  2179. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  2180. "homepage": "http://drupal.org/project/address",
  2181. "support": {
  2182. "source": "https://git.drupalcode.org/project/address"
  2183. }
  2184. },
  2185. {
  2186. "name": "drupal/admin_toolbar",
  2187. "version": "3.6.1",
  2188. "source": {
  2189. "type": "git",
  2190. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  2191. "reference": "3.6.1"
  2192. },
  2193. "dist": {
  2194. "type": "zip",
  2195. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.6.1.zip",
  2196. "reference": "3.6.1",
  2197. "shasum": "40e8874bdf100de90e0eec6984be14f0ec7765b0"
  2198. },
  2199. "require": {
  2200. "drupal/core": "^9.5 || ^10 || ^11"
  2201. },
  2202. "require-dev": {
  2203. "drupal/admin_toolbar_tools": "*"
  2204. },
  2205. "type": "drupal-module",
  2206. "extra": {
  2207. "drupal": {
  2208. "version": "3.6.1",
  2209. "datestamp": "1749079734",
  2210. "security-coverage": {
  2211. "status": "covered",
  2212. "message": "Covered by Drupal's security advisory policy"
  2213. }
  2214. }
  2215. },
  2216. "notification-url": "https://packages.drupal.org/8/downloads",
  2217. "license": [
  2218. "GPL-2.0-or-later"
  2219. ],
  2220. "authors": [
  2221. {
  2222. "name": "Wilfrid Roze (eme)",
  2223. "homepage": "https://www.drupal.org/u/eme",
  2224. "role": "Maintainer"
  2225. },
  2226. {
  2227. "name": "Romain Jarraud (romainj)",
  2228. "homepage": "https://www.drupal.org/u/romainj",
  2229. "role": "Maintainer"
  2230. },
  2231. {
  2232. "name": "Adrian Cid Almaguer (adriancid)",
  2233. "homepage": "https://www.drupal.org/u/adriancid",
  2234. "email": "adriancid@gmail.com",
  2235. "role": "Maintainer"
  2236. },
  2237. {
  2238. "name": "Mohamed Anis Taktak (matio89)",
  2239. "homepage": "https://www.drupal.org/u/matio89",
  2240. "role": "Maintainer"
  2241. },
  2242. {
  2243. "name": "fethi.krout",
  2244. "homepage": "https://www.drupal.org/user/3206765"
  2245. },
  2246. {
  2247. "name": "japerry",
  2248. "homepage": "https://www.drupal.org/user/45640"
  2249. },
  2250. {
  2251. "name": "matio89",
  2252. "homepage": "https://www.drupal.org/user/2320090"
  2253. },
  2254. {
  2255. "name": "musa.thomas",
  2256. "homepage": "https://www.drupal.org/user/1213824"
  2257. },
  2258. {
  2259. "name": "romainj",
  2260. "homepage": "https://www.drupal.org/user/370706"
  2261. }
  2262. ],
  2263. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  2264. "homepage": "http://drupal.org/project/admin_toolbar",
  2265. "keywords": [
  2266. "Drupal",
  2267. "Toolbar"
  2268. ],
  2269. "support": {
  2270. "source": "https://git.drupalcode.org/project/admin_toolbar",
  2271. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  2272. }
  2273. },
  2274. {
  2275. "name": "drupal/adminimal_theme",
  2276. "version": "1.6.0",
  2277. "source": {
  2278. "type": "git",
  2279. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  2280. "reference": "8.x-1.6"
  2281. },
  2282. "dist": {
  2283. "type": "zip",
  2284. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.6.zip",
  2285. "reference": "8.x-1.6",
  2286. "shasum": "89132d0853388afe8dfd11fb83c69a48d8c13413"
  2287. },
  2288. "require": {
  2289. "drupal/core": "^8.8 || ^9"
  2290. },
  2291. "type": "drupal-theme",
  2292. "extra": {
  2293. "drupal": {
  2294. "version": "8.x-1.6",
  2295. "datestamp": "1602006937",
  2296. "security-coverage": {
  2297. "status": "covered",
  2298. "message": "Covered by Drupal's security advisory policy"
  2299. }
  2300. }
  2301. },
  2302. "notification-url": "https://packages.drupal.org/8/downloads",
  2303. "license": [
  2304. "GPL-2.0+"
  2305. ],
  2306. "authors": [
  2307. {
  2308. "name": "ANDiTKO",
  2309. "homepage": "https://www.drupal.org/user/1428124"
  2310. },
  2311. {
  2312. "name": "andrey.troeglazov",
  2313. "homepage": "https://www.drupal.org/user/3145389"
  2314. },
  2315. {
  2316. "name": "realityloop",
  2317. "homepage": "https://www.drupal.org/user/139189"
  2318. }
  2319. ],
  2320. "description": "Drupal administration theme with modern minimalist design.",
  2321. "homepage": "https://www.drupal.org/project/adminimal_theme",
  2322. "support": {
  2323. "source": "https://git.drupalcode.org/project/adminimal_theme",
  2324. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  2325. }
  2326. },
  2327. {
  2328. "name": "drupal/administerusersbyrole",
  2329. "version": "3.4.0",
  2330. "source": {
  2331. "type": "git",
  2332. "url": "https://git.drupalcode.org/project/administerusersbyrole.git",
  2333. "reference": "8.x-3.4"
  2334. },
  2335. "dist": {
  2336. "type": "zip",
  2337. "url": "https://ftp.drupal.org/files/projects/administerusersbyrole-8.x-3.4.zip",
  2338. "reference": "8.x-3.4",
  2339. "shasum": "17cd7107c8fdd0c65049ee2b8dceefa0432024fa"
  2340. },
  2341. "require": {
  2342. "drupal/core": "^8 || ^9 || ^10"
  2343. },
  2344. "type": "drupal-module",
  2345. "extra": {
  2346. "drupal": {
  2347. "version": "8.x-3.4",
  2348. "datestamp": "1682265550",
  2349. "security-coverage": {
  2350. "status": "covered",
  2351. "message": "Covered by Drupal's security advisory policy"
  2352. }
  2353. }
  2354. },
  2355. "notification-url": "https://packages.drupal.org/8/downloads",
  2356. "license": [
  2357. "GPL-2.0-or-later"
  2358. ],
  2359. "authors": [
  2360. {
  2361. "name": "AdamPS",
  2362. "homepage": "https://www.drupal.org/user/2650563"
  2363. },
  2364. {
  2365. "name": "mrfelton",
  2366. "homepage": "https://www.drupal.org/user/305669"
  2367. },
  2368. {
  2369. "name": "smokris",
  2370. "homepage": "https://www.drupal.org/user/161913"
  2371. }
  2372. ],
  2373. "description": "Allows site builders to set up fine-grained permissions for allowing \"sub-admin\" users to edit and delete other users.",
  2374. "homepage": "https://www.drupal.org/project/administerusersbyrole",
  2375. "support": {
  2376. "source": "https://git.drupalcode.org/project/administerusersbyrole"
  2377. }
  2378. },
  2379. {
  2380. "name": "drupal/advanced_text_formatter",
  2381. "version": "3.0.0-rc2",
  2382. "source": {
  2383. "type": "git",
  2384. "url": "https://git.drupalcode.org/project/advanced_text_formatter.git",
  2385. "reference": "3.0.0-rc2"
  2386. },
  2387. "dist": {
  2388. "type": "zip",
  2389. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-3.0.0-rc2.zip",
  2390. "reference": "3.0.0-rc2",
  2391. "shasum": "4b0601f135202647e65bd5a43f56ea1fce4bc607"
  2392. },
  2393. "require": {
  2394. "drupal/core": "^8 || ^9 || ^10 || ^11"
  2395. },
  2396. "type": "drupal-module",
  2397. "extra": {
  2398. "drupal": {
  2399. "version": "3.0.0-rc2",
  2400. "datestamp": "1727826727",
  2401. "security-coverage": {
  2402. "status": "not-covered",
  2403. "message": "RC releases are not covered by Drupal security advisories."
  2404. }
  2405. }
  2406. },
  2407. "notification-url": "https://packages.drupal.org/8/downloads",
  2408. "license": [
  2409. "GPL-2.0-or-later"
  2410. ],
  2411. "authors": [
  2412. {
  2413. "name": "azovsky",
  2414. "homepage": "https://www.drupal.org/user/330533"
  2415. },
  2416. {
  2417. "name": "knectar",
  2418. "homepage": "https://www.drupal.org/user/1184414"
  2419. },
  2420. {
  2421. "name": "realityloop",
  2422. "homepage": "https://www.drupal.org/user/139189"
  2423. },
  2424. {
  2425. "name": "thmnhat",
  2426. "homepage": "https://www.drupal.org/user/998946"
  2427. }
  2428. ],
  2429. "description": "Formatter of textfield, text area and text format.",
  2430. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  2431. "support": {
  2432. "source": "https://git.drupalcode.org/project/advanced_text_formatter"
  2433. }
  2434. },
  2435. {
  2436. "name": "drupal/audiofield",
  2437. "version": "1.13.0",
  2438. "source": {
  2439. "type": "git",
  2440. "url": "https://git.drupalcode.org/project/audiofield.git",
  2441. "reference": "8.x-1.13"
  2442. },
  2443. "dist": {
  2444. "type": "zip",
  2445. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  2446. "reference": "8.x-1.13",
  2447. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  2448. },
  2449. "require": {
  2450. "drupal/core": "^8 || ^9 || ^10"
  2451. },
  2452. "type": "drupal-module",
  2453. "extra": {
  2454. "drupal": {
  2455. "version": "8.x-1.13",
  2456. "datestamp": "1681143245",
  2457. "security-coverage": {
  2458. "status": "covered",
  2459. "message": "Covered by Drupal's security advisory policy"
  2460. }
  2461. },
  2462. "drush": {
  2463. "services": {
  2464. "drush.services.yml": "^9"
  2465. }
  2466. }
  2467. },
  2468. "notification-url": "https://packages.drupal.org/8/downloads",
  2469. "license": [
  2470. "GPL-2.0-or-later"
  2471. ],
  2472. "authors": [
  2473. {
  2474. "name": "Daniel Moberly",
  2475. "homepage": "https://www.drupal.org/u/danielmoberly",
  2476. "role": "Maintainer"
  2477. },
  2478. {
  2479. "name": "tamerzg",
  2480. "homepage": "https://www.drupal.org/user/464564"
  2481. }
  2482. ],
  2483. "description": "AudioField Module",
  2484. "homepage": "https://www.drupal.org/project/audiofield",
  2485. "support": {
  2486. "source": "https://git.drupalcode.org/project/audiofield",
  2487. "issues": "https://www.drupal.org/project/issues/audiofield"
  2488. }
  2489. },
  2490. {
  2491. "name": "drupal/autocomplete_deluxe",
  2492. "version": "2.0.9",
  2493. "source": {
  2494. "type": "git",
  2495. "url": "https://git.drupalcode.org/project/autocomplete_deluxe.git",
  2496. "reference": "2.0.9"
  2497. },
  2498. "dist": {
  2499. "type": "zip",
  2500. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-2.0.9.zip",
  2501. "reference": "2.0.9",
  2502. "shasum": "1f7d62a29e7fb8d2075e1b61d7605369af5348d1"
  2503. },
  2504. "require": {
  2505. "drupal/core": "<10.3"
  2506. },
  2507. "type": "drupal-module",
  2508. "extra": {
  2509. "drupal": {
  2510. "version": "2.0.9",
  2511. "datestamp": "1742476801",
  2512. "security-coverage": {
  2513. "status": "covered",
  2514. "message": "Covered by Drupal's security advisory policy"
  2515. }
  2516. }
  2517. },
  2518. "notification-url": "https://packages.drupal.org/8/downloads",
  2519. "license": [
  2520. "GPL-2.0-or-later"
  2521. ],
  2522. "authors": [
  2523. {
  2524. "name": "Vardot",
  2525. "homepage": "https://www.drupal.org/vardot",
  2526. "role": "Maintenance for Drupal 8/9/10/11 versions"
  2527. },
  2528. {
  2529. "name": "Mediacurrent",
  2530. "homepage": "https://www.drupal.org/mediacurrent",
  2531. "role": "Supporting organization"
  2532. },
  2533. {
  2534. "name": "mohammed j. razem",
  2535. "homepage": "https://www.drupal.org/user/255384"
  2536. },
  2537. {
  2538. "name": "mpriscella",
  2539. "homepage": "https://www.drupal.org/user/2354820"
  2540. },
  2541. {
  2542. "name": "rajab natshah",
  2543. "homepage": "https://www.drupal.org/user/1414312"
  2544. },
  2545. {
  2546. "name": "sepgil",
  2547. "homepage": "https://www.drupal.org/user/512828"
  2548. }
  2549. ],
  2550. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  2551. "homepage": "https://www.drupal.org/project/autocomplete_deluxe",
  2552. "support": {
  2553. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  2554. "issues": "https://www.drupal.org/project/issues/autocomplete_deluxe"
  2555. }
  2556. },
  2557. {
  2558. "name": "drupal/autologout",
  2559. "version": "1.6.0",
  2560. "source": {
  2561. "type": "git",
  2562. "url": "https://git.drupalcode.org/project/autologout.git",
  2563. "reference": "8.x-1.6"
  2564. },
  2565. "dist": {
  2566. "type": "zip",
  2567. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.6.zip",
  2568. "reference": "8.x-1.6",
  2569. "shasum": "ec666b324ac8aaffe2f5012b1b21c27d9c1780c9"
  2570. },
  2571. "require": {
  2572. "drupal/core": "^9.2 || ^10 || ^11",
  2573. "drupal/js_cookie": "^1.0"
  2574. },
  2575. "type": "drupal-module",
  2576. "extra": {
  2577. "drupal": {
  2578. "version": "8.x-1.6",
  2579. "datestamp": "1732235148",
  2580. "security-coverage": {
  2581. "status": "covered",
  2582. "message": "Covered by Drupal's security advisory policy"
  2583. }
  2584. }
  2585. },
  2586. "notification-url": "https://packages.drupal.org/8/downloads",
  2587. "license": [
  2588. "GPL-2.0-or-later"
  2589. ],
  2590. "authors": [
  2591. {
  2592. "name": "ajits",
  2593. "homepage": "https://www.drupal.org/user/981944"
  2594. },
  2595. {
  2596. "name": "AjK",
  2597. "homepage": "https://www.drupal.org/user/39030"
  2598. },
  2599. {
  2600. "name": "boshtian",
  2601. "homepage": "https://www.drupal.org/user/1773456"
  2602. },
  2603. {
  2604. "name": "dandrews",
  2605. "homepage": "https://www.drupal.org/user/2014490"
  2606. },
  2607. {
  2608. "name": "darksnow",
  2609. "homepage": "https://www.drupal.org/user/391915"
  2610. },
  2611. {
  2612. "name": "japerry",
  2613. "homepage": "https://www.drupal.org/user/45640"
  2614. },
  2615. {
  2616. "name": "johnennew",
  2617. "homepage": "https://www.drupal.org/user/1150042"
  2618. },
  2619. {
  2620. "name": "jrglasgow",
  2621. "homepage": "https://www.drupal.org/user/36590"
  2622. },
  2623. {
  2624. "name": "kmasood",
  2625. "homepage": "https://www.drupal.org/user/1262860"
  2626. },
  2627. {
  2628. "name": "levelos",
  2629. "homepage": "https://www.drupal.org/user/54135"
  2630. },
  2631. {
  2632. "name": "prabeen.giri",
  2633. "homepage": "https://www.drupal.org/user/913078"
  2634. },
  2635. {
  2636. "name": "scott_earnest",
  2637. "homepage": "https://www.drupal.org/user/416158"
  2638. },
  2639. {
  2640. "name": "str8",
  2641. "homepage": "https://www.drupal.org/user/2865063"
  2642. },
  2643. {
  2644. "name": "the_g_bomb",
  2645. "homepage": "https://www.drupal.org/user/492012"
  2646. }
  2647. ],
  2648. "description": "Adds automated timed logout.",
  2649. "homepage": "http://drupal.org/project/autologout",
  2650. "support": {
  2651. "source": "https://git.drupalcode.org/project/autologout",
  2652. "issues": "https://www.drupal.org/project/issues/autologout"
  2653. }
  2654. },
  2655. {
  2656. "name": "drupal/better_exposed_filters",
  2657. "version": "6.0.6",
  2658. "source": {
  2659. "type": "git",
  2660. "url": "https://git.drupalcode.org/project/better_exposed_filters.git",
  2661. "reference": "6.0.6"
  2662. },
  2663. "dist": {
  2664. "type": "zip",
  2665. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-6.0.6.zip",
  2666. "reference": "6.0.6",
  2667. "shasum": "558ca591d450fc64512cae7f98cb4b0241e15ba3"
  2668. },
  2669. "require": {
  2670. "drupal/core": "^9 || ^10",
  2671. "drupal/jquery_ui": "*",
  2672. "drupal/jquery_ui_datepicker": "*",
  2673. "drupal/jquery_ui_slider": "*",
  2674. "drupal/jquery_ui_touch_punch": "*"
  2675. },
  2676. "type": "drupal-module",
  2677. "extra": {
  2678. "drupal": {
  2679. "version": "6.0.6",
  2680. "datestamp": "1716397541",
  2681. "security-coverage": {
  2682. "status": "covered",
  2683. "message": "Covered by Drupal's security advisory policy"
  2684. }
  2685. }
  2686. },
  2687. "notification-url": "https://packages.drupal.org/8/downloads",
  2688. "license": [
  2689. "GPL-2.0-or-later"
  2690. ],
  2691. "authors": [
  2692. {
  2693. "name": "Mike Keran",
  2694. "homepage": "https://www.drupal.org/u/mikeker"
  2695. },
  2696. {
  2697. "name": "Martin Keereman",
  2698. "homepage": "https://www.drupal.org/u/etroid"
  2699. },
  2700. {
  2701. "name": "Neslee Canil Pinto",
  2702. "homepage": "https://www.drupal.org/u/neslee-canil-pinto"
  2703. },
  2704. {
  2705. "name": "mikeker",
  2706. "homepage": "https://www.drupal.org/user/192273"
  2707. },
  2708. {
  2709. "name": "neslee canil pinto",
  2710. "homepage": "https://www.drupal.org/user/3580850"
  2711. },
  2712. {
  2713. "name": "podarok",
  2714. "homepage": "https://www.drupal.org/user/116002"
  2715. },
  2716. {
  2717. "name": "rlhawk",
  2718. "homepage": "https://www.drupal.org/user/352283"
  2719. },
  2720. {
  2721. "name": "smustgrave",
  2722. "homepage": "https://www.drupal.org/user/3252890"
  2723. }
  2724. ],
  2725. "description": "Replaces the Views default single- or multi-select boxes with more advanced options.",
  2726. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2727. "support": {
  2728. "source": "https://git.drupalcode.org/project/better_exposed_filters",
  2729. "issues": "https://www.drupal.org/project/issues/better_exposed_filters"
  2730. }
  2731. },
  2732. {
  2733. "name": "drupal/betterlogin",
  2734. "version": "2.0.2",
  2735. "source": {
  2736. "type": "git",
  2737. "url": "https://git.drupalcode.org/project/betterlogin.git",
  2738. "reference": "2.0.2"
  2739. },
  2740. "dist": {
  2741. "type": "zip",
  2742. "url": "https://ftp.drupal.org/files/projects/betterlogin-2.0.2.zip",
  2743. "reference": "2.0.2",
  2744. "shasum": "1c05fdea10862ff86c809c84d9eba95b6b52f90a"
  2745. },
  2746. "require": {
  2747. "drupal/core": "^9.0 || ^10.0"
  2748. },
  2749. "type": "drupal-module",
  2750. "extra": {
  2751. "drupal": {
  2752. "version": "2.0.2",
  2753. "datestamp": "1709573077",
  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": "theamoeba",
  2767. "homepage": "https://www.drupal.org/user/251700"
  2768. },
  2769. {
  2770. "name": "yogeshmpawar",
  2771. "homepage": "https://www.drupal.org/user/2922907"
  2772. }
  2773. ],
  2774. "description": "Make the login screens better :)",
  2775. "homepage": "https://www.drupal.org/project/betterlogin",
  2776. "support": {
  2777. "source": "https://git.drupalcode.org/project/betterlogin"
  2778. }
  2779. },
  2780. {
  2781. "name": "drupal/blazy",
  2782. "version": "2.16.0",
  2783. "source": {
  2784. "type": "git",
  2785. "url": "https://git.drupalcode.org/project/blazy.git",
  2786. "reference": "8.x-2.16"
  2787. },
  2788. "dist": {
  2789. "type": "zip",
  2790. "url": "https://ftp.drupal.org/files/projects/blazy-8.x-2.16.zip",
  2791. "reference": "8.x-2.16",
  2792. "shasum": "ae84ac6083f734968eb9c7cc008b32aaa04c5b9c"
  2793. },
  2794. "require": {
  2795. "drupal/core": "^8.8 || ^9 || ^10"
  2796. },
  2797. "conflict": {
  2798. "drupal/csp": "<1.12"
  2799. },
  2800. "type": "drupal-module",
  2801. "extra": {
  2802. "drupal": {
  2803. "version": "8.x-2.16",
  2804. "datestamp": "1685788557",
  2805. "security-coverage": {
  2806. "status": "covered",
  2807. "message": "Covered by Drupal's security advisory policy"
  2808. }
  2809. }
  2810. },
  2811. "notification-url": "https://packages.drupal.org/8/downloads",
  2812. "license": [
  2813. "GPL-2.0-or-later"
  2814. ],
  2815. "authors": [
  2816. {
  2817. "name": "Gaus Surahman",
  2818. "homepage": "https://www.drupal.org/u/gausarts",
  2819. "role": "Maintainer"
  2820. },
  2821. {
  2822. "name": "Contributors",
  2823. "homepage": "https://www.drupal.org/node/2663268/committers",
  2824. "role": "Contributor"
  2825. },
  2826. {
  2827. "name": "geek-merlin",
  2828. "homepage": "https://www.drupal.org/user/229048"
  2829. },
  2830. {
  2831. "name": "sun",
  2832. "homepage": "https://www.drupal.org/user/54136"
  2833. }
  2834. ],
  2835. "description": "Provides basic bLazy integration for lazy loading and multi-serving images.",
  2836. "homepage": "https://drupal.org/project/blazy",
  2837. "keywords": [
  2838. "Drupal",
  2839. "bLazy",
  2840. "lazyload"
  2841. ],
  2842. "support": {
  2843. "source": "https://git.drupalcode.org/project/blazy",
  2844. "issues": "https://drupal.org/project/issues/blazy"
  2845. }
  2846. },
  2847. {
  2848. "name": "drupal/block_class",
  2849. "version": "4.0.1",
  2850. "source": {
  2851. "type": "git",
  2852. "url": "https://git.drupalcode.org/project/block_class.git",
  2853. "reference": "4.0.1"
  2854. },
  2855. "dist": {
  2856. "type": "zip",
  2857. "url": "https://ftp.drupal.org/files/projects/block_class-4.0.1.zip",
  2858. "reference": "4.0.1",
  2859. "shasum": "46fa2437a8bd272a1f757a7cd957eb2747e28cdb"
  2860. },
  2861. "require": {
  2862. "drupal/core": "^9 || ^10 || ^11"
  2863. },
  2864. "type": "drupal-module",
  2865. "extra": {
  2866. "drupal": {
  2867. "version": "4.0.1",
  2868. "datestamp": "1745427425",
  2869. "security-coverage": {
  2870. "status": "covered",
  2871. "message": "Covered by Drupal's security advisory policy"
  2872. }
  2873. }
  2874. },
  2875. "notification-url": "https://packages.drupal.org/8/downloads",
  2876. "license": [
  2877. "GPL-2.0-or-later"
  2878. ],
  2879. "authors": [
  2880. {
  2881. "name": "Todd Nienkerk",
  2882. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2883. "role": "Maintainer"
  2884. },
  2885. {
  2886. "name": "Renato Gonçalves (RenatoG)",
  2887. "homepage": "https://www.drupal.org/u/RenatoG",
  2888. "role": "Maintainer"
  2889. },
  2890. {
  2891. "name": "Neslee Canil Pinto",
  2892. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  2893. "role": "Maintainer"
  2894. },
  2895. {
  2896. "name": "Aaron Stanush",
  2897. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2898. "role": "Maintainer"
  2899. },
  2900. {
  2901. "name": "David Suissa (DYdave)",
  2902. "homepage": "https://www.drupal.org/u/DYdave",
  2903. "role": "Maintainer"
  2904. },
  2905. {
  2906. "name": "Four Kitchens",
  2907. "homepage": "https://www.drupal.org/user/358502",
  2908. "role": "Maintainer"
  2909. },
  2910. {
  2911. "name": "berenddeboer",
  2912. "homepage": "https://www.drupal.org/u/berenddeboer",
  2913. "role": "Maintainer"
  2914. },
  2915. {
  2916. "name": "elliotttf",
  2917. "homepage": "https://www.drupal.org/u/elliotttf",
  2918. "role": "Maintainer"
  2919. },
  2920. {
  2921. "name": "Michal Minecki (mirzu)",
  2922. "homepage": "https://www.drupal.org/u/mirzu",
  2923. "role": "Maintainer"
  2924. },
  2925. {
  2926. "name": "Patrick Coffey (pcoffey)",
  2927. "homepage": "https://www.drupal.org/u/pcoffey",
  2928. "role": "Maintainer"
  2929. },
  2930. {
  2931. "name": "Taylor Smith (tsmith512)",
  2932. "homepage": "https://www.drupal.org/u/tsmith512",
  2933. "role": "Maintainer"
  2934. }
  2935. ],
  2936. "description": "Allows assigning classes to Blocks.",
  2937. "homepage": "https://www.drupal.org/project/block_class",
  2938. "keywords": [
  2939. "Drupal"
  2940. ],
  2941. "support": {
  2942. "source": "https://git.drupalcode.org/project/block_class",
  2943. "issues": "https://www.drupal.org/project/issues/block_class",
  2944. "irc": "irc://irc.freenode.org/drupal-contribute"
  2945. }
  2946. },
  2947. {
  2948. "name": "drupal/bulkdelete",
  2949. "version": "dev-1.x",
  2950. "source": {
  2951. "type": "git",
  2952. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2953. "reference": "36e12429e99606463b9ef15203c2018de69965b2"
  2954. },
  2955. "require": {
  2956. "drupal/core": "^8.7.7 || ^9"
  2957. },
  2958. "type": "drupal-module",
  2959. "extra": {
  2960. "branch-alias": {
  2961. "dev-1.x": "1.x-dev"
  2962. },
  2963. "drupal": {
  2964. "version": "8.x-1.x-dev",
  2965. "datestamp": "1590300128",
  2966. "security-coverage": {
  2967. "status": "not-covered",
  2968. "message": "Dev releases are not covered by Drupal security advisories."
  2969. }
  2970. }
  2971. },
  2972. "notification-url": "https://packages.drupal.org/8/downloads",
  2973. "license": [
  2974. "GPL-2.0-or-later"
  2975. ],
  2976. "authors": [
  2977. {
  2978. "name": "Kars-T",
  2979. "homepage": "https://www.drupal.org/user/224499"
  2980. },
  2981. {
  2982. "name": "Rahul Seth",
  2983. "homepage": "https://www.drupal.org/user/2694359"
  2984. },
  2985. {
  2986. "name": "adriancid",
  2987. "homepage": "https://www.drupal.org/user/1962106"
  2988. },
  2989. {
  2990. "name": "robertDouglass",
  2991. "homepage": "https://www.drupal.org/user/5449"
  2992. }
  2993. ],
  2994. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2995. "homepage": "https://www.drupal.org/project/bulkdelete",
  2996. "support": {
  2997. "source": "https://git.drupalcode.org/project/bulkdelete"
  2998. }
  2999. },
  3000. {
  3001. "name": "drupal/computed_field",
  3002. "version": "3.0.0",
  3003. "source": {
  3004. "type": "git",
  3005. "url": "https://git.drupalcode.org/project/computed_field.git",
  3006. "reference": "3.0.0"
  3007. },
  3008. "dist": {
  3009. "type": "zip",
  3010. "url": "https://ftp.drupal.org/files/projects/computed_field-3.0.0.zip",
  3011. "reference": "3.0.0",
  3012. "shasum": "88f060658f30e196b177923dc12bc48df38042df"
  3013. },
  3014. "require": {
  3015. "drupal/core": "^8 || ^9 || ^10"
  3016. },
  3017. "type": "drupal-module",
  3018. "extra": {
  3019. "drupal": {
  3020. "version": "3.0.0",
  3021. "datestamp": "1705775905",
  3022. "security-coverage": {
  3023. "status": "covered",
  3024. "message": "Covered by Drupal's security advisory policy"
  3025. }
  3026. }
  3027. },
  3028. "notification-url": "https://packages.drupal.org/8/downloads",
  3029. "license": [
  3030. "GPL-2.0-or-later"
  3031. ],
  3032. "authors": [
  3033. {
  3034. "name": "agileware",
  3035. "homepage": "https://www.drupal.org/user/89106"
  3036. },
  3037. {
  3038. "name": "colan",
  3039. "homepage": "https://www.drupal.org/user/58704"
  3040. },
  3041. {
  3042. "name": "dealancer",
  3043. "homepage": "https://www.drupal.org/user/243418"
  3044. },
  3045. {
  3046. "name": "joachim",
  3047. "homepage": "https://www.drupal.org/user/107701"
  3048. },
  3049. {
  3050. "name": "markus_petrux",
  3051. "homepage": "https://www.drupal.org/user/39593"
  3052. },
  3053. {
  3054. "name": "Moonshine",
  3055. "homepage": "https://www.drupal.org/user/133705"
  3056. },
  3057. {
  3058. "name": "nickcaballero",
  3059. "homepage": "https://www.drupal.org/user/588336"
  3060. },
  3061. {
  3062. "name": "Pedro Lozano",
  3063. "homepage": "https://www.drupal.org/user/123766"
  3064. },
  3065. {
  3066. "name": "ram4nd",
  3067. "homepage": "https://www.drupal.org/user/601534"
  3068. }
  3069. ],
  3070. "description": "Defines a field type that allows values to be \"computed\" via PHP code.",
  3071. "homepage": "https://www.drupal.org/project/computed_field",
  3072. "support": {
  3073. "source": "https://git.drupalcode.org/project/computed_field"
  3074. }
  3075. },
  3076. {
  3077. "name": "drupal/computed_token_field",
  3078. "version": "1.0.0-beta1",
  3079. "source": {
  3080. "type": "git",
  3081. "url": "https://git.drupalcode.org/project/computed_token_field.git",
  3082. "reference": "1.0.0-beta1"
  3083. },
  3084. "dist": {
  3085. "type": "zip",
  3086. "url": "https://ftp.drupal.org/files/projects/computed_token_field-1.0.0-beta1.zip",
  3087. "reference": "1.0.0-beta1",
  3088. "shasum": "fb4904822b8321c6143990d39d937f3a488980a8"
  3089. },
  3090. "require": {
  3091. "drupal/computed_field": "^3.0",
  3092. "drupal/core": "^8 || ^9 || ^10"
  3093. },
  3094. "require-dev": {
  3095. "drupal/eck": "*",
  3096. "drupal/field_permissions": "*",
  3097. "drupal/hide_revision_field": "*",
  3098. "drupal/inline_entity_form": "*"
  3099. },
  3100. "type": "drupal-module",
  3101. "extra": {
  3102. "drupal": {
  3103. "version": "1.0.0-beta1",
  3104. "datestamp": "1741812647",
  3105. "security-coverage": {
  3106. "status": "not-covered",
  3107. "message": "Beta releases are not covered by Drupal security advisories."
  3108. }
  3109. }
  3110. },
  3111. "notification-url": "https://packages.drupal.org/8/downloads",
  3112. "license": [
  3113. "GPLv2 or later"
  3114. ],
  3115. "authors": [
  3116. {
  3117. "name": "Derek Laventure",
  3118. "homepage": "https://www.drupal.org/user/3082389",
  3119. "email": "derek@consensus.enterprises"
  3120. },
  3121. {
  3122. "name": "colan",
  3123. "homepage": "https://www.drupal.org/user/58704"
  3124. },
  3125. {
  3126. "name": "ergonlogic",
  3127. "homepage": "https://www.drupal.org/user/368613"
  3128. },
  3129. {
  3130. "name": "spiderman",
  3131. "homepage": "https://www.drupal.org/user/1631"
  3132. }
  3133. ],
  3134. "description": "Computed field that accepts a token to calculate its value.",
  3135. "homepage": "https://www.drupal.org/project/computed_token_field",
  3136. "support": {
  3137. "source": "https://git.drupalcode.org/project/computed_token_field"
  3138. }
  3139. },
  3140. {
  3141. "name": "drupal/config_devel",
  3142. "version": "dev-1.x",
  3143. "source": {
  3144. "type": "git",
  3145. "url": "https://git.drupalcode.org/project/config_devel.git",
  3146. "reference": "aee6c9e59d3d77d73a6d980875a779f7331013b4"
  3147. },
  3148. "require": {
  3149. "drupal/core": "^8 || ^9"
  3150. },
  3151. "type": "drupal-module",
  3152. "extra": {
  3153. "branch-alias": {
  3154. "dev-1.x": "1.x-dev"
  3155. },
  3156. "drupal": {
  3157. "version": "8.x-1.7+4-dev",
  3158. "datestamp": "1632257543",
  3159. "security-coverage": {
  3160. "status": "not-covered",
  3161. "message": "Dev releases are not covered by Drupal security advisories."
  3162. }
  3163. }
  3164. },
  3165. "notification-url": "https://packages.drupal.org/8/downloads",
  3166. "license": [
  3167. "GPL-2.0+"
  3168. ],
  3169. "authors": [
  3170. {
  3171. "name": "alexpott",
  3172. "homepage": "https://www.drupal.org/user/157725"
  3173. },
  3174. {
  3175. "name": "benjy",
  3176. "homepage": "https://www.drupal.org/user/1852732"
  3177. },
  3178. {
  3179. "name": "chx",
  3180. "homepage": "https://www.drupal.org/user/9446"
  3181. },
  3182. {
  3183. "name": "joachim",
  3184. "homepage": "https://www.drupal.org/user/107701"
  3185. },
  3186. {
  3187. "name": "nedjo",
  3188. "homepage": "https://www.drupal.org/user/4481"
  3189. },
  3190. {
  3191. "name": "tim.plunkett",
  3192. "homepage": "https://www.drupal.org/user/241634"
  3193. },
  3194. {
  3195. "name": "vijaycs85",
  3196. "homepage": "https://www.drupal.org/user/93488"
  3197. }
  3198. ],
  3199. "description": "Helps developers work with configuration.",
  3200. "homepage": "https://www.drupal.org/project/config_devel",
  3201. "support": {
  3202. "source": "https://git.drupalcode.org/project/config_devel"
  3203. }
  3204. },
  3205. {
  3206. "name": "drupal/config_enforce",
  3207. "version": "1.0.7",
  3208. "source": {
  3209. "type": "git",
  3210. "url": "https://git.drupalcode.org/project/config_enforce.git",
  3211. "reference": "1.0.7"
  3212. },
  3213. "dist": {
  3214. "type": "zip",
  3215. "url": "https://ftp.drupal.org/files/projects/config_enforce-1.0.7.zip",
  3216. "reference": "1.0.7",
  3217. "shasum": "f90a52c7ce804d45a0c5082925987b730ec0757a"
  3218. },
  3219. "require": {
  3220. "drupal/core": "^8 || ^9 || ^10",
  3221. "php": "^7.4 || ^8"
  3222. },
  3223. "suggest": {
  3224. "drush/drush": "Allows for running enforce commands via the CLI"
  3225. },
  3226. "type": "drupal-module",
  3227. "extra": {
  3228. "drupal": {
  3229. "version": "1.0.7",
  3230. "datestamp": "1723136457",
  3231. "security-coverage": {
  3232. "status": "covered",
  3233. "message": "Covered by Drupal's security advisory policy"
  3234. }
  3235. },
  3236. "drush": {
  3237. "services": {
  3238. "drush.services.yml": "^11"
  3239. }
  3240. }
  3241. },
  3242. "notification-url": "https://packages.drupal.org/8/downloads",
  3243. "license": [
  3244. "GPLv3 or later"
  3245. ],
  3246. "authors": [
  3247. {
  3248. "name": "Christopher Gervais",
  3249. "homepage": "https://www.drupal.org/user/1131532",
  3250. "email": "chris@ergonlogic.com"
  3251. },
  3252. {
  3253. "name": "Dan Friedman",
  3254. "homepage": "https://www.drupal.org/user/58704",
  3255. "email": "dan@consensus.enterprises"
  3256. },
  3257. {
  3258. "name": "Derek Laventure",
  3259. "homepage": "https://www.drupal.org/user/368613",
  3260. "email": "derek@consensus.enterprises"
  3261. },
  3262. {
  3263. "name": "Matei Stanca",
  3264. "homepage": "https://ambientimpact.com"
  3265. },
  3266. {
  3267. "name": "M Parker",
  3268. "homepage": "https://www.drupal.org/u/mparker17"
  3269. },
  3270. {
  3271. "name": "Serena Zhu",
  3272. "homepage": "https://www.drupal.org/u/szhu"
  3273. },
  3274. {
  3275. "name": "spiderman",
  3276. "homepage": "https://www.drupal.org/user/1631"
  3277. },
  3278. {
  3279. "name": "szhu",
  3280. "homepage": "https://www.drupal.org/user/3525295"
  3281. }
  3282. ],
  3283. "description": "This experimental project seeks to make Drupal better-suited to SaaS application development by allowing some configuration to be treated as read-only.",
  3284. "homepage": "https://www.drupal.org/project/config_enforce",
  3285. "support": {
  3286. "source": "https://git.drupalcode.org/project/config_enforce"
  3287. }
  3288. },
  3289. {
  3290. "name": "drupal/config_filter",
  3291. "version": "2.7.0",
  3292. "source": {
  3293. "type": "git",
  3294. "url": "https://git.drupalcode.org/project/config_filter.git",
  3295. "reference": "8.x-2.7"
  3296. },
  3297. "dist": {
  3298. "type": "zip",
  3299. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.7.zip",
  3300. "reference": "8.x-2.7",
  3301. "shasum": "7fe7161b93c7e24c6db135f1cf82d144bef66e50"
  3302. },
  3303. "require": {
  3304. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  3305. },
  3306. "conflict": {
  3307. "drush/drush": "<10"
  3308. },
  3309. "suggest": {
  3310. "drupal/config_split": "Split site configuration for different environments."
  3311. },
  3312. "type": "drupal-module",
  3313. "extra": {
  3314. "drupal": {
  3315. "version": "8.x-2.7",
  3316. "datestamp": "1727472458",
  3317. "security-coverage": {
  3318. "status": "covered",
  3319. "message": "Covered by Drupal's security advisory policy"
  3320. }
  3321. }
  3322. },
  3323. "notification-url": "https://packages.drupal.org/8/downloads",
  3324. "license": [
  3325. "GPL-2.0-or-later"
  3326. ],
  3327. "authors": [
  3328. {
  3329. "name": "Fabian Bircher",
  3330. "homepage": "https://www.drupal.org/u/bircher",
  3331. "email": "opensource@fabianbircher.com",
  3332. "role": "Maintainer"
  3333. },
  3334. {
  3335. "name": "Nuvole Web",
  3336. "homepage": "http://nuvole.org",
  3337. "email": "info@nuvole.org",
  3338. "role": "Maintainer"
  3339. },
  3340. {
  3341. "name": "pescetti",
  3342. "homepage": "https://www.drupal.org/user/436244"
  3343. }
  3344. ],
  3345. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  3346. "homepage": "https://www.drupal.org/project/config_filter",
  3347. "keywords": [
  3348. "Drupal",
  3349. "configuration",
  3350. "configuration management"
  3351. ],
  3352. "support": {
  3353. "source": "https://git.drupalcode.org/project/config_filter",
  3354. "issues": "https://www.drupal.org/project/issues/config_filter",
  3355. "slack": "https://drupal.slack.com/archives/C45342CDD"
  3356. }
  3357. },
  3358. {
  3359. "name": "drupal/config_ignore",
  3360. "version": "3.3.0",
  3361. "source": {
  3362. "type": "git",
  3363. "url": "https://git.drupalcode.org/project/config_ignore.git",
  3364. "reference": "8.x-3.3"
  3365. },
  3366. "dist": {
  3367. "type": "zip",
  3368. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-3.3.zip",
  3369. "reference": "8.x-3.3",
  3370. "shasum": "4446811ecb023820a57c227d35c034e0d4363a70"
  3371. },
  3372. "require": {
  3373. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  3374. },
  3375. "require-dev": {
  3376. "drupal/config_filter": "^1.8||^2.2",
  3377. "drush/drush": "^10 || ^11 || ^12"
  3378. },
  3379. "type": "drupal-module",
  3380. "extra": {
  3381. "drupal": {
  3382. "version": "8.x-3.3",
  3383. "datestamp": "1713299496",
  3384. "security-coverage": {
  3385. "status": "covered",
  3386. "message": "Covered by Drupal's security advisory policy"
  3387. }
  3388. }
  3389. },
  3390. "notification-url": "https://packages.drupal.org/8/downloads",
  3391. "license": [
  3392. "GPL-2.0-or-later"
  3393. ],
  3394. "authors": [
  3395. {
  3396. "name": "Tommy Lynge Jørgensen",
  3397. "homepage": "https://www.drupal.org/u/tlyngej",
  3398. "email": "tlyngej@gmail.com",
  3399. "role": "Maintainer"
  3400. },
  3401. {
  3402. "name": "Fabian Bircher",
  3403. "homepage": "https://www.drupal.org/u/bircher",
  3404. "role": "Maintainer"
  3405. },
  3406. {
  3407. "name": "tlyngej",
  3408. "homepage": "https://www.drupal.org/user/413139"
  3409. }
  3410. ],
  3411. "description": "Ignore certain configuration during import and export.",
  3412. "homepage": "http://drupal.org/project/config_ignore",
  3413. "support": {
  3414. "source": "https://git.drupalcode.org/project/config_ignore",
  3415. "issues": "http://drupal.org/project/config_ignore"
  3416. }
  3417. },
  3418. {
  3419. "name": "drupal/config_pages",
  3420. "version": "dev-2.x",
  3421. "source": {
  3422. "type": "git",
  3423. "url": "https://git.drupalcode.org/project/config_pages.git",
  3424. "reference": "ba53fd5b7536040f92d0958b7ce643e6cca67d45"
  3425. },
  3426. "require": {
  3427. "drupal/core": "^8.5 | ^9"
  3428. },
  3429. "type": "drupal-module",
  3430. "extra": {
  3431. "branch-alias": {
  3432. "dev-2.x": "2.x-dev"
  3433. },
  3434. "drupal": {
  3435. "version": "8.x-2.9+11-dev",
  3436. "datestamp": "1634847768",
  3437. "security-coverage": {
  3438. "status": "not-covered",
  3439. "message": "Dev releases are not covered by Drupal security advisories."
  3440. }
  3441. },
  3442. "drush": {
  3443. "services": {
  3444. "drush.services.yml": "^9"
  3445. }
  3446. }
  3447. },
  3448. "notification-url": "https://packages.drupal.org/8/downloads",
  3449. "license": [
  3450. "GPL-2.0-or-later"
  3451. ],
  3452. "authors": [
  3453. {
  3454. "name": "Qwaygon",
  3455. "homepage": "https://www.drupal.org/user/636624"
  3456. },
  3457. {
  3458. "name": "claymor",
  3459. "homepage": "https://www.drupal.org/user/3193903"
  3460. },
  3461. {
  3462. "name": "shumer",
  3463. "homepage": "https://www.drupal.org/user/2297432"
  3464. }
  3465. ],
  3466. "description": "ConfigPages module",
  3467. "homepage": "http://drupal.org/project/config_pages",
  3468. "keywords": [
  3469. "Drupal"
  3470. ],
  3471. "support": {
  3472. "source": "http://cgit.drupalcode.org/config_pages",
  3473. "issues": "http://drupal.org/project/issues/config_pages"
  3474. }
  3475. },
  3476. {
  3477. "name": "drupal/config_update",
  3478. "version": "2.0.0-alpha4",
  3479. "source": {
  3480. "type": "git",
  3481. "url": "https://git.drupalcode.org/project/config_update.git",
  3482. "reference": "2.0.0-alpha4"
  3483. },
  3484. "dist": {
  3485. "type": "zip",
  3486. "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha4.zip",
  3487. "reference": "2.0.0-alpha4",
  3488. "shasum": "d8ea528b0b3e24918356bb72bef61408f650aa8e"
  3489. },
  3490. "require": {
  3491. "drupal/core": "^9.4 || ^10 || ^11"
  3492. },
  3493. "type": "drupal-module",
  3494. "extra": {
  3495. "drupal": {
  3496. "version": "2.0.0-alpha4",
  3497. "datestamp": "1724596931",
  3498. "security-coverage": {
  3499. "status": "not-covered",
  3500. "message": "Alpha releases are not covered by Drupal security advisories."
  3501. }
  3502. }
  3503. },
  3504. "notification-url": "https://packages.drupal.org/8/downloads",
  3505. "license": [
  3506. "GPL-2.0-or-later"
  3507. ],
  3508. "authors": [
  3509. {
  3510. "name": "codebymikey",
  3511. "homepage": "https://www.drupal.org/user/3573206"
  3512. },
  3513. {
  3514. "name": "pasqualle",
  3515. "homepage": "https://www.drupal.org/user/80733"
  3516. },
  3517. {
  3518. "name": "vishalkhode",
  3519. "homepage": "https://www.drupal.org/user/2439156"
  3520. }
  3521. ],
  3522. "description": "Provides basic revert and update functionality for other modules.",
  3523. "homepage": "https://www.drupal.org/project/config_update",
  3524. "support": {
  3525. "source": "https://git.drupalcode.org/project/config_update"
  3526. }
  3527. },
  3528. {
  3529. "name": "drupal/console",
  3530. "version": "1.9.8",
  3531. "source": {
  3532. "type": "git",
  3533. "url": "https://github.com/hechoendrupal/drupal-console.git",
  3534. "reference": "d292c940c07d164e32bbe9525e909311ca65e8cb"
  3535. },
  3536. "dist": {
  3537. "type": "zip",
  3538. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/d292c940c07d164e32bbe9525e909311ca65e8cb",
  3539. "reference": "d292c940c07d164e32bbe9525e909311ca65e8cb",
  3540. "shasum": ""
  3541. },
  3542. "require": {
  3543. "alchemy/zippy": "~0.4",
  3544. "composer/installers": "~1.0",
  3545. "doctrine/annotations": "^1.2",
  3546. "doctrine/collections": "^1.3",
  3547. "drupal/console-core": "1.9.7",
  3548. "drupal/console-extend-plugin": "~0.9.5",
  3549. "php": ">=7.0.8",
  3550. "psy/psysh": "0.6.* || ~0.8",
  3551. "symfony/css-selector": "~3.0|~4.0",
  3552. "symfony/dom-crawler": "~3.0|~4.0",
  3553. "symfony/http-foundation": "~3.0|~4.0"
  3554. },
  3555. "suggest": {
  3556. "symfony/thanks": "Thank your favorite PHP projects on GitHub using the CLI",
  3557. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically"
  3558. },
  3559. "bin": [
  3560. "bin/drupal"
  3561. ],
  3562. "type": "library",
  3563. "autoload": {
  3564. "psr-4": {
  3565. "Drupal\\Console\\": "src"
  3566. }
  3567. },
  3568. "notification-url": "https://packagist.org/downloads/",
  3569. "license": [
  3570. "GPL-2.0-or-later"
  3571. ],
  3572. "authors": [
  3573. {
  3574. "name": "David Flores",
  3575. "email": "dmousex@gmail.com",
  3576. "homepage": "http://dmouse.net"
  3577. },
  3578. {
  3579. "name": "Jesus Manuel Olivas",
  3580. "email": "jesus.olivas@gmail.com",
  3581. "homepage": "http://jmolivas.com"
  3582. },
  3583. {
  3584. "name": "Eduardo Garcia",
  3585. "email": "enzo@enzolutions.com",
  3586. "homepage": "http://enzolutions.com/"
  3587. },
  3588. {
  3589. "name": "Omar Aguirre",
  3590. "email": "omersguchigu@gmail.com"
  3591. },
  3592. {
  3593. "name": "Drupal Console Contributors",
  3594. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  3595. }
  3596. ],
  3597. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  3598. "homepage": "http://drupalconsole.com/",
  3599. "keywords": [
  3600. "console",
  3601. "development",
  3602. "drupal",
  3603. "symfony"
  3604. ],
  3605. "support": {
  3606. "docs": "https://docs.drupalconsole.com/",
  3607. "forum": "https://gitter.im/hechoendrupal/DrupalConsole",
  3608. "issues": "https://github.com/hechoendrupal/drupal-console/issues",
  3609. "source": "https://github.com/hechoendrupal/drupal-console/tree/1.9.8"
  3610. },
  3611. "funding": [
  3612. {
  3613. "url": "https://opencollective.com/drupalconsole",
  3614. "type": "open_collective"
  3615. }
  3616. ],
  3617. "time": "2021-11-29T17:09:44+00:00"
  3618. },
  3619. {
  3620. "name": "drupal/console-core",
  3621. "version": "1.9.7",
  3622. "source": {
  3623. "type": "git",
  3624. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  3625. "reference": "ab3abc2631761c9588230ba88189d9ba4eb9ed63"
  3626. },
  3627. "dist": {
  3628. "type": "zip",
  3629. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/ab3abc2631761c9588230ba88189d9ba4eb9ed63",
  3630. "reference": "ab3abc2631761c9588230ba88189d9ba4eb9ed63",
  3631. "shasum": ""
  3632. },
  3633. "require": {
  3634. "dflydev/dot-access-configuration": "^1.0",
  3635. "drupal/console-en": "1.9.7",
  3636. "guzzlehttp/guzzle": "~6.1",
  3637. "php": ">=7.0.8",
  3638. "stecman/symfony-console-completion": "~0.7",
  3639. "symfony/config": "~3.0|^4.4",
  3640. "symfony/console": "~3.0|^4.4",
  3641. "symfony/debug": "~3.0|^4.4",
  3642. "symfony/dependency-injection": "~3.0|^4.4",
  3643. "symfony/event-dispatcher": "~3.0|^4.4",
  3644. "symfony/filesystem": "~3.0|^4.4",
  3645. "symfony/finder": "~3.0|^4.4",
  3646. "symfony/process": "~3.0|^4.4",
  3647. "symfony/translation": "~3.0|^4.4",
  3648. "symfony/yaml": "~3.0|^4.4",
  3649. "twig/twig": "^1.38.2|^2.12.0",
  3650. "webflo/drupal-finder": "^1.0",
  3651. "webmozart/path-util": "^2.3"
  3652. },
  3653. "type": "library",
  3654. "autoload": {
  3655. "files": [
  3656. "src/functions.php"
  3657. ],
  3658. "psr-4": {
  3659. "Drupal\\Console\\Core\\": "src"
  3660. }
  3661. },
  3662. "notification-url": "https://packagist.org/downloads/",
  3663. "license": [
  3664. "GPL-2.0-or-later"
  3665. ],
  3666. "authors": [
  3667. {
  3668. "name": "David Flores",
  3669. "email": "dmousex@gmail.com",
  3670. "homepage": "http://dmouse.net"
  3671. },
  3672. {
  3673. "name": "Jesus Manuel Olivas",
  3674. "email": "jesus.olivas@gmail.com",
  3675. "homepage": "http://jmolivas.com"
  3676. },
  3677. {
  3678. "name": "Eduardo Garcia",
  3679. "email": "enzo@enzolutions.com",
  3680. "homepage": "http://enzolutions.com/"
  3681. },
  3682. {
  3683. "name": "Omar Aguirre",
  3684. "email": "omersguchigu@gmail.com"
  3685. },
  3686. {
  3687. "name": "Drupal Console Contributors",
  3688. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3689. }
  3690. ],
  3691. "description": "Drupal Console Core",
  3692. "homepage": "http://drupalconsole.com/",
  3693. "keywords": [
  3694. "console",
  3695. "development",
  3696. "drupal",
  3697. "symfony"
  3698. ],
  3699. "support": {
  3700. "docs": "http://docs.drupalconsole.com/",
  3701. "forum": "https://gitter.im/hechoendrupal/DrupalConsole",
  3702. "issues": "https://github.com/hechoendrupal/DrupalConsole/issues",
  3703. "source": "https://github.com/hechoendrupal/drupal-console-core/tree/1.9.7"
  3704. },
  3705. "time": "2020-11-30T01:45:57+00:00"
  3706. },
  3707. {
  3708. "name": "drupal/console-en",
  3709. "version": "v1.9.7",
  3710. "source": {
  3711. "type": "git",
  3712. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  3713. "reference": "7594601fff153c2799a62bd678ff80749baeee0c"
  3714. },
  3715. "dist": {
  3716. "type": "zip",
  3717. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/7594601fff153c2799a62bd678ff80749baeee0c",
  3718. "reference": "7594601fff153c2799a62bd678ff80749baeee0c",
  3719. "shasum": ""
  3720. },
  3721. "type": "library",
  3722. "notification-url": "https://packagist.org/downloads/",
  3723. "license": [
  3724. "GPL-2.0-or-later"
  3725. ],
  3726. "authors": [
  3727. {
  3728. "name": "David Flores",
  3729. "email": "dmousex@gmail.com",
  3730. "homepage": "http://dmouse.net"
  3731. },
  3732. {
  3733. "name": "Jesus Manuel Olivas",
  3734. "email": "jesus.olivas@gmail.com",
  3735. "homepage": "http://jmolivas.com"
  3736. },
  3737. {
  3738. "name": "Eduardo Garcia",
  3739. "email": "enzo@enzolutions.com",
  3740. "homepage": "http://enzolutions.com/"
  3741. },
  3742. {
  3743. "name": "Omar Aguirre",
  3744. "email": "omersguchigu@gmail.com"
  3745. },
  3746. {
  3747. "name": "Drupal Console Contributors",
  3748. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3749. }
  3750. ],
  3751. "description": "Drupal Console English Language",
  3752. "homepage": "http://drupalconsole.com/",
  3753. "keywords": [
  3754. "console",
  3755. "development",
  3756. "drupal",
  3757. "symfony"
  3758. ],
  3759. "support": {
  3760. "docs": "https://docs.drupalconsole.com",
  3761. "forum": "https://gitter.im/hechoendrupal/DrupalConsole",
  3762. "issues": "https://github.com/hechoendrupal/DrupalConsole/issues",
  3763. "source": "https://github.com/hechoendrupal/drupal-console-en/tree/master"
  3764. },
  3765. "time": "2020-08-15T03:34:54+00:00"
  3766. },
  3767. {
  3768. "name": "drupal/console-extend-plugin",
  3769. "version": "0.9.5",
  3770. "source": {
  3771. "type": "git",
  3772. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  3773. "reference": "eff6da99cfb5fe1fc60990672d2667c402eb3585"
  3774. },
  3775. "dist": {
  3776. "type": "zip",
  3777. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/eff6da99cfb5fe1fc60990672d2667c402eb3585",
  3778. "reference": "eff6da99cfb5fe1fc60990672d2667c402eb3585",
  3779. "shasum": ""
  3780. },
  3781. "require": {
  3782. "composer-plugin-api": "^1.0 || ^2.0",
  3783. "composer/installers": "^1.2",
  3784. "symfony/finder": "~3.0|^4.4",
  3785. "symfony/yaml": "~3.0|^4.4"
  3786. },
  3787. "type": "composer-plugin",
  3788. "extra": {
  3789. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  3790. },
  3791. "autoload": {
  3792. "psr-4": {
  3793. "Drupal\\Console\\Composer\\Plugin\\": "src"
  3794. }
  3795. },
  3796. "notification-url": "https://packagist.org/downloads/",
  3797. "license": [
  3798. "GPL-2.0+"
  3799. ],
  3800. "authors": [
  3801. {
  3802. "name": "Jesus Manuel Olivas",
  3803. "email": "jesus.olivas@gmail.com"
  3804. }
  3805. ],
  3806. "description": "Drupal Console Extend Plugin",
  3807. "support": {
  3808. "issues": "https://github.com/hechoendrupal/drupal-console-extend-plugin/issues",
  3809. "source": "https://github.com/hechoendrupal/drupal-console-extend-plugin/tree/0.9.5"
  3810. },
  3811. "time": "2020-11-18T00:15:28+00:00"
  3812. },
  3813. {
  3814. "name": "drupal/content_lock",
  3815. "version": "2.4.0",
  3816. "source": {
  3817. "type": "git",
  3818. "url": "https://git.drupalcode.org/project/content_lock.git",
  3819. "reference": "8.x-2.4"
  3820. },
  3821. "dist": {
  3822. "type": "zip",
  3823. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.4.zip",
  3824. "reference": "8.x-2.4",
  3825. "shasum": "99d149e530555aae12b44292efe5887d373e862e"
  3826. },
  3827. "require": {
  3828. "drupal/core": "^9.0 || ^10.0"
  3829. },
  3830. "type": "drupal-module",
  3831. "extra": {
  3832. "drupal": {
  3833. "version": "8.x-2.4",
  3834. "datestamp": "1715783058",
  3835. "security-coverage": {
  3836. "status": "covered",
  3837. "message": "Covered by Drupal's security advisory policy"
  3838. }
  3839. }
  3840. },
  3841. "notification-url": "https://packages.drupal.org/8/downloads",
  3842. "license": [
  3843. "GPL-2.0-or-later"
  3844. ],
  3845. "authors": [
  3846. {
  3847. "name": "alexpott",
  3848. "homepage": "https://www.drupal.org/user/157725"
  3849. },
  3850. {
  3851. "name": "astonvictor",
  3852. "homepage": "https://www.drupal.org/user/3466615"
  3853. },
  3854. {
  3855. "name": "chr.fritsch",
  3856. "homepage": "https://www.drupal.org/user/2103716"
  3857. },
  3858. {
  3859. "name": "daniel.bosen",
  3860. "homepage": "https://www.drupal.org/user/404865"
  3861. },
  3862. {
  3863. "name": "ergonlogic",
  3864. "homepage": "https://www.drupal.org/user/368613"
  3865. },
  3866. {
  3867. "name": "mfb",
  3868. "homepage": "https://www.drupal.org/user/12302"
  3869. },
  3870. {
  3871. "name": "volkerk",
  3872. "homepage": "https://www.drupal.org/user/57527"
  3873. }
  3874. ],
  3875. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  3876. "homepage": "https://www.drupal.org/project/content_lock",
  3877. "support": {
  3878. "source": "https://git.drupalcode.org/project/content_lock"
  3879. }
  3880. },
  3881. {
  3882. "name": "drupal/context",
  3883. "version": "5.0.0-rc2",
  3884. "source": {
  3885. "type": "git",
  3886. "url": "https://git.drupalcode.org/project/context.git",
  3887. "reference": "5.0.0-rc2"
  3888. },
  3889. "dist": {
  3890. "type": "zip",
  3891. "url": "https://ftp.drupal.org/files/projects/context-5.0.0-rc2.zip",
  3892. "reference": "5.0.0-rc2",
  3893. "shasum": "05e866f01bc57b5346d52a5b6230fdd13e21695d"
  3894. },
  3895. "require": {
  3896. "drupal/core": "^9.3 || ^10 || ^11"
  3897. },
  3898. "type": "drupal-module",
  3899. "extra": {
  3900. "drupal": {
  3901. "version": "5.0.0-rc2",
  3902. "datestamp": "1741253306",
  3903. "security-coverage": {
  3904. "status": "not-covered",
  3905. "message": "RC releases are not covered by Drupal security advisories."
  3906. }
  3907. }
  3908. },
  3909. "notification-url": "https://packages.drupal.org/8/downloads",
  3910. "license": [
  3911. "MIT"
  3912. ],
  3913. "authors": [
  3914. {
  3915. "name": "Christoffer Palm",
  3916. "homepage": "http://www.oddhill.se/",
  3917. "email": "christoffer.palm@oddhill.se",
  3918. "role": "Developer"
  3919. },
  3920. {
  3921. "name": "boshtian",
  3922. "homepage": "https://www.drupal.org/user/1773456"
  3923. },
  3924. {
  3925. "name": "colan",
  3926. "homepage": "https://www.drupal.org/user/58704"
  3927. },
  3928. {
  3929. "name": "emanaton",
  3930. "homepage": "https://www.drupal.org/user/120853"
  3931. },
  3932. {
  3933. "name": "febbraro",
  3934. "homepage": "https://www.drupal.org/user/43670"
  3935. },
  3936. {
  3937. "name": "fizk",
  3938. "homepage": "https://www.drupal.org/user/473174"
  3939. },
  3940. {
  3941. "name": "hass",
  3942. "homepage": "https://www.drupal.org/user/85918"
  3943. },
  3944. {
  3945. "name": "hefox",
  3946. "homepage": "https://www.drupal.org/user/426416"
  3947. },
  3948. {
  3949. "name": "jmiccolis",
  3950. "homepage": "https://www.drupal.org/user/31731"
  3951. },
  3952. {
  3953. "name": "kristen pol",
  3954. "homepage": "https://www.drupal.org/user/8389"
  3955. },
  3956. {
  3957. "name": "mandclu",
  3958. "homepage": "https://www.drupal.org/user/52136"
  3959. },
  3960. {
  3961. "name": "nedjo",
  3962. "homepage": "https://www.drupal.org/user/4481"
  3963. },
  3964. {
  3965. "name": "NormySan",
  3966. "homepage": "https://www.drupal.org/user/112352"
  3967. },
  3968. {
  3969. "name": "patricksettle",
  3970. "homepage": "https://www.drupal.org/user/26618"
  3971. },
  3972. {
  3973. "name": "paulocs",
  3974. "homepage": "https://www.drupal.org/user/3640109"
  3975. },
  3976. {
  3977. "name": "steven jones",
  3978. "homepage": "https://www.drupal.org/user/99644"
  3979. },
  3980. {
  3981. "name": "tekante",
  3982. "homepage": "https://www.drupal.org/user/640024"
  3983. },
  3984. {
  3985. "name": "yhahn",
  3986. "homepage": "https://www.drupal.org/user/264833"
  3987. }
  3988. ],
  3989. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3990. "homepage": "https://github.com/oddhill/context",
  3991. "keywords": [
  3992. "Drupal",
  3993. "block",
  3994. "conditions",
  3995. "context",
  3996. "visibility"
  3997. ],
  3998. "support": {
  3999. "source": "https://github.com/oddhill/context",
  4000. "issues": "https://github.com/oddhill/context/issues",
  4001. "docs": "https://github.com/oddhill/context"
  4002. }
  4003. },
  4004. {
  4005. "name": "drupal/core",
  4006. "version": "9.5.11",
  4007. "source": {
  4008. "type": "git",
  4009. "url": "https://github.com/drupal/core.git",
  4010. "reference": "8afcb233c2a71501b35fed2713167c37831d5c19"
  4011. },
  4012. "dist": {
  4013. "type": "zip",
  4014. "url": "https://api.github.com/repos/drupal/core/zipball/8afcb233c2a71501b35fed2713167c37831d5c19",
  4015. "reference": "8afcb233c2a71501b35fed2713167c37831d5c19",
  4016. "shasum": ""
  4017. },
  4018. "require": {
  4019. "asm89/stack-cors": "^1.3",
  4020. "composer/semver": "^3.3",
  4021. "doctrine/annotations": "^1.13",
  4022. "doctrine/reflection": "^1.2",
  4023. "egulias/email-validator": "^2.1.22|^3.2",
  4024. "ext-date": "*",
  4025. "ext-dom": "*",
  4026. "ext-filter": "*",
  4027. "ext-gd": "*",
  4028. "ext-hash": "*",
  4029. "ext-json": "*",
  4030. "ext-pcre": "*",
  4031. "ext-pdo": "*",
  4032. "ext-session": "*",
  4033. "ext-simplexml": "*",
  4034. "ext-spl": "*",
  4035. "ext-tokenizer": "*",
  4036. "ext-xml": "*",
  4037. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  4038. "laminas/laminas-feed": "^2.17",
  4039. "longwave/laminas-diactoros": "^2.14",
  4040. "masterminds/html5": "^2.7",
  4041. "pear/archive_tar": "^1.4.14",
  4042. "php": ">=7.3.0",
  4043. "psr/log": "^1.1",
  4044. "stack/builder": "^1.0",
  4045. "symfony-cmf/routing": "^2.3",
  4046. "symfony/console": "^4.4",
  4047. "symfony/dependency-injection": "^4.4",
  4048. "symfony/event-dispatcher": "^4.4",
  4049. "symfony/http-foundation": "^4.4.7",
  4050. "symfony/http-kernel": "^4.4",
  4051. "symfony/mime": "^5.4",
  4052. "symfony/polyfill-iconv": "^1.26",
  4053. "symfony/polyfill-php80": "^1.26",
  4054. "symfony/process": "^4.4",
  4055. "symfony/psr-http-message-bridge": "^2.1",
  4056. "symfony/routing": "^4.4",
  4057. "symfony/serializer": "^4.4",
  4058. "symfony/translation": "^4.4",
  4059. "symfony/validator": "^4.4",
  4060. "symfony/yaml": "^4.4.19",
  4061. "twig/twig": "^2.15.3",
  4062. "typo3/phar-stream-wrapper": "^3.1.3"
  4063. },
  4064. "conflict": {
  4065. "drush/drush": "<8.1.10",
  4066. "symfony/http-foundation": "4.4.42"
  4067. },
  4068. "replace": {
  4069. "drupal/core-annotation": "self.version",
  4070. "drupal/core-assertion": "self.version",
  4071. "drupal/core-bridge": "self.version",
  4072. "drupal/core-class-finder": "self.version",
  4073. "drupal/core-datetime": "self.version",
  4074. "drupal/core-dependency-injection": "self.version",
  4075. "drupal/core-diff": "self.version",
  4076. "drupal/core-discovery": "self.version",
  4077. "drupal/core-event-dispatcher": "self.version",
  4078. "drupal/core-file-cache": "self.version",
  4079. "drupal/core-file-security": "self.version",
  4080. "drupal/core-filesystem": "self.version",
  4081. "drupal/core-front-matter": "self.version",
  4082. "drupal/core-gettext": "self.version",
  4083. "drupal/core-graph": "self.version",
  4084. "drupal/core-http-foundation": "self.version",
  4085. "drupal/core-php-storage": "self.version",
  4086. "drupal/core-plugin": "self.version",
  4087. "drupal/core-proxy-builder": "self.version",
  4088. "drupal/core-render": "self.version",
  4089. "drupal/core-serialization": "self.version",
  4090. "drupal/core-transliteration": "self.version",
  4091. "drupal/core-utility": "self.version",
  4092. "drupal/core-uuid": "self.version",
  4093. "drupal/core-version": "self.version"
  4094. },
  4095. "type": "drupal-core",
  4096. "extra": {
  4097. "drupal-scaffold": {
  4098. "file-mapping": {
  4099. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  4100. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  4101. "[web-root]/index.php": "assets/scaffold/files/index.php",
  4102. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  4103. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  4104. "[web-root]/update.php": "assets/scaffold/files/update.php",
  4105. "[web-root]/web.config": "assets/scaffold/files/web.config",
  4106. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  4107. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  4108. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  4109. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  4110. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  4111. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  4112. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  4113. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt",
  4114. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  4115. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  4116. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  4117. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  4118. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  4119. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  4120. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  4121. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php"
  4122. }
  4123. }
  4124. },
  4125. "autoload": {
  4126. "files": [
  4127. "includes/bootstrap.inc",
  4128. "includes/guzzle_php81_shim.php"
  4129. ],
  4130. "psr-4": {
  4131. "Drupal\\Core\\": "lib/Drupal/Core",
  4132. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver",
  4133. "Drupal\\Component\\": "lib/Drupal/Component"
  4134. },
  4135. "classmap": [
  4136. "lib/Drupal.php",
  4137. "lib/Drupal/Component/DependencyInjection/Container.php",
  4138. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  4139. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  4140. "lib/Drupal/Component/Utility/Timer.php",
  4141. "lib/Drupal/Component/Utility/Unicode.php",
  4142. "lib/Drupal/Core/Cache/Cache.php",
  4143. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  4144. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  4145. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  4146. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  4147. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  4148. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  4149. "lib/Drupal/Core/Database/Connection.php",
  4150. "lib/Drupal/Core/Database/Database.php",
  4151. "lib/Drupal/Core/Database/Statement.php",
  4152. "lib/Drupal/Core/Database/StatementInterface.php",
  4153. "lib/Drupal/Core/DependencyInjection/Container.php",
  4154. "lib/Drupal/Core/DrupalKernel.php",
  4155. "lib/Drupal/Core/DrupalKernelInterface.php",
  4156. "lib/Drupal/Core/Http/InputBag.php",
  4157. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  4158. "lib/Drupal/Core/Site/Settings.php"
  4159. ]
  4160. },
  4161. "notification-url": "https://packagist.org/downloads/",
  4162. "license": [
  4163. "GPL-2.0-or-later"
  4164. ],
  4165. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  4166. "support": {
  4167. "source": "https://github.com/drupal/core/tree/9.5.11"
  4168. },
  4169. "time": "2023-09-19T17:58:28+00:00"
  4170. },
  4171. {
  4172. "name": "drupal/core-composer-scaffold",
  4173. "version": "9.3.6",
  4174. "source": {
  4175. "type": "git",
  4176. "url": "https://github.com/drupal/core-composer-scaffold.git",
  4177. "reference": "d3e0b1d707125c5de0f54315906e65654c3608da"
  4178. },
  4179. "dist": {
  4180. "type": "zip",
  4181. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/d3e0b1d707125c5de0f54315906e65654c3608da",
  4182. "reference": "d3e0b1d707125c5de0f54315906e65654c3608da",
  4183. "shasum": ""
  4184. },
  4185. "require": {
  4186. "composer-plugin-api": "^1 || ^2",
  4187. "php": ">=7.3.0"
  4188. },
  4189. "conflict": {
  4190. "drupal-composer/drupal-scaffold": "*"
  4191. },
  4192. "require-dev": {
  4193. "composer/composer": "^1.8@stable"
  4194. },
  4195. "type": "composer-plugin",
  4196. "extra": {
  4197. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  4198. "branch-alias": {
  4199. "dev-master": "1.0.x-dev"
  4200. }
  4201. },
  4202. "autoload": {
  4203. "psr-4": {
  4204. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  4205. }
  4206. },
  4207. "notification-url": "https://packagist.org/downloads/",
  4208. "license": [
  4209. "GPL-2.0-or-later"
  4210. ],
  4211. "description": "A flexible Composer project scaffold builder.",
  4212. "homepage": "https://www.drupal.org/project/drupal",
  4213. "keywords": [
  4214. "drupal"
  4215. ],
  4216. "support": {
  4217. "source": "https://github.com/drupal/core-composer-scaffold/tree/9.3.6"
  4218. },
  4219. "time": "2021-11-19T09:52:23+00:00"
  4220. },
  4221. {
  4222. "name": "drupal/core-project-message",
  4223. "version": "9.3.6",
  4224. "source": {
  4225. "type": "git",
  4226. "url": "https://github.com/drupal/core-project-message.git",
  4227. "reference": "812d6da43dd49cc210af62e80fa92189e68e565a"
  4228. },
  4229. "dist": {
  4230. "type": "zip",
  4231. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/812d6da43dd49cc210af62e80fa92189e68e565a",
  4232. "reference": "812d6da43dd49cc210af62e80fa92189e68e565a",
  4233. "shasum": ""
  4234. },
  4235. "require": {
  4236. "composer-plugin-api": "^1.1 || ^2",
  4237. "php": ">=7.3.0"
  4238. },
  4239. "type": "composer-plugin",
  4240. "extra": {
  4241. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  4242. },
  4243. "autoload": {
  4244. "psr-4": {
  4245. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  4246. }
  4247. },
  4248. "notification-url": "https://packagist.org/downloads/",
  4249. "license": [
  4250. "GPL-2.0-or-later"
  4251. ],
  4252. "description": "Adds a message after Composer installation.",
  4253. "homepage": "https://www.drupal.org/project/drupal",
  4254. "keywords": [
  4255. "drupal"
  4256. ],
  4257. "support": {
  4258. "source": "https://github.com/drupal/core-project-message/tree/10.0.0-alpha1"
  4259. },
  4260. "time": "2020-09-14T13:40:36+00:00"
  4261. },
  4262. {
  4263. "name": "drupal/core-recommended",
  4264. "version": "9.5.11",
  4265. "source": {
  4266. "type": "git",
  4267. "url": "https://github.com/drupal/core-recommended.git",
  4268. "reference": "af3521be5376e333ddcdbd31c5a169f16423b46f"
  4269. },
  4270. "dist": {
  4271. "type": "zip",
  4272. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/af3521be5376e333ddcdbd31c5a169f16423b46f",
  4273. "reference": "af3521be5376e333ddcdbd31c5a169f16423b46f",
  4274. "shasum": ""
  4275. },
  4276. "require": {
  4277. "asm89/stack-cors": "~1.3.0",
  4278. "composer/semver": "~3.3.2",
  4279. "doctrine/annotations": "~1.13.3",
  4280. "doctrine/lexer": "~1.2.3",
  4281. "doctrine/reflection": "~1.2.3",
  4282. "drupal/core": "9.5.11",
  4283. "egulias/email-validator": "~3.2.1",
  4284. "guzzlehttp/guzzle": "~6.5.8",
  4285. "guzzlehttp/promises": "~1.5.2",
  4286. "guzzlehttp/psr7": "~1.9.1",
  4287. "longwave/laminas-diactoros": "~2.14.2",
  4288. "masterminds/html5": "~2.7.6",
  4289. "pear/archive_tar": "~1.4.14",
  4290. "pear/console_getopt": "~v1.4.3",
  4291. "pear/pear-core-minimal": "~v1.10.11",
  4292. "pear/pear_exception": "~v1.0.2",
  4293. "psr/cache": "~1.0.1",
  4294. "psr/container": "~1.1.1",
  4295. "psr/http-factory": "~1.0.1",
  4296. "psr/http-message": "~1.0.1",
  4297. "psr/log": "~1.1.4",
  4298. "ralouphie/getallheaders": "~3.0.3",
  4299. "stack/builder": "~v1.0.6",
  4300. "symfony-cmf/routing": "~2.3.4",
  4301. "symfony/console": "~v4.4.49",
  4302. "symfony/debug": "~v4.4.44",
  4303. "symfony/dependency-injection": "~v4.4.49",
  4304. "symfony/deprecation-contracts": "~v2.5.2",
  4305. "symfony/error-handler": "~v4.4.44",
  4306. "symfony/event-dispatcher": "~v4.4.44",
  4307. "symfony/event-dispatcher-contracts": "~v1.1.13",
  4308. "symfony/http-client-contracts": "~v2.5.2",
  4309. "symfony/http-foundation": "~v4.4.49",
  4310. "symfony/http-kernel": "~v4.4.50",
  4311. "symfony/mime": "~v5.4.13",
  4312. "symfony/polyfill-ctype": "~v1.27.0",
  4313. "symfony/polyfill-iconv": "~v1.27.0",
  4314. "symfony/polyfill-intl-idn": "~v1.27.0",
  4315. "symfony/polyfill-intl-normalizer": "~v1.27.0",
  4316. "symfony/polyfill-mbstring": "~v1.27.0",
  4317. "symfony/polyfill-php80": "~v1.27.0",
  4318. "symfony/process": "~v4.4.44",
  4319. "symfony/psr-http-message-bridge": "~v2.1.4",
  4320. "symfony/routing": "~v4.4.44",
  4321. "symfony/serializer": "~v4.4.47",
  4322. "symfony/service-contracts": "~v2.5.2",
  4323. "symfony/translation": "~v4.4.47",
  4324. "symfony/translation-contracts": "~v2.5.2",
  4325. "symfony/validator": "~v4.4.48",
  4326. "symfony/var-dumper": "~v5.4.19",
  4327. "symfony/yaml": "~v4.4.45",
  4328. "twig/twig": "~v2.15.4",
  4329. "typo3/phar-stream-wrapper": "~v3.1.7"
  4330. },
  4331. "conflict": {
  4332. "webflo/drupal-core-strict": "*"
  4333. },
  4334. "type": "metapackage",
  4335. "notification-url": "https://packagist.org/downloads/",
  4336. "license": [
  4337. "GPL-2.0-or-later"
  4338. ],
  4339. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  4340. "support": {
  4341. "source": "https://github.com/drupal/core-recommended/tree/9.5.11"
  4342. },
  4343. "time": "2023-09-19T17:58:28+00:00"
  4344. },
  4345. {
  4346. "name": "drupal/cshs",
  4347. "version": "dev-1.x",
  4348. "source": {
  4349. "type": "git",
  4350. "url": "https://git.drupalcode.org/project/cshs.git",
  4351. "reference": "fb5b1b8eff6391819b28bf9bf1cce5d1c5b7423f"
  4352. },
  4353. "require": {
  4354. "drupal/core": "^8 || ^9",
  4355. "php": ">=7.1.0"
  4356. },
  4357. "type": "drupal-module",
  4358. "extra": {
  4359. "branch-alias": {
  4360. "dev-1.x": "1.x-dev"
  4361. },
  4362. "drupal": {
  4363. "version": "8.x-1.7+0-dev",
  4364. "datestamp": "1612535860",
  4365. "security-coverage": {
  4366. "status": "not-covered",
  4367. "message": "Dev releases are not covered by Drupal security advisories."
  4368. }
  4369. }
  4370. },
  4371. "notification-url": "https://packages.drupal.org/8/downloads",
  4372. "license": [
  4373. "GPL-2.0-or-later"
  4374. ],
  4375. "authors": [
  4376. {
  4377. "name": "Walter Jenner",
  4378. "homepage": "https://drupal.org/u/valderama"
  4379. },
  4380. {
  4381. "name": "Sergii Bondarenko",
  4382. "homepage": "https://drupal.org/u/BR0kEN",
  4383. "email": "sb@firstvector.org"
  4384. },
  4385. {
  4386. "name": "Daneel Cruz",
  4387. "homepage": "https://drupal.org/u/daneelcm"
  4388. },
  4389. {
  4390. "name": "Purushotam Rai",
  4391. "homepage": "https://drupal.org/u/purushotam.rai"
  4392. }
  4393. ],
  4394. "description": "A simple client-side hierarchical select widget for taxonomy terms.",
  4395. "homepage": "https://www.drupal.org/project/cshs",
  4396. "keywords": [
  4397. "client-side-select",
  4398. "hierarchical-select",
  4399. "module",
  4400. "select",
  4401. "taxonomy"
  4402. ],
  4403. "support": {
  4404. "source": "https://git.drupalcode.org/project/cshs",
  4405. "issues": "https://www.drupal.org/project/issues/cshs"
  4406. }
  4407. },
  4408. {
  4409. "name": "drupal/ctools",
  4410. "version": "3.15.0",
  4411. "source": {
  4412. "type": "git",
  4413. "url": "https://git.drupalcode.org/project/ctools.git",
  4414. "reference": "8.x-3.15"
  4415. },
  4416. "dist": {
  4417. "type": "zip",
  4418. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.15.zip",
  4419. "reference": "8.x-3.15",
  4420. "shasum": "84e360763162bf97dfb99a21a65580e7ea504bc6"
  4421. },
  4422. "require": {
  4423. "drupal/core": "^9.3 || ^10"
  4424. },
  4425. "type": "drupal-module",
  4426. "extra": {
  4427. "drupal": {
  4428. "version": "8.x-3.15",
  4429. "datestamp": "1718145169",
  4430. "security-coverage": {
  4431. "status": "covered",
  4432. "message": "Covered by Drupal's security advisory policy"
  4433. }
  4434. },
  4435. "branch-alias": {
  4436. "dev-8.x-3.x": "3.x-dev"
  4437. }
  4438. },
  4439. "notification-url": "https://packages.drupal.org/8/downloads",
  4440. "license": [
  4441. "GPL-2.0-or-later"
  4442. ],
  4443. "authors": [
  4444. {
  4445. "name": "Kris Vanderwater (EclipseGc)",
  4446. "homepage": "https://www.drupal.org/u/eclipsegc",
  4447. "role": "Maintainer"
  4448. },
  4449. {
  4450. "name": "Jakob Perry (japerry)",
  4451. "homepage": "https://www.drupal.org/u/japerry",
  4452. "role": "Maintainer"
  4453. },
  4454. {
  4455. "name": "Tim Plunkett (tim.plunkett)",
  4456. "homepage": "https://www.drupal.org/u/timplunkett",
  4457. "role": "Maintainer"
  4458. },
  4459. {
  4460. "name": "James Gilliland (neclimdul)",
  4461. "homepage": "https://www.drupal.org/u/neclimdul",
  4462. "role": "Maintainer"
  4463. },
  4464. {
  4465. "name": "Daniel Wehner (dawehner)",
  4466. "homepage": "https://www.drupal.org/u/dawehner",
  4467. "role": "Maintainer"
  4468. },
  4469. {
  4470. "name": "joelpittet",
  4471. "homepage": "https://www.drupal.org/user/160302"
  4472. },
  4473. {
  4474. "name": "merlinofchaos",
  4475. "homepage": "https://www.drupal.org/user/26979"
  4476. },
  4477. {
  4478. "name": "neclimdul",
  4479. "homepage": "https://www.drupal.org/user/48673"
  4480. },
  4481. {
  4482. "name": "sdboyer",
  4483. "homepage": "https://www.drupal.org/user/146719"
  4484. },
  4485. {
  4486. "name": "sun",
  4487. "homepage": "https://www.drupal.org/user/54136"
  4488. },
  4489. {
  4490. "name": "tim.plunkett",
  4491. "homepage": "https://www.drupal.org/user/241634"
  4492. }
  4493. ],
  4494. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  4495. "homepage": "https://www.drupal.org/project/ctools",
  4496. "support": {
  4497. "source": "https://git.drupalcode.org/project/ctools",
  4498. "issues": "https://www.drupal.org/project/issues/ctools"
  4499. }
  4500. },
  4501. {
  4502. "name": "drupal/date_range_formatter",
  4503. "version": "dev-9.0.x",
  4504. "source": {
  4505. "type": "git",
  4506. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  4507. "reference": "d909818f1de39d7498e771a2c334ca7b9b4b350e"
  4508. },
  4509. "require": {
  4510. "drupal/core": "^8 || ^9 || ^10"
  4511. },
  4512. "type": "drupal-module",
  4513. "extra": {
  4514. "branch-alias": {
  4515. "dev-9.0.x": "9.0.x-dev"
  4516. },
  4517. "drupal": {
  4518. "version": "9.0.x-dev",
  4519. "datestamp": "1718887202",
  4520. "security-coverage": {
  4521. "status": "not-covered",
  4522. "message": "Dev releases are not covered by Drupal security advisories."
  4523. }
  4524. }
  4525. },
  4526. "notification-url": "https://packages.drupal.org/8/downloads",
  4527. "license": [
  4528. "GPL-2.0-or-later"
  4529. ],
  4530. "authors": [
  4531. {
  4532. "name": "maximpodorov",
  4533. "homepage": "https://www.drupal.org/user/515310"
  4534. },
  4535. {
  4536. "name": "sudishth",
  4537. "homepage": "https://www.drupal.org/user/1440562"
  4538. }
  4539. ],
  4540. "description": "Formats date ranges.",
  4541. "homepage": "https://www.drupal.org/project/date_range_formatter",
  4542. "support": {
  4543. "source": "https://git.drupalcode.org/project/date_range_formatter"
  4544. }
  4545. },
  4546. {
  4547. "name": "drupal/devel",
  4548. "version": "5.1.2",
  4549. "source": {
  4550. "type": "git",
  4551. "url": "https://git.drupalcode.org/project/devel.git",
  4552. "reference": "5.1.2"
  4553. },
  4554. "dist": {
  4555. "type": "zip",
  4556. "url": "https://ftp.drupal.org/files/projects/devel-5.1.2.zip",
  4557. "reference": "5.1.2",
  4558. "shasum": "9b35e38bf2043bf87f88585b3d9100f38da8f07f"
  4559. },
  4560. "require": {
  4561. "doctrine/common": "^2.7 || ^3.4",
  4562. "drupal/core": "^9 || ^10",
  4563. "php": ">=7.4",
  4564. "symfony/var-dumper": "^4 || ^5 || ^6"
  4565. },
  4566. "conflict": {
  4567. "kint-php/kint": "<3"
  4568. },
  4569. "require-dev": {
  4570. "drush/drush": "^11"
  4571. },
  4572. "suggest": {
  4573. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  4574. },
  4575. "type": "drupal-module",
  4576. "extra": {
  4577. "drupal": {
  4578. "version": "5.1.2",
  4579. "datestamp": "1686161028",
  4580. "security-coverage": {
  4581. "status": "covered",
  4582. "message": "Covered by Drupal's security advisory policy"
  4583. }
  4584. },
  4585. "drush": {
  4586. "services": {
  4587. "drush.services.yml": "^9 || ^10 || ^11"
  4588. }
  4589. }
  4590. },
  4591. "notification-url": "https://packages.drupal.org/8/downloads",
  4592. "license": [
  4593. "GPL-2.0-or-later"
  4594. ],
  4595. "authors": [
  4596. {
  4597. "name": "moshe weitzman",
  4598. "homepage": "https://www.drupal.org/user/23"
  4599. }
  4600. ],
  4601. "description": "Various blocks, pages, and functions for developers.",
  4602. "homepage": "https://www.drupal.org/project/devel",
  4603. "support": {
  4604. "source": "https://gitlab.com/drupalspoons/devel",
  4605. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  4606. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  4607. }
  4608. },
  4609. {
  4610. "name": "drupal/devel_kint_extras",
  4611. "version": "1.1.4",
  4612. "source": {
  4613. "type": "git",
  4614. "url": "https://git.drupalcode.org/project/devel_kint_extras.git",
  4615. "reference": "1.1.4"
  4616. },
  4617. "dist": {
  4618. "type": "zip",
  4619. "url": "https://ftp.drupal.org/files/projects/devel_kint_extras-1.1.4.zip",
  4620. "reference": "1.1.4",
  4621. "shasum": "7723086e6edb52b6dacfda4f656f93cbd63b105b"
  4622. },
  4623. "require": {
  4624. "drupal/core": "^9 || ^10 || ^11",
  4625. "drupal/devel": "^4.0 || ^5.0",
  4626. "kint-php/kint": "^3.3 || ^4.0 || ^5.0 || ^6.0"
  4627. },
  4628. "type": "drupal-module",
  4629. "extra": {
  4630. "drupal": {
  4631. "version": "1.1.4",
  4632. "datestamp": "1740995042",
  4633. "security-coverage": {
  4634. "status": "covered",
  4635. "message": "Covered by Drupal's security advisory policy"
  4636. }
  4637. }
  4638. },
  4639. "notification-url": "https://packages.drupal.org/8/downloads",
  4640. "license": [
  4641. "GPL-2.0-or-later"
  4642. ],
  4643. "authors": [
  4644. {
  4645. "name": "Jan Chojnacki",
  4646. "homepage": "https://www.drupal.org/u/janchojnacki"
  4647. },
  4648. {
  4649. "name": "Other contributors",
  4650. "homepage": "https://www.drupal.org/node/3164492/committers"
  4651. }
  4652. ],
  4653. "description": "Shows methods and statics available for an object when using Kint with Devel",
  4654. "homepage": "https://www.drupal.org/project/devel_kint_extras",
  4655. "support": {
  4656. "source": "http://git.drupal.org/project/devel_kint_extras.git",
  4657. "issues": "https://www.drupal.org/project/issues/devel_kint_extras",
  4658. "chat": "irc://irc.freenode.org/drupal-contribute"
  4659. }
  4660. },
  4661. {
  4662. "name": "drupal/email_registration",
  4663. "version": "1.4.0",
  4664. "source": {
  4665. "type": "git",
  4666. "url": "https://git.drupalcode.org/project/email_registration.git",
  4667. "reference": "8.x-1.4"
  4668. },
  4669. "dist": {
  4670. "type": "zip",
  4671. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.4.zip",
  4672. "reference": "8.x-1.4",
  4673. "shasum": "fe7a91b858a98533fc1d7550b0917fc80523f186"
  4674. },
  4675. "require": {
  4676. "drupal/core": "^9.1 || ^10"
  4677. },
  4678. "conflict": {
  4679. "drupal/commerce": "<2.12"
  4680. },
  4681. "require-dev": {
  4682. "drupal/commerce": "^2.0",
  4683. "drupal/token": "*"
  4684. },
  4685. "type": "drupal-module",
  4686. "extra": {
  4687. "drupal": {
  4688. "version": "8.x-1.4",
  4689. "datestamp": "1700548925",
  4690. "security-coverage": {
  4691. "status": "covered",
  4692. "message": "Covered by Drupal's security advisory policy"
  4693. }
  4694. }
  4695. },
  4696. "notification-url": "https://packages.drupal.org/8/downloads",
  4697. "license": [
  4698. "GPL-2.0-or-later"
  4699. ],
  4700. "authors": [
  4701. {
  4702. "name": "Greg Knaddison (greggles)",
  4703. "homepage": "https://www.drupal.org/u/greggles",
  4704. "role": "Maintainer"
  4705. },
  4706. {
  4707. "name": "Andrey Postnikov (andypost)",
  4708. "homepage": "https://www.drupal.org/u/andypost",
  4709. "role": "Maintainer"
  4710. },
  4711. {
  4712. "name": "Chris Herberte",
  4713. "homepage": "https://www.drupal.org/u/chris-herberte",
  4714. "role": "Maintainer"
  4715. },
  4716. {
  4717. "name": "Moshe Weitzman (moshe weitzman)",
  4718. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  4719. "role": "Maintainer"
  4720. },
  4721. {
  4722. "name": "grevil",
  4723. "homepage": "https://www.drupal.org/user/3668491"
  4724. },
  4725. {
  4726. "name": "moshe weitzman",
  4727. "homepage": "https://www.drupal.org/user/23"
  4728. }
  4729. ],
  4730. "description": "Allows users to register with an email address as their username.",
  4731. "homepage": "https://www.drupal.org/project/email_registration",
  4732. "support": {
  4733. "source": "https://git.drupalcode.org/project/email_registration",
  4734. "issues": "http://drupal.org/project/issues/email_registration"
  4735. }
  4736. },
  4737. {
  4738. "name": "drupal/embed",
  4739. "version": "1.9.0",
  4740. "source": {
  4741. "type": "git",
  4742. "url": "https://git.drupalcode.org/project/embed.git",
  4743. "reference": "8.x-1.9"
  4744. },
  4745. "dist": {
  4746. "type": "zip",
  4747. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.9.zip",
  4748. "reference": "8.x-1.9",
  4749. "shasum": "e6b4875e2b245ddf1a68a8615cbb4c5a378a0e9f"
  4750. },
  4751. "require": {
  4752. "drupal/core": "^9.5 | ^10"
  4753. },
  4754. "require-dev": {
  4755. "drupal/ckeditor": "^1.0"
  4756. },
  4757. "type": "drupal-module",
  4758. "extra": {
  4759. "drupal": {
  4760. "version": "8.x-1.9",
  4761. "datestamp": "1723283819",
  4762. "security-coverage": {
  4763. "status": "covered",
  4764. "message": "Covered by Drupal's security advisory policy"
  4765. }
  4766. }
  4767. },
  4768. "notification-url": "https://packages.drupal.org/8/downloads",
  4769. "license": [
  4770. "GPL-2.0-or-later"
  4771. ],
  4772. "authors": [
  4773. {
  4774. "name": "cs_shadow",
  4775. "homepage": "https://www.drupal.org/user/2828287"
  4776. },
  4777. {
  4778. "name": "dave reid",
  4779. "homepage": "https://www.drupal.org/user/53892"
  4780. },
  4781. {
  4782. "name": "devin carlson",
  4783. "homepage": "https://www.drupal.org/user/290182"
  4784. },
  4785. {
  4786. "name": "Drupal Media Team",
  4787. "homepage": "https://www.drupal.org/user/3260690"
  4788. },
  4789. {
  4790. "name": "phenaproxima",
  4791. "homepage": "https://www.drupal.org/user/205645"
  4792. },
  4793. {
  4794. "name": "slashrsm",
  4795. "homepage": "https://www.drupal.org/user/744628"
  4796. }
  4797. ],
  4798. "description": "Provides a framework for different types of embeds in text editors.",
  4799. "homepage": "https://www.drupal.org/project/embed",
  4800. "support": {
  4801. "source": "https://git.drupalcode.org/project/embed"
  4802. }
  4803. },
  4804. {
  4805. "name": "drupal/entity_browser",
  4806. "version": "2.10.0",
  4807. "source": {
  4808. "type": "git",
  4809. "url": "https://git.drupalcode.org/project/entity_browser.git",
  4810. "reference": "8.x-2.10"
  4811. },
  4812. "dist": {
  4813. "type": "zip",
  4814. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.10.zip",
  4815. "reference": "8.x-2.10",
  4816. "shasum": "d52548ea66dc56108c2e211aeaff6e1cc0522e85"
  4817. },
  4818. "require": {
  4819. "drupal/core": "^9.5 || ^10"
  4820. },
  4821. "conflict": {
  4822. "drupal/media_entity": "1.*"
  4823. },
  4824. "require-dev": {
  4825. "drupal/ckeditor": "^1.0",
  4826. "drupal/embed": "^1.0",
  4827. "drupal/entity_embed": "^1.0",
  4828. "drupal/entity_reference_revisions": "^1.0",
  4829. "drupal/entityqueue": "^1.0",
  4830. "drupal/inline_entity_form": "^1.0@rc",
  4831. "drupal/paragraphs": "^1.0",
  4832. "drupal/token": "^1.0"
  4833. },
  4834. "type": "drupal-module",
  4835. "extra": {
  4836. "drupal": {
  4837. "version": "8.x-2.10",
  4838. "datestamp": "1702325310",
  4839. "security-coverage": {
  4840. "status": "covered",
  4841. "message": "Covered by Drupal's security advisory policy"
  4842. }
  4843. }
  4844. },
  4845. "notification-url": "https://packages.drupal.org/8/downloads",
  4846. "license": [
  4847. "GPL-2.0+"
  4848. ],
  4849. "authors": [
  4850. {
  4851. "name": "Janez Urevc",
  4852. "homepage": "https://github.com/slashrsm",
  4853. "role": "Maintainer"
  4854. },
  4855. {
  4856. "name": "Primoz Hmeljak",
  4857. "homepage": "https://github.com/primsi",
  4858. "role": "Maintainer"
  4859. },
  4860. {
  4861. "name": "See other contributors",
  4862. "homepage": "https://www.drupal.org/node/1943336/committers",
  4863. "role": "contributor"
  4864. },
  4865. {
  4866. "name": "Drupal Media Team",
  4867. "homepage": "https://www.drupal.org/user/3260690"
  4868. },
  4869. {
  4870. "name": "marcingy",
  4871. "homepage": "https://www.drupal.org/user/77320"
  4872. },
  4873. {
  4874. "name": "oknate",
  4875. "homepage": "https://www.drupal.org/user/471638"
  4876. },
  4877. {
  4878. "name": "primsi",
  4879. "homepage": "https://www.drupal.org/user/282629"
  4880. },
  4881. {
  4882. "name": "samuel.mortenson",
  4883. "homepage": "https://www.drupal.org/user/2582268"
  4884. },
  4885. {
  4886. "name": "slashrsm",
  4887. "homepage": "https://www.drupal.org/user/744628"
  4888. }
  4889. ],
  4890. "description": "Entity browsing and selecting component.",
  4891. "homepage": "https://drupal.org/project/entity_browser",
  4892. "support": {
  4893. "source": "https://git.drupalcode.org/project/entity_browser",
  4894. "issues": "https://www.drupal.org/project/issues/entity_browser",
  4895. "irc": "irc://irc.freenode.org/drupal-contribute"
  4896. }
  4897. },
  4898. {
  4899. "name": "drupal/entity_browser_enhanced",
  4900. "version": "2.0.0",
  4901. "source": {
  4902. "type": "git",
  4903. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  4904. "reference": "2.0.0"
  4905. },
  4906. "dist": {
  4907. "type": "zip",
  4908. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-2.0.0.zip",
  4909. "reference": "2.0.0",
  4910. "shasum": "2880829c847c1c4b06092ab5335adb6ea960317b"
  4911. },
  4912. "require": {
  4913. "drupal/core": "^9 || ^10",
  4914. "drupal/entity_browser": "~2.0"
  4915. },
  4916. "type": "drupal-module",
  4917. "extra": {
  4918. "drupal": {
  4919. "version": "2.0.0",
  4920. "datestamp": "1697211243",
  4921. "security-coverage": {
  4922. "status": "covered",
  4923. "message": "Covered by Drupal's security advisory policy"
  4924. }
  4925. }
  4926. },
  4927. "notification-url": "https://packages.drupal.org/8/downloads",
  4928. "license": [
  4929. "GPL-2.0-or-later"
  4930. ],
  4931. "authors": [
  4932. {
  4933. "name": "Vardot",
  4934. "homepage": "https://www.drupal.org/vardot",
  4935. "role": "Maintainer"
  4936. },
  4937. {
  4938. "name": "rajab natshah",
  4939. "homepage": "https://www.drupal.org/user/1414312"
  4940. }
  4941. ],
  4942. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  4943. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  4944. "support": {
  4945. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  4946. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  4947. }
  4948. },
  4949. {
  4950. "name": "drupal/entity_clone",
  4951. "version": "dev-2.x",
  4952. "source": {
  4953. "type": "git",
  4954. "url": "https://git.drupalcode.org/project/entity_clone.git",
  4955. "reference": "5cbfafdbc860cbda7bef91c89628aefca25efe7b"
  4956. },
  4957. "require": {
  4958. "drupal/core": "^8.8 || ^9 || ^10"
  4959. },
  4960. "require-dev": {
  4961. "drupal/entity_browser": "2.x-dev",
  4962. "drupal/entity_usage": "2.x-dev",
  4963. "drupal/paragraphs": "^1.0",
  4964. "drupal/search_api": "~1.0"
  4965. },
  4966. "type": "drupal-module",
  4967. "extra": {
  4968. "branch-alias": {
  4969. "dev-2.x": "2.x-dev"
  4970. },
  4971. "drupal": {
  4972. "version": "2.0.0-beta4+3-dev",
  4973. "datestamp": "1697545494",
  4974. "security-coverage": {
  4975. "status": "not-covered",
  4976. "message": "Dev releases are not covered by Drupal security advisories."
  4977. }
  4978. }
  4979. },
  4980. "notification-url": "https://packages.drupal.org/8/downloads",
  4981. "license": [
  4982. "GPL-2.0-or-later"
  4983. ],
  4984. "authors": [
  4985. {
  4986. "name": "colan",
  4987. "homepage": "https://www.drupal.org/user/58704"
  4988. },
  4989. {
  4990. "name": "joevagyok",
  4991. "homepage": "https://www.drupal.org/user/2876343"
  4992. },
  4993. {
  4994. "name": "NickDickinsonWilde",
  4995. "homepage": "https://www.drupal.org/user/3094661"
  4996. },
  4997. {
  4998. "name": "Rajeshreeputra",
  4999. "homepage": "https://www.drupal.org/user/3418561"
  5000. },
  5001. {
  5002. "name": "Upchuk",
  5003. "homepage": "https://www.drupal.org/user/1885838"
  5004. },
  5005. {
  5006. "name": "vpeltot",
  5007. "homepage": "https://www.drupal.org/user/1361586"
  5008. }
  5009. ],
  5010. "description": "Add a clone action for all entities.",
  5011. "homepage": "https://drupal.org/project/entity_clone",
  5012. "support": {
  5013. "source": "https://git.drupalcode.org/project/entity_clone"
  5014. }
  5015. },
  5016. {
  5017. "name": "drupal/entity_reference_revisions",
  5018. "version": "1.12.0",
  5019. "source": {
  5020. "type": "git",
  5021. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  5022. "reference": "8.x-1.12"
  5023. },
  5024. "dist": {
  5025. "type": "zip",
  5026. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.12.zip",
  5027. "reference": "8.x-1.12",
  5028. "shasum": "2a2ff8617c7ce01b56df1caaf0a563da04948e26"
  5029. },
  5030. "require": {
  5031. "drupal/core": "^9 || ^10 || ^11"
  5032. },
  5033. "require-dev": {
  5034. "drupal/diff": "^1 || ^2"
  5035. },
  5036. "type": "drupal-module",
  5037. "extra": {
  5038. "drupal": {
  5039. "version": "8.x-1.12",
  5040. "datestamp": "1722804497",
  5041. "security-coverage": {
  5042. "status": "covered",
  5043. "message": "Covered by Drupal's security advisory policy"
  5044. }
  5045. },
  5046. "drush": {
  5047. "services": {
  5048. "drush.services.yml": "^9 || ^10 || ^11"
  5049. }
  5050. }
  5051. },
  5052. "notification-url": "https://packages.drupal.org/8/downloads",
  5053. "license": [
  5054. "GPL-2.0-or-later"
  5055. ],
  5056. "authors": [
  5057. {
  5058. "name": "berdir",
  5059. "homepage": "https://www.drupal.org/user/214652"
  5060. },
  5061. {
  5062. "name": "Frans",
  5063. "homepage": "https://www.drupal.org/user/514222"
  5064. },
  5065. {
  5066. "name": "jeroen.b",
  5067. "homepage": "https://www.drupal.org/user/1853532"
  5068. },
  5069. {
  5070. "name": "miro_dietiker",
  5071. "homepage": "https://www.drupal.org/user/227761"
  5072. }
  5073. ],
  5074. "description": "Entity Reference Revisions",
  5075. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  5076. "support": {
  5077. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  5078. }
  5079. },
  5080. {
  5081. "name": "drupal/entity_type_clone",
  5082. "version": "4.0.3",
  5083. "source": {
  5084. "type": "git",
  5085. "url": "https://git.drupalcode.org/project/entity_type_clone.git",
  5086. "reference": "4.0.3"
  5087. },
  5088. "dist": {
  5089. "type": "zip",
  5090. "url": "https://ftp.drupal.org/files/projects/entity_type_clone-4.0.3.zip",
  5091. "reference": "4.0.3",
  5092. "shasum": "684e81fcaa034bfb7a4ffdc3e81c040701fbd8b7"
  5093. },
  5094. "require": {
  5095. "drupal/core": "^8 || ^9 || ^10"
  5096. },
  5097. "type": "drupal-module",
  5098. "extra": {
  5099. "drupal": {
  5100. "version": "4.0.3",
  5101. "datestamp": "1693947342",
  5102. "security-coverage": {
  5103. "status": "covered",
  5104. "message": "Covered by Drupal's security advisory policy"
  5105. }
  5106. }
  5107. },
  5108. "notification-url": "https://packages.drupal.org/8/downloads",
  5109. "license": [
  5110. "GPL-2.0-or-later"
  5111. ],
  5112. "authors": [
  5113. {
  5114. "name": "ajay_reddy",
  5115. "homepage": "https://www.drupal.org/user/3261994"
  5116. },
  5117. {
  5118. "name": "vuil",
  5119. "homepage": "https://www.drupal.org/user/3568458"
  5120. }
  5121. ],
  5122. "description": "This module provide option to clone entity types and role.",
  5123. "homepage": "https://www.drupal.org/project/entity_type_clone",
  5124. "support": {
  5125. "source": "https://git.drupalcode.org/project/entity_type_clone"
  5126. }
  5127. },
  5128. {
  5129. "name": "drupal/extlink",
  5130. "version": "1.7.0",
  5131. "source": {
  5132. "type": "git",
  5133. "url": "https://git.drupalcode.org/project/extlink.git",
  5134. "reference": "8.x-1.7"
  5135. },
  5136. "dist": {
  5137. "type": "zip",
  5138. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.7.zip",
  5139. "reference": "8.x-1.7",
  5140. "shasum": "38650688b5a58496db59f40b2a7f36c4bedcbfb4"
  5141. },
  5142. "require": {
  5143. "drupal/core": "^8 || ^9 || ^10"
  5144. },
  5145. "type": "drupal-module",
  5146. "extra": {
  5147. "drupal": {
  5148. "version": "8.x-1.7",
  5149. "datestamp": "1665770295",
  5150. "security-coverage": {
  5151. "status": "covered",
  5152. "message": "Covered by Drupal's security advisory policy"
  5153. }
  5154. }
  5155. },
  5156. "notification-url": "https://packages.drupal.org/8/downloads",
  5157. "license": [
  5158. "GPL-2.0-or-later"
  5159. ],
  5160. "authors": [
  5161. {
  5162. "name": "Nate Lampton",
  5163. "homepage": "https://www.drupal.org/u/quicksketch",
  5164. "role": "Maintainer"
  5165. },
  5166. {
  5167. "name": "Lachlan Ennis",
  5168. "homepage": "https://www.drupal.org/u/elachlan",
  5169. "role": "Maintainer"
  5170. },
  5171. {
  5172. "name": "Neslee Canil Pinto",
  5173. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  5174. "role": "Maintainer"
  5175. },
  5176. {
  5177. "name": "quicksketch",
  5178. "homepage": "https://www.drupal.org/user/35821"
  5179. },
  5180. {
  5181. "name": "smustgrave",
  5182. "homepage": "https://www.drupal.org/user/3252890"
  5183. }
  5184. ],
  5185. "description": "Modify behavior and appearance of external links.",
  5186. "homepage": "https://www.drupal.org/project/extlink",
  5187. "keywords": [
  5188. "Drupal",
  5189. "External Links"
  5190. ],
  5191. "support": {
  5192. "source": "https://git.drupalcode.org/project/extlink",
  5193. "issues": "https://www.drupal.org/project/issues/extlink"
  5194. }
  5195. },
  5196. {
  5197. "name": "drupal/field_group",
  5198. "version": "dev-3.x",
  5199. "source": {
  5200. "type": "git",
  5201. "url": "https://git.drupalcode.org/project/field_group.git",
  5202. "reference": "f9a93f0d06b4fb354015e2b380492a5ddedd009e"
  5203. },
  5204. "require": {
  5205. "drupal/core": "^8.8 || ^9"
  5206. },
  5207. "require-dev": {
  5208. "drupal/jquery_ui_accordion": "^1.0"
  5209. },
  5210. "type": "drupal-module",
  5211. "extra": {
  5212. "branch-alias": {
  5213. "dev-3.x": "3.x-dev"
  5214. },
  5215. "drupal": {
  5216. "version": "8.x-3.2+6-dev",
  5217. "datestamp": "1634760756",
  5218. "security-coverage": {
  5219. "status": "not-covered",
  5220. "message": "Dev releases are not covered by Drupal security advisories."
  5221. }
  5222. }
  5223. },
  5224. "notification-url": "https://packages.drupal.org/8/downloads",
  5225. "license": [
  5226. "GPL-2.0-or-later"
  5227. ],
  5228. "authors": [
  5229. {
  5230. "name": "Hydra",
  5231. "homepage": "https://www.drupal.org/user/647364"
  5232. },
  5233. {
  5234. "name": "Stalski",
  5235. "homepage": "https://www.drupal.org/user/322618"
  5236. },
  5237. {
  5238. "name": "jyve",
  5239. "homepage": "https://www.drupal.org/user/591438"
  5240. },
  5241. {
  5242. "name": "nils.destoop",
  5243. "homepage": "https://www.drupal.org/user/361625"
  5244. },
  5245. {
  5246. "name": "swentel",
  5247. "homepage": "https://www.drupal.org/user/107403"
  5248. }
  5249. ],
  5250. "description": "Provides the field_group module.",
  5251. "homepage": "https://www.drupal.org/project/field_group",
  5252. "support": {
  5253. "source": "https://git.drupalcode.org/project/field_group",
  5254. "issues": "https://www.drupal.org/project/issues/field_group"
  5255. }
  5256. },
  5257. {
  5258. "name": "drupal/filefield_sources",
  5259. "version": "dev-1.x",
  5260. "source": {
  5261. "type": "git",
  5262. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  5263. "reference": "12a9918a4e2e31ff10c127766610bfbac13d6487"
  5264. },
  5265. "require": {
  5266. "drupal/core": "^8 || ^9"
  5267. },
  5268. "require-dev": {
  5269. "drupal/imce": "^2.3"
  5270. },
  5271. "type": "drupal-module",
  5272. "extra": {
  5273. "branch-alias": {
  5274. "dev-1.x": "1.x-dev"
  5275. },
  5276. "drupal": {
  5277. "version": "8.x-1.0-alpha4+5-dev",
  5278. "datestamp": "1621879079",
  5279. "security-coverage": {
  5280. "status": "not-covered",
  5281. "message": "Dev releases are not covered by Drupal security advisories."
  5282. }
  5283. }
  5284. },
  5285. "notification-url": "https://packages.drupal.org/8/downloads",
  5286. "license": [
  5287. "GPL-2.0-or-later"
  5288. ],
  5289. "authors": [
  5290. {
  5291. "name": "Nate Lampton (quicksketch)",
  5292. "homepage": "https://www.drupal.org/u/quicksketch",
  5293. "role": "Maintainer"
  5294. },
  5295. {
  5296. "name": "Andrey Khromyshev (profak)",
  5297. "homepage": "https://www.drupal.org/u/profak",
  5298. "role": "Maintainer"
  5299. },
  5300. {
  5301. "name": "David Valdez (gnuget)",
  5302. "homepage": "https://www.drupal.org/u/gnuget",
  5303. "role": "Maintainer"
  5304. }
  5305. ],
  5306. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  5307. "homepage": "https://www.drupal.org/project/filefield_sources",
  5308. "support": {
  5309. "source": "https://git.drupalcode.org/project/filefield_sources",
  5310. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  5311. "irc": "irc://irc.freenode.org/drupal-contribute"
  5312. }
  5313. },
  5314. {
  5315. "name": "drupal/filter_perms",
  5316. "version": "dev-1.x",
  5317. "source": {
  5318. "type": "git",
  5319. "url": "https://git.drupalcode.org/project/filter_perms.git",
  5320. "reference": "f9abe65da2236de801902256f8388291bc3d2c83"
  5321. },
  5322. "require": {
  5323. "drupal/core": "^8 || ^9"
  5324. },
  5325. "type": "drupal-module",
  5326. "extra": {
  5327. "branch-alias": {
  5328. "dev-1.x": "1.x-dev"
  5329. },
  5330. "drupal": {
  5331. "version": "8.x-1.0-alpha1+2-dev",
  5332. "datestamp": "1599239698",
  5333. "security-coverage": {
  5334. "status": "not-covered",
  5335. "message": "Dev releases are not covered by Drupal security advisories."
  5336. }
  5337. }
  5338. },
  5339. "notification-url": "https://packages.drupal.org/8/downloads",
  5340. "license": [
  5341. "GPL-2.0-or-later"
  5342. ],
  5343. "authors": [
  5344. {
  5345. "name": "cYu",
  5346. "homepage": "https://www.drupal.org/user/202205"
  5347. },
  5348. {
  5349. "name": "deekayen",
  5350. "homepage": "https://www.drupal.org/user/972"
  5351. },
  5352. {
  5353. "name": "ivagold",
  5354. "homepage": "https://www.drupal.org/user/3061533"
  5355. },
  5356. {
  5357. "name": "mgbellaire",
  5358. "homepage": "https://www.drupal.org/user/1831932"
  5359. },
  5360. {
  5361. "name": "willzyx",
  5362. "homepage": "https://www.drupal.org/user/1043862"
  5363. }
  5364. ],
  5365. "description": "Provides role and module filters to simplify the user permissions page.",
  5366. "homepage": "https://www.drupal.org/project/filter_perms",
  5367. "support": {
  5368. "source": "https://git.drupalcode.org/project/filter_perms"
  5369. }
  5370. },
  5371. {
  5372. "name": "drupal/formatter_suite",
  5373. "version": "2.1.0",
  5374. "source": {
  5375. "type": "git",
  5376. "url": "https://git.drupalcode.org/project/formatter_suite.git",
  5377. "reference": "2.1.0"
  5378. },
  5379. "dist": {
  5380. "type": "zip",
  5381. "url": "https://ftp.drupal.org/files/projects/formatter_suite-2.1.0.zip",
  5382. "reference": "2.1.0",
  5383. "shasum": "699e14a27dfecfaa4abd3f923102f3256603aa28"
  5384. },
  5385. "require": {
  5386. "drupal/core": "^9 || ^10"
  5387. },
  5388. "type": "drupal-module",
  5389. "extra": {
  5390. "drupal": {
  5391. "version": "2.1.0",
  5392. "datestamp": "1742410413",
  5393. "security-coverage": {
  5394. "status": "covered",
  5395. "message": "Covered by Drupal's security advisory policy"
  5396. }
  5397. }
  5398. },
  5399. "notification-url": "https://packages.drupal.org/8/downloads",
  5400. "license": [
  5401. "GPL-2.0-or-later"
  5402. ],
  5403. "authors": [
  5404. {
  5405. "name": "cyoun",
  5406. "homepage": "https://www.drupal.org/user/3819850"
  5407. },
  5408. {
  5409. "name": "toamit",
  5410. "homepage": "https://www.drupal.org/user/2820523"
  5411. }
  5412. ],
  5413. "description": "Field formaters to present numbers, text, links, etc.",
  5414. "homepage": "https://www.drupal.org/project/formatter_suite",
  5415. "keywords": [
  5416. "Drupal",
  5417. "Format"
  5418. ],
  5419. "support": {
  5420. "source": "http://cgit.drupalcode.org/formatter_suite",
  5421. "issues": "http://drupal.org/project/issues/formatter_suite"
  5422. }
  5423. },
  5424. {
  5425. "name": "drupal/geocoder",
  5426. "version": "3.25.0",
  5427. "source": {
  5428. "type": "git",
  5429. "url": "https://git.drupalcode.org/project/geocoder.git",
  5430. "reference": "8.x-3.25"
  5431. },
  5432. "dist": {
  5433. "type": "zip",
  5434. "url": "https://ftp.drupal.org/files/projects/geocoder-8.x-3.25.zip",
  5435. "reference": "8.x-3.25",
  5436. "shasum": "959dd2df6c17eaa0550ecb3943f06bb77d1d3adc"
  5437. },
  5438. "require": {
  5439. "davedevelopment/stiphle": "^0.9.2",
  5440. "drupal/core": "^8.8 || ^9",
  5441. "php": ">=7.1.0",
  5442. "php-http/guzzle6-adapter": "^1.1 || ^2.0",
  5443. "php-http/message": "^1.6",
  5444. "willdurand/geocoder": "^4.0"
  5445. },
  5446. "require-dev": {
  5447. "drupal/address": "*",
  5448. "drupal/coder": "^8.2",
  5449. "drupal/geocoder_field": "*",
  5450. "drupal/geofield": "*",
  5451. "geo6/geocoder-php-bpost-provider": "^1.3.0",
  5452. "geo6/geocoder-php-geopunt-provider": "^1.0",
  5453. "geo6/geocoder-php-spw-provider": "^1.0",
  5454. "geocoder-php/arcgis-online-provider": "^4.0",
  5455. "geocoder-php/bing-maps-provider": "^4.0",
  5456. "geocoder-php/free-geoip-provider": "^4.1",
  5457. "geocoder-php/geo-plugin-provider": "^4.0",
  5458. "geocoder-php/geoips-provider": "^4.1",
  5459. "geocoder-php/geonames-provider": "^4.1",
  5460. "geocoder-php/google-maps-provider": "^4.2",
  5461. "geocoder-php/graphhopper-provider": "^0.1.0",
  5462. "geocoder-php/host-ip-provider": "^4.0",
  5463. "geocoder-php/ip-info-db-provider": "^4.0",
  5464. "geocoder-php/mapbox-provider": "^0.1",
  5465. "geocoder-php/mapquest-provider": "^4.0",
  5466. "geocoder-php/maxmind-provider": "^4.1",
  5467. "geocoder-php/nominatim-provider": "^5.0",
  5468. "geocoder-php/open-cage-provider": "^4.0",
  5469. "geocoder-php/openrouteservice-provider": "^1.0",
  5470. "geocoder-php/pelias-provider": "^1.1",
  5471. "geocoder-php/photon-provider": "^0.1.0",
  5472. "geocoder-php/tomtom-provider": "^4.0",
  5473. "geocoder-php/yandex-provider": "^4.0",
  5474. "phpro/grumphp": "^0.12.1",
  5475. "phpunit/phpunit": "^5.7|^6.5",
  5476. "sensiolabs/security-checker": "^4.1",
  5477. "squizlabs/php_codesniffer": "^2.7"
  5478. },
  5479. "type": "drupal-module",
  5480. "extra": {
  5481. "drupal": {
  5482. "version": "8.x-3.25",
  5483. "datestamp": "1642803151",
  5484. "security-coverage": {
  5485. "status": "covered",
  5486. "message": "Covered by Drupal's security advisory policy"
  5487. }
  5488. }
  5489. },
  5490. "notification-url": "https://packages.drupal.org/8/downloads",
  5491. "license": [
  5492. "GPL-2.0-or-later"
  5493. ],
  5494. "authors": [
  5495. {
  5496. "name": "Pol Dellaiera (@drupol)",
  5497. "homepage": "https://www.drupal.org/u/pol",
  5498. "role": "Maintainer"
  5499. },
  5500. {
  5501. "name": "Italo Mairo (@itamair)",
  5502. "homepage": "https://www.drupal.org/u/itamair",
  5503. "role": "Co-maintainer"
  5504. },
  5505. {
  5506. "name": "Pol",
  5507. "homepage": "https://www.drupal.org/user/47194"
  5508. },
  5509. {
  5510. "name": "Simon Georges",
  5511. "homepage": "https://www.drupal.org/user/172312"
  5512. },
  5513. {
  5514. "name": "claudiu.cristea",
  5515. "homepage": "https://www.drupal.org/user/56348"
  5516. },
  5517. {
  5518. "name": "gregseb",
  5519. "homepage": "https://www.drupal.org/user/847848"
  5520. },
  5521. {
  5522. "name": "indytechcook",
  5523. "homepage": "https://www.drupal.org/user/245817"
  5524. },
  5525. {
  5526. "name": "itamair",
  5527. "homepage": "https://www.drupal.org/user/1179076"
  5528. },
  5529. {
  5530. "name": "michaelfavia",
  5531. "homepage": "https://www.drupal.org/user/49137"
  5532. },
  5533. {
  5534. "name": "phayes",
  5535. "homepage": "https://www.drupal.org/user/47098"
  5536. },
  5537. {
  5538. "name": "vidhatanand",
  5539. "homepage": "https://www.drupal.org/user/585764"
  5540. }
  5541. ],
  5542. "description": "A Drupal module and a services based API to perform Geocode & Reverse Geocode operations among GIS data and addresses types & formats.",
  5543. "homepage": "https://drupal.org/project/geocoder",
  5544. "support": {
  5545. "source": "https://git.drupalcode.org/project/geocoder",
  5546. "issues": "https://drupal.org/project/issues/geocoder",
  5547. "irc": "irc://irc.freenode.org/drupal-geo"
  5548. }
  5549. },
  5550. {
  5551. "name": "drupal/geofield",
  5552. "version": "1.64.0",
  5553. "source": {
  5554. "type": "git",
  5555. "url": "https://git.drupalcode.org/project/geofield.git",
  5556. "reference": "8.x-1.64"
  5557. },
  5558. "dist": {
  5559. "type": "zip",
  5560. "url": "https://ftp.drupal.org/files/projects/geofield-8.x-1.64.zip",
  5561. "reference": "8.x-1.64",
  5562. "shasum": "300f8cf8bf4d0cf2660c5a7e81d56146d947b772"
  5563. },
  5564. "require": {
  5565. "drupal/core": "^9 || ^10 || ^11",
  5566. "itamair/geophp": "^1.6"
  5567. },
  5568. "require-dev": {
  5569. "drupal/diff": "^1.3",
  5570. "drupal/feeds": "^3.0@beta"
  5571. },
  5572. "type": "drupal-module",
  5573. "extra": {
  5574. "drupal": {
  5575. "version": "8.x-1.64",
  5576. "datestamp": "1736675456",
  5577. "security-coverage": {
  5578. "status": "covered",
  5579. "message": "Covered by Drupal's security advisory policy"
  5580. }
  5581. }
  5582. },
  5583. "notification-url": "https://packages.drupal.org/8/downloads",
  5584. "license": [
  5585. "GPL-2.0+"
  5586. ],
  5587. "authors": [
  5588. {
  5589. "name": "Italo Mairo",
  5590. "homepage": "https://www.drupal.org/u/itamair",
  5591. "role": "Drupal 8+ Maintainer"
  5592. },
  5593. {
  5594. "name": "Brandon Morrison",
  5595. "homepage": "https://www.drupal.org/u/brandonian",
  5596. "role": "Drupal 7 Maintainer"
  5597. },
  5598. {
  5599. "name": "Pablo López",
  5600. "homepage": "https://www.drupal.org/u/plopesc",
  5601. "role": "Drupal 7 Maintainer"
  5602. }
  5603. ],
  5604. "description": "Stores geographic and location data (points, lines, and polygons).",
  5605. "homepage": "https://www.drupal.org/project/geofield",
  5606. "support": {
  5607. "source": "https://git.drupalcode.org/project/geofield",
  5608. "issues": "https://www.drupal.org/project/issues/geofield",
  5609. "irc": "irc://irc.freenode.org/drupal-contribute"
  5610. }
  5611. },
  5612. {
  5613. "name": "drupal/honeypot",
  5614. "version": "2.1.4",
  5615. "source": {
  5616. "type": "git",
  5617. "url": "https://git.drupalcode.org/project/honeypot.git",
  5618. "reference": "2.1.4"
  5619. },
  5620. "dist": {
  5621. "type": "zip",
  5622. "url": "https://ftp.drupal.org/files/projects/honeypot-2.1.4.zip",
  5623. "reference": "2.1.4",
  5624. "shasum": "adf76c3520c0e458177dbe6d638aa2d6ae40a95b"
  5625. },
  5626. "require": {
  5627. "drupal/core": "^9.2 || ^10"
  5628. },
  5629. "require-dev": {
  5630. "drupal/rules": "^3.x-dev"
  5631. },
  5632. "type": "drupal-module",
  5633. "extra": {
  5634. "drupal": {
  5635. "version": "2.1.4",
  5636. "datestamp": "1739061992",
  5637. "security-coverage": {
  5638. "status": "covered",
  5639. "message": "Covered by Drupal's security advisory policy"
  5640. }
  5641. }
  5642. },
  5643. "notification-url": "https://packages.drupal.org/8/downloads",
  5644. "license": [
  5645. "GPL-2.0-or-later"
  5646. ],
  5647. "authors": [
  5648. {
  5649. "name": "Jeff Geerling",
  5650. "homepage": "https://www.drupal.org/user/389011",
  5651. "email": "geerlingguy@mac.com"
  5652. },
  5653. {
  5654. "name": "manuel garcia",
  5655. "homepage": "https://www.drupal.org/user/213194"
  5656. },
  5657. {
  5658. "name": "tr",
  5659. "homepage": "https://www.drupal.org/user/202830"
  5660. },
  5661. {
  5662. "name": "vijaycs85",
  5663. "homepage": "https://www.drupal.org/user/93488"
  5664. }
  5665. ],
  5666. "description": "Mitigates spam form submissions using the honeypot method.",
  5667. "homepage": "https://www.drupal.org/project/honeypot",
  5668. "keywords": [
  5669. "deterrent",
  5670. "form",
  5671. "honeypot",
  5672. "honeytrap",
  5673. "php",
  5674. "spam"
  5675. ],
  5676. "support": {
  5677. "source": "https://git.drupalcode.org/project/honeypot",
  5678. "issues": "https://www.drupal.org/project/issues/honeypot"
  5679. }
  5680. },
  5681. {
  5682. "name": "drupal/image_delta_formatter",
  5683. "version": "1.2.0",
  5684. "source": {
  5685. "type": "git",
  5686. "url": "https://git.drupalcode.org/project/image_delta_formatter.git",
  5687. "reference": "8.x-1.2"
  5688. },
  5689. "dist": {
  5690. "type": "zip",
  5691. "url": "https://ftp.drupal.org/files/projects/image_delta_formatter-8.x-1.2.zip",
  5692. "reference": "8.x-1.2",
  5693. "shasum": "e236790ad92bdbc8a0ba0aa042a8580d8ce9f425"
  5694. },
  5695. "require": {
  5696. "drupal/core": "^8 || ^9 || ^10"
  5697. },
  5698. "type": "drupal-module",
  5699. "extra": {
  5700. "drupal": {
  5701. "version": "8.x-1.2",
  5702. "datestamp": "1685543777",
  5703. "security-coverage": {
  5704. "status": "covered",
  5705. "message": "Covered by Drupal's security advisory policy"
  5706. }
  5707. }
  5708. },
  5709. "notification-url": "https://packages.drupal.org/8/downloads",
  5710. "license": [
  5711. "GPL-2.0-or-later"
  5712. ],
  5713. "authors": [
  5714. {
  5715. "name": "bojanz",
  5716. "homepage": "https://www.drupal.org/user/86106"
  5717. },
  5718. {
  5719. "name": "fgm",
  5720. "homepage": "https://www.drupal.org/user/27985"
  5721. },
  5722. {
  5723. "name": "jsacksick",
  5724. "homepage": "https://www.drupal.org/user/972218"
  5725. }
  5726. ],
  5727. "description": "Provides a formatter that displays a specific delta of a multivalue imagefield.",
  5728. "homepage": "https://www.drupal.org/project/image_delta_formatter",
  5729. "support": {
  5730. "source": "https://git.drupalcode.org/project/image_delta_formatter"
  5731. }
  5732. },
  5733. {
  5734. "name": "drupal/image_field_caption",
  5735. "version": "2.0.2",
  5736. "source": {
  5737. "type": "git",
  5738. "url": "https://git.drupalcode.org/project/image_field_caption.git",
  5739. "reference": "2.0.2"
  5740. },
  5741. "dist": {
  5742. "type": "zip",
  5743. "url": "https://ftp.drupal.org/files/projects/image_field_caption-2.0.2.zip",
  5744. "reference": "2.0.2",
  5745. "shasum": "9b1f7d780adb66755626b925a80fe2b855f4975d"
  5746. },
  5747. "require": {
  5748. "drupal/core": "^9 || ^10"
  5749. },
  5750. "type": "drupal-module",
  5751. "extra": {
  5752. "drupal": {
  5753. "version": "2.0.2",
  5754. "datestamp": "1738422190",
  5755. "security-coverage": {
  5756. "status": "covered",
  5757. "message": "Covered by Drupal's security advisory policy"
  5758. }
  5759. }
  5760. },
  5761. "notification-url": "https://packages.drupal.org/8/downloads",
  5762. "license": [
  5763. "GPL-2.0+"
  5764. ],
  5765. "authors": [
  5766. {
  5767. "name": "awm",
  5768. "homepage": "https://www.drupal.org/user/1059398"
  5769. },
  5770. {
  5771. "name": "foxy-vikvik",
  5772. "homepage": "https://www.drupal.org/user/3706169"
  5773. },
  5774. {
  5775. "name": "hanoii",
  5776. "homepage": "https://www.drupal.org/user/23157"
  5777. },
  5778. {
  5779. "name": "ironsizide",
  5780. "homepage": "https://www.drupal.org/user/787980"
  5781. },
  5782. {
  5783. "name": "istryker",
  5784. "homepage": "https://www.drupal.org/user/303676"
  5785. },
  5786. {
  5787. "name": "robloach",
  5788. "homepage": "https://www.drupal.org/user/61114"
  5789. },
  5790. {
  5791. "name": "tyler.frankenstein",
  5792. "homepage": "https://www.drupal.org/user/150680"
  5793. }
  5794. ],
  5795. "description": "Add caption to image field.",
  5796. "homepage": "https://www.drupal.org/project/image_field_caption",
  5797. "support": {
  5798. "source": "https://git.drupalcode.org/project/image_field_caption",
  5799. "issues": "https://www.drupal.org/project/issues/image_field_caption"
  5800. }
  5801. },
  5802. {
  5803. "name": "drupal/inline_entity_form",
  5804. "version": "1.0.0-rc9",
  5805. "source": {
  5806. "type": "git",
  5807. "url": "https://git.drupalcode.org/project/inline_entity_form.git",
  5808. "reference": "8.x-1.0-rc9"
  5809. },
  5810. "dist": {
  5811. "type": "zip",
  5812. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc9.zip",
  5813. "reference": "8.x-1.0-rc9",
  5814. "shasum": "78953103a9c6e4e44bc877820a35f39913ea4559"
  5815. },
  5816. "require": {
  5817. "drupal/core": "^8.8 || ^9",
  5818. "php": ">=7.1"
  5819. },
  5820. "require-dev": {
  5821. "drupal/entity_reference_revisions": "^1.0"
  5822. },
  5823. "type": "drupal-module",
  5824. "extra": {
  5825. "drupal": {
  5826. "version": "8.x-1.0-rc9",
  5827. "datestamp": "1618174486",
  5828. "security-coverage": {
  5829. "status": "not-covered",
  5830. "message": "RC releases are not covered by Drupal security advisories."
  5831. }
  5832. }
  5833. },
  5834. "notification-url": "https://packages.drupal.org/8/downloads",
  5835. "license": [
  5836. "GPL-2.0-or-later"
  5837. ],
  5838. "authors": [
  5839. {
  5840. "name": "Centarro",
  5841. "homepage": "https://www.drupal.org/user/3661446"
  5842. },
  5843. {
  5844. "name": "bojanz",
  5845. "homepage": "https://www.drupal.org/user/86106"
  5846. },
  5847. {
  5848. "name": "dawehner",
  5849. "homepage": "https://www.drupal.org/user/99340"
  5850. },
  5851. {
  5852. "name": "geek-merlin",
  5853. "homepage": "https://www.drupal.org/user/229048"
  5854. },
  5855. {
  5856. "name": "joachim",
  5857. "homepage": "https://www.drupal.org/user/107701"
  5858. },
  5859. {
  5860. "name": "jsacksick",
  5861. "homepage": "https://www.drupal.org/user/972218"
  5862. },
  5863. {
  5864. "name": "kaythay",
  5865. "homepage": "https://www.drupal.org/user/2182186"
  5866. },
  5867. {
  5868. "name": "oknate",
  5869. "homepage": "https://www.drupal.org/user/471638"
  5870. },
  5871. {
  5872. "name": "ram4nd",
  5873. "homepage": "https://www.drupal.org/user/601534"
  5874. },
  5875. {
  5876. "name": "rszrama",
  5877. "homepage": "https://www.drupal.org/user/49344"
  5878. },
  5879. {
  5880. "name": "slashrsm",
  5881. "homepage": "https://www.drupal.org/user/744628"
  5882. },
  5883. {
  5884. "name": "webflo",
  5885. "homepage": "https://www.drupal.org/user/254778"
  5886. }
  5887. ],
  5888. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  5889. "homepage": "https://www.drupal.org/project/inline_entity_form",
  5890. "support": {
  5891. "source": "https://git.drupalcode.org/project/inline_entity_form"
  5892. }
  5893. },
  5894. {
  5895. "name": "drupal/jquery_ui",
  5896. "version": "1.7.0",
  5897. "source": {
  5898. "type": "git",
  5899. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  5900. "reference": "8.x-1.7"
  5901. },
  5902. "dist": {
  5903. "type": "zip",
  5904. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.7.zip",
  5905. "reference": "8.x-1.7",
  5906. "shasum": "3f893843ec30fed18fa1b0cb326e51880b0cb686"
  5907. },
  5908. "require": {
  5909. "drupal/core": "^9.2 || ^10 || ^11"
  5910. },
  5911. "type": "drupal-module",
  5912. "extra": {
  5913. "drupal": {
  5914. "version": "8.x-1.7",
  5915. "datestamp": "1717002098",
  5916. "security-coverage": {
  5917. "status": "covered",
  5918. "message": "Covered by Drupal's security advisory policy"
  5919. }
  5920. }
  5921. },
  5922. "notification-url": "https://packages.drupal.org/8/downloads",
  5923. "license": [
  5924. "GPL-2.0-or-later"
  5925. ],
  5926. "authors": [
  5927. {
  5928. "name": "bnjmnm",
  5929. "homepage": "https://www.drupal.org/user/2369194"
  5930. },
  5931. {
  5932. "name": "jjeff",
  5933. "homepage": "https://www.drupal.org/user/17190"
  5934. },
  5935. {
  5936. "name": "lauriii",
  5937. "homepage": "https://www.drupal.org/user/1078742"
  5938. },
  5939. {
  5940. "name": "litwol",
  5941. "homepage": "https://www.drupal.org/user/78134"
  5942. },
  5943. {
  5944. "name": "mfb",
  5945. "homepage": "https://www.drupal.org/user/12302"
  5946. },
  5947. {
  5948. "name": "mfer",
  5949. "homepage": "https://www.drupal.org/user/25701"
  5950. },
  5951. {
  5952. "name": "mikelutz",
  5953. "homepage": "https://www.drupal.org/user/2972409"
  5954. },
  5955. {
  5956. "name": "nod_",
  5957. "homepage": "https://www.drupal.org/user/598310"
  5958. },
  5959. {
  5960. "name": "phenaproxima",
  5961. "homepage": "https://www.drupal.org/user/205645"
  5962. },
  5963. {
  5964. "name": "RobLoach",
  5965. "homepage": "https://www.drupal.org/user/61114"
  5966. },
  5967. {
  5968. "name": "sun",
  5969. "homepage": "https://www.drupal.org/user/54136"
  5970. },
  5971. {
  5972. "name": "webchick",
  5973. "homepage": "https://www.drupal.org/user/24967"
  5974. },
  5975. {
  5976. "name": "Wim Leers",
  5977. "homepage": "https://www.drupal.org/user/99777"
  5978. },
  5979. {
  5980. "name": "zrpnr",
  5981. "homepage": "https://www.drupal.org/user/1448368"
  5982. }
  5983. ],
  5984. "description": "Provides jQuery UI library.",
  5985. "homepage": "https://www.drupal.org/project/jquery_ui",
  5986. "support": {
  5987. "source": "https://git.drupalcode.org/project/jquery_ui"
  5988. }
  5989. },
  5990. {
  5991. "name": "drupal/jquery_ui_button",
  5992. "version": "1.1.0",
  5993. "source": {
  5994. "type": "git",
  5995. "url": "https://git.drupalcode.org/project/jquery_ui_button.git",
  5996. "reference": "8.x-1.1"
  5997. },
  5998. "dist": {
  5999. "type": "zip",
  6000. "url": "https://ftp.drupal.org/files/projects/jquery_ui_button-8.x-1.1.zip",
  6001. "reference": "8.x-1.1",
  6002. "shasum": "70175a96c9034cc1cb2f28c415b2a9828355cc1a"
  6003. },
  6004. "require": {
  6005. "drupal/core": "^8 || ^9",
  6006. "drupal/jquery_ui": "*",
  6007. "drupal/jquery_ui_checkboxradio": "*",
  6008. "drupal/jquery_ui_controlgroup": "*"
  6009. },
  6010. "type": "drupal-module",
  6011. "extra": {
  6012. "drupal": {
  6013. "version": "8.x-1.1",
  6014. "datestamp": "1584106807",
  6015. "security-coverage": {
  6016. "status": "covered",
  6017. "message": "Covered by Drupal's security advisory policy"
  6018. }
  6019. }
  6020. },
  6021. "notification-url": "https://packages.drupal.org/8/downloads",
  6022. "license": [
  6023. "GPL-2.0-or-later"
  6024. ],
  6025. "authors": [
  6026. {
  6027. "name": "bnjmnm",
  6028. "homepage": "https://www.drupal.org/user/2369194"
  6029. },
  6030. {
  6031. "name": "lauriii",
  6032. "homepage": "https://www.drupal.org/user/1078742"
  6033. },
  6034. {
  6035. "name": "zrpnr",
  6036. "homepage": "https://www.drupal.org/user/1448368"
  6037. }
  6038. ],
  6039. "description": "Provides jQuery UI Button library.",
  6040. "homepage": "https://www.drupal.org/project/jquery_ui_button",
  6041. "support": {
  6042. "source": "https://git.drupalcode.org/project/jquery_ui_button"
  6043. }
  6044. },
  6045. {
  6046. "name": "drupal/jquery_ui_checkboxradio",
  6047. "version": "2.0.0",
  6048. "source": {
  6049. "type": "git",
  6050. "url": "https://git.drupalcode.org/project/jquery_ui_checkboxradio.git",
  6051. "reference": "2.0.0"
  6052. },
  6053. "dist": {
  6054. "type": "zip",
  6055. "url": "https://ftp.drupal.org/files/projects/jquery_ui_checkboxradio-2.0.0.zip",
  6056. "reference": "2.0.0",
  6057. "shasum": "81d474fbae63b0099c58be95de71e7f010568aa9"
  6058. },
  6059. "require": {
  6060. "drupal/core": "^9.2 || ^10",
  6061. "drupal/jquery_ui": "^1.6"
  6062. },
  6063. "type": "drupal-module",
  6064. "extra": {
  6065. "drupal": {
  6066. "version": "2.0.0",
  6067. "datestamp": "1670871489",
  6068. "security-coverage": {
  6069. "status": "covered",
  6070. "message": "Covered by Drupal's security advisory policy"
  6071. }
  6072. }
  6073. },
  6074. "notification-url": "https://packages.drupal.org/8/downloads",
  6075. "license": [
  6076. "GPL-2.0-or-later"
  6077. ],
  6078. "authors": [
  6079. {
  6080. "name": "bnjmnm",
  6081. "homepage": "https://www.drupal.org/user/2369194"
  6082. },
  6083. {
  6084. "name": "lauriii",
  6085. "homepage": "https://www.drupal.org/user/1078742"
  6086. },
  6087. {
  6088. "name": "zrpnr",
  6089. "homepage": "https://www.drupal.org/user/1448368"
  6090. }
  6091. ],
  6092. "description": "Provides jQuery UI Checkboxradio library.",
  6093. "homepage": "https://www.drupal.org/project/jquery_ui_checkboxradio",
  6094. "support": {
  6095. "source": "https://git.drupalcode.org/project/jquery_ui_checkboxradio"
  6096. }
  6097. },
  6098. {
  6099. "name": "drupal/jquery_ui_controlgroup",
  6100. "version": "1.1.0",
  6101. "source": {
  6102. "type": "git",
  6103. "url": "https://git.drupalcode.org/project/jquery_ui_controlgroup.git",
  6104. "reference": "8.x-1.1"
  6105. },
  6106. "dist": {
  6107. "type": "zip",
  6108. "url": "https://ftp.drupal.org/files/projects/jquery_ui_controlgroup-8.x-1.1.zip",
  6109. "reference": "8.x-1.1",
  6110. "shasum": "ddbd4f01df4e3c9566aa76ba256217a27f45f48a"
  6111. },
  6112. "require": {
  6113. "drupal/core": "^8 || ^9",
  6114. "drupal/jquery_ui": "*"
  6115. },
  6116. "type": "drupal-module",
  6117. "extra": {
  6118. "drupal": {
  6119. "version": "8.x-1.1",
  6120. "datestamp": "1584106616",
  6121. "security-coverage": {
  6122. "status": "covered",
  6123. "message": "Covered by Drupal's security advisory policy"
  6124. }
  6125. }
  6126. },
  6127. "notification-url": "https://packages.drupal.org/8/downloads",
  6128. "license": [
  6129. "GPL-2.0-or-later"
  6130. ],
  6131. "authors": [
  6132. {
  6133. "name": "bnjmnm",
  6134. "homepage": "https://www.drupal.org/user/2369194"
  6135. },
  6136. {
  6137. "name": "lauriii",
  6138. "homepage": "https://www.drupal.org/user/1078742"
  6139. },
  6140. {
  6141. "name": "zrpnr",
  6142. "homepage": "https://www.drupal.org/user/1448368"
  6143. }
  6144. ],
  6145. "description": "Provides jQuery UI Controlgroup library.",
  6146. "homepage": "https://www.drupal.org/project/jquery_ui_controlgroup",
  6147. "support": {
  6148. "source": "https://git.drupalcode.org/project/jquery_ui_controlgroup"
  6149. }
  6150. },
  6151. {
  6152. "name": "drupal/jquery_ui_datepicker",
  6153. "version": "2.1.1",
  6154. "source": {
  6155. "type": "git",
  6156. "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
  6157. "reference": "2.1.1"
  6158. },
  6159. "dist": {
  6160. "type": "zip",
  6161. "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-2.1.1.zip",
  6162. "reference": "2.1.1",
  6163. "shasum": "29e56e8fa351fefd34e80529768ddc69a460149d"
  6164. },
  6165. "require": {
  6166. "drupal/core": "^9.2 || ^10 || ^11",
  6167. "drupal/jquery_ui": "^1.7"
  6168. },
  6169. "type": "drupal-module",
  6170. "extra": {
  6171. "drupal": {
  6172. "version": "2.1.1",
  6173. "datestamp": "1730932612",
  6174. "security-coverage": {
  6175. "status": "covered",
  6176. "message": "Covered by Drupal's security advisory policy"
  6177. }
  6178. }
  6179. },
  6180. "notification-url": "https://packages.drupal.org/8/downloads",
  6181. "license": [
  6182. "GPL-2.0-or-later"
  6183. ],
  6184. "authors": [
  6185. {
  6186. "name": "bnjmnm",
  6187. "homepage": "https://www.drupal.org/user/2369194"
  6188. },
  6189. {
  6190. "name": "jrockowitz",
  6191. "homepage": "https://www.drupal.org/user/371407"
  6192. },
  6193. {
  6194. "name": "lauriii",
  6195. "homepage": "https://www.drupal.org/user/1078742"
  6196. },
  6197. {
  6198. "name": "nod_",
  6199. "homepage": "https://www.drupal.org/user/598310"
  6200. },
  6201. {
  6202. "name": "phenaproxima",
  6203. "homepage": "https://www.drupal.org/user/205645"
  6204. },
  6205. {
  6206. "name": "zrpnr",
  6207. "homepage": "https://www.drupal.org/user/1448368"
  6208. }
  6209. ],
  6210. "description": "Provides jQuery UI Datepicker library.",
  6211. "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
  6212. "support": {
  6213. "source": "https://git.drupalcode.org/project/jquery_ui_datepicker"
  6214. }
  6215. },
  6216. {
  6217. "name": "drupal/jquery_ui_draggable",
  6218. "version": "2.1.0",
  6219. "source": {
  6220. "type": "git",
  6221. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  6222. "reference": "2.1.0"
  6223. },
  6224. "dist": {
  6225. "type": "zip",
  6226. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.1.0.zip",
  6227. "reference": "2.1.0",
  6228. "shasum": "0d014cfff20993d8051efb8f6c9093a4fe5136f3"
  6229. },
  6230. "require": {
  6231. "drupal/core": "^9.2 || ^10 || ^11",
  6232. "drupal/jquery_ui": "^1.7"
  6233. },
  6234. "type": "drupal-module",
  6235. "extra": {
  6236. "drupal": {
  6237. "version": "2.1.0",
  6238. "datestamp": "1717015492",
  6239. "security-coverage": {
  6240. "status": "covered",
  6241. "message": "Covered by Drupal's security advisory policy"
  6242. }
  6243. }
  6244. },
  6245. "notification-url": "https://packages.drupal.org/8/downloads",
  6246. "license": [
  6247. "GPL-2.0-or-later"
  6248. ],
  6249. "authors": [
  6250. {
  6251. "name": "bnjmnm",
  6252. "homepage": "https://www.drupal.org/user/2369194"
  6253. },
  6254. {
  6255. "name": "lauriii",
  6256. "homepage": "https://www.drupal.org/user/1078742"
  6257. },
  6258. {
  6259. "name": "zrpnr",
  6260. "homepage": "https://www.drupal.org/user/1448368"
  6261. }
  6262. ],
  6263. "description": "Provides jQuery UI Draggable library.",
  6264. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  6265. "support": {
  6266. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  6267. }
  6268. },
  6269. {
  6270. "name": "drupal/jquery_ui_droppable",
  6271. "version": "1.5.0",
  6272. "source": {
  6273. "type": "git",
  6274. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  6275. "reference": "8.x-1.5"
  6276. },
  6277. "dist": {
  6278. "type": "zip",
  6279. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-8.x-1.5.zip",
  6280. "reference": "8.x-1.5",
  6281. "shasum": "ee9fec147493ce6c81fdf95ec463f7092606e913"
  6282. },
  6283. "require": {
  6284. "drupal/core": "^9.2 || ^10",
  6285. "drupal/jquery_ui": "^1.5",
  6286. "drupal/jquery_ui_draggable": "*"
  6287. },
  6288. "type": "drupal-module",
  6289. "extra": {
  6290. "drupal": {
  6291. "version": "8.x-1.5",
  6292. "datestamp": "1668452746",
  6293. "security-coverage": {
  6294. "status": "covered",
  6295. "message": "Covered by Drupal's security advisory policy"
  6296. }
  6297. }
  6298. },
  6299. "notification-url": "https://packages.drupal.org/8/downloads",
  6300. "license": [
  6301. "GPL-2.0-or-later"
  6302. ],
  6303. "authors": [
  6304. {
  6305. "name": "bnjmnm",
  6306. "homepage": "https://www.drupal.org/user/2369194"
  6307. },
  6308. {
  6309. "name": "lauriii",
  6310. "homepage": "https://www.drupal.org/user/1078742"
  6311. },
  6312. {
  6313. "name": "zrpnr",
  6314. "homepage": "https://www.drupal.org/user/1448368"
  6315. }
  6316. ],
  6317. "description": "Provides jQuery UI Droppable library.",
  6318. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  6319. "support": {
  6320. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  6321. }
  6322. },
  6323. {
  6324. "name": "drupal/jquery_ui_slider",
  6325. "version": "1.1.0",
  6326. "source": {
  6327. "type": "git",
  6328. "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
  6329. "reference": "8.x-1.1"
  6330. },
  6331. "dist": {
  6332. "type": "zip",
  6333. "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-8.x-1.1.zip",
  6334. "reference": "8.x-1.1",
  6335. "shasum": "79b90cf60d45fc33ffdaa84bb2d6563f78a7d3d1"
  6336. },
  6337. "require": {
  6338. "drupal/core": "^8 || ^9",
  6339. "drupal/jquery_ui": "*"
  6340. },
  6341. "type": "drupal-module",
  6342. "extra": {
  6343. "drupal": {
  6344. "version": "8.x-1.1",
  6345. "datestamp": "1584107817",
  6346. "security-coverage": {
  6347. "status": "covered",
  6348. "message": "Covered by Drupal's security advisory policy"
  6349. }
  6350. }
  6351. },
  6352. "notification-url": "https://packages.drupal.org/8/downloads",
  6353. "license": [
  6354. "GPL-2.0-or-later"
  6355. ],
  6356. "authors": [
  6357. {
  6358. "name": "bnjmnm",
  6359. "homepage": "https://www.drupal.org/user/2369194"
  6360. },
  6361. {
  6362. "name": "lauriii",
  6363. "homepage": "https://www.drupal.org/user/1078742"
  6364. },
  6365. {
  6366. "name": "zrpnr",
  6367. "homepage": "https://www.drupal.org/user/1448368"
  6368. }
  6369. ],
  6370. "description": "Provides jQuery UI Slider library.",
  6371. "homepage": "https://www.drupal.org/project/jquery_ui_slider",
  6372. "support": {
  6373. "source": "https://git.drupalcode.org/project/jquery_ui_slider"
  6374. }
  6375. },
  6376. {
  6377. "name": "drupal/jquery_ui_touch_punch",
  6378. "version": "1.1.1",
  6379. "source": {
  6380. "type": "git",
  6381. "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
  6382. "reference": "1.1.1"
  6383. },
  6384. "dist": {
  6385. "type": "zip",
  6386. "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.1.1.zip",
  6387. "reference": "1.1.1",
  6388. "shasum": "f16bc2ffa500131f43c84427ff213e753de9b6a6"
  6389. },
  6390. "require": {
  6391. "drupal/core": "^9.2 || ^10 || ^11",
  6392. "drupal/jquery_ui": "^1.0",
  6393. "politsin/jquery-ui-touch-punch": "^1.0"
  6394. },
  6395. "type": "drupal-module",
  6396. "extra": {
  6397. "drupal": {
  6398. "version": "1.1.1",
  6399. "datestamp": "1717663479",
  6400. "security-coverage": {
  6401. "status": "covered",
  6402. "message": "Covered by Drupal's security advisory policy"
  6403. }
  6404. }
  6405. },
  6406. "notification-url": "https://packages.drupal.org/8/downloads",
  6407. "license": [
  6408. "GPL-2.0-or-later"
  6409. ],
  6410. "authors": [
  6411. {
  6412. "name": "Naveen Valecha",
  6413. "homepage": "https://drupal.org/u/naveenvalecha",
  6414. "role": "Maintainer"
  6415. },
  6416. {
  6417. "name": "naveenvalecha",
  6418. "homepage": "https://www.drupal.org/user/2665733"
  6419. }
  6420. ],
  6421. "description": "Provides jQuery UI Touch Punch library.",
  6422. "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
  6423. "keywords": [
  6424. "Drupal",
  6425. "jquery_ui_touch_punch"
  6426. ],
  6427. "support": {
  6428. "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
  6429. "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch"
  6430. }
  6431. },
  6432. {
  6433. "name": "drupal/js_cookie",
  6434. "version": "1.0.1",
  6435. "source": {
  6436. "type": "git",
  6437. "url": "https://git.drupalcode.org/project/js_cookie.git",
  6438. "reference": "1.0.1"
  6439. },
  6440. "dist": {
  6441. "type": "zip",
  6442. "url": "https://ftp.drupal.org/files/projects/js_cookie-1.0.1.zip",
  6443. "reference": "1.0.1",
  6444. "shasum": "e010b3de64a0d57eef9c1773c4dd7e3d9bd9118c"
  6445. },
  6446. "require": {
  6447. "drupal/core": "^9 || ^10 || ^11"
  6448. },
  6449. "type": "drupal-module",
  6450. "extra": {
  6451. "drupal": {
  6452. "version": "1.0.1",
  6453. "datestamp": "1693951097",
  6454. "security-coverage": {
  6455. "status": "covered",
  6456. "message": "Covered by Drupal's security advisory policy"
  6457. }
  6458. }
  6459. },
  6460. "notification-url": "https://packages.drupal.org/8/downloads",
  6461. "license": [
  6462. "GPL-2.0-or-later"
  6463. ],
  6464. "authors": [
  6465. {
  6466. "name": "Dave Reid",
  6467. "homepage": "https://www.drupal.org/user/53892"
  6468. }
  6469. ],
  6470. "description": "Provides the js-cookie library as a dependency.",
  6471. "homepage": "https://www.drupal.org/project/js_cookie",
  6472. "support": {
  6473. "source": "https://git.drupalcode.org/project/js_cookie"
  6474. }
  6475. },
  6476. {
  6477. "name": "drupal/leaflet",
  6478. "version": "10.3.5",
  6479. "source": {
  6480. "type": "git",
  6481. "url": "https://git.drupalcode.org/project/leaflet.git",
  6482. "reference": "10.3.5"
  6483. },
  6484. "dist": {
  6485. "type": "zip",
  6486. "url": "https://ftp.drupal.org/files/projects/leaflet-10.3.5.zip",
  6487. "reference": "10.3.5",
  6488. "shasum": "9707462243b2f344e5d85341084d33fdd296ef7b"
  6489. },
  6490. "require": {
  6491. "drupal/core": "^9.3 || ^10 || ^11",
  6492. "drupal/geofield": "^1.31"
  6493. },
  6494. "type": "drupal-module",
  6495. "extra": {
  6496. "drupal": {
  6497. "version": "10.3.5",
  6498. "datestamp": "1751834089",
  6499. "security-coverage": {
  6500. "status": "covered",
  6501. "message": "Covered by Drupal's security advisory policy"
  6502. }
  6503. }
  6504. },
  6505. "notification-url": "https://packages.drupal.org/8/downloads",
  6506. "license": [
  6507. "GPL-2.0+"
  6508. ],
  6509. "authors": [
  6510. {
  6511. "name": "Italo Mairo",
  6512. "homepage": "https://www.drupal.org/u/itamair",
  6513. "role": "Maintainer"
  6514. },
  6515. {
  6516. "name": "Peter Vanhee (pvhee)",
  6517. "homepage": "https://www.drupal.org/u/pvhee",
  6518. "role": "Maintainer"
  6519. },
  6520. {
  6521. "name": "Rik de Boer (RdeBoer)",
  6522. "homepage": "https://www.drupal.org/u/rdeboer",
  6523. "role": "Maintainer"
  6524. },
  6525. {
  6526. "name": "Gabriel Carleton-Barnes (gcb)",
  6527. "homepage": "https://www.drupal.org/u/gcb",
  6528. "role": "Maintainer"
  6529. },
  6530. {
  6531. "name": "Lev Tsypin (levelos)",
  6532. "homepage": "https://www.drupal.org/u/levelos",
  6533. "role": "Maintainer"
  6534. },
  6535. {
  6536. "name": "Sean Larkin (seanberto)",
  6537. "homepage": "https://www.drupal.org/u/seanberto",
  6538. "role": "Maintainer"
  6539. }
  6540. ],
  6541. "description": "Integration with the Leaflet map scripting library.",
  6542. "homepage": "https://www.drupal.org/project/leaflet",
  6543. "support": {
  6544. "source": "https://git.drupalcode.org/project/leaflet",
  6545. "issues": "https://www.drupal.org/project/issues/leaflet"
  6546. }
  6547. },
  6548. {
  6549. "name": "drupal/leaflet_more_maps",
  6550. "version": "2.1.3",
  6551. "source": {
  6552. "type": "git",
  6553. "url": "https://git.drupalcode.org/project/leaflet_more_maps.git",
  6554. "reference": "2.1.3"
  6555. },
  6556. "dist": {
  6557. "type": "zip",
  6558. "url": "https://ftp.drupal.org/files/projects/leaflet_more_maps-2.1.3.zip",
  6559. "reference": "2.1.3",
  6560. "shasum": "525a7ced000f9f0abe99a85b2e231a248d117914"
  6561. },
  6562. "require": {
  6563. "drupal/core": "^8.8 || ^9 || ^10",
  6564. "drupal/leaflet": "^2.1.0 || ^10.0"
  6565. },
  6566. "require-dev": {
  6567. "drupal/leaflet": "*"
  6568. },
  6569. "type": "drupal-module",
  6570. "extra": {
  6571. "drupal": {
  6572. "version": "2.1.3",
  6573. "datestamp": "1669562477",
  6574. "security-coverage": {
  6575. "status": "covered",
  6576. "message": "Covered by Drupal's security advisory policy"
  6577. }
  6578. },
  6579. "branch-alias": {
  6580. "dev-8.x-1.x": "1.x-dev"
  6581. }
  6582. },
  6583. "notification-url": "https://packages.drupal.org/8/downloads",
  6584. "license": [
  6585. "GPL-2.0-or-later"
  6586. ],
  6587. "authors": [
  6588. {
  6589. "name": "berramou",
  6590. "homepage": "https://www.drupal.org/user/3535998"
  6591. },
  6592. {
  6593. "name": "itamair",
  6594. "homepage": "https://www.drupal.org/user/1179076"
  6595. },
  6596. {
  6597. "name": "japerry",
  6598. "homepage": "https://www.drupal.org/user/45640"
  6599. },
  6600. {
  6601. "name": "rachel_norfolk",
  6602. "homepage": "https://www.drupal.org/user/66273"
  6603. },
  6604. {
  6605. "name": "RdeBoer",
  6606. "homepage": "https://www.drupal.org/user/404007"
  6607. }
  6608. ],
  6609. "description": "Adds a swag of map styles to Leaflet, e.g Thunderforest, Esri, Stamen, Google.",
  6610. "homepage": "https://www.drupal.org/project/leaflet_more_maps",
  6611. "support": {
  6612. "source": "https://git.drupalcode.org/project/leaflet_more_maps",
  6613. "issues": "https://www.drupal.org/project/issues/leaflet_more_maps"
  6614. }
  6615. },
  6616. {
  6617. "name": "drupal/leaflet_more_markers",
  6618. "version": "1.1.2",
  6619. "source": {
  6620. "type": "git",
  6621. "url": "https://git.drupalcode.org/project/leaflet_more_markers.git",
  6622. "reference": "1.1.2"
  6623. },
  6624. "dist": {
  6625. "type": "zip",
  6626. "url": "https://ftp.drupal.org/files/projects/leaflet_more_markers-1.1.2.zip",
  6627. "reference": "1.1.2",
  6628. "shasum": "8a23349830f307a3ab1533779a438a8a0609b862"
  6629. },
  6630. "require": {
  6631. "drupal/core": "^9.3 || ^10",
  6632. "drupal/leaflet": "*",
  6633. "drupal/token": "*"
  6634. },
  6635. "type": "drupal-module",
  6636. "extra": {
  6637. "drupal": {
  6638. "version": "1.1.2",
  6639. "datestamp": "1669563076",
  6640. "security-coverage": {
  6641. "status": "covered",
  6642. "message": "Covered by Drupal's security advisory policy"
  6643. }
  6644. }
  6645. },
  6646. "notification-url": "https://packages.drupal.org/8/downloads",
  6647. "license": [
  6648. "GPL-2.0-or-later"
  6649. ],
  6650. "authors": [
  6651. {
  6652. "name": "itamair",
  6653. "homepage": "https://www.drupal.org/user/1179076"
  6654. },
  6655. {
  6656. "name": "RdeBoer",
  6657. "homepage": "https://www.drupal.org/user/404007"
  6658. }
  6659. ],
  6660. "description": "Allows every location to feature its own emoji marker or font icon.",
  6661. "homepage": "https://www.drupal.org/project/leaflet_more_markers",
  6662. "support": {
  6663. "source": "https://git.drupalcode.org/project/leaflet_more_markers"
  6664. }
  6665. },
  6666. {
  6667. "name": "drupal/link_attributes",
  6668. "version": "1.11.0",
  6669. "source": {
  6670. "type": "git",
  6671. "url": "https://git.drupalcode.org/project/link_attributes.git",
  6672. "reference": "8.x-1.11"
  6673. },
  6674. "dist": {
  6675. "type": "zip",
  6676. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.11.zip",
  6677. "reference": "8.x-1.11",
  6678. "shasum": "ca8c7e71c38350e3784dc3d1f779d700f55df818"
  6679. },
  6680. "require": {
  6681. "drupal/core": "^8 || ^9"
  6682. },
  6683. "type": "drupal-module",
  6684. "extra": {
  6685. "drupal": {
  6686. "version": "8.x-1.11",
  6687. "datestamp": "1598323550",
  6688. "security-coverage": {
  6689. "status": "covered",
  6690. "message": "Covered by Drupal's security advisory policy"
  6691. }
  6692. }
  6693. },
  6694. "notification-url": "https://packages.drupal.org/8/downloads",
  6695. "license": [
  6696. "GPL-2.0-or-later"
  6697. ],
  6698. "authors": [
  6699. {
  6700. "name": "larowlan",
  6701. "homepage": "https://www.drupal.org/user/395439"
  6702. }
  6703. ],
  6704. "description": "Provides a widget to allow settings of link attributes for menu links.",
  6705. "homepage": "https://www.drupal.org/project/link_attributes",
  6706. "support": {
  6707. "source": "https://git.drupalcode.org/project/link_attributes"
  6708. }
  6709. },
  6710. {
  6711. "name": "drupal/linked_field",
  6712. "version": "1.3.0",
  6713. "source": {
  6714. "type": "git",
  6715. "url": "https://git.drupalcode.org/project/linked_field.git",
  6716. "reference": "8.x-1.3"
  6717. },
  6718. "dist": {
  6719. "type": "zip",
  6720. "url": "https://ftp.drupal.org/files/projects/linked_field-8.x-1.3.zip",
  6721. "reference": "8.x-1.3",
  6722. "shasum": "0350c415eba6ff63d9fc8f3a162564dd4c2142e2"
  6723. },
  6724. "require": {
  6725. "drupal/core": "^8 || ^9"
  6726. },
  6727. "type": "drupal-module",
  6728. "extra": {
  6729. "drupal": {
  6730. "version": "8.x-1.3",
  6731. "datestamp": "1583855735",
  6732. "security-coverage": {
  6733. "status": "covered",
  6734. "message": "Covered by Drupal's security advisory policy"
  6735. }
  6736. }
  6737. },
  6738. "notification-url": "https://packages.drupal.org/8/downloads",
  6739. "license": [
  6740. "GPL-2.0-or-later"
  6741. ],
  6742. "authors": [
  6743. {
  6744. "name": "hubdrop",
  6745. "homepage": "https://www.drupal.org/user/2750597"
  6746. },
  6747. {
  6748. "name": "yannickoo",
  6749. "homepage": "https://www.drupal.org/user/531118"
  6750. }
  6751. ],
  6752. "description": "Adds the functionality to link fields to a specific destination.",
  6753. "homepage": "https://www.drupal.org/project/linked_field",
  6754. "support": {
  6755. "source": "https://git.drupalcode.org/project/linked_field"
  6756. }
  6757. },
  6758. {
  6759. "name": "drupal/linkit",
  6760. "version": "6.0.0-beta3",
  6761. "source": {
  6762. "type": "git",
  6763. "url": "https://git.drupalcode.org/project/linkit.git",
  6764. "reference": "6.0.0-beta3"
  6765. },
  6766. "dist": {
  6767. "type": "zip",
  6768. "url": "https://ftp.drupal.org/files/projects/linkit-6.0.0-beta3.zip",
  6769. "reference": "6.0.0-beta3",
  6770. "shasum": "39a5bf54cbc88324d788a573df7b3fecf7622065"
  6771. },
  6772. "require": {
  6773. "drupal/core": "^8.7.7 || ^9"
  6774. },
  6775. "require-dev": {
  6776. "drupal/imce": "*"
  6777. },
  6778. "type": "drupal-module",
  6779. "extra": {
  6780. "drupal": {
  6781. "version": "6.0.0-beta3",
  6782. "datestamp": "1632946984",
  6783. "security-coverage": {
  6784. "status": "not-covered",
  6785. "message": "Beta releases are not covered by Drupal security advisories."
  6786. }
  6787. }
  6788. },
  6789. "notification-url": "https://packages.drupal.org/8/downloads",
  6790. "license": [
  6791. "GPL-2.0-or-later"
  6792. ],
  6793. "authors": [
  6794. {
  6795. "name": "Emil Stjerneman",
  6796. "homepage": "https://stjerneman.com",
  6797. "email": "emil@stjerneman.com",
  6798. "role": "Maintainer"
  6799. },
  6800. {
  6801. "name": "johnwebdev",
  6802. "homepage": "https://www.drupal.org/user/3331569"
  6803. }
  6804. ],
  6805. "description": "Linkit - Enriched linking experience",
  6806. "homepage": "http://drupal.org/project/linkit",
  6807. "support": {
  6808. "source": "http://cgit.drupalcode.org/linkit",
  6809. "issues": "http://drupal.org/project/linkit"
  6810. }
  6811. },
  6812. {
  6813. "name": "drupal/maillog",
  6814. "version": "dev-1.x",
  6815. "source": {
  6816. "type": "git",
  6817. "url": "https://git.drupalcode.org/project/maillog.git",
  6818. "reference": "053d0b4a53aea4f848be75b02fc8974bb7b053b3"
  6819. },
  6820. "require": {
  6821. "drupal/core": "^8 || ^9"
  6822. },
  6823. "type": "drupal-module",
  6824. "extra": {
  6825. "branch-alias": {
  6826. "dev-1.x": "1.x-dev"
  6827. },
  6828. "drupal": {
  6829. "version": "8.x-1.0-beta1+0-dev",
  6830. "datestamp": "1600799873",
  6831. "security-coverage": {
  6832. "status": "not-covered",
  6833. "message": "Dev releases are not covered by Drupal security advisories."
  6834. }
  6835. }
  6836. },
  6837. "notification-url": "https://packages.drupal.org/8/downloads",
  6838. "license": [
  6839. "GPL-2.0-or-later"
  6840. ],
  6841. "authors": [
  6842. {
  6843. "name": "Berdir",
  6844. "homepage": "https://www.drupal.org/user/214652"
  6845. },
  6846. {
  6847. "name": "DamienMcKenna",
  6848. "homepage": "https://www.drupal.org/user/108450"
  6849. },
  6850. {
  6851. "name": "miro_dietiker",
  6852. "homepage": "https://www.drupal.org/user/227761"
  6853. },
  6854. {
  6855. "name": "pluess",
  6856. "homepage": "https://www.drupal.org/user/84659"
  6857. }
  6858. ],
  6859. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  6860. "homepage": "https://www.drupal.org/project/maillog",
  6861. "support": {
  6862. "source": "https://git.drupalcode.org/project/maillog"
  6863. }
  6864. },
  6865. {
  6866. "name": "drupal/mailsystem",
  6867. "version": "4.4.0",
  6868. "source": {
  6869. "type": "git",
  6870. "url": "https://git.drupalcode.org/project/mailsystem.git",
  6871. "reference": "8.x-4.4"
  6872. },
  6873. "dist": {
  6874. "type": "zip",
  6875. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.4.zip",
  6876. "reference": "8.x-4.4",
  6877. "shasum": "49b2e9efd090cdb4a282c7638b1c76d6723c47b6"
  6878. },
  6879. "require": {
  6880. "drupal/core": "^9 || ^10"
  6881. },
  6882. "type": "drupal-module",
  6883. "extra": {
  6884. "drupal": {
  6885. "version": "8.x-4.4",
  6886. "datestamp": "1657576306",
  6887. "security-coverage": {
  6888. "status": "covered",
  6889. "message": "Covered by Drupal's security advisory policy"
  6890. }
  6891. }
  6892. },
  6893. "notification-url": "https://packages.drupal.org/8/downloads",
  6894. "license": [
  6895. "GPL-2.0-or-later"
  6896. ],
  6897. "authors": [
  6898. {
  6899. "name": "Berdir",
  6900. "homepage": "https://www.drupal.org/user/214652"
  6901. },
  6902. {
  6903. "name": "Les Lim",
  6904. "homepage": "https://www.drupal.org/user/84263"
  6905. },
  6906. {
  6907. "name": "Manuel Garcia",
  6908. "homepage": "https://www.drupal.org/user/213194"
  6909. },
  6910. {
  6911. "name": "miro_dietiker",
  6912. "homepage": "https://www.drupal.org/user/227761"
  6913. },
  6914. {
  6915. "name": "Nafes",
  6916. "homepage": "https://www.drupal.org/user/2489926"
  6917. },
  6918. {
  6919. "name": "pillarsdotnet",
  6920. "homepage": "https://www.drupal.org/user/36148"
  6921. }
  6922. ],
  6923. "description": "Mail System",
  6924. "homepage": "https://www.drupal.org/project/mailsystem",
  6925. "support": {
  6926. "source": "https://git.drupalcode.org/project/mailsystem"
  6927. }
  6928. },
  6929. {
  6930. "name": "drupal/manage_display",
  6931. "version": "dev-1.x",
  6932. "source": {
  6933. "type": "git",
  6934. "url": "https://git.drupalcode.org/project/manage_display.git",
  6935. "reference": "6f1c88121e11963c361b9d4dd93827dce4d20a0d"
  6936. },
  6937. "require": {
  6938. "drupal/core": "^8.8 || ^9"
  6939. },
  6940. "type": "drupal-module",
  6941. "extra": {
  6942. "branch-alias": {
  6943. "dev-1.x": "1.x-dev"
  6944. },
  6945. "drupal": {
  6946. "version": "8.x-1.0-beta2+4-dev",
  6947. "datestamp": "1645206928",
  6948. "security-coverage": {
  6949. "status": "not-covered",
  6950. "message": "Project has not opted into security advisory coverage!"
  6951. }
  6952. }
  6953. },
  6954. "notification-url": "https://packages.drupal.org/8/downloads",
  6955. "license": [
  6956. "GPL-2.0-or-later"
  6957. ],
  6958. "authors": [
  6959. {
  6960. "name": "AdamPS",
  6961. "homepage": "https://www.drupal.org/user/2650563"
  6962. }
  6963. ],
  6964. "description": "Make base fields such as 'title' available in \"Manage Display\"",
  6965. "homepage": "https://www.drupal.org/project/manage_display",
  6966. "support": {
  6967. "source": "https://git.drupalcode.org/project/manage_display"
  6968. }
  6969. },
  6970. {
  6971. "name": "drupal/matomo",
  6972. "version": "1.22.0",
  6973. "source": {
  6974. "type": "git",
  6975. "url": "https://git.drupalcode.org/project/matomo.git",
  6976. "reference": "8.x-1.22"
  6977. },
  6978. "dist": {
  6979. "type": "zip",
  6980. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.22.zip",
  6981. "reference": "8.x-1.22",
  6982. "shasum": "b41bb83d9c0c6f8c27f72f6b1b62f691dab65a5d"
  6983. },
  6984. "require": {
  6985. "drupal/core": "^9.0 || ^10"
  6986. },
  6987. "conflict": {
  6988. "drupal/csp": "<1.12"
  6989. },
  6990. "require-dev": {
  6991. "drupal/csp": "~1.12",
  6992. "drupal/php": "~1.1",
  6993. "drupal/token": "~1.9"
  6994. },
  6995. "type": "drupal-module",
  6996. "extra": {
  6997. "drupal": {
  6998. "version": "8.x-1.22",
  6999. "datestamp": "1691004328",
  7000. "security-coverage": {
  7001. "status": "covered",
  7002. "message": "Covered by Drupal's security advisory policy"
  7003. }
  7004. }
  7005. },
  7006. "notification-url": "https://packages.drupal.org/8/downloads",
  7007. "license": [
  7008. "GPL-2.0-or-later"
  7009. ],
  7010. "authors": [
  7011. {
  7012. "name": "C-Logemann",
  7013. "homepage": "https://www.drupal.org/user/218368"
  7014. },
  7015. {
  7016. "name": "Grimreaper",
  7017. "homepage": "https://www.drupal.org/user/2388214"
  7018. },
  7019. {
  7020. "name": "hass",
  7021. "homepage": "https://www.drupal.org/user/85918"
  7022. },
  7023. {
  7024. "name": "shelane",
  7025. "homepage": "https://www.drupal.org/user/2674989"
  7026. }
  7027. ],
  7028. "description": "Adds Matomo javascript tracking code to all your site's pages.",
  7029. "homepage": "https://www.drupal.org/project/matomo",
  7030. "support": {
  7031. "source": "https://git.drupalcode.org/project/matomo"
  7032. }
  7033. },
  7034. {
  7035. "name": "drupal/maxlength",
  7036. "version": "2.0.0-rc1",
  7037. "source": {
  7038. "type": "git",
  7039. "url": "https://git.drupalcode.org/project/maxlength.git",
  7040. "reference": "2.0.0-rc1"
  7041. },
  7042. "dist": {
  7043. "type": "zip",
  7044. "url": "https://ftp.drupal.org/files/projects/maxlength-2.0.0-rc1.zip",
  7045. "reference": "2.0.0-rc1",
  7046. "shasum": "1d08a0a49b36b8593be203fc3c423dd29647fc4b"
  7047. },
  7048. "require": {
  7049. "drupal/core": "^8.8 || ^9"
  7050. },
  7051. "type": "drupal-module",
  7052. "extra": {
  7053. "drupal": {
  7054. "version": "2.0.0-rc1",
  7055. "datestamp": "1634070330",
  7056. "security-coverage": {
  7057. "status": "not-covered",
  7058. "message": "RC releases are not covered by Drupal security advisories."
  7059. }
  7060. }
  7061. },
  7062. "notification-url": "https://packages.drupal.org/8/downloads",
  7063. "license": [
  7064. "GPL-2.0-or-later"
  7065. ],
  7066. "authors": [
  7067. {
  7068. "name": "cedewey",
  7069. "homepage": "https://www.drupal.org/user/38694"
  7070. },
  7071. {
  7072. "name": "dawehner",
  7073. "homepage": "https://www.drupal.org/user/99340"
  7074. },
  7075. {
  7076. "name": "hipp2bsquare",
  7077. "homepage": "https://www.drupal.org/user/2473076"
  7078. },
  7079. {
  7080. "name": "mariuss",
  7081. "homepage": "https://www.drupal.org/user/28539"
  7082. },
  7083. {
  7084. "name": "pmichelazzo",
  7085. "homepage": "https://www.drupal.org/user/182237"
  7086. },
  7087. {
  7088. "name": "srdtwc",
  7089. "homepage": "https://www.drupal.org/user/3422763"
  7090. }
  7091. ],
  7092. "description": "Limit the number of characters in textfields and textareas and shows the amount of characters left.",
  7093. "homepage": "https://www.drupal.org/project/maxlength",
  7094. "support": {
  7095. "source": "https://git.drupalcode.org/project/maxlength"
  7096. }
  7097. },
  7098. {
  7099. "name": "drupal/menu_admin_per_menu",
  7100. "version": "1.3.0",
  7101. "source": {
  7102. "type": "git",
  7103. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  7104. "reference": "8.x-1.3"
  7105. },
  7106. "dist": {
  7107. "type": "zip",
  7108. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.3.zip",
  7109. "reference": "8.x-1.3",
  7110. "shasum": "cb967bdd9ca6f5692d670d5c7c8d77587e7fd38c"
  7111. },
  7112. "require": {
  7113. "drupal/core": "^8 || ^9"
  7114. },
  7115. "type": "drupal-module",
  7116. "extra": {
  7117. "drupal": {
  7118. "version": "8.x-1.3",
  7119. "datestamp": "1593436060",
  7120. "security-coverage": {
  7121. "status": "covered",
  7122. "message": "Covered by Drupal's security advisory policy"
  7123. }
  7124. }
  7125. },
  7126. "notification-url": "https://packages.drupal.org/8/downloads",
  7127. "license": [
  7128. "GPL-2.0-or-later"
  7129. ],
  7130. "authors": [
  7131. {
  7132. "name": "JeroenT",
  7133. "homepage": "https://www.drupal.org/user/2228934"
  7134. },
  7135. {
  7136. "name": "anrikun",
  7137. "homepage": "https://www.drupal.org/user/410199"
  7138. },
  7139. {
  7140. "name": "jonas139",
  7141. "homepage": "https://www.drupal.org/user/2873401"
  7142. },
  7143. {
  7144. "name": "mkdok",
  7145. "homepage": "https://www.drupal.org/user/3308753"
  7146. }
  7147. ],
  7148. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  7149. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  7150. "support": {
  7151. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  7152. }
  7153. },
  7154. {
  7155. "name": "drupal/menu_block",
  7156. "version": "dev-1.x",
  7157. "source": {
  7158. "type": "git",
  7159. "url": "https://git.drupalcode.org/project/menu_block.git",
  7160. "reference": "4aa56f8c8a0361eedd2319bb45044e9017ecbde4"
  7161. },
  7162. "require": {
  7163. "drupal/core": "^8 || ^9"
  7164. },
  7165. "type": "drupal-module",
  7166. "extra": {
  7167. "branch-alias": {
  7168. "dev-1.x": "1.x-dev"
  7169. },
  7170. "drupal": {
  7171. "version": "8.x-1.7+3-dev",
  7172. "datestamp": "1645240797",
  7173. "security-coverage": {
  7174. "status": "not-covered",
  7175. "message": "Dev releases are not covered by Drupal security advisories."
  7176. }
  7177. }
  7178. },
  7179. "notification-url": "https://packages.drupal.org/8/downloads",
  7180. "license": [
  7181. "GPL-2.0-or-later"
  7182. ],
  7183. "authors": [
  7184. {
  7185. "name": "Dave Reid",
  7186. "homepage": "https://www.drupal.org/user/53892"
  7187. },
  7188. {
  7189. "name": "JohnAlbin",
  7190. "homepage": "https://www.drupal.org/user/32095"
  7191. },
  7192. {
  7193. "name": "RenatoG",
  7194. "homepage": "https://www.drupal.org/user/3326031"
  7195. },
  7196. {
  7197. "name": "joelpittet",
  7198. "homepage": "https://www.drupal.org/user/160302"
  7199. },
  7200. {
  7201. "name": "kim.pepper",
  7202. "homepage": "https://www.drupal.org/user/370574"
  7203. },
  7204. {
  7205. "name": "rrrob",
  7206. "homepage": "https://www.drupal.org/user/273533"
  7207. }
  7208. ],
  7209. "description": "Provides configurable blocks of menu links.",
  7210. "homepage": "https://www.drupal.org/project/menu_block",
  7211. "support": {
  7212. "source": "https://git.drupalcode.org/project/menu_block"
  7213. }
  7214. },
  7215. {
  7216. "name": "drupal/page_manager",
  7217. "version": "dev-4.x",
  7218. "source": {
  7219. "type": "git",
  7220. "url": "https://git.drupalcode.org/project/page_manager.git",
  7221. "reference": "82d8a6d3492860b37e2d9bca9238603e4c9b549f"
  7222. },
  7223. "require": {
  7224. "drupal/core": "^8.8 || ^9",
  7225. "drupal/ctools": "^3.1"
  7226. },
  7227. "type": "drupal-module",
  7228. "extra": {
  7229. "branch-alias": {
  7230. "dev-4.x": "4.x-dev",
  7231. "dev-8.x-4.x": "4.x-dev"
  7232. },
  7233. "drupal": {
  7234. "version": "8.x-4.0-beta6+1-dev",
  7235. "datestamp": "1613459893",
  7236. "security-coverage": {
  7237. "status": "not-covered",
  7238. "message": "Project has not opted into security advisory coverage!"
  7239. }
  7240. }
  7241. },
  7242. "notification-url": "https://packages.drupal.org/8/downloads",
  7243. "license": [
  7244. "GPL-2.0-or-later"
  7245. ],
  7246. "authors": [
  7247. {
  7248. "name": "Tim Plunkett",
  7249. "homepage": "https://www.drupal.org/u/tim.plunkett",
  7250. "role": "Maintainer"
  7251. },
  7252. {
  7253. "name": "dsnopek",
  7254. "homepage": "https://www.drupal.org/user/266527"
  7255. },
  7256. {
  7257. "name": "japerry",
  7258. "homepage": "https://www.drupal.org/user/45640"
  7259. },
  7260. {
  7261. "name": "manuel.adan",
  7262. "homepage": "https://www.drupal.org/user/516420"
  7263. },
  7264. {
  7265. "name": "phenaproxima",
  7266. "homepage": "https://www.drupal.org/user/205645"
  7267. },
  7268. {
  7269. "name": "tim.plunkett",
  7270. "homepage": "https://www.drupal.org/user/241634"
  7271. }
  7272. ],
  7273. "description": "Provides a way to place blocks on a custom page.",
  7274. "homepage": "https://www.drupal.org/project/page_manager",
  7275. "support": {
  7276. "source": "https://git.drupal.org/project/page_manager.git",
  7277. "issues": "https://www.drupal.org/project/issues/page_manager",
  7278. "irc": "irc://irc.freenode.org/drupal-contribute"
  7279. }
  7280. },
  7281. {
  7282. "name": "drupal/pagerer",
  7283. "version": "2.2.0",
  7284. "source": {
  7285. "type": "git",
  7286. "url": "https://git.drupalcode.org/project/pagerer.git",
  7287. "reference": "8.x-2.2"
  7288. },
  7289. "dist": {
  7290. "type": "zip",
  7291. "url": "https://ftp.drupal.org/files/projects/pagerer-8.x-2.2.zip",
  7292. "reference": "8.x-2.2",
  7293. "shasum": "e7c8479a38df9bc9b86304e778a3be42db3fdb17"
  7294. },
  7295. "require": {
  7296. "drupal/core": "^9.2",
  7297. "drupal/jquery_ui_button": "^1.1",
  7298. "drupal/jquery_ui_slider": "^1.1"
  7299. },
  7300. "type": "drupal-module",
  7301. "extra": {
  7302. "drupal": {
  7303. "version": "8.x-2.2",
  7304. "datestamp": "1640209287",
  7305. "security-coverage": {
  7306. "status": "covered",
  7307. "message": "Covered by Drupal's security advisory policy"
  7308. }
  7309. }
  7310. },
  7311. "notification-url": "https://packages.drupal.org/8/downloads",
  7312. "license": [
  7313. "GPL-2.0-or-later"
  7314. ],
  7315. "authors": [
  7316. {
  7317. "name": "mondrake",
  7318. "homepage": "https://www.drupal.org/user/1307444"
  7319. }
  7320. ],
  7321. "description": "Configurable pager styles.",
  7322. "homepage": "https://www.drupal.org/project/pagerer",
  7323. "support": {
  7324. "source": "https://git.drupalcode.org/project/pagerer"
  7325. }
  7326. },
  7327. {
  7328. "name": "drupal/panels",
  7329. "version": "4.6.0",
  7330. "source": {
  7331. "type": "git",
  7332. "url": "https://git.drupalcode.org/project/panels.git",
  7333. "reference": "8.x-4.6"
  7334. },
  7335. "dist": {
  7336. "type": "zip",
  7337. "url": "https://ftp.drupal.org/files/projects/panels-8.x-4.6.zip",
  7338. "reference": "8.x-4.6",
  7339. "shasum": "6430436a4d8fb64f8c113729dd92505a1e46b794"
  7340. },
  7341. "require": {
  7342. "drupal/core": "^8.8 || ^9",
  7343. "drupal/ctools": ">=3.0.0",
  7344. "drupal/jquery_ui_droppable": "^1.2"
  7345. },
  7346. "require-dev": {
  7347. "drupal/jquery_ui_droppable": "*",
  7348. "drupal/page_manager": "^4"
  7349. },
  7350. "type": "drupal-module",
  7351. "extra": {
  7352. "drupal": {
  7353. "version": "8.x-4.6",
  7354. "datestamp": "1585870866",
  7355. "security-coverage": {
  7356. "status": "covered",
  7357. "message": "Covered by Drupal's security advisory policy"
  7358. }
  7359. },
  7360. "branch-alias": {
  7361. "dev-8.x-4.x": "4.x-dev"
  7362. }
  7363. },
  7364. "notification-url": "https://packages.drupal.org/8/downloads",
  7365. "license": [
  7366. "GPL-2.0+"
  7367. ],
  7368. "authors": [
  7369. {
  7370. "name": "Jakob Perry",
  7371. "homepage": "https://www.drupal.org/u/japerry"
  7372. },
  7373. {
  7374. "name": "Samuel Mortenson",
  7375. "homepage": "https://www.drupal.org/u/samuel.mortenson"
  7376. },
  7377. {
  7378. "name": "See other contributors",
  7379. "homepage": "https://www.drupal.org/node/74958/committers"
  7380. },
  7381. {
  7382. "name": "japerry",
  7383. "homepage": "https://www.drupal.org/user/45640"
  7384. },
  7385. {
  7386. "name": "joelpittet",
  7387. "homepage": "https://www.drupal.org/user/160302"
  7388. },
  7389. {
  7390. "name": "merlinofchaos",
  7391. "homepage": "https://www.drupal.org/user/26979"
  7392. },
  7393. {
  7394. "name": "neclimdul",
  7395. "homepage": "https://www.drupal.org/user/48673"
  7396. },
  7397. {
  7398. "name": "phenaproxima",
  7399. "homepage": "https://www.drupal.org/user/205645"
  7400. },
  7401. {
  7402. "name": "samuel.mortenson",
  7403. "homepage": "https://www.drupal.org/user/2582268"
  7404. },
  7405. {
  7406. "name": "tim.plunkett",
  7407. "homepage": "https://www.drupal.org/user/241634"
  7408. }
  7409. ],
  7410. "description": "Core Panels display functions; provides no external UI, at least one other Panels module should be enabled.",
  7411. "homepage": "https://www.drupal.org/project/panels",
  7412. "support": {
  7413. "source": "http://git.drupal.org/project/panels.git",
  7414. "issues": "https://www.drupal.org/project/issues/panels",
  7415. "irc": "irc://irc.freenode.org/drupal-scotch"
  7416. }
  7417. },
  7418. {
  7419. "name": "drupal/paragraphs",
  7420. "version": "dev-1.x",
  7421. "source": {
  7422. "type": "git",
  7423. "url": "https://git.drupalcode.org/project/paragraphs.git",
  7424. "reference": "d366e7a88adb2355bd0d39f8bbba7dfddd2f4e49"
  7425. },
  7426. "require": {
  7427. "drupal/core": "^8.8 || ^9",
  7428. "drupal/entity_reference_revisions": "~1.3"
  7429. },
  7430. "require-dev": {
  7431. "drupal/block_field": "~1.0",
  7432. "drupal/ctools": "3.x-dev",
  7433. "drupal/diff": "~1.0",
  7434. "drupal/entity_browser": "2.x-dev",
  7435. "drupal/entity_usage": "2.x-dev",
  7436. "drupal/field_group": "3.x-dev",
  7437. "drupal/inline_entity_form": "~1.0",
  7438. "drupal/paragraphs-paragraphs_library": "*",
  7439. "drupal/replicate": "~1.0",
  7440. "drupal/search_api": "1.x-dev",
  7441. "drupal/search_api_db": "*"
  7442. },
  7443. "suggest": {
  7444. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  7445. },
  7446. "type": "drupal-module",
  7447. "extra": {
  7448. "branch-alias": {
  7449. "dev-1.x": "1.x-dev"
  7450. },
  7451. "drupal": {
  7452. "version": "8.x-1.12+23-dev",
  7453. "datestamp": "1639568824",
  7454. "security-coverage": {
  7455. "status": "not-covered",
  7456. "message": "Dev releases are not covered by Drupal security advisories."
  7457. }
  7458. }
  7459. },
  7460. "notification-url": "https://packages.drupal.org/8/downloads",
  7461. "license": [
  7462. "GPL-2.0-or-later"
  7463. ],
  7464. "authors": [
  7465. {
  7466. "name": "Berdir",
  7467. "homepage": "https://www.drupal.org/user/214652"
  7468. },
  7469. {
  7470. "name": "Frans",
  7471. "homepage": "https://www.drupal.org/user/514222"
  7472. },
  7473. {
  7474. "name": "Primsi",
  7475. "homepage": "https://www.drupal.org/user/282629"
  7476. },
  7477. {
  7478. "name": "jeroen.b",
  7479. "homepage": "https://www.drupal.org/user/1853532"
  7480. },
  7481. {
  7482. "name": "jstoller",
  7483. "homepage": "https://www.drupal.org/user/99012"
  7484. },
  7485. {
  7486. "name": "miro_dietiker",
  7487. "homepage": "https://www.drupal.org/user/227761"
  7488. }
  7489. ],
  7490. "description": "Enables the creation of Paragraphs entities.",
  7491. "homepage": "https://www.drupal.org/project/paragraphs",
  7492. "support": {
  7493. "source": "https://git.drupalcode.org/project/paragraphs"
  7494. }
  7495. },
  7496. {
  7497. "name": "drupal/path_alias_xt",
  7498. "version": "dev-1.x",
  7499. "source": {
  7500. "type": "git",
  7501. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  7502. "reference": "10ef76dd3eb25bc1342195336291ded3f2d8cc7e"
  7503. },
  7504. "require": {
  7505. "drupal/core": "^8.7.7 || ^9"
  7506. },
  7507. "type": "drupal-module",
  7508. "extra": {
  7509. "branch-alias": {
  7510. "dev-1.x": "1.x-dev"
  7511. },
  7512. "drupal": {
  7513. "version": "8.x-1.x-dev",
  7514. "datestamp": "1590299862",
  7515. "security-coverage": {
  7516. "status": "not-covered",
  7517. "message": "Dev releases are not covered by Drupal security advisories."
  7518. }
  7519. }
  7520. },
  7521. "notification-url": "https://packages.drupal.org/8/downloads",
  7522. "license": [
  7523. "GPL-2.0-or-later"
  7524. ],
  7525. "authors": [
  7526. {
  7527. "name": "RdeBoer",
  7528. "homepage": "https://www.drupal.org/user/404007"
  7529. },
  7530. {
  7531. "name": "adriancid",
  7532. "homepage": "https://www.drupal.org/user/1962106"
  7533. },
  7534. {
  7535. "name": "sdstyles",
  7536. "homepage": "https://www.drupal.org/user/1420228"
  7537. }
  7538. ],
  7539. "description": "Automatically extend path aliases to include tabs, like <em>about-us/edit</em> for <em>node/123/edit</em>.<br> Allow these aliases to be entered in page specification wild-cards, <em>about-us*</em>, e.g for block visibility.",
  7540. "homepage": "https://www.drupal.org/project/path_alias_xt",
  7541. "support": {
  7542. "source": "https://git.drupalcode.org/project/path_alias_xt"
  7543. }
  7544. },
  7545. {
  7546. "name": "drupal/pathauto",
  7547. "version": "1.9.0",
  7548. "source": {
  7549. "type": "git",
  7550. "url": "https://git.drupalcode.org/project/pathauto.git",
  7551. "reference": "8.x-1.9"
  7552. },
  7553. "dist": {
  7554. "type": "zip",
  7555. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.9.zip",
  7556. "reference": "8.x-1.9",
  7557. "shasum": "f075ebff595c9b8b62333d65ad29020330e0ea9d"
  7558. },
  7559. "require": {
  7560. "drupal/core": "^8.8 || ^9",
  7561. "drupal/ctools": "*",
  7562. "drupal/token": "*"
  7563. },
  7564. "suggest": {
  7565. "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."
  7566. },
  7567. "type": "drupal-module",
  7568. "extra": {
  7569. "drupal": {
  7570. "version": "8.x-1.9",
  7571. "datestamp": "1644822949",
  7572. "security-coverage": {
  7573. "status": "covered",
  7574. "message": "Covered by Drupal's security advisory policy"
  7575. }
  7576. },
  7577. "drush": {
  7578. "services": {
  7579. "drush.services.yml": "^9 || ^10"
  7580. }
  7581. }
  7582. },
  7583. "notification-url": "https://packages.drupal.org/8/downloads",
  7584. "license": [
  7585. "GPL-2.0-or-later"
  7586. ],
  7587. "authors": [
  7588. {
  7589. "name": "Berdir",
  7590. "homepage": "https://www.drupal.org/user/214652"
  7591. },
  7592. {
  7593. "name": "Dave Reid",
  7594. "homepage": "https://www.drupal.org/user/53892"
  7595. },
  7596. {
  7597. "name": "Freso",
  7598. "homepage": "https://www.drupal.org/user/27504"
  7599. },
  7600. {
  7601. "name": "greggles",
  7602. "homepage": "https://www.drupal.org/user/36762"
  7603. }
  7604. ],
  7605. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  7606. "homepage": "https://www.drupal.org/project/pathauto",
  7607. "support": {
  7608. "source": "https://cgit.drupalcode.org/pathauto",
  7609. "issues": "https://www.drupal.org/project/issues/pathauto",
  7610. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  7611. }
  7612. },
  7613. {
  7614. "name": "drupal/pathologic",
  7615. "version": "1.0.0-alpha2",
  7616. "source": {
  7617. "type": "git",
  7618. "url": "https://git.drupalcode.org/project/pathologic.git",
  7619. "reference": "8.x-1.0-alpha2"
  7620. },
  7621. "dist": {
  7622. "type": "zip",
  7623. "url": "https://ftp.drupal.org/files/projects/pathologic-8.x-1.0-alpha2.zip",
  7624. "reference": "8.x-1.0-alpha2",
  7625. "shasum": "5b1b6846ab72e24a90dcd4cafbe855fba069e56b"
  7626. },
  7627. "require": {
  7628. "drupal/core": "^8 || ^9"
  7629. },
  7630. "type": "drupal-module",
  7631. "extra": {
  7632. "drupal": {
  7633. "version": "8.x-1.0-alpha2",
  7634. "datestamp": "1593911470",
  7635. "security-coverage": {
  7636. "status": "not-covered",
  7637. "message": "Alpha releases are not covered by Drupal security advisories."
  7638. }
  7639. }
  7640. },
  7641. "notification-url": "https://packages.drupal.org/8/downloads",
  7642. "license": [
  7643. "GPL-2.0-or-later"
  7644. ],
  7645. "authors": [
  7646. {
  7647. "name": "Berdir",
  7648. "homepage": "https://www.drupal.org/user/214652"
  7649. },
  7650. {
  7651. "name": "Garrett Albright",
  7652. "homepage": "https://www.drupal.org/user/191212"
  7653. },
  7654. {
  7655. "name": "dww",
  7656. "homepage": "https://www.drupal.org/user/46549"
  7657. }
  7658. ],
  7659. "description": "Helps avoid broken links and incorrect paths in content.",
  7660. "homepage": "https://www.drupal.org/project/pathologic",
  7661. "support": {
  7662. "source": "https://git.drupalcode.org/project/pathologic"
  7663. }
  7664. },
  7665. {
  7666. "name": "drupal/persistent_login",
  7667. "version": "1.3.0",
  7668. "source": {
  7669. "type": "git",
  7670. "url": "https://git.drupalcode.org/project/persistent_login.git",
  7671. "reference": "8.x-1.3"
  7672. },
  7673. "dist": {
  7674. "type": "zip",
  7675. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.3.zip",
  7676. "reference": "8.x-1.3",
  7677. "shasum": "dfff4cb76d6b3888073dd992bcf4d51b1bb47696"
  7678. },
  7679. "require": {
  7680. "drupal/core": "^8.3 || ^9.0"
  7681. },
  7682. "type": "drupal-module",
  7683. "extra": {
  7684. "drupal": {
  7685. "version": "8.x-1.3",
  7686. "datestamp": "1591597823",
  7687. "security-coverage": {
  7688. "status": "covered",
  7689. "message": "Covered by Drupal's security advisory policy"
  7690. }
  7691. }
  7692. },
  7693. "notification-url": "https://packages.drupal.org/8/downloads",
  7694. "license": [
  7695. "GPL-2.0-or-later"
  7696. ],
  7697. "authors": [
  7698. {
  7699. "name": "gapple",
  7700. "homepage": "https://www.drupal.org/user/490940"
  7701. }
  7702. ],
  7703. "description": "Provides a \"Remember Me\" feature on the login form.",
  7704. "homepage": "https://www.drupal.org/project/persistent_login",
  7705. "keywords": [
  7706. "Drupal"
  7707. ],
  7708. "support": {
  7709. "source": "https://git.drupalcode.org/project/persistent_login",
  7710. "issues": "https://www.drupal.org/project/issues/persistent_login"
  7711. }
  7712. },
  7713. {
  7714. "name": "drupal/redirect",
  7715. "version": "1.7.0",
  7716. "source": {
  7717. "type": "git",
  7718. "url": "https://git.drupalcode.org/project/redirect.git",
  7719. "reference": "8.x-1.7"
  7720. },
  7721. "dist": {
  7722. "type": "zip",
  7723. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.7.zip",
  7724. "reference": "8.x-1.7",
  7725. "shasum": "013b2541a5ef0cf423a3caa1ae89cc5866504877"
  7726. },
  7727. "require": {
  7728. "drupal/core": "^8.8 || ^9"
  7729. },
  7730. "type": "drupal-module",
  7731. "extra": {
  7732. "drupal": {
  7733. "version": "8.x-1.7",
  7734. "datestamp": "1639380488",
  7735. "security-coverage": {
  7736. "status": "covered",
  7737. "message": "Covered by Drupal's security advisory policy"
  7738. }
  7739. }
  7740. },
  7741. "notification-url": "https://packages.drupal.org/8/downloads",
  7742. "license": [
  7743. "GPL-2.0-or-later"
  7744. ],
  7745. "authors": [
  7746. {
  7747. "name": "Berdir",
  7748. "homepage": "https://www.drupal.org/user/214652"
  7749. },
  7750. {
  7751. "name": "Dave Reid",
  7752. "homepage": "https://www.drupal.org/user/53892"
  7753. },
  7754. {
  7755. "name": "pifagor",
  7756. "homepage": "https://www.drupal.org/user/2375692"
  7757. }
  7758. ],
  7759. "description": "Allows users to redirect from old URLs to new URLs.",
  7760. "homepage": "https://www.drupal.org/project/redirect",
  7761. "support": {
  7762. "source": "https://git.drupalcode.org/project/redirect"
  7763. }
  7764. },
  7765. {
  7766. "name": "drupal/redis",
  7767. "version": "1.5.0",
  7768. "source": {
  7769. "type": "git",
  7770. "url": "https://git.drupalcode.org/project/redis.git",
  7771. "reference": "8.x-1.5"
  7772. },
  7773. "dist": {
  7774. "type": "zip",
  7775. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.5.zip",
  7776. "reference": "8.x-1.5",
  7777. "shasum": "4283333dc2bf405045765b83ca662acc409a6543"
  7778. },
  7779. "require": {
  7780. "drupal/core": "^8.8 || ^9"
  7781. },
  7782. "suggest": {
  7783. "predis/predis": "^1.1.1"
  7784. },
  7785. "type": "drupal-module",
  7786. "extra": {
  7787. "drupal": {
  7788. "version": "8.x-1.5",
  7789. "datestamp": "1609972488",
  7790. "security-coverage": {
  7791. "status": "covered",
  7792. "message": "Covered by Drupal's security advisory policy"
  7793. }
  7794. }
  7795. },
  7796. "autoload": {
  7797. "psr-4": {
  7798. "Drupal\\redis\\": "src"
  7799. }
  7800. },
  7801. "notification-url": "https://packages.drupal.org/8/downloads",
  7802. "license": [
  7803. "GPL-2.0-or-later"
  7804. ],
  7805. "authors": [
  7806. {
  7807. "name": "Berdir",
  7808. "homepage": "https://www.drupal.org/user/214652"
  7809. },
  7810. {
  7811. "name": "pounard",
  7812. "homepage": "https://www.drupal.org/user/240164"
  7813. }
  7814. ],
  7815. "description": "Integration of Drupal with the Redis key-value store.",
  7816. "homepage": "https://www.drupal.org/project/redis",
  7817. "support": {
  7818. "source": "https://git.drupalcode.org/project/redis"
  7819. }
  7820. },
  7821. {
  7822. "name": "drupal/role_delegation",
  7823. "version": "1.2.0",
  7824. "source": {
  7825. "type": "git",
  7826. "url": "https://git.drupalcode.org/project/role_delegation.git",
  7827. "reference": "8.x-1.2"
  7828. },
  7829. "dist": {
  7830. "type": "zip",
  7831. "url": "https://ftp.drupal.org/files/projects/role_delegation-8.x-1.2.zip",
  7832. "reference": "8.x-1.2",
  7833. "shasum": "08095bada0f492e70d32fcf357a8c01825ca81fc"
  7834. },
  7835. "require": {
  7836. "drupal/core": "^9.2 || ^10"
  7837. },
  7838. "type": "drupal-module",
  7839. "extra": {
  7840. "drupal": {
  7841. "version": "8.x-1.2",
  7842. "datestamp": "1644486753",
  7843. "security-coverage": {
  7844. "status": "covered",
  7845. "message": "Covered by Drupal's security advisory policy"
  7846. }
  7847. }
  7848. },
  7849. "notification-url": "https://packages.drupal.org/8/downloads",
  7850. "license": [
  7851. "GPL-2.0-or-later"
  7852. ],
  7853. "authors": [
  7854. {
  7855. "name": "Jeroen Tubex",
  7856. "homepage": "https://www.drupal.org/u/jeroent",
  7857. "role": "Maintainer"
  7858. },
  7859. {
  7860. "name": "benjy",
  7861. "homepage": "https://www.drupal.org/user/1852732"
  7862. }
  7863. ],
  7864. "description": "Allows site administrators to grant some roles the authority to assign selected roles to users.",
  7865. "homepage": "http://drupal.org/project/role_delegation",
  7866. "support": {
  7867. "source": "https://git.drupalcode.org/project/role_delegation",
  7868. "issues": "http://drupal.org/project/role_delegation"
  7869. }
  7870. },
  7871. {
  7872. "name": "drupal/search_api",
  7873. "version": "1.30.0",
  7874. "source": {
  7875. "type": "git",
  7876. "url": "https://git.drupalcode.org/project/search_api.git",
  7877. "reference": "8.x-1.30"
  7878. },
  7879. "dist": {
  7880. "type": "zip",
  7881. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.30.zip",
  7882. "reference": "8.x-1.30",
  7883. "shasum": "25bd2cfab6a6332c595fbc8be1c4cfff33a85ce8"
  7884. },
  7885. "require": {
  7886. "drupal/core": "^9.3 || ^10.0"
  7887. },
  7888. "conflict": {
  7889. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  7890. },
  7891. "require-dev": {
  7892. "drupal/language_fallback_fix": "@dev",
  7893. "drupal/search_api_autocomplete": "@dev",
  7894. "drupal/search_api_db": "*"
  7895. },
  7896. "suggest": {
  7897. "drupal/facets": "Adds the ability to create faceted searches.",
  7898. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  7899. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  7900. },
  7901. "type": "drupal-module",
  7902. "extra": {
  7903. "drupal": {
  7904. "version": "8.x-1.30",
  7905. "datestamp": "1700925904",
  7906. "security-coverage": {
  7907. "status": "covered",
  7908. "message": "Covered by Drupal's security advisory policy"
  7909. }
  7910. },
  7911. "drush": {
  7912. "services": {
  7913. "drush.services.yml": "^9 || ^10 || ^11"
  7914. }
  7915. }
  7916. },
  7917. "notification-url": "https://packages.drupal.org/8/downloads",
  7918. "license": [
  7919. "GPL-2.0-or-later"
  7920. ],
  7921. "authors": [
  7922. {
  7923. "name": "Thomas Seidl",
  7924. "homepage": "https://www.drupal.org/u/drunken-monkey"
  7925. },
  7926. {
  7927. "name": "Nick Veenhof",
  7928. "homepage": "https://www.drupal.org/u/nick_vh"
  7929. },
  7930. {
  7931. "name": "See other contributors",
  7932. "homepage": "https://www.drupal.org/node/790418/committers"
  7933. }
  7934. ],
  7935. "description": "Provides a generic framework for modules offering search capabilities.",
  7936. "homepage": "https://www.drupal.org/project/search_api",
  7937. "support": {
  7938. "source": "https://git.drupalcode.org/project/search_api",
  7939. "issues": "https://www.drupal.org/project/issues/search_api",
  7940. "irc": "irc://irc.freenode.org/drupal-search-api"
  7941. }
  7942. },
  7943. {
  7944. "name": "drupal/search_api_db",
  7945. "version": "1.23.0",
  7946. "require": {
  7947. "drupal/core": "^8.8 || ^9",
  7948. "drupal/search_api": "*"
  7949. },
  7950. "type": "metapackage",
  7951. "extra": {
  7952. "drupal": {
  7953. "version": "8.x-1.23",
  7954. "datestamp": "1642935837",
  7955. "security-coverage": {
  7956. "status": "covered",
  7957. "message": "Covered by Drupal's security advisory policy"
  7958. }
  7959. }
  7960. },
  7961. "notification-url": "https://packages.drupal.org/8/downloads",
  7962. "license": [
  7963. "GPL-2.0-or-later"
  7964. ],
  7965. "authors": [
  7966. {
  7967. "name": "Nick_vh",
  7968. "homepage": "https://www.drupal.org/user/122682"
  7969. },
  7970. {
  7971. "name": "borisson_",
  7972. "homepage": "https://www.drupal.org/user/2393360"
  7973. },
  7974. {
  7975. "name": "drunken monkey",
  7976. "homepage": "https://www.drupal.org/user/205582"
  7977. }
  7978. ],
  7979. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  7980. "homepage": "https://www.drupal.org/project/search_api",
  7981. "support": {
  7982. "source": "https://git.drupalcode.org/project/search_api"
  7983. }
  7984. },
  7985. {
  7986. "name": "drupal/slick",
  7987. "version": "2.9.0",
  7988. "source": {
  7989. "type": "git",
  7990. "url": "https://git.drupalcode.org/project/slick.git",
  7991. "reference": "8.x-2.9"
  7992. },
  7993. "dist": {
  7994. "type": "zip",
  7995. "url": "https://ftp.drupal.org/files/projects/slick-8.x-2.9.zip",
  7996. "reference": "8.x-2.9",
  7997. "shasum": "1c2cec19148a096f875390e2fd6a9e56caf5bacd"
  7998. },
  7999. "require": {
  8000. "drupal/blazy": ">=2.14",
  8001. "drupal/core": "^8.8 || ^9 || ^10"
  8002. },
  8003. "type": "drupal-module",
  8004. "extra": {
  8005. "drupal": {
  8006. "version": "8.x-2.9",
  8007. "datestamp": "1685789618",
  8008. "security-coverage": {
  8009. "status": "covered",
  8010. "message": "Covered by Drupal's security advisory policy"
  8011. }
  8012. }
  8013. },
  8014. "notification-url": "https://packages.drupal.org/8/downloads",
  8015. "license": [
  8016. "GPL-2.0-or-later"
  8017. ],
  8018. "authors": [
  8019. {
  8020. "name": "Contributors",
  8021. "homepage": "https://www.drupal.org/node/2232779/committers",
  8022. "role": "Contributors"
  8023. },
  8024. {
  8025. "name": "shadcn",
  8026. "homepage": "https://www.drupal.org/user/571032"
  8027. },
  8028. {
  8029. "name": "thalles",
  8030. "homepage": "https://www.drupal.org/user/3589086"
  8031. }
  8032. ],
  8033. "description": "Slick carousel, the last carousel you'll ever need.",
  8034. "homepage": "https://drupal.org/project/slick",
  8035. "keywords": [
  8036. "Drupal",
  8037. "carousel",
  8038. "slideshow"
  8039. ],
  8040. "support": {
  8041. "source": "https://git.drupalcode.org/project/slick",
  8042. "issues": "https://drupal.org/project/issues/slick"
  8043. }
  8044. },
  8045. {
  8046. "name": "drupal/smart_trim",
  8047. "version": "2.1.0",
  8048. "source": {
  8049. "type": "git",
  8050. "url": "https://git.drupalcode.org/project/smart_trim.git",
  8051. "reference": "2.1.0"
  8052. },
  8053. "dist": {
  8054. "type": "zip",
  8055. "url": "https://ftp.drupal.org/files/projects/smart_trim-2.1.0.zip",
  8056. "reference": "2.1.0",
  8057. "shasum": "874b4cbddc4833f1b9adc76a8398377903fd73ee"
  8058. },
  8059. "require": {
  8060. "drupal/core": "^8 || ^9 || ^10",
  8061. "drupal/token": "^1.0",
  8062. "php": ">=7.4.0"
  8063. },
  8064. "require-dev": {
  8065. "drupal/token_filter": "^2.0"
  8066. },
  8067. "type": "drupal-module",
  8068. "extra": {
  8069. "drupal": {
  8070. "version": "2.1.0",
  8071. "datestamp": "1686152417",
  8072. "security-coverage": {
  8073. "status": "covered",
  8074. "message": "Covered by Drupal's security advisory policy"
  8075. }
  8076. }
  8077. },
  8078. "notification-url": "https://packages.drupal.org/8/downloads",
  8079. "license": [
  8080. "GPL-2.0-or-later"
  8081. ],
  8082. "authors": [
  8083. {
  8084. "name": "Mark Casias (markie)",
  8085. "homepage": "https://www.drupal.org/u/markie",
  8086. "role": "Maintainer"
  8087. },
  8088. {
  8089. "name": "AmyJune Hineline (volkswagenchick)",
  8090. "homepage": "https://www.drupal.org/u/volkswagenchick",
  8091. "role": "Maintainer"
  8092. },
  8093. {
  8094. "name": "Michael Anello (ultimike)",
  8095. "homepage": "https://www.drupal.org/u/ultimike",
  8096. "role": "Maintainer"
  8097. }
  8098. ],
  8099. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  8100. "homepage": "https://drupal.org/project/smart_trim",
  8101. "support": {
  8102. "source": "https://git.drupalcode.org/project/smart_trim",
  8103. "issues": "https://drupal.org/project/issues/smart_trim"
  8104. }
  8105. },
  8106. {
  8107. "name": "drupal/smtp",
  8108. "version": "1.0.0",
  8109. "source": {
  8110. "type": "git",
  8111. "url": "https://git.drupalcode.org/project/smtp.git",
  8112. "reference": "8.x-1.0"
  8113. },
  8114. "dist": {
  8115. "type": "zip",
  8116. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.0.zip",
  8117. "reference": "8.x-1.0",
  8118. "shasum": "c40cc7a3c20d3f743e3a4e53f4cc296748da89fd"
  8119. },
  8120. "require": {
  8121. "drupal/core": "^8.8 || ^9",
  8122. "phpmailer/phpmailer": "^6.1.7"
  8123. },
  8124. "suggest": {
  8125. "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
  8126. },
  8127. "type": "drupal-module",
  8128. "extra": {
  8129. "drupal": {
  8130. "version": "8.x-1.0",
  8131. "datestamp": "1601070985",
  8132. "security-coverage": {
  8133. "status": "covered",
  8134. "message": "Covered by Drupal's security advisory policy"
  8135. }
  8136. },
  8137. "branch-alias": {
  8138. "dev-8.x-1.x": "1.x-dev"
  8139. }
  8140. },
  8141. "notification-url": "https://packages.drupal.org/8/downloads",
  8142. "license": [
  8143. "GPL-2.0-or-later"
  8144. ],
  8145. "authors": [
  8146. {
  8147. "name": "LukeLast",
  8148. "homepage": "https://www.drupal.org/user/30151"
  8149. },
  8150. {
  8151. "name": "japerry",
  8152. "homepage": "https://www.drupal.org/user/45640"
  8153. },
  8154. {
  8155. "name": "josesanmartin",
  8156. "homepage": "https://www.drupal.org/user/72012"
  8157. },
  8158. {
  8159. "name": "oadaeh",
  8160. "homepage": "https://www.drupal.org/user/4649"
  8161. },
  8162. {
  8163. "name": "sadashiv",
  8164. "homepage": "https://www.drupal.org/user/1773304"
  8165. },
  8166. {
  8167. "name": "wundo",
  8168. "homepage": "https://www.drupal.org/user/25523"
  8169. },
  8170. {
  8171. "name": "yettyn",
  8172. "homepage": "https://www.drupal.org/user/93281"
  8173. }
  8174. ],
  8175. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  8176. "homepage": "https://www.drupal.org/project/smtp",
  8177. "support": {
  8178. "source": "https://git.drupalcode.org/project/smtp",
  8179. "issues": "https://www.drupal.org/project/issues/smtp"
  8180. }
  8181. },
  8182. {
  8183. "name": "drupal/structure_sync",
  8184. "version": "2.0.2",
  8185. "source": {
  8186. "type": "git",
  8187. "url": "https://git.drupalcode.org/project/structure_sync.git",
  8188. "reference": "2.0.2"
  8189. },
  8190. "dist": {
  8191. "type": "zip",
  8192. "url": "https://ftp.drupal.org/files/projects/structure_sync-2.0.2.zip",
  8193. "reference": "2.0.2",
  8194. "shasum": "7c1cda02629cdd90113b95de2d353e8d5a7aa90e"
  8195. },
  8196. "require": {
  8197. "drupal/core": "^8 || ^9"
  8198. },
  8199. "type": "drupal-module",
  8200. "extra": {
  8201. "drupal": {
  8202. "version": "2.0.2",
  8203. "datestamp": "1614096703",
  8204. "security-coverage": {
  8205. "status": "covered",
  8206. "message": "Covered by Drupal's security advisory policy"
  8207. }
  8208. }
  8209. },
  8210. "notification-url": "https://packages.drupal.org/8/downloads",
  8211. "license": [
  8212. "GPL-2.0-or-later"
  8213. ],
  8214. "authors": [
  8215. {
  8216. "name": "colan",
  8217. "homepage": "https://www.drupal.org/user/58704"
  8218. },
  8219. {
  8220. "name": "fidovdbos",
  8221. "homepage": "https://www.drupal.org/user/1494332"
  8222. },
  8223. {
  8224. "name": "joachim",
  8225. "homepage": "https://www.drupal.org/user/107701"
  8226. },
  8227. {
  8228. "name": "legolasbo",
  8229. "homepage": "https://www.drupal.org/user/2480548"
  8230. },
  8231. {
  8232. "name": "mparker17",
  8233. "homepage": "https://www.drupal.org/user/536298"
  8234. },
  8235. {
  8236. "name": "spiderman",
  8237. "homepage": "https://www.drupal.org/user/1631"
  8238. },
  8239. {
  8240. "name": "timKruijsen",
  8241. "homepage": "https://www.drupal.org/user/3513437"
  8242. },
  8243. {
  8244. "name": "vinlaurens",
  8245. "homepage": "https://www.drupal.org/user/2945689"
  8246. }
  8247. ],
  8248. "description": "Tool for syncing structural data that is stored as content.",
  8249. "homepage": "https://www.drupal.org/project/structure_sync",
  8250. "support": {
  8251. "source": "https://git.drupalcode.org/project/structure_sync"
  8252. }
  8253. },
  8254. {
  8255. "name": "drupal/synonyms",
  8256. "version": "2.1.0",
  8257. "source": {
  8258. "type": "git",
  8259. "url": "https://git.drupalcode.org/project/synonyms.git",
  8260. "reference": "2.1.0"
  8261. },
  8262. "dist": {
  8263. "type": "zip",
  8264. "url": "https://ftp.drupal.org/files/projects/synonyms-2.1.0.zip",
  8265. "reference": "2.1.0",
  8266. "shasum": "8b2c28b864e4012fce184cc8acc914276b3b40cd"
  8267. },
  8268. "require": {
  8269. "drupal/core": "^9 || ^10"
  8270. },
  8271. "require-dev": {
  8272. "drupal/synonyms_list_field": "*"
  8273. },
  8274. "type": "drupal-module",
  8275. "extra": {
  8276. "drupal": {
  8277. "version": "2.1.0",
  8278. "datestamp": "1641244507",
  8279. "security-coverage": {
  8280. "status": "covered",
  8281. "message": "Covered by Drupal's security advisory policy"
  8282. }
  8283. }
  8284. },
  8285. "notification-url": "https://packages.drupal.org/8/downloads",
  8286. "license": [
  8287. "GPL-2.0-or-later"
  8288. ],
  8289. "authors": [
  8290. {
  8291. "name": "Bojan Zivanovic",
  8292. "homepage": "https://www.drupal.org/u/bojanz",
  8293. "role": "Author and D5, D6 and D7 versions developer."
  8294. },
  8295. {
  8296. "name": "Alex Trosenko",
  8297. "homepage": "https://www.drupal.org/u/bucefal91",
  8298. "role": "D7 and D8 versions developer."
  8299. },
  8300. {
  8301. "name": "Duro Arezina",
  8302. "homepage": "https://www.drupal.org/u/devad",
  8303. "role": "D8, D9 and D10 versions maintenance"
  8304. },
  8305. {
  8306. "name": "See other contributors",
  8307. "homepage": "https://www.drupal.org/node/148775/committers"
  8308. }
  8309. ],
  8310. "description": "Provides synonyms feature for all entities.",
  8311. "homepage": "https://www.drupal.org/project/synonyms",
  8312. "support": {
  8313. "source": "https://git.drupalcode.org/project/synonyms",
  8314. "issues": "https://www.drupal.org/project/issues/synonyms"
  8315. }
  8316. },
  8317. {
  8318. "name": "drupal/token",
  8319. "version": "1.13.0",
  8320. "source": {
  8321. "type": "git",
  8322. "url": "https://git.drupalcode.org/project/token.git",
  8323. "reference": "8.x-1.13"
  8324. },
  8325. "dist": {
  8326. "type": "zip",
  8327. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.13.zip",
  8328. "reference": "8.x-1.13",
  8329. "shasum": "f2a074b51726de3727c1d900237d6d471806a4d2"
  8330. },
  8331. "require": {
  8332. "drupal/core": "^9.2 || ^10"
  8333. },
  8334. "type": "drupal-module",
  8335. "extra": {
  8336. "drupal": {
  8337. "version": "8.x-1.13",
  8338. "datestamp": "1697885927",
  8339. "security-coverage": {
  8340. "status": "covered",
  8341. "message": "Covered by Drupal's security advisory policy"
  8342. }
  8343. },
  8344. "drush": {
  8345. "services": {
  8346. "drush.services.yml": ">=9"
  8347. }
  8348. }
  8349. },
  8350. "notification-url": "https://packages.drupal.org/8/downloads",
  8351. "license": [
  8352. "GPL-2.0-or-later"
  8353. ],
  8354. "authors": [
  8355. {
  8356. "name": "Berdir",
  8357. "homepage": "https://www.drupal.org/user/214652"
  8358. },
  8359. {
  8360. "name": "Dave Reid",
  8361. "homepage": "https://www.drupal.org/user/53892"
  8362. },
  8363. {
  8364. "name": "eaton",
  8365. "homepage": "https://www.drupal.org/user/16496"
  8366. },
  8367. {
  8368. "name": "fago",
  8369. "homepage": "https://www.drupal.org/user/16747"
  8370. },
  8371. {
  8372. "name": "greggles",
  8373. "homepage": "https://www.drupal.org/user/36762"
  8374. },
  8375. {
  8376. "name": "mikeryan",
  8377. "homepage": "https://www.drupal.org/user/4420"
  8378. }
  8379. ],
  8380. "description": "Provides a user interface for the Token API, some missing core tokens.",
  8381. "homepage": "https://www.drupal.org/project/token",
  8382. "support": {
  8383. "source": "https://git.drupalcode.org/project/token"
  8384. }
  8385. },
  8386. {
  8387. "name": "drupal/translation_views",
  8388. "version": "1.0.0-alpha10",
  8389. "source": {
  8390. "type": "git",
  8391. "url": "https://git.drupalcode.org/project/translation_views.git",
  8392. "reference": "8.x-1.0-alpha10"
  8393. },
  8394. "dist": {
  8395. "type": "zip",
  8396. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha10.zip",
  8397. "reference": "8.x-1.0-alpha10",
  8398. "shasum": "ca1a6d4bf16293b1b094db6439f9f065de1dbbd5"
  8399. },
  8400. "require": {
  8401. "drupal/core": "^8.8 || ^9"
  8402. },
  8403. "require-dev": {
  8404. "drupal/translators": "*",
  8405. "drupal/translators_content": "*"
  8406. },
  8407. "type": "drupal-module",
  8408. "extra": {
  8409. "drupal": {
  8410. "version": "8.x-1.0-alpha10",
  8411. "datestamp": "1584303687",
  8412. "security-coverage": {
  8413. "status": "not-covered",
  8414. "message": "Project has not opted into security advisory coverage!"
  8415. }
  8416. }
  8417. },
  8418. "notification-url": "https://packages.drupal.org/8/downloads",
  8419. "license": [
  8420. "GPL-2.0-or-later"
  8421. ],
  8422. "authors": [
  8423. {
  8424. "name": "matsbla",
  8425. "homepage": "https://www.drupal.org/user/2325394"
  8426. },
  8427. {
  8428. "name": "vlad.dancer",
  8429. "homepage": "https://www.drupal.org/user/903844"
  8430. }
  8431. ],
  8432. "description": "Create customized lists and queries of translations from your database.",
  8433. "homepage": "https://www.drupal.org/project/translation_views",
  8434. "support": {
  8435. "source": "https://git.drupalcode.org/project/translation_views"
  8436. }
  8437. },
  8438. {
  8439. "name": "drupal/ultimate_cron",
  8440. "version": "2.0.0-beta1",
  8441. "source": {
  8442. "type": "git",
  8443. "url": "https://git.drupalcode.org/project/ultimate_cron.git",
  8444. "reference": "8.x-2.0-beta1"
  8445. },
  8446. "dist": {
  8447. "type": "zip",
  8448. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-beta1.zip",
  8449. "reference": "8.x-2.0-beta1",
  8450. "shasum": "f3408d1a2734f2a13b341f8aeb131eb5cbef3e90"
  8451. },
  8452. "require": {
  8453. "drupal/core": "^9.3 || ^10.1 || ^11"
  8454. },
  8455. "type": "drupal-module",
  8456. "extra": {
  8457. "drupal": {
  8458. "version": "8.x-2.0-beta1",
  8459. "datestamp": "1732830342",
  8460. "security-coverage": {
  8461. "status": "not-covered",
  8462. "message": "Beta releases are not covered by Drupal security advisories."
  8463. }
  8464. },
  8465. "drush": {
  8466. "services": {
  8467. "drush.services.yml": "^10 || ^11 || ^12 || ^13"
  8468. }
  8469. }
  8470. },
  8471. "notification-url": "https://packages.drupal.org/8/downloads",
  8472. "license": [
  8473. "GPL-2.0+"
  8474. ],
  8475. "authors": [
  8476. {
  8477. "name": "arnested",
  8478. "homepage": "https://www.drupal.org/user/245635"
  8479. },
  8480. {
  8481. "name": "berdir",
  8482. "homepage": "https://www.drupal.org/user/214652"
  8483. },
  8484. {
  8485. "name": "gielfeldt",
  8486. "homepage": "https://www.drupal.org/user/366993"
  8487. },
  8488. {
  8489. "name": "miro_dietiker",
  8490. "homepage": "https://www.drupal.org/user/227761"
  8491. },
  8492. {
  8493. "name": "primsi",
  8494. "homepage": "https://www.drupal.org/user/282629"
  8495. }
  8496. ],
  8497. "description": "Ultimate cron",
  8498. "homepage": "https://www.drupal.org/project/ultimate_cron",
  8499. "support": {
  8500. "source": "https://git.drupalcode.org/project/ultimate_cron"
  8501. }
  8502. },
  8503. {
  8504. "name": "drupal/upgrade_status",
  8505. "version": "4.3.8",
  8506. "source": {
  8507. "type": "git",
  8508. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  8509. "reference": "4.3.8"
  8510. },
  8511. "dist": {
  8512. "type": "zip",
  8513. "url": "https://ftp.drupal.org/files/projects/upgrade_status-4.3.8.zip",
  8514. "reference": "4.3.8",
  8515. "shasum": "4526741f6d0991f2165d4d79c8830602f5ac8bca"
  8516. },
  8517. "require": {
  8518. "dekor/php-array-table": "^2.0",
  8519. "drupal/core": "^9 || ^10 || ^11",
  8520. "mglaman/phpstan-drupal": "^1.2.11|^2.0",
  8521. "nikic/php-parser": "^4.0.0|^5.0.0",
  8522. "phpstan/phpstan-deprecation-rules": "^1.0.0|^2.0",
  8523. "symfony/process": "^3.4|^4.0|^5.0|^6.0|^7.0",
  8524. "webflo/drupal-finder": "^1.2"
  8525. },
  8526. "require-dev": {
  8527. "drush/drush": "^11|^12|^13"
  8528. },
  8529. "type": "drupal-module",
  8530. "extra": {
  8531. "drupal": {
  8532. "version": "4.3.8",
  8533. "datestamp": "1751485112",
  8534. "security-coverage": {
  8535. "status": "covered",
  8536. "message": "Covered by Drupal's security advisory policy"
  8537. }
  8538. },
  8539. "drush": {
  8540. "services": {
  8541. "drush.services.yml": "^9 || ^10"
  8542. }
  8543. }
  8544. },
  8545. "notification-url": "https://packages.drupal.org/8/downloads",
  8546. "license": [
  8547. "GPL-2.0-or-later"
  8548. ],
  8549. "authors": [
  8550. {
  8551. "name": "gábor hojtsy",
  8552. "homepage": "https://www.drupal.org/user/4166"
  8553. }
  8554. ],
  8555. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  8556. "homepage": "http://drupal.org/project/upgrade_status",
  8557. "support": {
  8558. "source": "https://git.drupalcode.org/project/upgrade_status"
  8559. }
  8560. },
  8561. {
  8562. "name": "drupal/url_to_video_filter",
  8563. "version": "2.0.0",
  8564. "source": {
  8565. "type": "git",
  8566. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  8567. "reference": "2.0.0"
  8568. },
  8569. "dist": {
  8570. "type": "zip",
  8571. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-2.0.0.zip",
  8572. "reference": "2.0.0",
  8573. "shasum": "ac728919cc220846d8ef2ce61dbe1b94fbbf479b"
  8574. },
  8575. "require": {
  8576. "drupal/core": "^8 || ^9"
  8577. },
  8578. "type": "drupal-module",
  8579. "extra": {
  8580. "drupal": {
  8581. "version": "2.0.0",
  8582. "datestamp": "1607298389",
  8583. "security-coverage": {
  8584. "status": "covered",
  8585. "message": "Covered by Drupal's security advisory policy"
  8586. }
  8587. }
  8588. },
  8589. "notification-url": "https://packages.drupal.org/8/downloads",
  8590. "license": [
  8591. "GPL-2.0-or-later"
  8592. ],
  8593. "authors": [
  8594. {
  8595. "name": "Jaypan",
  8596. "homepage": "https://www.drupal.org/user/324696"
  8597. }
  8598. ],
  8599. "description": "Text filter to convert URLs to embedded videos",
  8600. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  8601. "support": {
  8602. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  8603. }
  8604. },
  8605. {
  8606. "name": "drupal/video_embed_dailymotion",
  8607. "version": "2.0.0",
  8608. "source": {
  8609. "type": "git",
  8610. "url": "https://git.drupalcode.org/project/video_embed_dailymotion.git",
  8611. "reference": "2.0.0"
  8612. },
  8613. "dist": {
  8614. "type": "zip",
  8615. "url": "https://ftp.drupal.org/files/projects/video_embed_dailymotion-2.0.0.zip",
  8616. "reference": "2.0.0",
  8617. "shasum": "60832daca1cbe857bab778e547cb1aa359d2bd1d"
  8618. },
  8619. "require": {
  8620. "drupal/core": "^9 || ^10",
  8621. "drupal/video_embed_field": "*"
  8622. },
  8623. "type": "drupal-module",
  8624. "extra": {
  8625. "drupal": {
  8626. "version": "2.0.0",
  8627. "datestamp": "1699434830",
  8628. "security-coverage": {
  8629. "status": "covered",
  8630. "message": "Covered by Drupal's security advisory policy"
  8631. }
  8632. }
  8633. },
  8634. "notification-url": "https://packages.drupal.org/8/downloads",
  8635. "license": [
  8636. "GPL-2.0-or-later"
  8637. ],
  8638. "authors": [
  8639. {
  8640. "name": "flocondetoile",
  8641. "homepage": "https://www.drupal.org/user/2006064"
  8642. },
  8643. {
  8644. "name": "mohs3n71",
  8645. "homepage": "https://www.drupal.org/user/2295854"
  8646. },
  8647. {
  8648. "name": "Sam152",
  8649. "homepage": "https://www.drupal.org/user/1485048"
  8650. }
  8651. ],
  8652. "description": "A video_embed_field integration with Dailymotion.",
  8653. "homepage": "https://www.drupal.org/project/video_embed_dailymotion",
  8654. "support": {
  8655. "source": "https://git.drupalcode.org/project/video_embed_dailymotion"
  8656. }
  8657. },
  8658. {
  8659. "name": "drupal/video_embed_field",
  8660. "version": "2.4.0",
  8661. "source": {
  8662. "type": "git",
  8663. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  8664. "reference": "8.x-2.4"
  8665. },
  8666. "dist": {
  8667. "type": "zip",
  8668. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.4.zip",
  8669. "reference": "8.x-2.4",
  8670. "shasum": "96b14bb93c1bb6a07b84315a4f87367870f8b574"
  8671. },
  8672. "require": {
  8673. "drupal/core": "^8.8 || ^9"
  8674. },
  8675. "require-dev": {
  8676. "drupal/colorbox": "^1.0",
  8677. "drupal/video_embed_media": "*"
  8678. },
  8679. "type": "drupal-module",
  8680. "extra": {
  8681. "drupal": {
  8682. "version": "8.x-2.4",
  8683. "datestamp": "1587686337",
  8684. "security-coverage": {
  8685. "status": "covered",
  8686. "message": "Covered by Drupal's security advisory policy"
  8687. }
  8688. }
  8689. },
  8690. "notification-url": "https://packages.drupal.org/8/downloads",
  8691. "license": [
  8692. "GPL-2.0+"
  8693. ],
  8694. "authors": [
  8695. {
  8696. "name": "Sam152",
  8697. "homepage": "https://www.drupal.org/user/1485048"
  8698. },
  8699. {
  8700. "name": "jec006",
  8701. "homepage": "https://www.drupal.org/user/855980"
  8702. },
  8703. {
  8704. "name": "plopesc",
  8705. "homepage": "https://www.drupal.org/user/282415"
  8706. }
  8707. ],
  8708. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  8709. "homepage": "https://www.drupal.org/project/video_embed_field",
  8710. "support": {
  8711. "source": "https://git.drupalcode.org/project/video_embed_field"
  8712. }
  8713. },
  8714. {
  8715. "name": "drupal/views_bulk_edit",
  8716. "version": "2.9.0",
  8717. "source": {
  8718. "type": "git",
  8719. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  8720. "reference": "8.x-2.9"
  8721. },
  8722. "dist": {
  8723. "type": "zip",
  8724. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.9.zip",
  8725. "reference": "8.x-2.9",
  8726. "shasum": "db45a8cc9ac629859374b24974eafcef257e4387"
  8727. },
  8728. "require": {
  8729. "drupal/core": "^9.4 || ^10"
  8730. },
  8731. "require-dev": {
  8732. "drupal/views_bulk_operations": "~4.2.4"
  8733. },
  8734. "suggest": {
  8735. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  8736. },
  8737. "type": "drupal-module",
  8738. "extra": {
  8739. "drupal": {
  8740. "version": "8.x-2.9",
  8741. "datestamp": "1690222256",
  8742. "security-coverage": {
  8743. "status": "covered",
  8744. "message": "Covered by Drupal's security advisory policy"
  8745. }
  8746. }
  8747. },
  8748. "notification-url": "https://packages.drupal.org/8/downloads",
  8749. "license": [
  8750. "GPL-2.0+"
  8751. ],
  8752. "authors": [
  8753. {
  8754. "name": "Marcin Grabias",
  8755. "homepage": "https://www.drupal.org/u/graber"
  8756. },
  8757. {
  8758. "name": "Graber",
  8759. "homepage": "https://www.drupal.org/user/1599440"
  8760. },
  8761. {
  8762. "name": "joseph.olstad",
  8763. "homepage": "https://www.drupal.org/user/1321830"
  8764. }
  8765. ],
  8766. "description": "Allows bulk edition of entity field values.",
  8767. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  8768. "support": {
  8769. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  8770. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  8771. }
  8772. },
  8773. {
  8774. "name": "drupal/views_bulk_operations",
  8775. "version": "4.2.5",
  8776. "source": {
  8777. "type": "git",
  8778. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  8779. "reference": "4.2.5"
  8780. },
  8781. "dist": {
  8782. "type": "zip",
  8783. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.2.5.zip",
  8784. "reference": "4.2.5",
  8785. "shasum": "220479c5187b1619d5703f64c6f8c272afecf897"
  8786. },
  8787. "require": {
  8788. "drupal/core": "^9.4 || ^10",
  8789. "php": ">=7.4.0"
  8790. },
  8791. "require-dev": {
  8792. "drush/drush": "^11"
  8793. },
  8794. "suggest": {
  8795. "drush/drush": "^10 || ^11"
  8796. },
  8797. "type": "drupal-module",
  8798. "extra": {
  8799. "drupal": {
  8800. "version": "4.2.5",
  8801. "datestamp": "1691066184",
  8802. "security-coverage": {
  8803. "status": "covered",
  8804. "message": "Covered by Drupal's security advisory policy"
  8805. }
  8806. },
  8807. "drush": {
  8808. "services": {
  8809. "drush.services.yml": "^10 || ^11"
  8810. }
  8811. }
  8812. },
  8813. "notification-url": "https://packages.drupal.org/8/downloads",
  8814. "license": [
  8815. "GPL-2.0-or-later"
  8816. ],
  8817. "authors": [
  8818. {
  8819. "name": "Marcin Grabias",
  8820. "homepage": "https://www.drupal.org/u/graber"
  8821. },
  8822. {
  8823. "name": "Graber",
  8824. "homepage": "https://www.drupal.org/user/1599440"
  8825. },
  8826. {
  8827. "name": "joelpittet",
  8828. "homepage": "https://www.drupal.org/user/160302"
  8829. }
  8830. ],
  8831. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  8832. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  8833. "support": {
  8834. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  8835. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  8836. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  8837. }
  8838. },
  8839. {
  8840. "name": "drupal/views_conditional",
  8841. "version": "1.5.0",
  8842. "source": {
  8843. "type": "git",
  8844. "url": "https://git.drupalcode.org/project/views_conditional.git",
  8845. "reference": "8.x-1.5"
  8846. },
  8847. "dist": {
  8848. "type": "zip",
  8849. "url": "https://ftp.drupal.org/files/projects/views_conditional-8.x-1.5.zip",
  8850. "reference": "8.x-1.5",
  8851. "shasum": "bb7d13abc0919e01933152002b0bf4189e5e2d1a"
  8852. },
  8853. "require": {
  8854. "drupal/core": "^9 || ^10"
  8855. },
  8856. "type": "drupal-module",
  8857. "extra": {
  8858. "drupal": {
  8859. "version": "8.x-1.5",
  8860. "datestamp": "1659989912",
  8861. "security-coverage": {
  8862. "status": "covered",
  8863. "message": "Covered by Drupal's security advisory policy"
  8864. }
  8865. }
  8866. },
  8867. "notification-url": "https://packages.drupal.org/8/downloads",
  8868. "license": [
  8869. "GPL-2.0-or-later"
  8870. ],
  8871. "authors": [
  8872. {
  8873. "name": "anand.toshniwal93",
  8874. "homepage": "https://www.drupal.org/user/3345088"
  8875. },
  8876. {
  8877. "name": "MChittenden",
  8878. "homepage": "https://www.drupal.org/user/2288348"
  8879. },
  8880. {
  8881. "name": "ofry",
  8882. "homepage": "https://www.drupal.org/user/2740599"
  8883. },
  8884. {
  8885. "name": "shelane",
  8886. "homepage": "https://www.drupal.org/user/2674989"
  8887. }
  8888. ],
  8889. "description": "Allows conditional views output.",
  8890. "homepage": "https://www.drupal.org/project/views_conditional",
  8891. "support": {
  8892. "source": "https://git.drupalcode.org/project/views_conditional"
  8893. }
  8894. },
  8895. {
  8896. "name": "drupal/views_ef_fieldset",
  8897. "version": "1.6.0",
  8898. "source": {
  8899. "type": "git",
  8900. "url": "https://git.drupalcode.org/project/views_ef_fieldset.git",
  8901. "reference": "8.x-1.6"
  8902. },
  8903. "dist": {
  8904. "type": "zip",
  8905. "url": "https://ftp.drupal.org/files/projects/views_ef_fieldset-8.x-1.6.zip",
  8906. "reference": "8.x-1.6",
  8907. "shasum": "d726d98c48fba1d18ce1b5831cb0d1d46a73d8c6"
  8908. },
  8909. "require": {
  8910. "drupal/core": "^9 || ^10",
  8911. "php": ">=7"
  8912. },
  8913. "type": "drupal-module",
  8914. "extra": {
  8915. "drupal": {
  8916. "version": "8.x-1.6",
  8917. "datestamp": "1690812509",
  8918. "security-coverage": {
  8919. "status": "covered",
  8920. "message": "Covered by Drupal's security advisory policy"
  8921. }
  8922. },
  8923. "composer-exit-on-patch-failure": true,
  8924. "enable-patching": true,
  8925. "patches": {
  8926. "drupal/core": {
  8927. "https://www.drupal.org/project/drupal/issues/2943172": "https://www.drupal.org/files/issues/2018-07-05/2943172-kernel-test-base-3.patch"
  8928. }
  8929. }
  8930. },
  8931. "autoload-dev": {
  8932. "psr-4": {
  8933. "Drupal\\Tests\\views_ef_fieldset\\": "./tests/"
  8934. }
  8935. },
  8936. "notification-url": "https://packages.drupal.org/8/downloads",
  8937. "scripts": {
  8938. "grumphp": [
  8939. "./vendor/bin/grumphp run"
  8940. ]
  8941. },
  8942. "license": [
  8943. "GPL-2.0+"
  8944. ],
  8945. "authors": [
  8946. {
  8947. "name": "Pol Dellaiera",
  8948. "homepage": "https://www.drupal.org/user/1632364",
  8949. "email": "pol.dellaiera@protonmail.com"
  8950. },
  8951. {
  8952. "name": "Eli-T",
  8953. "homepage": "https://www.drupal.org/user/516878"
  8954. },
  8955. {
  8956. "name": "Pol",
  8957. "homepage": "https://www.drupal.org/user/47194"
  8958. }
  8959. ],
  8960. "description": "Provide an option to render the 'exposed form widgets' in a fieldset.",
  8961. "homepage": "https://drupal.org/project/views_field_formatter",
  8962. "support": {
  8963. "source": "https://git.drupalcode.org/project/views_ef_fieldset"
  8964. }
  8965. },
  8966. {
  8967. "name": "drupal/webform",
  8968. "version": "6.1.3",
  8969. "source": {
  8970. "type": "git",
  8971. "url": "https://git.drupalcode.org/project/webform.git",
  8972. "reference": "6.1.3"
  8973. },
  8974. "dist": {
  8975. "type": "zip",
  8976. "url": "https://ftp.drupal.org/files/projects/webform-6.1.3.zip",
  8977. "reference": "6.1.3",
  8978. "shasum": "efd032eadc10a4752b9b0203152a5d20eefac175"
  8979. },
  8980. "require": {
  8981. "drupal/core": "^8.8 || ^9"
  8982. },
  8983. "require-dev": {
  8984. "drupal/address": "~1.0",
  8985. "drupal/bootstrap": "~3.0",
  8986. "drupal/captcha": "~1.0",
  8987. "drupal/chosen": "~3.0",
  8988. "drupal/clientside_validation": "~3.0",
  8989. "drupal/clientside_validation_jquery": "*",
  8990. "drupal/devel": "~3.0",
  8991. "drupal/entity": "~1.0",
  8992. "drupal/entity_print": "~2.0",
  8993. "drupal/gnode": "*",
  8994. "drupal/group": "1.0",
  8995. "drupal/jquery_ui": "~1.0",
  8996. "drupal/jquery_ui_checkboxradio": "~1.0",
  8997. "drupal/jquery_ui_datepicker": "~1.0",
  8998. "drupal/lingotek": "~3.0",
  8999. "drupal/mailsystem": "~4.0",
  9000. "drupal/paragraphs": "~1.0",
  9001. "drupal/select2": "~1.0",
  9002. "drupal/smtp": "~1.0",
  9003. "drupal/styleguide": "~1.0",
  9004. "drupal/telephone_validation": "~2.0",
  9005. "drupal/token": "~1.0",
  9006. "drupal/variationcache": "~1.0",
  9007. "drupal/webform_access": "*",
  9008. "drupal/webform_attachment": "*",
  9009. "drupal/webform_clientside_validation": "*",
  9010. "drupal/webform_devel": "*",
  9011. "drupal/webform_entity_print": "*",
  9012. "drupal/webform_group": "*",
  9013. "drupal/webform_node": "*",
  9014. "drupal/webform_options_limit": "*",
  9015. "drupal/webform_scheduled_email": "*",
  9016. "drupal/webform_share": "*",
  9017. "drupal/webform_ui": "*"
  9018. },
  9019. "suggest": {
  9020. "drupal/jquery_ui_checkboxradio": "Provides jQuery UI Checkboxradio library. Required by the Webform jQueryUI Buttons module. The Webform jQueryUI Buttons module is deprecated because jQueryUI is no longer maintained.",
  9021. "drupal/jquery_ui_datepicker": "Provides jQuery UI Datepicker library. Required to support datepickers. The Webform jQueryUI Datepicker module is deprecated because jQueryUI is no longer maintained."
  9022. },
  9023. "type": "drupal-module",
  9024. "extra": {
  9025. "drupal": {
  9026. "version": "6.1.3",
  9027. "datestamp": "1644940723",
  9028. "security-coverage": {
  9029. "status": "covered",
  9030. "message": "Covered by Drupal's security advisory policy"
  9031. }
  9032. },
  9033. "drush": {
  9034. "services": {
  9035. "drush.services.yml": "^9 || ^10"
  9036. }
  9037. }
  9038. },
  9039. "notification-url": "https://packages.drupal.org/8/downloads",
  9040. "license": [
  9041. "GPL-2.0-or-later"
  9042. ],
  9043. "authors": [
  9044. {
  9045. "name": "Jacob Rockowitz (jrockowitz)",
  9046. "homepage": "https://www.drupal.org/u/jrockowitz",
  9047. "role": "Maintainer"
  9048. },
  9049. {
  9050. "name": "Alexander Trotsenko (bucefal91)",
  9051. "homepage": "https://www.drupal.org/u/bucefal91",
  9052. "role": "Co-maintainer"
  9053. },
  9054. {
  9055. "name": "Contributors",
  9056. "homepage": "https://www.drupal.org/node/7404/committers",
  9057. "role": "Contributor"
  9058. },
  9059. {
  9060. "name": "quicksketch",
  9061. "homepage": "https://www.drupal.org/user/35821"
  9062. },
  9063. {
  9064. "name": "torotil",
  9065. "homepage": "https://www.drupal.org/user/865256"
  9066. }
  9067. ],
  9068. "description": "Enables the creation of webforms and questionnaires.",
  9069. "homepage": "https://drupal.org/project/webform",
  9070. "support": {
  9071. "source": "https://git.drupalcode.org/project/webform",
  9072. "issues": "https://www.drupal.org/project/issues/webform?version=8.x",
  9073. "docs": "https://www.drupal.org/docs/8/modules/webform",
  9074. "forum": "https://drupal.stackexchange.com/questions/tagged/webform"
  9075. }
  9076. },
  9077. {
  9078. "name": "drush/drush",
  9079. "version": "10.6.1",
  9080. "source": {
  9081. "type": "git",
  9082. "url": "https://github.com/drush-ops/drush.git",
  9083. "reference": "d36bca3322555a6f94edc94439873afcde2bbe90"
  9084. },
  9085. "dist": {
  9086. "type": "zip",
  9087. "url": "https://api.github.com/repos/drush-ops/drush/zipball/d36bca3322555a6f94edc94439873afcde2bbe90",
  9088. "reference": "d36bca3322555a6f94edc94439873afcde2bbe90",
  9089. "shasum": ""
  9090. },
  9091. "require": {
  9092. "chi-teck/drupal-code-generator": "^1.32.1",
  9093. "composer/semver": "^1.4 || ^3",
  9094. "consolidation/config": "^1.2",
  9095. "consolidation/filter-via-dot-access-data": "^1",
  9096. "consolidation/robo": "^1.4.11 || ^2 || ^3",
  9097. "consolidation/site-alias": "^3.0.0@stable",
  9098. "consolidation/site-process": "^2.1 || ^4",
  9099. "enlightn/security-checker": "^1",
  9100. "ext-dom": "*",
  9101. "grasmash/yaml-expander": "^1.1.1",
  9102. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  9103. "league/container": "^2.5 || ^3.4",
  9104. "php": ">=7.1.3",
  9105. "psr/log": "~1.0",
  9106. "psy/psysh": "~0.6",
  9107. "symfony/event-dispatcher": "^3.4 || ^4.0",
  9108. "symfony/finder": "^3.4 || ^4.0 || ^5",
  9109. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0",
  9110. "symfony/yaml": "^3.4 || ^4.0",
  9111. "webflo/drupal-finder": "^1.2",
  9112. "webmozart/path-util": "^2.1.0"
  9113. },
  9114. "conflict": {
  9115. "drupal/migrate_run": "*",
  9116. "drupal/migrate_tools": "<= 5"
  9117. },
  9118. "require-dev": {
  9119. "composer/installers": "^1.7",
  9120. "cweagans/composer-patches": "~1.0",
  9121. "david-garcia/phpwhois": "4.3.0",
  9122. "drupal/alinks": "1.0.0",
  9123. "drupal/core-recommended": "^8.8",
  9124. "phpunit/phpunit": ">=7.5.20",
  9125. "squizlabs/php_codesniffer": "^2.7 || ^3",
  9126. "vlucas/phpdotenv": "^2.4",
  9127. "yoast/phpunit-polyfills": "^0.2.0"
  9128. },
  9129. "bin": [
  9130. "drush"
  9131. ],
  9132. "type": "library",
  9133. "extra": {
  9134. "installer-paths": {
  9135. "sut/core": [
  9136. "type:drupal-core"
  9137. ],
  9138. "sut/libraries/{$name}": [
  9139. "type:drupal-library"
  9140. ],
  9141. "sut/modules/unish/{$name}": [
  9142. "drupal/devel"
  9143. ],
  9144. "sut/themes/unish/{$name}": [
  9145. "drupal/empty_theme"
  9146. ],
  9147. "sut/modules/contrib/{$name}": [
  9148. "type:drupal-module"
  9149. ],
  9150. "sut/profiles/contrib/{$name}": [
  9151. "type:drupal-profile"
  9152. ],
  9153. "sut/themes/contrib/{$name}": [
  9154. "type:drupal-theme"
  9155. ],
  9156. "sut/drush/contrib/{$name}": [
  9157. "type:drupal-drush"
  9158. ]
  9159. }
  9160. },
  9161. "autoload": {
  9162. "psr-4": {
  9163. "Drush\\": "src/",
  9164. "Drush\\Internal\\": "src/internal-forks"
  9165. }
  9166. },
  9167. "notification-url": "https://packagist.org/downloads/",
  9168. "license": [
  9169. "GPL-2.0-or-later"
  9170. ],
  9171. "authors": [
  9172. {
  9173. "name": "Moshe Weitzman",
  9174. "email": "weitzman@tejasa.com"
  9175. },
  9176. {
  9177. "name": "Owen Barton",
  9178. "email": "drupal@owenbarton.com"
  9179. },
  9180. {
  9181. "name": "Greg Anderson",
  9182. "email": "greg.1.anderson@greenknowe.org"
  9183. },
  9184. {
  9185. "name": "Jonathan Araña Cruz",
  9186. "email": "jonhattan@faita.net"
  9187. },
  9188. {
  9189. "name": "Jonathan Hedstrom",
  9190. "email": "jhedstrom@gmail.com"
  9191. },
  9192. {
  9193. "name": "Christopher Gervais",
  9194. "email": "chris@ergonlogic.com"
  9195. },
  9196. {
  9197. "name": "Dave Reid",
  9198. "email": "dave@davereid.net"
  9199. },
  9200. {
  9201. "name": "Damian Lee",
  9202. "email": "damiankloip@googlemail.com"
  9203. }
  9204. ],
  9205. "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.",
  9206. "homepage": "http://www.drush.org",
  9207. "support": {
  9208. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  9209. "irc": "irc://irc.freenode.org/drush",
  9210. "issues": "https://github.com/drush-ops/drush/issues",
  9211. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  9212. "source": "https://github.com/drush-ops/drush/tree/10.6.1"
  9213. },
  9214. "funding": [
  9215. {
  9216. "url": "https://github.com/weitzman",
  9217. "type": "github"
  9218. }
  9219. ],
  9220. "time": "2021-10-05T11:14:14+00:00"
  9221. },
  9222. {
  9223. "name": "egulias/email-validator",
  9224. "version": "3.2.6",
  9225. "source": {
  9226. "type": "git",
  9227. "url": "https://github.com/egulias/EmailValidator.git",
  9228. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7"
  9229. },
  9230. "dist": {
  9231. "type": "zip",
  9232. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  9233. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  9234. "shasum": ""
  9235. },
  9236. "require": {
  9237. "doctrine/lexer": "^1.2|^2",
  9238. "php": ">=7.2",
  9239. "symfony/polyfill-intl-idn": "^1.15"
  9240. },
  9241. "require-dev": {
  9242. "phpunit/phpunit": "^8.5.8|^9.3.3",
  9243. "vimeo/psalm": "^4"
  9244. },
  9245. "suggest": {
  9246. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  9247. },
  9248. "type": "library",
  9249. "extra": {
  9250. "branch-alias": {
  9251. "dev-master": "3.0.x-dev"
  9252. }
  9253. },
  9254. "autoload": {
  9255. "psr-4": {
  9256. "Egulias\\EmailValidator\\": "src"
  9257. }
  9258. },
  9259. "notification-url": "https://packagist.org/downloads/",
  9260. "license": [
  9261. "MIT"
  9262. ],
  9263. "authors": [
  9264. {
  9265. "name": "Eduardo Gulias Davis"
  9266. }
  9267. ],
  9268. "description": "A library for validating emails against several RFCs",
  9269. "homepage": "https://github.com/egulias/EmailValidator",
  9270. "keywords": [
  9271. "email",
  9272. "emailvalidation",
  9273. "emailvalidator",
  9274. "validation",
  9275. "validator"
  9276. ],
  9277. "support": {
  9278. "issues": "https://github.com/egulias/EmailValidator/issues",
  9279. "source": "https://github.com/egulias/EmailValidator/tree/3.2.6"
  9280. },
  9281. "funding": [
  9282. {
  9283. "url": "https://github.com/egulias",
  9284. "type": "github"
  9285. }
  9286. ],
  9287. "time": "2023-06-01T07:04:22+00:00"
  9288. },
  9289. {
  9290. "name": "enlightn/security-checker",
  9291. "version": "v1.9.0",
  9292. "source": {
  9293. "type": "git",
  9294. "url": "https://github.com/enlightn/security-checker.git",
  9295. "reference": "dc5bce653fa4d9c792e9dcffa728c0642847c1e1"
  9296. },
  9297. "dist": {
  9298. "type": "zip",
  9299. "url": "https://api.github.com/repos/enlightn/security-checker/zipball/dc5bce653fa4d9c792e9dcffa728c0642847c1e1",
  9300. "reference": "dc5bce653fa4d9c792e9dcffa728c0642847c1e1",
  9301. "shasum": ""
  9302. },
  9303. "require": {
  9304. "ext-json": "*",
  9305. "guzzlehttp/guzzle": "^6.3|^7.0",
  9306. "php": ">=5.6",
  9307. "symfony/console": "^3.4|^4|^5",
  9308. "symfony/finder": "^3|^4|^5",
  9309. "symfony/process": "^3.4|^4|^5",
  9310. "symfony/yaml": "^3.4|^4|^5"
  9311. },
  9312. "require-dev": {
  9313. "ext-zip": "*",
  9314. "friendsofphp/php-cs-fixer": "^2.18",
  9315. "phpunit/phpunit": "^5.5|^6|^7|^8|^9"
  9316. },
  9317. "bin": [
  9318. "security-checker"
  9319. ],
  9320. "type": "library",
  9321. "autoload": {
  9322. "psr-4": {
  9323. "Enlightn\\SecurityChecker\\": "src"
  9324. }
  9325. },
  9326. "notification-url": "https://packagist.org/downloads/",
  9327. "license": [
  9328. "MIT"
  9329. ],
  9330. "authors": [
  9331. {
  9332. "name": "Paras Malhotra",
  9333. "email": "paras@laravel-enlightn.com"
  9334. },
  9335. {
  9336. "name": "Miguel Piedrafita",
  9337. "email": "soy@miguelpiedrafita.com"
  9338. }
  9339. ],
  9340. "description": "A PHP dependency vulnerabilities scanner based on the Security Advisories Database.",
  9341. "keywords": [
  9342. "package",
  9343. "php",
  9344. "scanner",
  9345. "security",
  9346. "security advisories",
  9347. "vulnerability scanner"
  9348. ],
  9349. "support": {
  9350. "issues": "https://github.com/enlightn/security-checker/issues",
  9351. "source": "https://github.com/enlightn/security-checker/tree/v1.9.0"
  9352. },
  9353. "time": "2021-05-06T09:03:35+00:00"
  9354. },
  9355. {
  9356. "name": "geocoder-php/common-http",
  9357. "version": "4.4.0",
  9358. "source": {
  9359. "type": "git",
  9360. "url": "https://github.com/geocoder-php/php-common-http.git",
  9361. "reference": "9f44a006d4b45d01dd31ea9b38ee7fb5724cd73e"
  9362. },
  9363. "dist": {
  9364. "type": "zip",
  9365. "url": "https://api.github.com/repos/geocoder-php/php-common-http/zipball/9f44a006d4b45d01dd31ea9b38ee7fb5724cd73e",
  9366. "reference": "9f44a006d4b45d01dd31ea9b38ee7fb5724cd73e",
  9367. "shasum": ""
  9368. },
  9369. "require": {
  9370. "php": "^7.3 || ^8.0",
  9371. "php-http/client-implementation": "^1.0",
  9372. "php-http/discovery": "^1.6",
  9373. "php-http/httplug": "^1.0 || ^2.0",
  9374. "php-http/message-factory": "^1.0.2",
  9375. "psr/http-message": "^1.0",
  9376. "psr/http-message-implementation": "^1.0",
  9377. "willdurand/geocoder": "^4.0"
  9378. },
  9379. "require-dev": {
  9380. "nyholm/psr7": "^1.0",
  9381. "php-http/message": "^1.0",
  9382. "php-http/mock-client": "^1.0",
  9383. "phpunit/phpunit": "^9.5",
  9384. "symfony/stopwatch": "~2.5"
  9385. },
  9386. "type": "library",
  9387. "extra": {
  9388. "branch-alias": {
  9389. "dev-master": "4.0-dev"
  9390. }
  9391. },
  9392. "autoload": {
  9393. "psr-4": {
  9394. "Geocoder\\Http\\": ""
  9395. },
  9396. "exclude-from-classmap": [
  9397. "/Tests/"
  9398. ]
  9399. },
  9400. "notification-url": "https://packagist.org/downloads/",
  9401. "license": [
  9402. "MIT"
  9403. ],
  9404. "authors": [
  9405. {
  9406. "name": "Tobias Nyholm",
  9407. "email": "tobias.nyholm@gmail.com"
  9408. }
  9409. ],
  9410. "description": "Common files for HTTP based Geocoders",
  9411. "homepage": "http://geocoder-php.org",
  9412. "keywords": [
  9413. "http geocoder"
  9414. ],
  9415. "support": {
  9416. "source": "https://github.com/geocoder-php/php-common-http/tree/4.4.0"
  9417. },
  9418. "time": "2020-12-21T09:30:01+00:00"
  9419. },
  9420. {
  9421. "name": "geocoder-php/mapquest-provider",
  9422. "version": "4.2.0",
  9423. "source": {
  9424. "type": "git",
  9425. "url": "https://github.com/geocoder-php/mapquest-provider.git",
  9426. "reference": "8c7b4b415bb606d6dbb7e6c61233be25f4bfe10b"
  9427. },
  9428. "dist": {
  9429. "type": "zip",
  9430. "url": "https://api.github.com/repos/geocoder-php/mapquest-provider/zipball/8c7b4b415bb606d6dbb7e6c61233be25f4bfe10b",
  9431. "reference": "8c7b4b415bb606d6dbb7e6c61233be25f4bfe10b",
  9432. "shasum": ""
  9433. },
  9434. "require": {
  9435. "geocoder-php/common-http": "^4.0",
  9436. "php": "^7.3 || ^8.0",
  9437. "willdurand/geocoder": "^4.0"
  9438. },
  9439. "provide": {
  9440. "geocoder-php/provider-implementation": "1.0"
  9441. },
  9442. "require-dev": {
  9443. "geocoder-php/provider-integration-tests": "^1.1",
  9444. "php-http/curl-client": "^2.2",
  9445. "php-http/message": "^1.0",
  9446. "phpunit/phpunit": "^9.5"
  9447. },
  9448. "type": "library",
  9449. "extra": {
  9450. "branch-alias": {
  9451. "dev-master": "4.0-dev"
  9452. }
  9453. },
  9454. "autoload": {
  9455. "psr-4": {
  9456. "Geocoder\\Provider\\MapQuest\\": ""
  9457. },
  9458. "exclude-from-classmap": [
  9459. "/Tests/"
  9460. ]
  9461. },
  9462. "notification-url": "https://packagist.org/downloads/",
  9463. "license": [
  9464. "MIT"
  9465. ],
  9466. "authors": [
  9467. {
  9468. "name": "William Durand",
  9469. "email": "william.durand1@gmail.com"
  9470. }
  9471. ],
  9472. "description": "Geocoder MapQuest adapter",
  9473. "homepage": "http://geocoder-php.org/Geocoder/",
  9474. "support": {
  9475. "source": "https://github.com/geocoder-php/mapquest-provider/tree/4.2.0"
  9476. },
  9477. "time": "2020-12-21T16:41:18+00:00"
  9478. },
  9479. {
  9480. "name": "grasmash/expander",
  9481. "version": "1.0.0",
  9482. "source": {
  9483. "type": "git",
  9484. "url": "https://github.com/grasmash/expander.git",
  9485. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  9486. },
  9487. "dist": {
  9488. "type": "zip",
  9489. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  9490. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  9491. "shasum": ""
  9492. },
  9493. "require": {
  9494. "dflydev/dot-access-data": "^1.1.0",
  9495. "php": ">=5.4"
  9496. },
  9497. "require-dev": {
  9498. "greg-1-anderson/composer-test-scenarios": "^1",
  9499. "phpunit/phpunit": "^4|^5.5.4",
  9500. "satooshi/php-coveralls": "^1.0.2|dev-master",
  9501. "squizlabs/php_codesniffer": "^2.7"
  9502. },
  9503. "type": "library",
  9504. "extra": {
  9505. "branch-alias": {
  9506. "dev-master": "1.x-dev"
  9507. }
  9508. },
  9509. "autoload": {
  9510. "psr-4": {
  9511. "Grasmash\\Expander\\": "src/"
  9512. }
  9513. },
  9514. "notification-url": "https://packagist.org/downloads/",
  9515. "license": [
  9516. "MIT"
  9517. ],
  9518. "authors": [
  9519. {
  9520. "name": "Matthew Grasmick"
  9521. }
  9522. ],
  9523. "description": "Expands internal property references in PHP arrays file.",
  9524. "support": {
  9525. "issues": "https://github.com/grasmash/expander/issues",
  9526. "source": "https://github.com/grasmash/expander/tree/master"
  9527. },
  9528. "time": "2017-12-21T22:14:55+00:00"
  9529. },
  9530. {
  9531. "name": "grasmash/yaml-expander",
  9532. "version": "1.4.0",
  9533. "source": {
  9534. "type": "git",
  9535. "url": "https://github.com/grasmash/yaml-expander.git",
  9536. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  9537. },
  9538. "dist": {
  9539. "type": "zip",
  9540. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  9541. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  9542. "shasum": ""
  9543. },
  9544. "require": {
  9545. "dflydev/dot-access-data": "^1.1.0",
  9546. "php": ">=5.4",
  9547. "symfony/yaml": "^2.8.11|^3|^4"
  9548. },
  9549. "require-dev": {
  9550. "greg-1-anderson/composer-test-scenarios": "^1",
  9551. "phpunit/phpunit": "^4.8|^5.5.4",
  9552. "satooshi/php-coveralls": "^1.0.2|dev-master",
  9553. "squizlabs/php_codesniffer": "^2.7"
  9554. },
  9555. "type": "library",
  9556. "extra": {
  9557. "branch-alias": {
  9558. "dev-master": "1.x-dev"
  9559. }
  9560. },
  9561. "autoload": {
  9562. "psr-4": {
  9563. "Grasmash\\YamlExpander\\": "src/"
  9564. }
  9565. },
  9566. "notification-url": "https://packagist.org/downloads/",
  9567. "license": [
  9568. "MIT"
  9569. ],
  9570. "authors": [
  9571. {
  9572. "name": "Matthew Grasmick"
  9573. }
  9574. ],
  9575. "description": "Expands internal property references in a yaml file.",
  9576. "support": {
  9577. "issues": "https://github.com/grasmash/yaml-expander/issues",
  9578. "source": "https://github.com/grasmash/yaml-expander/tree/master"
  9579. },
  9580. "time": "2017-12-16T16:06:03+00:00"
  9581. },
  9582. {
  9583. "name": "guzzlehttp/guzzle",
  9584. "version": "6.5.8",
  9585. "source": {
  9586. "type": "git",
  9587. "url": "https://github.com/guzzle/guzzle.git",
  9588. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981"
  9589. },
  9590. "dist": {
  9591. "type": "zip",
  9592. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a52f0440530b54fa079ce76e8c5d196a42cad981",
  9593. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981",
  9594. "shasum": ""
  9595. },
  9596. "require": {
  9597. "ext-json": "*",
  9598. "guzzlehttp/promises": "^1.0",
  9599. "guzzlehttp/psr7": "^1.9",
  9600. "php": ">=5.5",
  9601. "symfony/polyfill-intl-idn": "^1.17"
  9602. },
  9603. "require-dev": {
  9604. "ext-curl": "*",
  9605. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  9606. "psr/log": "^1.1"
  9607. },
  9608. "suggest": {
  9609. "psr/log": "Required for using the Log middleware"
  9610. },
  9611. "type": "library",
  9612. "extra": {
  9613. "branch-alias": {
  9614. "dev-master": "6.5-dev"
  9615. }
  9616. },
  9617. "autoload": {
  9618. "files": [
  9619. "src/functions_include.php"
  9620. ],
  9621. "psr-4": {
  9622. "GuzzleHttp\\": "src/"
  9623. }
  9624. },
  9625. "notification-url": "https://packagist.org/downloads/",
  9626. "license": [
  9627. "MIT"
  9628. ],
  9629. "authors": [
  9630. {
  9631. "name": "Graham Campbell",
  9632. "email": "hello@gjcampbell.co.uk",
  9633. "homepage": "https://github.com/GrahamCampbell"
  9634. },
  9635. {
  9636. "name": "Michael Dowling",
  9637. "email": "mtdowling@gmail.com",
  9638. "homepage": "https://github.com/mtdowling"
  9639. },
  9640. {
  9641. "name": "Jeremy Lindblom",
  9642. "email": "jeremeamia@gmail.com",
  9643. "homepage": "https://github.com/jeremeamia"
  9644. },
  9645. {
  9646. "name": "George Mponos",
  9647. "email": "gmponos@gmail.com",
  9648. "homepage": "https://github.com/gmponos"
  9649. },
  9650. {
  9651. "name": "Tobias Nyholm",
  9652. "email": "tobias.nyholm@gmail.com",
  9653. "homepage": "https://github.com/Nyholm"
  9654. },
  9655. {
  9656. "name": "Márk Sági-Kazár",
  9657. "email": "mark.sagikazar@gmail.com",
  9658. "homepage": "https://github.com/sagikazarmark"
  9659. },
  9660. {
  9661. "name": "Tobias Schultze",
  9662. "email": "webmaster@tubo-world.de",
  9663. "homepage": "https://github.com/Tobion"
  9664. }
  9665. ],
  9666. "description": "Guzzle is a PHP HTTP client library",
  9667. "homepage": "http://guzzlephp.org/",
  9668. "keywords": [
  9669. "client",
  9670. "curl",
  9671. "framework",
  9672. "http",
  9673. "http client",
  9674. "rest",
  9675. "web service"
  9676. ],
  9677. "support": {
  9678. "issues": "https://github.com/guzzle/guzzle/issues",
  9679. "source": "https://github.com/guzzle/guzzle/tree/6.5.8"
  9680. },
  9681. "funding": [
  9682. {
  9683. "url": "https://github.com/GrahamCampbell",
  9684. "type": "github"
  9685. },
  9686. {
  9687. "url": "https://github.com/Nyholm",
  9688. "type": "github"
  9689. },
  9690. {
  9691. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  9692. "type": "tidelift"
  9693. }
  9694. ],
  9695. "time": "2022-06-20T22:16:07+00:00"
  9696. },
  9697. {
  9698. "name": "guzzlehttp/promises",
  9699. "version": "1.5.3",
  9700. "source": {
  9701. "type": "git",
  9702. "url": "https://github.com/guzzle/promises.git",
  9703. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e"
  9704. },
  9705. "dist": {
  9706. "type": "zip",
  9707. "url": "https://api.github.com/repos/guzzle/promises/zipball/67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  9708. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  9709. "shasum": ""
  9710. },
  9711. "require": {
  9712. "php": ">=5.5"
  9713. },
  9714. "require-dev": {
  9715. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  9716. },
  9717. "type": "library",
  9718. "autoload": {
  9719. "files": [
  9720. "src/functions_include.php"
  9721. ],
  9722. "psr-4": {
  9723. "GuzzleHttp\\Promise\\": "src/"
  9724. }
  9725. },
  9726. "notification-url": "https://packagist.org/downloads/",
  9727. "license": [
  9728. "MIT"
  9729. ],
  9730. "authors": [
  9731. {
  9732. "name": "Graham Campbell",
  9733. "email": "hello@gjcampbell.co.uk",
  9734. "homepage": "https://github.com/GrahamCampbell"
  9735. },
  9736. {
  9737. "name": "Michael Dowling",
  9738. "email": "mtdowling@gmail.com",
  9739. "homepage": "https://github.com/mtdowling"
  9740. },
  9741. {
  9742. "name": "Tobias Nyholm",
  9743. "email": "tobias.nyholm@gmail.com",
  9744. "homepage": "https://github.com/Nyholm"
  9745. },
  9746. {
  9747. "name": "Tobias Schultze",
  9748. "email": "webmaster@tubo-world.de",
  9749. "homepage": "https://github.com/Tobion"
  9750. }
  9751. ],
  9752. "description": "Guzzle promises library",
  9753. "keywords": [
  9754. "promise"
  9755. ],
  9756. "support": {
  9757. "issues": "https://github.com/guzzle/promises/issues",
  9758. "source": "https://github.com/guzzle/promises/tree/1.5.3"
  9759. },
  9760. "funding": [
  9761. {
  9762. "url": "https://github.com/GrahamCampbell",
  9763. "type": "github"
  9764. },
  9765. {
  9766. "url": "https://github.com/Nyholm",
  9767. "type": "github"
  9768. },
  9769. {
  9770. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  9771. "type": "tidelift"
  9772. }
  9773. ],
  9774. "time": "2023-05-21T12:31:43+00:00"
  9775. },
  9776. {
  9777. "name": "guzzlehttp/psr7",
  9778. "version": "1.9.1",
  9779. "source": {
  9780. "type": "git",
  9781. "url": "https://github.com/guzzle/psr7.git",
  9782. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b"
  9783. },
  9784. "dist": {
  9785. "type": "zip",
  9786. "url": "https://api.github.com/repos/guzzle/psr7/zipball/e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  9787. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  9788. "shasum": ""
  9789. },
  9790. "require": {
  9791. "php": ">=5.4.0",
  9792. "psr/http-message": "~1.0",
  9793. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  9794. },
  9795. "provide": {
  9796. "psr/http-message-implementation": "1.0"
  9797. },
  9798. "require-dev": {
  9799. "ext-zlib": "*",
  9800. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  9801. },
  9802. "suggest": {
  9803. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  9804. },
  9805. "type": "library",
  9806. "autoload": {
  9807. "files": [
  9808. "src/functions_include.php"
  9809. ],
  9810. "psr-4": {
  9811. "GuzzleHttp\\Psr7\\": "src/"
  9812. }
  9813. },
  9814. "notification-url": "https://packagist.org/downloads/",
  9815. "license": [
  9816. "MIT"
  9817. ],
  9818. "authors": [
  9819. {
  9820. "name": "Graham Campbell",
  9821. "email": "hello@gjcampbell.co.uk",
  9822. "homepage": "https://github.com/GrahamCampbell"
  9823. },
  9824. {
  9825. "name": "Michael Dowling",
  9826. "email": "mtdowling@gmail.com",
  9827. "homepage": "https://github.com/mtdowling"
  9828. },
  9829. {
  9830. "name": "George Mponos",
  9831. "email": "gmponos@gmail.com",
  9832. "homepage": "https://github.com/gmponos"
  9833. },
  9834. {
  9835. "name": "Tobias Nyholm",
  9836. "email": "tobias.nyholm@gmail.com",
  9837. "homepage": "https://github.com/Nyholm"
  9838. },
  9839. {
  9840. "name": "Márk Sági-Kazár",
  9841. "email": "mark.sagikazar@gmail.com",
  9842. "homepage": "https://github.com/sagikazarmark"
  9843. },
  9844. {
  9845. "name": "Tobias Schultze",
  9846. "email": "webmaster@tubo-world.de",
  9847. "homepage": "https://github.com/Tobion"
  9848. }
  9849. ],
  9850. "description": "PSR-7 message implementation that also provides common utility methods",
  9851. "keywords": [
  9852. "http",
  9853. "message",
  9854. "psr-7",
  9855. "request",
  9856. "response",
  9857. "stream",
  9858. "uri",
  9859. "url"
  9860. ],
  9861. "support": {
  9862. "issues": "https://github.com/guzzle/psr7/issues",
  9863. "source": "https://github.com/guzzle/psr7/tree/1.9.1"
  9864. },
  9865. "funding": [
  9866. {
  9867. "url": "https://github.com/GrahamCampbell",
  9868. "type": "github"
  9869. },
  9870. {
  9871. "url": "https://github.com/Nyholm",
  9872. "type": "github"
  9873. },
  9874. {
  9875. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  9876. "type": "tidelift"
  9877. }
  9878. ],
  9879. "time": "2023-04-17T16:00:37+00:00"
  9880. },
  9881. {
  9882. "name": "itamair/geophp",
  9883. "version": "1.7",
  9884. "source": {
  9885. "type": "git",
  9886. "url": "https://github.com/itamair/geoPHP.git",
  9887. "reference": "c8cf587256cdd1a72a732f59138ee3bfa3372956"
  9888. },
  9889. "dist": {
  9890. "type": "zip",
  9891. "url": "https://api.github.com/repos/itamair/geoPHP/zipball/c8cf587256cdd1a72a732f59138ee3bfa3372956",
  9892. "reference": "c8cf587256cdd1a72a732f59138ee3bfa3372956",
  9893. "shasum": ""
  9894. },
  9895. "require-dev": {
  9896. "phpunit/phpunit": "4.1.* || 9.5.*"
  9897. },
  9898. "type": "library",
  9899. "autoload": {
  9900. "classmap": [
  9901. "geoPHP.inc"
  9902. ]
  9903. },
  9904. "notification-url": "https://packagist.org/downloads/",
  9905. "license": [
  9906. "GPL-2.0+"
  9907. ],
  9908. "authors": [
  9909. {
  9910. "name": "Italo Mairo",
  9911. "homepage": "https://www.linkedin.com/in/italomairo/",
  9912. "role": "Maintanier of this Library Repo"
  9913. },
  9914. {
  9915. "name": "Patrick Hayes",
  9916. "homepage": "https://www.linkedin.com/in/patrickdhayes/",
  9917. "role": "Maintanier of original Repositary/Library (https://github.com/phayes/geoPHP)"
  9918. }
  9919. ],
  9920. "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.",
  9921. "homepage": "https://github.com/itamair/geoPHP",
  9922. "support": {
  9923. "source": "https://github.com/itamair/geoPHP/tree/1.7"
  9924. },
  9925. "time": "2025-05-31T05:12:53+00:00"
  9926. },
  9927. {
  9928. "name": "kint-php/kint",
  9929. "version": "3.3",
  9930. "source": {
  9931. "type": "git",
  9932. "url": "https://github.com/kint-php/kint.git",
  9933. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b"
  9934. },
  9935. "dist": {
  9936. "type": "zip",
  9937. "url": "https://api.github.com/repos/kint-php/kint/zipball/335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  9938. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  9939. "shasum": ""
  9940. },
  9941. "require": {
  9942. "php": ">=5.3.6"
  9943. },
  9944. "require-dev": {
  9945. "friendsofphp/php-cs-fixer": "^2.0",
  9946. "phpunit/phpunit": "^4.0",
  9947. "seld/phar-utils": "^1.0",
  9948. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  9949. "vimeo/psalm": "^3.0"
  9950. },
  9951. "suggest": {
  9952. "ext-ctype": "Simple data type tests",
  9953. "ext-iconv": "Provides fallback detection for ambiguous legacy string encodings such as the Windows and ISO 8859 code pages",
  9954. "ext-mbstring": "Provides string encoding detection",
  9955. "kint-php/kint-js": "Provides a simplified dump to console.log()",
  9956. "kint-php/kint-twig": "Provides d() and s() functions in twig templates",
  9957. "symfony/polyfill-ctype": "Replacement for ext-ctype if missing",
  9958. "symfony/polyfill-iconv": "Replacement for ext-iconv if missing",
  9959. "symfony/polyfill-mbstring": "Replacement for ext-mbstring if missing"
  9960. },
  9961. "type": "library",
  9962. "autoload": {
  9963. "files": [
  9964. "init.php"
  9965. ],
  9966. "psr-4": {
  9967. "Kint\\": "src/"
  9968. }
  9969. },
  9970. "notification-url": "https://packagist.org/downloads/",
  9971. "license": [
  9972. "MIT"
  9973. ],
  9974. "authors": [
  9975. {
  9976. "name": "Jonathan Vollebregt",
  9977. "homepage": "https://github.com/jnvsor"
  9978. },
  9979. {
  9980. "name": "Rokas Šleinius",
  9981. "homepage": "https://github.com/raveren"
  9982. },
  9983. {
  9984. "name": "Contributors",
  9985. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  9986. }
  9987. ],
  9988. "description": "Kint - debugging tool for PHP developers",
  9989. "homepage": "https://kint-php.github.io/kint/",
  9990. "keywords": [
  9991. "debug",
  9992. "kint",
  9993. "php"
  9994. ],
  9995. "support": {
  9996. "issues": "https://github.com/kint-php/kint/issues",
  9997. "source": "https://github.com/kint-php/kint/tree/master"
  9998. },
  9999. "time": "2019-10-17T18:05:24+00:00"
  10000. },
  10001. {
  10002. "name": "laminas/laminas-escaper",
  10003. "version": "2.17.0",
  10004. "source": {
  10005. "type": "git",
  10006. "url": "https://github.com/laminas/laminas-escaper.git",
  10007. "reference": "df1ef9503299a8e3920079a16263b578eaf7c3ba"
  10008. },
  10009. "dist": {
  10010. "type": "zip",
  10011. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/df1ef9503299a8e3920079a16263b578eaf7c3ba",
  10012. "reference": "df1ef9503299a8e3920079a16263b578eaf7c3ba",
  10013. "shasum": ""
  10014. },
  10015. "require": {
  10016. "ext-ctype": "*",
  10017. "ext-mbstring": "*",
  10018. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  10019. },
  10020. "conflict": {
  10021. "zendframework/zend-escaper": "*"
  10022. },
  10023. "require-dev": {
  10024. "infection/infection": "^0.29.8",
  10025. "laminas/laminas-coding-standard": "~3.0.1",
  10026. "phpunit/phpunit": "^10.5.45",
  10027. "psalm/plugin-phpunit": "^0.19.2",
  10028. "vimeo/psalm": "^6.6.2"
  10029. },
  10030. "type": "library",
  10031. "autoload": {
  10032. "psr-4": {
  10033. "Laminas\\Escaper\\": "src/"
  10034. }
  10035. },
  10036. "notification-url": "https://packagist.org/downloads/",
  10037. "license": [
  10038. "BSD-3-Clause"
  10039. ],
  10040. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  10041. "homepage": "https://laminas.dev",
  10042. "keywords": [
  10043. "escaper",
  10044. "laminas"
  10045. ],
  10046. "support": {
  10047. "chat": "https://laminas.dev/chat",
  10048. "docs": "https://docs.laminas.dev/laminas-escaper/",
  10049. "forum": "https://discourse.laminas.dev",
  10050. "issues": "https://github.com/laminas/laminas-escaper/issues",
  10051. "rss": "https://github.com/laminas/laminas-escaper/releases.atom",
  10052. "source": "https://github.com/laminas/laminas-escaper"
  10053. },
  10054. "funding": [
  10055. {
  10056. "url": "https://funding.communitybridge.org/projects/laminas-project",
  10057. "type": "community_bridge"
  10058. }
  10059. ],
  10060. "time": "2025-05-06T19:29:36+00:00"
  10061. },
  10062. {
  10063. "name": "laminas/laminas-feed",
  10064. "version": "2.24.0",
  10065. "source": {
  10066. "type": "git",
  10067. "url": "https://github.com/laminas/laminas-feed.git",
  10068. "reference": "3df6dfe39ce1f53df64eb12f9fcf9bb29074cd50"
  10069. },
  10070. "dist": {
  10071. "type": "zip",
  10072. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/3df6dfe39ce1f53df64eb12f9fcf9bb29074cd50",
  10073. "reference": "3df6dfe39ce1f53df64eb12f9fcf9bb29074cd50",
  10074. "shasum": ""
  10075. },
  10076. "require": {
  10077. "ext-dom": "*",
  10078. "ext-filter": "*",
  10079. "ext-libxml": "*",
  10080. "laminas/laminas-escaper": "^2.9",
  10081. "laminas/laminas-stdlib": "^3.6",
  10082. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  10083. },
  10084. "conflict": {
  10085. "laminas/laminas-servicemanager": "<3.3",
  10086. "zendframework/zend-feed": "*"
  10087. },
  10088. "require-dev": {
  10089. "laminas/laminas-cache": "^2.13.2 || ^3.12",
  10090. "laminas/laminas-cache-storage-adapter-memory": "^1.1.0 || ^2.3",
  10091. "laminas/laminas-coding-standard": "~2.5.0",
  10092. "laminas/laminas-db": "^2.18",
  10093. "laminas/laminas-http": "^2.19",
  10094. "laminas/laminas-servicemanager": "^3.22.1",
  10095. "laminas/laminas-validator": "^2.46",
  10096. "phpunit/phpunit": "^10.5.5",
  10097. "psalm/plugin-phpunit": "^0.19.0",
  10098. "psr/http-message": "^2.0",
  10099. "vimeo/psalm": "^5.18.0"
  10100. },
  10101. "suggest": {
  10102. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  10103. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  10104. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  10105. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  10106. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  10107. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  10108. },
  10109. "type": "library",
  10110. "autoload": {
  10111. "psr-4": {
  10112. "Laminas\\Feed\\": "src/"
  10113. }
  10114. },
  10115. "notification-url": "https://packagist.org/downloads/",
  10116. "license": [
  10117. "BSD-3-Clause"
  10118. ],
  10119. "description": "provides functionality for creating and consuming RSS and Atom feeds",
  10120. "homepage": "https://laminas.dev",
  10121. "keywords": [
  10122. "atom",
  10123. "feed",
  10124. "laminas",
  10125. "rss"
  10126. ],
  10127. "support": {
  10128. "chat": "https://laminas.dev/chat",
  10129. "docs": "https://docs.laminas.dev/laminas-feed/",
  10130. "forum": "https://discourse.laminas.dev",
  10131. "issues": "https://github.com/laminas/laminas-feed/issues",
  10132. "rss": "https://github.com/laminas/laminas-feed/releases.atom",
  10133. "source": "https://github.com/laminas/laminas-feed"
  10134. },
  10135. "funding": [
  10136. {
  10137. "url": "https://funding.communitybridge.org/projects/laminas-project",
  10138. "type": "community_bridge"
  10139. }
  10140. ],
  10141. "time": "2025-06-25T12:37:12+00:00"
  10142. },
  10143. {
  10144. "name": "laminas/laminas-stdlib",
  10145. "version": "3.20.0",
  10146. "source": {
  10147. "type": "git",
  10148. "url": "https://github.com/laminas/laminas-stdlib.git",
  10149. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
  10150. },
  10151. "dist": {
  10152. "type": "zip",
  10153. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  10154. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  10155. "shasum": ""
  10156. },
  10157. "require": {
  10158. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  10159. },
  10160. "conflict": {
  10161. "zendframework/zend-stdlib": "*"
  10162. },
  10163. "require-dev": {
  10164. "laminas/laminas-coding-standard": "^3.0",
  10165. "phpbench/phpbench": "^1.3.1",
  10166. "phpunit/phpunit": "^10.5.38",
  10167. "psalm/plugin-phpunit": "^0.19.0",
  10168. "vimeo/psalm": "^5.26.1"
  10169. },
  10170. "type": "library",
  10171. "autoload": {
  10172. "psr-4": {
  10173. "Laminas\\Stdlib\\": "src/"
  10174. }
  10175. },
  10176. "notification-url": "https://packagist.org/downloads/",
  10177. "license": [
  10178. "BSD-3-Clause"
  10179. ],
  10180. "description": "SPL extensions, array utilities, error handlers, and more",
  10181. "homepage": "https://laminas.dev",
  10182. "keywords": [
  10183. "laminas",
  10184. "stdlib"
  10185. ],
  10186. "support": {
  10187. "chat": "https://laminas.dev/chat",
  10188. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  10189. "forum": "https://discourse.laminas.dev",
  10190. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  10191. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  10192. "source": "https://github.com/laminas/laminas-stdlib"
  10193. },
  10194. "funding": [
  10195. {
  10196. "url": "https://funding.communitybridge.org/projects/laminas-project",
  10197. "type": "community_bridge"
  10198. }
  10199. ],
  10200. "time": "2024-10-29T13:46:07+00:00"
  10201. },
  10202. {
  10203. "name": "league/container",
  10204. "version": "3.4.1",
  10205. "source": {
  10206. "type": "git",
  10207. "url": "https://github.com/thephpleague/container.git",
  10208. "reference": "84ecbc2dbecc31bd23faf759a0e329ee49abddbd"
  10209. },
  10210. "dist": {
  10211. "type": "zip",
  10212. "url": "https://api.github.com/repos/thephpleague/container/zipball/84ecbc2dbecc31bd23faf759a0e329ee49abddbd",
  10213. "reference": "84ecbc2dbecc31bd23faf759a0e329ee49abddbd",
  10214. "shasum": ""
  10215. },
  10216. "require": {
  10217. "php": "^7.0 || ^8.0",
  10218. "psr/container": "^1.0.0"
  10219. },
  10220. "provide": {
  10221. "psr/container-implementation": "^1.0"
  10222. },
  10223. "replace": {
  10224. "orno/di": "~2.0"
  10225. },
  10226. "require-dev": {
  10227. "phpunit/phpunit": "^6.0 || ^7.0",
  10228. "roave/security-advisories": "dev-latest",
  10229. "scrutinizer/ocular": "^1.8",
  10230. "squizlabs/php_codesniffer": "^3.5"
  10231. },
  10232. "type": "library",
  10233. "extra": {
  10234. "branch-alias": {
  10235. "dev-master": "3.x-dev",
  10236. "dev-3.x": "3.x-dev",
  10237. "dev-2.x": "2.x-dev",
  10238. "dev-1.x": "1.x-dev"
  10239. }
  10240. },
  10241. "autoload": {
  10242. "psr-4": {
  10243. "League\\Container\\": "src"
  10244. }
  10245. },
  10246. "notification-url": "https://packagist.org/downloads/",
  10247. "license": [
  10248. "MIT"
  10249. ],
  10250. "authors": [
  10251. {
  10252. "name": "Phil Bennett",
  10253. "email": "philipobenito@gmail.com",
  10254. "homepage": "http://www.philipobenito.com",
  10255. "role": "Developer"
  10256. }
  10257. ],
  10258. "description": "A fast and intuitive dependency injection container.",
  10259. "homepage": "https://github.com/thephpleague/container",
  10260. "keywords": [
  10261. "container",
  10262. "dependency",
  10263. "di",
  10264. "injection",
  10265. "league",
  10266. "provider",
  10267. "service"
  10268. ],
  10269. "support": {
  10270. "issues": "https://github.com/thephpleague/container/issues",
  10271. "source": "https://github.com/thephpleague/container/tree/3.4.1"
  10272. },
  10273. "funding": [
  10274. {
  10275. "url": "https://github.com/philipobenito",
  10276. "type": "github"
  10277. }
  10278. ],
  10279. "time": "2021-07-09T08:23:52+00:00"
  10280. },
  10281. {
  10282. "name": "longwave/laminas-diactoros",
  10283. "version": "2.14.3",
  10284. "source": {
  10285. "type": "git",
  10286. "url": "https://github.com/longwave/laminas-diactoros.git",
  10287. "reference": "2bd6b47a090ae924ecc298657d01f8a462f7507b"
  10288. },
  10289. "dist": {
  10290. "type": "zip",
  10291. "url": "https://api.github.com/repos/longwave/laminas-diactoros/zipball/2bd6b47a090ae924ecc298657d01f8a462f7507b",
  10292. "reference": "2bd6b47a090ae924ecc298657d01f8a462f7507b",
  10293. "shasum": ""
  10294. },
  10295. "require": {
  10296. "php": "^7.3 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
  10297. "psr/http-factory": "^1.0",
  10298. "psr/http-message": "^1.0"
  10299. },
  10300. "conflict": {
  10301. "phpspec/prophecy": "<1.9.0",
  10302. "zendframework/zend-diactoros": "*"
  10303. },
  10304. "provide": {
  10305. "psr/http-factory-implementation": "1.0",
  10306. "psr/http-message-implementation": "1.0"
  10307. },
  10308. "replace": {
  10309. "laminas/laminas-diactoros": "2.18.1"
  10310. },
  10311. "require-dev": {
  10312. "ext-curl": "*",
  10313. "ext-dom": "*",
  10314. "ext-gd": "*",
  10315. "ext-libxml": "*",
  10316. "http-interop/http-factory-tests": "^0.9.0",
  10317. "laminas/laminas-coding-standard": "~2.3.0",
  10318. "php-http/psr7-integration-tests": "^1.1.1",
  10319. "phpspec/prophecy-phpunit": "^2.0",
  10320. "phpunit/phpunit": "^9.5",
  10321. "psalm/plugin-phpunit": "^0.17.0",
  10322. "vimeo/psalm": "^4.24.0"
  10323. },
  10324. "type": "library",
  10325. "extra": {
  10326. "laminas": {
  10327. "module": "Laminas\\Diactoros",
  10328. "config-provider": "Laminas\\Diactoros\\ConfigProvider"
  10329. }
  10330. },
  10331. "autoload": {
  10332. "files": [
  10333. "src/functions/create_uploaded_file.php",
  10334. "src/functions/marshal_headers_from_sapi.php",
  10335. "src/functions/marshal_method_from_sapi.php",
  10336. "src/functions/marshal_protocol_version_from_sapi.php",
  10337. "src/functions/marshal_uri_from_sapi.php",
  10338. "src/functions/normalize_server.php",
  10339. "src/functions/normalize_uploaded_files.php",
  10340. "src/functions/parse_cookie_header.php",
  10341. "src/functions/create_uploaded_file.legacy.php",
  10342. "src/functions/marshal_headers_from_sapi.legacy.php",
  10343. "src/functions/marshal_method_from_sapi.legacy.php",
  10344. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  10345. "src/functions/marshal_uri_from_sapi.legacy.php",
  10346. "src/functions/normalize_server.legacy.php",
  10347. "src/functions/normalize_uploaded_files.legacy.php",
  10348. "src/functions/parse_cookie_header.legacy.php"
  10349. ],
  10350. "psr-4": {
  10351. "Laminas\\Diactoros\\": "src/"
  10352. }
  10353. },
  10354. "notification-url": "https://packagist.org/downloads/",
  10355. "license": [
  10356. "BSD-3-Clause"
  10357. ],
  10358. "description": "PSR HTTP Message implementations",
  10359. "homepage": "https://laminas.dev",
  10360. "keywords": [
  10361. "http",
  10362. "laminas",
  10363. "psr",
  10364. "psr-17",
  10365. "psr-7"
  10366. ],
  10367. "support": {
  10368. "chat": "https://laminas.dev/chat",
  10369. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  10370. "forum": "https://discourse.laminas.dev",
  10371. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  10372. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  10373. "source": "https://github.com/laminas/laminas-diactoros"
  10374. },
  10375. "time": "2024-09-11T14:26:18+00:00"
  10376. },
  10377. {
  10378. "name": "masterminds/html5",
  10379. "version": "2.7.6",
  10380. "source": {
  10381. "type": "git",
  10382. "url": "https://github.com/Masterminds/html5-php.git",
  10383. "reference": "897eb517a343a2281f11bc5556d6548db7d93947"
  10384. },
  10385. "dist": {
  10386. "type": "zip",
  10387. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/897eb517a343a2281f11bc5556d6548db7d93947",
  10388. "reference": "897eb517a343a2281f11bc5556d6548db7d93947",
  10389. "shasum": ""
  10390. },
  10391. "require": {
  10392. "ext-ctype": "*",
  10393. "ext-dom": "*",
  10394. "ext-libxml": "*",
  10395. "php": ">=5.3.0"
  10396. },
  10397. "require-dev": {
  10398. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7"
  10399. },
  10400. "type": "library",
  10401. "extra": {
  10402. "branch-alias": {
  10403. "dev-master": "2.7-dev"
  10404. }
  10405. },
  10406. "autoload": {
  10407. "psr-4": {
  10408. "Masterminds\\": "src"
  10409. }
  10410. },
  10411. "notification-url": "https://packagist.org/downloads/",
  10412. "license": [
  10413. "MIT"
  10414. ],
  10415. "authors": [
  10416. {
  10417. "name": "Matt Butcher",
  10418. "email": "technosophos@gmail.com"
  10419. },
  10420. {
  10421. "name": "Matt Farina",
  10422. "email": "matt@mattfarina.com"
  10423. },
  10424. {
  10425. "name": "Asmir Mustafic",
  10426. "email": "goetas@gmail.com"
  10427. }
  10428. ],
  10429. "description": "An HTML5 parser and serializer.",
  10430. "homepage": "http://masterminds.github.io/html5-php",
  10431. "keywords": [
  10432. "HTML5",
  10433. "dom",
  10434. "html",
  10435. "parser",
  10436. "querypath",
  10437. "serializer",
  10438. "xml"
  10439. ],
  10440. "support": {
  10441. "issues": "https://github.com/Masterminds/html5-php/issues",
  10442. "source": "https://github.com/Masterminds/html5-php/tree/2.7.6"
  10443. },
  10444. "time": "2022-08-18T16:18:26+00:00"
  10445. },
  10446. {
  10447. "name": "mglaman/phpstan-drupal",
  10448. "version": "1.2.12",
  10449. "source": {
  10450. "type": "git",
  10451. "url": "https://github.com/mglaman/phpstan-drupal.git",
  10452. "reference": "346bdddda169a56b6ebb7dc17893f0ac8f33a4f1"
  10453. },
  10454. "dist": {
  10455. "type": "zip",
  10456. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/346bdddda169a56b6ebb7dc17893f0ac8f33a4f1",
  10457. "reference": "346bdddda169a56b6ebb7dc17893f0ac8f33a4f1",
  10458. "shasum": ""
  10459. },
  10460. "require": {
  10461. "php": "^8.1",
  10462. "phpstan/phpstan": "^1.10.56",
  10463. "phpstan/phpstan-deprecation-rules": "^1.1.4",
  10464. "symfony/finder": "^4.2 || ^5.0 || ^6.0 || ^7.0",
  10465. "symfony/yaml": "^4.2|| ^5.0 || ^6.0 || ^7.0",
  10466. "webflo/drupal-finder": "^1.2"
  10467. },
  10468. "require-dev": {
  10469. "behat/mink": "^1.8",
  10470. "composer/installers": "^1.9",
  10471. "drupal/core-recommended": "^10",
  10472. "drush/drush": "^10.0 || ^11 || ^12 || ^13@beta",
  10473. "phpstan/extension-installer": "^1.1",
  10474. "phpstan/phpstan-strict-rules": "^1.0",
  10475. "phpunit/phpunit": "^8.5 || ^9 || ^10 || ^11",
  10476. "slevomat/coding-standard": "^7.1",
  10477. "squizlabs/php_codesniffer": "^3.3",
  10478. "symfony/phpunit-bridge": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  10479. },
  10480. "suggest": {
  10481. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  10482. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  10483. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  10484. },
  10485. "type": "phpstan-extension",
  10486. "extra": {
  10487. "phpstan": {
  10488. "includes": [
  10489. "extension.neon",
  10490. "rules.neon"
  10491. ]
  10492. },
  10493. "branch-alias": {
  10494. "dev-main": "1.0-dev"
  10495. },
  10496. "installer-paths": {
  10497. "tests/fixtures/drupal/core": [
  10498. "type:drupal-core"
  10499. ],
  10500. "tests/fixtures/drupal/libraries/{$name}": [
  10501. "type:drupal-library"
  10502. ],
  10503. "tests/fixtures/drupal/themes/contrib/{$name}": [
  10504. "type:drupal-theme"
  10505. ],
  10506. "tests/fixtures/drupal/modules/contrib/{$name}": [
  10507. "type:drupal-module"
  10508. ],
  10509. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  10510. "type:drupal-profile"
  10511. ]
  10512. }
  10513. },
  10514. "autoload": {
  10515. "psr-4": {
  10516. "mglaman\\PHPStanDrupal\\": "src/"
  10517. }
  10518. },
  10519. "notification-url": "https://packagist.org/downloads/",
  10520. "license": [
  10521. "MIT"
  10522. ],
  10523. "authors": [
  10524. {
  10525. "name": "Matt Glaman",
  10526. "email": "nmd.matt@gmail.com"
  10527. }
  10528. ],
  10529. "description": "Drupal extension and rules for PHPStan",
  10530. "support": {
  10531. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  10532. "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.12"
  10533. },
  10534. "funding": [
  10535. {
  10536. "url": "https://github.com/mglaman",
  10537. "type": "github"
  10538. },
  10539. {
  10540. "url": "https://opencollective.com/phpstan-drupal",
  10541. "type": "open_collective"
  10542. },
  10543. {
  10544. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  10545. "type": "tidelift"
  10546. }
  10547. ],
  10548. "time": "2024-08-07T21:15:21+00:00"
  10549. },
  10550. {
  10551. "name": "nikic/php-parser",
  10552. "version": "v4.13.2",
  10553. "source": {
  10554. "type": "git",
  10555. "url": "https://github.com/nikic/PHP-Parser.git",
  10556. "reference": "210577fe3cf7badcc5814d99455df46564f3c077"
  10557. },
  10558. "dist": {
  10559. "type": "zip",
  10560. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/210577fe3cf7badcc5814d99455df46564f3c077",
  10561. "reference": "210577fe3cf7badcc5814d99455df46564f3c077",
  10562. "shasum": ""
  10563. },
  10564. "require": {
  10565. "ext-tokenizer": "*",
  10566. "php": ">=7.0"
  10567. },
  10568. "require-dev": {
  10569. "ircmaxell/php-yacc": "^0.0.7",
  10570. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  10571. },
  10572. "bin": [
  10573. "bin/php-parse"
  10574. ],
  10575. "type": "library",
  10576. "extra": {
  10577. "branch-alias": {
  10578. "dev-master": "4.9-dev"
  10579. }
  10580. },
  10581. "autoload": {
  10582. "psr-4": {
  10583. "PhpParser\\": "lib/PhpParser"
  10584. }
  10585. },
  10586. "notification-url": "https://packagist.org/downloads/",
  10587. "license": [
  10588. "BSD-3-Clause"
  10589. ],
  10590. "authors": [
  10591. {
  10592. "name": "Nikita Popov"
  10593. }
  10594. ],
  10595. "description": "A PHP parser written in PHP",
  10596. "keywords": [
  10597. "parser",
  10598. "php"
  10599. ],
  10600. "support": {
  10601. "issues": "https://github.com/nikic/PHP-Parser/issues",
  10602. "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.2"
  10603. },
  10604. "time": "2021-11-30T19:35:32+00:00"
  10605. },
  10606. {
  10607. "name": "pear/archive_tar",
  10608. "version": "1.4.14",
  10609. "source": {
  10610. "type": "git",
  10611. "url": "https://github.com/pear/Archive_Tar.git",
  10612. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  10613. },
  10614. "dist": {
  10615. "type": "zip",
  10616. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  10617. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  10618. "shasum": ""
  10619. },
  10620. "require": {
  10621. "pear/pear-core-minimal": "^1.10.0alpha2",
  10622. "php": ">=5.2.0"
  10623. },
  10624. "require-dev": {
  10625. "phpunit/phpunit": "*"
  10626. },
  10627. "suggest": {
  10628. "ext-bz2": "Bz2 compression support.",
  10629. "ext-xz": "Lzma2 compression support.",
  10630. "ext-zlib": "Gzip compression support."
  10631. },
  10632. "type": "library",
  10633. "extra": {
  10634. "branch-alias": {
  10635. "dev-master": "1.4.x-dev"
  10636. }
  10637. },
  10638. "autoload": {
  10639. "psr-0": {
  10640. "Archive_Tar": ""
  10641. }
  10642. },
  10643. "notification-url": "https://packagist.org/downloads/",
  10644. "include-path": [
  10645. "./"
  10646. ],
  10647. "license": [
  10648. "BSD-3-Clause"
  10649. ],
  10650. "authors": [
  10651. {
  10652. "name": "Vincent Blavet",
  10653. "email": "vincent@phpconcept.net"
  10654. },
  10655. {
  10656. "name": "Greg Beaver",
  10657. "email": "greg@chiaraquartet.net"
  10658. },
  10659. {
  10660. "name": "Michiel Rook",
  10661. "email": "mrook@php.net"
  10662. }
  10663. ],
  10664. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  10665. "homepage": "https://github.com/pear/Archive_Tar",
  10666. "keywords": [
  10667. "archive",
  10668. "tar"
  10669. ],
  10670. "support": {
  10671. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  10672. "source": "https://github.com/pear/Archive_Tar"
  10673. },
  10674. "funding": [
  10675. {
  10676. "url": "https://github.com/mrook",
  10677. "type": "github"
  10678. },
  10679. {
  10680. "url": "https://www.patreon.com/michielrook",
  10681. "type": "patreon"
  10682. }
  10683. ],
  10684. "time": "2021-07-20T13:53:39+00:00"
  10685. },
  10686. {
  10687. "name": "pear/console_getopt",
  10688. "version": "v1.4.3",
  10689. "source": {
  10690. "type": "git",
  10691. "url": "https://github.com/pear/Console_Getopt.git",
  10692. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  10693. },
  10694. "dist": {
  10695. "type": "zip",
  10696. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  10697. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  10698. "shasum": ""
  10699. },
  10700. "type": "library",
  10701. "autoload": {
  10702. "psr-0": {
  10703. "Console": "./"
  10704. }
  10705. },
  10706. "notification-url": "https://packagist.org/downloads/",
  10707. "include-path": [
  10708. "./"
  10709. ],
  10710. "license": [
  10711. "BSD-2-Clause"
  10712. ],
  10713. "authors": [
  10714. {
  10715. "name": "Andrei Zmievski",
  10716. "email": "andrei@php.net",
  10717. "role": "Lead"
  10718. },
  10719. {
  10720. "name": "Stig Bakken",
  10721. "email": "stig@php.net",
  10722. "role": "Developer"
  10723. },
  10724. {
  10725. "name": "Greg Beaver",
  10726. "email": "cellog@php.net",
  10727. "role": "Helper"
  10728. }
  10729. ],
  10730. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  10731. "support": {
  10732. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  10733. "source": "https://github.com/pear/Console_Getopt"
  10734. },
  10735. "time": "2019-11-20T18:27:48+00:00"
  10736. },
  10737. {
  10738. "name": "pear/pear-core-minimal",
  10739. "version": "v1.10.16",
  10740. "source": {
  10741. "type": "git",
  10742. "url": "https://github.com/pear/pear-core-minimal.git",
  10743. "reference": "c0f51b45f50683bf5bbf558036854ebc9b54d033"
  10744. },
  10745. "dist": {
  10746. "type": "zip",
  10747. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/c0f51b45f50683bf5bbf558036854ebc9b54d033",
  10748. "reference": "c0f51b45f50683bf5bbf558036854ebc9b54d033",
  10749. "shasum": ""
  10750. },
  10751. "require": {
  10752. "pear/console_getopt": "~1.4",
  10753. "pear/pear_exception": "~1.0",
  10754. "php": ">=5.4"
  10755. },
  10756. "replace": {
  10757. "rsky/pear-core-min": "self.version"
  10758. },
  10759. "type": "library",
  10760. "autoload": {
  10761. "classmap": [
  10762. "src/"
  10763. ]
  10764. },
  10765. "notification-url": "https://packagist.org/downloads/",
  10766. "include-path": [
  10767. "src/"
  10768. ],
  10769. "license": [
  10770. "BSD-3-Clause"
  10771. ],
  10772. "authors": [
  10773. {
  10774. "name": "Christian Weiske",
  10775. "email": "cweiske@php.net",
  10776. "role": "Lead"
  10777. }
  10778. ],
  10779. "description": "Minimal set of PEAR core files to be used as composer dependency",
  10780. "support": {
  10781. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  10782. "source": "https://github.com/pear/pear-core-minimal"
  10783. },
  10784. "time": "2024-11-24T22:27:58+00:00"
  10785. },
  10786. {
  10787. "name": "pear/pear_exception",
  10788. "version": "v1.0.2",
  10789. "source": {
  10790. "type": "git",
  10791. "url": "https://github.com/pear/PEAR_Exception.git",
  10792. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  10793. },
  10794. "dist": {
  10795. "type": "zip",
  10796. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  10797. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  10798. "shasum": ""
  10799. },
  10800. "require": {
  10801. "php": ">=5.2.0"
  10802. },
  10803. "require-dev": {
  10804. "phpunit/phpunit": "<9"
  10805. },
  10806. "type": "class",
  10807. "extra": {
  10808. "branch-alias": {
  10809. "dev-master": "1.0.x-dev"
  10810. }
  10811. },
  10812. "autoload": {
  10813. "classmap": [
  10814. "PEAR/"
  10815. ]
  10816. },
  10817. "notification-url": "https://packagist.org/downloads/",
  10818. "include-path": [
  10819. "."
  10820. ],
  10821. "license": [
  10822. "BSD-2-Clause"
  10823. ],
  10824. "authors": [
  10825. {
  10826. "name": "Helgi Thormar",
  10827. "email": "dufuz@php.net"
  10828. },
  10829. {
  10830. "name": "Greg Beaver",
  10831. "email": "cellog@php.net"
  10832. }
  10833. ],
  10834. "description": "The PEAR Exception base class.",
  10835. "homepage": "https://github.com/pear/PEAR_Exception",
  10836. "keywords": [
  10837. "exception"
  10838. ],
  10839. "support": {
  10840. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  10841. "source": "https://github.com/pear/PEAR_Exception"
  10842. },
  10843. "time": "2021-03-21T15:43:46+00:00"
  10844. },
  10845. {
  10846. "name": "php-http/discovery",
  10847. "version": "1.14.1",
  10848. "source": {
  10849. "type": "git",
  10850. "url": "https://github.com/php-http/discovery.git",
  10851. "reference": "de90ab2b41d7d61609f504e031339776bc8c7223"
  10852. },
  10853. "dist": {
  10854. "type": "zip",
  10855. "url": "https://api.github.com/repos/php-http/discovery/zipball/de90ab2b41d7d61609f504e031339776bc8c7223",
  10856. "reference": "de90ab2b41d7d61609f504e031339776bc8c7223",
  10857. "shasum": ""
  10858. },
  10859. "require": {
  10860. "php": "^7.1 || ^8.0"
  10861. },
  10862. "conflict": {
  10863. "nyholm/psr7": "<1.0"
  10864. },
  10865. "require-dev": {
  10866. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  10867. "php-http/httplug": "^1.0 || ^2.0",
  10868. "php-http/message-factory": "^1.0",
  10869. "phpspec/phpspec": "^5.1 || ^6.1",
  10870. "puli/composer-plugin": "1.0.0-beta10"
  10871. },
  10872. "suggest": {
  10873. "php-http/message": "Allow to use Guzzle, Diactoros or Slim Framework factories"
  10874. },
  10875. "type": "library",
  10876. "extra": {
  10877. "branch-alias": {
  10878. "dev-master": "1.9-dev"
  10879. }
  10880. },
  10881. "autoload": {
  10882. "psr-4": {
  10883. "Http\\Discovery\\": "src/"
  10884. }
  10885. },
  10886. "notification-url": "https://packagist.org/downloads/",
  10887. "license": [
  10888. "MIT"
  10889. ],
  10890. "authors": [
  10891. {
  10892. "name": "Márk Sági-Kazár",
  10893. "email": "mark.sagikazar@gmail.com"
  10894. }
  10895. ],
  10896. "description": "Finds installed HTTPlug implementations and PSR-7 message factories",
  10897. "homepage": "http://php-http.org",
  10898. "keywords": [
  10899. "adapter",
  10900. "client",
  10901. "discovery",
  10902. "factory",
  10903. "http",
  10904. "message",
  10905. "psr7"
  10906. ],
  10907. "support": {
  10908. "issues": "https://github.com/php-http/discovery/issues",
  10909. "source": "https://github.com/php-http/discovery/tree/1.14.1"
  10910. },
  10911. "time": "2021-09-18T07:57:46+00:00"
  10912. },
  10913. {
  10914. "name": "php-http/guzzle6-adapter",
  10915. "version": "v2.0.2",
  10916. "source": {
  10917. "type": "git",
  10918. "url": "https://github.com/php-http/guzzle6-adapter.git",
  10919. "reference": "9d1a45eb1c59f12574552e81fb295e9e53430a56"
  10920. },
  10921. "dist": {
  10922. "type": "zip",
  10923. "url": "https://api.github.com/repos/php-http/guzzle6-adapter/zipball/9d1a45eb1c59f12574552e81fb295e9e53430a56",
  10924. "reference": "9d1a45eb1c59f12574552e81fb295e9e53430a56",
  10925. "shasum": ""
  10926. },
  10927. "require": {
  10928. "guzzlehttp/guzzle": "^6.0",
  10929. "php": "^7.1 || ^8.0",
  10930. "php-http/httplug": "^2.0",
  10931. "psr/http-client": "^1.0"
  10932. },
  10933. "provide": {
  10934. "php-http/async-client-implementation": "1.0",
  10935. "php-http/client-implementation": "1.0",
  10936. "psr/http-client-implementation": "1.0"
  10937. },
  10938. "require-dev": {
  10939. "ext-curl": "*",
  10940. "php-http/client-integration-tests": "^2.0 || ^3.0",
  10941. "phpunit/phpunit": "^7.4 || ^8.4"
  10942. },
  10943. "type": "library",
  10944. "extra": {
  10945. "branch-alias": {
  10946. "dev-master": "2.x-dev"
  10947. }
  10948. },
  10949. "autoload": {
  10950. "psr-4": {
  10951. "Http\\Adapter\\Guzzle6\\": "src/"
  10952. }
  10953. },
  10954. "notification-url": "https://packagist.org/downloads/",
  10955. "license": [
  10956. "MIT"
  10957. ],
  10958. "authors": [
  10959. {
  10960. "name": "David de Boer",
  10961. "email": "david@ddeboer.nl"
  10962. },
  10963. {
  10964. "name": "Márk Sági-Kazár",
  10965. "email": "mark.sagikazar@gmail.com"
  10966. }
  10967. ],
  10968. "description": "Guzzle 6 HTTP Adapter",
  10969. "homepage": "http://httplug.io",
  10970. "keywords": [
  10971. "Guzzle",
  10972. "http"
  10973. ],
  10974. "support": {
  10975. "issues": "https://github.com/php-http/guzzle6-adapter/issues",
  10976. "source": "https://github.com/php-http/guzzle6-adapter/tree/v2.0.2"
  10977. },
  10978. "time": "2021-03-02T10:52:33+00:00"
  10979. },
  10980. {
  10981. "name": "php-http/httplug",
  10982. "version": "2.3.0",
  10983. "source": {
  10984. "type": "git",
  10985. "url": "https://github.com/php-http/httplug.git",
  10986. "reference": "f640739f80dfa1152533976e3c112477f69274eb"
  10987. },
  10988. "dist": {
  10989. "type": "zip",
  10990. "url": "https://api.github.com/repos/php-http/httplug/zipball/f640739f80dfa1152533976e3c112477f69274eb",
  10991. "reference": "f640739f80dfa1152533976e3c112477f69274eb",
  10992. "shasum": ""
  10993. },
  10994. "require": {
  10995. "php": "^7.1 || ^8.0",
  10996. "php-http/promise": "^1.1",
  10997. "psr/http-client": "^1.0",
  10998. "psr/http-message": "^1.0"
  10999. },
  11000. "require-dev": {
  11001. "friends-of-phpspec/phpspec-code-coverage": "^4.1",
  11002. "phpspec/phpspec": "^5.1 || ^6.0"
  11003. },
  11004. "type": "library",
  11005. "extra": {
  11006. "branch-alias": {
  11007. "dev-master": "2.x-dev"
  11008. }
  11009. },
  11010. "autoload": {
  11011. "psr-4": {
  11012. "Http\\Client\\": "src/"
  11013. }
  11014. },
  11015. "notification-url": "https://packagist.org/downloads/",
  11016. "license": [
  11017. "MIT"
  11018. ],
  11019. "authors": [
  11020. {
  11021. "name": "Eric GELOEN",
  11022. "email": "geloen.eric@gmail.com"
  11023. },
  11024. {
  11025. "name": "Márk Sági-Kazár",
  11026. "email": "mark.sagikazar@gmail.com",
  11027. "homepage": "https://sagikazarmark.hu"
  11028. }
  11029. ],
  11030. "description": "HTTPlug, the HTTP client abstraction for PHP",
  11031. "homepage": "http://httplug.io",
  11032. "keywords": [
  11033. "client",
  11034. "http"
  11035. ],
  11036. "support": {
  11037. "issues": "https://github.com/php-http/httplug/issues",
  11038. "source": "https://github.com/php-http/httplug/tree/2.3.0"
  11039. },
  11040. "time": "2022-02-21T09:52:22+00:00"
  11041. },
  11042. {
  11043. "name": "php-http/message",
  11044. "version": "1.13.0",
  11045. "source": {
  11046. "type": "git",
  11047. "url": "https://github.com/php-http/message.git",
  11048. "reference": "7886e647a30a966a1a8d1dad1845b71ca8678361"
  11049. },
  11050. "dist": {
  11051. "type": "zip",
  11052. "url": "https://api.github.com/repos/php-http/message/zipball/7886e647a30a966a1a8d1dad1845b71ca8678361",
  11053. "reference": "7886e647a30a966a1a8d1dad1845b71ca8678361",
  11054. "shasum": ""
  11055. },
  11056. "require": {
  11057. "clue/stream-filter": "^1.5",
  11058. "php": "^7.1 || ^8.0",
  11059. "php-http/message-factory": "^1.0.2",
  11060. "psr/http-message": "^1.0"
  11061. },
  11062. "provide": {
  11063. "php-http/message-factory-implementation": "1.0"
  11064. },
  11065. "require-dev": {
  11066. "ergebnis/composer-normalize": "^2.6",
  11067. "ext-zlib": "*",
  11068. "guzzlehttp/psr7": "^1.0",
  11069. "laminas/laminas-diactoros": "^2.0",
  11070. "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1",
  11071. "slim/slim": "^3.0"
  11072. },
  11073. "suggest": {
  11074. "ext-zlib": "Used with compressor/decompressor streams",
  11075. "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories",
  11076. "laminas/laminas-diactoros": "Used with Diactoros Factories",
  11077. "slim/slim": "Used with Slim Framework PSR-7 implementation"
  11078. },
  11079. "type": "library",
  11080. "extra": {
  11081. "branch-alias": {
  11082. "dev-master": "1.10-dev"
  11083. }
  11084. },
  11085. "autoload": {
  11086. "files": [
  11087. "src/filters.php"
  11088. ],
  11089. "psr-4": {
  11090. "Http\\Message\\": "src/"
  11091. }
  11092. },
  11093. "notification-url": "https://packagist.org/downloads/",
  11094. "license": [
  11095. "MIT"
  11096. ],
  11097. "authors": [
  11098. {
  11099. "name": "Márk Sági-Kazár",
  11100. "email": "mark.sagikazar@gmail.com"
  11101. }
  11102. ],
  11103. "description": "HTTP Message related tools",
  11104. "homepage": "http://php-http.org",
  11105. "keywords": [
  11106. "http",
  11107. "message",
  11108. "psr-7"
  11109. ],
  11110. "support": {
  11111. "issues": "https://github.com/php-http/message/issues",
  11112. "source": "https://github.com/php-http/message/tree/1.13.0"
  11113. },
  11114. "time": "2022-02-11T13:41:14+00:00"
  11115. },
  11116. {
  11117. "name": "php-http/message-factory",
  11118. "version": "v1.0.2",
  11119. "source": {
  11120. "type": "git",
  11121. "url": "https://github.com/php-http/message-factory.git",
  11122. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1"
  11123. },
  11124. "dist": {
  11125. "type": "zip",
  11126. "url": "https://api.github.com/repos/php-http/message-factory/zipball/a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  11127. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  11128. "shasum": ""
  11129. },
  11130. "require": {
  11131. "php": ">=5.4",
  11132. "psr/http-message": "^1.0"
  11133. },
  11134. "type": "library",
  11135. "extra": {
  11136. "branch-alias": {
  11137. "dev-master": "1.0-dev"
  11138. }
  11139. },
  11140. "autoload": {
  11141. "psr-4": {
  11142. "Http\\Message\\": "src/"
  11143. }
  11144. },
  11145. "notification-url": "https://packagist.org/downloads/",
  11146. "license": [
  11147. "MIT"
  11148. ],
  11149. "authors": [
  11150. {
  11151. "name": "Márk Sági-Kazár",
  11152. "email": "mark.sagikazar@gmail.com"
  11153. }
  11154. ],
  11155. "description": "Factory interfaces for PSR-7 HTTP Message",
  11156. "homepage": "http://php-http.org",
  11157. "keywords": [
  11158. "factory",
  11159. "http",
  11160. "message",
  11161. "stream",
  11162. "uri"
  11163. ],
  11164. "support": {
  11165. "issues": "https://github.com/php-http/message-factory/issues",
  11166. "source": "https://github.com/php-http/message-factory/tree/master"
  11167. },
  11168. "time": "2015-12-19T14:08:53+00:00"
  11169. },
  11170. {
  11171. "name": "php-http/promise",
  11172. "version": "1.1.0",
  11173. "source": {
  11174. "type": "git",
  11175. "url": "https://github.com/php-http/promise.git",
  11176. "reference": "4c4c1f9b7289a2ec57cde7f1e9762a5789506f88"
  11177. },
  11178. "dist": {
  11179. "type": "zip",
  11180. "url": "https://api.github.com/repos/php-http/promise/zipball/4c4c1f9b7289a2ec57cde7f1e9762a5789506f88",
  11181. "reference": "4c4c1f9b7289a2ec57cde7f1e9762a5789506f88",
  11182. "shasum": ""
  11183. },
  11184. "require": {
  11185. "php": "^7.1 || ^8.0"
  11186. },
  11187. "require-dev": {
  11188. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2",
  11189. "phpspec/phpspec": "^5.1.2 || ^6.2"
  11190. },
  11191. "type": "library",
  11192. "extra": {
  11193. "branch-alias": {
  11194. "dev-master": "1.1-dev"
  11195. }
  11196. },
  11197. "autoload": {
  11198. "psr-4": {
  11199. "Http\\Promise\\": "src/"
  11200. }
  11201. },
  11202. "notification-url": "https://packagist.org/downloads/",
  11203. "license": [
  11204. "MIT"
  11205. ],
  11206. "authors": [
  11207. {
  11208. "name": "Joel Wurtz",
  11209. "email": "joel.wurtz@gmail.com"
  11210. },
  11211. {
  11212. "name": "Márk Sági-Kazár",
  11213. "email": "mark.sagikazar@gmail.com"
  11214. }
  11215. ],
  11216. "description": "Promise used for asynchronous HTTP requests",
  11217. "homepage": "http://httplug.io",
  11218. "keywords": [
  11219. "promise"
  11220. ],
  11221. "support": {
  11222. "issues": "https://github.com/php-http/promise/issues",
  11223. "source": "https://github.com/php-http/promise/tree/1.1.0"
  11224. },
  11225. "time": "2020-07-07T09:29:14+00:00"
  11226. },
  11227. {
  11228. "name": "phpmailer/phpmailer",
  11229. "version": "v6.5.4",
  11230. "source": {
  11231. "type": "git",
  11232. "url": "https://github.com/PHPMailer/PHPMailer.git",
  11233. "reference": "c0d9f7dd3c2aa247ca44791e9209233829d82285"
  11234. },
  11235. "dist": {
  11236. "type": "zip",
  11237. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/c0d9f7dd3c2aa247ca44791e9209233829d82285",
  11238. "reference": "c0d9f7dd3c2aa247ca44791e9209233829d82285",
  11239. "shasum": ""
  11240. },
  11241. "require": {
  11242. "ext-ctype": "*",
  11243. "ext-filter": "*",
  11244. "ext-hash": "*",
  11245. "php": ">=5.5.0"
  11246. },
  11247. "require-dev": {
  11248. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  11249. "doctrine/annotations": "^1.2",
  11250. "php-parallel-lint/php-console-highlighter": "^0.5.0",
  11251. "php-parallel-lint/php-parallel-lint": "^1.3.1",
  11252. "phpcompatibility/php-compatibility": "^9.3.5",
  11253. "roave/security-advisories": "dev-latest",
  11254. "squizlabs/php_codesniffer": "^3.6.2",
  11255. "yoast/phpunit-polyfills": "^1.0.0"
  11256. },
  11257. "suggest": {
  11258. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  11259. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  11260. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  11261. "psr/log": "For optional PSR-3 debug logging",
  11262. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  11263. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  11264. },
  11265. "type": "library",
  11266. "autoload": {
  11267. "psr-4": {
  11268. "PHPMailer\\PHPMailer\\": "src/"
  11269. }
  11270. },
  11271. "notification-url": "https://packagist.org/downloads/",
  11272. "license": [
  11273. "LGPL-2.1-only"
  11274. ],
  11275. "authors": [
  11276. {
  11277. "name": "Marcus Bointon",
  11278. "email": "phpmailer@synchromedia.co.uk"
  11279. },
  11280. {
  11281. "name": "Jim Jagielski",
  11282. "email": "jimjag@gmail.com"
  11283. },
  11284. {
  11285. "name": "Andy Prevost",
  11286. "email": "codeworxtech@users.sourceforge.net"
  11287. },
  11288. {
  11289. "name": "Brent R. Matzelle"
  11290. }
  11291. ],
  11292. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  11293. "support": {
  11294. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  11295. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.5.4"
  11296. },
  11297. "funding": [
  11298. {
  11299. "url": "https://github.com/Synchro",
  11300. "type": "github"
  11301. }
  11302. ],
  11303. "time": "2022-02-17T08:19:04+00:00"
  11304. },
  11305. {
  11306. "name": "phpstan/phpstan",
  11307. "version": "1.12.27",
  11308. "source": {
  11309. "type": "git",
  11310. "url": "https://github.com/phpstan/phpstan.git",
  11311. "reference": "3a6e423c076ab39dfedc307e2ac627ef579db162"
  11312. },
  11313. "dist": {
  11314. "type": "zip",
  11315. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/3a6e423c076ab39dfedc307e2ac627ef579db162",
  11316. "reference": "3a6e423c076ab39dfedc307e2ac627ef579db162",
  11317. "shasum": ""
  11318. },
  11319. "require": {
  11320. "php": "^7.2|^8.0"
  11321. },
  11322. "conflict": {
  11323. "phpstan/phpstan-shim": "*"
  11324. },
  11325. "bin": [
  11326. "phpstan",
  11327. "phpstan.phar"
  11328. ],
  11329. "type": "library",
  11330. "autoload": {
  11331. "files": [
  11332. "bootstrap.php"
  11333. ]
  11334. },
  11335. "notification-url": "https://packagist.org/downloads/",
  11336. "license": [
  11337. "MIT"
  11338. ],
  11339. "description": "PHPStan - PHP Static Analysis Tool",
  11340. "keywords": [
  11341. "dev",
  11342. "static analysis"
  11343. ],
  11344. "support": {
  11345. "docs": "https://phpstan.org/user-guide/getting-started",
  11346. "forum": "https://github.com/phpstan/phpstan/discussions",
  11347. "issues": "https://github.com/phpstan/phpstan/issues",
  11348. "security": "https://github.com/phpstan/phpstan/security/policy",
  11349. "source": "https://github.com/phpstan/phpstan-src"
  11350. },
  11351. "funding": [
  11352. {
  11353. "url": "https://github.com/ondrejmirtes",
  11354. "type": "github"
  11355. },
  11356. {
  11357. "url": "https://github.com/phpstan",
  11358. "type": "github"
  11359. }
  11360. ],
  11361. "time": "2025-05-21T20:51:45+00:00"
  11362. },
  11363. {
  11364. "name": "phpstan/phpstan-deprecation-rules",
  11365. "version": "1.2.1",
  11366. "source": {
  11367. "type": "git",
  11368. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  11369. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82"
  11370. },
  11371. "dist": {
  11372. "type": "zip",
  11373. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  11374. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  11375. "shasum": ""
  11376. },
  11377. "require": {
  11378. "php": "^7.2 || ^8.0",
  11379. "phpstan/phpstan": "^1.12"
  11380. },
  11381. "require-dev": {
  11382. "php-parallel-lint/php-parallel-lint": "^1.2",
  11383. "phpstan/phpstan-phpunit": "^1.0",
  11384. "phpunit/phpunit": "^9.5"
  11385. },
  11386. "type": "phpstan-extension",
  11387. "extra": {
  11388. "phpstan": {
  11389. "includes": [
  11390. "rules.neon"
  11391. ]
  11392. }
  11393. },
  11394. "autoload": {
  11395. "psr-4": {
  11396. "PHPStan\\": "src/"
  11397. }
  11398. },
  11399. "notification-url": "https://packagist.org/downloads/",
  11400. "license": [
  11401. "MIT"
  11402. ],
  11403. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  11404. "support": {
  11405. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  11406. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.2.1"
  11407. },
  11408. "time": "2024-09-11T15:52:35+00:00"
  11409. },
  11410. {
  11411. "name": "politsin/jquery-ui-touch-punch",
  11412. "version": "1.0",
  11413. "source": {
  11414. "type": "git",
  11415. "url": "https://github.com/politsin/jquery-ui-touch-punch.git",
  11416. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd"
  11417. },
  11418. "dist": {
  11419. "type": "zip",
  11420. "url": "https://api.github.com/repos/politsin/jquery-ui-touch-punch/zipball/2fe375e05821e267f0f3c0e063197f5c406896dd",
  11421. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd",
  11422. "shasum": ""
  11423. },
  11424. "type": "drupal-library",
  11425. "notification-url": "https://packagist.org/downloads/",
  11426. "license": [
  11427. "MIT"
  11428. ],
  11429. "authors": [
  11430. {
  11431. "name": "Dave Furfero",
  11432. "email": "furf@furf.com"
  11433. }
  11434. ],
  11435. "description": "Extension to jQuery UI for mobile touch event support.",
  11436. "homepage": "http://touchpunch.furf.com/",
  11437. "keywords": [
  11438. "gestures",
  11439. "mobile",
  11440. "touch"
  11441. ],
  11442. "support": {
  11443. "issues": "https://github.com/politsin/jquery-ui-touch-punch/issues",
  11444. "source": "https://github.com/politsin/jquery-ui-touch-punch/tree/1.0"
  11445. },
  11446. "time": "2020-12-15T10:26:18+00:00"
  11447. },
  11448. {
  11449. "name": "psr/cache",
  11450. "version": "1.0.1",
  11451. "source": {
  11452. "type": "git",
  11453. "url": "https://github.com/php-fig/cache.git",
  11454. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  11455. },
  11456. "dist": {
  11457. "type": "zip",
  11458. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  11459. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  11460. "shasum": ""
  11461. },
  11462. "require": {
  11463. "php": ">=5.3.0"
  11464. },
  11465. "type": "library",
  11466. "extra": {
  11467. "branch-alias": {
  11468. "dev-master": "1.0.x-dev"
  11469. }
  11470. },
  11471. "autoload": {
  11472. "psr-4": {
  11473. "Psr\\Cache\\": "src/"
  11474. }
  11475. },
  11476. "notification-url": "https://packagist.org/downloads/",
  11477. "license": [
  11478. "MIT"
  11479. ],
  11480. "authors": [
  11481. {
  11482. "name": "PHP-FIG",
  11483. "homepage": "http://www.php-fig.org/"
  11484. }
  11485. ],
  11486. "description": "Common interface for caching libraries",
  11487. "keywords": [
  11488. "cache",
  11489. "psr",
  11490. "psr-6"
  11491. ],
  11492. "support": {
  11493. "source": "https://github.com/php-fig/cache/tree/master"
  11494. },
  11495. "time": "2016-08-06T20:24:11+00:00"
  11496. },
  11497. {
  11498. "name": "psr/container",
  11499. "version": "1.1.2",
  11500. "source": {
  11501. "type": "git",
  11502. "url": "https://github.com/php-fig/container.git",
  11503. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  11504. },
  11505. "dist": {
  11506. "type": "zip",
  11507. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  11508. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  11509. "shasum": ""
  11510. },
  11511. "require": {
  11512. "php": ">=7.4.0"
  11513. },
  11514. "type": "library",
  11515. "autoload": {
  11516. "psr-4": {
  11517. "Psr\\Container\\": "src/"
  11518. }
  11519. },
  11520. "notification-url": "https://packagist.org/downloads/",
  11521. "license": [
  11522. "MIT"
  11523. ],
  11524. "authors": [
  11525. {
  11526. "name": "PHP-FIG",
  11527. "homepage": "https://www.php-fig.org/"
  11528. }
  11529. ],
  11530. "description": "Common Container Interface (PHP FIG PSR-11)",
  11531. "homepage": "https://github.com/php-fig/container",
  11532. "keywords": [
  11533. "PSR-11",
  11534. "container",
  11535. "container-interface",
  11536. "container-interop",
  11537. "psr"
  11538. ],
  11539. "support": {
  11540. "issues": "https://github.com/php-fig/container/issues",
  11541. "source": "https://github.com/php-fig/container/tree/1.1.2"
  11542. },
  11543. "time": "2021-11-05T16:50:12+00:00"
  11544. },
  11545. {
  11546. "name": "psr/http-client",
  11547. "version": "1.0.3",
  11548. "source": {
  11549. "type": "git",
  11550. "url": "https://github.com/php-fig/http-client.git",
  11551. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  11552. },
  11553. "dist": {
  11554. "type": "zip",
  11555. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  11556. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  11557. "shasum": ""
  11558. },
  11559. "require": {
  11560. "php": "^7.0 || ^8.0",
  11561. "psr/http-message": "^1.0 || ^2.0"
  11562. },
  11563. "type": "library",
  11564. "extra": {
  11565. "branch-alias": {
  11566. "dev-master": "1.0.x-dev"
  11567. }
  11568. },
  11569. "autoload": {
  11570. "psr-4": {
  11571. "Psr\\Http\\Client\\": "src/"
  11572. }
  11573. },
  11574. "notification-url": "https://packagist.org/downloads/",
  11575. "license": [
  11576. "MIT"
  11577. ],
  11578. "authors": [
  11579. {
  11580. "name": "PHP-FIG",
  11581. "homepage": "https://www.php-fig.org/"
  11582. }
  11583. ],
  11584. "description": "Common interface for HTTP clients",
  11585. "homepage": "https://github.com/php-fig/http-client",
  11586. "keywords": [
  11587. "http",
  11588. "http-client",
  11589. "psr",
  11590. "psr-18"
  11591. ],
  11592. "support": {
  11593. "source": "https://github.com/php-fig/http-client"
  11594. },
  11595. "time": "2023-09-23T14:17:50+00:00"
  11596. },
  11597. {
  11598. "name": "psr/http-factory",
  11599. "version": "1.0.2",
  11600. "source": {
  11601. "type": "git",
  11602. "url": "https://github.com/php-fig/http-factory.git",
  11603. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  11604. },
  11605. "dist": {
  11606. "type": "zip",
  11607. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  11608. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  11609. "shasum": ""
  11610. },
  11611. "require": {
  11612. "php": ">=7.0.0",
  11613. "psr/http-message": "^1.0 || ^2.0"
  11614. },
  11615. "type": "library",
  11616. "extra": {
  11617. "branch-alias": {
  11618. "dev-master": "1.0.x-dev"
  11619. }
  11620. },
  11621. "autoload": {
  11622. "psr-4": {
  11623. "Psr\\Http\\Message\\": "src/"
  11624. }
  11625. },
  11626. "notification-url": "https://packagist.org/downloads/",
  11627. "license": [
  11628. "MIT"
  11629. ],
  11630. "authors": [
  11631. {
  11632. "name": "PHP-FIG",
  11633. "homepage": "https://www.php-fig.org/"
  11634. }
  11635. ],
  11636. "description": "Common interfaces for PSR-7 HTTP message factories",
  11637. "keywords": [
  11638. "factory",
  11639. "http",
  11640. "message",
  11641. "psr",
  11642. "psr-17",
  11643. "psr-7",
  11644. "request",
  11645. "response"
  11646. ],
  11647. "support": {
  11648. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  11649. },
  11650. "time": "2023-04-10T20:10:41+00:00"
  11651. },
  11652. {
  11653. "name": "psr/http-message",
  11654. "version": "1.0.1",
  11655. "source": {
  11656. "type": "git",
  11657. "url": "https://github.com/php-fig/http-message.git",
  11658. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  11659. },
  11660. "dist": {
  11661. "type": "zip",
  11662. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  11663. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  11664. "shasum": ""
  11665. },
  11666. "require": {
  11667. "php": ">=5.3.0"
  11668. },
  11669. "type": "library",
  11670. "extra": {
  11671. "branch-alias": {
  11672. "dev-master": "1.0.x-dev"
  11673. }
  11674. },
  11675. "autoload": {
  11676. "psr-4": {
  11677. "Psr\\Http\\Message\\": "src/"
  11678. }
  11679. },
  11680. "notification-url": "https://packagist.org/downloads/",
  11681. "license": [
  11682. "MIT"
  11683. ],
  11684. "authors": [
  11685. {
  11686. "name": "PHP-FIG",
  11687. "homepage": "http://www.php-fig.org/"
  11688. }
  11689. ],
  11690. "description": "Common interface for HTTP messages",
  11691. "homepage": "https://github.com/php-fig/http-message",
  11692. "keywords": [
  11693. "http",
  11694. "http-message",
  11695. "psr",
  11696. "psr-7",
  11697. "request",
  11698. "response"
  11699. ],
  11700. "support": {
  11701. "source": "https://github.com/php-fig/http-message/tree/master"
  11702. },
  11703. "time": "2016-08-06T14:39:51+00:00"
  11704. },
  11705. {
  11706. "name": "psr/log",
  11707. "version": "1.1.4",
  11708. "source": {
  11709. "type": "git",
  11710. "url": "https://github.com/php-fig/log.git",
  11711. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  11712. },
  11713. "dist": {
  11714. "type": "zip",
  11715. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  11716. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  11717. "shasum": ""
  11718. },
  11719. "require": {
  11720. "php": ">=5.3.0"
  11721. },
  11722. "type": "library",
  11723. "extra": {
  11724. "branch-alias": {
  11725. "dev-master": "1.1.x-dev"
  11726. }
  11727. },
  11728. "autoload": {
  11729. "psr-4": {
  11730. "Psr\\Log\\": "Psr/Log/"
  11731. }
  11732. },
  11733. "notification-url": "https://packagist.org/downloads/",
  11734. "license": [
  11735. "MIT"
  11736. ],
  11737. "authors": [
  11738. {
  11739. "name": "PHP-FIG",
  11740. "homepage": "https://www.php-fig.org/"
  11741. }
  11742. ],
  11743. "description": "Common interface for logging libraries",
  11744. "homepage": "https://github.com/php-fig/log",
  11745. "keywords": [
  11746. "log",
  11747. "psr",
  11748. "psr-3"
  11749. ],
  11750. "support": {
  11751. "source": "https://github.com/php-fig/log/tree/1.1.4"
  11752. },
  11753. "time": "2021-05-03T11:20:27+00:00"
  11754. },
  11755. {
  11756. "name": "psy/psysh",
  11757. "version": "v0.11.1",
  11758. "source": {
  11759. "type": "git",
  11760. "url": "https://github.com/bobthecow/psysh.git",
  11761. "reference": "570292577277f06f590635381a7f761a6cf4f026"
  11762. },
  11763. "dist": {
  11764. "type": "zip",
  11765. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/570292577277f06f590635381a7f761a6cf4f026",
  11766. "reference": "570292577277f06f590635381a7f761a6cf4f026",
  11767. "shasum": ""
  11768. },
  11769. "require": {
  11770. "ext-json": "*",
  11771. "ext-tokenizer": "*",
  11772. "nikic/php-parser": "^4.0 || ^3.1",
  11773. "php": "^8.0 || ^7.0.8",
  11774. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  11775. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  11776. },
  11777. "require-dev": {
  11778. "bamarni/composer-bin-plugin": "^1.2",
  11779. "hoa/console": "3.17.05.02"
  11780. },
  11781. "suggest": {
  11782. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  11783. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  11784. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  11785. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  11786. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  11787. },
  11788. "bin": [
  11789. "bin/psysh"
  11790. ],
  11791. "type": "library",
  11792. "extra": {
  11793. "branch-alias": {
  11794. "dev-main": "0.11.x-dev"
  11795. }
  11796. },
  11797. "autoload": {
  11798. "files": [
  11799. "src/functions.php"
  11800. ],
  11801. "psr-4": {
  11802. "Psy\\": "src/"
  11803. }
  11804. },
  11805. "notification-url": "https://packagist.org/downloads/",
  11806. "license": [
  11807. "MIT"
  11808. ],
  11809. "authors": [
  11810. {
  11811. "name": "Justin Hileman",
  11812. "email": "justin@justinhileman.info",
  11813. "homepage": "http://justinhileman.com"
  11814. }
  11815. ],
  11816. "description": "An interactive shell for modern PHP.",
  11817. "homepage": "http://psysh.org",
  11818. "keywords": [
  11819. "REPL",
  11820. "console",
  11821. "interactive",
  11822. "shell"
  11823. ],
  11824. "support": {
  11825. "issues": "https://github.com/bobthecow/psysh/issues",
  11826. "source": "https://github.com/bobthecow/psysh/tree/v0.11.1"
  11827. },
  11828. "time": "2022-01-03T13:58:38+00:00"
  11829. },
  11830. {
  11831. "name": "ralouphie/getallheaders",
  11832. "version": "3.0.3",
  11833. "source": {
  11834. "type": "git",
  11835. "url": "https://github.com/ralouphie/getallheaders.git",
  11836. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  11837. },
  11838. "dist": {
  11839. "type": "zip",
  11840. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  11841. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  11842. "shasum": ""
  11843. },
  11844. "require": {
  11845. "php": ">=5.6"
  11846. },
  11847. "require-dev": {
  11848. "php-coveralls/php-coveralls": "^2.1",
  11849. "phpunit/phpunit": "^5 || ^6.5"
  11850. },
  11851. "type": "library",
  11852. "autoload": {
  11853. "files": [
  11854. "src/getallheaders.php"
  11855. ]
  11856. },
  11857. "notification-url": "https://packagist.org/downloads/",
  11858. "license": [
  11859. "MIT"
  11860. ],
  11861. "authors": [
  11862. {
  11863. "name": "Ralph Khattar",
  11864. "email": "ralph.khattar@gmail.com"
  11865. }
  11866. ],
  11867. "description": "A polyfill for getallheaders.",
  11868. "support": {
  11869. "issues": "https://github.com/ralouphie/getallheaders/issues",
  11870. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  11871. },
  11872. "time": "2019-03-08T08:55:37+00:00"
  11873. },
  11874. {
  11875. "name": "stack/builder",
  11876. "version": "v1.0.6",
  11877. "source": {
  11878. "type": "git",
  11879. "url": "https://github.com/stackphp/builder.git",
  11880. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c"
  11881. },
  11882. "dist": {
  11883. "type": "zip",
  11884. "url": "https://api.github.com/repos/stackphp/builder/zipball/a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  11885. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  11886. "shasum": ""
  11887. },
  11888. "require": {
  11889. "php": ">=7.2.0",
  11890. "symfony/http-foundation": "~2.1|~3.0|~4.0|~5.0",
  11891. "symfony/http-kernel": "~2.1|~3.0|~4.0|~5.0"
  11892. },
  11893. "require-dev": {
  11894. "phpunit/phpunit": "~8.0",
  11895. "symfony/routing": "^5.0"
  11896. },
  11897. "type": "library",
  11898. "extra": {
  11899. "branch-alias": {
  11900. "dev-master": "1.0-dev"
  11901. }
  11902. },
  11903. "autoload": {
  11904. "psr-0": {
  11905. "Stack": "src"
  11906. }
  11907. },
  11908. "notification-url": "https://packagist.org/downloads/",
  11909. "license": [
  11910. "MIT"
  11911. ],
  11912. "authors": [
  11913. {
  11914. "name": "Igor Wiedler",
  11915. "email": "igor@wiedler.ch"
  11916. }
  11917. ],
  11918. "description": "Builder for stack middleware based on HttpKernelInterface.",
  11919. "keywords": [
  11920. "stack"
  11921. ],
  11922. "support": {
  11923. "issues": "https://github.com/stackphp/builder/issues",
  11924. "source": "https://github.com/stackphp/builder/tree/v1.0.6"
  11925. },
  11926. "abandoned": true,
  11927. "time": "2020-01-30T12:17:27+00:00"
  11928. },
  11929. {
  11930. "name": "stecman/symfony-console-completion",
  11931. "version": "0.11.0",
  11932. "source": {
  11933. "type": "git",
  11934. "url": "https://github.com/stecman/symfony-console-completion.git",
  11935. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518"
  11936. },
  11937. "dist": {
  11938. "type": "zip",
  11939. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/a9502dab59405e275a9f264536c4e1cb61fc3518",
  11940. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518",
  11941. "shasum": ""
  11942. },
  11943. "require": {
  11944. "php": ">=5.3.2",
  11945. "symfony/console": "~2.3 || ~3.0 || ~4.0 || ~5.0"
  11946. },
  11947. "require-dev": {
  11948. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  11949. },
  11950. "type": "library",
  11951. "extra": {
  11952. "branch-alias": {
  11953. "dev-master": "0.10.x-dev"
  11954. }
  11955. },
  11956. "autoload": {
  11957. "psr-4": {
  11958. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  11959. }
  11960. },
  11961. "notification-url": "https://packagist.org/downloads/",
  11962. "license": [
  11963. "MIT"
  11964. ],
  11965. "authors": [
  11966. {
  11967. "name": "Stephen Holdaway",
  11968. "email": "stephen@stecman.co.nz"
  11969. }
  11970. ],
  11971. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  11972. "support": {
  11973. "issues": "https://github.com/stecman/symfony-console-completion/issues",
  11974. "source": "https://github.com/stecman/symfony-console-completion/tree/0.11.0"
  11975. },
  11976. "time": "2019-11-24T17:03:06+00:00"
  11977. },
  11978. {
  11979. "name": "symfony-cmf/routing",
  11980. "version": "2.3.4",
  11981. "source": {
  11982. "type": "git",
  11983. "url": "https://github.com/symfony-cmf/Routing.git",
  11984. "reference": "bbcdf2f6301d740454ba9ebb8adaefd436c36a6b"
  11985. },
  11986. "dist": {
  11987. "type": "zip",
  11988. "url": "https://api.github.com/repos/symfony-cmf/Routing/zipball/bbcdf2f6301d740454ba9ebb8adaefd436c36a6b",
  11989. "reference": "bbcdf2f6301d740454ba9ebb8adaefd436c36a6b",
  11990. "shasum": ""
  11991. },
  11992. "require": {
  11993. "php": "^7.2 || ^8.0",
  11994. "psr/log": "^1.0 || ^2.0 || ^3.0",
  11995. "symfony/http-kernel": "^4.4 || ^5.0",
  11996. "symfony/routing": "^4.4 || ^5.0"
  11997. },
  11998. "require-dev": {
  11999. "symfony-cmf/testing": "^3@dev",
  12000. "symfony/config": "^4.4 || ^5.0",
  12001. "symfony/dependency-injection": "^4.4 || ^5.0",
  12002. "symfony/event-dispatcher": "^4.4 || ^5.0",
  12003. "symfony/phpunit-bridge": "^5.0"
  12004. },
  12005. "suggest": {
  12006. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (^4.4 || ^5.0)"
  12007. },
  12008. "type": "library",
  12009. "extra": {
  12010. "branch-alias": {
  12011. "dev-master": "2.x-dev"
  12012. }
  12013. },
  12014. "autoload": {
  12015. "psr-4": {
  12016. "Symfony\\Cmf\\Component\\Routing\\": "src/"
  12017. }
  12018. },
  12019. "notification-url": "https://packagist.org/downloads/",
  12020. "license": [
  12021. "MIT"
  12022. ],
  12023. "authors": [
  12024. {
  12025. "name": "Symfony CMF Community",
  12026. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  12027. }
  12028. ],
  12029. "description": "Extends the Symfony routing component for dynamic routes and chaining several routers",
  12030. "homepage": "http://cmf.symfony.com",
  12031. "keywords": [
  12032. "database",
  12033. "routing"
  12034. ],
  12035. "support": {
  12036. "issues": "https://github.com/symfony-cmf/Routing/issues",
  12037. "source": "https://github.com/symfony-cmf/Routing/tree/2.3.4"
  12038. },
  12039. "time": "2021-11-08T16:33:10+00:00"
  12040. },
  12041. {
  12042. "name": "symfony/config",
  12043. "version": "v4.4.44",
  12044. "source": {
  12045. "type": "git",
  12046. "url": "https://github.com/symfony/config.git",
  12047. "reference": "ed42f8f9da528d2c6cae36fe1f380b0c1d8f0658"
  12048. },
  12049. "dist": {
  12050. "type": "zip",
  12051. "url": "https://api.github.com/repos/symfony/config/zipball/ed42f8f9da528d2c6cae36fe1f380b0c1d8f0658",
  12052. "reference": "ed42f8f9da528d2c6cae36fe1f380b0c1d8f0658",
  12053. "shasum": ""
  12054. },
  12055. "require": {
  12056. "php": ">=7.1.3",
  12057. "symfony/filesystem": "^3.4|^4.0|^5.0",
  12058. "symfony/polyfill-ctype": "~1.8",
  12059. "symfony/polyfill-php80": "^1.16",
  12060. "symfony/polyfill-php81": "^1.22"
  12061. },
  12062. "conflict": {
  12063. "symfony/finder": "<3.4"
  12064. },
  12065. "require-dev": {
  12066. "symfony/event-dispatcher": "^3.4|^4.0|^5.0",
  12067. "symfony/finder": "^3.4|^4.0|^5.0",
  12068. "symfony/messenger": "^4.1|^5.0",
  12069. "symfony/service-contracts": "^1.1|^2",
  12070. "symfony/yaml": "^3.4|^4.0|^5.0"
  12071. },
  12072. "suggest": {
  12073. "symfony/yaml": "To use the yaml reference dumper"
  12074. },
  12075. "type": "library",
  12076. "autoload": {
  12077. "psr-4": {
  12078. "Symfony\\Component\\Config\\": ""
  12079. },
  12080. "exclude-from-classmap": [
  12081. "/Tests/"
  12082. ]
  12083. },
  12084. "notification-url": "https://packagist.org/downloads/",
  12085. "license": [
  12086. "MIT"
  12087. ],
  12088. "authors": [
  12089. {
  12090. "name": "Fabien Potencier",
  12091. "email": "fabien@symfony.com"
  12092. },
  12093. {
  12094. "name": "Symfony Community",
  12095. "homepage": "https://symfony.com/contributors"
  12096. }
  12097. ],
  12098. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  12099. "homepage": "https://symfony.com",
  12100. "support": {
  12101. "source": "https://github.com/symfony/config/tree/v4.4.44"
  12102. },
  12103. "funding": [
  12104. {
  12105. "url": "https://symfony.com/sponsor",
  12106. "type": "custom"
  12107. },
  12108. {
  12109. "url": "https://github.com/fabpot",
  12110. "type": "github"
  12111. },
  12112. {
  12113. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12114. "type": "tidelift"
  12115. }
  12116. ],
  12117. "time": "2022-07-20T09:59:04+00:00"
  12118. },
  12119. {
  12120. "name": "symfony/console",
  12121. "version": "v4.4.49",
  12122. "source": {
  12123. "type": "git",
  12124. "url": "https://github.com/symfony/console.git",
  12125. "reference": "33fa45ffc81fdcc1ca368d4946da859c8cdb58d9"
  12126. },
  12127. "dist": {
  12128. "type": "zip",
  12129. "url": "https://api.github.com/repos/symfony/console/zipball/33fa45ffc81fdcc1ca368d4946da859c8cdb58d9",
  12130. "reference": "33fa45ffc81fdcc1ca368d4946da859c8cdb58d9",
  12131. "shasum": ""
  12132. },
  12133. "require": {
  12134. "php": ">=7.1.3",
  12135. "symfony/polyfill-mbstring": "~1.0",
  12136. "symfony/polyfill-php73": "^1.8",
  12137. "symfony/polyfill-php80": "^1.16",
  12138. "symfony/service-contracts": "^1.1|^2"
  12139. },
  12140. "conflict": {
  12141. "psr/log": ">=3",
  12142. "symfony/dependency-injection": "<3.4",
  12143. "symfony/event-dispatcher": "<4.3|>=5",
  12144. "symfony/lock": "<4.4",
  12145. "symfony/process": "<3.3"
  12146. },
  12147. "provide": {
  12148. "psr/log-implementation": "1.0|2.0"
  12149. },
  12150. "require-dev": {
  12151. "psr/log": "^1|^2",
  12152. "symfony/config": "^3.4|^4.0|^5.0",
  12153. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  12154. "symfony/event-dispatcher": "^4.3",
  12155. "symfony/lock": "^4.4|^5.0",
  12156. "symfony/process": "^3.4|^4.0|^5.0",
  12157. "symfony/var-dumper": "^4.3|^5.0"
  12158. },
  12159. "suggest": {
  12160. "psr/log": "For using the console logger",
  12161. "symfony/event-dispatcher": "",
  12162. "symfony/lock": "",
  12163. "symfony/process": ""
  12164. },
  12165. "type": "library",
  12166. "autoload": {
  12167. "psr-4": {
  12168. "Symfony\\Component\\Console\\": ""
  12169. },
  12170. "exclude-from-classmap": [
  12171. "/Tests/"
  12172. ]
  12173. },
  12174. "notification-url": "https://packagist.org/downloads/",
  12175. "license": [
  12176. "MIT"
  12177. ],
  12178. "authors": [
  12179. {
  12180. "name": "Fabien Potencier",
  12181. "email": "fabien@symfony.com"
  12182. },
  12183. {
  12184. "name": "Symfony Community",
  12185. "homepage": "https://symfony.com/contributors"
  12186. }
  12187. ],
  12188. "description": "Eases the creation of beautiful and testable command line interfaces",
  12189. "homepage": "https://symfony.com",
  12190. "support": {
  12191. "source": "https://github.com/symfony/console/tree/v4.4.49"
  12192. },
  12193. "funding": [
  12194. {
  12195. "url": "https://symfony.com/sponsor",
  12196. "type": "custom"
  12197. },
  12198. {
  12199. "url": "https://github.com/fabpot",
  12200. "type": "github"
  12201. },
  12202. {
  12203. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12204. "type": "tidelift"
  12205. }
  12206. ],
  12207. "time": "2022-11-05T17:10:16+00:00"
  12208. },
  12209. {
  12210. "name": "symfony/css-selector",
  12211. "version": "v4.4.37",
  12212. "source": {
  12213. "type": "git",
  12214. "url": "https://github.com/symfony/css-selector.git",
  12215. "reference": "0628e6c6d7c92f1a7bae543959bdc17347be2436"
  12216. },
  12217. "dist": {
  12218. "type": "zip",
  12219. "url": "https://api.github.com/repos/symfony/css-selector/zipball/0628e6c6d7c92f1a7bae543959bdc17347be2436",
  12220. "reference": "0628e6c6d7c92f1a7bae543959bdc17347be2436",
  12221. "shasum": ""
  12222. },
  12223. "require": {
  12224. "php": ">=7.1.3",
  12225. "symfony/polyfill-php80": "^1.16"
  12226. },
  12227. "type": "library",
  12228. "autoload": {
  12229. "psr-4": {
  12230. "Symfony\\Component\\CssSelector\\": ""
  12231. },
  12232. "exclude-from-classmap": [
  12233. "/Tests/"
  12234. ]
  12235. },
  12236. "notification-url": "https://packagist.org/downloads/",
  12237. "license": [
  12238. "MIT"
  12239. ],
  12240. "authors": [
  12241. {
  12242. "name": "Fabien Potencier",
  12243. "email": "fabien@symfony.com"
  12244. },
  12245. {
  12246. "name": "Jean-François Simon",
  12247. "email": "jeanfrancois.simon@sensiolabs.com"
  12248. },
  12249. {
  12250. "name": "Symfony Community",
  12251. "homepage": "https://symfony.com/contributors"
  12252. }
  12253. ],
  12254. "description": "Converts CSS selectors to XPath expressions",
  12255. "homepage": "https://symfony.com",
  12256. "support": {
  12257. "source": "https://github.com/symfony/css-selector/tree/v4.4.37"
  12258. },
  12259. "funding": [
  12260. {
  12261. "url": "https://symfony.com/sponsor",
  12262. "type": "custom"
  12263. },
  12264. {
  12265. "url": "https://github.com/fabpot",
  12266. "type": "github"
  12267. },
  12268. {
  12269. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12270. "type": "tidelift"
  12271. }
  12272. ],
  12273. "time": "2022-01-02T09:41:36+00:00"
  12274. },
  12275. {
  12276. "name": "symfony/debug",
  12277. "version": "v4.4.44",
  12278. "source": {
  12279. "type": "git",
  12280. "url": "https://github.com/symfony/debug.git",
  12281. "reference": "1a692492190773c5310bc7877cb590c04c2f05be"
  12282. },
  12283. "dist": {
  12284. "type": "zip",
  12285. "url": "https://api.github.com/repos/symfony/debug/zipball/1a692492190773c5310bc7877cb590c04c2f05be",
  12286. "reference": "1a692492190773c5310bc7877cb590c04c2f05be",
  12287. "shasum": ""
  12288. },
  12289. "require": {
  12290. "php": ">=7.1.3",
  12291. "psr/log": "^1|^2|^3"
  12292. },
  12293. "conflict": {
  12294. "symfony/http-kernel": "<3.4"
  12295. },
  12296. "require-dev": {
  12297. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  12298. },
  12299. "type": "library",
  12300. "autoload": {
  12301. "psr-4": {
  12302. "Symfony\\Component\\Debug\\": ""
  12303. },
  12304. "exclude-from-classmap": [
  12305. "/Tests/"
  12306. ]
  12307. },
  12308. "notification-url": "https://packagist.org/downloads/",
  12309. "license": [
  12310. "MIT"
  12311. ],
  12312. "authors": [
  12313. {
  12314. "name": "Fabien Potencier",
  12315. "email": "fabien@symfony.com"
  12316. },
  12317. {
  12318. "name": "Symfony Community",
  12319. "homepage": "https://symfony.com/contributors"
  12320. }
  12321. ],
  12322. "description": "Provides tools to ease debugging PHP code",
  12323. "homepage": "https://symfony.com",
  12324. "support": {
  12325. "source": "https://github.com/symfony/debug/tree/v4.4.44"
  12326. },
  12327. "funding": [
  12328. {
  12329. "url": "https://symfony.com/sponsor",
  12330. "type": "custom"
  12331. },
  12332. {
  12333. "url": "https://github.com/fabpot",
  12334. "type": "github"
  12335. },
  12336. {
  12337. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12338. "type": "tidelift"
  12339. }
  12340. ],
  12341. "abandoned": "symfony/error-handler",
  12342. "time": "2022-07-28T16:29:46+00:00"
  12343. },
  12344. {
  12345. "name": "symfony/dependency-injection",
  12346. "version": "v4.4.49",
  12347. "source": {
  12348. "type": "git",
  12349. "url": "https://github.com/symfony/dependency-injection.git",
  12350. "reference": "9065fe97dbd38a897e95ea254eb5ddfe1310f734"
  12351. },
  12352. "dist": {
  12353. "type": "zip",
  12354. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/9065fe97dbd38a897e95ea254eb5ddfe1310f734",
  12355. "reference": "9065fe97dbd38a897e95ea254eb5ddfe1310f734",
  12356. "shasum": ""
  12357. },
  12358. "require": {
  12359. "php": ">=7.1.3",
  12360. "psr/container": "^1.0",
  12361. "symfony/polyfill-php80": "^1.16",
  12362. "symfony/service-contracts": "^1.1.6|^2"
  12363. },
  12364. "conflict": {
  12365. "symfony/config": "<4.3|>=5.0",
  12366. "symfony/finder": "<3.4",
  12367. "symfony/proxy-manager-bridge": "<3.4",
  12368. "symfony/yaml": "<4.4.26"
  12369. },
  12370. "provide": {
  12371. "psr/container-implementation": "1.0",
  12372. "symfony/service-implementation": "1.0|2.0"
  12373. },
  12374. "require-dev": {
  12375. "symfony/config": "^4.3",
  12376. "symfony/expression-language": "^3.4|^4.0|^5.0",
  12377. "symfony/yaml": "^4.4.26|^5.0"
  12378. },
  12379. "suggest": {
  12380. "symfony/config": "",
  12381. "symfony/expression-language": "For using expressions in service container configuration",
  12382. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  12383. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  12384. "symfony/yaml": ""
  12385. },
  12386. "type": "library",
  12387. "autoload": {
  12388. "psr-4": {
  12389. "Symfony\\Component\\DependencyInjection\\": ""
  12390. },
  12391. "exclude-from-classmap": [
  12392. "/Tests/"
  12393. ]
  12394. },
  12395. "notification-url": "https://packagist.org/downloads/",
  12396. "license": [
  12397. "MIT"
  12398. ],
  12399. "authors": [
  12400. {
  12401. "name": "Fabien Potencier",
  12402. "email": "fabien@symfony.com"
  12403. },
  12404. {
  12405. "name": "Symfony Community",
  12406. "homepage": "https://symfony.com/contributors"
  12407. }
  12408. ],
  12409. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  12410. "homepage": "https://symfony.com",
  12411. "support": {
  12412. "source": "https://github.com/symfony/dependency-injection/tree/v4.4.49"
  12413. },
  12414. "funding": [
  12415. {
  12416. "url": "https://symfony.com/sponsor",
  12417. "type": "custom"
  12418. },
  12419. {
  12420. "url": "https://github.com/fabpot",
  12421. "type": "github"
  12422. },
  12423. {
  12424. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12425. "type": "tidelift"
  12426. }
  12427. ],
  12428. "time": "2022-11-16T16:18:09+00:00"
  12429. },
  12430. {
  12431. "name": "symfony/deprecation-contracts",
  12432. "version": "v2.5.4",
  12433. "source": {
  12434. "type": "git",
  12435. "url": "https://github.com/symfony/deprecation-contracts.git",
  12436. "reference": "605389f2a7e5625f273b53960dc46aeaf9c62918"
  12437. },
  12438. "dist": {
  12439. "type": "zip",
  12440. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/605389f2a7e5625f273b53960dc46aeaf9c62918",
  12441. "reference": "605389f2a7e5625f273b53960dc46aeaf9c62918",
  12442. "shasum": ""
  12443. },
  12444. "require": {
  12445. "php": ">=7.1"
  12446. },
  12447. "type": "library",
  12448. "extra": {
  12449. "thanks": {
  12450. "url": "https://github.com/symfony/contracts",
  12451. "name": "symfony/contracts"
  12452. },
  12453. "branch-alias": {
  12454. "dev-main": "2.5-dev"
  12455. }
  12456. },
  12457. "autoload": {
  12458. "files": [
  12459. "function.php"
  12460. ]
  12461. },
  12462. "notification-url": "https://packagist.org/downloads/",
  12463. "license": [
  12464. "MIT"
  12465. ],
  12466. "authors": [
  12467. {
  12468. "name": "Nicolas Grekas",
  12469. "email": "p@tchwork.com"
  12470. },
  12471. {
  12472. "name": "Symfony Community",
  12473. "homepage": "https://symfony.com/contributors"
  12474. }
  12475. ],
  12476. "description": "A generic function and convention to trigger deprecation notices",
  12477. "homepage": "https://symfony.com",
  12478. "support": {
  12479. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.4"
  12480. },
  12481. "funding": [
  12482. {
  12483. "url": "https://symfony.com/sponsor",
  12484. "type": "custom"
  12485. },
  12486. {
  12487. "url": "https://github.com/fabpot",
  12488. "type": "github"
  12489. },
  12490. {
  12491. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12492. "type": "tidelift"
  12493. }
  12494. ],
  12495. "time": "2024-09-25T14:11:13+00:00"
  12496. },
  12497. {
  12498. "name": "symfony/dom-crawler",
  12499. "version": "v4.4.38",
  12500. "source": {
  12501. "type": "git",
  12502. "url": "https://github.com/symfony/dom-crawler.git",
  12503. "reference": "46e7bd2ff6da01e7ddf40e2d78930e7a621bcb4e"
  12504. },
  12505. "dist": {
  12506. "type": "zip",
  12507. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/46e7bd2ff6da01e7ddf40e2d78930e7a621bcb4e",
  12508. "reference": "46e7bd2ff6da01e7ddf40e2d78930e7a621bcb4e",
  12509. "shasum": ""
  12510. },
  12511. "require": {
  12512. "php": ">=7.1.3",
  12513. "symfony/polyfill-ctype": "~1.8",
  12514. "symfony/polyfill-mbstring": "~1.0",
  12515. "symfony/polyfill-php80": "^1.16"
  12516. },
  12517. "conflict": {
  12518. "masterminds/html5": "<2.6"
  12519. },
  12520. "require-dev": {
  12521. "masterminds/html5": "^2.6",
  12522. "symfony/css-selector": "^3.4|^4.0|^5.0"
  12523. },
  12524. "suggest": {
  12525. "symfony/css-selector": ""
  12526. },
  12527. "type": "library",
  12528. "autoload": {
  12529. "psr-4": {
  12530. "Symfony\\Component\\DomCrawler\\": ""
  12531. },
  12532. "exclude-from-classmap": [
  12533. "/Tests/"
  12534. ]
  12535. },
  12536. "notification-url": "https://packagist.org/downloads/",
  12537. "license": [
  12538. "MIT"
  12539. ],
  12540. "authors": [
  12541. {
  12542. "name": "Fabien Potencier",
  12543. "email": "fabien@symfony.com"
  12544. },
  12545. {
  12546. "name": "Symfony Community",
  12547. "homepage": "https://symfony.com/contributors"
  12548. }
  12549. ],
  12550. "description": "Eases DOM navigation for HTML and XML documents",
  12551. "homepage": "https://symfony.com",
  12552. "support": {
  12553. "source": "https://github.com/symfony/dom-crawler/tree/v4.4.38"
  12554. },
  12555. "funding": [
  12556. {
  12557. "url": "https://symfony.com/sponsor",
  12558. "type": "custom"
  12559. },
  12560. {
  12561. "url": "https://github.com/fabpot",
  12562. "type": "github"
  12563. },
  12564. {
  12565. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12566. "type": "tidelift"
  12567. }
  12568. ],
  12569. "time": "2022-01-31T14:01:05+00:00"
  12570. },
  12571. {
  12572. "name": "symfony/error-handler",
  12573. "version": "v4.4.44",
  12574. "source": {
  12575. "type": "git",
  12576. "url": "https://github.com/symfony/error-handler.git",
  12577. "reference": "be731658121ef2d8be88f3a1ec938148a9237291"
  12578. },
  12579. "dist": {
  12580. "type": "zip",
  12581. "url": "https://api.github.com/repos/symfony/error-handler/zipball/be731658121ef2d8be88f3a1ec938148a9237291",
  12582. "reference": "be731658121ef2d8be88f3a1ec938148a9237291",
  12583. "shasum": ""
  12584. },
  12585. "require": {
  12586. "php": ">=7.1.3",
  12587. "psr/log": "^1|^2|^3",
  12588. "symfony/debug": "^4.4.5",
  12589. "symfony/var-dumper": "^4.4|^5.0"
  12590. },
  12591. "require-dev": {
  12592. "symfony/http-kernel": "^4.4|^5.0",
  12593. "symfony/serializer": "^4.4|^5.0"
  12594. },
  12595. "type": "library",
  12596. "autoload": {
  12597. "psr-4": {
  12598. "Symfony\\Component\\ErrorHandler\\": ""
  12599. },
  12600. "exclude-from-classmap": [
  12601. "/Tests/"
  12602. ]
  12603. },
  12604. "notification-url": "https://packagist.org/downloads/",
  12605. "license": [
  12606. "MIT"
  12607. ],
  12608. "authors": [
  12609. {
  12610. "name": "Fabien Potencier",
  12611. "email": "fabien@symfony.com"
  12612. },
  12613. {
  12614. "name": "Symfony Community",
  12615. "homepage": "https://symfony.com/contributors"
  12616. }
  12617. ],
  12618. "description": "Provides tools to manage errors and ease debugging PHP code",
  12619. "homepage": "https://symfony.com",
  12620. "support": {
  12621. "source": "https://github.com/symfony/error-handler/tree/v4.4.44"
  12622. },
  12623. "funding": [
  12624. {
  12625. "url": "https://symfony.com/sponsor",
  12626. "type": "custom"
  12627. },
  12628. {
  12629. "url": "https://github.com/fabpot",
  12630. "type": "github"
  12631. },
  12632. {
  12633. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12634. "type": "tidelift"
  12635. }
  12636. ],
  12637. "time": "2022-07-28T16:29:46+00:00"
  12638. },
  12639. {
  12640. "name": "symfony/event-dispatcher",
  12641. "version": "v4.4.44",
  12642. "source": {
  12643. "type": "git",
  12644. "url": "https://github.com/symfony/event-dispatcher.git",
  12645. "reference": "1e866e9e5c1b22168e0ce5f0b467f19bba61266a"
  12646. },
  12647. "dist": {
  12648. "type": "zip",
  12649. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1e866e9e5c1b22168e0ce5f0b467f19bba61266a",
  12650. "reference": "1e866e9e5c1b22168e0ce5f0b467f19bba61266a",
  12651. "shasum": ""
  12652. },
  12653. "require": {
  12654. "php": ">=7.1.3",
  12655. "symfony/event-dispatcher-contracts": "^1.1",
  12656. "symfony/polyfill-php80": "^1.16"
  12657. },
  12658. "conflict": {
  12659. "symfony/dependency-injection": "<3.4"
  12660. },
  12661. "provide": {
  12662. "psr/event-dispatcher-implementation": "1.0",
  12663. "symfony/event-dispatcher-implementation": "1.1"
  12664. },
  12665. "require-dev": {
  12666. "psr/log": "^1|^2|^3",
  12667. "symfony/config": "^3.4|^4.0|^5.0",
  12668. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  12669. "symfony/error-handler": "~3.4|~4.4",
  12670. "symfony/expression-language": "^3.4|^4.0|^5.0",
  12671. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  12672. "symfony/service-contracts": "^1.1|^2",
  12673. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  12674. },
  12675. "suggest": {
  12676. "symfony/dependency-injection": "",
  12677. "symfony/http-kernel": ""
  12678. },
  12679. "type": "library",
  12680. "autoload": {
  12681. "psr-4": {
  12682. "Symfony\\Component\\EventDispatcher\\": ""
  12683. },
  12684. "exclude-from-classmap": [
  12685. "/Tests/"
  12686. ]
  12687. },
  12688. "notification-url": "https://packagist.org/downloads/",
  12689. "license": [
  12690. "MIT"
  12691. ],
  12692. "authors": [
  12693. {
  12694. "name": "Fabien Potencier",
  12695. "email": "fabien@symfony.com"
  12696. },
  12697. {
  12698. "name": "Symfony Community",
  12699. "homepage": "https://symfony.com/contributors"
  12700. }
  12701. ],
  12702. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  12703. "homepage": "https://symfony.com",
  12704. "support": {
  12705. "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.44"
  12706. },
  12707. "funding": [
  12708. {
  12709. "url": "https://symfony.com/sponsor",
  12710. "type": "custom"
  12711. },
  12712. {
  12713. "url": "https://github.com/fabpot",
  12714. "type": "github"
  12715. },
  12716. {
  12717. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12718. "type": "tidelift"
  12719. }
  12720. ],
  12721. "time": "2022-07-20T09:59:04+00:00"
  12722. },
  12723. {
  12724. "name": "symfony/event-dispatcher-contracts",
  12725. "version": "v1.1.13",
  12726. "source": {
  12727. "type": "git",
  12728. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  12729. "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e"
  12730. },
  12731. "dist": {
  12732. "type": "zip",
  12733. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/1d5cd762abaa6b2a4169d3e77610193a7157129e",
  12734. "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e",
  12735. "shasum": ""
  12736. },
  12737. "require": {
  12738. "php": ">=7.1.3"
  12739. },
  12740. "suggest": {
  12741. "psr/event-dispatcher": "",
  12742. "symfony/event-dispatcher-implementation": ""
  12743. },
  12744. "type": "library",
  12745. "extra": {
  12746. "thanks": {
  12747. "url": "https://github.com/symfony/contracts",
  12748. "name": "symfony/contracts"
  12749. },
  12750. "branch-alias": {
  12751. "dev-main": "1.1-dev"
  12752. }
  12753. },
  12754. "autoload": {
  12755. "psr-4": {
  12756. "Symfony\\Contracts\\EventDispatcher\\": ""
  12757. }
  12758. },
  12759. "notification-url": "https://packagist.org/downloads/",
  12760. "license": [
  12761. "MIT"
  12762. ],
  12763. "authors": [
  12764. {
  12765. "name": "Nicolas Grekas",
  12766. "email": "p@tchwork.com"
  12767. },
  12768. {
  12769. "name": "Symfony Community",
  12770. "homepage": "https://symfony.com/contributors"
  12771. }
  12772. ],
  12773. "description": "Generic abstractions related to dispatching event",
  12774. "homepage": "https://symfony.com",
  12775. "keywords": [
  12776. "abstractions",
  12777. "contracts",
  12778. "decoupling",
  12779. "interfaces",
  12780. "interoperability",
  12781. "standards"
  12782. ],
  12783. "support": {
  12784. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.13"
  12785. },
  12786. "funding": [
  12787. {
  12788. "url": "https://symfony.com/sponsor",
  12789. "type": "custom"
  12790. },
  12791. {
  12792. "url": "https://github.com/fabpot",
  12793. "type": "github"
  12794. },
  12795. {
  12796. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12797. "type": "tidelift"
  12798. }
  12799. ],
  12800. "time": "2022-01-02T09:41:36+00:00"
  12801. },
  12802. {
  12803. "name": "symfony/filesystem",
  12804. "version": "v4.4.42",
  12805. "source": {
  12806. "type": "git",
  12807. "url": "https://github.com/symfony/filesystem.git",
  12808. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5"
  12809. },
  12810. "dist": {
  12811. "type": "zip",
  12812. "url": "https://api.github.com/repos/symfony/filesystem/zipball/815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  12813. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  12814. "shasum": ""
  12815. },
  12816. "require": {
  12817. "php": ">=7.1.3",
  12818. "symfony/polyfill-ctype": "~1.8",
  12819. "symfony/polyfill-php80": "^1.16"
  12820. },
  12821. "type": "library",
  12822. "autoload": {
  12823. "psr-4": {
  12824. "Symfony\\Component\\Filesystem\\": ""
  12825. },
  12826. "exclude-from-classmap": [
  12827. "/Tests/"
  12828. ]
  12829. },
  12830. "notification-url": "https://packagist.org/downloads/",
  12831. "license": [
  12832. "MIT"
  12833. ],
  12834. "authors": [
  12835. {
  12836. "name": "Fabien Potencier",
  12837. "email": "fabien@symfony.com"
  12838. },
  12839. {
  12840. "name": "Symfony Community",
  12841. "homepage": "https://symfony.com/contributors"
  12842. }
  12843. ],
  12844. "description": "Provides basic utilities for the filesystem",
  12845. "homepage": "https://symfony.com",
  12846. "support": {
  12847. "source": "https://github.com/symfony/filesystem/tree/v4.4.42"
  12848. },
  12849. "funding": [
  12850. {
  12851. "url": "https://symfony.com/sponsor",
  12852. "type": "custom"
  12853. },
  12854. {
  12855. "url": "https://github.com/fabpot",
  12856. "type": "github"
  12857. },
  12858. {
  12859. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12860. "type": "tidelift"
  12861. }
  12862. ],
  12863. "time": "2022-05-20T08:49:14+00:00"
  12864. },
  12865. {
  12866. "name": "symfony/finder",
  12867. "version": "v4.4.44",
  12868. "source": {
  12869. "type": "git",
  12870. "url": "https://github.com/symfony/finder.git",
  12871. "reference": "66bd787edb5e42ff59d3523f623895af05043e4f"
  12872. },
  12873. "dist": {
  12874. "type": "zip",
  12875. "url": "https://api.github.com/repos/symfony/finder/zipball/66bd787edb5e42ff59d3523f623895af05043e4f",
  12876. "reference": "66bd787edb5e42ff59d3523f623895af05043e4f",
  12877. "shasum": ""
  12878. },
  12879. "require": {
  12880. "php": ">=7.1.3",
  12881. "symfony/polyfill-php80": "^1.16"
  12882. },
  12883. "type": "library",
  12884. "autoload": {
  12885. "psr-4": {
  12886. "Symfony\\Component\\Finder\\": ""
  12887. },
  12888. "exclude-from-classmap": [
  12889. "/Tests/"
  12890. ]
  12891. },
  12892. "notification-url": "https://packagist.org/downloads/",
  12893. "license": [
  12894. "MIT"
  12895. ],
  12896. "authors": [
  12897. {
  12898. "name": "Fabien Potencier",
  12899. "email": "fabien@symfony.com"
  12900. },
  12901. {
  12902. "name": "Symfony Community",
  12903. "homepage": "https://symfony.com/contributors"
  12904. }
  12905. ],
  12906. "description": "Finds files and directories via an intuitive fluent interface",
  12907. "homepage": "https://symfony.com",
  12908. "support": {
  12909. "source": "https://github.com/symfony/finder/tree/v4.4.44"
  12910. },
  12911. "funding": [
  12912. {
  12913. "url": "https://symfony.com/sponsor",
  12914. "type": "custom"
  12915. },
  12916. {
  12917. "url": "https://github.com/fabpot",
  12918. "type": "github"
  12919. },
  12920. {
  12921. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12922. "type": "tidelift"
  12923. }
  12924. ],
  12925. "time": "2022-07-29T07:35:46+00:00"
  12926. },
  12927. {
  12928. "name": "symfony/http-client-contracts",
  12929. "version": "v2.5.5",
  12930. "source": {
  12931. "type": "git",
  12932. "url": "https://github.com/symfony/http-client-contracts.git",
  12933. "reference": "48ef1d0a082885877b664332b9427662065a360c"
  12934. },
  12935. "dist": {
  12936. "type": "zip",
  12937. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/48ef1d0a082885877b664332b9427662065a360c",
  12938. "reference": "48ef1d0a082885877b664332b9427662065a360c",
  12939. "shasum": ""
  12940. },
  12941. "require": {
  12942. "php": ">=7.2.5"
  12943. },
  12944. "suggest": {
  12945. "symfony/http-client-implementation": ""
  12946. },
  12947. "type": "library",
  12948. "extra": {
  12949. "thanks": {
  12950. "url": "https://github.com/symfony/contracts",
  12951. "name": "symfony/contracts"
  12952. },
  12953. "branch-alias": {
  12954. "dev-main": "2.5-dev"
  12955. }
  12956. },
  12957. "autoload": {
  12958. "psr-4": {
  12959. "Symfony\\Contracts\\HttpClient\\": ""
  12960. }
  12961. },
  12962. "notification-url": "https://packagist.org/downloads/",
  12963. "license": [
  12964. "MIT"
  12965. ],
  12966. "authors": [
  12967. {
  12968. "name": "Nicolas Grekas",
  12969. "email": "p@tchwork.com"
  12970. },
  12971. {
  12972. "name": "Symfony Community",
  12973. "homepage": "https://symfony.com/contributors"
  12974. }
  12975. ],
  12976. "description": "Generic abstractions related to HTTP clients",
  12977. "homepage": "https://symfony.com",
  12978. "keywords": [
  12979. "abstractions",
  12980. "contracts",
  12981. "decoupling",
  12982. "interfaces",
  12983. "interoperability",
  12984. "standards"
  12985. ],
  12986. "support": {
  12987. "source": "https://github.com/symfony/http-client-contracts/tree/v2.5.5"
  12988. },
  12989. "funding": [
  12990. {
  12991. "url": "https://symfony.com/sponsor",
  12992. "type": "custom"
  12993. },
  12994. {
  12995. "url": "https://github.com/fabpot",
  12996. "type": "github"
  12997. },
  12998. {
  12999. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13000. "type": "tidelift"
  13001. }
  13002. ],
  13003. "time": "2024-11-28T08:37:04+00:00"
  13004. },
  13005. {
  13006. "name": "symfony/http-foundation",
  13007. "version": "v4.4.49",
  13008. "source": {
  13009. "type": "git",
  13010. "url": "https://github.com/symfony/http-foundation.git",
  13011. "reference": "191413c7b832c015bb38eae963f2e57498c3c173"
  13012. },
  13013. "dist": {
  13014. "type": "zip",
  13015. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/191413c7b832c015bb38eae963f2e57498c3c173",
  13016. "reference": "191413c7b832c015bb38eae963f2e57498c3c173",
  13017. "shasum": ""
  13018. },
  13019. "require": {
  13020. "php": ">=7.1.3",
  13021. "symfony/mime": "^4.3|^5.0",
  13022. "symfony/polyfill-mbstring": "~1.1",
  13023. "symfony/polyfill-php80": "^1.16"
  13024. },
  13025. "require-dev": {
  13026. "predis/predis": "~1.0",
  13027. "symfony/expression-language": "^3.4|^4.0|^5.0"
  13028. },
  13029. "type": "library",
  13030. "autoload": {
  13031. "psr-4": {
  13032. "Symfony\\Component\\HttpFoundation\\": ""
  13033. },
  13034. "exclude-from-classmap": [
  13035. "/Tests/"
  13036. ]
  13037. },
  13038. "notification-url": "https://packagist.org/downloads/",
  13039. "license": [
  13040. "MIT"
  13041. ],
  13042. "authors": [
  13043. {
  13044. "name": "Fabien Potencier",
  13045. "email": "fabien@symfony.com"
  13046. },
  13047. {
  13048. "name": "Symfony Community",
  13049. "homepage": "https://symfony.com/contributors"
  13050. }
  13051. ],
  13052. "description": "Defines an object-oriented layer for the HTTP specification",
  13053. "homepage": "https://symfony.com",
  13054. "support": {
  13055. "source": "https://github.com/symfony/http-foundation/tree/v4.4.49"
  13056. },
  13057. "funding": [
  13058. {
  13059. "url": "https://symfony.com/sponsor",
  13060. "type": "custom"
  13061. },
  13062. {
  13063. "url": "https://github.com/fabpot",
  13064. "type": "github"
  13065. },
  13066. {
  13067. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13068. "type": "tidelift"
  13069. }
  13070. ],
  13071. "time": "2022-11-04T16:17:57+00:00"
  13072. },
  13073. {
  13074. "name": "symfony/http-kernel",
  13075. "version": "v4.4.51",
  13076. "source": {
  13077. "type": "git",
  13078. "url": "https://github.com/symfony/http-kernel.git",
  13079. "reference": "ad8ab192cb619ff7285c95d28c69b36d718416c7"
  13080. },
  13081. "dist": {
  13082. "type": "zip",
  13083. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ad8ab192cb619ff7285c95d28c69b36d718416c7",
  13084. "reference": "ad8ab192cb619ff7285c95d28c69b36d718416c7",
  13085. "shasum": ""
  13086. },
  13087. "require": {
  13088. "php": ">=7.1.3",
  13089. "psr/log": "^1|^2",
  13090. "symfony/error-handler": "^4.4",
  13091. "symfony/event-dispatcher": "^4.4",
  13092. "symfony/http-client-contracts": "^1.1|^2",
  13093. "symfony/http-foundation": "^4.4.30|^5.3.7",
  13094. "symfony/polyfill-ctype": "^1.8",
  13095. "symfony/polyfill-php73": "^1.9",
  13096. "symfony/polyfill-php80": "^1.16"
  13097. },
  13098. "conflict": {
  13099. "symfony/browser-kit": "<4.3",
  13100. "symfony/config": "<3.4",
  13101. "symfony/console": ">=5",
  13102. "symfony/dependency-injection": "<4.3",
  13103. "symfony/translation": "<4.2",
  13104. "twig/twig": "<1.43|<2.13,>=2"
  13105. },
  13106. "provide": {
  13107. "psr/log-implementation": "1.0|2.0"
  13108. },
  13109. "require-dev": {
  13110. "psr/cache": "^1.0|^2.0|^3.0",
  13111. "symfony/browser-kit": "^4.3|^5.0",
  13112. "symfony/config": "^3.4|^4.0|^5.0",
  13113. "symfony/console": "^3.4|^4.0",
  13114. "symfony/css-selector": "^3.4|^4.0|^5.0",
  13115. "symfony/dependency-injection": "^4.3|^5.0",
  13116. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  13117. "symfony/expression-language": "^3.4|^4.0|^5.0",
  13118. "symfony/finder": "^3.4|^4.0|^5.0",
  13119. "symfony/process": "^3.4|^4.0|^5.0",
  13120. "symfony/routing": "^3.4|^4.0|^5.0",
  13121. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  13122. "symfony/templating": "^3.4|^4.0|^5.0",
  13123. "symfony/translation": "^4.2|^5.0",
  13124. "symfony/translation-contracts": "^1.1|^2",
  13125. "twig/twig": "^1.43|^2.13|^3.0.4"
  13126. },
  13127. "suggest": {
  13128. "symfony/browser-kit": "",
  13129. "symfony/config": "",
  13130. "symfony/console": "",
  13131. "symfony/dependency-injection": ""
  13132. },
  13133. "type": "library",
  13134. "autoload": {
  13135. "psr-4": {
  13136. "Symfony\\Component\\HttpKernel\\": ""
  13137. },
  13138. "exclude-from-classmap": [
  13139. "/Tests/"
  13140. ]
  13141. },
  13142. "notification-url": "https://packagist.org/downloads/",
  13143. "license": [
  13144. "MIT"
  13145. ],
  13146. "authors": [
  13147. {
  13148. "name": "Fabien Potencier",
  13149. "email": "fabien@symfony.com"
  13150. },
  13151. {
  13152. "name": "Symfony Community",
  13153. "homepage": "https://symfony.com/contributors"
  13154. }
  13155. ],
  13156. "description": "Provides a structured process for converting a Request into a Response",
  13157. "homepage": "https://symfony.com",
  13158. "support": {
  13159. "source": "https://github.com/symfony/http-kernel/tree/v4.4.51"
  13160. },
  13161. "funding": [
  13162. {
  13163. "url": "https://symfony.com/sponsor",
  13164. "type": "custom"
  13165. },
  13166. {
  13167. "url": "https://github.com/fabpot",
  13168. "type": "github"
  13169. },
  13170. {
  13171. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13172. "type": "tidelift"
  13173. }
  13174. ],
  13175. "time": "2023-11-10T13:31:29+00:00"
  13176. },
  13177. {
  13178. "name": "symfony/mime",
  13179. "version": "v5.4.13",
  13180. "source": {
  13181. "type": "git",
  13182. "url": "https://github.com/symfony/mime.git",
  13183. "reference": "bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd"
  13184. },
  13185. "dist": {
  13186. "type": "zip",
  13187. "url": "https://api.github.com/repos/symfony/mime/zipball/bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd",
  13188. "reference": "bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd",
  13189. "shasum": ""
  13190. },
  13191. "require": {
  13192. "php": ">=7.2.5",
  13193. "symfony/deprecation-contracts": "^2.1|^3",
  13194. "symfony/polyfill-intl-idn": "^1.10",
  13195. "symfony/polyfill-mbstring": "^1.0",
  13196. "symfony/polyfill-php80": "^1.16"
  13197. },
  13198. "conflict": {
  13199. "egulias/email-validator": "~3.0.0",
  13200. "phpdocumentor/reflection-docblock": "<3.2.2",
  13201. "phpdocumentor/type-resolver": "<1.4.0",
  13202. "symfony/mailer": "<4.4"
  13203. },
  13204. "require-dev": {
  13205. "egulias/email-validator": "^2.1.10|^3.1",
  13206. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  13207. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  13208. "symfony/property-access": "^4.4|^5.1|^6.0",
  13209. "symfony/property-info": "^4.4|^5.1|^6.0",
  13210. "symfony/serializer": "^5.2|^6.0"
  13211. },
  13212. "type": "library",
  13213. "autoload": {
  13214. "psr-4": {
  13215. "Symfony\\Component\\Mime\\": ""
  13216. },
  13217. "exclude-from-classmap": [
  13218. "/Tests/"
  13219. ]
  13220. },
  13221. "notification-url": "https://packagist.org/downloads/",
  13222. "license": [
  13223. "MIT"
  13224. ],
  13225. "authors": [
  13226. {
  13227. "name": "Fabien Potencier",
  13228. "email": "fabien@symfony.com"
  13229. },
  13230. {
  13231. "name": "Symfony Community",
  13232. "homepage": "https://symfony.com/contributors"
  13233. }
  13234. ],
  13235. "description": "Allows manipulating MIME messages",
  13236. "homepage": "https://symfony.com",
  13237. "keywords": [
  13238. "mime",
  13239. "mime-type"
  13240. ],
  13241. "support": {
  13242. "source": "https://github.com/symfony/mime/tree/v5.4.13"
  13243. },
  13244. "funding": [
  13245. {
  13246. "url": "https://symfony.com/sponsor",
  13247. "type": "custom"
  13248. },
  13249. {
  13250. "url": "https://github.com/fabpot",
  13251. "type": "github"
  13252. },
  13253. {
  13254. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13255. "type": "tidelift"
  13256. }
  13257. ],
  13258. "time": "2022-09-01T18:18:29+00:00"
  13259. },
  13260. {
  13261. "name": "symfony/polyfill-ctype",
  13262. "version": "v1.27.0",
  13263. "source": {
  13264. "type": "git",
  13265. "url": "https://github.com/symfony/polyfill-ctype.git",
  13266. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  13267. },
  13268. "dist": {
  13269. "type": "zip",
  13270. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  13271. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  13272. "shasum": ""
  13273. },
  13274. "require": {
  13275. "php": ">=7.1"
  13276. },
  13277. "provide": {
  13278. "ext-ctype": "*"
  13279. },
  13280. "suggest": {
  13281. "ext-ctype": "For best performance"
  13282. },
  13283. "type": "library",
  13284. "extra": {
  13285. "thanks": {
  13286. "url": "https://github.com/symfony/polyfill",
  13287. "name": "symfony/polyfill"
  13288. },
  13289. "branch-alias": {
  13290. "dev-main": "1.27-dev"
  13291. }
  13292. },
  13293. "autoload": {
  13294. "files": [
  13295. "bootstrap.php"
  13296. ],
  13297. "psr-4": {
  13298. "Symfony\\Polyfill\\Ctype\\": ""
  13299. }
  13300. },
  13301. "notification-url": "https://packagist.org/downloads/",
  13302. "license": [
  13303. "MIT"
  13304. ],
  13305. "authors": [
  13306. {
  13307. "name": "Gert de Pagter",
  13308. "email": "BackEndTea@gmail.com"
  13309. },
  13310. {
  13311. "name": "Symfony Community",
  13312. "homepage": "https://symfony.com/contributors"
  13313. }
  13314. ],
  13315. "description": "Symfony polyfill for ctype functions",
  13316. "homepage": "https://symfony.com",
  13317. "keywords": [
  13318. "compatibility",
  13319. "ctype",
  13320. "polyfill",
  13321. "portable"
  13322. ],
  13323. "support": {
  13324. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  13325. },
  13326. "funding": [
  13327. {
  13328. "url": "https://symfony.com/sponsor",
  13329. "type": "custom"
  13330. },
  13331. {
  13332. "url": "https://github.com/fabpot",
  13333. "type": "github"
  13334. },
  13335. {
  13336. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13337. "type": "tidelift"
  13338. }
  13339. ],
  13340. "time": "2022-11-03T14:55:06+00:00"
  13341. },
  13342. {
  13343. "name": "symfony/polyfill-iconv",
  13344. "version": "v1.27.0",
  13345. "source": {
  13346. "type": "git",
  13347. "url": "https://github.com/symfony/polyfill-iconv.git",
  13348. "reference": "927013f3aac555983a5059aada98e1907d842695"
  13349. },
  13350. "dist": {
  13351. "type": "zip",
  13352. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695",
  13353. "reference": "927013f3aac555983a5059aada98e1907d842695",
  13354. "shasum": ""
  13355. },
  13356. "require": {
  13357. "php": ">=7.1"
  13358. },
  13359. "provide": {
  13360. "ext-iconv": "*"
  13361. },
  13362. "suggest": {
  13363. "ext-iconv": "For best performance"
  13364. },
  13365. "type": "library",
  13366. "extra": {
  13367. "thanks": {
  13368. "url": "https://github.com/symfony/polyfill",
  13369. "name": "symfony/polyfill"
  13370. },
  13371. "branch-alias": {
  13372. "dev-main": "1.27-dev"
  13373. }
  13374. },
  13375. "autoload": {
  13376. "files": [
  13377. "bootstrap.php"
  13378. ],
  13379. "psr-4": {
  13380. "Symfony\\Polyfill\\Iconv\\": ""
  13381. }
  13382. },
  13383. "notification-url": "https://packagist.org/downloads/",
  13384. "license": [
  13385. "MIT"
  13386. ],
  13387. "authors": [
  13388. {
  13389. "name": "Nicolas Grekas",
  13390. "email": "p@tchwork.com"
  13391. },
  13392. {
  13393. "name": "Symfony Community",
  13394. "homepage": "https://symfony.com/contributors"
  13395. }
  13396. ],
  13397. "description": "Symfony polyfill for the Iconv extension",
  13398. "homepage": "https://symfony.com",
  13399. "keywords": [
  13400. "compatibility",
  13401. "iconv",
  13402. "polyfill",
  13403. "portable",
  13404. "shim"
  13405. ],
  13406. "support": {
  13407. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0"
  13408. },
  13409. "funding": [
  13410. {
  13411. "url": "https://symfony.com/sponsor",
  13412. "type": "custom"
  13413. },
  13414. {
  13415. "url": "https://github.com/fabpot",
  13416. "type": "github"
  13417. },
  13418. {
  13419. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13420. "type": "tidelift"
  13421. }
  13422. ],
  13423. "time": "2022-11-03T14:55:06+00:00"
  13424. },
  13425. {
  13426. "name": "symfony/polyfill-intl-idn",
  13427. "version": "v1.27.0",
  13428. "source": {
  13429. "type": "git",
  13430. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  13431. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  13432. },
  13433. "dist": {
  13434. "type": "zip",
  13435. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  13436. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  13437. "shasum": ""
  13438. },
  13439. "require": {
  13440. "php": ">=7.1",
  13441. "symfony/polyfill-intl-normalizer": "^1.10",
  13442. "symfony/polyfill-php72": "^1.10"
  13443. },
  13444. "suggest": {
  13445. "ext-intl": "For best performance"
  13446. },
  13447. "type": "library",
  13448. "extra": {
  13449. "thanks": {
  13450. "url": "https://github.com/symfony/polyfill",
  13451. "name": "symfony/polyfill"
  13452. },
  13453. "branch-alias": {
  13454. "dev-main": "1.27-dev"
  13455. }
  13456. },
  13457. "autoload": {
  13458. "files": [
  13459. "bootstrap.php"
  13460. ],
  13461. "psr-4": {
  13462. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  13463. }
  13464. },
  13465. "notification-url": "https://packagist.org/downloads/",
  13466. "license": [
  13467. "MIT"
  13468. ],
  13469. "authors": [
  13470. {
  13471. "name": "Laurent Bassin",
  13472. "email": "laurent@bassin.info"
  13473. },
  13474. {
  13475. "name": "Trevor Rowbotham",
  13476. "email": "trevor.rowbotham@pm.me"
  13477. },
  13478. {
  13479. "name": "Symfony Community",
  13480. "homepage": "https://symfony.com/contributors"
  13481. }
  13482. ],
  13483. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  13484. "homepage": "https://symfony.com",
  13485. "keywords": [
  13486. "compatibility",
  13487. "idn",
  13488. "intl",
  13489. "polyfill",
  13490. "portable",
  13491. "shim"
  13492. ],
  13493. "support": {
  13494. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  13495. },
  13496. "funding": [
  13497. {
  13498. "url": "https://symfony.com/sponsor",
  13499. "type": "custom"
  13500. },
  13501. {
  13502. "url": "https://github.com/fabpot",
  13503. "type": "github"
  13504. },
  13505. {
  13506. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13507. "type": "tidelift"
  13508. }
  13509. ],
  13510. "time": "2022-11-03T14:55:06+00:00"
  13511. },
  13512. {
  13513. "name": "symfony/polyfill-intl-normalizer",
  13514. "version": "v1.27.0",
  13515. "source": {
  13516. "type": "git",
  13517. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  13518. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  13519. },
  13520. "dist": {
  13521. "type": "zip",
  13522. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  13523. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  13524. "shasum": ""
  13525. },
  13526. "require": {
  13527. "php": ">=7.1"
  13528. },
  13529. "suggest": {
  13530. "ext-intl": "For best performance"
  13531. },
  13532. "type": "library",
  13533. "extra": {
  13534. "thanks": {
  13535. "url": "https://github.com/symfony/polyfill",
  13536. "name": "symfony/polyfill"
  13537. },
  13538. "branch-alias": {
  13539. "dev-main": "1.27-dev"
  13540. }
  13541. },
  13542. "autoload": {
  13543. "files": [
  13544. "bootstrap.php"
  13545. ],
  13546. "psr-4": {
  13547. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  13548. },
  13549. "classmap": [
  13550. "Resources/stubs"
  13551. ]
  13552. },
  13553. "notification-url": "https://packagist.org/downloads/",
  13554. "license": [
  13555. "MIT"
  13556. ],
  13557. "authors": [
  13558. {
  13559. "name": "Nicolas Grekas",
  13560. "email": "p@tchwork.com"
  13561. },
  13562. {
  13563. "name": "Symfony Community",
  13564. "homepage": "https://symfony.com/contributors"
  13565. }
  13566. ],
  13567. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  13568. "homepage": "https://symfony.com",
  13569. "keywords": [
  13570. "compatibility",
  13571. "intl",
  13572. "normalizer",
  13573. "polyfill",
  13574. "portable",
  13575. "shim"
  13576. ],
  13577. "support": {
  13578. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  13579. },
  13580. "funding": [
  13581. {
  13582. "url": "https://symfony.com/sponsor",
  13583. "type": "custom"
  13584. },
  13585. {
  13586. "url": "https://github.com/fabpot",
  13587. "type": "github"
  13588. },
  13589. {
  13590. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13591. "type": "tidelift"
  13592. }
  13593. ],
  13594. "time": "2022-11-03T14:55:06+00:00"
  13595. },
  13596. {
  13597. "name": "symfony/polyfill-mbstring",
  13598. "version": "v1.27.0",
  13599. "source": {
  13600. "type": "git",
  13601. "url": "https://github.com/symfony/polyfill-mbstring.git",
  13602. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  13603. },
  13604. "dist": {
  13605. "type": "zip",
  13606. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  13607. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  13608. "shasum": ""
  13609. },
  13610. "require": {
  13611. "php": ">=7.1"
  13612. },
  13613. "provide": {
  13614. "ext-mbstring": "*"
  13615. },
  13616. "suggest": {
  13617. "ext-mbstring": "For best performance"
  13618. },
  13619. "type": "library",
  13620. "extra": {
  13621. "thanks": {
  13622. "url": "https://github.com/symfony/polyfill",
  13623. "name": "symfony/polyfill"
  13624. },
  13625. "branch-alias": {
  13626. "dev-main": "1.27-dev"
  13627. }
  13628. },
  13629. "autoload": {
  13630. "files": [
  13631. "bootstrap.php"
  13632. ],
  13633. "psr-4": {
  13634. "Symfony\\Polyfill\\Mbstring\\": ""
  13635. }
  13636. },
  13637. "notification-url": "https://packagist.org/downloads/",
  13638. "license": [
  13639. "MIT"
  13640. ],
  13641. "authors": [
  13642. {
  13643. "name": "Nicolas Grekas",
  13644. "email": "p@tchwork.com"
  13645. },
  13646. {
  13647. "name": "Symfony Community",
  13648. "homepage": "https://symfony.com/contributors"
  13649. }
  13650. ],
  13651. "description": "Symfony polyfill for the Mbstring extension",
  13652. "homepage": "https://symfony.com",
  13653. "keywords": [
  13654. "compatibility",
  13655. "mbstring",
  13656. "polyfill",
  13657. "portable",
  13658. "shim"
  13659. ],
  13660. "support": {
  13661. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  13662. },
  13663. "funding": [
  13664. {
  13665. "url": "https://symfony.com/sponsor",
  13666. "type": "custom"
  13667. },
  13668. {
  13669. "url": "https://github.com/fabpot",
  13670. "type": "github"
  13671. },
  13672. {
  13673. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13674. "type": "tidelift"
  13675. }
  13676. ],
  13677. "time": "2022-11-03T14:55:06+00:00"
  13678. },
  13679. {
  13680. "name": "symfony/polyfill-php72",
  13681. "version": "v1.31.0",
  13682. "source": {
  13683. "type": "git",
  13684. "url": "https://github.com/symfony/polyfill-php72.git",
  13685. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce"
  13686. },
  13687. "dist": {
  13688. "type": "zip",
  13689. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  13690. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  13691. "shasum": ""
  13692. },
  13693. "require": {
  13694. "php": ">=7.2"
  13695. },
  13696. "type": "metapackage",
  13697. "extra": {
  13698. "thanks": {
  13699. "url": "https://github.com/symfony/polyfill",
  13700. "name": "symfony/polyfill"
  13701. }
  13702. },
  13703. "notification-url": "https://packagist.org/downloads/",
  13704. "license": [
  13705. "MIT"
  13706. ],
  13707. "authors": [
  13708. {
  13709. "name": "Nicolas Grekas",
  13710. "email": "p@tchwork.com"
  13711. },
  13712. {
  13713. "name": "Symfony Community",
  13714. "homepage": "https://symfony.com/contributors"
  13715. }
  13716. ],
  13717. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  13718. "homepage": "https://symfony.com",
  13719. "keywords": [
  13720. "compatibility",
  13721. "polyfill",
  13722. "portable",
  13723. "shim"
  13724. ],
  13725. "support": {
  13726. "source": "https://github.com/symfony/polyfill-php72/tree/v1.31.0"
  13727. },
  13728. "funding": [
  13729. {
  13730. "url": "https://symfony.com/sponsor",
  13731. "type": "custom"
  13732. },
  13733. {
  13734. "url": "https://github.com/fabpot",
  13735. "type": "github"
  13736. },
  13737. {
  13738. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13739. "type": "tidelift"
  13740. }
  13741. ],
  13742. "time": "2024-09-09T11:45:10+00:00"
  13743. },
  13744. {
  13745. "name": "symfony/polyfill-php73",
  13746. "version": "v1.32.0",
  13747. "source": {
  13748. "type": "git",
  13749. "url": "https://github.com/symfony/polyfill-php73.git",
  13750. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb"
  13751. },
  13752. "dist": {
  13753. "type": "zip",
  13754. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  13755. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  13756. "shasum": ""
  13757. },
  13758. "require": {
  13759. "php": ">=7.2"
  13760. },
  13761. "type": "library",
  13762. "extra": {
  13763. "thanks": {
  13764. "url": "https://github.com/symfony/polyfill",
  13765. "name": "symfony/polyfill"
  13766. }
  13767. },
  13768. "autoload": {
  13769. "files": [
  13770. "bootstrap.php"
  13771. ],
  13772. "psr-4": {
  13773. "Symfony\\Polyfill\\Php73\\": ""
  13774. },
  13775. "classmap": [
  13776. "Resources/stubs"
  13777. ]
  13778. },
  13779. "notification-url": "https://packagist.org/downloads/",
  13780. "license": [
  13781. "MIT"
  13782. ],
  13783. "authors": [
  13784. {
  13785. "name": "Nicolas Grekas",
  13786. "email": "p@tchwork.com"
  13787. },
  13788. {
  13789. "name": "Symfony Community",
  13790. "homepage": "https://symfony.com/contributors"
  13791. }
  13792. ],
  13793. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  13794. "homepage": "https://symfony.com",
  13795. "keywords": [
  13796. "compatibility",
  13797. "polyfill",
  13798. "portable",
  13799. "shim"
  13800. ],
  13801. "support": {
  13802. "source": "https://github.com/symfony/polyfill-php73/tree/v1.32.0"
  13803. },
  13804. "funding": [
  13805. {
  13806. "url": "https://symfony.com/sponsor",
  13807. "type": "custom"
  13808. },
  13809. {
  13810. "url": "https://github.com/fabpot",
  13811. "type": "github"
  13812. },
  13813. {
  13814. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13815. "type": "tidelift"
  13816. }
  13817. ],
  13818. "time": "2024-09-09T11:45:10+00:00"
  13819. },
  13820. {
  13821. "name": "symfony/polyfill-php80",
  13822. "version": "v1.27.0",
  13823. "source": {
  13824. "type": "git",
  13825. "url": "https://github.com/symfony/polyfill-php80.git",
  13826. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  13827. },
  13828. "dist": {
  13829. "type": "zip",
  13830. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  13831. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  13832. "shasum": ""
  13833. },
  13834. "require": {
  13835. "php": ">=7.1"
  13836. },
  13837. "type": "library",
  13838. "extra": {
  13839. "thanks": {
  13840. "url": "https://github.com/symfony/polyfill",
  13841. "name": "symfony/polyfill"
  13842. },
  13843. "branch-alias": {
  13844. "dev-main": "1.27-dev"
  13845. }
  13846. },
  13847. "autoload": {
  13848. "files": [
  13849. "bootstrap.php"
  13850. ],
  13851. "psr-4": {
  13852. "Symfony\\Polyfill\\Php80\\": ""
  13853. },
  13854. "classmap": [
  13855. "Resources/stubs"
  13856. ]
  13857. },
  13858. "notification-url": "https://packagist.org/downloads/",
  13859. "license": [
  13860. "MIT"
  13861. ],
  13862. "authors": [
  13863. {
  13864. "name": "Ion Bazan",
  13865. "email": "ion.bazan@gmail.com"
  13866. },
  13867. {
  13868. "name": "Nicolas Grekas",
  13869. "email": "p@tchwork.com"
  13870. },
  13871. {
  13872. "name": "Symfony Community",
  13873. "homepage": "https://symfony.com/contributors"
  13874. }
  13875. ],
  13876. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  13877. "homepage": "https://symfony.com",
  13878. "keywords": [
  13879. "compatibility",
  13880. "polyfill",
  13881. "portable",
  13882. "shim"
  13883. ],
  13884. "support": {
  13885. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  13886. },
  13887. "funding": [
  13888. {
  13889. "url": "https://symfony.com/sponsor",
  13890. "type": "custom"
  13891. },
  13892. {
  13893. "url": "https://github.com/fabpot",
  13894. "type": "github"
  13895. },
  13896. {
  13897. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13898. "type": "tidelift"
  13899. }
  13900. ],
  13901. "time": "2022-11-03T14:55:06+00:00"
  13902. },
  13903. {
  13904. "name": "symfony/polyfill-php81",
  13905. "version": "v1.32.0",
  13906. "source": {
  13907. "type": "git",
  13908. "url": "https://github.com/symfony/polyfill-php81.git",
  13909. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  13910. },
  13911. "dist": {
  13912. "type": "zip",
  13913. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  13914. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  13915. "shasum": ""
  13916. },
  13917. "require": {
  13918. "php": ">=7.2"
  13919. },
  13920. "type": "library",
  13921. "extra": {
  13922. "thanks": {
  13923. "url": "https://github.com/symfony/polyfill",
  13924. "name": "symfony/polyfill"
  13925. }
  13926. },
  13927. "autoload": {
  13928. "files": [
  13929. "bootstrap.php"
  13930. ],
  13931. "psr-4": {
  13932. "Symfony\\Polyfill\\Php81\\": ""
  13933. },
  13934. "classmap": [
  13935. "Resources/stubs"
  13936. ]
  13937. },
  13938. "notification-url": "https://packagist.org/downloads/",
  13939. "license": [
  13940. "MIT"
  13941. ],
  13942. "authors": [
  13943. {
  13944. "name": "Nicolas Grekas",
  13945. "email": "p@tchwork.com"
  13946. },
  13947. {
  13948. "name": "Symfony Community",
  13949. "homepage": "https://symfony.com/contributors"
  13950. }
  13951. ],
  13952. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  13953. "homepage": "https://symfony.com",
  13954. "keywords": [
  13955. "compatibility",
  13956. "polyfill",
  13957. "portable",
  13958. "shim"
  13959. ],
  13960. "support": {
  13961. "source": "https://github.com/symfony/polyfill-php81/tree/v1.32.0"
  13962. },
  13963. "funding": [
  13964. {
  13965. "url": "https://symfony.com/sponsor",
  13966. "type": "custom"
  13967. },
  13968. {
  13969. "url": "https://github.com/fabpot",
  13970. "type": "github"
  13971. },
  13972. {
  13973. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13974. "type": "tidelift"
  13975. }
  13976. ],
  13977. "time": "2024-09-09T11:45:10+00:00"
  13978. },
  13979. {
  13980. "name": "symfony/process",
  13981. "version": "v4.4.44",
  13982. "source": {
  13983. "type": "git",
  13984. "url": "https://github.com/symfony/process.git",
  13985. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2"
  13986. },
  13987. "dist": {
  13988. "type": "zip",
  13989. "url": "https://api.github.com/repos/symfony/process/zipball/5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  13990. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  13991. "shasum": ""
  13992. },
  13993. "require": {
  13994. "php": ">=7.1.3",
  13995. "symfony/polyfill-php80": "^1.16"
  13996. },
  13997. "type": "library",
  13998. "autoload": {
  13999. "psr-4": {
  14000. "Symfony\\Component\\Process\\": ""
  14001. },
  14002. "exclude-from-classmap": [
  14003. "/Tests/"
  14004. ]
  14005. },
  14006. "notification-url": "https://packagist.org/downloads/",
  14007. "license": [
  14008. "MIT"
  14009. ],
  14010. "authors": [
  14011. {
  14012. "name": "Fabien Potencier",
  14013. "email": "fabien@symfony.com"
  14014. },
  14015. {
  14016. "name": "Symfony Community",
  14017. "homepage": "https://symfony.com/contributors"
  14018. }
  14019. ],
  14020. "description": "Executes commands in sub-processes",
  14021. "homepage": "https://symfony.com",
  14022. "support": {
  14023. "source": "https://github.com/symfony/process/tree/v4.4.44"
  14024. },
  14025. "funding": [
  14026. {
  14027. "url": "https://symfony.com/sponsor",
  14028. "type": "custom"
  14029. },
  14030. {
  14031. "url": "https://github.com/fabpot",
  14032. "type": "github"
  14033. },
  14034. {
  14035. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  14036. "type": "tidelift"
  14037. }
  14038. ],
  14039. "time": "2022-06-27T13:16:42+00:00"
  14040. },
  14041. {
  14042. "name": "symfony/psr-http-message-bridge",
  14043. "version": "v2.1.4",
  14044. "source": {
  14045. "type": "git",
  14046. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  14047. "reference": "a125b93ef378c492e274f217874906fb9babdebb"
  14048. },
  14049. "dist": {
  14050. "type": "zip",
  14051. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a125b93ef378c492e274f217874906fb9babdebb",
  14052. "reference": "a125b93ef378c492e274f217874906fb9babdebb",
  14053. "shasum": ""
  14054. },
  14055. "require": {
  14056. "php": ">=7.1",
  14057. "psr/http-message": "^1.0",
  14058. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  14059. },
  14060. "require-dev": {
  14061. "nyholm/psr7": "^1.1",
  14062. "psr/log": "^1.1 || ^2 || ^3",
  14063. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  14064. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  14065. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  14066. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  14067. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  14068. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  14069. },
  14070. "suggest": {
  14071. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  14072. },
  14073. "type": "symfony-bridge",
  14074. "extra": {
  14075. "branch-alias": {
  14076. "dev-main": "2.1-dev"
  14077. }
  14078. },
  14079. "autoload": {
  14080. "psr-4": {
  14081. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  14082. },
  14083. "exclude-from-classmap": [
  14084. "/Tests/"
  14085. ]
  14086. },
  14087. "notification-url": "https://packagist.org/downloads/",
  14088. "license": [
  14089. "MIT"
  14090. ],
  14091. "authors": [
  14092. {
  14093. "name": "Fabien Potencier",
  14094. "email": "fabien@symfony.com"
  14095. },
  14096. {
  14097. "name": "Symfony Community",
  14098. "homepage": "http://symfony.com/contributors"
  14099. }
  14100. ],
  14101. "description": "PSR HTTP message bridge",
  14102. "homepage": "http://symfony.com",
  14103. "keywords": [
  14104. "http",
  14105. "http-message",
  14106. "psr-17",
  14107. "psr-7"
  14108. ],
  14109. "support": {
  14110. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  14111. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.4"
  14112. },
  14113. "funding": [
  14114. {
  14115. "url": "https://symfony.com/sponsor",
  14116. "type": "custom"
  14117. },
  14118. {
  14119. "url": "https://github.com/fabpot",
  14120. "type": "github"
  14121. },
  14122. {
  14123. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  14124. "type": "tidelift"
  14125. }
  14126. ],
  14127. "time": "2022-11-28T22:46:34+00:00"
  14128. },
  14129. {
  14130. "name": "symfony/routing",
  14131. "version": "v4.4.44",
  14132. "source": {
  14133. "type": "git",
  14134. "url": "https://github.com/symfony/routing.git",
  14135. "reference": "f7751fd8b60a07f3f349947a309b5bdfce22d6ae"
  14136. },
  14137. "dist": {
  14138. "type": "zip",
  14139. "url": "https://api.github.com/repos/symfony/routing/zipball/f7751fd8b60a07f3f349947a309b5bdfce22d6ae",
  14140. "reference": "f7751fd8b60a07f3f349947a309b5bdfce22d6ae",
  14141. "shasum": ""
  14142. },
  14143. "require": {
  14144. "php": ">=7.1.3",
  14145. "symfony/polyfill-php80": "^1.16"
  14146. },
  14147. "conflict": {
  14148. "symfony/config": "<4.2",
  14149. "symfony/dependency-injection": "<3.4",
  14150. "symfony/yaml": "<3.4"
  14151. },
  14152. "require-dev": {
  14153. "doctrine/annotations": "^1.10.4",
  14154. "psr/log": "^1|^2|^3",
  14155. "symfony/config": "^4.2|^5.0",
  14156. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  14157. "symfony/expression-language": "^3.4|^4.0|^5.0",
  14158. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  14159. "symfony/yaml": "^3.4|^4.0|^5.0"
  14160. },
  14161. "suggest": {
  14162. "doctrine/annotations": "For using the annotation loader",
  14163. "symfony/config": "For using the all-in-one router or any loader",
  14164. "symfony/expression-language": "For using expression matching",
  14165. "symfony/http-foundation": "For using a Symfony Request object",
  14166. "symfony/yaml": "For using the YAML loader"
  14167. },
  14168. "type": "library",
  14169. "autoload": {
  14170. "psr-4": {
  14171. "Symfony\\Component\\Routing\\": ""
  14172. },
  14173. "exclude-from-classmap": [
  14174. "/Tests/"
  14175. ]
  14176. },
  14177. "notification-url": "https://packagist.org/downloads/",
  14178. "license": [
  14179. "MIT"
  14180. ],
  14181. "authors": [
  14182. {
  14183. "name": "Fabien Potencier",
  14184. "email": "fabien@symfony.com"
  14185. },
  14186. {
  14187. "name": "Symfony Community",
  14188. "homepage": "https://symfony.com/contributors"
  14189. }
  14190. ],
  14191. "description": "Maps an HTTP request to a set of configuration variables",
  14192. "homepage": "https://symfony.com",
  14193. "keywords": [
  14194. "router",
  14195. "routing",
  14196. "uri",
  14197. "url"
  14198. ],
  14199. "support": {
  14200. "source": "https://github.com/symfony/routing/tree/v4.4.44"
  14201. },
  14202. "funding": [
  14203. {
  14204. "url": "https://symfony.com/sponsor",
  14205. "type": "custom"
  14206. },
  14207. {
  14208. "url": "https://github.com/fabpot",
  14209. "type": "github"
  14210. },
  14211. {
  14212. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  14213. "type": "tidelift"
  14214. }
  14215. ],
  14216. "time": "2022-07-20T09:59:04+00:00"
  14217. },
  14218. {
  14219. "name": "symfony/serializer",
  14220. "version": "v4.4.47",
  14221. "source": {
  14222. "type": "git",
  14223. "url": "https://github.com/symfony/serializer.git",
  14224. "reference": "6e01d63c55657930a6de03d6e36aae50af98888d"
  14225. },
  14226. "dist": {
  14227. "type": "zip",
  14228. "url": "https://api.github.com/repos/symfony/serializer/zipball/6e01d63c55657930a6de03d6e36aae50af98888d",
  14229. "reference": "6e01d63c55657930a6de03d6e36aae50af98888d",
  14230. "shasum": ""
  14231. },
  14232. "require": {
  14233. "php": ">=7.1.3",
  14234. "symfony/polyfill-ctype": "~1.8",
  14235. "symfony/polyfill-php80": "^1.16"
  14236. },
  14237. "conflict": {
  14238. "phpdocumentor/reflection-docblock": "<3.0|>=3.2.0,<3.2.2",
  14239. "phpdocumentor/type-resolver": "<0.3.0|1.3.*",
  14240. "symfony/dependency-injection": "<3.4",
  14241. "symfony/property-access": "<3.4",
  14242. "symfony/property-info": "<3.4",
  14243. "symfony/yaml": "<3.4"
  14244. },
  14245. "require-dev": {
  14246. "doctrine/annotations": "^1.10.4",
  14247. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  14248. "symfony/cache": "^3.4|^4.0|^5.0",
  14249. "symfony/config": "^3.4|^4.0|^5.0",
  14250. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  14251. "symfony/error-handler": "^4.4|^5.0",
  14252. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  14253. "symfony/mime": "^4.4|^5.0",
  14254. "symfony/property-access": "^4.4.36|^5.3.13",
  14255. "symfony/property-info": "^3.4.13|~4.0|^5.0",
  14256. "symfony/validator": "^3.4|^4.0|^5.0",
  14257. "symfony/yaml": "^3.4|^4.0|^5.0"
  14258. },
  14259. "suggest": {
  14260. "doctrine/annotations": "For using the annotation mapping.",
  14261. "psr/cache-implementation": "For using the metadata cache.",
  14262. "symfony/config": "For using the XML mapping loader.",
  14263. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  14264. "symfony/property-access": "For using the ObjectNormalizer.",
  14265. "symfony/property-info": "To deserialize relations.",
  14266. "symfony/yaml": "For using the default YAML mapping loader."
  14267. },
  14268. "type": "library",
  14269. "autoload": {
  14270. "psr-4": {
  14271. "Symfony\\Component\\Serializer\\": ""
  14272. },
  14273. "exclude-from-classmap": [
  14274. "/Tests/"
  14275. ]
  14276. },
  14277. "notification-url": "https://packagist.org/downloads/",
  14278. "license": [
  14279. "MIT"
  14280. ],
  14281. "authors": [
  14282. {
  14283. "name": "Fabien Potencier",
  14284. "email": "fabien@symfony.com"
  14285. },
  14286. {
  14287. "name": "Symfony Community",
  14288. "homepage": "https://symfony.com/contributors"
  14289. }
  14290. ],
  14291. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  14292. "homepage": "https://symfony.com",
  14293. "support": {
  14294. "source": "https://github.com/symfony/serializer/tree/v4.4.47"
  14295. },
  14296. "funding": [
  14297. {
  14298. "url": "https://symfony.com/sponsor",
  14299. "type": "custom"
  14300. },
  14301. {
  14302. "url": "https://github.com/fabpot",
  14303. "type": "github"
  14304. },
  14305. {
  14306. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  14307. "type": "tidelift"
  14308. }
  14309. ],
  14310. "time": "2022-09-19T08:38:33+00:00"
  14311. },
  14312. {
  14313. "name": "symfony/service-contracts",
  14314. "version": "v2.5.4",
  14315. "source": {
  14316. "type": "git",
  14317. "url": "https://github.com/symfony/service-contracts.git",
  14318. "reference": "f37b419f7aea2e9abf10abd261832cace12e3300"
  14319. },
  14320. "dist": {
  14321. "type": "zip",
  14322. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f37b419f7aea2e9abf10abd261832cace12e3300",
  14323. "reference": "f37b419f7aea2e9abf10abd261832cace12e3300",
  14324. "shasum": ""
  14325. },
  14326. "require": {
  14327. "php": ">=7.2.5",
  14328. "psr/container": "^1.1",
  14329. "symfony/deprecation-contracts": "^2.1|^3"
  14330. },
  14331. "conflict": {
  14332. "ext-psr": "<1.1|>=2"
  14333. },
  14334. "suggest": {
  14335. "symfony/service-implementation": ""
  14336. },
  14337. "type": "library",
  14338. "extra": {
  14339. "thanks": {
  14340. "url": "https://github.com/symfony/contracts",
  14341. "name": "symfony/contracts"
  14342. },
  14343. "branch-alias": {
  14344. "dev-main": "2.5-dev"
  14345. }
  14346. },
  14347. "autoload": {
  14348. "psr-4": {
  14349. "Symfony\\Contracts\\Service\\": ""
  14350. }
  14351. },
  14352. "notification-url": "https://packagist.org/downloads/",
  14353. "license": [
  14354. "MIT"
  14355. ],
  14356. "authors": [
  14357. {
  14358. "name": "Nicolas Grekas",
  14359. "email": "p@tchwork.com"
  14360. },
  14361. {
  14362. "name": "Symfony Community",
  14363. "homepage": "https://symfony.com/contributors"
  14364. }
  14365. ],
  14366. "description": "Generic abstractions related to writing services",
  14367. "homepage": "https://symfony.com",
  14368. "keywords": [
  14369. "abstractions",
  14370. "contracts",
  14371. "decoupling",
  14372. "interfaces",
  14373. "interoperability",
  14374. "standards"
  14375. ],
  14376. "support": {
  14377. "source": "https://github.com/symfony/service-contracts/tree/v2.5.4"
  14378. },
  14379. "funding": [
  14380. {
  14381. "url": "https://symfony.com/sponsor",
  14382. "type": "custom"
  14383. },
  14384. {
  14385. "url": "https://github.com/fabpot",
  14386. "type": "github"
  14387. },
  14388. {
  14389. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  14390. "type": "tidelift"
  14391. }
  14392. ],
  14393. "time": "2024-09-25T14:11:13+00:00"
  14394. },
  14395. {
  14396. "name": "symfony/translation",
  14397. "version": "v4.4.47",
  14398. "source": {
  14399. "type": "git",
  14400. "url": "https://github.com/symfony/translation.git",
  14401. "reference": "45036b1d53accc48fe9bab71ccd86d57eba0dd94"
  14402. },
  14403. "dist": {
  14404. "type": "zip",
  14405. "url": "https://api.github.com/repos/symfony/translation/zipball/45036b1d53accc48fe9bab71ccd86d57eba0dd94",
  14406. "reference": "45036b1d53accc48fe9bab71ccd86d57eba0dd94",
  14407. "shasum": ""
  14408. },
  14409. "require": {
  14410. "php": ">=7.1.3",
  14411. "symfony/polyfill-mbstring": "~1.0",
  14412. "symfony/polyfill-php80": "^1.16",
  14413. "symfony/translation-contracts": "^1.1.6|^2"
  14414. },
  14415. "conflict": {
  14416. "symfony/config": "<3.4",
  14417. "symfony/dependency-injection": "<3.4",
  14418. "symfony/http-kernel": "<4.4",
  14419. "symfony/yaml": "<3.4"
  14420. },
  14421. "provide": {
  14422. "symfony/translation-implementation": "1.0|2.0"
  14423. },
  14424. "require-dev": {
  14425. "psr/log": "^1|^2|^3",
  14426. "symfony/config": "^3.4|^4.0|^5.0",
  14427. "symfony/console": "^3.4|^4.0|^5.0",
  14428. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  14429. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  14430. "symfony/http-kernel": "^4.4",
  14431. "symfony/intl": "^3.4|^4.0|^5.0",
  14432. "symfony/service-contracts": "^1.1.2|^2",
  14433. "symfony/yaml": "^3.4|^4.0|^5.0"
  14434. },
  14435. "suggest": {
  14436. "psr/log-implementation": "To use logging capability in translator",
  14437. "symfony/config": "",
  14438. "symfony/yaml": ""
  14439. },
  14440. "type": "library",
  14441. "autoload": {
  14442. "psr-4": {
  14443. "Symfony\\Component\\Translation\\": ""
  14444. },
  14445. "exclude-from-classmap": [
  14446. "/Tests/"
  14447. ]
  14448. },
  14449. "notification-url": "https://packagist.org/downloads/",
  14450. "license": [
  14451. "MIT"
  14452. ],
  14453. "authors": [
  14454. {
  14455. "name": "Fabien Potencier",
  14456. "email": "fabien@symfony.com"
  14457. },
  14458. {
  14459. "name": "Symfony Community",
  14460. "homepage": "https://symfony.com/contributors"
  14461. }
  14462. ],
  14463. "description": "Provides tools to internationalize your application",
  14464. "homepage": "https://symfony.com",
  14465. "support": {
  14466. "source": "https://github.com/symfony/translation/tree/v4.4.47"
  14467. },
  14468. "funding": [
  14469. {
  14470. "url": "https://symfony.com/sponsor",
  14471. "type": "custom"
  14472. },
  14473. {
  14474. "url": "https://github.com/fabpot",
  14475. "type": "github"
  14476. },
  14477. {
  14478. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  14479. "type": "tidelift"
  14480. }
  14481. ],
  14482. "time": "2022-10-03T15:15:11+00:00"
  14483. },
  14484. {
  14485. "name": "symfony/translation-contracts",
  14486. "version": "v2.5.4",
  14487. "source": {
  14488. "type": "git",
  14489. "url": "https://github.com/symfony/translation-contracts.git",
  14490. "reference": "450d4172653f38818657022252f9d81be89ee9a8"
  14491. },
  14492. "dist": {
  14493. "type": "zip",
  14494. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/450d4172653f38818657022252f9d81be89ee9a8",
  14495. "reference": "450d4172653f38818657022252f9d81be89ee9a8",
  14496. "shasum": ""
  14497. },
  14498. "require": {
  14499. "php": ">=7.2.5"
  14500. },
  14501. "suggest": {
  14502. "symfony/translation-implementation": ""
  14503. },
  14504. "type": "library",
  14505. "extra": {
  14506. "thanks": {
  14507. "url": "https://github.com/symfony/contracts",
  14508. "name": "symfony/contracts"
  14509. },
  14510. "branch-alias": {
  14511. "dev-main": "2.5-dev"
  14512. }
  14513. },
  14514. "autoload": {
  14515. "psr-4": {
  14516. "Symfony\\Contracts\\Translation\\": ""
  14517. }
  14518. },
  14519. "notification-url": "https://packagist.org/downloads/",
  14520. "license": [
  14521. "MIT"
  14522. ],
  14523. "authors": [
  14524. {
  14525. "name": "Nicolas Grekas",
  14526. "email": "p@tchwork.com"
  14527. },
  14528. {
  14529. "name": "Symfony Community",
  14530. "homepage": "https://symfony.com/contributors"
  14531. }
  14532. ],
  14533. "description": "Generic abstractions related to translation",
  14534. "homepage": "https://symfony.com",
  14535. "keywords": [
  14536. "abstractions",
  14537. "contracts",
  14538. "decoupling",
  14539. "interfaces",
  14540. "interoperability",
  14541. "standards"
  14542. ],
  14543. "support": {
  14544. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.4"
  14545. },
  14546. "funding": [
  14547. {
  14548. "url": "https://symfony.com/sponsor",
  14549. "type": "custom"
  14550. },
  14551. {
  14552. "url": "https://github.com/fabpot",
  14553. "type": "github"
  14554. },
  14555. {
  14556. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  14557. "type": "tidelift"
  14558. }
  14559. ],
  14560. "time": "2024-09-25T14:11:13+00:00"
  14561. },
  14562. {
  14563. "name": "symfony/validator",
  14564. "version": "v4.4.48",
  14565. "source": {
  14566. "type": "git",
  14567. "url": "https://github.com/symfony/validator.git",
  14568. "reference": "54781a4c41efbd283b779110bf8ae7f263737775"
  14569. },
  14570. "dist": {
  14571. "type": "zip",
  14572. "url": "https://api.github.com/repos/symfony/validator/zipball/54781a4c41efbd283b779110bf8ae7f263737775",
  14573. "reference": "54781a4c41efbd283b779110bf8ae7f263737775",
  14574. "shasum": ""
  14575. },
  14576. "require": {
  14577. "php": ">=7.1.3",
  14578. "symfony/polyfill-ctype": "~1.8",
  14579. "symfony/polyfill-mbstring": "~1.0",
  14580. "symfony/polyfill-php80": "^1.16",
  14581. "symfony/translation-contracts": "^1.1|^2"
  14582. },
  14583. "conflict": {
  14584. "doctrine/lexer": "<1.1",
  14585. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  14586. "symfony/dependency-injection": "<3.4",
  14587. "symfony/http-kernel": "<4.4",
  14588. "symfony/intl": "<4.3",
  14589. "symfony/translation": ">=5.0",
  14590. "symfony/yaml": "<3.4"
  14591. },
  14592. "require-dev": {
  14593. "doctrine/annotations": "^1.10.4",
  14594. "doctrine/cache": "^1.0|^2.0",
  14595. "egulias/email-validator": "^2.1.10|^3",
  14596. "symfony/cache": "^3.4|^4.0|^5.0",
  14597. "symfony/config": "^3.4|^4.0|^5.0",
  14598. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  14599. "symfony/expression-language": "^3.4|^4.0|^5.0",
  14600. "symfony/http-client": "^4.3|^5.0",
  14601. "symfony/http-foundation": "^4.1|^5.0",
  14602. "symfony/http-kernel": "^4.4",
  14603. "symfony/intl": "^4.3|^5.0",
  14604. "symfony/mime": "^4.4|^5.0",
  14605. "symfony/property-access": "^3.4|^4.0|^5.0",
  14606. "symfony/property-info": "^3.4|^4.0|^5.0",
  14607. "symfony/translation": "^4.2",
  14608. "symfony/yaml": "^3.4|^4.0|^5.0"
  14609. },
  14610. "suggest": {
  14611. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  14612. "doctrine/cache": "For using the default cached annotation reader.",
  14613. "egulias/email-validator": "Strict (RFC compliant) email validation",
  14614. "psr/cache-implementation": "For using the mapping cache.",
  14615. "symfony/config": "",
  14616. "symfony/expression-language": "For using the Expression validator",
  14617. "symfony/http-foundation": "",
  14618. "symfony/intl": "",
  14619. "symfony/property-access": "For accessing properties within comparison constraints",
  14620. "symfony/property-info": "To automatically add NotNull and Type constraints",
  14621. "symfony/translation": "For translating validation errors.",
  14622. "symfony/yaml": ""
  14623. },
  14624. "type": "library",
  14625. "autoload": {
  14626. "psr-4": {
  14627. "Symfony\\Component\\Validator\\": ""
  14628. },
  14629. "exclude-from-classmap": [
  14630. "/Tests/"
  14631. ]
  14632. },
  14633. "notification-url": "https://packagist.org/downloads/",
  14634. "license": [
  14635. "MIT"
  14636. ],
  14637. "authors": [
  14638. {
  14639. "name": "Fabien Potencier",
  14640. "email": "fabien@symfony.com"
  14641. },
  14642. {
  14643. "name": "Symfony Community",
  14644. "homepage": "https://symfony.com/contributors"
  14645. }
  14646. ],
  14647. "description": "Provides tools to validate values",
  14648. "homepage": "https://symfony.com",
  14649. "support": {
  14650. "source": "https://github.com/symfony/validator/tree/v4.4.48"
  14651. },
  14652. "funding": [
  14653. {
  14654. "url": "https://symfony.com/sponsor",
  14655. "type": "custom"
  14656. },
  14657. {
  14658. "url": "https://github.com/fabpot",
  14659. "type": "github"
  14660. },
  14661. {
  14662. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  14663. "type": "tidelift"
  14664. }
  14665. ],
  14666. "time": "2022-10-25T13:54:11+00:00"
  14667. },
  14668. {
  14669. "name": "symfony/var-dumper",
  14670. "version": "v5.4.48",
  14671. "source": {
  14672. "type": "git",
  14673. "url": "https://github.com/symfony/var-dumper.git",
  14674. "reference": "42f18f170aa86d612c3559cfb3bd11a375df32c8"
  14675. },
  14676. "dist": {
  14677. "type": "zip",
  14678. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/42f18f170aa86d612c3559cfb3bd11a375df32c8",
  14679. "reference": "42f18f170aa86d612c3559cfb3bd11a375df32c8",
  14680. "shasum": ""
  14681. },
  14682. "require": {
  14683. "php": ">=7.2.5",
  14684. "symfony/polyfill-mbstring": "~1.0",
  14685. "symfony/polyfill-php80": "^1.16"
  14686. },
  14687. "conflict": {
  14688. "symfony/console": "<4.4"
  14689. },
  14690. "require-dev": {
  14691. "ext-iconv": "*",
  14692. "symfony/console": "^4.4|^5.0|^6.0",
  14693. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  14694. "symfony/process": "^4.4|^5.0|^6.0",
  14695. "symfony/uid": "^5.1|^6.0",
  14696. "twig/twig": "^2.13|^3.0.4"
  14697. },
  14698. "suggest": {
  14699. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  14700. "ext-intl": "To show region name in time zone dump",
  14701. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  14702. },
  14703. "bin": [
  14704. "Resources/bin/var-dump-server"
  14705. ],
  14706. "type": "library",
  14707. "autoload": {
  14708. "files": [
  14709. "Resources/functions/dump.php"
  14710. ],
  14711. "psr-4": {
  14712. "Symfony\\Component\\VarDumper\\": ""
  14713. },
  14714. "exclude-from-classmap": [
  14715. "/Tests/"
  14716. ]
  14717. },
  14718. "notification-url": "https://packagist.org/downloads/",
  14719. "license": [
  14720. "MIT"
  14721. ],
  14722. "authors": [
  14723. {
  14724. "name": "Nicolas Grekas",
  14725. "email": "p@tchwork.com"
  14726. },
  14727. {
  14728. "name": "Symfony Community",
  14729. "homepage": "https://symfony.com/contributors"
  14730. }
  14731. ],
  14732. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  14733. "homepage": "https://symfony.com",
  14734. "keywords": [
  14735. "debug",
  14736. "dump"
  14737. ],
  14738. "support": {
  14739. "source": "https://github.com/symfony/var-dumper/tree/v5.4.48"
  14740. },
  14741. "funding": [
  14742. {
  14743. "url": "https://symfony.com/sponsor",
  14744. "type": "custom"
  14745. },
  14746. {
  14747. "url": "https://github.com/fabpot",
  14748. "type": "github"
  14749. },
  14750. {
  14751. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  14752. "type": "tidelift"
  14753. }
  14754. ],
  14755. "time": "2024-11-08T15:21:10+00:00"
  14756. },
  14757. {
  14758. "name": "symfony/yaml",
  14759. "version": "v4.4.45",
  14760. "source": {
  14761. "type": "git",
  14762. "url": "https://github.com/symfony/yaml.git",
  14763. "reference": "aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d"
  14764. },
  14765. "dist": {
  14766. "type": "zip",
  14767. "url": "https://api.github.com/repos/symfony/yaml/zipball/aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d",
  14768. "reference": "aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d",
  14769. "shasum": ""
  14770. },
  14771. "require": {
  14772. "php": ">=7.1.3",
  14773. "symfony/polyfill-ctype": "~1.8"
  14774. },
  14775. "conflict": {
  14776. "symfony/console": "<3.4"
  14777. },
  14778. "require-dev": {
  14779. "symfony/console": "^3.4|^4.0|^5.0"
  14780. },
  14781. "suggest": {
  14782. "symfony/console": "For validating YAML files using the lint command"
  14783. },
  14784. "type": "library",
  14785. "autoload": {
  14786. "psr-4": {
  14787. "Symfony\\Component\\Yaml\\": ""
  14788. },
  14789. "exclude-from-classmap": [
  14790. "/Tests/"
  14791. ]
  14792. },
  14793. "notification-url": "https://packagist.org/downloads/",
  14794. "license": [
  14795. "MIT"
  14796. ],
  14797. "authors": [
  14798. {
  14799. "name": "Fabien Potencier",
  14800. "email": "fabien@symfony.com"
  14801. },
  14802. {
  14803. "name": "Symfony Community",
  14804. "homepage": "https://symfony.com/contributors"
  14805. }
  14806. ],
  14807. "description": "Loads and dumps YAML files",
  14808. "homepage": "https://symfony.com",
  14809. "support": {
  14810. "source": "https://github.com/symfony/yaml/tree/v4.4.45"
  14811. },
  14812. "funding": [
  14813. {
  14814. "url": "https://symfony.com/sponsor",
  14815. "type": "custom"
  14816. },
  14817. {
  14818. "url": "https://github.com/fabpot",
  14819. "type": "github"
  14820. },
  14821. {
  14822. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  14823. "type": "tidelift"
  14824. }
  14825. ],
  14826. "time": "2022-08-02T15:47:23+00:00"
  14827. },
  14828. {
  14829. "name": "twig/twig",
  14830. "version": "v2.15.6",
  14831. "source": {
  14832. "type": "git",
  14833. "url": "https://github.com/twigphp/Twig.git",
  14834. "reference": "ad637405a828601a56f32ccab9a85541c4b66c9d"
  14835. },
  14836. "dist": {
  14837. "type": "zip",
  14838. "url": "https://api.github.com/repos/twigphp/Twig/zipball/ad637405a828601a56f32ccab9a85541c4b66c9d",
  14839. "reference": "ad637405a828601a56f32ccab9a85541c4b66c9d",
  14840. "shasum": ""
  14841. },
  14842. "require": {
  14843. "php": ">=7.1.3",
  14844. "symfony/polyfill-ctype": "^1.8",
  14845. "symfony/polyfill-mbstring": "^1.3",
  14846. "symfony/polyfill-php72": "^1.8"
  14847. },
  14848. "require-dev": {
  14849. "psr/container": "^1.0",
  14850. "symfony/phpunit-bridge": "^5.4.9|^6.3"
  14851. },
  14852. "type": "library",
  14853. "extra": {
  14854. "branch-alias": {
  14855. "dev-master": "2.15-dev"
  14856. }
  14857. },
  14858. "autoload": {
  14859. "psr-0": {
  14860. "Twig_": "lib/"
  14861. },
  14862. "psr-4": {
  14863. "Twig\\": "src/"
  14864. }
  14865. },
  14866. "notification-url": "https://packagist.org/downloads/",
  14867. "license": [
  14868. "BSD-3-Clause"
  14869. ],
  14870. "authors": [
  14871. {
  14872. "name": "Fabien Potencier",
  14873. "email": "fabien@symfony.com",
  14874. "homepage": "http://fabien.potencier.org",
  14875. "role": "Lead Developer"
  14876. },
  14877. {
  14878. "name": "Twig Team",
  14879. "role": "Contributors"
  14880. },
  14881. {
  14882. "name": "Armin Ronacher",
  14883. "email": "armin.ronacher@active-4.com",
  14884. "role": "Project Founder"
  14885. }
  14886. ],
  14887. "description": "Twig, the flexible, fast, and secure template language for PHP",
  14888. "homepage": "https://twig.symfony.com",
  14889. "keywords": [
  14890. "templating"
  14891. ],
  14892. "support": {
  14893. "issues": "https://github.com/twigphp/Twig/issues",
  14894. "source": "https://github.com/twigphp/Twig/tree/v2.15.6"
  14895. },
  14896. "funding": [
  14897. {
  14898. "url": "https://github.com/fabpot",
  14899. "type": "github"
  14900. },
  14901. {
  14902. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  14903. "type": "tidelift"
  14904. }
  14905. ],
  14906. "time": "2023-11-21T17:34:48+00:00"
  14907. },
  14908. {
  14909. "name": "typo3/phar-stream-wrapper",
  14910. "version": "v3.1.8",
  14911. "source": {
  14912. "type": "git",
  14913. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  14914. "reference": "a931b28f422a60052db85c0a84a05a366453b2c0"
  14915. },
  14916. "dist": {
  14917. "type": "zip",
  14918. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/a931b28f422a60052db85c0a84a05a366453b2c0",
  14919. "reference": "a931b28f422a60052db85c0a84a05a366453b2c0",
  14920. "shasum": ""
  14921. },
  14922. "require": {
  14923. "ext-json": "*",
  14924. "php": "^7.0 || ~8.0 || ~8.1 || ~8.2 || ~8.3"
  14925. },
  14926. "require-dev": {
  14927. "ext-xdebug": "*",
  14928. "phpspec/prophecy": "^1.10",
  14929. "symfony/phpunit-bridge": "^5.1"
  14930. },
  14931. "suggest": {
  14932. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  14933. },
  14934. "type": "library",
  14935. "extra": {
  14936. "branch-alias": {
  14937. "dev-master": "v3.x-dev"
  14938. }
  14939. },
  14940. "autoload": {
  14941. "psr-4": {
  14942. "TYPO3\\PharStreamWrapper\\": "src/"
  14943. }
  14944. },
  14945. "notification-url": "https://packagist.org/downloads/",
  14946. "license": [
  14947. "MIT"
  14948. ],
  14949. "description": "Interceptors for PHP's native phar:// stream handling",
  14950. "homepage": "https://typo3.org/",
  14951. "keywords": [
  14952. "phar",
  14953. "php",
  14954. "security",
  14955. "stream-wrapper"
  14956. ],
  14957. "support": {
  14958. "issues": "https://github.com/TYPO3/phar-stream-wrapper/issues",
  14959. "source": "https://github.com/TYPO3/phar-stream-wrapper/tree/v3.1.8"
  14960. },
  14961. "time": "2024-12-09T23:06:33+00:00"
  14962. },
  14963. {
  14964. "name": "webflo/drupal-finder",
  14965. "version": "1.2.2",
  14966. "source": {
  14967. "type": "git",
  14968. "url": "https://github.com/webflo/drupal-finder.git",
  14969. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  14970. },
  14971. "dist": {
  14972. "type": "zip",
  14973. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  14974. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  14975. "shasum": ""
  14976. },
  14977. "require": {
  14978. "ext-json": "*"
  14979. },
  14980. "require-dev": {
  14981. "mikey179/vfsstream": "^1.6",
  14982. "phpunit/phpunit": "^4.8"
  14983. },
  14984. "type": "library",
  14985. "autoload": {
  14986. "classmap": [
  14987. "src/DrupalFinder.php"
  14988. ]
  14989. },
  14990. "notification-url": "https://packagist.org/downloads/",
  14991. "license": [
  14992. "GPL-2.0-or-later"
  14993. ],
  14994. "authors": [
  14995. {
  14996. "name": "Florian Weber",
  14997. "email": "florian@webflo.org"
  14998. }
  14999. ],
  15000. "description": "Helper class to locate a Drupal installation from a given path.",
  15001. "support": {
  15002. "issues": "https://github.com/webflo/drupal-finder/issues",
  15003. "source": "https://github.com/webflo/drupal-finder/tree/1.2.2"
  15004. },
  15005. "time": "2020-10-27T09:42:17+00:00"
  15006. },
  15007. {
  15008. "name": "webmozart/assert",
  15009. "version": "1.11.0",
  15010. "source": {
  15011. "type": "git",
  15012. "url": "https://github.com/webmozarts/assert.git",
  15013. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  15014. },
  15015. "dist": {
  15016. "type": "zip",
  15017. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  15018. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  15019. "shasum": ""
  15020. },
  15021. "require": {
  15022. "ext-ctype": "*",
  15023. "php": "^7.2 || ^8.0"
  15024. },
  15025. "conflict": {
  15026. "phpstan/phpstan": "<0.12.20",
  15027. "vimeo/psalm": "<4.6.1 || 4.6.2"
  15028. },
  15029. "require-dev": {
  15030. "phpunit/phpunit": "^8.5.13"
  15031. },
  15032. "type": "library",
  15033. "extra": {
  15034. "branch-alias": {
  15035. "dev-master": "1.10-dev"
  15036. }
  15037. },
  15038. "autoload": {
  15039. "psr-4": {
  15040. "Webmozart\\Assert\\": "src/"
  15041. }
  15042. },
  15043. "notification-url": "https://packagist.org/downloads/",
  15044. "license": [
  15045. "MIT"
  15046. ],
  15047. "authors": [
  15048. {
  15049. "name": "Bernhard Schussek",
  15050. "email": "bschussek@gmail.com"
  15051. }
  15052. ],
  15053. "description": "Assertions to validate method input/output with nice error messages.",
  15054. "keywords": [
  15055. "assert",
  15056. "check",
  15057. "validate"
  15058. ],
  15059. "support": {
  15060. "issues": "https://github.com/webmozarts/assert/issues",
  15061. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  15062. },
  15063. "time": "2022-06-03T18:03:27+00:00"
  15064. },
  15065. {
  15066. "name": "webmozart/path-util",
  15067. "version": "2.3.0",
  15068. "source": {
  15069. "type": "git",
  15070. "url": "https://github.com/webmozart/path-util.git",
  15071. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  15072. },
  15073. "dist": {
  15074. "type": "zip",
  15075. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  15076. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  15077. "shasum": ""
  15078. },
  15079. "require": {
  15080. "php": ">=5.3.3",
  15081. "webmozart/assert": "~1.0"
  15082. },
  15083. "require-dev": {
  15084. "phpunit/phpunit": "^4.6",
  15085. "sebastian/version": "^1.0.1"
  15086. },
  15087. "type": "library",
  15088. "extra": {
  15089. "branch-alias": {
  15090. "dev-master": "2.3-dev"
  15091. }
  15092. },
  15093. "autoload": {
  15094. "psr-4": {
  15095. "Webmozart\\PathUtil\\": "src/"
  15096. }
  15097. },
  15098. "notification-url": "https://packagist.org/downloads/",
  15099. "license": [
  15100. "MIT"
  15101. ],
  15102. "authors": [
  15103. {
  15104. "name": "Bernhard Schussek",
  15105. "email": "bschussek@gmail.com"
  15106. }
  15107. ],
  15108. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  15109. "support": {
  15110. "issues": "https://github.com/webmozart/path-util/issues",
  15111. "source": "https://github.com/webmozart/path-util/tree/2.3.0"
  15112. },
  15113. "abandoned": "symfony/filesystem",
  15114. "time": "2015-12-17T08:42:14+00:00"
  15115. },
  15116. {
  15117. "name": "wikimedia/composer-merge-plugin",
  15118. "version": "v2.0.1",
  15119. "source": {
  15120. "type": "git",
  15121. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  15122. "reference": "8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912"
  15123. },
  15124. "dist": {
  15125. "type": "zip",
  15126. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912",
  15127. "reference": "8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912",
  15128. "shasum": ""
  15129. },
  15130. "require": {
  15131. "composer-plugin-api": "^1.1||^2.0",
  15132. "php": ">=7.2.0"
  15133. },
  15134. "require-dev": {
  15135. "composer/composer": "^1.1||^2.0",
  15136. "php-parallel-lint/php-parallel-lint": "~1.1.0",
  15137. "phpunit/phpunit": "^8.5||^9.0",
  15138. "squizlabs/php_codesniffer": "~3.5.4"
  15139. },
  15140. "type": "composer-plugin",
  15141. "extra": {
  15142. "branch-alias": {
  15143. "dev-master": "2.x-dev"
  15144. },
  15145. "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin"
  15146. },
  15147. "autoload": {
  15148. "psr-4": {
  15149. "Wikimedia\\Composer\\Merge\\V2\\": "src/"
  15150. }
  15151. },
  15152. "notification-url": "https://packagist.org/downloads/",
  15153. "license": [
  15154. "MIT"
  15155. ],
  15156. "authors": [
  15157. {
  15158. "name": "Bryan Davis",
  15159. "email": "bd808@wikimedia.org"
  15160. }
  15161. ],
  15162. "description": "Composer plugin to merge multiple composer.json files",
  15163. "support": {
  15164. "issues": "https://github.com/wikimedia/composer-merge-plugin/issues",
  15165. "source": "https://github.com/wikimedia/composer-merge-plugin/tree/v2.0.1"
  15166. },
  15167. "time": "2021-02-24T05:28:06+00:00"
  15168. },
  15169. {
  15170. "name": "willdurand/geocoder",
  15171. "version": "4.5.0",
  15172. "source": {
  15173. "type": "git",
  15174. "url": "https://github.com/geocoder-php/php-common.git",
  15175. "reference": "b9a27dfbc06d012f4ff52b890fe52789e4978769"
  15176. },
  15177. "dist": {
  15178. "type": "zip",
  15179. "url": "https://api.github.com/repos/geocoder-php/php-common/zipball/b9a27dfbc06d012f4ff52b890fe52789e4978769",
  15180. "reference": "b9a27dfbc06d012f4ff52b890fe52789e4978769",
  15181. "shasum": ""
  15182. },
  15183. "require": {
  15184. "php": "^7.3 || ^8.0"
  15185. },
  15186. "require-dev": {
  15187. "nyholm/nsa": "^1.1",
  15188. "phpunit/phpunit": "^9.5",
  15189. "symfony/stopwatch": "~2.5"
  15190. },
  15191. "suggest": {
  15192. "symfony/stopwatch": "If you want to use the TimedGeocoder"
  15193. },
  15194. "type": "library",
  15195. "extra": {
  15196. "branch-alias": {
  15197. "dev-master": "4.1-dev"
  15198. }
  15199. },
  15200. "autoload": {
  15201. "psr-4": {
  15202. "Geocoder\\": ""
  15203. },
  15204. "exclude-from-classmap": [
  15205. "/Tests/"
  15206. ]
  15207. },
  15208. "notification-url": "https://packagist.org/downloads/",
  15209. "license": [
  15210. "MIT"
  15211. ],
  15212. "authors": [
  15213. {
  15214. "name": "William Durand",
  15215. "email": "william.durand1@gmail.com"
  15216. }
  15217. ],
  15218. "description": "Common files for PHP Geocoder",
  15219. "homepage": "http://geocoder-php.org",
  15220. "keywords": [
  15221. "abstraction",
  15222. "geocoder",
  15223. "geocoding",
  15224. "geoip"
  15225. ],
  15226. "support": {
  15227. "source": "https://github.com/geocoder-php/php-common/tree/4.5.0"
  15228. },
  15229. "time": "2022-01-07T14:44:30+00:00"
  15230. }
  15231. ],
  15232. "packages-dev": [],
  15233. "aliases": [],
  15234. "minimum-stability": "stable",
  15235. "stability-flags": {
  15236. "drupal/advanced_text_formatter": 5,
  15237. "drupal/bulkdelete": 20,
  15238. "drupal/computed_token_field": 10,
  15239. "drupal/config_devel": 20,
  15240. "drupal/config_pages": 20,
  15241. "drupal/config_update": 15,
  15242. "drupal/context": 5,
  15243. "drupal/cshs": 20,
  15244. "drupal/date_range_formatter": 20,
  15245. "drupal/email_registration": 5,
  15246. "drupal/entity_clone": 20,
  15247. "drupal/field_group": 20,
  15248. "drupal/filefield_sources": 20,
  15249. "drupal/filter_perms": 20,
  15250. "drupal/inline_entity_form": 5,
  15251. "drupal/linkit": 10,
  15252. "drupal/maillog": 20,
  15253. "drupal/manage_display": 20,
  15254. "drupal/maxlength": 10,
  15255. "drupal/menu_block": 20,
  15256. "drupal/page_manager": 20,
  15257. "drupal/paragraphs": 20,
  15258. "drupal/path_alias_xt": 20,
  15259. "drupal/pathologic": 15,
  15260. "drupal/smtp": 10,
  15261. "drupal/synonyms": 10,
  15262. "drupal/translation_views": 15,
  15263. "drupal/ultimate_cron": 15
  15264. },
  15265. "prefer-stable": true,
  15266. "prefer-lowest": false,
  15267. "platform": {},
  15268. "platform-dev": {},
  15269. "plugin-api-version": "2.6.0"
  15270. }