composer.lock 463 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671
  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": "f3783bee40de6bd346f434abe5d4872b",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.1.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  20. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.2|^8.0",
  25. "symfony/http-foundation": "^4|^5|^6",
  26. "symfony/http-kernel": "^4|^5|^6"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^7|^9",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.1-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/asm89/stack-cors/issues",
  61. "source": "https://github.com/asm89/stack-cors/tree/v2.1.1"
  62. },
  63. "time": "2022-01-18T09:12:03+00:00"
  64. },
  65. {
  66. "name": "chi-teck/drupal-code-generator",
  67. "version": "2.6.2",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  71. "reference": "22ed1cc02dc47814e8239de577da541e9b9bd980"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/22ed1cc02dc47814e8239de577da541e9b9bd980",
  76. "reference": "22ed1cc02dc47814e8239de577da541e9b9bd980",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "ext-json": "*",
  81. "php": ">=7.4",
  82. "psr/log": "^1.1 || ^2.0 || ^3.0",
  83. "symfony/console": "^4.4.15 || ^5.1 || ^6.0",
  84. "symfony/filesystem": "^4.4 || ^5.1 || ^6",
  85. "symfony/polyfill-php80": "^1.23",
  86. "symfony/string": "^5.1 || ^6",
  87. "twig/twig": "^2.14.11 || ^3.1"
  88. },
  89. "conflict": {
  90. "squizlabs/php_codesniffer": "<3.6"
  91. },
  92. "require-dev": {
  93. "chi-teck/drupal-coder-extension": "^1.2",
  94. "drupal/coder": "^8.3.14",
  95. "phpspec/prophecy-phpunit": "^2.0",
  96. "phpunit/phpunit": "^9.4",
  97. "squizlabs/php_codesniffer": "^3.5",
  98. "symfony/var-dumper": "^5.2 || ^6.0",
  99. "symfony/yaml": "^5.2 || ^6.0"
  100. },
  101. "bin": [
  102. "bin/dcg"
  103. ],
  104. "type": "library",
  105. "extra": {
  106. "branch-alias": {
  107. "dev-master": "2.x-dev"
  108. }
  109. },
  110. "autoload": {
  111. "psr-4": {
  112. "DrupalCodeGenerator\\": "src"
  113. }
  114. },
  115. "notification-url": "https://packagist.org/downloads/",
  116. "license": [
  117. "GPL-2.0-or-later"
  118. ],
  119. "description": "Drupal code generator",
  120. "support": {
  121. "issues": "https://github.com/Chi-teck/drupal-code-generator/issues",
  122. "source": "https://github.com/Chi-teck/drupal-code-generator/tree/2.6.2"
  123. },
  124. "time": "2022-11-11T15:34:04+00:00"
  125. },
  126. {
  127. "name": "commerceguys/addressing",
  128. "version": "v1.4.2",
  129. "source": {
  130. "type": "git",
  131. "url": "https://github.com/commerceguys/addressing.git",
  132. "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308"
  133. },
  134. "dist": {
  135. "type": "zip",
  136. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/406c7b5f0fbe4f6a64155c0fe03b1adb34d01308",
  137. "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308",
  138. "shasum": ""
  139. },
  140. "require": {
  141. "doctrine/collections": "^1.2 || ^2.0",
  142. "php": ">=7.3"
  143. },
  144. "require-dev": {
  145. "ext-json": "*",
  146. "mikey179/vfsstream": "^1.6.10",
  147. "phpunit/phpunit": "^9.5",
  148. "squizlabs/php_codesniffer": "^3.6",
  149. "symfony/validator": "^4.4 || ^5.4 || ^6.0"
  150. },
  151. "suggest": {
  152. "symfony/validator": "to validate addresses"
  153. },
  154. "type": "library",
  155. "extra": {
  156. "branch-alias": {
  157. "dev-master": "1.x-dev"
  158. }
  159. },
  160. "autoload": {
  161. "psr-4": {
  162. "CommerceGuys\\Addressing\\": "src"
  163. }
  164. },
  165. "notification-url": "https://packagist.org/downloads/",
  166. "license": [
  167. "MIT"
  168. ],
  169. "authors": [
  170. {
  171. "name": "Bojan Zivanovic"
  172. },
  173. {
  174. "name": "Damien Tournoud"
  175. }
  176. ],
  177. "description": "Addressing library powered by CLDR and Google's address data.",
  178. "keywords": [
  179. "address",
  180. "internationalization",
  181. "localization",
  182. "postal"
  183. ],
  184. "support": {
  185. "issues": "https://github.com/commerceguys/addressing/issues",
  186. "source": "https://github.com/commerceguys/addressing/tree/v1.4.2"
  187. },
  188. "time": "2023-02-15T10:11:14+00:00"
  189. },
  190. {
  191. "name": "components/highlightjs",
  192. "version": "9.7.0",
  193. "dist": {
  194. "type": "zip",
  195. "url": "https://github.com/components/highlightjs/archive/9.7.0.zip"
  196. },
  197. "type": "drupal-library"
  198. },
  199. {
  200. "name": "composer/installers",
  201. "version": "v2.2.0",
  202. "source": {
  203. "type": "git",
  204. "url": "https://github.com/composer/installers.git",
  205. "reference": "c29dc4b93137acb82734f672c37e029dfbd95b35"
  206. },
  207. "dist": {
  208. "type": "zip",
  209. "url": "https://api.github.com/repos/composer/installers/zipball/c29dc4b93137acb82734f672c37e029dfbd95b35",
  210. "reference": "c29dc4b93137acb82734f672c37e029dfbd95b35",
  211. "shasum": ""
  212. },
  213. "require": {
  214. "composer-plugin-api": "^1.0 || ^2.0",
  215. "php": "^7.2 || ^8.0"
  216. },
  217. "require-dev": {
  218. "composer/composer": "1.6.* || ^2.0",
  219. "composer/semver": "^1 || ^3",
  220. "phpstan/phpstan": "^0.12.55",
  221. "phpstan/phpstan-phpunit": "^0.12.16",
  222. "symfony/phpunit-bridge": "^5.3",
  223. "symfony/process": "^5"
  224. },
  225. "type": "composer-plugin",
  226. "extra": {
  227. "class": "Composer\\Installers\\Plugin",
  228. "branch-alias": {
  229. "dev-main": "2.x-dev"
  230. },
  231. "plugin-modifies-install-path": true
  232. },
  233. "autoload": {
  234. "psr-4": {
  235. "Composer\\Installers\\": "src/Composer/Installers"
  236. }
  237. },
  238. "notification-url": "https://packagist.org/downloads/",
  239. "license": [
  240. "MIT"
  241. ],
  242. "authors": [
  243. {
  244. "name": "Kyle Robinson Young",
  245. "email": "kyle@dontkry.com",
  246. "homepage": "https://github.com/shama"
  247. }
  248. ],
  249. "description": "A multi-framework Composer library installer",
  250. "homepage": "https://composer.github.io/installers/",
  251. "keywords": [
  252. "Dolibarr",
  253. "Eliasis",
  254. "Hurad",
  255. "ImageCMS",
  256. "Kanboard",
  257. "Lan Management System",
  258. "MODX Evo",
  259. "MantisBT",
  260. "Mautic",
  261. "Maya",
  262. "OXID",
  263. "Plentymarkets",
  264. "Porto",
  265. "RadPHP",
  266. "SMF",
  267. "Starbug",
  268. "Thelia",
  269. "Whmcs",
  270. "WolfCMS",
  271. "agl",
  272. "annotatecms",
  273. "attogram",
  274. "bitrix",
  275. "cakephp",
  276. "chef",
  277. "cockpit",
  278. "codeigniter",
  279. "concrete5",
  280. "croogo",
  281. "dokuwiki",
  282. "drupal",
  283. "eZ Platform",
  284. "elgg",
  285. "expressionengine",
  286. "fuelphp",
  287. "grav",
  288. "installer",
  289. "itop",
  290. "known",
  291. "kohana",
  292. "laravel",
  293. "lavalite",
  294. "lithium",
  295. "magento",
  296. "majima",
  297. "mako",
  298. "matomo",
  299. "mediawiki",
  300. "miaoxing",
  301. "modulework",
  302. "modx",
  303. "moodle",
  304. "osclass",
  305. "pantheon",
  306. "phpbb",
  307. "piwik",
  308. "ppi",
  309. "processwire",
  310. "puppet",
  311. "pxcms",
  312. "reindex",
  313. "roundcube",
  314. "shopware",
  315. "silverstripe",
  316. "sydes",
  317. "sylius",
  318. "tastyigniter",
  319. "wordpress",
  320. "yawik",
  321. "zend",
  322. "zikula"
  323. ],
  324. "support": {
  325. "issues": "https://github.com/composer/installers/issues",
  326. "source": "https://github.com/composer/installers/tree/v2.2.0"
  327. },
  328. "funding": [
  329. {
  330. "url": "https://packagist.com",
  331. "type": "custom"
  332. },
  333. {
  334. "url": "https://github.com/composer",
  335. "type": "github"
  336. },
  337. {
  338. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  339. "type": "tidelift"
  340. }
  341. ],
  342. "time": "2022-08-20T06:45:11+00:00"
  343. },
  344. {
  345. "name": "composer/semver",
  346. "version": "3.3.2",
  347. "source": {
  348. "type": "git",
  349. "url": "https://github.com/composer/semver.git",
  350. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9"
  351. },
  352. "dist": {
  353. "type": "zip",
  354. "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9",
  355. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9",
  356. "shasum": ""
  357. },
  358. "require": {
  359. "php": "^5.3.2 || ^7.0 || ^8.0"
  360. },
  361. "require-dev": {
  362. "phpstan/phpstan": "^1.4",
  363. "symfony/phpunit-bridge": "^4.2 || ^5"
  364. },
  365. "type": "library",
  366. "extra": {
  367. "branch-alias": {
  368. "dev-main": "3.x-dev"
  369. }
  370. },
  371. "autoload": {
  372. "psr-4": {
  373. "Composer\\Semver\\": "src"
  374. }
  375. },
  376. "notification-url": "https://packagist.org/downloads/",
  377. "license": [
  378. "MIT"
  379. ],
  380. "authors": [
  381. {
  382. "name": "Nils Adermann",
  383. "email": "naderman@naderman.de",
  384. "homepage": "http://www.naderman.de"
  385. },
  386. {
  387. "name": "Jordi Boggiano",
  388. "email": "j.boggiano@seld.be",
  389. "homepage": "http://seld.be"
  390. },
  391. {
  392. "name": "Rob Bast",
  393. "email": "rob.bast@gmail.com",
  394. "homepage": "http://robbast.nl"
  395. }
  396. ],
  397. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  398. "keywords": [
  399. "semantic",
  400. "semver",
  401. "validation",
  402. "versioning"
  403. ],
  404. "support": {
  405. "irc": "irc://irc.freenode.org/composer",
  406. "issues": "https://github.com/composer/semver/issues",
  407. "source": "https://github.com/composer/semver/tree/3.3.2"
  408. },
  409. "funding": [
  410. {
  411. "url": "https://packagist.com",
  412. "type": "custom"
  413. },
  414. {
  415. "url": "https://github.com/composer",
  416. "type": "github"
  417. },
  418. {
  419. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  420. "type": "tidelift"
  421. }
  422. ],
  423. "time": "2022-04-01T19:23:25+00:00"
  424. },
  425. {
  426. "name": "consolidation/annotated-command",
  427. "version": "4.9.1",
  428. "source": {
  429. "type": "git",
  430. "url": "https://github.com/consolidation/annotated-command.git",
  431. "reference": "e01152f698eff4cb5df3ebfe5e097ef335dbd3c9"
  432. },
  433. "dist": {
  434. "type": "zip",
  435. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/e01152f698eff4cb5df3ebfe5e097ef335dbd3c9",
  436. "reference": "e01152f698eff4cb5df3ebfe5e097ef335dbd3c9",
  437. "shasum": ""
  438. },
  439. "require": {
  440. "consolidation/output-formatters": "^4.3.1",
  441. "php": ">=7.1.3",
  442. "psr/log": "^1 || ^2 || ^3",
  443. "symfony/console": "^4.4.8 || ^5 || ^6",
  444. "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6",
  445. "symfony/finder": "^4.4.8 || ^5 || ^6"
  446. },
  447. "require-dev": {
  448. "composer-runtime-api": "^2.0",
  449. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  450. "squizlabs/php_codesniffer": "^3",
  451. "yoast/phpunit-polyfills": "^0.2.0"
  452. },
  453. "type": "library",
  454. "extra": {
  455. "branch-alias": {
  456. "dev-main": "4.x-dev"
  457. }
  458. },
  459. "autoload": {
  460. "psr-4": {
  461. "Consolidation\\AnnotatedCommand\\": "src"
  462. }
  463. },
  464. "notification-url": "https://packagist.org/downloads/",
  465. "license": [
  466. "MIT"
  467. ],
  468. "authors": [
  469. {
  470. "name": "Greg Anderson",
  471. "email": "greg.1.anderson@greenknowe.org"
  472. }
  473. ],
  474. "description": "Initialize Symfony Console commands from annotated command class methods.",
  475. "support": {
  476. "issues": "https://github.com/consolidation/annotated-command/issues",
  477. "source": "https://github.com/consolidation/annotated-command/tree/4.9.1"
  478. },
  479. "time": "2023-05-20T04:19:01+00:00"
  480. },
  481. {
  482. "name": "consolidation/config",
  483. "version": "2.1.2",
  484. "source": {
  485. "type": "git",
  486. "url": "https://github.com/consolidation/config.git",
  487. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae"
  488. },
  489. "dist": {
  490. "type": "zip",
  491. "url": "https://api.github.com/repos/consolidation/config/zipball/597f8d7fbeef801736250ec10c3e190569b1b0ae",
  492. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae",
  493. "shasum": ""
  494. },
  495. "require": {
  496. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  497. "grasmash/expander": "^2.0.1 || ^3",
  498. "php": ">=7.1.3",
  499. "symfony/event-dispatcher": "^4 || ^5 || ^6"
  500. },
  501. "require-dev": {
  502. "ext-json": "*",
  503. "phpunit/phpunit": ">=7.5.20",
  504. "squizlabs/php_codesniffer": "^3",
  505. "symfony/console": "^4 || ^5 || ^6",
  506. "symfony/yaml": "^4 || ^5 || ^6",
  507. "yoast/phpunit-polyfills": "^1"
  508. },
  509. "suggest": {
  510. "symfony/event-dispatcher": "Required to inject configuration into Command options",
  511. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  512. },
  513. "type": "library",
  514. "extra": {
  515. "branch-alias": {
  516. "dev-main": "2.x-dev"
  517. }
  518. },
  519. "autoload": {
  520. "psr-4": {
  521. "Consolidation\\Config\\": "src"
  522. }
  523. },
  524. "notification-url": "https://packagist.org/downloads/",
  525. "license": [
  526. "MIT"
  527. ],
  528. "authors": [
  529. {
  530. "name": "Greg Anderson",
  531. "email": "greg.1.anderson@greenknowe.org"
  532. }
  533. ],
  534. "description": "Provide configuration services for a commandline tool.",
  535. "support": {
  536. "issues": "https://github.com/consolidation/config/issues",
  537. "source": "https://github.com/consolidation/config/tree/2.1.2"
  538. },
  539. "time": "2022-10-06T17:48:03+00:00"
  540. },
  541. {
  542. "name": "consolidation/filter-via-dot-access-data",
  543. "version": "2.0.2",
  544. "source": {
  545. "type": "git",
  546. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  547. "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b"
  548. },
  549. "dist": {
  550. "type": "zip",
  551. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
  552. "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
  553. "shasum": ""
  554. },
  555. "require": {
  556. "dflydev/dot-access-data": "^1.1.0 || ^2.0.0 || ^3.0.0",
  557. "php": ">=7.1.3"
  558. },
  559. "require-dev": {
  560. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  561. "squizlabs/php_codesniffer": "^3",
  562. "yoast/phpunit-polyfills": "^0.2.0"
  563. },
  564. "type": "library",
  565. "extra": {
  566. "branch-alias": {
  567. "dev-main": "2.x-dev"
  568. }
  569. },
  570. "autoload": {
  571. "psr-4": {
  572. "Consolidation\\Filter\\": "src"
  573. }
  574. },
  575. "notification-url": "https://packagist.org/downloads/",
  576. "license": [
  577. "MIT"
  578. ],
  579. "authors": [
  580. {
  581. "name": "Greg Anderson",
  582. "email": "greg.1.anderson@greenknowe.org"
  583. }
  584. ],
  585. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  586. "support": {
  587. "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/2.0.2"
  588. },
  589. "time": "2021-12-30T03:56:08+00:00"
  590. },
  591. {
  592. "name": "consolidation/log",
  593. "version": "3.0.0",
  594. "source": {
  595. "type": "git",
  596. "url": "https://github.com/consolidation/log.git",
  597. "reference": "caaad9d70dae54eb49002666f000e3c607066878"
  598. },
  599. "dist": {
  600. "type": "zip",
  601. "url": "https://api.github.com/repos/consolidation/log/zipball/caaad9d70dae54eb49002666f000e3c607066878",
  602. "reference": "caaad9d70dae54eb49002666f000e3c607066878",
  603. "shasum": ""
  604. },
  605. "require": {
  606. "php": ">=8.0.0",
  607. "psr/log": "^3",
  608. "symfony/console": "^5 || ^6"
  609. },
  610. "require-dev": {
  611. "phpunit/phpunit": ">=7.5.20",
  612. "squizlabs/php_codesniffer": "^3",
  613. "yoast/phpunit-polyfills": "^0.2.0"
  614. },
  615. "type": "library",
  616. "extra": {
  617. "branch-alias": {
  618. "dev-main": "2.x-dev"
  619. }
  620. },
  621. "autoload": {
  622. "psr-4": {
  623. "Consolidation\\Log\\": "src"
  624. }
  625. },
  626. "notification-url": "https://packagist.org/downloads/",
  627. "license": [
  628. "MIT"
  629. ],
  630. "authors": [
  631. {
  632. "name": "Greg Anderson",
  633. "email": "greg.1.anderson@greenknowe.org"
  634. }
  635. ],
  636. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  637. "support": {
  638. "issues": "https://github.com/consolidation/log/issues",
  639. "source": "https://github.com/consolidation/log/tree/3.0.0"
  640. },
  641. "time": "2022-04-05T16:53:32+00:00"
  642. },
  643. {
  644. "name": "consolidation/output-formatters",
  645. "version": "4.3.2",
  646. "source": {
  647. "type": "git",
  648. "url": "https://github.com/consolidation/output-formatters.git",
  649. "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58"
  650. },
  651. "dist": {
  652. "type": "zip",
  653. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/06711568b4cd169700ff7e8075db0a9a341ceb58",
  654. "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58",
  655. "shasum": ""
  656. },
  657. "require": {
  658. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  659. "php": ">=7.1.3",
  660. "symfony/console": "^4 || ^5 || ^6",
  661. "symfony/finder": "^4 || ^5 || ^6"
  662. },
  663. "require-dev": {
  664. "php-coveralls/php-coveralls": "^2.4.2",
  665. "phpunit/phpunit": "^7 || ^8 || ^9",
  666. "squizlabs/php_codesniffer": "^3",
  667. "symfony/var-dumper": "^4 || ^5 || ^6",
  668. "symfony/yaml": "^4 || ^5 || ^6",
  669. "yoast/phpunit-polyfills": "^1"
  670. },
  671. "suggest": {
  672. "symfony/var-dumper": "For using the var_dump formatter"
  673. },
  674. "type": "library",
  675. "autoload": {
  676. "psr-4": {
  677. "Consolidation\\OutputFormatters\\": "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": "Format text by applying transformations provided by plug-in formatters.",
  691. "support": {
  692. "issues": "https://github.com/consolidation/output-formatters/issues",
  693. "source": "https://github.com/consolidation/output-formatters/tree/4.3.2"
  694. },
  695. "time": "2023-07-06T04:45:41+00:00"
  696. },
  697. {
  698. "name": "consolidation/robo",
  699. "version": "4.0.6",
  700. "source": {
  701. "type": "git",
  702. "url": "https://github.com/consolidation/robo.git",
  703. "reference": "55a272370940607649e5c46eb173c5c54f7c166d"
  704. },
  705. "dist": {
  706. "type": "zip",
  707. "url": "https://api.github.com/repos/consolidation/robo/zipball/55a272370940607649e5c46eb173c5c54f7c166d",
  708. "reference": "55a272370940607649e5c46eb173c5c54f7c166d",
  709. "shasum": ""
  710. },
  711. "require": {
  712. "consolidation/annotated-command": "^4.8.1",
  713. "consolidation/config": "^2.0.1",
  714. "consolidation/log": "^2.0.2 || ^3",
  715. "consolidation/output-formatters": "^4.1.2",
  716. "consolidation/self-update": "^2.0",
  717. "league/container": "^3.3.1 || ^4.0",
  718. "php": ">=8.0",
  719. "phpowermove/docblock": "^4.0",
  720. "symfony/console": "^6",
  721. "symfony/event-dispatcher": "^6",
  722. "symfony/filesystem": "^6",
  723. "symfony/finder": "^6",
  724. "symfony/process": "^6",
  725. "symfony/yaml": "^6"
  726. },
  727. "conflict": {
  728. "codegyre/robo": "*"
  729. },
  730. "require-dev": {
  731. "natxet/cssmin": "3.0.4",
  732. "patchwork/jsqueeze": "^2",
  733. "pear/archive_tar": "^1.4.4",
  734. "phpunit/phpunit": "^7.5.20 || ^8",
  735. "squizlabs/php_codesniffer": "^3.6",
  736. "yoast/phpunit-polyfills": "^0.2.0"
  737. },
  738. "suggest": {
  739. "natxet/cssmin": "For minifying CSS files in taskMinify",
  740. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  741. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.",
  742. "totten/lurkerlite": "For monitoring filesystem changes in taskWatch"
  743. },
  744. "bin": [
  745. "robo"
  746. ],
  747. "type": "library",
  748. "autoload": {
  749. "psr-4": {
  750. "Robo\\": "src"
  751. }
  752. },
  753. "notification-url": "https://packagist.org/downloads/",
  754. "license": [
  755. "MIT"
  756. ],
  757. "authors": [
  758. {
  759. "name": "Davert",
  760. "email": "davert.php@resend.cc"
  761. }
  762. ],
  763. "description": "Modern task runner",
  764. "support": {
  765. "issues": "https://github.com/consolidation/robo/issues",
  766. "source": "https://github.com/consolidation/robo/tree/4.0.6"
  767. },
  768. "time": "2023-04-30T21:49:04+00:00"
  769. },
  770. {
  771. "name": "consolidation/self-update",
  772. "version": "2.2.0",
  773. "source": {
  774. "type": "git",
  775. "url": "https://github.com/consolidation/self-update.git",
  776. "reference": "972a1016761c9b63314e040836a12795dff6953a"
  777. },
  778. "dist": {
  779. "type": "zip",
  780. "url": "https://api.github.com/repos/consolidation/self-update/zipball/972a1016761c9b63314e040836a12795dff6953a",
  781. "reference": "972a1016761c9b63314e040836a12795dff6953a",
  782. "shasum": ""
  783. },
  784. "require": {
  785. "composer/semver": "^3.2",
  786. "php": ">=5.5.0",
  787. "symfony/console": "^2.8 || ^3 || ^4 || ^5 || ^6",
  788. "symfony/filesystem": "^2.5 || ^3 || ^4 || ^5 || ^6"
  789. },
  790. "bin": [
  791. "scripts/release"
  792. ],
  793. "type": "library",
  794. "extra": {
  795. "branch-alias": {
  796. "dev-main": "2.x-dev"
  797. }
  798. },
  799. "autoload": {
  800. "psr-4": {
  801. "SelfUpdate\\": "src"
  802. }
  803. },
  804. "notification-url": "https://packagist.org/downloads/",
  805. "license": [
  806. "MIT"
  807. ],
  808. "authors": [
  809. {
  810. "name": "Alexander Menk",
  811. "email": "menk@mestrona.net"
  812. },
  813. {
  814. "name": "Greg Anderson",
  815. "email": "greg.1.anderson@greenknowe.org"
  816. }
  817. ],
  818. "description": "Provides a self:update command for Symfony Console applications.",
  819. "support": {
  820. "issues": "https://github.com/consolidation/self-update/issues",
  821. "source": "https://github.com/consolidation/self-update/tree/2.2.0"
  822. },
  823. "time": "2023-03-18T01:37:41+00:00"
  824. },
  825. {
  826. "name": "consolidation/site-alias",
  827. "version": "4.0.1",
  828. "source": {
  829. "type": "git",
  830. "url": "https://github.com/consolidation/site-alias.git",
  831. "reference": "b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5"
  832. },
  833. "dist": {
  834. "type": "zip",
  835. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5",
  836. "reference": "b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5",
  837. "shasum": ""
  838. },
  839. "require": {
  840. "consolidation/config": "^1.2.1 || ^2",
  841. "php": ">=7.4",
  842. "symfony/filesystem": "^5.4 || ^6",
  843. "symfony/finder": "^5 || ^6"
  844. },
  845. "require-dev": {
  846. "php-coveralls/php-coveralls": "^2.4.2",
  847. "phpunit/phpunit": ">=7",
  848. "squizlabs/php_codesniffer": "^3",
  849. "symfony/var-dumper": "^4",
  850. "yoast/phpunit-polyfills": "^0.2.0"
  851. },
  852. "type": "library",
  853. "extra": {
  854. "branch-alias": {
  855. "dev-main": "4.x-dev"
  856. }
  857. },
  858. "autoload": {
  859. "psr-4": {
  860. "Consolidation\\SiteAlias\\": "src"
  861. }
  862. },
  863. "notification-url": "https://packagist.org/downloads/",
  864. "license": [
  865. "MIT"
  866. ],
  867. "authors": [
  868. {
  869. "name": "Greg Anderson",
  870. "email": "greg.1.anderson@greenknowe.org"
  871. },
  872. {
  873. "name": "Moshe Weitzman",
  874. "email": "weitzman@tejasa.com"
  875. }
  876. ],
  877. "description": "Manage alias records for local and remote sites.",
  878. "support": {
  879. "issues": "https://github.com/consolidation/site-alias/issues",
  880. "source": "https://github.com/consolidation/site-alias/tree/4.0.1"
  881. },
  882. "time": "2023-04-29T17:18:10+00:00"
  883. },
  884. {
  885. "name": "consolidation/site-process",
  886. "version": "5.2.0",
  887. "source": {
  888. "type": "git",
  889. "url": "https://github.com/consolidation/site-process.git",
  890. "reference": "6c44638d7af8a8b4abe12c3180701243f480539d"
  891. },
  892. "dist": {
  893. "type": "zip",
  894. "url": "https://api.github.com/repos/consolidation/site-process/zipball/6c44638d7af8a8b4abe12c3180701243f480539d",
  895. "reference": "6c44638d7af8a8b4abe12c3180701243f480539d",
  896. "shasum": ""
  897. },
  898. "require": {
  899. "consolidation/config": "^2",
  900. "consolidation/site-alias": "^3 || ^4",
  901. "php": ">=8.0.14",
  902. "symfony/console": "^5.4 || ^6",
  903. "symfony/process": "^6"
  904. },
  905. "require-dev": {
  906. "phpunit/phpunit": "^9",
  907. "squizlabs/php_codesniffer": "^3"
  908. },
  909. "type": "library",
  910. "extra": {
  911. "branch-alias": {
  912. "dev-main": "5.x-dev"
  913. }
  914. },
  915. "autoload": {
  916. "psr-4": {
  917. "Consolidation\\SiteProcess\\": "src"
  918. }
  919. },
  920. "notification-url": "https://packagist.org/downloads/",
  921. "license": [
  922. "MIT"
  923. ],
  924. "authors": [
  925. {
  926. "name": "Greg Anderson",
  927. "email": "greg.1.anderson@greenknowe.org"
  928. },
  929. {
  930. "name": "Moshe Weitzman",
  931. "email": "weitzman@tejasa.com"
  932. }
  933. ],
  934. "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.",
  935. "support": {
  936. "issues": "https://github.com/consolidation/site-process/issues",
  937. "source": "https://github.com/consolidation/site-process/tree/5.2.0"
  938. },
  939. "time": "2022-12-06T17:57:16+00:00"
  940. },
  941. {
  942. "name": "cweagans/composer-patches",
  943. "version": "1.7.3",
  944. "source": {
  945. "type": "git",
  946. "url": "https://github.com/cweagans/composer-patches.git",
  947. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db"
  948. },
  949. "dist": {
  950. "type": "zip",
  951. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  952. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  953. "shasum": ""
  954. },
  955. "require": {
  956. "composer-plugin-api": "^1.0 || ^2.0",
  957. "php": ">=5.3.0"
  958. },
  959. "require-dev": {
  960. "composer/composer": "~1.0 || ~2.0",
  961. "phpunit/phpunit": "~4.6"
  962. },
  963. "type": "composer-plugin",
  964. "extra": {
  965. "class": "cweagans\\Composer\\Patches"
  966. },
  967. "autoload": {
  968. "psr-4": {
  969. "cweagans\\Composer\\": "src"
  970. }
  971. },
  972. "notification-url": "https://packagist.org/downloads/",
  973. "license": [
  974. "BSD-3-Clause"
  975. ],
  976. "authors": [
  977. {
  978. "name": "Cameron Eagans",
  979. "email": "me@cweagans.net"
  980. }
  981. ],
  982. "description": "Provides a way to patch Composer packages.",
  983. "support": {
  984. "issues": "https://github.com/cweagans/composer-patches/issues",
  985. "source": "https://github.com/cweagans/composer-patches/tree/1.7.3"
  986. },
  987. "time": "2022-12-20T22:53:13+00:00"
  988. },
  989. {
  990. "name": "d3/d3",
  991. "version": "v3.5.17",
  992. "dist": {
  993. "type": "zip",
  994. "url": "https://github.com/d3/d3/archive/v3.5.17.zip"
  995. },
  996. "type": "drupal-library"
  997. },
  998. {
  999. "name": "dflydev/dot-access-data",
  1000. "version": "v3.0.2",
  1001. "source": {
  1002. "type": "git",
  1003. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1004. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  1005. },
  1006. "dist": {
  1007. "type": "zip",
  1008. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  1009. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  1010. "shasum": ""
  1011. },
  1012. "require": {
  1013. "php": "^7.1 || ^8.0"
  1014. },
  1015. "require-dev": {
  1016. "phpstan/phpstan": "^0.12.42",
  1017. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1018. "scrutinizer/ocular": "1.6.0",
  1019. "squizlabs/php_codesniffer": "^3.5",
  1020. "vimeo/psalm": "^4.0.0"
  1021. },
  1022. "type": "library",
  1023. "extra": {
  1024. "branch-alias": {
  1025. "dev-main": "3.x-dev"
  1026. }
  1027. },
  1028. "autoload": {
  1029. "psr-4": {
  1030. "Dflydev\\DotAccessData\\": "src/"
  1031. }
  1032. },
  1033. "notification-url": "https://packagist.org/downloads/",
  1034. "license": [
  1035. "MIT"
  1036. ],
  1037. "authors": [
  1038. {
  1039. "name": "Dragonfly Development Inc.",
  1040. "email": "info@dflydev.com",
  1041. "homepage": "http://dflydev.com"
  1042. },
  1043. {
  1044. "name": "Beau Simensen",
  1045. "email": "beau@dflydev.com",
  1046. "homepage": "http://beausimensen.com"
  1047. },
  1048. {
  1049. "name": "Carlos Frutos",
  1050. "email": "carlos@kiwing.it",
  1051. "homepage": "https://github.com/cfrutos"
  1052. },
  1053. {
  1054. "name": "Colin O'Dell",
  1055. "email": "colinodell@gmail.com",
  1056. "homepage": "https://www.colinodell.com"
  1057. }
  1058. ],
  1059. "description": "Given a deep data structure, access data by dot notation.",
  1060. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1061. "keywords": [
  1062. "access",
  1063. "data",
  1064. "dot",
  1065. "notation"
  1066. ],
  1067. "support": {
  1068. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1069. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  1070. },
  1071. "time": "2022-10-27T11:44:00+00:00"
  1072. },
  1073. {
  1074. "name": "doctrine/annotations",
  1075. "version": "1.14.3",
  1076. "source": {
  1077. "type": "git",
  1078. "url": "https://github.com/doctrine/annotations.git",
  1079. "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af"
  1080. },
  1081. "dist": {
  1082. "type": "zip",
  1083. "url": "https://api.github.com/repos/doctrine/annotations/zipball/fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af",
  1084. "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af",
  1085. "shasum": ""
  1086. },
  1087. "require": {
  1088. "doctrine/lexer": "^1 || ^2",
  1089. "ext-tokenizer": "*",
  1090. "php": "^7.1 || ^8.0",
  1091. "psr/cache": "^1 || ^2 || ^3"
  1092. },
  1093. "require-dev": {
  1094. "doctrine/cache": "^1.11 || ^2.0",
  1095. "doctrine/coding-standard": "^9 || ^10",
  1096. "phpstan/phpstan": "~1.4.10 || ^1.8.0",
  1097. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1098. "symfony/cache": "^4.4 || ^5.4 || ^6",
  1099. "vimeo/psalm": "^4.10"
  1100. },
  1101. "suggest": {
  1102. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  1103. },
  1104. "type": "library",
  1105. "autoload": {
  1106. "psr-4": {
  1107. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1108. }
  1109. },
  1110. "notification-url": "https://packagist.org/downloads/",
  1111. "license": [
  1112. "MIT"
  1113. ],
  1114. "authors": [
  1115. {
  1116. "name": "Guilherme Blanco",
  1117. "email": "guilhermeblanco@gmail.com"
  1118. },
  1119. {
  1120. "name": "Roman Borschel",
  1121. "email": "roman@code-factory.org"
  1122. },
  1123. {
  1124. "name": "Benjamin Eberlei",
  1125. "email": "kontakt@beberlei.de"
  1126. },
  1127. {
  1128. "name": "Jonathan Wage",
  1129. "email": "jonwage@gmail.com"
  1130. },
  1131. {
  1132. "name": "Johannes Schmitt",
  1133. "email": "schmittjoh@gmail.com"
  1134. }
  1135. ],
  1136. "description": "Docblock Annotations Parser",
  1137. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1138. "keywords": [
  1139. "annotations",
  1140. "docblock",
  1141. "parser"
  1142. ],
  1143. "support": {
  1144. "issues": "https://github.com/doctrine/annotations/issues",
  1145. "source": "https://github.com/doctrine/annotations/tree/1.14.3"
  1146. },
  1147. "time": "2023-02-01T09:20:38+00:00"
  1148. },
  1149. {
  1150. "name": "doctrine/collections",
  1151. "version": "2.1.4",
  1152. "source": {
  1153. "type": "git",
  1154. "url": "https://github.com/doctrine/collections.git",
  1155. "reference": "72328a11443a0de79967104ad36ba7b30bded134"
  1156. },
  1157. "dist": {
  1158. "type": "zip",
  1159. "url": "https://api.github.com/repos/doctrine/collections/zipball/72328a11443a0de79967104ad36ba7b30bded134",
  1160. "reference": "72328a11443a0de79967104ad36ba7b30bded134",
  1161. "shasum": ""
  1162. },
  1163. "require": {
  1164. "doctrine/deprecations": "^1",
  1165. "php": "^8.1"
  1166. },
  1167. "require-dev": {
  1168. "doctrine/coding-standard": "^12",
  1169. "ext-json": "*",
  1170. "phpstan/phpstan": "^1.8",
  1171. "phpstan/phpstan-phpunit": "^1.0",
  1172. "phpunit/phpunit": "^9.5",
  1173. "vimeo/psalm": "^5.11"
  1174. },
  1175. "type": "library",
  1176. "autoload": {
  1177. "psr-4": {
  1178. "Doctrine\\Common\\Collections\\": "src"
  1179. }
  1180. },
  1181. "notification-url": "https://packagist.org/downloads/",
  1182. "license": [
  1183. "MIT"
  1184. ],
  1185. "authors": [
  1186. {
  1187. "name": "Guilherme Blanco",
  1188. "email": "guilhermeblanco@gmail.com"
  1189. },
  1190. {
  1191. "name": "Roman Borschel",
  1192. "email": "roman@code-factory.org"
  1193. },
  1194. {
  1195. "name": "Benjamin Eberlei",
  1196. "email": "kontakt@beberlei.de"
  1197. },
  1198. {
  1199. "name": "Jonathan Wage",
  1200. "email": "jonwage@gmail.com"
  1201. },
  1202. {
  1203. "name": "Johannes Schmitt",
  1204. "email": "schmittjoh@gmail.com"
  1205. }
  1206. ],
  1207. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  1208. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  1209. "keywords": [
  1210. "array",
  1211. "collections",
  1212. "iterators",
  1213. "php"
  1214. ],
  1215. "support": {
  1216. "issues": "https://github.com/doctrine/collections/issues",
  1217. "source": "https://github.com/doctrine/collections/tree/2.1.4"
  1218. },
  1219. "funding": [
  1220. {
  1221. "url": "https://www.doctrine-project.org/sponsorship.html",
  1222. "type": "custom"
  1223. },
  1224. {
  1225. "url": "https://www.patreon.com/phpdoctrine",
  1226. "type": "patreon"
  1227. },
  1228. {
  1229. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  1230. "type": "tidelift"
  1231. }
  1232. ],
  1233. "time": "2023-10-03T09:22:33+00:00"
  1234. },
  1235. {
  1236. "name": "doctrine/common",
  1237. "version": "3.4.3",
  1238. "source": {
  1239. "type": "git",
  1240. "url": "https://github.com/doctrine/common.git",
  1241. "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced"
  1242. },
  1243. "dist": {
  1244. "type": "zip",
  1245. "url": "https://api.github.com/repos/doctrine/common/zipball/8b5e5650391f851ed58910b3e3d48a71062eeced",
  1246. "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced",
  1247. "shasum": ""
  1248. },
  1249. "require": {
  1250. "doctrine/persistence": "^2.0 || ^3.0",
  1251. "php": "^7.1 || ^8.0"
  1252. },
  1253. "require-dev": {
  1254. "doctrine/coding-standard": "^9.0 || ^10.0",
  1255. "doctrine/collections": "^1",
  1256. "phpstan/phpstan": "^1.4.1",
  1257. "phpstan/phpstan-phpunit": "^1",
  1258. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  1259. "squizlabs/php_codesniffer": "^3.0",
  1260. "symfony/phpunit-bridge": "^6.1",
  1261. "vimeo/psalm": "^4.4"
  1262. },
  1263. "type": "library",
  1264. "autoload": {
  1265. "psr-4": {
  1266. "Doctrine\\Common\\": "src"
  1267. }
  1268. },
  1269. "notification-url": "https://packagist.org/downloads/",
  1270. "license": [
  1271. "MIT"
  1272. ],
  1273. "authors": [
  1274. {
  1275. "name": "Guilherme Blanco",
  1276. "email": "guilhermeblanco@gmail.com"
  1277. },
  1278. {
  1279. "name": "Roman Borschel",
  1280. "email": "roman@code-factory.org"
  1281. },
  1282. {
  1283. "name": "Benjamin Eberlei",
  1284. "email": "kontakt@beberlei.de"
  1285. },
  1286. {
  1287. "name": "Jonathan Wage",
  1288. "email": "jonwage@gmail.com"
  1289. },
  1290. {
  1291. "name": "Johannes Schmitt",
  1292. "email": "schmittjoh@gmail.com"
  1293. },
  1294. {
  1295. "name": "Marco Pivetta",
  1296. "email": "ocramius@gmail.com"
  1297. }
  1298. ],
  1299. "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.",
  1300. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1301. "keywords": [
  1302. "common",
  1303. "doctrine",
  1304. "php"
  1305. ],
  1306. "support": {
  1307. "issues": "https://github.com/doctrine/common/issues",
  1308. "source": "https://github.com/doctrine/common/tree/3.4.3"
  1309. },
  1310. "funding": [
  1311. {
  1312. "url": "https://www.doctrine-project.org/sponsorship.html",
  1313. "type": "custom"
  1314. },
  1315. {
  1316. "url": "https://www.patreon.com/phpdoctrine",
  1317. "type": "patreon"
  1318. },
  1319. {
  1320. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1321. "type": "tidelift"
  1322. }
  1323. ],
  1324. "time": "2022-10-09T11:47:59+00:00"
  1325. },
  1326. {
  1327. "name": "doctrine/deprecations",
  1328. "version": "1.1.2",
  1329. "source": {
  1330. "type": "git",
  1331. "url": "https://github.com/doctrine/deprecations.git",
  1332. "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931"
  1333. },
  1334. "dist": {
  1335. "type": "zip",
  1336. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/4f2d4f2836e7ec4e7a8625e75c6aa916004db931",
  1337. "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931",
  1338. "shasum": ""
  1339. },
  1340. "require": {
  1341. "php": "^7.1 || ^8.0"
  1342. },
  1343. "require-dev": {
  1344. "doctrine/coding-standard": "^9",
  1345. "phpstan/phpstan": "1.4.10 || 1.10.15",
  1346. "phpstan/phpstan-phpunit": "^1.0",
  1347. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1348. "psalm/plugin-phpunit": "0.18.4",
  1349. "psr/log": "^1 || ^2 || ^3",
  1350. "vimeo/psalm": "4.30.0 || 5.12.0"
  1351. },
  1352. "suggest": {
  1353. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1354. },
  1355. "type": "library",
  1356. "autoload": {
  1357. "psr-4": {
  1358. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1359. }
  1360. },
  1361. "notification-url": "https://packagist.org/downloads/",
  1362. "license": [
  1363. "MIT"
  1364. ],
  1365. "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.",
  1366. "homepage": "https://www.doctrine-project.org/",
  1367. "support": {
  1368. "issues": "https://github.com/doctrine/deprecations/issues",
  1369. "source": "https://github.com/doctrine/deprecations/tree/1.1.2"
  1370. },
  1371. "time": "2023-09-27T20:04:15+00:00"
  1372. },
  1373. {
  1374. "name": "doctrine/event-manager",
  1375. "version": "2.0.0",
  1376. "source": {
  1377. "type": "git",
  1378. "url": "https://github.com/doctrine/event-manager.git",
  1379. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32"
  1380. },
  1381. "dist": {
  1382. "type": "zip",
  1383. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32",
  1384. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32",
  1385. "shasum": ""
  1386. },
  1387. "require": {
  1388. "php": "^8.1"
  1389. },
  1390. "conflict": {
  1391. "doctrine/common": "<2.9"
  1392. },
  1393. "require-dev": {
  1394. "doctrine/coding-standard": "^10",
  1395. "phpstan/phpstan": "^1.8.8",
  1396. "phpunit/phpunit": "^9.5",
  1397. "vimeo/psalm": "^4.28"
  1398. },
  1399. "type": "library",
  1400. "autoload": {
  1401. "psr-4": {
  1402. "Doctrine\\Common\\": "src"
  1403. }
  1404. },
  1405. "notification-url": "https://packagist.org/downloads/",
  1406. "license": [
  1407. "MIT"
  1408. ],
  1409. "authors": [
  1410. {
  1411. "name": "Guilherme Blanco",
  1412. "email": "guilhermeblanco@gmail.com"
  1413. },
  1414. {
  1415. "name": "Roman Borschel",
  1416. "email": "roman@code-factory.org"
  1417. },
  1418. {
  1419. "name": "Benjamin Eberlei",
  1420. "email": "kontakt@beberlei.de"
  1421. },
  1422. {
  1423. "name": "Jonathan Wage",
  1424. "email": "jonwage@gmail.com"
  1425. },
  1426. {
  1427. "name": "Johannes Schmitt",
  1428. "email": "schmittjoh@gmail.com"
  1429. },
  1430. {
  1431. "name": "Marco Pivetta",
  1432. "email": "ocramius@gmail.com"
  1433. }
  1434. ],
  1435. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1436. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1437. "keywords": [
  1438. "event",
  1439. "event dispatcher",
  1440. "event manager",
  1441. "event system",
  1442. "events"
  1443. ],
  1444. "support": {
  1445. "issues": "https://github.com/doctrine/event-manager/issues",
  1446. "source": "https://github.com/doctrine/event-manager/tree/2.0.0"
  1447. },
  1448. "funding": [
  1449. {
  1450. "url": "https://www.doctrine-project.org/sponsorship.html",
  1451. "type": "custom"
  1452. },
  1453. {
  1454. "url": "https://www.patreon.com/phpdoctrine",
  1455. "type": "patreon"
  1456. },
  1457. {
  1458. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1459. "type": "tidelift"
  1460. }
  1461. ],
  1462. "time": "2022-10-12T20:59:15+00:00"
  1463. },
  1464. {
  1465. "name": "doctrine/lexer",
  1466. "version": "2.1.0",
  1467. "source": {
  1468. "type": "git",
  1469. "url": "https://github.com/doctrine/lexer.git",
  1470. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124"
  1471. },
  1472. "dist": {
  1473. "type": "zip",
  1474. "url": "https://api.github.com/repos/doctrine/lexer/zipball/39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  1475. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  1476. "shasum": ""
  1477. },
  1478. "require": {
  1479. "doctrine/deprecations": "^1.0",
  1480. "php": "^7.1 || ^8.0"
  1481. },
  1482. "require-dev": {
  1483. "doctrine/coding-standard": "^9 || ^10",
  1484. "phpstan/phpstan": "^1.3",
  1485. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1486. "psalm/plugin-phpunit": "^0.18.3",
  1487. "vimeo/psalm": "^4.11 || ^5.0"
  1488. },
  1489. "type": "library",
  1490. "autoload": {
  1491. "psr-4": {
  1492. "Doctrine\\Common\\Lexer\\": "src"
  1493. }
  1494. },
  1495. "notification-url": "https://packagist.org/downloads/",
  1496. "license": [
  1497. "MIT"
  1498. ],
  1499. "authors": [
  1500. {
  1501. "name": "Guilherme Blanco",
  1502. "email": "guilhermeblanco@gmail.com"
  1503. },
  1504. {
  1505. "name": "Roman Borschel",
  1506. "email": "roman@code-factory.org"
  1507. },
  1508. {
  1509. "name": "Johannes Schmitt",
  1510. "email": "schmittjoh@gmail.com"
  1511. }
  1512. ],
  1513. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1514. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1515. "keywords": [
  1516. "annotations",
  1517. "docblock",
  1518. "lexer",
  1519. "parser",
  1520. "php"
  1521. ],
  1522. "support": {
  1523. "issues": "https://github.com/doctrine/lexer/issues",
  1524. "source": "https://github.com/doctrine/lexer/tree/2.1.0"
  1525. },
  1526. "funding": [
  1527. {
  1528. "url": "https://www.doctrine-project.org/sponsorship.html",
  1529. "type": "custom"
  1530. },
  1531. {
  1532. "url": "https://www.patreon.com/phpdoctrine",
  1533. "type": "patreon"
  1534. },
  1535. {
  1536. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1537. "type": "tidelift"
  1538. }
  1539. ],
  1540. "time": "2022-12-14T08:49:07+00:00"
  1541. },
  1542. {
  1543. "name": "doctrine/persistence",
  1544. "version": "3.2.0",
  1545. "source": {
  1546. "type": "git",
  1547. "url": "https://github.com/doctrine/persistence.git",
  1548. "reference": "63fee8c33bef740db6730eb2a750cd3da6495603"
  1549. },
  1550. "dist": {
  1551. "type": "zip",
  1552. "url": "https://api.github.com/repos/doctrine/persistence/zipball/63fee8c33bef740db6730eb2a750cd3da6495603",
  1553. "reference": "63fee8c33bef740db6730eb2a750cd3da6495603",
  1554. "shasum": ""
  1555. },
  1556. "require": {
  1557. "doctrine/event-manager": "^1 || ^2",
  1558. "php": "^7.2 || ^8.0",
  1559. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1560. },
  1561. "conflict": {
  1562. "doctrine/common": "<2.10"
  1563. },
  1564. "require-dev": {
  1565. "composer/package-versions-deprecated": "^1.11",
  1566. "doctrine/coding-standard": "^11",
  1567. "doctrine/common": "^3.0",
  1568. "phpstan/phpstan": "1.9.4",
  1569. "phpstan/phpstan-phpunit": "^1",
  1570. "phpstan/phpstan-strict-rules": "^1.1",
  1571. "phpunit/phpunit": "^8.5 || ^9.5",
  1572. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1573. "vimeo/psalm": "4.30.0 || 5.3.0"
  1574. },
  1575. "type": "library",
  1576. "autoload": {
  1577. "psr-4": {
  1578. "Doctrine\\Persistence\\": "src/Persistence"
  1579. }
  1580. },
  1581. "notification-url": "https://packagist.org/downloads/",
  1582. "license": [
  1583. "MIT"
  1584. ],
  1585. "authors": [
  1586. {
  1587. "name": "Guilherme Blanco",
  1588. "email": "guilhermeblanco@gmail.com"
  1589. },
  1590. {
  1591. "name": "Roman Borschel",
  1592. "email": "roman@code-factory.org"
  1593. },
  1594. {
  1595. "name": "Benjamin Eberlei",
  1596. "email": "kontakt@beberlei.de"
  1597. },
  1598. {
  1599. "name": "Jonathan Wage",
  1600. "email": "jonwage@gmail.com"
  1601. },
  1602. {
  1603. "name": "Johannes Schmitt",
  1604. "email": "schmittjoh@gmail.com"
  1605. },
  1606. {
  1607. "name": "Marco Pivetta",
  1608. "email": "ocramius@gmail.com"
  1609. }
  1610. ],
  1611. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1612. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1613. "keywords": [
  1614. "mapper",
  1615. "object",
  1616. "odm",
  1617. "orm",
  1618. "persistence"
  1619. ],
  1620. "support": {
  1621. "issues": "https://github.com/doctrine/persistence/issues",
  1622. "source": "https://github.com/doctrine/persistence/tree/3.2.0"
  1623. },
  1624. "funding": [
  1625. {
  1626. "url": "https://www.doctrine-project.org/sponsorship.html",
  1627. "type": "custom"
  1628. },
  1629. {
  1630. "url": "https://www.patreon.com/phpdoctrine",
  1631. "type": "patreon"
  1632. },
  1633. {
  1634. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1635. "type": "tidelift"
  1636. }
  1637. ],
  1638. "time": "2023-05-17T18:32:04+00:00"
  1639. },
  1640. {
  1641. "name": "drupal/address",
  1642. "version": "1.12.0",
  1643. "source": {
  1644. "type": "git",
  1645. "url": "https://git.drupalcode.org/project/address.git",
  1646. "reference": "8.x-1.12"
  1647. },
  1648. "dist": {
  1649. "type": "zip",
  1650. "url": "https://ftp.drupal.org/files/projects/address-8.x-1.12.zip",
  1651. "reference": "8.x-1.12",
  1652. "shasum": "67dd4699040aabf0cd6169e437706fa6a39b0b3a"
  1653. },
  1654. "require": {
  1655. "commerceguys/addressing": "^1.4.2",
  1656. "drupal/core": "^9.2 || ^10",
  1657. "php": "^7.3 || ^8.0"
  1658. },
  1659. "require-dev": {
  1660. "drupal/token": "^1.0"
  1661. },
  1662. "type": "drupal-module",
  1663. "extra": {
  1664. "drupal": {
  1665. "version": "8.x-1.12",
  1666. "datestamp": "1684710176",
  1667. "security-coverage": {
  1668. "status": "covered",
  1669. "message": "Covered by Drupal's security advisory policy"
  1670. }
  1671. }
  1672. },
  1673. "notification-url": "https://packages.drupal.org/8/downloads",
  1674. "license": [
  1675. "GPL-2.0-or-later"
  1676. ],
  1677. "authors": [
  1678. {
  1679. "name": "bojanz",
  1680. "homepage": "https://www.drupal.org/user/86106"
  1681. },
  1682. {
  1683. "name": "Centarro",
  1684. "homepage": "https://www.drupal.org/user/3661446"
  1685. },
  1686. {
  1687. "name": "dww",
  1688. "homepage": "https://www.drupal.org/user/46549"
  1689. },
  1690. {
  1691. "name": "googletorp",
  1692. "homepage": "https://www.drupal.org/user/386230"
  1693. },
  1694. {
  1695. "name": "jsacksick",
  1696. "homepage": "https://www.drupal.org/user/972218"
  1697. },
  1698. {
  1699. "name": "mglaman",
  1700. "homepage": "https://www.drupal.org/user/2416470"
  1701. },
  1702. {
  1703. "name": "rszrama",
  1704. "homepage": "https://www.drupal.org/user/49344"
  1705. }
  1706. ],
  1707. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  1708. "homepage": "http://drupal.org/project/address",
  1709. "support": {
  1710. "source": "https://git.drupalcode.org/project/address"
  1711. }
  1712. },
  1713. {
  1714. "name": "drupal/admin_toolbar",
  1715. "version": "3.4.2",
  1716. "source": {
  1717. "type": "git",
  1718. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1719. "reference": "3.4.2"
  1720. },
  1721. "dist": {
  1722. "type": "zip",
  1723. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.4.2.zip",
  1724. "reference": "3.4.2",
  1725. "shasum": "f5a008e5c73f5a11c6c8067c0ea6ebb76aa33854"
  1726. },
  1727. "require": {
  1728. "drupal/core": "^9.2 || ^10"
  1729. },
  1730. "require-dev": {
  1731. "drupal/admin_toolbar_tools": "*"
  1732. },
  1733. "type": "drupal-module",
  1734. "extra": {
  1735. "drupal": {
  1736. "version": "3.4.2",
  1737. "datestamp": "1696006195",
  1738. "security-coverage": {
  1739. "status": "covered",
  1740. "message": "Covered by Drupal's security advisory policy"
  1741. }
  1742. }
  1743. },
  1744. "notification-url": "https://packages.drupal.org/8/downloads",
  1745. "license": [
  1746. "GPL-2.0-or-later"
  1747. ],
  1748. "authors": [
  1749. {
  1750. "name": "Wilfrid Roze (eme)",
  1751. "homepage": "https://www.drupal.org/u/eme",
  1752. "role": "Maintainer"
  1753. },
  1754. {
  1755. "name": "Romain Jarraud (romainj)",
  1756. "homepage": "https://www.drupal.org/u/romainj",
  1757. "role": "Maintainer"
  1758. },
  1759. {
  1760. "name": "Adrian Cid Almaguer (adriancid)",
  1761. "homepage": "https://www.drupal.org/u/adriancid",
  1762. "email": "adriancid@gmail.com",
  1763. "role": "Maintainer"
  1764. },
  1765. {
  1766. "name": "Mohamed Anis Taktak (matio89)",
  1767. "homepage": "https://www.drupal.org/u/matio89",
  1768. "role": "Maintainer"
  1769. },
  1770. {
  1771. "name": "matio89",
  1772. "homepage": "https://www.drupal.org/user/2320090"
  1773. },
  1774. {
  1775. "name": "Musa.thomas",
  1776. "homepage": "https://www.drupal.org/user/1213824"
  1777. },
  1778. {
  1779. "name": "romainj",
  1780. "homepage": "https://www.drupal.org/user/370706"
  1781. }
  1782. ],
  1783. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1784. "homepage": "http://drupal.org/project/admin_toolbar",
  1785. "keywords": [
  1786. "Drupal",
  1787. "Toolbar"
  1788. ],
  1789. "support": {
  1790. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1791. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1792. }
  1793. },
  1794. {
  1795. "name": "drupal/adminimal_theme",
  1796. "version": "1.7.0",
  1797. "source": {
  1798. "type": "git",
  1799. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1800. "reference": "8.x-1.7"
  1801. },
  1802. "dist": {
  1803. "type": "zip",
  1804. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.7.zip",
  1805. "reference": "8.x-1.7",
  1806. "shasum": "0fe020fecab6a1f6d877f2e622fb9f916ada52bb"
  1807. },
  1808. "require": {
  1809. "drupal/core": "^9.3 || ^10",
  1810. "drupal/seven": "~1.0"
  1811. },
  1812. "type": "drupal-theme",
  1813. "extra": {
  1814. "drupal": {
  1815. "version": "8.x-1.7",
  1816. "datestamp": "1691504486",
  1817. "security-coverage": {
  1818. "status": "covered",
  1819. "message": "Covered by Drupal's security advisory policy"
  1820. }
  1821. }
  1822. },
  1823. "notification-url": "https://packages.drupal.org/8/downloads",
  1824. "license": [
  1825. "GPL-2.0+"
  1826. ],
  1827. "authors": [
  1828. {
  1829. "name": "ANDiTKO",
  1830. "homepage": "https://www.drupal.org/user/1428124"
  1831. },
  1832. {
  1833. "name": "andrey.troeglazov",
  1834. "homepage": "https://www.drupal.org/user/3145389"
  1835. },
  1836. {
  1837. "name": "realityloop",
  1838. "homepage": "https://www.drupal.org/user/139189"
  1839. },
  1840. {
  1841. "name": "rjjakes",
  1842. "homepage": "https://www.drupal.org/user/3457245"
  1843. }
  1844. ],
  1845. "description": "Drupal administration theme with modern minimalist design.",
  1846. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1847. "support": {
  1848. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1849. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1850. }
  1851. },
  1852. {
  1853. "name": "drupal/advanced_email_validation",
  1854. "version": "1.1.5",
  1855. "source": {
  1856. "type": "git",
  1857. "url": "https://git.drupalcode.org/project/advanced_email_validation.git",
  1858. "reference": "1.1.5"
  1859. },
  1860. "dist": {
  1861. "type": "zip",
  1862. "url": "https://ftp.drupal.org/files/projects/advanced_email_validation-1.1.5.zip",
  1863. "reference": "1.1.5",
  1864. "shasum": "39bb313fe3be5c329012aa5310a6081cdc7e9df0"
  1865. },
  1866. "require": {
  1867. "drupal/core": "^9.3 || ^10",
  1868. "stymiee/email-validator": "^1.0.1"
  1869. },
  1870. "type": "drupal-module",
  1871. "extra": {
  1872. "drupal": {
  1873. "version": "1.1.5",
  1874. "datestamp": "1686705109",
  1875. "security-coverage": {
  1876. "status": "covered",
  1877. "message": "Covered by Drupal's security advisory policy"
  1878. }
  1879. }
  1880. },
  1881. "notification-url": "https://packages.drupal.org/8/downloads",
  1882. "license": [
  1883. "GPL-2.0+"
  1884. ],
  1885. "authors": [
  1886. {
  1887. "name": "Max Pogonowski (darvanen)",
  1888. "homepage": "https://www.drupal.org/u/darvanen",
  1889. "role": "Maintainer"
  1890. }
  1891. ],
  1892. "description": "User account email validation using MX records and lists of free or disposable emails (configurable).",
  1893. "homepage": "https://www.drupal.org/project/advanced_email_validation",
  1894. "keywords": [
  1895. "Drupal"
  1896. ],
  1897. "support": {
  1898. "source": "http://cgit.drupalcode.org/advanced_email_validation",
  1899. "issues": "https://www.drupal.org/project/issues/advanced_email_validation"
  1900. }
  1901. },
  1902. {
  1903. "name": "drupal/advanced_text_formatter",
  1904. "version": "3.0.0-rc1",
  1905. "source": {
  1906. "type": "git",
  1907. "url": "https://git.drupalcode.org/project/advanced_text_formatter.git",
  1908. "reference": "3.0.0-rc1"
  1909. },
  1910. "dist": {
  1911. "type": "zip",
  1912. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-3.0.0-rc1.zip",
  1913. "reference": "3.0.0-rc1",
  1914. "shasum": "394729127f44a6398e29f5e5702e6def00a06e20"
  1915. },
  1916. "require": {
  1917. "drupal/core": "^8 || ^9 || ^10"
  1918. },
  1919. "type": "drupal-module",
  1920. "extra": {
  1921. "drupal": {
  1922. "version": "3.0.0-rc1",
  1923. "datestamp": "1675163352",
  1924. "security-coverage": {
  1925. "status": "not-covered",
  1926. "message": "RC releases are not covered by Drupal security advisories."
  1927. }
  1928. }
  1929. },
  1930. "notification-url": "https://packages.drupal.org/8/downloads",
  1931. "license": [
  1932. "GPL-2.0-or-later"
  1933. ],
  1934. "authors": [
  1935. {
  1936. "name": "azovsky",
  1937. "homepage": "https://www.drupal.org/user/330533"
  1938. },
  1939. {
  1940. "name": "thmnhat",
  1941. "homepage": "https://www.drupal.org/user/998946"
  1942. }
  1943. ],
  1944. "description": "Provides an additional formatter for text field, text area and text format.",
  1945. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  1946. "support": {
  1947. "source": "https://git.drupalcode.org/project/advanced_text_formatter"
  1948. }
  1949. },
  1950. {
  1951. "name": "drupal/amswap",
  1952. "version": "3.2.1",
  1953. "source": {
  1954. "type": "git",
  1955. "url": "https://git.drupalcode.org/project/amswap.git",
  1956. "reference": "3.2.1"
  1957. },
  1958. "dist": {
  1959. "type": "zip",
  1960. "url": "https://ftp.drupal.org/files/projects/amswap-3.2.1.zip",
  1961. "reference": "3.2.1",
  1962. "shasum": "6fdfb96eb3a000d6b01e9d72071ad736f2e81889"
  1963. },
  1964. "require": {
  1965. "drupal/core": "^8 || ^9 || ^10"
  1966. },
  1967. "type": "drupal-module",
  1968. "extra": {
  1969. "drupal": {
  1970. "version": "3.2.1",
  1971. "datestamp": "1680451461",
  1972. "security-coverage": {
  1973. "status": "not-covered",
  1974. "message": "Project has not opted into security advisory coverage!"
  1975. }
  1976. }
  1977. },
  1978. "notification-url": "https://packages.drupal.org/8/downloads",
  1979. "license": [
  1980. "GPL-2.0-or-later"
  1981. ],
  1982. "authors": [
  1983. {
  1984. "name": "cedewey",
  1985. "homepage": "https://www.drupal.org/user/38694"
  1986. },
  1987. {
  1988. "name": "droces",
  1989. "homepage": "https://www.drupal.org/user/2996575"
  1990. }
  1991. ],
  1992. "description": "Allows the administration menu to be customised per user role.",
  1993. "homepage": "https://www.drupal.org/project/amswap",
  1994. "keywords": [
  1995. "Drupal"
  1996. ],
  1997. "support": {
  1998. "source": "http://cgit.drupalcode.org/amswap",
  1999. "issues": "https://www.drupal.org/project/issues/amswap"
  2000. }
  2001. },
  2002. {
  2003. "name": "drupal/audiofield",
  2004. "version": "1.13.0",
  2005. "source": {
  2006. "type": "git",
  2007. "url": "https://git.drupalcode.org/project/audiofield.git",
  2008. "reference": "8.x-1.13"
  2009. },
  2010. "dist": {
  2011. "type": "zip",
  2012. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  2013. "reference": "8.x-1.13",
  2014. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  2015. },
  2016. "require": {
  2017. "drupal/core": "^8 || ^9 || ^10"
  2018. },
  2019. "type": "drupal-module",
  2020. "extra": {
  2021. "drupal": {
  2022. "version": "8.x-1.13",
  2023. "datestamp": "1681143245",
  2024. "security-coverage": {
  2025. "status": "covered",
  2026. "message": "Covered by Drupal's security advisory policy"
  2027. }
  2028. },
  2029. "drush": {
  2030. "services": {
  2031. "drush.services.yml": "^9"
  2032. }
  2033. }
  2034. },
  2035. "notification-url": "https://packages.drupal.org/8/downloads",
  2036. "license": [
  2037. "GPL-2.0-or-later"
  2038. ],
  2039. "authors": [
  2040. {
  2041. "name": "Daniel Moberly",
  2042. "homepage": "https://www.drupal.org/u/danielmoberly",
  2043. "role": "Maintainer"
  2044. },
  2045. {
  2046. "name": "tamerzg",
  2047. "homepage": "https://www.drupal.org/user/464564"
  2048. }
  2049. ],
  2050. "description": "AudioField Module",
  2051. "homepage": "https://www.drupal.org/project/audiofield",
  2052. "support": {
  2053. "source": "https://git.drupalcode.org/project/audiofield",
  2054. "issues": "https://www.drupal.org/project/issues/audiofield"
  2055. }
  2056. },
  2057. {
  2058. "name": "drupal/autocomplete_deluxe",
  2059. "version": "2.0.3",
  2060. "source": {
  2061. "type": "git",
  2062. "url": "https://git.drupalcode.org/project/autocomplete_deluxe.git",
  2063. "reference": "2.0.3"
  2064. },
  2065. "dist": {
  2066. "type": "zip",
  2067. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-2.0.3.zip",
  2068. "reference": "2.0.3",
  2069. "shasum": "686bb49e7366d59f7eef7acf8906ba907898497f"
  2070. },
  2071. "require": {
  2072. "drupal/core": "^8 || ^9 || ^10"
  2073. },
  2074. "type": "drupal-module",
  2075. "extra": {
  2076. "drupal": {
  2077. "version": "2.0.3",
  2078. "datestamp": "1673454732",
  2079. "security-coverage": {
  2080. "status": "covered",
  2081. "message": "Covered by Drupal's security advisory policy"
  2082. }
  2083. }
  2084. },
  2085. "notification-url": "https://packages.drupal.org/8/downloads",
  2086. "license": [
  2087. "GPL-2.0-or-later"
  2088. ],
  2089. "authors": [
  2090. {
  2091. "name": "Vardot",
  2092. "homepage": "https://www.drupal.org/vardot",
  2093. "role": "Maintenance for D8 and D9 versions"
  2094. },
  2095. {
  2096. "name": "Mediacurrent",
  2097. "homepage": "https://www.drupal.org/mediacurrent",
  2098. "role": "Supporting organization"
  2099. },
  2100. {
  2101. "name": "Mohammed J. Razem",
  2102. "homepage": "https://www.drupal.org/user/255384"
  2103. },
  2104. {
  2105. "name": "mpriscella",
  2106. "homepage": "https://www.drupal.org/user/2354820"
  2107. },
  2108. {
  2109. "name": "Rajab Natshah",
  2110. "homepage": "https://www.drupal.org/user/1414312"
  2111. },
  2112. {
  2113. "name": "sepgil",
  2114. "homepage": "https://www.drupal.org/user/512828"
  2115. }
  2116. ],
  2117. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  2118. "homepage": "https://www.drupal.org/project/autocomplete_deluxe",
  2119. "support": {
  2120. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  2121. "issues": "https://www.drupal.org/project/issues/autocomplete_deluxe"
  2122. }
  2123. },
  2124. {
  2125. "name": "drupal/autologout",
  2126. "version": "1.4.0",
  2127. "source": {
  2128. "type": "git",
  2129. "url": "https://git.drupalcode.org/project/autologout.git",
  2130. "reference": "8.x-1.4"
  2131. },
  2132. "dist": {
  2133. "type": "zip",
  2134. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.4.zip",
  2135. "reference": "8.x-1.4",
  2136. "shasum": "f751062f463d0b52df81764f67cee3a0be97825e"
  2137. },
  2138. "require": {
  2139. "drupal/core": "^9.2 || ^10"
  2140. },
  2141. "type": "drupal-module",
  2142. "extra": {
  2143. "drupal": {
  2144. "version": "8.x-1.4",
  2145. "datestamp": "1658168199",
  2146. "security-coverage": {
  2147. "status": "covered",
  2148. "message": "Covered by Drupal's security advisory policy"
  2149. }
  2150. }
  2151. },
  2152. "notification-url": "https://packages.drupal.org/8/downloads",
  2153. "license": [
  2154. "GPL-2.0-or-later"
  2155. ],
  2156. "authors": [
  2157. {
  2158. "name": "AjitS",
  2159. "homepage": "https://www.drupal.org/user/981944"
  2160. },
  2161. {
  2162. "name": "AjK",
  2163. "homepage": "https://www.drupal.org/user/39030"
  2164. },
  2165. {
  2166. "name": "boshtian",
  2167. "homepage": "https://www.drupal.org/user/1773456"
  2168. },
  2169. {
  2170. "name": "dandrews",
  2171. "homepage": "https://www.drupal.org/user/2014490"
  2172. },
  2173. {
  2174. "name": "darksnow",
  2175. "homepage": "https://www.drupal.org/user/391915"
  2176. },
  2177. {
  2178. "name": "japerry",
  2179. "homepage": "https://www.drupal.org/user/45640"
  2180. },
  2181. {
  2182. "name": "johnennew",
  2183. "homepage": "https://www.drupal.org/user/1150042"
  2184. },
  2185. {
  2186. "name": "jrglasgow",
  2187. "homepage": "https://www.drupal.org/user/36590"
  2188. },
  2189. {
  2190. "name": "kmasood",
  2191. "homepage": "https://www.drupal.org/user/1262860"
  2192. },
  2193. {
  2194. "name": "levelos",
  2195. "homepage": "https://www.drupal.org/user/54135"
  2196. },
  2197. {
  2198. "name": "prabeen.giri",
  2199. "homepage": "https://www.drupal.org/user/913078"
  2200. },
  2201. {
  2202. "name": "str8",
  2203. "homepage": "https://www.drupal.org/user/2865063"
  2204. }
  2205. ],
  2206. "description": "Adds automated timed logout.",
  2207. "homepage": "http://drupal.org/project/autologout",
  2208. "support": {
  2209. "source": "https://git.drupalcode.org/project/autologout"
  2210. }
  2211. },
  2212. {
  2213. "name": "drupal/better_exposed_filters",
  2214. "version": "6.0.3",
  2215. "source": {
  2216. "type": "git",
  2217. "url": "https://git.drupalcode.org/project/better_exposed_filters.git",
  2218. "reference": "6.0.3"
  2219. },
  2220. "dist": {
  2221. "type": "zip",
  2222. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-6.0.3.zip",
  2223. "reference": "6.0.3",
  2224. "shasum": "b5c20207d7679542bb81955771956c18083e6e0b"
  2225. },
  2226. "require": {
  2227. "drupal/core": "^9 || ^10",
  2228. "drupal/jquery_ui": "^1.6",
  2229. "drupal/jquery_ui_datepicker": "^2.0",
  2230. "drupal/jquery_ui_slider": "^2.0.0",
  2231. "drupal/jquery_ui_touch_punch": "^1.0"
  2232. },
  2233. "type": "drupal-module",
  2234. "extra": {
  2235. "drupal": {
  2236. "version": "6.0.3",
  2237. "datestamp": "1671541877",
  2238. "security-coverage": {
  2239. "status": "covered",
  2240. "message": "Covered by Drupal's security advisory policy"
  2241. }
  2242. }
  2243. },
  2244. "notification-url": "https://packages.drupal.org/8/downloads",
  2245. "license": [
  2246. "GPL-2.0-or-later"
  2247. ],
  2248. "authors": [
  2249. {
  2250. "name": "Mike Keran",
  2251. "homepage": "https://www.drupal.org/u/mikeker"
  2252. },
  2253. {
  2254. "name": "Martin Keereman",
  2255. "homepage": "https://www.drupal.org/u/etroid"
  2256. },
  2257. {
  2258. "name": "Neslee Canil Pinto",
  2259. "homepage": "https://www.drupal.org/u/neslee-canil-pinto"
  2260. },
  2261. {
  2262. "name": "mikeker",
  2263. "homepage": "https://www.drupal.org/user/192273"
  2264. },
  2265. {
  2266. "name": "Neslee Canil Pinto",
  2267. "homepage": "https://www.drupal.org/user/3580850"
  2268. },
  2269. {
  2270. "name": "podarok",
  2271. "homepage": "https://www.drupal.org/user/116002"
  2272. },
  2273. {
  2274. "name": "rlhawk",
  2275. "homepage": "https://www.drupal.org/user/352283"
  2276. }
  2277. ],
  2278. "description": "Replaces the Views default single- or multi-select boxes with more advanced options.",
  2279. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2280. "support": {
  2281. "source": "https://git.drupalcode.org/project/better_exposed_filters",
  2282. "issues": "https://www.drupal.org/project/issues/better_exposed_filters"
  2283. }
  2284. },
  2285. {
  2286. "name": "drupal/block_class",
  2287. "version": "2.0.11",
  2288. "source": {
  2289. "type": "git",
  2290. "url": "https://git.drupalcode.org/project/block_class.git",
  2291. "reference": "2.0.11"
  2292. },
  2293. "dist": {
  2294. "type": "zip",
  2295. "url": "https://ftp.drupal.org/files/projects/block_class-2.0.11.zip",
  2296. "reference": "2.0.11",
  2297. "shasum": "bd098ef0071b5baca1248c0deaa9bbedc0ddcaf4"
  2298. },
  2299. "require": {
  2300. "drupal/core": "^8 || ^9 || ^10"
  2301. },
  2302. "type": "drupal-module",
  2303. "extra": {
  2304. "drupal": {
  2305. "version": "2.0.11",
  2306. "datestamp": "1672065313",
  2307. "security-coverage": {
  2308. "status": "covered",
  2309. "message": "Covered by Drupal's security advisory policy"
  2310. }
  2311. }
  2312. },
  2313. "notification-url": "https://packages.drupal.org/8/downloads",
  2314. "license": [
  2315. "GPL-2.0-or-later"
  2316. ],
  2317. "authors": [
  2318. {
  2319. "name": "Todd Nienkerk",
  2320. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2321. "role": "Maintainer"
  2322. },
  2323. {
  2324. "name": "Renato Gonçalves (RenatoG)",
  2325. "homepage": "https://www.drupal.org/u/RenatoG",
  2326. "role": "Maintainer"
  2327. },
  2328. {
  2329. "name": "Neslee Canil Pinto",
  2330. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  2331. "role": "Maintainer"
  2332. },
  2333. {
  2334. "name": "Aaron Stanush",
  2335. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2336. "role": "Maintainer"
  2337. },
  2338. {
  2339. "name": "David Suissa (DYdave)",
  2340. "homepage": "https://www.drupal.org/u/DYdave",
  2341. "role": "Maintainer"
  2342. },
  2343. {
  2344. "name": "Four Kitchens",
  2345. "homepage": "https://www.drupal.org/user/358502",
  2346. "role": "Maintainer"
  2347. },
  2348. {
  2349. "name": "berenddeboer",
  2350. "homepage": "https://www.drupal.org/u/berenddeboer",
  2351. "role": "Maintainer"
  2352. },
  2353. {
  2354. "name": "elliotttf",
  2355. "homepage": "https://www.drupal.org/u/elliotttf",
  2356. "role": "Maintainer"
  2357. },
  2358. {
  2359. "name": "Michal Minecki (mirzu)",
  2360. "homepage": "https://www.drupal.org/u/mirzu",
  2361. "role": "Maintainer"
  2362. },
  2363. {
  2364. "name": "Patrick Coffey (pcoffey)",
  2365. "homepage": "https://www.drupal.org/u/pcoffey",
  2366. "role": "Maintainer"
  2367. },
  2368. {
  2369. "name": "Taylor Smith (tsmith512)",
  2370. "homepage": "https://www.drupal.org/u/tsmith512",
  2371. "role": "Maintainer"
  2372. }
  2373. ],
  2374. "description": "Allows assigning classes to Blocks.",
  2375. "homepage": "https://www.drupal.org/project/block_class",
  2376. "keywords": [
  2377. "Drupal"
  2378. ],
  2379. "support": {
  2380. "source": "https://git.drupalcode.org/project/block_class",
  2381. "issues": "https://www.drupal.org/project/issues/block_class",
  2382. "irc": "irc://irc.freenode.org/drupal-contribute"
  2383. }
  2384. },
  2385. {
  2386. "name": "drupal/bulkdelete",
  2387. "version": "dev-1.x",
  2388. "source": {
  2389. "type": "git",
  2390. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2391. "reference": "95a7ff49f152021be88ba562c247347ff36392c7"
  2392. },
  2393. "require": {
  2394. "drupal/core": "^8.7.7 || ^9 || ^10"
  2395. },
  2396. "type": "drupal-module",
  2397. "extra": {
  2398. "branch-alias": {
  2399. "dev-1.x": "1.x-dev"
  2400. },
  2401. "drupal": {
  2402. "version": "8.x-1.x-dev",
  2403. "datestamp": "1655322426",
  2404. "security-coverage": {
  2405. "status": "not-covered",
  2406. "message": "Dev releases are not covered by Drupal security advisories."
  2407. }
  2408. }
  2409. },
  2410. "notification-url": "https://packages.drupal.org/8/downloads",
  2411. "license": [
  2412. "GPL-2.0-or-later"
  2413. ],
  2414. "authors": [
  2415. {
  2416. "name": "Kars-T",
  2417. "homepage": "https://www.drupal.org/user/224499"
  2418. },
  2419. {
  2420. "name": "Rahul Seth",
  2421. "homepage": "https://www.drupal.org/user/2694359"
  2422. },
  2423. {
  2424. "name": "adriancid",
  2425. "homepage": "https://www.drupal.org/user/1962106"
  2426. },
  2427. {
  2428. "name": "robertDouglass",
  2429. "homepage": "https://www.drupal.org/user/5449"
  2430. }
  2431. ],
  2432. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2433. "homepage": "https://www.drupal.org/project/bulkdelete",
  2434. "support": {
  2435. "source": "https://git.drupalcode.org/project/bulkdelete"
  2436. }
  2437. },
  2438. {
  2439. "name": "drupal/config_devel",
  2440. "version": "dev-1.x",
  2441. "source": {
  2442. "type": "git",
  2443. "url": "https://git.drupalcode.org/project/config_devel.git",
  2444. "reference": "d0a98704eb6f9d4bdfe8e91e678b895648bb3c83"
  2445. },
  2446. "require": {
  2447. "drupal/core": "^9.3 || ^10"
  2448. },
  2449. "type": "drupal-module",
  2450. "extra": {
  2451. "branch-alias": {
  2452. "dev-1.x": "1.x-dev"
  2453. },
  2454. "drupal": {
  2455. "version": "8.x-1.8+2-dev",
  2456. "datestamp": "1678264720",
  2457. "security-coverage": {
  2458. "status": "not-covered",
  2459. "message": "Dev releases are not covered by Drupal security advisories."
  2460. }
  2461. }
  2462. },
  2463. "notification-url": "https://packages.drupal.org/8/downloads",
  2464. "license": [
  2465. "GPL-2.0+"
  2466. ],
  2467. "authors": [
  2468. {
  2469. "name": "alexpott",
  2470. "homepage": "https://www.drupal.org/user/157725"
  2471. },
  2472. {
  2473. "name": "benjy",
  2474. "homepage": "https://www.drupal.org/user/1852732"
  2475. },
  2476. {
  2477. "name": "chx",
  2478. "homepage": "https://www.drupal.org/user/9446"
  2479. },
  2480. {
  2481. "name": "joachim",
  2482. "homepage": "https://www.drupal.org/user/107701"
  2483. },
  2484. {
  2485. "name": "nedjo",
  2486. "homepage": "https://www.drupal.org/user/4481"
  2487. },
  2488. {
  2489. "name": "vijaycs85",
  2490. "homepage": "https://www.drupal.org/user/93488"
  2491. }
  2492. ],
  2493. "description": "Helps developers work with configuration.",
  2494. "homepage": "https://www.drupal.org/project/config_devel",
  2495. "support": {
  2496. "source": "https://git.drupalcode.org/project/config_devel"
  2497. }
  2498. },
  2499. {
  2500. "name": "drupal/config_filter",
  2501. "version": "2.6.0",
  2502. "source": {
  2503. "type": "git",
  2504. "url": "https://git.drupalcode.org/project/config_filter.git",
  2505. "reference": "8.x-2.6"
  2506. },
  2507. "dist": {
  2508. "type": "zip",
  2509. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.6.zip",
  2510. "reference": "8.x-2.6",
  2511. "shasum": "fd1a057a402436fc906c63bf0a74722f73b9b155"
  2512. },
  2513. "require": {
  2514. "drupal/core": "^8.8 || ^9 || ^10"
  2515. },
  2516. "conflict": {
  2517. "drush/drush": "<10"
  2518. },
  2519. "suggest": {
  2520. "drupal/config_split": "Split site configuration for different environments."
  2521. },
  2522. "type": "drupal-module",
  2523. "extra": {
  2524. "drupal": {
  2525. "version": "8.x-2.6",
  2526. "datestamp": "1698308577",
  2527. "security-coverage": {
  2528. "status": "covered",
  2529. "message": "Covered by Drupal's security advisory policy"
  2530. }
  2531. }
  2532. },
  2533. "notification-url": "https://packages.drupal.org/8/downloads",
  2534. "license": [
  2535. "GPL-2.0-or-later"
  2536. ],
  2537. "authors": [
  2538. {
  2539. "name": "Fabian Bircher",
  2540. "homepage": "https://www.drupal.org/u/bircher",
  2541. "email": "opensource@fabianbircher.com",
  2542. "role": "Maintainer"
  2543. },
  2544. {
  2545. "name": "Nuvole Web",
  2546. "homepage": "http://nuvole.org",
  2547. "email": "info@nuvole.org",
  2548. "role": "Maintainer"
  2549. },
  2550. {
  2551. "name": "pescetti",
  2552. "homepage": "https://www.drupal.org/user/436244"
  2553. }
  2554. ],
  2555. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2556. "homepage": "https://www.drupal.org/project/config_filter",
  2557. "keywords": [
  2558. "Drupal",
  2559. "configuration",
  2560. "configuration management"
  2561. ],
  2562. "support": {
  2563. "source": "https://git.drupalcode.org/project/config_filter",
  2564. "issues": "https://www.drupal.org/project/issues/config_filter",
  2565. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2566. }
  2567. },
  2568. {
  2569. "name": "drupal/config_ignore",
  2570. "version": "2.4.0",
  2571. "source": {
  2572. "type": "git",
  2573. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2574. "reference": "8.x-2.4"
  2575. },
  2576. "dist": {
  2577. "type": "zip",
  2578. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.4.zip",
  2579. "reference": "8.x-2.4",
  2580. "shasum": "e0e45dde2d6927c5d26de59f352792fb6cf26554"
  2581. },
  2582. "require": {
  2583. "drupal/config_filter": "^1 || ^2",
  2584. "drupal/core": "^8 || ^9 || ^10"
  2585. },
  2586. "type": "drupal-module",
  2587. "extra": {
  2588. "drupal": {
  2589. "version": "8.x-2.4",
  2590. "datestamp": "1676045435",
  2591. "security-coverage": {
  2592. "status": "covered",
  2593. "message": "Covered by Drupal's security advisory policy"
  2594. }
  2595. }
  2596. },
  2597. "notification-url": "https://packages.drupal.org/8/downloads",
  2598. "license": [
  2599. "GPL-2.0-or-later"
  2600. ],
  2601. "authors": [
  2602. {
  2603. "name": "Tommy Lynge Jørgensen",
  2604. "homepage": "https://www.drupal.org/u/tlyngej",
  2605. "email": "tlyngej@gmail.com",
  2606. "role": "Maintainer"
  2607. },
  2608. {
  2609. "name": "Fabian Bircher",
  2610. "homepage": "https://www.drupal.org/u/bircher",
  2611. "role": "Maintainer"
  2612. },
  2613. {
  2614. "name": "tlyngej",
  2615. "homepage": "https://www.drupal.org/user/413139"
  2616. }
  2617. ],
  2618. "description": "Ignore certain configuration during import.",
  2619. "homepage": "http://drupal.org/project/config_ignore",
  2620. "support": {
  2621. "source": "https://git.drupalcode.org/project/config_ignore",
  2622. "issues": "https://drupal.org/project/config_ignore",
  2623. "irc": "irc://irc.freenode.org/drupal-contribute"
  2624. }
  2625. },
  2626. {
  2627. "name": "drupal/config_pages",
  2628. "version": "2.15.0",
  2629. "source": {
  2630. "type": "git",
  2631. "url": "https://git.drupalcode.org/project/config_pages.git",
  2632. "reference": "8.x-2.15"
  2633. },
  2634. "dist": {
  2635. "type": "zip",
  2636. "url": "https://ftp.drupal.org/files/projects/config_pages-8.x-2.15.zip",
  2637. "reference": "8.x-2.15",
  2638. "shasum": "55d4a898c6df03295e26ce07930c6b7d06183287"
  2639. },
  2640. "require": {
  2641. "drupal/core": "^8.5 | ^9 || ^10"
  2642. },
  2643. "type": "drupal-module",
  2644. "extra": {
  2645. "drupal": {
  2646. "version": "8.x-2.15",
  2647. "datestamp": "1688847929",
  2648. "security-coverage": {
  2649. "status": "covered",
  2650. "message": "Covered by Drupal's security advisory policy"
  2651. }
  2652. },
  2653. "drush": {
  2654. "services": {
  2655. "drush.services.yml": "^9"
  2656. }
  2657. }
  2658. },
  2659. "notification-url": "https://packages.drupal.org/8/downloads",
  2660. "license": [
  2661. "GPL-2.0-or-later"
  2662. ],
  2663. "authors": [
  2664. {
  2665. "name": "m.krestnicov",
  2666. "homepage": "https://www.drupal.org/user/3193903"
  2667. },
  2668. {
  2669. "name": "Qwaygon",
  2670. "homepage": "https://www.drupal.org/user/636624"
  2671. },
  2672. {
  2673. "name": "shumer",
  2674. "homepage": "https://www.drupal.org/user/2297432"
  2675. }
  2676. ],
  2677. "description": "ConfigPages module",
  2678. "homepage": "http://drupal.org/project/config_pages",
  2679. "keywords": [
  2680. "Drupal"
  2681. ],
  2682. "support": {
  2683. "source": "http://cgit.drupalcode.org/config_pages",
  2684. "issues": "http://drupal.org/project/issues/config_pages"
  2685. }
  2686. },
  2687. {
  2688. "name": "drupal/config_update",
  2689. "version": "2.0.0-alpha3",
  2690. "source": {
  2691. "type": "git",
  2692. "url": "https://git.drupalcode.org/project/config_update.git",
  2693. "reference": "2.0.0-alpha3"
  2694. },
  2695. "dist": {
  2696. "type": "zip",
  2697. "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha3.zip",
  2698. "reference": "2.0.0-alpha3",
  2699. "shasum": "c35e81e8fb77efdff5ddca3a87116ea0c522a7e2"
  2700. },
  2701. "require": {
  2702. "drupal/core": "^9.4 || ^10"
  2703. },
  2704. "type": "drupal-module",
  2705. "extra": {
  2706. "drupal": {
  2707. "version": "2.0.0-alpha3",
  2708. "datestamp": "1683807608",
  2709. "security-coverage": {
  2710. "status": "not-covered",
  2711. "message": "Alpha releases are not covered by Drupal security advisories."
  2712. }
  2713. }
  2714. },
  2715. "notification-url": "https://packages.drupal.org/8/downloads",
  2716. "license": [
  2717. "GPL-2.0-or-later"
  2718. ],
  2719. "authors": [
  2720. {
  2721. "name": "codebymikey",
  2722. "homepage": "https://www.drupal.org/user/3573206"
  2723. },
  2724. {
  2725. "name": "Pasqualle",
  2726. "homepage": "https://www.drupal.org/user/80733"
  2727. }
  2728. ],
  2729. "description": "Provides basic revert and update functionality for other modules.",
  2730. "homepage": "https://www.drupal.org/project/config_update",
  2731. "support": {
  2732. "source": "https://git.drupalcode.org/project/config_update"
  2733. }
  2734. },
  2735. {
  2736. "name": "drupal/content_as_config",
  2737. "version": "1.0.10",
  2738. "source": {
  2739. "type": "git",
  2740. "url": "https://git.drupalcode.org/project/content_as_config.git",
  2741. "reference": "1.0.10"
  2742. },
  2743. "dist": {
  2744. "type": "zip",
  2745. "url": "https://ftp.drupal.org/files/projects/content_as_config-1.0.10.zip",
  2746. "reference": "1.0.10",
  2747. "shasum": "3ed5dd56486a98b6832eb6fea257792d5af145b4"
  2748. },
  2749. "require": {
  2750. "drupal/core": "^9.3 || ^10"
  2751. },
  2752. "conflict": {
  2753. "drupal/structure_sync": "*"
  2754. },
  2755. "require-dev": {
  2756. "drupal/feeds": "*",
  2757. "drupal/group": "*"
  2758. },
  2759. "suggest": {
  2760. "drupal/markdown": "Render module help more elegantly."
  2761. },
  2762. "type": "drupal-module",
  2763. "extra": {
  2764. "drupal": {
  2765. "version": "1.0.10",
  2766. "datestamp": "1665066743",
  2767. "security-coverage": {
  2768. "status": "covered",
  2769. "message": "Covered by Drupal's security advisory policy"
  2770. }
  2771. },
  2772. "drush": {
  2773. "services": {
  2774. "drush.services.yml": "^9"
  2775. }
  2776. }
  2777. },
  2778. "notification-url": "https://packages.drupal.org/8/downloads",
  2779. "license": [
  2780. "GPL-2.0-or-later"
  2781. ],
  2782. "authors": [
  2783. {
  2784. "name": "Daniel Johnson (daniel_j)",
  2785. "homepage": "https://www.drupal.org/u/daniel_j",
  2786. "role": "Maintainer"
  2787. }
  2788. ],
  2789. "description": "Allows content entities to be exported/imported as configuration.",
  2790. "homepage": "https://drupal.org/project/content_as_config",
  2791. "keywords": [
  2792. "Configuration",
  2793. "Drupal"
  2794. ],
  2795. "support": {
  2796. "source": "https://git.drupalcode.org/project/content_as_config",
  2797. "issues": "https://www.drupal.org/project/issues/content_as_config"
  2798. }
  2799. },
  2800. {
  2801. "name": "drupal/content_lock",
  2802. "version": "2.3.0",
  2803. "source": {
  2804. "type": "git",
  2805. "url": "https://git.drupalcode.org/project/content_lock.git",
  2806. "reference": "8.x-2.3"
  2807. },
  2808. "dist": {
  2809. "type": "zip",
  2810. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.3.zip",
  2811. "reference": "8.x-2.3",
  2812. "shasum": "0e8343f82330899baef65aa85d9994154e29506f"
  2813. },
  2814. "require": {
  2815. "drupal/core": "^9.0 || ^10.0"
  2816. },
  2817. "type": "drupal-module",
  2818. "extra": {
  2819. "drupal": {
  2820. "version": "8.x-2.3",
  2821. "datestamp": "1668427342",
  2822. "security-coverage": {
  2823. "status": "covered",
  2824. "message": "Covered by Drupal's security advisory policy"
  2825. }
  2826. }
  2827. },
  2828. "notification-url": "https://packages.drupal.org/8/downloads",
  2829. "license": [
  2830. "GPL-2.0-or-later"
  2831. ],
  2832. "authors": [
  2833. {
  2834. "name": "alexpott",
  2835. "homepage": "https://www.drupal.org/user/157725"
  2836. },
  2837. {
  2838. "name": "chr.fritsch",
  2839. "homepage": "https://www.drupal.org/user/2103716"
  2840. },
  2841. {
  2842. "name": "daniel.bosen",
  2843. "homepage": "https://www.drupal.org/user/404865"
  2844. },
  2845. {
  2846. "name": "ergonlogic",
  2847. "homepage": "https://www.drupal.org/user/368613"
  2848. },
  2849. {
  2850. "name": "mfb",
  2851. "homepage": "https://www.drupal.org/user/12302"
  2852. },
  2853. {
  2854. "name": "pandaski",
  2855. "homepage": "https://www.drupal.org/user/1987218"
  2856. },
  2857. {
  2858. "name": "volkerk",
  2859. "homepage": "https://www.drupal.org/user/57527"
  2860. }
  2861. ],
  2862. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  2863. "homepage": "https://www.drupal.org/project/content_lock",
  2864. "support": {
  2865. "source": "https://git.drupalcode.org/project/content_lock"
  2866. }
  2867. },
  2868. {
  2869. "name": "drupal/context",
  2870. "version": "5.0.0-rc1",
  2871. "source": {
  2872. "type": "git",
  2873. "url": "https://git.drupalcode.org/project/context.git",
  2874. "reference": "5.0.0-rc1"
  2875. },
  2876. "dist": {
  2877. "type": "zip",
  2878. "url": "https://ftp.drupal.org/files/projects/context-5.0.0-rc1.zip",
  2879. "reference": "5.0.0-rc1",
  2880. "shasum": "ae1549bc5e5c75c0c6799b7b737d7391cfc5be73"
  2881. },
  2882. "require": {
  2883. "drupal/core": "^9.3 || ^10"
  2884. },
  2885. "type": "drupal-module",
  2886. "extra": {
  2887. "drupal": {
  2888. "version": "5.0.0-rc1",
  2889. "datestamp": "1677054769",
  2890. "security-coverage": {
  2891. "status": "not-covered",
  2892. "message": "RC releases are not covered by Drupal security advisories."
  2893. }
  2894. }
  2895. },
  2896. "notification-url": "https://packages.drupal.org/8/downloads",
  2897. "license": [
  2898. "MIT"
  2899. ],
  2900. "authors": [
  2901. {
  2902. "name": "Christoffer Palm",
  2903. "homepage": "http://www.oddhill.se/",
  2904. "email": "christoffer.palm@oddhill.se",
  2905. "role": "Developer"
  2906. },
  2907. {
  2908. "name": "boshtian",
  2909. "homepage": "https://www.drupal.org/user/1773456"
  2910. },
  2911. {
  2912. "name": "colan",
  2913. "homepage": "https://www.drupal.org/user/58704"
  2914. },
  2915. {
  2916. "name": "emanaton",
  2917. "homepage": "https://www.drupal.org/user/120853"
  2918. },
  2919. {
  2920. "name": "febbraro",
  2921. "homepage": "https://www.drupal.org/user/43670"
  2922. },
  2923. {
  2924. "name": "fizk",
  2925. "homepage": "https://www.drupal.org/user/473174"
  2926. },
  2927. {
  2928. "name": "hass",
  2929. "homepage": "https://www.drupal.org/user/85918"
  2930. },
  2931. {
  2932. "name": "hefox",
  2933. "homepage": "https://www.drupal.org/user/426416"
  2934. },
  2935. {
  2936. "name": "jmiccolis",
  2937. "homepage": "https://www.drupal.org/user/31731"
  2938. },
  2939. {
  2940. "name": "Kristen Pol",
  2941. "homepage": "https://www.drupal.org/user/8389"
  2942. },
  2943. {
  2944. "name": "nedjo",
  2945. "homepage": "https://www.drupal.org/user/4481"
  2946. },
  2947. {
  2948. "name": "NormySan",
  2949. "homepage": "https://www.drupal.org/user/112352"
  2950. },
  2951. {
  2952. "name": "patricksettle",
  2953. "homepage": "https://www.drupal.org/user/26618"
  2954. },
  2955. {
  2956. "name": "paulocs",
  2957. "homepage": "https://www.drupal.org/user/3640109"
  2958. },
  2959. {
  2960. "name": "Steven Jones",
  2961. "homepage": "https://www.drupal.org/user/99644"
  2962. },
  2963. {
  2964. "name": "tekante",
  2965. "homepage": "https://www.drupal.org/user/640024"
  2966. },
  2967. {
  2968. "name": "yhahn",
  2969. "homepage": "https://www.drupal.org/user/264833"
  2970. }
  2971. ],
  2972. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2973. "homepage": "https://github.com/oddhill/context",
  2974. "keywords": [
  2975. "Drupal",
  2976. "block",
  2977. "conditions",
  2978. "context",
  2979. "visibility"
  2980. ],
  2981. "support": {
  2982. "source": "https://github.com/oddhill/context",
  2983. "issues": "https://github.com/oddhill/context/issues",
  2984. "docs": "https://github.com/oddhill/context"
  2985. }
  2986. },
  2987. {
  2988. "name": "drupal/core",
  2989. "version": "10.1.6",
  2990. "source": {
  2991. "type": "git",
  2992. "url": "https://github.com/drupal/core.git",
  2993. "reference": "33695caf467e3e1e8c75d42215df57bee31be9ec"
  2994. },
  2995. "dist": {
  2996. "type": "zip",
  2997. "url": "https://api.github.com/repos/drupal/core/zipball/33695caf467e3e1e8c75d42215df57bee31be9ec",
  2998. "reference": "33695caf467e3e1e8c75d42215df57bee31be9ec",
  2999. "shasum": ""
  3000. },
  3001. "require": {
  3002. "asm89/stack-cors": "^2.1",
  3003. "composer-runtime-api": "^2.1",
  3004. "composer/semver": "^3.3",
  3005. "doctrine/annotations": "^1.14",
  3006. "egulias/email-validator": "^3.2.1|^4.0",
  3007. "ext-date": "*",
  3008. "ext-dom": "*",
  3009. "ext-filter": "*",
  3010. "ext-gd": "*",
  3011. "ext-hash": "*",
  3012. "ext-json": "*",
  3013. "ext-pcre": "*",
  3014. "ext-pdo": "*",
  3015. "ext-session": "*",
  3016. "ext-simplexml": "*",
  3017. "ext-spl": "*",
  3018. "ext-tokenizer": "*",
  3019. "ext-xml": "*",
  3020. "guzzlehttp/guzzle": "^7.5",
  3021. "guzzlehttp/psr7": "^2.4.5",
  3022. "masterminds/html5": "^2.7",
  3023. "mck89/peast": "^1.14",
  3024. "pear/archive_tar": "^1.4.14",
  3025. "php": ">=8.1.0",
  3026. "psr/log": "^3.0",
  3027. "sebastian/diff": "^4",
  3028. "symfony/console": "^6.3",
  3029. "symfony/dependency-injection": "^6.3",
  3030. "symfony/event-dispatcher": "^6.3",
  3031. "symfony/http-foundation": "^6.3",
  3032. "symfony/http-kernel": "^6.3",
  3033. "symfony/mime": "^6.3",
  3034. "symfony/polyfill-iconv": "^1.26",
  3035. "symfony/process": "^6.3",
  3036. "symfony/psr-http-message-bridge": "^2.1",
  3037. "symfony/routing": "^6.3",
  3038. "symfony/serializer": "^6.3",
  3039. "symfony/validator": "^6.3",
  3040. "symfony/yaml": "^6.3",
  3041. "twig/twig": "^3.5.0"
  3042. },
  3043. "conflict": {
  3044. "drush/drush": "<8.1.10"
  3045. },
  3046. "replace": {
  3047. "drupal/core-annotation": "self.version",
  3048. "drupal/core-assertion": "self.version",
  3049. "drupal/core-class-finder": "self.version",
  3050. "drupal/core-datetime": "self.version",
  3051. "drupal/core-dependency-injection": "self.version",
  3052. "drupal/core-diff": "self.version",
  3053. "drupal/core-discovery": "self.version",
  3054. "drupal/core-event-dispatcher": "self.version",
  3055. "drupal/core-file-cache": "self.version",
  3056. "drupal/core-file-security": "self.version",
  3057. "drupal/core-filesystem": "self.version",
  3058. "drupal/core-front-matter": "self.version",
  3059. "drupal/core-gettext": "self.version",
  3060. "drupal/core-graph": "self.version",
  3061. "drupal/core-http-foundation": "self.version",
  3062. "drupal/core-php-storage": "self.version",
  3063. "drupal/core-plugin": "self.version",
  3064. "drupal/core-proxy-builder": "self.version",
  3065. "drupal/core-render": "self.version",
  3066. "drupal/core-serialization": "self.version",
  3067. "drupal/core-transliteration": "self.version",
  3068. "drupal/core-utility": "self.version",
  3069. "drupal/core-uuid": "self.version",
  3070. "drupal/core-version": "self.version"
  3071. },
  3072. "suggest": {
  3073. "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format."
  3074. },
  3075. "type": "drupal-core",
  3076. "extra": {
  3077. "drupal-scaffold": {
  3078. "file-mapping": {
  3079. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  3080. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  3081. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  3082. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  3083. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  3084. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  3085. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  3086. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  3087. "[web-root]/index.php": "assets/scaffold/files/index.php",
  3088. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  3089. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  3090. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  3091. "[web-root]/update.php": "assets/scaffold/files/update.php",
  3092. "[web-root]/web.config": "assets/scaffold/files/web.config",
  3093. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  3094. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  3095. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  3096. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  3097. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  3098. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  3099. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  3100. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  3101. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  3102. }
  3103. }
  3104. },
  3105. "autoload": {
  3106. "files": [
  3107. "includes/bootstrap.inc"
  3108. ],
  3109. "psr-4": {
  3110. "Drupal\\Core\\": "lib/Drupal/Core",
  3111. "Drupal\\Component\\": "lib/Drupal/Component"
  3112. },
  3113. "classmap": [
  3114. "lib/Drupal.php",
  3115. "lib/Drupal/Component/DependencyInjection/Container.php",
  3116. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  3117. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  3118. "lib/Drupal/Component/Utility/Timer.php",
  3119. "lib/Drupal/Component/Utility/Unicode.php",
  3120. "lib/Drupal/Core/Cache/Cache.php",
  3121. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  3122. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  3123. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  3124. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  3125. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  3126. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  3127. "lib/Drupal/Core/Database/Connection.php",
  3128. "lib/Drupal/Core/Database/Database.php",
  3129. "lib/Drupal/Core/Database/StatementInterface.php",
  3130. "lib/Drupal/Core/DependencyInjection/Container.php",
  3131. "lib/Drupal/Core/DrupalKernel.php",
  3132. "lib/Drupal/Core/DrupalKernelInterface.php",
  3133. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  3134. "lib/Drupal/Core/Site/Settings.php"
  3135. ]
  3136. },
  3137. "notification-url": "https://packagist.org/downloads/",
  3138. "license": [
  3139. "GPL-2.0-or-later"
  3140. ],
  3141. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3142. "support": {
  3143. "source": "https://github.com/drupal/core/tree/10.1.6"
  3144. },
  3145. "time": "2023-11-01T11:59:20+00:00"
  3146. },
  3147. {
  3148. "name": "drupal/core-composer-scaffold",
  3149. "version": "10.1.6",
  3150. "source": {
  3151. "type": "git",
  3152. "url": "https://github.com/drupal/core-composer-scaffold.git",
  3153. "reference": "1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51"
  3154. },
  3155. "dist": {
  3156. "type": "zip",
  3157. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51",
  3158. "reference": "1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51",
  3159. "shasum": ""
  3160. },
  3161. "require": {
  3162. "composer-plugin-api": "^2",
  3163. "php": ">=7.3.0"
  3164. },
  3165. "conflict": {
  3166. "drupal-composer/drupal-scaffold": "*"
  3167. },
  3168. "require-dev": {
  3169. "composer/composer": "^1.8@stable"
  3170. },
  3171. "type": "composer-plugin",
  3172. "extra": {
  3173. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  3174. "branch-alias": {
  3175. "dev-master": "1.0.x-dev"
  3176. }
  3177. },
  3178. "autoload": {
  3179. "psr-4": {
  3180. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  3181. }
  3182. },
  3183. "notification-url": "https://packagist.org/downloads/",
  3184. "license": [
  3185. "GPL-2.0-or-later"
  3186. ],
  3187. "description": "A flexible Composer project scaffold builder.",
  3188. "homepage": "https://www.drupal.org/project/drupal",
  3189. "keywords": [
  3190. "drupal"
  3191. ],
  3192. "support": {
  3193. "source": "https://github.com/drupal/core-composer-scaffold/tree/10.1.6"
  3194. },
  3195. "time": "2023-04-30T16:15:32+00:00"
  3196. },
  3197. {
  3198. "name": "drupal/core-project-message",
  3199. "version": "10.1.6",
  3200. "source": {
  3201. "type": "git",
  3202. "url": "https://github.com/drupal/core-project-message.git",
  3203. "reference": "59b4475f01debd9a0f173938a06189982c8ebffd"
  3204. },
  3205. "dist": {
  3206. "type": "zip",
  3207. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/59b4475f01debd9a0f173938a06189982c8ebffd",
  3208. "reference": "59b4475f01debd9a0f173938a06189982c8ebffd",
  3209. "shasum": ""
  3210. },
  3211. "require": {
  3212. "composer-plugin-api": "^2",
  3213. "php": ">=7.3.0"
  3214. },
  3215. "type": "composer-plugin",
  3216. "extra": {
  3217. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  3218. },
  3219. "autoload": {
  3220. "psr-4": {
  3221. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  3222. }
  3223. },
  3224. "notification-url": "https://packagist.org/downloads/",
  3225. "license": [
  3226. "GPL-2.0-or-later"
  3227. ],
  3228. "description": "Adds a message after Composer installation.",
  3229. "homepage": "https://www.drupal.org/project/drupal",
  3230. "keywords": [
  3231. "drupal"
  3232. ],
  3233. "support": {
  3234. "source": "https://github.com/drupal/core-project-message/tree/10.1.6"
  3235. },
  3236. "time": "2022-07-01T08:32:39+00:00"
  3237. },
  3238. {
  3239. "name": "drupal/core-recommended",
  3240. "version": "10.1.6",
  3241. "source": {
  3242. "type": "git",
  3243. "url": "https://github.com/drupal/core-recommended.git",
  3244. "reference": "13f5968854fe8bc02e659d8a4facc04a1a576ce5"
  3245. },
  3246. "dist": {
  3247. "type": "zip",
  3248. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/13f5968854fe8bc02e659d8a4facc04a1a576ce5",
  3249. "reference": "13f5968854fe8bc02e659d8a4facc04a1a576ce5",
  3250. "shasum": ""
  3251. },
  3252. "require": {
  3253. "asm89/stack-cors": "~v2.1.1",
  3254. "composer/semver": "~3.3.2",
  3255. "doctrine/annotations": "~1.14.3",
  3256. "doctrine/deprecations": "~v1.1.1",
  3257. "doctrine/lexer": "~2.1.0",
  3258. "drupal/core": "10.1.6",
  3259. "egulias/email-validator": "~4.0.1",
  3260. "guzzlehttp/guzzle": "~7.7.0",
  3261. "guzzlehttp/psr7": "~2.5.0",
  3262. "masterminds/html5": "~2.8.0",
  3263. "mck89/peast": "~v1.15.4",
  3264. "pear/archive_tar": "~1.4.14",
  3265. "pear/console_getopt": "~v1.4.3",
  3266. "pear/pear-core-minimal": "~v1.10.13",
  3267. "pear/pear_exception": "~v1.0.2",
  3268. "psr/cache": "~3.0.0",
  3269. "psr/container": "~2.0.2",
  3270. "psr/event-dispatcher": "~1.0.0",
  3271. "psr/http-client": "~1.0.2",
  3272. "psr/http-factory": "~1.0.2",
  3273. "psr/log": "~3.0.0",
  3274. "ralouphie/getallheaders": "~3.0.3",
  3275. "sebastian/diff": "~4.0.5",
  3276. "symfony/console": "~v6.3.0",
  3277. "symfony/dependency-injection": "~v6.3.0",
  3278. "symfony/deprecation-contracts": "~v3.3.0",
  3279. "symfony/error-handler": "~v6.3.0",
  3280. "symfony/event-dispatcher": "~v6.3.0",
  3281. "symfony/event-dispatcher-contracts": "~v3.3.0",
  3282. "symfony/http-foundation": "~v6.3.0",
  3283. "symfony/http-kernel": "~v6.3.0",
  3284. "symfony/mime": "~v6.3.0",
  3285. "symfony/polyfill-ctype": "~v1.27.0",
  3286. "symfony/polyfill-iconv": "~v1.27.0",
  3287. "symfony/polyfill-intl-grapheme": "~v1.27.0",
  3288. "symfony/polyfill-intl-idn": "~v1.27.0",
  3289. "symfony/polyfill-intl-normalizer": "~v1.27.0",
  3290. "symfony/polyfill-mbstring": "~v1.27.0",
  3291. "symfony/polyfill-php83": "~v1.27.0",
  3292. "symfony/process": "~v6.3.0",
  3293. "symfony/psr-http-message-bridge": "~v2.2.0",
  3294. "symfony/routing": "~v6.3.0",
  3295. "symfony/serializer": "~v6.3.0",
  3296. "symfony/service-contracts": "~v3.3.0",
  3297. "symfony/string": "~v6.3.0",
  3298. "symfony/translation-contracts": "~v3.3.0",
  3299. "symfony/validator": "~v6.3.0",
  3300. "symfony/var-dumper": "~v6.3.0",
  3301. "symfony/var-exporter": "~v6.3.0",
  3302. "symfony/yaml": "~v6.3.0",
  3303. "twig/twig": "~v3.6.0"
  3304. },
  3305. "conflict": {
  3306. "webflo/drupal-core-strict": "*"
  3307. },
  3308. "type": "metapackage",
  3309. "notification-url": "https://packagist.org/downloads/",
  3310. "license": [
  3311. "GPL-2.0-or-later"
  3312. ],
  3313. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  3314. "support": {
  3315. "source": "https://github.com/drupal/core-recommended/tree/10.1.6"
  3316. },
  3317. "time": "2023-11-01T11:59:20+00:00"
  3318. },
  3319. {
  3320. "name": "drupal/cshs",
  3321. "version": "4.0.0",
  3322. "source": {
  3323. "type": "git",
  3324. "url": "https://git.drupalcode.org/project/cshs.git",
  3325. "reference": "4.0.0"
  3326. },
  3327. "dist": {
  3328. "type": "zip",
  3329. "url": "https://ftp.drupal.org/files/projects/cshs-4.0.0.zip",
  3330. "reference": "4.0.0",
  3331. "shasum": "ebcd3932481aba4004f4e2078038cdc7293738b0"
  3332. },
  3333. "require": {
  3334. "drupal/core": "^9 || ^10",
  3335. "php": ">=8.0"
  3336. },
  3337. "type": "drupal-module",
  3338. "extra": {
  3339. "drupal": {
  3340. "version": "4.0.0",
  3341. "datestamp": "1668457722",
  3342. "security-coverage": {
  3343. "status": "covered",
  3344. "message": "Covered by Drupal's security advisory policy"
  3345. }
  3346. }
  3347. },
  3348. "notification-url": "https://packages.drupal.org/8/downloads",
  3349. "license": [
  3350. "GPL-2.0-or-later"
  3351. ],
  3352. "authors": [
  3353. {
  3354. "name": "Walter Jenner",
  3355. "homepage": "https://drupal.org/u/valderama"
  3356. },
  3357. {
  3358. "name": "Sergii Bondarenko",
  3359. "homepage": "https://drupal.org/u/BR0kEN",
  3360. "email": "sb@firstvector.org"
  3361. },
  3362. {
  3363. "name": "Daneel Cruz",
  3364. "homepage": "https://drupal.org/u/daneelcm"
  3365. },
  3366. {
  3367. "name": "Purushotam Rai",
  3368. "homepage": "https://drupal.org/u/purushotam.rai"
  3369. }
  3370. ],
  3371. "description": "A simple client-side hierarchical select widget for taxonomy terms.",
  3372. "homepage": "https://www.drupal.org/project/cshs",
  3373. "keywords": [
  3374. "client-side-select",
  3375. "hierarchical-select",
  3376. "module",
  3377. "select",
  3378. "taxonomy"
  3379. ],
  3380. "support": {
  3381. "source": "https://git.drupalcode.org/project/cshs",
  3382. "issues": "https://www.drupal.org/project/issues/cshs"
  3383. }
  3384. },
  3385. {
  3386. "name": "drupal/ctools",
  3387. "version": "3.14.0",
  3388. "source": {
  3389. "type": "git",
  3390. "url": "https://git.drupalcode.org/project/ctools.git",
  3391. "reference": "8.x-3.14"
  3392. },
  3393. "dist": {
  3394. "type": "zip",
  3395. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.14.zip",
  3396. "reference": "8.x-3.14",
  3397. "shasum": "8895a8e47199b458013bc153ceafa0b1495f33c1"
  3398. },
  3399. "require": {
  3400. "drupal/core": "^9.3 || ^10"
  3401. },
  3402. "type": "drupal-module",
  3403. "extra": {
  3404. "drupal": {
  3405. "version": "8.x-3.14",
  3406. "datestamp": "1684299793",
  3407. "security-coverage": {
  3408. "status": "covered",
  3409. "message": "Covered by Drupal's security advisory policy"
  3410. }
  3411. },
  3412. "branch-alias": {
  3413. "dev-8.x-3.x": "3.x-dev"
  3414. }
  3415. },
  3416. "notification-url": "https://packages.drupal.org/8/downloads",
  3417. "license": [
  3418. "GPL-2.0-or-later"
  3419. ],
  3420. "authors": [
  3421. {
  3422. "name": "Kris Vanderwater (EclipseGc)",
  3423. "homepage": "https://www.drupal.org/u/eclipsegc",
  3424. "role": "Maintainer"
  3425. },
  3426. {
  3427. "name": "Jakob Perry (japerry)",
  3428. "homepage": "https://www.drupal.org/u/japerry",
  3429. "role": "Maintainer"
  3430. },
  3431. {
  3432. "name": "Tim Plunkett (tim.plunkett)",
  3433. "homepage": "https://www.drupal.org/u/timplunkett",
  3434. "role": "Maintainer"
  3435. },
  3436. {
  3437. "name": "James Gilliland (neclimdul)",
  3438. "homepage": "https://www.drupal.org/u/neclimdul",
  3439. "role": "Maintainer"
  3440. },
  3441. {
  3442. "name": "Daniel Wehner (dawehner)",
  3443. "homepage": "https://www.drupal.org/u/dawehner",
  3444. "role": "Maintainer"
  3445. },
  3446. {
  3447. "name": "joelpittet",
  3448. "homepage": "https://www.drupal.org/user/160302"
  3449. },
  3450. {
  3451. "name": "merlinofchaos",
  3452. "homepage": "https://www.drupal.org/user/26979"
  3453. },
  3454. {
  3455. "name": "neclimdul",
  3456. "homepage": "https://www.drupal.org/user/48673"
  3457. },
  3458. {
  3459. "name": "sdboyer",
  3460. "homepage": "https://www.drupal.org/user/146719"
  3461. },
  3462. {
  3463. "name": "sun",
  3464. "homepage": "https://www.drupal.org/user/54136"
  3465. },
  3466. {
  3467. "name": "tim.plunkett",
  3468. "homepage": "https://www.drupal.org/user/241634"
  3469. }
  3470. ],
  3471. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3472. "homepage": "https://www.drupal.org/project/ctools",
  3473. "support": {
  3474. "source": "https://git.drupalcode.org/project/ctools",
  3475. "issues": "https://www.drupal.org/project/issues/ctools"
  3476. }
  3477. },
  3478. {
  3479. "name": "drupal/date_range_formatter",
  3480. "version": "dev-9.0.x",
  3481. "source": {
  3482. "type": "git",
  3483. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3484. "reference": "8808a9c324c781b4a7cae9ea5f16017a6b8f63f7"
  3485. },
  3486. "require": {
  3487. "drupal/core": "^8 || ^9 || ^10"
  3488. },
  3489. "type": "drupal-module",
  3490. "extra": {
  3491. "branch-alias": {
  3492. "dev-9.0.x": "9.0.x-dev"
  3493. },
  3494. "drupal": {
  3495. "version": "9.0.x-dev",
  3496. "datestamp": "1661511425",
  3497. "security-coverage": {
  3498. "status": "not-covered",
  3499. "message": "Dev releases are not covered by Drupal security advisories."
  3500. }
  3501. }
  3502. },
  3503. "notification-url": "https://packages.drupal.org/8/downloads",
  3504. "license": [
  3505. "GPL-2.0-or-later"
  3506. ],
  3507. "authors": [
  3508. {
  3509. "name": "maximpodorov",
  3510. "homepage": "https://www.drupal.org/user/515310"
  3511. },
  3512. {
  3513. "name": "sudishth",
  3514. "homepage": "https://www.drupal.org/user/1440562"
  3515. }
  3516. ],
  3517. "description": "Formats date ranges.",
  3518. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3519. "support": {
  3520. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3521. }
  3522. },
  3523. {
  3524. "name": "drupal/devel",
  3525. "version": "5.1.2",
  3526. "source": {
  3527. "type": "git",
  3528. "url": "https://git.drupalcode.org/project/devel.git",
  3529. "reference": "5.1.2"
  3530. },
  3531. "dist": {
  3532. "type": "zip",
  3533. "url": "https://ftp.drupal.org/files/projects/devel-5.1.2.zip",
  3534. "reference": "5.1.2",
  3535. "shasum": "9b35e38bf2043bf87f88585b3d9100f38da8f07f"
  3536. },
  3537. "require": {
  3538. "doctrine/common": "^2.7 || ^3.4",
  3539. "drupal/core": "^9 || ^10",
  3540. "php": ">=7.4",
  3541. "symfony/var-dumper": "^4 || ^5 || ^6"
  3542. },
  3543. "conflict": {
  3544. "kint-php/kint": "<3"
  3545. },
  3546. "require-dev": {
  3547. "drush/drush": "^11"
  3548. },
  3549. "suggest": {
  3550. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3551. },
  3552. "type": "drupal-module",
  3553. "extra": {
  3554. "drupal": {
  3555. "version": "5.1.2",
  3556. "datestamp": "1686161028",
  3557. "security-coverage": {
  3558. "status": "covered",
  3559. "message": "Covered by Drupal's security advisory policy"
  3560. }
  3561. },
  3562. "drush": {
  3563. "services": {
  3564. "drush.services.yml": "^9 || ^10 || ^11"
  3565. }
  3566. }
  3567. },
  3568. "notification-url": "https://packages.drupal.org/8/downloads",
  3569. "license": [
  3570. "GPL-2.0-or-later"
  3571. ],
  3572. "authors": [
  3573. {
  3574. "name": "drupalspoons",
  3575. "homepage": "https://www.drupal.org/user/3647684"
  3576. },
  3577. {
  3578. "name": "moshe weitzman",
  3579. "homepage": "https://www.drupal.org/user/23"
  3580. }
  3581. ],
  3582. "description": "Various blocks, pages, and functions for developers.",
  3583. "homepage": "https://www.drupal.org/project/devel",
  3584. "support": {
  3585. "source": "https://gitlab.com/drupalspoons/devel",
  3586. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3587. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3588. }
  3589. },
  3590. {
  3591. "name": "drupal/devel_kint_extras",
  3592. "version": "1.1.0",
  3593. "source": {
  3594. "type": "git",
  3595. "url": "https://git.drupalcode.org/project/devel_kint_extras.git",
  3596. "reference": "1.1.0"
  3597. },
  3598. "dist": {
  3599. "type": "zip",
  3600. "url": "https://ftp.drupal.org/files/projects/devel_kint_extras-1.1.0.zip",
  3601. "reference": "1.1.0",
  3602. "shasum": "c9f485f6f2562710d2bd2c62f0073aa0049f5c8c"
  3603. },
  3604. "require": {
  3605. "drupal/core": "^9 || ^10",
  3606. "drupal/devel": "^4.0 || ^5.0",
  3607. "kint-php/kint": "^3.3 || ^4.0"
  3608. },
  3609. "type": "drupal-module",
  3610. "extra": {
  3611. "drupal": {
  3612. "version": "1.1.0",
  3613. "datestamp": "1663760998",
  3614. "security-coverage": {
  3615. "status": "covered",
  3616. "message": "Covered by Drupal's security advisory policy"
  3617. }
  3618. }
  3619. },
  3620. "notification-url": "https://packages.drupal.org/8/downloads",
  3621. "license": [
  3622. "GPL-2.0-or-later"
  3623. ],
  3624. "authors": [
  3625. {
  3626. "name": "Jan Chojnacki",
  3627. "homepage": "https://www.drupal.org/u/janchojnacki"
  3628. },
  3629. {
  3630. "name": "Other contributors",
  3631. "homepage": "https://www.drupal.org/node/3164492/committers"
  3632. }
  3633. ],
  3634. "description": "Shows methods and statics available for an object when using Kint with Devel",
  3635. "homepage": "https://www.drupal.org/project/devel_kint_extras",
  3636. "support": {
  3637. "source": "http://git.drupal.org/project/devel_kint_extras.git",
  3638. "issues": "https://www.drupal.org/project/issues/devel_kint_extras",
  3639. "chat": "irc://irc.freenode.org/drupal-contribute"
  3640. }
  3641. },
  3642. {
  3643. "name": "drupal/email_registration",
  3644. "version": "1.3.0",
  3645. "source": {
  3646. "type": "git",
  3647. "url": "https://git.drupalcode.org/project/email_registration.git",
  3648. "reference": "8.x-1.3"
  3649. },
  3650. "dist": {
  3651. "type": "zip",
  3652. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.3.zip",
  3653. "reference": "8.x-1.3",
  3654. "shasum": "6fe425246511e29dfef4294139c8704aec16cbec"
  3655. },
  3656. "require": {
  3657. "drupal/core": "^9.1 || ^10"
  3658. },
  3659. "conflict": {
  3660. "drupal/commerce": "<2.12"
  3661. },
  3662. "require-dev": {
  3663. "drupal/commerce": "^2.0",
  3664. "drupal/token": "*"
  3665. },
  3666. "type": "drupal-module",
  3667. "extra": {
  3668. "drupal": {
  3669. "version": "8.x-1.3",
  3670. "datestamp": "1697182609",
  3671. "security-coverage": {
  3672. "status": "covered",
  3673. "message": "Covered by Drupal's security advisory policy"
  3674. }
  3675. }
  3676. },
  3677. "notification-url": "https://packages.drupal.org/8/downloads",
  3678. "license": [
  3679. "GPL-2.0-or-later"
  3680. ],
  3681. "authors": [
  3682. {
  3683. "name": "Greg Knaddison (greggles)",
  3684. "homepage": "https://www.drupal.org/u/greggles",
  3685. "role": "Maintainer"
  3686. },
  3687. {
  3688. "name": "Andrey Postnikov (andypost)",
  3689. "homepage": "https://www.drupal.org/u/andypost",
  3690. "role": "Maintainer"
  3691. },
  3692. {
  3693. "name": "Chris Herberte",
  3694. "homepage": "https://www.drupal.org/u/chris-herberte",
  3695. "role": "Maintainer"
  3696. },
  3697. {
  3698. "name": "Moshe Weitzman (moshe weitzman)",
  3699. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3700. "role": "Maintainer"
  3701. },
  3702. {
  3703. "name": "Grevil",
  3704. "homepage": "https://www.drupal.org/user/3668491"
  3705. },
  3706. {
  3707. "name": "moshe weitzman",
  3708. "homepage": "https://www.drupal.org/user/23"
  3709. }
  3710. ],
  3711. "description": "Allows users to register with an email address as their username.",
  3712. "homepage": "https://www.drupal.org/project/email_registration",
  3713. "support": {
  3714. "source": "https://git.drupalcode.org/project/email_registration",
  3715. "issues": "http://drupal.org/project/issues/email_registration"
  3716. }
  3717. },
  3718. {
  3719. "name": "drupal/embed",
  3720. "version": "1.7.0",
  3721. "source": {
  3722. "type": "git",
  3723. "url": "https://git.drupalcode.org/project/embed.git",
  3724. "reference": "8.x-1.7"
  3725. },
  3726. "dist": {
  3727. "type": "zip",
  3728. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.7.zip",
  3729. "reference": "8.x-1.7",
  3730. "shasum": "b7ca4264be51038f947d26b6725fc0446b224f60"
  3731. },
  3732. "require": {
  3733. "drupal/core": "^9.3 | ^10"
  3734. },
  3735. "require-dev": {
  3736. "drupal/ckeditor": "*"
  3737. },
  3738. "type": "drupal-module",
  3739. "extra": {
  3740. "drupal": {
  3741. "version": "8.x-1.7",
  3742. "datestamp": "1697642867",
  3743. "security-coverage": {
  3744. "status": "covered",
  3745. "message": "Covered by Drupal's security advisory policy"
  3746. }
  3747. }
  3748. },
  3749. "notification-url": "https://packages.drupal.org/8/downloads",
  3750. "license": [
  3751. "GPL-2.0-or-later"
  3752. ],
  3753. "authors": [
  3754. {
  3755. "name": "cs_shadow",
  3756. "homepage": "https://www.drupal.org/user/2828287"
  3757. },
  3758. {
  3759. "name": "Dave Reid",
  3760. "homepage": "https://www.drupal.org/user/53892"
  3761. },
  3762. {
  3763. "name": "Devin Carlson",
  3764. "homepage": "https://www.drupal.org/user/290182"
  3765. },
  3766. {
  3767. "name": "Drupal Media Team",
  3768. "homepage": "https://www.drupal.org/user/3260690"
  3769. },
  3770. {
  3771. "name": "phenaproxima",
  3772. "homepage": "https://www.drupal.org/user/205645"
  3773. },
  3774. {
  3775. "name": "slashrsm",
  3776. "homepage": "https://www.drupal.org/user/744628"
  3777. }
  3778. ],
  3779. "description": "Provides a framework for different types of embeds in text editors.",
  3780. "homepage": "https://www.drupal.org/project/embed",
  3781. "support": {
  3782. "source": "https://git.drupalcode.org/project/embed"
  3783. }
  3784. },
  3785. {
  3786. "name": "drupal/entity",
  3787. "version": "1.4.0",
  3788. "source": {
  3789. "type": "git",
  3790. "url": "https://git.drupalcode.org/project/entity.git",
  3791. "reference": "8.x-1.4"
  3792. },
  3793. "dist": {
  3794. "type": "zip",
  3795. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.4.zip",
  3796. "reference": "8.x-1.4",
  3797. "shasum": "1cf7712318fad144eab106a8fcfcd396aeb5676f"
  3798. },
  3799. "require": {
  3800. "drupal/core": "^9.2|^10.0"
  3801. },
  3802. "type": "drupal-module",
  3803. "extra": {
  3804. "drupal": {
  3805. "version": "8.x-1.4",
  3806. "datestamp": "1661898023",
  3807. "security-coverage": {
  3808. "status": "covered",
  3809. "message": "Covered by Drupal's security advisory policy"
  3810. }
  3811. }
  3812. },
  3813. "notification-url": "https://packages.drupal.org/8/downloads",
  3814. "license": [
  3815. "GPL-2.0-or-later"
  3816. ],
  3817. "authors": [
  3818. {
  3819. "name": "Berdir",
  3820. "homepage": "https://www.drupal.org/user/214652"
  3821. },
  3822. {
  3823. "name": "bojanz",
  3824. "homepage": "https://www.drupal.org/user/86106"
  3825. },
  3826. {
  3827. "name": "dawehner",
  3828. "homepage": "https://www.drupal.org/user/99340"
  3829. },
  3830. {
  3831. "name": "dixon_",
  3832. "homepage": "https://www.drupal.org/user/239911"
  3833. },
  3834. {
  3835. "name": "fago",
  3836. "homepage": "https://www.drupal.org/user/16747"
  3837. },
  3838. {
  3839. "name": "mglaman",
  3840. "homepage": "https://www.drupal.org/user/2416470"
  3841. },
  3842. {
  3843. "name": "TR",
  3844. "homepage": "https://www.drupal.org/user/202830"
  3845. }
  3846. ],
  3847. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3848. "homepage": "https://www.drupal.org/project/entity",
  3849. "support": {
  3850. "source": "https://git.drupalcode.org/project/entity",
  3851. "issues": "https://www.drupal.org/project/issues/entity"
  3852. }
  3853. },
  3854. {
  3855. "name": "drupal/entity_browser",
  3856. "version": "2.9.0",
  3857. "source": {
  3858. "type": "git",
  3859. "url": "https://git.drupalcode.org/project/entity_browser.git",
  3860. "reference": "8.x-2.9"
  3861. },
  3862. "dist": {
  3863. "type": "zip",
  3864. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.9.zip",
  3865. "reference": "8.x-2.9",
  3866. "shasum": "251afad80cde9fa547501a8d9de5d94b9f5bacff"
  3867. },
  3868. "require": {
  3869. "drupal/core": "^9.2 || ^10"
  3870. },
  3871. "require-dev": {
  3872. "drupal/embed": "~1.0",
  3873. "drupal/entity_embed": "1.x-dev",
  3874. "drupal/entity_reference_revisions": "1.x-dev",
  3875. "drupal/entityqueue": "1.x-dev",
  3876. "drupal/inline_entity_form": "1.x-dev",
  3877. "drupal/paragraphs": "1.x-dev",
  3878. "drupal/token": "1.x-dev"
  3879. },
  3880. "type": "drupal-module",
  3881. "extra": {
  3882. "drupal": {
  3883. "version": "8.x-2.9",
  3884. "datestamp": "1674070933",
  3885. "security-coverage": {
  3886. "status": "covered",
  3887. "message": "Covered by Drupal's security advisory policy"
  3888. }
  3889. }
  3890. },
  3891. "notification-url": "https://packages.drupal.org/8/downloads",
  3892. "license": [
  3893. "GPL-2.0+"
  3894. ],
  3895. "authors": [
  3896. {
  3897. "name": "Janez Urevc",
  3898. "homepage": "https://github.com/slashrsm",
  3899. "role": "Maintainer"
  3900. },
  3901. {
  3902. "name": "Primoz Hmeljak",
  3903. "homepage": "https://github.com/primsi",
  3904. "role": "Maintainer"
  3905. },
  3906. {
  3907. "name": "See other contributors",
  3908. "homepage": "https://www.drupal.org/node/1943336/committers",
  3909. "role": "contributor"
  3910. },
  3911. {
  3912. "name": "Drupal Media Team",
  3913. "homepage": "https://www.drupal.org/user/3260690"
  3914. },
  3915. {
  3916. "name": "marcingy",
  3917. "homepage": "https://www.drupal.org/user/77320"
  3918. },
  3919. {
  3920. "name": "oknate",
  3921. "homepage": "https://www.drupal.org/user/471638"
  3922. },
  3923. {
  3924. "name": "Primsi",
  3925. "homepage": "https://www.drupal.org/user/282629"
  3926. },
  3927. {
  3928. "name": "samuel.mortenson",
  3929. "homepage": "https://www.drupal.org/user/2582268"
  3930. },
  3931. {
  3932. "name": "slashrsm",
  3933. "homepage": "https://www.drupal.org/user/744628"
  3934. }
  3935. ],
  3936. "description": "Entity browsing and selecting component.",
  3937. "homepage": "http://drupal.org/project/entity_browser",
  3938. "support": {
  3939. "source": "https://git.drupalcode.org/project/entity_browser",
  3940. "issues": "https://www.drupal.org/project/issues/entity_browser",
  3941. "irc": "irc://irc.freenode.org/drupal-contribute"
  3942. }
  3943. },
  3944. {
  3945. "name": "drupal/entity_browser_enhanced",
  3946. "version": "2.0.0",
  3947. "source": {
  3948. "type": "git",
  3949. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  3950. "reference": "2.0.0"
  3951. },
  3952. "dist": {
  3953. "type": "zip",
  3954. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-2.0.0.zip",
  3955. "reference": "2.0.0",
  3956. "shasum": "2880829c847c1c4b06092ab5335adb6ea960317b"
  3957. },
  3958. "require": {
  3959. "drupal/core": "^9 || ^10",
  3960. "drupal/entity_browser": "~2.0"
  3961. },
  3962. "type": "drupal-module",
  3963. "extra": {
  3964. "drupal": {
  3965. "version": "2.0.0",
  3966. "datestamp": "1697211243",
  3967. "security-coverage": {
  3968. "status": "covered",
  3969. "message": "Covered by Drupal's security advisory policy"
  3970. }
  3971. }
  3972. },
  3973. "notification-url": "https://packages.drupal.org/8/downloads",
  3974. "license": [
  3975. "GPL-2.0-or-later"
  3976. ],
  3977. "authors": [
  3978. {
  3979. "name": "Vardot",
  3980. "homepage": "https://www.drupal.org/vardot",
  3981. "role": "Maintainer"
  3982. },
  3983. {
  3984. "name": "Rajab Natshah",
  3985. "homepage": "https://www.drupal.org/user/1414312"
  3986. }
  3987. ],
  3988. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  3989. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  3990. "support": {
  3991. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  3992. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  3993. }
  3994. },
  3995. {
  3996. "name": "drupal/entity_clone",
  3997. "version": "dev-2.x",
  3998. "source": {
  3999. "type": "git",
  4000. "url": "https://git.drupalcode.org/project/entity_clone.git",
  4001. "reference": "5cbfafdbc860cbda7bef91c89628aefca25efe7b"
  4002. },
  4003. "require": {
  4004. "drupal/core": "^8.8 || ^9 || ^10"
  4005. },
  4006. "require-dev": {
  4007. "drupal/entity_browser": "2.x-dev",
  4008. "drupal/entity_usage": "2.x-dev",
  4009. "drupal/paragraphs": "^1.0",
  4010. "drupal/search_api": "~1.0"
  4011. },
  4012. "type": "drupal-module",
  4013. "extra": {
  4014. "branch-alias": {
  4015. "dev-2.x": "2.x-dev"
  4016. },
  4017. "drupal": {
  4018. "version": "2.0.0-beta4+3-dev",
  4019. "datestamp": "1697545494",
  4020. "security-coverage": {
  4021. "status": "not-covered",
  4022. "message": "Dev releases are not covered by Drupal security advisories."
  4023. }
  4024. }
  4025. },
  4026. "notification-url": "https://packages.drupal.org/8/downloads",
  4027. "license": [
  4028. "GPL-2.0-or-later"
  4029. ],
  4030. "authors": [
  4031. {
  4032. "name": "colan",
  4033. "homepage": "https://www.drupal.org/user/58704"
  4034. },
  4035. {
  4036. "name": "joevagyok",
  4037. "homepage": "https://www.drupal.org/user/2876343"
  4038. },
  4039. {
  4040. "name": "NickDickinsonWilde",
  4041. "homepage": "https://www.drupal.org/user/3094661"
  4042. },
  4043. {
  4044. "name": "Rajeshreeputra",
  4045. "homepage": "https://www.drupal.org/user/3418561"
  4046. },
  4047. {
  4048. "name": "Upchuk",
  4049. "homepage": "https://www.drupal.org/user/1885838"
  4050. },
  4051. {
  4052. "name": "vpeltot",
  4053. "homepage": "https://www.drupal.org/user/1361586"
  4054. }
  4055. ],
  4056. "description": "Add a clone action for all entities.",
  4057. "homepage": "https://drupal.org/project/entity_clone",
  4058. "support": {
  4059. "source": "https://git.drupalcode.org/project/entity_clone"
  4060. }
  4061. },
  4062. {
  4063. "name": "drupal/entity_reference_revisions",
  4064. "version": "1.10.0",
  4065. "source": {
  4066. "type": "git",
  4067. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  4068. "reference": "8.x-1.10"
  4069. },
  4070. "dist": {
  4071. "type": "zip",
  4072. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.10.zip",
  4073. "reference": "8.x-1.10",
  4074. "shasum": "edd23b91c4a34db65ea22c4db54b7458edc7513b"
  4075. },
  4076. "require": {
  4077. "drupal/core": "^9 || ^10"
  4078. },
  4079. "require-dev": {
  4080. "drupal/diff": "1.x-dev"
  4081. },
  4082. "type": "drupal-module",
  4083. "extra": {
  4084. "drupal": {
  4085. "version": "8.x-1.10",
  4086. "datestamp": "1660664712",
  4087. "security-coverage": {
  4088. "status": "covered",
  4089. "message": "Covered by Drupal's security advisory policy"
  4090. }
  4091. },
  4092. "drush": {
  4093. "services": {
  4094. "drush.services.yml": "^9 || ^10 || ^11"
  4095. }
  4096. }
  4097. },
  4098. "notification-url": "https://packages.drupal.org/8/downloads",
  4099. "license": [
  4100. "GPL-2.0-or-later"
  4101. ],
  4102. "authors": [
  4103. {
  4104. "name": "Berdir",
  4105. "homepage": "https://www.drupal.org/user/214652"
  4106. },
  4107. {
  4108. "name": "Frans",
  4109. "homepage": "https://www.drupal.org/user/514222"
  4110. },
  4111. {
  4112. "name": "jeroen.b",
  4113. "homepage": "https://www.drupal.org/user/1853532"
  4114. },
  4115. {
  4116. "name": "miro_dietiker",
  4117. "homepage": "https://www.drupal.org/user/227761"
  4118. }
  4119. ],
  4120. "description": "Entity Reference Revisions",
  4121. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  4122. "support": {
  4123. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  4124. }
  4125. },
  4126. {
  4127. "name": "drupal/extlink",
  4128. "version": "1.7.0",
  4129. "source": {
  4130. "type": "git",
  4131. "url": "https://git.drupalcode.org/project/extlink.git",
  4132. "reference": "8.x-1.7"
  4133. },
  4134. "dist": {
  4135. "type": "zip",
  4136. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.7.zip",
  4137. "reference": "8.x-1.7",
  4138. "shasum": "38650688b5a58496db59f40b2a7f36c4bedcbfb4"
  4139. },
  4140. "require": {
  4141. "drupal/core": "^8 || ^9 || ^10"
  4142. },
  4143. "type": "drupal-module",
  4144. "extra": {
  4145. "drupal": {
  4146. "version": "8.x-1.7",
  4147. "datestamp": "1665770295",
  4148. "security-coverage": {
  4149. "status": "covered",
  4150. "message": "Covered by Drupal's security advisory policy"
  4151. }
  4152. }
  4153. },
  4154. "notification-url": "https://packages.drupal.org/8/downloads",
  4155. "license": [
  4156. "GPL-2.0-or-later"
  4157. ],
  4158. "authors": [
  4159. {
  4160. "name": "Nate Lampton",
  4161. "homepage": "https://www.drupal.org/u/quicksketch",
  4162. "role": "Maintainer"
  4163. },
  4164. {
  4165. "name": "Lachlan Ennis",
  4166. "homepage": "https://www.drupal.org/u/elachlan",
  4167. "role": "Maintainer"
  4168. },
  4169. {
  4170. "name": "Neslee Canil Pinto",
  4171. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  4172. "role": "Maintainer"
  4173. }
  4174. ],
  4175. "description": "Modify behavior and appearance of external links.",
  4176. "homepage": "https://www.drupal.org/project/extlink",
  4177. "keywords": [
  4178. "Drupal",
  4179. "External Links"
  4180. ],
  4181. "support": {
  4182. "source": "https://git.drupalcode.org/project/extlink",
  4183. "issues": "https://www.drupal.org/project/issues/extlink"
  4184. }
  4185. },
  4186. {
  4187. "name": "drupal/field_group",
  4188. "version": "dev-3.x",
  4189. "source": {
  4190. "type": "git",
  4191. "url": "https://git.drupalcode.org/project/field_group.git",
  4192. "reference": "1211c8f4e06592418ca368afe88ef9aa237e900a"
  4193. },
  4194. "require": {
  4195. "drupal/core": "^9.2 || ^10"
  4196. },
  4197. "type": "drupal-module",
  4198. "extra": {
  4199. "branch-alias": {
  4200. "dev-3.x": "3.x-dev"
  4201. },
  4202. "drupal": {
  4203. "version": "8.x-3.4+4-dev",
  4204. "datestamp": "1696831482",
  4205. "security-coverage": {
  4206. "status": "not-covered",
  4207. "message": "Dev releases are not covered by Drupal security advisories."
  4208. }
  4209. }
  4210. },
  4211. "notification-url": "https://packages.drupal.org/8/downloads",
  4212. "license": [
  4213. "GPL-2.0-or-later"
  4214. ],
  4215. "authors": [
  4216. {
  4217. "name": "Anybody",
  4218. "homepage": "https://www.drupal.org/user/291091"
  4219. },
  4220. {
  4221. "name": "Hydra",
  4222. "homepage": "https://www.drupal.org/user/647364"
  4223. },
  4224. {
  4225. "name": "jyve",
  4226. "homepage": "https://www.drupal.org/user/591438"
  4227. },
  4228. {
  4229. "name": "nils.destoop",
  4230. "homepage": "https://www.drupal.org/user/361625"
  4231. },
  4232. {
  4233. "name": "Stalski",
  4234. "homepage": "https://www.drupal.org/user/322618"
  4235. },
  4236. {
  4237. "name": "swentel",
  4238. "homepage": "https://www.drupal.org/user/107403"
  4239. }
  4240. ],
  4241. "description": "Provides the field_group module.",
  4242. "homepage": "https://www.drupal.org/project/field_group",
  4243. "support": {
  4244. "source": "https://git.drupalcode.org/project/field_group",
  4245. "issues": "https://www.drupal.org/project/issues/field_group"
  4246. }
  4247. },
  4248. {
  4249. "name": "drupal/file_mdm",
  4250. "version": "2.6.0",
  4251. "source": {
  4252. "type": "git",
  4253. "url": "https://git.drupalcode.org/project/file_mdm.git",
  4254. "reference": "8.x-2.6"
  4255. },
  4256. "dist": {
  4257. "type": "zip",
  4258. "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-2.6.zip",
  4259. "reference": "8.x-2.6",
  4260. "shasum": "56c7c06107ce6e249b6d644136e6807573efb0e3"
  4261. },
  4262. "require": {
  4263. "drupal/core": "^9.3 | ^10",
  4264. "fileeye/pel": "^0.9.20",
  4265. "phenx/php-font-lib": "^0.5.4"
  4266. },
  4267. "require-dev": {
  4268. "drupal/vendor_stream_wrapper": "^2.0.2",
  4269. "fileeye/linuxlibertine-fonts": "^5.3"
  4270. },
  4271. "type": "drupal-module",
  4272. "extra": {
  4273. "drupal": {
  4274. "version": "8.x-2.6",
  4275. "datestamp": "1688489716",
  4276. "security-coverage": {
  4277. "status": "covered",
  4278. "message": "Covered by Drupal's security advisory policy"
  4279. }
  4280. }
  4281. },
  4282. "notification-url": "https://packages.drupal.org/8/downloads",
  4283. "license": [
  4284. "GPL-2.0-or-later"
  4285. ],
  4286. "authors": [
  4287. {
  4288. "name": "mondrake",
  4289. "homepage": "https://www.drupal.org/user/1307444"
  4290. }
  4291. ],
  4292. "description": "Provides a service to manage file metadata.",
  4293. "homepage": "https://www.drupal.org/project/file_mdm",
  4294. "support": {
  4295. "source": "https://git.drupalcode.org/project/file_mdm"
  4296. }
  4297. },
  4298. {
  4299. "name": "drupal/filter_perms",
  4300. "version": "dev-1.x",
  4301. "source": {
  4302. "type": "git",
  4303. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4304. "reference": "1ba486b620e0c0ea1c323cfcadb0f965d9022d1c"
  4305. },
  4306. "require": {
  4307. "drupal/core": "^9.0 || ^10.0"
  4308. },
  4309. "type": "drupal-module",
  4310. "extra": {
  4311. "branch-alias": {
  4312. "dev-1.x": "1.x-dev"
  4313. },
  4314. "drupal": {
  4315. "version": "8.x-1.0-alpha2+1-dev",
  4316. "datestamp": "1697635045",
  4317. "security-coverage": {
  4318. "status": "not-covered",
  4319. "message": "Dev releases are not covered by Drupal security advisories."
  4320. }
  4321. }
  4322. },
  4323. "notification-url": "https://packages.drupal.org/8/downloads",
  4324. "license": [
  4325. "GPL-2.0+"
  4326. ],
  4327. "authors": [
  4328. {
  4329. "name": "cYu",
  4330. "homepage": "https://www.drupal.org/user/202205"
  4331. },
  4332. {
  4333. "name": "deekayen",
  4334. "homepage": "https://www.drupal.org/user/972"
  4335. },
  4336. {
  4337. "name": "ivavictoria",
  4338. "homepage": "https://www.drupal.org/user/3061533"
  4339. },
  4340. {
  4341. "name": "justcaldwell",
  4342. "homepage": "https://www.drupal.org/user/290069"
  4343. },
  4344. {
  4345. "name": "mgbellaire",
  4346. "homepage": "https://www.drupal.org/user/1831932"
  4347. },
  4348. {
  4349. "name": "willzyx",
  4350. "homepage": "https://www.drupal.org/user/1043862"
  4351. }
  4352. ],
  4353. "description": "Provides role and module filters to simplify the user permissions page.",
  4354. "homepage": "https://www.drupal.org/project/filter_perms",
  4355. "support": {
  4356. "source": "http://cgit.drupalcode.org/filter_perms",
  4357. "issues": "https://www.drupal.org/project/issues/filter_perms?categories=All"
  4358. }
  4359. },
  4360. {
  4361. "name": "drupal/formatter_suite",
  4362. "version": "2.0.0",
  4363. "source": {
  4364. "type": "git",
  4365. "url": "https://git.drupalcode.org/project/formatter_suite.git",
  4366. "reference": "2.0.0"
  4367. },
  4368. "dist": {
  4369. "type": "zip",
  4370. "url": "https://ftp.drupal.org/files/projects/formatter_suite-2.0.0.zip",
  4371. "reference": "2.0.0",
  4372. "shasum": "1c6c0fc11d381c10a7b13c51ec2848ae91b40cec"
  4373. },
  4374. "require": {
  4375. "drupal/core": "^9 || ^10"
  4376. },
  4377. "type": "drupal-module",
  4378. "extra": {
  4379. "drupal": {
  4380. "version": "2.0.0",
  4381. "datestamp": "1694036572",
  4382. "security-coverage": {
  4383. "status": "covered",
  4384. "message": "Covered by Drupal's security advisory policy"
  4385. }
  4386. }
  4387. },
  4388. "notification-url": "https://packages.drupal.org/8/downloads",
  4389. "license": [
  4390. "GPL-2.0-or-later"
  4391. ],
  4392. "authors": [
  4393. {
  4394. "name": "thecooltechguy",
  4395. "homepage": "https://www.drupal.org/user/3674323"
  4396. },
  4397. {
  4398. "name": "toamit",
  4399. "homepage": "https://www.drupal.org/user/2820523"
  4400. }
  4401. ],
  4402. "description": "Field formaters to present numbers, text, links, etc.",
  4403. "homepage": "https://www.drupal.org/project/formatter_suite",
  4404. "keywords": [
  4405. "Drupal",
  4406. "Format"
  4407. ],
  4408. "support": {
  4409. "source": "http://cgit.drupalcode.org/formatter_suite",
  4410. "issues": "http://drupal.org/project/issues/formatter_suite"
  4411. }
  4412. },
  4413. {
  4414. "name": "drupal/honeypot",
  4415. "version": "2.1.3",
  4416. "source": {
  4417. "type": "git",
  4418. "url": "https://git.drupalcode.org/project/honeypot.git",
  4419. "reference": "2.1.3"
  4420. },
  4421. "dist": {
  4422. "type": "zip",
  4423. "url": "https://ftp.drupal.org/files/projects/honeypot-2.1.3.zip",
  4424. "reference": "2.1.3",
  4425. "shasum": "101105029a10a574ef6017824182500ab9905856"
  4426. },
  4427. "require": {
  4428. "drupal/core": "^9.2 || ^10"
  4429. },
  4430. "require-dev": {
  4431. "drupal/rules": "^3.0"
  4432. },
  4433. "type": "drupal-module",
  4434. "extra": {
  4435. "drupal": {
  4436. "version": "2.1.3",
  4437. "datestamp": "1695604754",
  4438. "security-coverage": {
  4439. "status": "covered",
  4440. "message": "Covered by Drupal's security advisory policy"
  4441. }
  4442. }
  4443. },
  4444. "notification-url": "https://packages.drupal.org/8/downloads",
  4445. "license": [
  4446. "GPL-2.0-or-later"
  4447. ],
  4448. "authors": [
  4449. {
  4450. "name": "Jeff Geerling",
  4451. "homepage": "https://www.drupal.org/user/389011",
  4452. "email": "geerlingguy@mac.com"
  4453. },
  4454. {
  4455. "name": "Manuel Garcia",
  4456. "homepage": "https://www.drupal.org/user/213194"
  4457. },
  4458. {
  4459. "name": "TR",
  4460. "homepage": "https://www.drupal.org/user/202830"
  4461. },
  4462. {
  4463. "name": "vijaycs85",
  4464. "homepage": "https://www.drupal.org/user/93488"
  4465. }
  4466. ],
  4467. "description": "Mitigates spam form submissions using the honeypot method.",
  4468. "homepage": "https://www.drupal.org/project/honeypot",
  4469. "keywords": [
  4470. "deterrent",
  4471. "form",
  4472. "honeypot",
  4473. "honeytrap",
  4474. "php",
  4475. "spam"
  4476. ],
  4477. "support": {
  4478. "source": "https://git.drupalcode.org/project/honeypot",
  4479. "issues": "https://www.drupal.org/project/issues/honeypot"
  4480. }
  4481. },
  4482. {
  4483. "name": "drupal/imagemagick",
  4484. "version": "3.4.0",
  4485. "source": {
  4486. "type": "git",
  4487. "url": "https://git.drupalcode.org/project/imagemagick.git",
  4488. "reference": "8.x-3.4"
  4489. },
  4490. "dist": {
  4491. "type": "zip",
  4492. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-3.4.zip",
  4493. "reference": "8.x-3.4",
  4494. "shasum": "9f07b7db4bba2cb0e4ff004629f8f78242bb7226"
  4495. },
  4496. "require": {
  4497. "drupal/core": "^9.3 || ^10",
  4498. "drupal/file_mdm": "^2.5",
  4499. "drupal/sophron": "^1.2 || ^2"
  4500. },
  4501. "type": "drupal-module",
  4502. "extra": {
  4503. "drupal": {
  4504. "version": "8.x-3.4",
  4505. "datestamp": "1663947784",
  4506. "security-coverage": {
  4507. "status": "covered",
  4508. "message": "Covered by Drupal's security advisory policy"
  4509. }
  4510. }
  4511. },
  4512. "notification-url": "https://packages.drupal.org/8/downloads",
  4513. "license": [
  4514. "GPL-2.0-or-later"
  4515. ],
  4516. "authors": [
  4517. {
  4518. "name": "Chris Charlton",
  4519. "homepage": "https://www.drupal.org/user/17089"
  4520. },
  4521. {
  4522. "name": "chx",
  4523. "homepage": "https://www.drupal.org/user/9446"
  4524. },
  4525. {
  4526. "name": "claudiu.cristea",
  4527. "homepage": "https://www.drupal.org/user/56348"
  4528. },
  4529. {
  4530. "name": "dman",
  4531. "homepage": "https://www.drupal.org/user/33240"
  4532. },
  4533. {
  4534. "name": "dopry",
  4535. "homepage": "https://www.drupal.org/user/22202"
  4536. },
  4537. {
  4538. "name": "drewish",
  4539. "homepage": "https://www.drupal.org/user/34869"
  4540. },
  4541. {
  4542. "name": "gdl",
  4543. "homepage": "https://www.drupal.org/user/507326"
  4544. },
  4545. {
  4546. "name": "mondrake",
  4547. "homepage": "https://www.drupal.org/user/1307444"
  4548. },
  4549. {
  4550. "name": "quicksketch",
  4551. "homepage": "https://www.drupal.org/user/35821"
  4552. },
  4553. {
  4554. "name": "sun",
  4555. "homepage": "https://www.drupal.org/user/54136"
  4556. },
  4557. {
  4558. "name": "walkah",
  4559. "homepage": "https://www.drupal.org/user/1531"
  4560. }
  4561. ],
  4562. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  4563. "homepage": "https://www.drupal.org/project/imagemagick",
  4564. "support": {
  4565. "source": "https://git.drupalcode.org/project/imagemagick"
  4566. }
  4567. },
  4568. {
  4569. "name": "drupal/inline_entity_form",
  4570. "version": "1.0.0-rc15",
  4571. "source": {
  4572. "type": "git",
  4573. "url": "https://git.drupalcode.org/project/inline_entity_form.git",
  4574. "reference": "8.x-1.0-rc15"
  4575. },
  4576. "dist": {
  4577. "type": "zip",
  4578. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc15.zip",
  4579. "reference": "8.x-1.0-rc15",
  4580. "shasum": "7702801f7e599956fc3d10cff8257809f53ac3ec"
  4581. },
  4582. "require": {
  4583. "drupal/core": "^8.8 || ^9 || ^10",
  4584. "php": ">=7.1"
  4585. },
  4586. "require-dev": {
  4587. "drupal/entity_reference_revisions": "^1.0"
  4588. },
  4589. "type": "drupal-module",
  4590. "extra": {
  4591. "drupal": {
  4592. "version": "8.x-1.0-rc15",
  4593. "datestamp": "1678126675",
  4594. "security-coverage": {
  4595. "status": "not-covered",
  4596. "message": "RC releases are not covered by Drupal security advisories."
  4597. }
  4598. }
  4599. },
  4600. "notification-url": "https://packages.drupal.org/8/downloads",
  4601. "license": [
  4602. "GPL-2.0-or-later"
  4603. ],
  4604. "authors": [
  4605. {
  4606. "name": "bojanz",
  4607. "homepage": "https://www.drupal.org/user/86106"
  4608. },
  4609. {
  4610. "name": "Centarro",
  4611. "homepage": "https://www.drupal.org/user/3661446"
  4612. },
  4613. {
  4614. "name": "dawehner",
  4615. "homepage": "https://www.drupal.org/user/99340"
  4616. },
  4617. {
  4618. "name": "geek-merlin",
  4619. "homepage": "https://www.drupal.org/user/229048"
  4620. },
  4621. {
  4622. "name": "joachim",
  4623. "homepage": "https://www.drupal.org/user/107701"
  4624. },
  4625. {
  4626. "name": "jsacksick",
  4627. "homepage": "https://www.drupal.org/user/972218"
  4628. },
  4629. {
  4630. "name": "oknate",
  4631. "homepage": "https://www.drupal.org/user/471638"
  4632. },
  4633. {
  4634. "name": "podarok",
  4635. "homepage": "https://www.drupal.org/user/116002"
  4636. },
  4637. {
  4638. "name": "ram4nd",
  4639. "homepage": "https://www.drupal.org/user/601534"
  4640. },
  4641. {
  4642. "name": "rszrama",
  4643. "homepage": "https://www.drupal.org/user/49344"
  4644. },
  4645. {
  4646. "name": "slashrsm",
  4647. "homepage": "https://www.drupal.org/user/744628"
  4648. },
  4649. {
  4650. "name": "webflo",
  4651. "homepage": "https://www.drupal.org/user/254778"
  4652. }
  4653. ],
  4654. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  4655. "homepage": "https://www.drupal.org/project/inline_entity_form",
  4656. "support": {
  4657. "source": "https://git.drupalcode.org/project/inline_entity_form"
  4658. }
  4659. },
  4660. {
  4661. "name": "drupal/jquery_ui",
  4662. "version": "1.6.0",
  4663. "source": {
  4664. "type": "git",
  4665. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  4666. "reference": "8.x-1.6"
  4667. },
  4668. "dist": {
  4669. "type": "zip",
  4670. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.6.zip",
  4671. "reference": "8.x-1.6",
  4672. "shasum": "0ddccdcf35a066de1843e1d9670677ee1a2faac0"
  4673. },
  4674. "require": {
  4675. "drupal/core": "^9.2 || ^10"
  4676. },
  4677. "type": "drupal-module",
  4678. "extra": {
  4679. "drupal": {
  4680. "version": "8.x-1.6",
  4681. "datestamp": "1668521197",
  4682. "security-coverage": {
  4683. "status": "covered",
  4684. "message": "Covered by Drupal's security advisory policy"
  4685. }
  4686. }
  4687. },
  4688. "notification-url": "https://packages.drupal.org/8/downloads",
  4689. "license": [
  4690. "GPL-2.0-or-later"
  4691. ],
  4692. "authors": [
  4693. {
  4694. "name": "bnjmnm",
  4695. "homepage": "https://www.drupal.org/user/2369194"
  4696. },
  4697. {
  4698. "name": "jjeff",
  4699. "homepage": "https://www.drupal.org/user/17190"
  4700. },
  4701. {
  4702. "name": "lauriii",
  4703. "homepage": "https://www.drupal.org/user/1078742"
  4704. },
  4705. {
  4706. "name": "litwol",
  4707. "homepage": "https://www.drupal.org/user/78134"
  4708. },
  4709. {
  4710. "name": "mfb",
  4711. "homepage": "https://www.drupal.org/user/12302"
  4712. },
  4713. {
  4714. "name": "mfer",
  4715. "homepage": "https://www.drupal.org/user/25701"
  4716. },
  4717. {
  4718. "name": "mikelutz",
  4719. "homepage": "https://www.drupal.org/user/2972409"
  4720. },
  4721. {
  4722. "name": "nod_",
  4723. "homepage": "https://www.drupal.org/user/598310"
  4724. },
  4725. {
  4726. "name": "phenaproxima",
  4727. "homepage": "https://www.drupal.org/user/205645"
  4728. },
  4729. {
  4730. "name": "RobLoach",
  4731. "homepage": "https://www.drupal.org/user/61114"
  4732. },
  4733. {
  4734. "name": "sun",
  4735. "homepage": "https://www.drupal.org/user/54136"
  4736. },
  4737. {
  4738. "name": "webchick",
  4739. "homepage": "https://www.drupal.org/user/24967"
  4740. },
  4741. {
  4742. "name": "Wim Leers",
  4743. "homepage": "https://www.drupal.org/user/99777"
  4744. },
  4745. {
  4746. "name": "zrpnr",
  4747. "homepage": "https://www.drupal.org/user/1448368"
  4748. }
  4749. ],
  4750. "description": "Provides jQuery UI library.",
  4751. "homepage": "https://www.drupal.org/project/jquery_ui",
  4752. "support": {
  4753. "source": "https://git.drupalcode.org/project/jquery_ui"
  4754. }
  4755. },
  4756. {
  4757. "name": "drupal/jquery_ui_datepicker",
  4758. "version": "2.0.0",
  4759. "source": {
  4760. "type": "git",
  4761. "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
  4762. "reference": "2.0.0"
  4763. },
  4764. "dist": {
  4765. "type": "zip",
  4766. "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-2.0.0.zip",
  4767. "reference": "2.0.0",
  4768. "shasum": "ce40cf8ab400866bffda1ac3f7e4a5ac20bb3ae5"
  4769. },
  4770. "require": {
  4771. "drupal/core": "^9.2 || ^10",
  4772. "drupal/jquery_ui": "^1.6"
  4773. },
  4774. "type": "drupal-module",
  4775. "extra": {
  4776. "drupal": {
  4777. "version": "2.0.0",
  4778. "datestamp": "1670871494",
  4779. "security-coverage": {
  4780. "status": "covered",
  4781. "message": "Covered by Drupal's security advisory policy"
  4782. }
  4783. }
  4784. },
  4785. "notification-url": "https://packages.drupal.org/8/downloads",
  4786. "license": [
  4787. "GPL-2.0-or-later"
  4788. ],
  4789. "authors": [
  4790. {
  4791. "name": "bnjmnm",
  4792. "homepage": "https://www.drupal.org/user/2369194"
  4793. },
  4794. {
  4795. "name": "jrockowitz",
  4796. "homepage": "https://www.drupal.org/user/371407"
  4797. },
  4798. {
  4799. "name": "lauriii",
  4800. "homepage": "https://www.drupal.org/user/1078742"
  4801. },
  4802. {
  4803. "name": "nod_",
  4804. "homepage": "https://www.drupal.org/user/598310"
  4805. },
  4806. {
  4807. "name": "phenaproxima",
  4808. "homepage": "https://www.drupal.org/user/205645"
  4809. },
  4810. {
  4811. "name": "zrpnr",
  4812. "homepage": "https://www.drupal.org/user/1448368"
  4813. }
  4814. ],
  4815. "description": "Provides jQuery UI Datepicker library.",
  4816. "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
  4817. "support": {
  4818. "source": "https://git.drupalcode.org/project/jquery_ui_datepicker"
  4819. }
  4820. },
  4821. {
  4822. "name": "drupal/jquery_ui_draggable",
  4823. "version": "2.0.0",
  4824. "source": {
  4825. "type": "git",
  4826. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  4827. "reference": "2.0.0"
  4828. },
  4829. "dist": {
  4830. "type": "zip",
  4831. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.0.0.zip",
  4832. "reference": "2.0.0",
  4833. "shasum": "13a8f4bf037449cd176ddb967fc9cba9a466a705"
  4834. },
  4835. "require": {
  4836. "drupal/core": "^9.2 || ^10",
  4837. "drupal/jquery_ui": "^1.6"
  4838. },
  4839. "type": "drupal-module",
  4840. "extra": {
  4841. "drupal": {
  4842. "version": "2.0.0",
  4843. "datestamp": "1670871516",
  4844. "security-coverage": {
  4845. "status": "covered",
  4846. "message": "Covered by Drupal's security advisory policy"
  4847. }
  4848. }
  4849. },
  4850. "notification-url": "https://packages.drupal.org/8/downloads",
  4851. "license": [
  4852. "GPL-2.0-or-later"
  4853. ],
  4854. "authors": [
  4855. {
  4856. "name": "bnjmnm",
  4857. "homepage": "https://www.drupal.org/user/2369194"
  4858. },
  4859. {
  4860. "name": "lauriii",
  4861. "homepage": "https://www.drupal.org/user/1078742"
  4862. },
  4863. {
  4864. "name": "zrpnr",
  4865. "homepage": "https://www.drupal.org/user/1448368"
  4866. }
  4867. ],
  4868. "description": "Provides jQuery UI Draggable library.",
  4869. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  4870. "support": {
  4871. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  4872. }
  4873. },
  4874. {
  4875. "name": "drupal/jquery_ui_droppable",
  4876. "version": "1.5.0",
  4877. "source": {
  4878. "type": "git",
  4879. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  4880. "reference": "8.x-1.5"
  4881. },
  4882. "dist": {
  4883. "type": "zip",
  4884. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-8.x-1.5.zip",
  4885. "reference": "8.x-1.5",
  4886. "shasum": "ee9fec147493ce6c81fdf95ec463f7092606e913"
  4887. },
  4888. "require": {
  4889. "drupal/core": "^9.2 || ^10",
  4890. "drupal/jquery_ui": "^1.5",
  4891. "drupal/jquery_ui_draggable": "*"
  4892. },
  4893. "type": "drupal-module",
  4894. "extra": {
  4895. "drupal": {
  4896. "version": "8.x-1.5",
  4897. "datestamp": "1668452746",
  4898. "security-coverage": {
  4899. "status": "covered",
  4900. "message": "Covered by Drupal's security advisory policy"
  4901. }
  4902. }
  4903. },
  4904. "notification-url": "https://packages.drupal.org/8/downloads",
  4905. "license": [
  4906. "GPL-2.0-or-later"
  4907. ],
  4908. "authors": [
  4909. {
  4910. "name": "bnjmnm",
  4911. "homepage": "https://www.drupal.org/user/2369194"
  4912. },
  4913. {
  4914. "name": "lauriii",
  4915. "homepage": "https://www.drupal.org/user/1078742"
  4916. },
  4917. {
  4918. "name": "zrpnr",
  4919. "homepage": "https://www.drupal.org/user/1448368"
  4920. }
  4921. ],
  4922. "description": "Provides jQuery UI Droppable library.",
  4923. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  4924. "support": {
  4925. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  4926. }
  4927. },
  4928. {
  4929. "name": "drupal/jquery_ui_slider",
  4930. "version": "2.0.0",
  4931. "source": {
  4932. "type": "git",
  4933. "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
  4934. "reference": "2.0.0"
  4935. },
  4936. "dist": {
  4937. "type": "zip",
  4938. "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-2.0.0.zip",
  4939. "reference": "2.0.0",
  4940. "shasum": "86b7d71e91013cffafb8021dbf8047745ebc5fd6"
  4941. },
  4942. "require": {
  4943. "drupal/core": "^9.2 || ^10",
  4944. "drupal/jquery_ui": "^1.6"
  4945. },
  4946. "type": "drupal-module",
  4947. "extra": {
  4948. "drupal": {
  4949. "version": "2.0.0",
  4950. "datestamp": "1670871571",
  4951. "security-coverage": {
  4952. "status": "covered",
  4953. "message": "Covered by Drupal's security advisory policy"
  4954. }
  4955. }
  4956. },
  4957. "notification-url": "https://packages.drupal.org/8/downloads",
  4958. "license": [
  4959. "GPL-2.0-or-later"
  4960. ],
  4961. "authors": [
  4962. {
  4963. "name": "bnjmnm",
  4964. "homepage": "https://www.drupal.org/user/2369194"
  4965. },
  4966. {
  4967. "name": "lauriii",
  4968. "homepage": "https://www.drupal.org/user/1078742"
  4969. },
  4970. {
  4971. "name": "zrpnr",
  4972. "homepage": "https://www.drupal.org/user/1448368"
  4973. }
  4974. ],
  4975. "description": "Provides jQuery UI Slider library.",
  4976. "homepage": "https://www.drupal.org/project/jquery_ui_slider",
  4977. "support": {
  4978. "source": "https://git.drupalcode.org/project/jquery_ui_slider"
  4979. }
  4980. },
  4981. {
  4982. "name": "drupal/jquery_ui_touch_punch",
  4983. "version": "1.1.0",
  4984. "source": {
  4985. "type": "git",
  4986. "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
  4987. "reference": "1.1.0"
  4988. },
  4989. "dist": {
  4990. "type": "zip",
  4991. "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.1.0.zip",
  4992. "reference": "1.1.0",
  4993. "shasum": "4b7e50a98246dfa6ef48e5b12c70277873902824"
  4994. },
  4995. "require": {
  4996. "drupal/core": "^8 || ^9 || ^10",
  4997. "drupal/jquery_ui": "^1.0",
  4998. "politsin/jquery-ui-touch-punch": "^1.0"
  4999. },
  5000. "type": "drupal-module",
  5001. "extra": {
  5002. "drupal": {
  5003. "version": "1.1.0",
  5004. "datestamp": "1662744607",
  5005. "security-coverage": {
  5006. "status": "covered",
  5007. "message": "Covered by Drupal's security advisory policy"
  5008. }
  5009. }
  5010. },
  5011. "notification-url": "https://packages.drupal.org/8/downloads",
  5012. "license": [
  5013. "GPL-2.0-or-later"
  5014. ],
  5015. "authors": [
  5016. {
  5017. "name": "Naveen Valecha",
  5018. "homepage": "https://drupal.org/u/naveenvalecha",
  5019. "role": "Maintainer"
  5020. },
  5021. {
  5022. "name": "naveenvalecha",
  5023. "homepage": "https://www.drupal.org/user/2665733"
  5024. }
  5025. ],
  5026. "description": "Provides jQuery UI Touch Punch library.",
  5027. "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5028. "keywords": [
  5029. "Drupal",
  5030. "jquery_ui_touch_punch"
  5031. ],
  5032. "support": {
  5033. "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5034. "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch"
  5035. }
  5036. },
  5037. {
  5038. "name": "drupal/link_attributes",
  5039. "version": "1.14.0",
  5040. "source": {
  5041. "type": "git",
  5042. "url": "https://git.drupalcode.org/project/link_attributes.git",
  5043. "reference": "8.x-1.14"
  5044. },
  5045. "dist": {
  5046. "type": "zip",
  5047. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.14.zip",
  5048. "reference": "8.x-1.14",
  5049. "shasum": "fa4f27ecaed7e6b3c58c0adc679918a9beb7ded5"
  5050. },
  5051. "require": {
  5052. "drupal/core": "^9 || ^10"
  5053. },
  5054. "type": "drupal-module",
  5055. "extra": {
  5056. "drupal": {
  5057. "version": "8.x-1.14",
  5058. "datestamp": "1687393687",
  5059. "security-coverage": {
  5060. "status": "covered",
  5061. "message": "Covered by Drupal's security advisory policy"
  5062. }
  5063. }
  5064. },
  5065. "notification-url": "https://packages.drupal.org/8/downloads",
  5066. "license": [
  5067. "GPL-2.0-or-later"
  5068. ],
  5069. "authors": [
  5070. {
  5071. "name": "larowlan",
  5072. "homepage": "https://www.drupal.org/user/395439"
  5073. }
  5074. ],
  5075. "description": "Provides a widget to allow settings of link attributes for menu links.",
  5076. "homepage": "https://www.drupal.org/project/link_attributes",
  5077. "keywords": [
  5078. "Drupal"
  5079. ],
  5080. "support": {
  5081. "source": "https://git.drupalcode.org/project/link_attributes",
  5082. "issues": "https://www.drupal.org/project/issues/link_attributes"
  5083. }
  5084. },
  5085. {
  5086. "name": "drupal/linked_field",
  5087. "version": "1.5.0",
  5088. "source": {
  5089. "type": "git",
  5090. "url": "https://git.drupalcode.org/project/linked_field.git",
  5091. "reference": "8.x-1.5"
  5092. },
  5093. "dist": {
  5094. "type": "zip",
  5095. "url": "https://ftp.drupal.org/files/projects/linked_field-8.x-1.5.zip",
  5096. "reference": "8.x-1.5",
  5097. "shasum": "31ed8008d2f88c693334f6faad03112280820fe0"
  5098. },
  5099. "require": {
  5100. "drupal/core": "^8.8 || ^9 || ^10"
  5101. },
  5102. "type": "drupal-module",
  5103. "extra": {
  5104. "drupal": {
  5105. "version": "8.x-1.5",
  5106. "datestamp": "1677239525",
  5107. "security-coverage": {
  5108. "status": "covered",
  5109. "message": "Covered by Drupal's security advisory policy"
  5110. }
  5111. }
  5112. },
  5113. "notification-url": "https://packages.drupal.org/8/downloads",
  5114. "license": [
  5115. "GPL-2.0-or-later"
  5116. ],
  5117. "authors": [
  5118. {
  5119. "name": "jcnventura",
  5120. "homepage": "https://www.drupal.org/user/122464"
  5121. },
  5122. {
  5123. "name": "yannickoo",
  5124. "homepage": "https://www.drupal.org/user/531118"
  5125. }
  5126. ],
  5127. "description": "Adds the functionality to link fields to a specific destination.",
  5128. "homepage": "https://www.drupal.org/project/linked_field",
  5129. "support": {
  5130. "source": "https://git.drupalcode.org/project/linked_field"
  5131. }
  5132. },
  5133. {
  5134. "name": "drupal/linkit",
  5135. "version": "6.1.2",
  5136. "source": {
  5137. "type": "git",
  5138. "url": "https://git.drupalcode.org/project/linkit.git",
  5139. "reference": "6.1.2"
  5140. },
  5141. "dist": {
  5142. "type": "zip",
  5143. "url": "https://ftp.drupal.org/files/projects/linkit-6.1.2.zip",
  5144. "reference": "6.1.2",
  5145. "shasum": "63fb311d2b78df81a9a588330429b640ec7da0e8"
  5146. },
  5147. "require": {
  5148. "drupal/core": "^10.1"
  5149. },
  5150. "require-dev": {
  5151. "drupal/ckeditor": "*",
  5152. "drupal/imce": "*"
  5153. },
  5154. "type": "drupal-module",
  5155. "extra": {
  5156. "drupal": {
  5157. "version": "6.1.2",
  5158. "datestamp": "1696865478",
  5159. "security-coverage": {
  5160. "status": "covered",
  5161. "message": "Covered by Drupal's security advisory policy"
  5162. }
  5163. }
  5164. },
  5165. "notification-url": "https://packages.drupal.org/8/downloads",
  5166. "license": [
  5167. "GPL-2.0-or-later"
  5168. ],
  5169. "authors": [
  5170. {
  5171. "name": "Emil Stjerneman",
  5172. "homepage": "https://stjerneman.com",
  5173. "email": "emil@stjerneman.com",
  5174. "role": "Maintainer"
  5175. },
  5176. {
  5177. "name": "johnwebdev",
  5178. "homepage": "https://www.drupal.org/user/3331569"
  5179. },
  5180. {
  5181. "name": "mark_fullmer",
  5182. "homepage": "https://www.drupal.org/user/2612816"
  5183. }
  5184. ],
  5185. "description": "Linkit - Enriched linking experience",
  5186. "homepage": "http://drupal.org/project/linkit",
  5187. "support": {
  5188. "source": "http://cgit.drupalcode.org/linkit",
  5189. "issues": "http://drupal.org/project/linkit"
  5190. }
  5191. },
  5192. {
  5193. "name": "drupal/login_destination",
  5194. "version": "dev-2.x",
  5195. "source": {
  5196. "type": "git",
  5197. "url": "https://git.drupalcode.org/project/login_destination.git",
  5198. "reference": "5ba35c477e9b902b08c70c60e1d28eff11cc8e9f"
  5199. },
  5200. "require": {
  5201. "drupal/core": "^8.7.10 || ^9 || ^10"
  5202. },
  5203. "require-dev": {
  5204. "drupal/admin_toolbar": "^1.23",
  5205. "drupal/admin_toolbar_tools": "*"
  5206. },
  5207. "type": "drupal-module",
  5208. "extra": {
  5209. "branch-alias": {
  5210. "dev-2.x": "2.x-dev"
  5211. },
  5212. "drupal": {
  5213. "version": "8.x-2.0-beta5+3-dev",
  5214. "datestamp": "1680181961",
  5215. "security-coverage": {
  5216. "status": "not-covered",
  5217. "message": "Dev releases are not covered by Drupal security advisories."
  5218. }
  5219. }
  5220. },
  5221. "notification-url": "https://packages.drupal.org/8/downloads",
  5222. "license": [
  5223. "GPL-2.0-or-later"
  5224. ],
  5225. "authors": [
  5226. {
  5227. "name": "rsvelko",
  5228. "homepage": "https://www.drupal.org/u/rsvelko",
  5229. "role": "Creator, Maintainer"
  5230. },
  5231. {
  5232. "name": "Other Contributors",
  5233. "homepage": "https://www.drupal.org/node/69051/committers",
  5234. "role": "Contributors"
  5235. },
  5236. {
  5237. "name": "ddrozdik",
  5238. "homepage": "https://www.drupal.org/user/574124"
  5239. },
  5240. {
  5241. "name": "jng12",
  5242. "homepage": "https://www.drupal.org/user/204316"
  5243. },
  5244. {
  5245. "name": "marcp",
  5246. "homepage": "https://www.drupal.org/user/20885"
  5247. },
  5248. {
  5249. "name": "mithy",
  5250. "homepage": "https://www.drupal.org/user/258911"
  5251. },
  5252. {
  5253. "name": "moshe weitzman",
  5254. "homepage": "https://www.drupal.org/user/23"
  5255. },
  5256. {
  5257. "name": "Oliver Huynh",
  5258. "homepage": "https://www.drupal.org/user/243730"
  5259. },
  5260. {
  5261. "name": "perennial.sky",
  5262. "homepage": "https://www.drupal.org/user/2622667"
  5263. },
  5264. {
  5265. "name": "rsvelko",
  5266. "homepage": "https://www.drupal.org/user/337401"
  5267. }
  5268. ],
  5269. "description": "Customizes the destination the user is redirected to after login/logout/registration/one-time login.",
  5270. "homepage": "https://drupal.org/project/login_destination",
  5271. "support": {
  5272. "source": "https://git.drupalcode.org/project/login_destination",
  5273. "issues": "https://drupal.org/project/issues/login_destination"
  5274. }
  5275. },
  5276. {
  5277. "name": "drupal/maillog",
  5278. "version": "dev-1.x",
  5279. "source": {
  5280. "type": "git",
  5281. "url": "https://git.drupalcode.org/project/maillog.git",
  5282. "reference": "baa5d6ca739e6aecfdf28461d54911a2f6a038a4"
  5283. },
  5284. "require": {
  5285. "drupal/core": "^9 || ^10"
  5286. },
  5287. "type": "drupal-module",
  5288. "extra": {
  5289. "branch-alias": {
  5290. "dev-1.x": "1.x-dev"
  5291. },
  5292. "drupal": {
  5293. "version": "8.x-1.1+2-dev",
  5294. "datestamp": "1686405787",
  5295. "security-coverage": {
  5296. "status": "not-covered",
  5297. "message": "Dev releases are not covered by Drupal security advisories."
  5298. }
  5299. }
  5300. },
  5301. "notification-url": "https://packages.drupal.org/8/downloads",
  5302. "license": [
  5303. "GPL-2.0-or-later"
  5304. ],
  5305. "authors": [
  5306. {
  5307. "name": "Berdir",
  5308. "homepage": "https://www.drupal.org/user/214652"
  5309. },
  5310. {
  5311. "name": "DamienMcKenna",
  5312. "homepage": "https://www.drupal.org/user/108450"
  5313. },
  5314. {
  5315. "name": "miro_dietiker",
  5316. "homepage": "https://www.drupal.org/user/227761"
  5317. },
  5318. {
  5319. "name": "pluess",
  5320. "homepage": "https://www.drupal.org/user/84659"
  5321. }
  5322. ],
  5323. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  5324. "homepage": "https://www.drupal.org/project/maillog",
  5325. "support": {
  5326. "source": "https://git.drupalcode.org/project/maillog"
  5327. }
  5328. },
  5329. {
  5330. "name": "drupal/matomo",
  5331. "version": "1.22.0",
  5332. "source": {
  5333. "type": "git",
  5334. "url": "https://git.drupalcode.org/project/matomo.git",
  5335. "reference": "8.x-1.22"
  5336. },
  5337. "dist": {
  5338. "type": "zip",
  5339. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.22.zip",
  5340. "reference": "8.x-1.22",
  5341. "shasum": "b41bb83d9c0c6f8c27f72f6b1b62f691dab65a5d"
  5342. },
  5343. "require": {
  5344. "drupal/core": "^9.0 || ^10"
  5345. },
  5346. "conflict": {
  5347. "drupal/csp": "<1.12"
  5348. },
  5349. "require-dev": {
  5350. "drupal/csp": "~1.12",
  5351. "drupal/php": "~1.1",
  5352. "drupal/token": "~1.9"
  5353. },
  5354. "type": "drupal-module",
  5355. "extra": {
  5356. "drupal": {
  5357. "version": "8.x-1.22",
  5358. "datestamp": "1691004328",
  5359. "security-coverage": {
  5360. "status": "covered",
  5361. "message": "Covered by Drupal's security advisory policy"
  5362. }
  5363. }
  5364. },
  5365. "notification-url": "https://packages.drupal.org/8/downloads",
  5366. "license": [
  5367. "GPL-2.0-or-later"
  5368. ],
  5369. "authors": [
  5370. {
  5371. "name": "C-Logemann",
  5372. "homepage": "https://www.drupal.org/user/218368"
  5373. },
  5374. {
  5375. "name": "Grimreaper",
  5376. "homepage": "https://www.drupal.org/user/2388214"
  5377. },
  5378. {
  5379. "name": "hass",
  5380. "homepage": "https://www.drupal.org/user/85918"
  5381. },
  5382. {
  5383. "name": "shelane",
  5384. "homepage": "https://www.drupal.org/user/2674989"
  5385. }
  5386. ],
  5387. "description": "Adds Matomo javascript tracking code to all your site's pages.",
  5388. "homepage": "https://www.drupal.org/project/matomo",
  5389. "support": {
  5390. "source": "https://git.drupalcode.org/project/matomo"
  5391. }
  5392. },
  5393. {
  5394. "name": "drupal/maxlength",
  5395. "version": "2.1.2",
  5396. "source": {
  5397. "type": "git",
  5398. "url": "https://git.drupalcode.org/project/maxlength.git",
  5399. "reference": "2.1.2"
  5400. },
  5401. "dist": {
  5402. "type": "zip",
  5403. "url": "https://ftp.drupal.org/files/projects/maxlength-2.1.2.zip",
  5404. "reference": "2.1.2",
  5405. "shasum": "97015e4d1065770a92953c9f37fef5d55b360cf6"
  5406. },
  5407. "require": {
  5408. "drupal/core": "^9.2 || ^10"
  5409. },
  5410. "type": "drupal-module",
  5411. "extra": {
  5412. "drupal": {
  5413. "version": "2.1.2",
  5414. "datestamp": "1689974531",
  5415. "security-coverage": {
  5416. "status": "covered",
  5417. "message": "Covered by Drupal's security advisory policy"
  5418. }
  5419. }
  5420. },
  5421. "notification-url": "https://packages.drupal.org/8/downloads",
  5422. "license": [
  5423. "GPL-2.0-or-later"
  5424. ],
  5425. "authors": [
  5426. {
  5427. "name": "Marius Scurtescu (mariuss)",
  5428. "homepage": "https://www.drupal.org/u/mariuss",
  5429. "role": "Maintainer"
  5430. },
  5431. {
  5432. "name": "Clayton Dewey (cedewey)",
  5433. "homepage": "https://www.drupal.org/u/cedewey",
  5434. "role": "Maintainer"
  5435. },
  5436. {
  5437. "name": "Daniel Wehner (dawehner)",
  5438. "homepage": "https://www.drupal.org/u/dawehner",
  5439. "role": "Maintainer"
  5440. },
  5441. {
  5442. "name": "Paulino Michelazzo (pmichelazzo)",
  5443. "homepage": "https://www.drupal.org/u/pmichelazzo",
  5444. "role": "Maintainer"
  5445. },
  5446. {
  5447. "name": "Jeff Hipp (hipp2bsquare)",
  5448. "homepage": "https://www.drupal.org/u/hipp2bsquare",
  5449. "role": "Maintainer"
  5450. },
  5451. {
  5452. "name": "Steven DuBois (srdtwc)",
  5453. "homepage": "https://www.drupal.org/u/srdtwc",
  5454. "role": "Maintainer"
  5455. },
  5456. {
  5457. "name": "srdtwc",
  5458. "homepage": "https://www.drupal.org/user/3422763"
  5459. }
  5460. ],
  5461. "description": "MaxLength allows a soft or hard character limit to be set on titles, text fields and link fields.",
  5462. "homepage": "https://www.drupal.org/project/maxlength",
  5463. "support": {
  5464. "source": "https://git.drupalcode.org/project/maxlength",
  5465. "issues": "https://www.drupal.org/project/issues/maxlength"
  5466. }
  5467. },
  5468. {
  5469. "name": "drupal/menu_admin_per_menu",
  5470. "version": "1.5.0",
  5471. "source": {
  5472. "type": "git",
  5473. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  5474. "reference": "8.x-1.5"
  5475. },
  5476. "dist": {
  5477. "type": "zip",
  5478. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.5.zip",
  5479. "reference": "8.x-1.5",
  5480. "shasum": "ec8c7a4a064aa285dfb722dad264da9936fc81b6"
  5481. },
  5482. "require": {
  5483. "drupal/core": "^9 || ^10"
  5484. },
  5485. "type": "drupal-module",
  5486. "extra": {
  5487. "drupal": {
  5488. "version": "8.x-1.5",
  5489. "datestamp": "1660918821",
  5490. "security-coverage": {
  5491. "status": "covered",
  5492. "message": "Covered by Drupal's security advisory policy"
  5493. }
  5494. }
  5495. },
  5496. "notification-url": "https://packages.drupal.org/8/downloads",
  5497. "license": [
  5498. "GPL-2.0-or-later"
  5499. ],
  5500. "authors": [
  5501. {
  5502. "name": "anrikun",
  5503. "homepage": "https://www.drupal.org/user/410199"
  5504. },
  5505. {
  5506. "name": "JeroenT",
  5507. "homepage": "https://www.drupal.org/user/2228934"
  5508. },
  5509. {
  5510. "name": "jonas139",
  5511. "homepage": "https://www.drupal.org/user/2873401"
  5512. },
  5513. {
  5514. "name": "mkdok",
  5515. "homepage": "https://www.drupal.org/user/3308753"
  5516. }
  5517. ],
  5518. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  5519. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  5520. "support": {
  5521. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  5522. }
  5523. },
  5524. {
  5525. "name": "drupal/menu_block",
  5526. "version": "dev-1.x",
  5527. "source": {
  5528. "type": "git",
  5529. "url": "https://git.drupalcode.org/project/menu_block.git",
  5530. "reference": "aafb3953b765e93d4de49c4fb6130a49304e6f2a"
  5531. },
  5532. "require": {
  5533. "drupal/core": "^9.1 || ^10"
  5534. },
  5535. "type": "drupal-module",
  5536. "extra": {
  5537. "branch-alias": {
  5538. "dev-1.x": "1.x-dev"
  5539. },
  5540. "drupal": {
  5541. "version": "8.x-1.9+1-dev",
  5542. "datestamp": "1667434044",
  5543. "security-coverage": {
  5544. "status": "not-covered",
  5545. "message": "Dev releases are not covered by Drupal security advisories."
  5546. }
  5547. }
  5548. },
  5549. "notification-url": "https://packages.drupal.org/8/downloads",
  5550. "license": [
  5551. "GPL-2.0-or-later"
  5552. ],
  5553. "authors": [
  5554. {
  5555. "name": "Dave Reid",
  5556. "homepage": "https://www.drupal.org/user/53892"
  5557. },
  5558. {
  5559. "name": "joelpittet",
  5560. "homepage": "https://www.drupal.org/user/160302"
  5561. },
  5562. {
  5563. "name": "JohnAlbin",
  5564. "homepage": "https://www.drupal.org/user/32095"
  5565. },
  5566. {
  5567. "name": "kim.pepper",
  5568. "homepage": "https://www.drupal.org/user/370574"
  5569. },
  5570. {
  5571. "name": "RenatoG",
  5572. "homepage": "https://www.drupal.org/user/3326031"
  5573. },
  5574. {
  5575. "name": "rrrob",
  5576. "homepage": "https://www.drupal.org/user/273533"
  5577. }
  5578. ],
  5579. "description": "Provides configurable blocks of menu links.",
  5580. "homepage": "https://www.drupal.org/project/menu_block",
  5581. "support": {
  5582. "source": "https://git.drupalcode.org/project/menu_block"
  5583. }
  5584. },
  5585. {
  5586. "name": "drupal/menu_position",
  5587. "version": "dev-1.x",
  5588. "source": {
  5589. "type": "git",
  5590. "url": "https://git.drupalcode.org/project/menu_position.git",
  5591. "reference": "f88cef07a70af63337a82652b9224a9c0b08b5b2"
  5592. },
  5593. "require": {
  5594. "drupal/core": "^8 || ^9 || ^10"
  5595. },
  5596. "type": "drupal-module",
  5597. "extra": {
  5598. "branch-alias": {
  5599. "dev-1.x": "1.x-dev"
  5600. },
  5601. "drupal": {
  5602. "version": "8.x-1.0+6-dev",
  5603. "datestamp": "1685505680",
  5604. "security-coverage": {
  5605. "status": "not-covered",
  5606. "message": "Dev releases are not covered by Drupal security advisories."
  5607. }
  5608. }
  5609. },
  5610. "notification-url": "https://packages.drupal.org/8/downloads",
  5611. "license": [
  5612. "GPL-2.0-or-later"
  5613. ],
  5614. "authors": [
  5615. {
  5616. "name": "BarisW",
  5617. "homepage": "https://www.drupal.org/user/107229"
  5618. },
  5619. {
  5620. "name": "joelpittet",
  5621. "homepage": "https://www.drupal.org/user/160302"
  5622. },
  5623. {
  5624. "name": "JohnAlbin",
  5625. "homepage": "https://www.drupal.org/user/32095"
  5626. },
  5627. {
  5628. "name": "lbainbridge",
  5629. "homepage": "https://www.drupal.org/user/2406996"
  5630. },
  5631. {
  5632. "name": "Rajab Natshah",
  5633. "homepage": "https://www.drupal.org/user/1414312"
  5634. },
  5635. {
  5636. "name": "Sutharsan",
  5637. "homepage": "https://www.drupal.org/user/73854"
  5638. }
  5639. ],
  5640. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  5641. "homepage": "https://www.drupal.org/project/menu_position",
  5642. "support": {
  5643. "source": "https://git.drupalcode.org/project/menu_position",
  5644. "issues": "https://www.drupal.org/project/issues/menu_position"
  5645. }
  5646. },
  5647. {
  5648. "name": "drupal/page_manager",
  5649. "version": "4.0.0-rc2",
  5650. "source": {
  5651. "type": "git",
  5652. "url": "https://git.drupalcode.org/project/page_manager.git",
  5653. "reference": "8.x-4.0-rc2"
  5654. },
  5655. "dist": {
  5656. "type": "zip",
  5657. "url": "https://ftp.drupal.org/files/projects/page_manager-8.x-4.0-rc2.zip",
  5658. "reference": "8.x-4.0-rc2",
  5659. "shasum": "4a1e96284c5775343fbb4612072a2abfc83ebc33"
  5660. },
  5661. "require": {
  5662. "drupal/core": "^9.3 || ^10",
  5663. "drupal/ctools": "^3.11 || ^4.0"
  5664. },
  5665. "type": "drupal-module",
  5666. "extra": {
  5667. "drupal": {
  5668. "version": "8.x-4.0-rc2",
  5669. "datestamp": "1671210021",
  5670. "security-coverage": {
  5671. "status": "not-covered",
  5672. "message": "RC releases are not covered by Drupal security advisories."
  5673. }
  5674. },
  5675. "branch-alias": {
  5676. "dev-8.x-4.x": "4.x-dev"
  5677. }
  5678. },
  5679. "notification-url": "https://packages.drupal.org/8/downloads",
  5680. "license": [
  5681. "GPL-2.0-or-later"
  5682. ],
  5683. "authors": [
  5684. {
  5685. "name": "Tim Plunkett",
  5686. "homepage": "https://www.drupal.org/u/tim.plunkett",
  5687. "role": "Maintainer"
  5688. },
  5689. {
  5690. "name": "EclipseGc",
  5691. "homepage": "https://www.drupal.org/user/61203"
  5692. },
  5693. {
  5694. "name": "ivnish",
  5695. "homepage": "https://www.drupal.org/user/3547706"
  5696. },
  5697. {
  5698. "name": "japerry",
  5699. "homepage": "https://www.drupal.org/user/45640"
  5700. },
  5701. {
  5702. "name": "joelpittet",
  5703. "homepage": "https://www.drupal.org/user/160302"
  5704. },
  5705. {
  5706. "name": "manuel.adan",
  5707. "homepage": "https://www.drupal.org/user/516420"
  5708. },
  5709. {
  5710. "name": "phenaproxima",
  5711. "homepage": "https://www.drupal.org/user/205645"
  5712. }
  5713. ],
  5714. "description": "Provides a way to place blocks on a custom page.",
  5715. "homepage": "https://www.drupal.org/project/page_manager",
  5716. "support": {
  5717. "source": "https://git.drupal.org/project/page_manager.git",
  5718. "issues": "https://www.drupal.org/project/issues/page_manager",
  5719. "irc": "irc://irc.freenode.org/drupal-contribute"
  5720. }
  5721. },
  5722. {
  5723. "name": "drupal/pagerer",
  5724. "version": "3.0.0",
  5725. "source": {
  5726. "type": "git",
  5727. "url": "https://git.drupalcode.org/project/pagerer.git",
  5728. "reference": "3.0.0"
  5729. },
  5730. "dist": {
  5731. "type": "zip",
  5732. "url": "https://ftp.drupal.org/files/projects/pagerer-3.0.0.zip",
  5733. "reference": "3.0.0",
  5734. "shasum": "8b81271842b68399c1c58d0809cf1c737fa2aa1c"
  5735. },
  5736. "require": {
  5737. "drupal/core": "^10"
  5738. },
  5739. "type": "drupal-module",
  5740. "extra": {
  5741. "drupal": {
  5742. "version": "3.0.0",
  5743. "datestamp": "1663962586",
  5744. "security-coverage": {
  5745. "status": "covered",
  5746. "message": "Covered by Drupal's security advisory policy"
  5747. }
  5748. }
  5749. },
  5750. "notification-url": "https://packages.drupal.org/8/downloads",
  5751. "license": [
  5752. "GPL-2.0-or-later"
  5753. ],
  5754. "authors": [
  5755. {
  5756. "name": "mondrake",
  5757. "homepage": "https://www.drupal.org/user/1307444"
  5758. }
  5759. ],
  5760. "description": "Configurable pager styles.",
  5761. "homepage": "https://www.drupal.org/project/pagerer",
  5762. "support": {
  5763. "source": "https://git.drupalcode.org/project/pagerer"
  5764. }
  5765. },
  5766. {
  5767. "name": "drupal/panels",
  5768. "version": "4.7.0",
  5769. "source": {
  5770. "type": "git",
  5771. "url": "https://git.drupalcode.org/project/panels.git",
  5772. "reference": "8.x-4.7"
  5773. },
  5774. "dist": {
  5775. "type": "zip",
  5776. "url": "https://ftp.drupal.org/files/projects/panels-8.x-4.7.zip",
  5777. "reference": "8.x-4.7",
  5778. "shasum": "5536f192d328e93a9f8c4a2646df15c514d75639"
  5779. },
  5780. "require": {
  5781. "drupal/core": "^9.2 || ^10",
  5782. "drupal/ctools": "^3.12",
  5783. "drupal/jquery_ui_droppable": "^1.5"
  5784. },
  5785. "require-dev": {
  5786. "drupal/jquery_ui_droppable": "*",
  5787. "drupal/page_manager": "^4"
  5788. },
  5789. "type": "drupal-module",
  5790. "extra": {
  5791. "drupal": {
  5792. "version": "8.x-4.7",
  5793. "datestamp": "1668632919",
  5794. "security-coverage": {
  5795. "status": "covered",
  5796. "message": "Covered by Drupal's security advisory policy"
  5797. }
  5798. },
  5799. "branch-alias": {
  5800. "dev-8.x-4.x": "4.x-dev"
  5801. }
  5802. },
  5803. "notification-url": "https://packages.drupal.org/8/downloads",
  5804. "license": [
  5805. "GPL-2.0+"
  5806. ],
  5807. "authors": [
  5808. {
  5809. "name": "Jakob Perry",
  5810. "homepage": "https://www.drupal.org/u/japerry"
  5811. },
  5812. {
  5813. "name": "Samuel Mortenson",
  5814. "homepage": "https://www.drupal.org/u/samuel.mortenson"
  5815. },
  5816. {
  5817. "name": "See other contributors",
  5818. "homepage": "https://www.drupal.org/node/74958/committers"
  5819. },
  5820. {
  5821. "name": "joelpittet",
  5822. "homepage": "https://www.drupal.org/user/160302"
  5823. },
  5824. {
  5825. "name": "Letharion",
  5826. "homepage": "https://www.drupal.org/user/373603"
  5827. },
  5828. {
  5829. "name": "merlinofchaos",
  5830. "homepage": "https://www.drupal.org/user/26979"
  5831. },
  5832. {
  5833. "name": "neclimdul",
  5834. "homepage": "https://www.drupal.org/user/48673"
  5835. },
  5836. {
  5837. "name": "phenaproxima",
  5838. "homepage": "https://www.drupal.org/user/205645"
  5839. },
  5840. {
  5841. "name": "samuel.mortenson",
  5842. "homepage": "https://www.drupal.org/user/2582268"
  5843. }
  5844. ],
  5845. "description": "Core Panels display functions; provides no external UI, at least one other Panels module should be enabled.",
  5846. "homepage": "https://www.drupal.org/project/panels",
  5847. "support": {
  5848. "source": "http://git.drupal.org/project/panels.git",
  5849. "issues": "https://www.drupal.org/project/issues/panels",
  5850. "irc": "irc://irc.freenode.org/drupal-scotch"
  5851. }
  5852. },
  5853. {
  5854. "name": "drupal/paragraphs",
  5855. "version": "1.16.0",
  5856. "source": {
  5857. "type": "git",
  5858. "url": "https://git.drupalcode.org/project/paragraphs.git",
  5859. "reference": "8.x-1.16"
  5860. },
  5861. "dist": {
  5862. "type": "zip",
  5863. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.16.zip",
  5864. "reference": "8.x-1.16",
  5865. "shasum": "48f60810fd8086a52d56e84af8b212cce7a270e8"
  5866. },
  5867. "require": {
  5868. "drupal/core": "^9.3 || ^10",
  5869. "drupal/entity_reference_revisions": "~1.3"
  5870. },
  5871. "require-dev": {
  5872. "drupal/block_field": "1.x-dev",
  5873. "drupal/diff": "1.x-dev",
  5874. "drupal/entity_browser": "2.x-dev",
  5875. "drupal/entity_usage": "2.x-dev",
  5876. "drupal/field_group": "3.x-dev",
  5877. "drupal/inline_entity_form": "1.x-dev",
  5878. "drupal/paragraphs-paragraphs_library": "*",
  5879. "drupal/replicate": "1.x-dev",
  5880. "drupal/search_api": "1.x-dev",
  5881. "drupal/search_api_db": "*"
  5882. },
  5883. "suggest": {
  5884. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  5885. },
  5886. "type": "drupal-module",
  5887. "extra": {
  5888. "drupal": {
  5889. "version": "8.x-1.16",
  5890. "datestamp": "1694007797",
  5891. "security-coverage": {
  5892. "status": "covered",
  5893. "message": "Covered by Drupal's security advisory policy"
  5894. }
  5895. }
  5896. },
  5897. "notification-url": "https://packages.drupal.org/8/downloads",
  5898. "license": [
  5899. "GPL-2.0-or-later"
  5900. ],
  5901. "authors": [
  5902. {
  5903. "name": "Berdir",
  5904. "homepage": "https://www.drupal.org/user/214652"
  5905. },
  5906. {
  5907. "name": "Frans",
  5908. "homepage": "https://www.drupal.org/user/514222"
  5909. },
  5910. {
  5911. "name": "jeroen.b",
  5912. "homepage": "https://www.drupal.org/user/1853532"
  5913. },
  5914. {
  5915. "name": "jstoller",
  5916. "homepage": "https://www.drupal.org/user/99012"
  5917. },
  5918. {
  5919. "name": "miro_dietiker",
  5920. "homepage": "https://www.drupal.org/user/227761"
  5921. },
  5922. {
  5923. "name": "Primsi",
  5924. "homepage": "https://www.drupal.org/user/282629"
  5925. }
  5926. ],
  5927. "description": "Enables the creation of Paragraphs entities.",
  5928. "homepage": "https://www.drupal.org/project/paragraphs",
  5929. "support": {
  5930. "source": "https://git.drupalcode.org/project/paragraphs"
  5931. }
  5932. },
  5933. {
  5934. "name": "drupal/path_alias_xt",
  5935. "version": "dev-1.x",
  5936. "source": {
  5937. "type": "git",
  5938. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  5939. "reference": "0573ad218a2f7143544626165418eaeec03e1157"
  5940. },
  5941. "require": {
  5942. "drupal/core": "^9.3 || ^10"
  5943. },
  5944. "type": "drupal-module",
  5945. "extra": {
  5946. "branch-alias": {
  5947. "dev-1.x": "1.x-dev"
  5948. },
  5949. "drupal": {
  5950. "version": "8.x-1.x-dev",
  5951. "datestamp": "1658166545",
  5952. "security-coverage": {
  5953. "status": "not-covered",
  5954. "message": "Dev releases are not covered by Drupal security advisories."
  5955. }
  5956. }
  5957. },
  5958. "notification-url": "https://packages.drupal.org/8/downloads",
  5959. "license": [
  5960. "GPL-2.0-or-later"
  5961. ],
  5962. "authors": [
  5963. {
  5964. "name": "adriancid",
  5965. "homepage": "https://www.drupal.org/user/1962106"
  5966. },
  5967. {
  5968. "name": "RdeBoer",
  5969. "homepage": "https://www.drupal.org/user/404007"
  5970. },
  5971. {
  5972. "name": "sdstyles",
  5973. "homepage": "https://www.drupal.org/user/1420228"
  5974. }
  5975. ],
  5976. "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.",
  5977. "homepage": "https://www.drupal.org/project/path_alias_xt",
  5978. "support": {
  5979. "source": "https://git.drupalcode.org/project/path_alias_xt"
  5980. }
  5981. },
  5982. {
  5983. "name": "drupal/pathauto",
  5984. "version": "1.12.0",
  5985. "source": {
  5986. "type": "git",
  5987. "url": "https://git.drupalcode.org/project/pathauto.git",
  5988. "reference": "8.x-1.12"
  5989. },
  5990. "dist": {
  5991. "type": "zip",
  5992. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.12.zip",
  5993. "reference": "8.x-1.12",
  5994. "shasum": "b7b6432e315e38e59a7c6cc117134326c580de4c"
  5995. },
  5996. "require": {
  5997. "drupal/core": "^9.3 || ^10",
  5998. "drupal/ctools": "*",
  5999. "drupal/token": "*"
  6000. },
  6001. "suggest": {
  6002. "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."
  6003. },
  6004. "type": "drupal-module",
  6005. "extra": {
  6006. "drupal": {
  6007. "version": "8.x-1.12",
  6008. "datestamp": "1696776683",
  6009. "security-coverage": {
  6010. "status": "covered",
  6011. "message": "Covered by Drupal's security advisory policy"
  6012. }
  6013. },
  6014. "drush": {
  6015. "services": {
  6016. "drush.services.yml": "^9 || ^10"
  6017. }
  6018. }
  6019. },
  6020. "notification-url": "https://packages.drupal.org/8/downloads",
  6021. "license": [
  6022. "GPL-2.0-or-later"
  6023. ],
  6024. "authors": [
  6025. {
  6026. "name": "Berdir",
  6027. "homepage": "https://www.drupal.org/user/214652"
  6028. },
  6029. {
  6030. "name": "Dave Reid",
  6031. "homepage": "https://www.drupal.org/user/53892"
  6032. },
  6033. {
  6034. "name": "Freso",
  6035. "homepage": "https://www.drupal.org/user/27504"
  6036. },
  6037. {
  6038. "name": "greggles",
  6039. "homepage": "https://www.drupal.org/user/36762"
  6040. }
  6041. ],
  6042. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  6043. "homepage": "https://www.drupal.org/project/pathauto",
  6044. "support": {
  6045. "source": "https://cgit.drupalcode.org/pathauto",
  6046. "issues": "https://www.drupal.org/project/issues/pathauto",
  6047. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  6048. }
  6049. },
  6050. {
  6051. "name": "drupal/pathologic",
  6052. "version": "2.0.0-alpha1",
  6053. "source": {
  6054. "type": "git",
  6055. "url": "https://git.drupalcode.org/project/pathologic.git",
  6056. "reference": "2.0.0-alpha1"
  6057. },
  6058. "dist": {
  6059. "type": "zip",
  6060. "url": "https://ftp.drupal.org/files/projects/pathologic-2.0.0-alpha1.zip",
  6061. "reference": "2.0.0-alpha1",
  6062. "shasum": "be911b098ece7d1ffa55cf0d5f33d38ea40acda4"
  6063. },
  6064. "require": {
  6065. "drupal/core": "^9 || ^10"
  6066. },
  6067. "type": "drupal-module",
  6068. "extra": {
  6069. "drupal": {
  6070. "version": "2.0.0-alpha1",
  6071. "datestamp": "1681263978",
  6072. "security-coverage": {
  6073. "status": "not-covered",
  6074. "message": "Alpha releases are not covered by Drupal security advisories."
  6075. }
  6076. }
  6077. },
  6078. "notification-url": "https://packages.drupal.org/8/downloads",
  6079. "license": [
  6080. "GPL-2.0+"
  6081. ],
  6082. "authors": [
  6083. {
  6084. "name": "Berdir",
  6085. "homepage": "https://www.drupal.org/user/214652"
  6086. },
  6087. {
  6088. "name": "dww",
  6089. "homepage": "https://www.drupal.org/user/46549"
  6090. },
  6091. {
  6092. "name": "Garrett Albright",
  6093. "homepage": "https://www.drupal.org/user/191212"
  6094. },
  6095. {
  6096. "name": "mark_fullmer",
  6097. "homepage": "https://www.drupal.org/user/2612816"
  6098. }
  6099. ],
  6100. "description": "Helps avoid broken links and incorrect paths in content.",
  6101. "homepage": "https://www.drupal.org/project/pathologic",
  6102. "support": {
  6103. "source": "https://git.drupalcode.org/project/pathologic"
  6104. }
  6105. },
  6106. {
  6107. "name": "drupal/persistent_login",
  6108. "version": "1.6.0",
  6109. "source": {
  6110. "type": "git",
  6111. "url": "https://git.drupalcode.org/project/persistent_login.git",
  6112. "reference": "8.x-1.6"
  6113. },
  6114. "dist": {
  6115. "type": "zip",
  6116. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.6.zip",
  6117. "reference": "8.x-1.6",
  6118. "shasum": "87bc87ae8c4035efbdf8d6cae17c489c4fdd0aa3"
  6119. },
  6120. "require": {
  6121. "drupal/core": "^9.2 || ^10"
  6122. },
  6123. "type": "drupal-module",
  6124. "extra": {
  6125. "drupal": {
  6126. "version": "8.x-1.6",
  6127. "datestamp": "1679547817",
  6128. "security-coverage": {
  6129. "status": "covered",
  6130. "message": "Covered by Drupal's security advisory policy"
  6131. }
  6132. }
  6133. },
  6134. "notification-url": "https://packages.drupal.org/8/downloads",
  6135. "license": [
  6136. "GPL-2.0-or-later"
  6137. ],
  6138. "authors": [
  6139. {
  6140. "name": "gapple",
  6141. "homepage": "https://www.drupal.org/user/490940"
  6142. }
  6143. ],
  6144. "description": "Provides a \"Remember Me\" feature on the login form.",
  6145. "homepage": "https://www.drupal.org/project/persistent_login",
  6146. "keywords": [
  6147. "Drupal"
  6148. ],
  6149. "support": {
  6150. "source": "https://git.drupalcode.org/project/persistent_login",
  6151. "issues": "https://www.drupal.org/project/issues/persistent_login"
  6152. }
  6153. },
  6154. {
  6155. "name": "drupal/phone_number",
  6156. "version": "2.0.0-alpha5",
  6157. "source": {
  6158. "type": "git",
  6159. "url": "https://git.drupalcode.org/project/phone_number.git",
  6160. "reference": "2.0.0-alpha5"
  6161. },
  6162. "dist": {
  6163. "type": "zip",
  6164. "url": "https://ftp.drupal.org/files/projects/phone_number-2.0.0-alpha5.zip",
  6165. "reference": "2.0.0-alpha5",
  6166. "shasum": "b57f78b8d68c6e1017cdeb7ff77440729d9216c4"
  6167. },
  6168. "require": {
  6169. "drupal/core": "^9.2 || ^10",
  6170. "giggsey/libphonenumber-for-php": "^8.0"
  6171. },
  6172. "type": "drupal-module",
  6173. "extra": {
  6174. "drupal": {
  6175. "version": "2.0.0-alpha5",
  6176. "datestamp": "1698159525",
  6177. "security-coverage": {
  6178. "status": "not-covered",
  6179. "message": "Alpha releases are not covered by Drupal security advisories."
  6180. }
  6181. }
  6182. },
  6183. "notification-url": "https://packages.drupal.org/8/downloads",
  6184. "license": [
  6185. "GPL-2.0+"
  6186. ],
  6187. "authors": [
  6188. {
  6189. "name": "Christopher Caldwell",
  6190. "homepage": "https://www.drupal.org/u/chrisolof",
  6191. "email": "chrisolof@gmail.com",
  6192. "role": "Maintainer"
  6193. },
  6194. {
  6195. "name": "nyariv",
  6196. "homepage": "https://www.drupal.org/user/2747789"
  6197. },
  6198. {
  6199. "name": "tim-diels",
  6200. "homepage": "https://www.drupal.org/user/2915097"
  6201. },
  6202. {
  6203. "name": "vaish",
  6204. "homepage": "https://www.drupal.org/user/92189"
  6205. }
  6206. ],
  6207. "description": "A validated phone number field.",
  6208. "homepage": "http://drupal.org/project/phone_number",
  6209. "support": {
  6210. "source": "https://git.drupalcode.org/project/phone_number"
  6211. }
  6212. },
  6213. {
  6214. "name": "drupal/profile",
  6215. "version": "1.7.0",
  6216. "source": {
  6217. "type": "git",
  6218. "url": "https://git.drupalcode.org/project/profile.git",
  6219. "reference": "8.x-1.7"
  6220. },
  6221. "dist": {
  6222. "type": "zip",
  6223. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.7.zip",
  6224. "reference": "8.x-1.7",
  6225. "shasum": "f0236acff507aff2a1e2e11cb9c873a0b608ec1c"
  6226. },
  6227. "require": {
  6228. "drupal/core": "^9 || ^10",
  6229. "drupal/entity": "^1.0"
  6230. },
  6231. "require-dev": {
  6232. "drupal/token": "^1.7"
  6233. },
  6234. "type": "drupal-module",
  6235. "extra": {
  6236. "drupal": {
  6237. "version": "8.x-1.7",
  6238. "datestamp": "1665131792",
  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": "bojanz",
  6252. "homepage": "https://www.drupal.org/user/86106"
  6253. },
  6254. {
  6255. "name": "daggerhart",
  6256. "homepage": "https://www.drupal.org/user/167806"
  6257. },
  6258. {
  6259. "name": "fago",
  6260. "homepage": "https://www.drupal.org/user/16747"
  6261. },
  6262. {
  6263. "name": "jsacksick",
  6264. "homepage": "https://www.drupal.org/user/972218"
  6265. },
  6266. {
  6267. "name": "mglaman",
  6268. "homepage": "https://www.drupal.org/user/2416470"
  6269. },
  6270. {
  6271. "name": "pcambra",
  6272. "homepage": "https://www.drupal.org/user/122101"
  6273. }
  6274. ],
  6275. "description": "Provides configurable user profiles.",
  6276. "homepage": "https://drupal.org/project/profile",
  6277. "support": {
  6278. "source": "https://git.drupalcode.org/project/profile"
  6279. }
  6280. },
  6281. {
  6282. "name": "drupal/redirect",
  6283. "version": "1.9.0",
  6284. "source": {
  6285. "type": "git",
  6286. "url": "https://git.drupalcode.org/project/redirect.git",
  6287. "reference": "8.x-1.9"
  6288. },
  6289. "dist": {
  6290. "type": "zip",
  6291. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.9.zip",
  6292. "reference": "8.x-1.9",
  6293. "shasum": "2987de20f509e9f7cec8a0f81d3a6774f9b0ba3e"
  6294. },
  6295. "require": {
  6296. "drupal/core": "^9.2 || ^10"
  6297. },
  6298. "type": "drupal-module",
  6299. "extra": {
  6300. "drupal": {
  6301. "version": "8.x-1.9",
  6302. "datestamp": "1693393506",
  6303. "security-coverage": {
  6304. "status": "covered",
  6305. "message": "Covered by Drupal's security advisory policy"
  6306. }
  6307. }
  6308. },
  6309. "notification-url": "https://packages.drupal.org/8/downloads",
  6310. "license": [
  6311. "GPL-2.0-or-later"
  6312. ],
  6313. "authors": [
  6314. {
  6315. "name": "Berdir",
  6316. "homepage": "https://www.drupal.org/user/214652"
  6317. },
  6318. {
  6319. "name": "Dave Reid",
  6320. "homepage": "https://www.drupal.org/user/53892"
  6321. },
  6322. {
  6323. "name": "Kristen Pol",
  6324. "homepage": "https://www.drupal.org/user/8389"
  6325. },
  6326. {
  6327. "name": "pifagor",
  6328. "homepage": "https://www.drupal.org/user/2375692"
  6329. }
  6330. ],
  6331. "description": "Allows users to redirect from old URLs to new URLs.",
  6332. "homepage": "https://www.drupal.org/project/redirect",
  6333. "support": {
  6334. "source": "https://git.drupalcode.org/project/redirect"
  6335. }
  6336. },
  6337. {
  6338. "name": "drupal/redis",
  6339. "version": "1.7.0",
  6340. "source": {
  6341. "type": "git",
  6342. "url": "https://git.drupalcode.org/project/redis.git",
  6343. "reference": "8.x-1.7"
  6344. },
  6345. "dist": {
  6346. "type": "zip",
  6347. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.7.zip",
  6348. "reference": "8.x-1.7",
  6349. "shasum": "602043bdad62ff047321121edcfde8abf3638c7c"
  6350. },
  6351. "require": {
  6352. "drupal/core": "^9.3 || ^10"
  6353. },
  6354. "suggest": {
  6355. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  6356. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  6357. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  6358. },
  6359. "type": "drupal-module",
  6360. "extra": {
  6361. "drupal": {
  6362. "version": "8.x-1.7",
  6363. "datestamp": "1686175620",
  6364. "security-coverage": {
  6365. "status": "covered",
  6366. "message": "Covered by Drupal's security advisory policy"
  6367. }
  6368. }
  6369. },
  6370. "autoload": {
  6371. "psr-4": {
  6372. "Drupal\\redis\\": "src"
  6373. }
  6374. },
  6375. "notification-url": "https://packages.drupal.org/8/downloads",
  6376. "license": [
  6377. "GPL-2.0-or-later"
  6378. ],
  6379. "authors": [
  6380. {
  6381. "name": "Berdir",
  6382. "homepage": "https://www.drupal.org/user/214652"
  6383. },
  6384. {
  6385. "name": "greg.1.anderson",
  6386. "homepage": "https://www.drupal.org/user/438598"
  6387. },
  6388. {
  6389. "name": "kporras07",
  6390. "homepage": "https://www.drupal.org/user/1349780"
  6391. },
  6392. {
  6393. "name": "pounard",
  6394. "homepage": "https://www.drupal.org/user/240164"
  6395. }
  6396. ],
  6397. "description": "Integration of Drupal with the Redis key-value store.",
  6398. "homepage": "https://www.drupal.org/project/redis",
  6399. "support": {
  6400. "source": "https://git.drupalcode.org/project/redis"
  6401. }
  6402. },
  6403. {
  6404. "name": "drupal/rules",
  6405. "version": "3.0.0-alpha8",
  6406. "source": {
  6407. "type": "git",
  6408. "url": "https://git.drupalcode.org/project/rules.git",
  6409. "reference": "8.x-3.0-alpha8"
  6410. },
  6411. "dist": {
  6412. "type": "zip",
  6413. "url": "https://ftp.drupal.org/files/projects/rules-8.x-3.0-alpha8.zip",
  6414. "reference": "8.x-3.0-alpha8",
  6415. "shasum": "22a44298b98000697efd86a29a8df1c0ce0bf44f"
  6416. },
  6417. "require": {
  6418. "drupal/core": "^9.1 || ^10",
  6419. "drupal/typed_data": "^1.0"
  6420. },
  6421. "type": "drupal-module",
  6422. "extra": {
  6423. "drupal": {
  6424. "version": "8.x-3.0-alpha8",
  6425. "datestamp": "1696376270",
  6426. "security-coverage": {
  6427. "status": "not-covered",
  6428. "message": "Alpha releases are not covered by Drupal security advisories."
  6429. }
  6430. },
  6431. "drush": {
  6432. "services": {
  6433. "drush.services.yml": "^9 || ^10"
  6434. }
  6435. }
  6436. },
  6437. "notification-url": "https://packages.drupal.org/8/downloads",
  6438. "license": [
  6439. "GPL-2.0-or-later"
  6440. ],
  6441. "authors": [
  6442. {
  6443. "name": "fago",
  6444. "homepage": "https://www.drupal.org/user/16747"
  6445. },
  6446. {
  6447. "name": "klausi",
  6448. "homepage": "https://www.drupal.org/user/262198"
  6449. },
  6450. {
  6451. "name": "TR",
  6452. "homepage": "https://www.drupal.org/user/202830"
  6453. }
  6454. ],
  6455. "description": "React on events and conditionally evaluate actions.",
  6456. "homepage": "https://www.drupal.org/project/rules",
  6457. "support": {
  6458. "source": "https://git.drupalcode.org/project/rules",
  6459. "issues": "https://www.drupal.org/project/issues/rules"
  6460. }
  6461. },
  6462. {
  6463. "name": "drupal/search_api",
  6464. "version": "1.30.0",
  6465. "source": {
  6466. "type": "git",
  6467. "url": "https://git.drupalcode.org/project/search_api.git",
  6468. "reference": "8.x-1.30"
  6469. },
  6470. "dist": {
  6471. "type": "zip",
  6472. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.30.zip",
  6473. "reference": "8.x-1.30",
  6474. "shasum": "25bd2cfab6a6332c595fbc8be1c4cfff33a85ce8"
  6475. },
  6476. "require": {
  6477. "drupal/core": "^9.3 || ^10.0"
  6478. },
  6479. "conflict": {
  6480. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  6481. },
  6482. "require-dev": {
  6483. "drupal/language_fallback_fix": "@dev",
  6484. "drupal/search_api_autocomplete": "@dev",
  6485. "drupal/search_api_db": "*"
  6486. },
  6487. "suggest": {
  6488. "drupal/facets": "Adds the ability to create faceted searches.",
  6489. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  6490. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  6491. },
  6492. "type": "drupal-module",
  6493. "extra": {
  6494. "drupal": {
  6495. "version": "8.x-1.30",
  6496. "datestamp": "1697366291",
  6497. "security-coverage": {
  6498. "status": "covered",
  6499. "message": "Covered by Drupal's security advisory policy"
  6500. }
  6501. },
  6502. "drush": {
  6503. "services": {
  6504. "drush.services.yml": "^9 || ^10 || ^11"
  6505. }
  6506. }
  6507. },
  6508. "notification-url": "https://packages.drupal.org/8/downloads",
  6509. "license": [
  6510. "GPL-2.0-or-later"
  6511. ],
  6512. "authors": [
  6513. {
  6514. "name": "Thomas Seidl",
  6515. "homepage": "https://www.drupal.org/u/drunken-monkey"
  6516. },
  6517. {
  6518. "name": "Nick Veenhof",
  6519. "homepage": "https://www.drupal.org/u/nick_vh"
  6520. },
  6521. {
  6522. "name": "See other contributors",
  6523. "homepage": "https://www.drupal.org/node/790418/committers"
  6524. }
  6525. ],
  6526. "description": "Provides a generic framework for modules offering search capabilities.",
  6527. "homepage": "https://www.drupal.org/project/search_api",
  6528. "support": {
  6529. "source": "https://git.drupalcode.org/project/search_api",
  6530. "issues": "https://www.drupal.org/project/issues/search_api",
  6531. "irc": "irc://irc.freenode.org/drupal-search-api"
  6532. }
  6533. },
  6534. {
  6535. "name": "drupal/search_api_db",
  6536. "version": "1.30.0",
  6537. "require": {
  6538. "drupal/core": "^9.2 || ^10.0",
  6539. "drupal/search_api": "*"
  6540. },
  6541. "type": "metapackage",
  6542. "extra": {
  6543. "drupal": {
  6544. "version": "8.x-1.30",
  6545. "datestamp": "1697366291",
  6546. "security-coverage": {
  6547. "status": "covered",
  6548. "message": "Covered by Drupal's security advisory policy"
  6549. }
  6550. }
  6551. },
  6552. "notification-url": "https://packages.drupal.org/8/downloads",
  6553. "license": [
  6554. "GPL-2.0-or-later"
  6555. ],
  6556. "authors": [
  6557. {
  6558. "name": "borisson_",
  6559. "homepage": "https://www.drupal.org/user/2393360"
  6560. },
  6561. {
  6562. "name": "drunken monkey",
  6563. "homepage": "https://www.drupal.org/user/205582"
  6564. },
  6565. {
  6566. "name": "Nick_vh",
  6567. "homepage": "https://www.drupal.org/user/122682"
  6568. }
  6569. ],
  6570. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  6571. "homepage": "https://www.drupal.org/project/search_api",
  6572. "support": {
  6573. "source": "https://git.drupalcode.org/project/search_api"
  6574. }
  6575. },
  6576. {
  6577. "name": "drupal/seven",
  6578. "version": "1.0.0",
  6579. "source": {
  6580. "type": "git",
  6581. "url": "https://git.drupalcode.org/project/seven.git",
  6582. "reference": "1.0.0"
  6583. },
  6584. "dist": {
  6585. "type": "zip",
  6586. "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip",
  6587. "reference": "1.0.0",
  6588. "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd"
  6589. },
  6590. "require": {
  6591. "drupal/core": "^9 || ^10"
  6592. },
  6593. "type": "drupal-theme",
  6594. "extra": {
  6595. "drupal": {
  6596. "version": "1.0.0",
  6597. "datestamp": "1683652106",
  6598. "security-coverage": {
  6599. "status": "covered",
  6600. "message": "Covered by Drupal's security advisory policy"
  6601. }
  6602. }
  6603. },
  6604. "notification-url": "https://packages.drupal.org/8/downloads",
  6605. "license": [
  6606. "GPL-2.0-or-later"
  6607. ],
  6608. "authors": [
  6609. {
  6610. "name": "bnjmnm",
  6611. "homepage": "https://www.drupal.org/user/2369194"
  6612. },
  6613. {
  6614. "name": "lauriii",
  6615. "homepage": "https://www.drupal.org/user/1078742"
  6616. },
  6617. {
  6618. "name": "mcrittenden",
  6619. "homepage": "https://www.drupal.org/user/420631"
  6620. },
  6621. {
  6622. "name": "mrfelton",
  6623. "homepage": "https://www.drupal.org/user/305669"
  6624. },
  6625. {
  6626. "name": "TravisCarden",
  6627. "homepage": "https://www.drupal.org/user/236758"
  6628. }
  6629. ],
  6630. "description": "The Seven theme from Drupal 8/9 moved to contrib",
  6631. "homepage": "https://www.drupal.org/project/seven",
  6632. "support": {
  6633. "source": "https://git.drupalcode.org/project/seven"
  6634. }
  6635. },
  6636. {
  6637. "name": "drupal/smart_trim",
  6638. "version": "2.1.0",
  6639. "source": {
  6640. "type": "git",
  6641. "url": "https://git.drupalcode.org/project/smart_trim.git",
  6642. "reference": "2.1.0"
  6643. },
  6644. "dist": {
  6645. "type": "zip",
  6646. "url": "https://ftp.drupal.org/files/projects/smart_trim-2.1.0.zip",
  6647. "reference": "2.1.0",
  6648. "shasum": "874b4cbddc4833f1b9adc76a8398377903fd73ee"
  6649. },
  6650. "require": {
  6651. "drupal/core": "^8 || ^9 || ^10",
  6652. "drupal/token": "^1.0",
  6653. "php": ">=7.4.0"
  6654. },
  6655. "require-dev": {
  6656. "drupal/token_filter": "^2.0"
  6657. },
  6658. "type": "drupal-module",
  6659. "extra": {
  6660. "drupal": {
  6661. "version": "2.1.0",
  6662. "datestamp": "1686152417",
  6663. "security-coverage": {
  6664. "status": "covered",
  6665. "message": "Covered by Drupal's security advisory policy"
  6666. }
  6667. }
  6668. },
  6669. "notification-url": "https://packages.drupal.org/8/downloads",
  6670. "license": [
  6671. "GPL-2.0-or-later"
  6672. ],
  6673. "authors": [
  6674. {
  6675. "name": "Mark Casias (markie)",
  6676. "homepage": "https://www.drupal.org/u/markie",
  6677. "role": "Maintainer"
  6678. },
  6679. {
  6680. "name": "AmyJune Hineline (volkswagenchick)",
  6681. "homepage": "https://www.drupal.org/u/volkswagenchick",
  6682. "role": "Maintainer"
  6683. },
  6684. {
  6685. "name": "Michael Anello (ultimike)",
  6686. "homepage": "https://www.drupal.org/u/ultimike",
  6687. "role": "Maintainer"
  6688. }
  6689. ],
  6690. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  6691. "homepage": "https://drupal.org/project/smart_trim",
  6692. "support": {
  6693. "source": "https://git.drupalcode.org/project/smart_trim",
  6694. "issues": "https://drupal.org/project/issues/smart_trim"
  6695. }
  6696. },
  6697. {
  6698. "name": "drupal/smtp",
  6699. "version": "1.2.0",
  6700. "source": {
  6701. "type": "git",
  6702. "url": "https://git.drupalcode.org/project/smtp.git",
  6703. "reference": "8.x-1.2"
  6704. },
  6705. "dist": {
  6706. "type": "zip",
  6707. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.2.zip",
  6708. "reference": "8.x-1.2",
  6709. "shasum": "10d302d4a90521d674bdd078da8aed886fa5ec41"
  6710. },
  6711. "require": {
  6712. "drupal/core": ">=8.9 <11",
  6713. "phpmailer/phpmailer": "^6.1.7"
  6714. },
  6715. "suggest": {
  6716. "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
  6717. },
  6718. "type": "drupal-module",
  6719. "extra": {
  6720. "drupal": {
  6721. "version": "8.x-1.2",
  6722. "datestamp": "1667416337",
  6723. "security-coverage": {
  6724. "status": "covered",
  6725. "message": "Covered by Drupal's security advisory policy"
  6726. }
  6727. },
  6728. "branch-alias": {
  6729. "dev-8.x-1.x": "1.x-dev"
  6730. }
  6731. },
  6732. "notification-url": "https://packages.drupal.org/8/downloads",
  6733. "license": [
  6734. "GPL-2.0-or-later"
  6735. ],
  6736. "authors": [
  6737. {
  6738. "name": "japerry",
  6739. "homepage": "https://www.drupal.org/user/45640"
  6740. },
  6741. {
  6742. "name": "joseph.olstad",
  6743. "homepage": "https://www.drupal.org/user/1321830"
  6744. },
  6745. {
  6746. "name": "josesanmartin",
  6747. "homepage": "https://www.drupal.org/user/72012"
  6748. },
  6749. {
  6750. "name": "LukeLast",
  6751. "homepage": "https://www.drupal.org/user/30151"
  6752. },
  6753. {
  6754. "name": "oadaeh",
  6755. "homepage": "https://www.drupal.org/user/4649"
  6756. },
  6757. {
  6758. "name": "sadashiv",
  6759. "homepage": "https://www.drupal.org/user/1773304"
  6760. },
  6761. {
  6762. "name": "wundo",
  6763. "homepage": "https://www.drupal.org/user/25523"
  6764. },
  6765. {
  6766. "name": "yettyn",
  6767. "homepage": "https://www.drupal.org/user/93281"
  6768. }
  6769. ],
  6770. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  6771. "homepage": "https://www.drupal.org/project/smtp",
  6772. "support": {
  6773. "source": "https://git.drupalcode.org/project/smtp",
  6774. "issues": "https://www.drupal.org/project/issues/smtp"
  6775. }
  6776. },
  6777. {
  6778. "name": "drupal/social_media_links",
  6779. "version": "2.9.0",
  6780. "source": {
  6781. "type": "git",
  6782. "url": "https://git.drupalcode.org/project/social_media_links.git",
  6783. "reference": "8.x-2.9"
  6784. },
  6785. "dist": {
  6786. "type": "zip",
  6787. "url": "https://ftp.drupal.org/files/projects/social_media_links-8.x-2.9.zip",
  6788. "reference": "8.x-2.9",
  6789. "shasum": "d73ea6199b48e11e57fe8a2aeb2afbf3c295704a"
  6790. },
  6791. "require": {
  6792. "drupal/core": "^8 || ^9 || ^10"
  6793. },
  6794. "type": "drupal-module",
  6795. "extra": {
  6796. "drupal": {
  6797. "version": "8.x-2.9",
  6798. "datestamp": "1665768361",
  6799. "security-coverage": {
  6800. "status": "covered",
  6801. "message": "Covered by Drupal's security advisory policy"
  6802. }
  6803. }
  6804. },
  6805. "notification-url": "https://packages.drupal.org/8/downloads",
  6806. "license": [
  6807. "GPL-2.0-or-later"
  6808. ],
  6809. "authors": [
  6810. {
  6811. "name": "Neslee Canil Pinto",
  6812. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  6813. "role": "Maintainer"
  6814. },
  6815. {
  6816. "name": "Christian Beier",
  6817. "homepage": "https://www.drupal.org/u/cbeier",
  6818. "role": "Maintainer"
  6819. }
  6820. ],
  6821. "description": "The module provides a block that display links (icons) to your profiles on various social networking sites.",
  6822. "homepage": "https://www.drupal.org/project/social_media_links",
  6823. "support": {
  6824. "source": "https://git.drupalcode.org/project/social_media_links",
  6825. "issues": "https://www.drupal.org/project/issues/social_media_links"
  6826. }
  6827. },
  6828. {
  6829. "name": "drupal/sophron",
  6830. "version": "2.0.1",
  6831. "source": {
  6832. "type": "git",
  6833. "url": "https://git.drupalcode.org/project/sophron.git",
  6834. "reference": "2.0.1"
  6835. },
  6836. "dist": {
  6837. "type": "zip",
  6838. "url": "https://ftp.drupal.org/files/projects/sophron-2.0.1.zip",
  6839. "reference": "2.0.1",
  6840. "shasum": "eb9b22e843400392ba7fa35dc99c644d2cf08982"
  6841. },
  6842. "require": {
  6843. "drupal/core": "^10",
  6844. "fileeye/mimemap": "^2.0.1"
  6845. },
  6846. "type": "drupal-module",
  6847. "extra": {
  6848. "drupal": {
  6849. "version": "2.0.1",
  6850. "datestamp": "1676319965",
  6851. "security-coverage": {
  6852. "status": "covered",
  6853. "message": "Covered by Drupal's security advisory policy"
  6854. }
  6855. }
  6856. },
  6857. "autoload": {
  6858. "psr-4": {
  6859. "Drupal\\sophron\\": "src/"
  6860. }
  6861. },
  6862. "notification-url": "https://packages.drupal.org/8/downloads",
  6863. "license": [
  6864. "GPL-2.0-or-later"
  6865. ],
  6866. "authors": [
  6867. {
  6868. "name": "mondrake",
  6869. "homepage": "https://www.drupal.org/user/1307444"
  6870. }
  6871. ],
  6872. "description": "Provides an extensive MIME types management API",
  6873. "homepage": "https://www.drupal.org/project/sophron",
  6874. "support": {
  6875. "source": "https://git.drupalcode.org/project/sophron"
  6876. }
  6877. },
  6878. {
  6879. "name": "drupal/synonyms",
  6880. "version": "2.1.2",
  6881. "source": {
  6882. "type": "git",
  6883. "url": "https://git.drupalcode.org/project/synonyms.git",
  6884. "reference": "2.1.2"
  6885. },
  6886. "dist": {
  6887. "type": "zip",
  6888. "url": "https://ftp.drupal.org/files/projects/synonyms-2.1.2.zip",
  6889. "reference": "2.1.2",
  6890. "shasum": "b6b88dc80ecb88b67bf4cbf220ea5e712137ca4d"
  6891. },
  6892. "require": {
  6893. "drupal/core": "^9 || ^10"
  6894. },
  6895. "require-dev": {
  6896. "drupal/synonyms_list_field": "*"
  6897. },
  6898. "type": "drupal-module",
  6899. "extra": {
  6900. "drupal": {
  6901. "version": "2.1.2",
  6902. "datestamp": "1665785027",
  6903. "security-coverage": {
  6904. "status": "covered",
  6905. "message": "Covered by Drupal's security advisory policy"
  6906. }
  6907. }
  6908. },
  6909. "notification-url": "https://packages.drupal.org/8/downloads",
  6910. "license": [
  6911. "GPL-2.0-or-later"
  6912. ],
  6913. "authors": [
  6914. {
  6915. "name": "Bojan Zivanovic",
  6916. "homepage": "https://www.drupal.org/u/bojanz",
  6917. "role": "Author and D5, D6 and D7 versions developer."
  6918. },
  6919. {
  6920. "name": "Alex Trosenko",
  6921. "homepage": "https://www.drupal.org/u/bucefal91",
  6922. "role": "D7 and D8 versions developer."
  6923. },
  6924. {
  6925. "name": "Duro Arezina",
  6926. "homepage": "https://www.drupal.org/u/devad",
  6927. "role": "D8, D9 and D10 versions maintenance"
  6928. },
  6929. {
  6930. "name": "See other contributors",
  6931. "homepage": "https://www.drupal.org/node/148775/committers"
  6932. }
  6933. ],
  6934. "description": "Provides synonyms feature for all entities.",
  6935. "homepage": "https://www.drupal.org/project/synonyms",
  6936. "support": {
  6937. "source": "https://git.drupalcode.org/project/synonyms",
  6938. "issues": "https://www.drupal.org/project/issues/synonyms"
  6939. }
  6940. },
  6941. {
  6942. "name": "drupal/token",
  6943. "version": "1.13.0",
  6944. "source": {
  6945. "type": "git",
  6946. "url": "https://git.drupalcode.org/project/token.git",
  6947. "reference": "8.x-1.13"
  6948. },
  6949. "dist": {
  6950. "type": "zip",
  6951. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.13.zip",
  6952. "reference": "8.x-1.13",
  6953. "shasum": "f2a074b51726de3727c1d900237d6d471806a4d2"
  6954. },
  6955. "require": {
  6956. "drupal/core": "^9.2 || ^10"
  6957. },
  6958. "type": "drupal-module",
  6959. "extra": {
  6960. "drupal": {
  6961. "version": "8.x-1.13",
  6962. "datestamp": "1697885927",
  6963. "security-coverage": {
  6964. "status": "covered",
  6965. "message": "Covered by Drupal's security advisory policy"
  6966. }
  6967. },
  6968. "drush": {
  6969. "services": {
  6970. "drush.services.yml": ">=9"
  6971. }
  6972. }
  6973. },
  6974. "notification-url": "https://packages.drupal.org/8/downloads",
  6975. "license": [
  6976. "GPL-2.0-or-later"
  6977. ],
  6978. "authors": [
  6979. {
  6980. "name": "Berdir",
  6981. "homepage": "https://www.drupal.org/user/214652"
  6982. },
  6983. {
  6984. "name": "Dave Reid",
  6985. "homepage": "https://www.drupal.org/user/53892"
  6986. },
  6987. {
  6988. "name": "eaton",
  6989. "homepage": "https://www.drupal.org/user/16496"
  6990. },
  6991. {
  6992. "name": "fago",
  6993. "homepage": "https://www.drupal.org/user/16747"
  6994. },
  6995. {
  6996. "name": "greggles",
  6997. "homepage": "https://www.drupal.org/user/36762"
  6998. },
  6999. {
  7000. "name": "mikeryan",
  7001. "homepage": "https://www.drupal.org/user/4420"
  7002. }
  7003. ],
  7004. "description": "Provides a user interface for the Token API, some missing core tokens.",
  7005. "homepage": "https://www.drupal.org/project/token",
  7006. "support": {
  7007. "source": "https://git.drupalcode.org/project/token"
  7008. }
  7009. },
  7010. {
  7011. "name": "drupal/translation_views",
  7012. "version": "1.0.0-alpha11",
  7013. "source": {
  7014. "type": "git",
  7015. "url": "https://git.drupalcode.org/project/translation_views.git",
  7016. "reference": "8.x-1.0-alpha11"
  7017. },
  7018. "dist": {
  7019. "type": "zip",
  7020. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  7021. "reference": "8.x-1.0-alpha11",
  7022. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  7023. },
  7024. "require": {
  7025. "drupal/core": "^8.8 || ^9 || ^10"
  7026. },
  7027. "require-dev": {
  7028. "drupal/translators_content": "^1.0@alpha"
  7029. },
  7030. "type": "drupal-module",
  7031. "extra": {
  7032. "drupal": {
  7033. "version": "8.x-1.0-alpha11",
  7034. "datestamp": "1679660668",
  7035. "security-coverage": {
  7036. "status": "not-covered",
  7037. "message": "Project has not opted into security advisory coverage!"
  7038. }
  7039. }
  7040. },
  7041. "notification-url": "https://packages.drupal.org/8/downloads",
  7042. "license": [
  7043. "GPL-2.0-or-later"
  7044. ],
  7045. "authors": [
  7046. {
  7047. "name": "matsbla",
  7048. "homepage": "https://www.drupal.org/user/2325394"
  7049. },
  7050. {
  7051. "name": "vlad.dancer",
  7052. "homepage": "https://www.drupal.org/user/903844"
  7053. }
  7054. ],
  7055. "description": "Create customized lists and queries of translations from your database.",
  7056. "homepage": "https://www.drupal.org/project/translation_views",
  7057. "support": {
  7058. "source": "https://git.drupalcode.org/project/translation_views"
  7059. }
  7060. },
  7061. {
  7062. "name": "drupal/typed_data",
  7063. "version": "1.0.0-beta2",
  7064. "source": {
  7065. "type": "git",
  7066. "url": "https://git.drupalcode.org/project/typed_data.git",
  7067. "reference": "8.x-1.0-beta2"
  7068. },
  7069. "dist": {
  7070. "type": "zip",
  7071. "url": "https://ftp.drupal.org/files/projects/typed_data-8.x-1.0-beta2.zip",
  7072. "reference": "8.x-1.0-beta2",
  7073. "shasum": "e0aa651b129d8dcd765ca49cba8682ebe09e6e73"
  7074. },
  7075. "require": {
  7076. "drupal/core": "^9.1 || ^10"
  7077. },
  7078. "type": "drupal-module",
  7079. "extra": {
  7080. "drupal": {
  7081. "version": "8.x-1.0-beta2",
  7082. "datestamp": "1679429196",
  7083. "security-coverage": {
  7084. "status": "not-covered",
  7085. "message": "Beta releases are not covered by Drupal security advisories."
  7086. }
  7087. },
  7088. "drush": {
  7089. "services": {
  7090. "drush.services.yml": ">=9"
  7091. }
  7092. }
  7093. },
  7094. "notification-url": "https://packages.drupal.org/8/downloads",
  7095. "license": [
  7096. "GPL-2.0-or-later"
  7097. ],
  7098. "authors": [
  7099. {
  7100. "name": "fago",
  7101. "homepage": "https://www.drupal.org/user/16747"
  7102. },
  7103. {
  7104. "name": "TR",
  7105. "homepage": "https://www.drupal.org/user/202830"
  7106. }
  7107. ],
  7108. "description": "Extends the core Typed Data API with new APIs and features.",
  7109. "homepage": "https://www.drupal.org/project/typed_data",
  7110. "support": {
  7111. "source": "https://git.drupalcode.org/project/typed_data",
  7112. "issues": "https://www.drupal.org/project/issues/typed_data"
  7113. }
  7114. },
  7115. {
  7116. "name": "drupal/ultimate_cron",
  7117. "version": "2.0.0-alpha6",
  7118. "source": {
  7119. "type": "git",
  7120. "url": "https://git.drupalcode.org/project/ultimate_cron.git",
  7121. "reference": "8.x-2.0-alpha6"
  7122. },
  7123. "dist": {
  7124. "type": "zip",
  7125. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha6.zip",
  7126. "reference": "8.x-2.0-alpha6",
  7127. "shasum": "42ab6df8e94a9b3772876a378062534552a32826"
  7128. },
  7129. "require": {
  7130. "drupal/core": "^9 || ^10"
  7131. },
  7132. "type": "drupal-module",
  7133. "extra": {
  7134. "drupal": {
  7135. "version": "8.x-2.0-alpha6",
  7136. "datestamp": "1666471448",
  7137. "security-coverage": {
  7138. "status": "not-covered",
  7139. "message": "Alpha releases are not covered by Drupal security advisories."
  7140. }
  7141. },
  7142. "drush": {
  7143. "services": {
  7144. "drush.services.yml": "^9 || ^10 || ^11"
  7145. }
  7146. }
  7147. },
  7148. "notification-url": "https://packages.drupal.org/8/downloads",
  7149. "license": [
  7150. "GPL-2.0+"
  7151. ],
  7152. "authors": [
  7153. {
  7154. "name": "arnested",
  7155. "homepage": "https://www.drupal.org/user/245635"
  7156. },
  7157. {
  7158. "name": "Berdir",
  7159. "homepage": "https://www.drupal.org/user/214652"
  7160. },
  7161. {
  7162. "name": "Dane Powell",
  7163. "homepage": "https://www.drupal.org/user/339326"
  7164. },
  7165. {
  7166. "name": "gielfeldt",
  7167. "homepage": "https://www.drupal.org/user/366993"
  7168. },
  7169. {
  7170. "name": "miro_dietiker",
  7171. "homepage": "https://www.drupal.org/user/227761"
  7172. },
  7173. {
  7174. "name": "Primsi",
  7175. "homepage": "https://www.drupal.org/user/282629"
  7176. }
  7177. ],
  7178. "description": "Ultimate cron",
  7179. "homepage": "https://www.drupal.org/project/ultimate_cron",
  7180. "support": {
  7181. "source": "https://git.drupalcode.org/project/ultimate_cron"
  7182. }
  7183. },
  7184. {
  7185. "name": "drupal/video_embed_field",
  7186. "version": "2.5.0",
  7187. "source": {
  7188. "type": "git",
  7189. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  7190. "reference": "8.x-2.5"
  7191. },
  7192. "dist": {
  7193. "type": "zip",
  7194. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.5.zip",
  7195. "reference": "8.x-2.5",
  7196. "shasum": "997ed67b6873e822fe628f87f65bd6da67e7350c"
  7197. },
  7198. "require": {
  7199. "drupal/core": "^9.2 || ^10"
  7200. },
  7201. "require-dev": {
  7202. "drupal/ckeditor": "^1",
  7203. "drupal/colorbox": "^2",
  7204. "drupal/video_embed_media": "*"
  7205. },
  7206. "type": "drupal-module",
  7207. "extra": {
  7208. "drupal": {
  7209. "version": "8.x-2.5",
  7210. "datestamp": "1671413311",
  7211. "security-coverage": {
  7212. "status": "covered",
  7213. "message": "Covered by Drupal's security advisory policy"
  7214. }
  7215. }
  7216. },
  7217. "notification-url": "https://packages.drupal.org/8/downloads",
  7218. "license": [
  7219. "GPL-2.0-or-later"
  7220. ],
  7221. "authors": [
  7222. {
  7223. "name": "abhinesh",
  7224. "homepage": "https://www.drupal.org/user/3645979"
  7225. },
  7226. {
  7227. "name": "jec006",
  7228. "homepage": "https://www.drupal.org/user/855980"
  7229. },
  7230. {
  7231. "name": "plopesc",
  7232. "homepage": "https://www.drupal.org/user/282415"
  7233. },
  7234. {
  7235. "name": "Sam152",
  7236. "homepage": "https://www.drupal.org/user/1485048"
  7237. }
  7238. ],
  7239. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  7240. "homepage": "https://www.drupal.org/project/video_embed_field",
  7241. "support": {
  7242. "source": "https://git.drupalcode.org/project/video_embed_field"
  7243. }
  7244. },
  7245. {
  7246. "name": "drupal/views_bulk_edit",
  7247. "version": "2.9.0",
  7248. "source": {
  7249. "type": "git",
  7250. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  7251. "reference": "8.x-2.9"
  7252. },
  7253. "dist": {
  7254. "type": "zip",
  7255. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.9.zip",
  7256. "reference": "8.x-2.9",
  7257. "shasum": "db45a8cc9ac629859374b24974eafcef257e4387"
  7258. },
  7259. "require": {
  7260. "drupal/core": "^9.4 || ^10"
  7261. },
  7262. "require-dev": {
  7263. "drupal/views_bulk_operations": "~4.2.4"
  7264. },
  7265. "suggest": {
  7266. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  7267. },
  7268. "type": "drupal-module",
  7269. "extra": {
  7270. "drupal": {
  7271. "version": "8.x-2.9",
  7272. "datestamp": "1690222256",
  7273. "security-coverage": {
  7274. "status": "covered",
  7275. "message": "Covered by Drupal's security advisory policy"
  7276. }
  7277. }
  7278. },
  7279. "notification-url": "https://packages.drupal.org/8/downloads",
  7280. "license": [
  7281. "GPL-2.0+"
  7282. ],
  7283. "authors": [
  7284. {
  7285. "name": "Marcin Grabias",
  7286. "homepage": "https://www.drupal.org/u/graber"
  7287. },
  7288. {
  7289. "name": "Graber",
  7290. "homepage": "https://www.drupal.org/user/1599440"
  7291. },
  7292. {
  7293. "name": "joseph.olstad",
  7294. "homepage": "https://www.drupal.org/user/1321830"
  7295. }
  7296. ],
  7297. "description": "Allows bulk edition of entity field values.",
  7298. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  7299. "support": {
  7300. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  7301. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  7302. }
  7303. },
  7304. {
  7305. "name": "drupal/views_bulk_operations",
  7306. "version": "4.2.5",
  7307. "source": {
  7308. "type": "git",
  7309. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  7310. "reference": "4.2.5"
  7311. },
  7312. "dist": {
  7313. "type": "zip",
  7314. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.2.5.zip",
  7315. "reference": "4.2.5",
  7316. "shasum": "220479c5187b1619d5703f64c6f8c272afecf897"
  7317. },
  7318. "require": {
  7319. "drupal/core": "^9.4 || ^10",
  7320. "php": ">=7.4.0"
  7321. },
  7322. "require-dev": {
  7323. "drush/drush": "^11"
  7324. },
  7325. "suggest": {
  7326. "drush/drush": "^10 || ^11"
  7327. },
  7328. "type": "drupal-module",
  7329. "extra": {
  7330. "drupal": {
  7331. "version": "4.2.5",
  7332. "datestamp": "1691066184",
  7333. "security-coverage": {
  7334. "status": "covered",
  7335. "message": "Covered by Drupal's security advisory policy"
  7336. }
  7337. },
  7338. "drush": {
  7339. "services": {
  7340. "drush.services.yml": "^10 || ^11"
  7341. }
  7342. }
  7343. },
  7344. "notification-url": "https://packages.drupal.org/8/downloads",
  7345. "license": [
  7346. "GPL-2.0-or-later"
  7347. ],
  7348. "authors": [
  7349. {
  7350. "name": "Marcin Grabias",
  7351. "homepage": "https://www.drupal.org/u/graber"
  7352. },
  7353. {
  7354. "name": "Graber",
  7355. "homepage": "https://www.drupal.org/user/1599440"
  7356. },
  7357. {
  7358. "name": "joelpittet",
  7359. "homepage": "https://www.drupal.org/user/160302"
  7360. }
  7361. ],
  7362. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  7363. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  7364. "support": {
  7365. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  7366. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  7367. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  7368. }
  7369. },
  7370. {
  7371. "name": "drupal/webform",
  7372. "version": "6.2.0",
  7373. "source": {
  7374. "type": "git",
  7375. "url": "https://git.drupalcode.org/project/webform.git",
  7376. "reference": "6.2.0"
  7377. },
  7378. "dist": {
  7379. "type": "zip",
  7380. "url": "https://ftp.drupal.org/files/projects/webform-6.2.0.zip",
  7381. "reference": "6.2.0",
  7382. "shasum": "7a8292fb86fa60c88377279769fd6f1b1fad05c2"
  7383. },
  7384. "require": {
  7385. "drupal/core": "^9.4 || ^10",
  7386. "php": ">=8.1"
  7387. },
  7388. "require-dev": {
  7389. "drupal/address": "1.x-dev",
  7390. "drupal/bootstrap": "3.x-dev",
  7391. "drupal/captcha": "^1 || ^2",
  7392. "drupal/chosen": "3.0.x-dev",
  7393. "drupal/ckeditor": "1.0.x-dev",
  7394. "drupal/clientside_validation": "^3 || ^4",
  7395. "drupal/clientside_validation_jquery": "*",
  7396. "drupal/devel": "5.x-dev",
  7397. "drupal/entity": "1.x-dev",
  7398. "drupal/entity_print": "2.x-dev",
  7399. "drupal/group": "1.x-dev",
  7400. "drupal/hal": "1 - 2",
  7401. "drupal/jquery_ui": "1.x-dev",
  7402. "drupal/jquery_ui_checkboxradio": "2.x-dev",
  7403. "drupal/jquery_ui_datepicker": "2.x-dev",
  7404. "drupal/mailsystem": "4.x-dev",
  7405. "drupal/metatag": "1.x-dev",
  7406. "drupal/paragraphs": "1.x-dev",
  7407. "drupal/select2": "1.x-dev",
  7408. "drupal/smtp": "1.x-dev",
  7409. "drupal/styleguide": "^1 || ^2",
  7410. "drupal/telephone_validation": "2.x-dev",
  7411. "drupal/token": "1.x-dev",
  7412. "drupal/variationcache": "1.x-dev",
  7413. "drupal/webform_access": "*",
  7414. "drupal/webform_attachment": "*",
  7415. "drupal/webform_clientside_validation": "*",
  7416. "drupal/webform_devel": "*",
  7417. "drupal/webform_entity_print": "*",
  7418. "drupal/webform_node": "*",
  7419. "drupal/webform_options_limit": "*",
  7420. "drupal/webform_scheduled_email": "*",
  7421. "drupal/webform_share": "*",
  7422. "drupal/webform_ui": "*"
  7423. },
  7424. "suggest": {
  7425. "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.",
  7426. "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."
  7427. },
  7428. "type": "drupal-module",
  7429. "extra": {
  7430. "drupal": {
  7431. "version": "6.2.0",
  7432. "datestamp": "1698674300",
  7433. "security-coverage": {
  7434. "status": "covered",
  7435. "message": "Covered by Drupal's security advisory policy"
  7436. }
  7437. },
  7438. "drush": {
  7439. "services": {
  7440. "drush.services.yml": ">=9"
  7441. }
  7442. }
  7443. },
  7444. "notification-url": "https://packages.drupal.org/8/downloads",
  7445. "license": [
  7446. "GPL-2.0-or-later"
  7447. ],
  7448. "authors": [
  7449. {
  7450. "name": "Jacob Rockowitz (jrockowitz)",
  7451. "homepage": "https://www.drupal.org/u/jrockowitz",
  7452. "role": "Maintainer"
  7453. },
  7454. {
  7455. "name": "Contributors",
  7456. "homepage": "https://www.drupal.org/node/7404/committers",
  7457. "role": "Contributor"
  7458. },
  7459. {
  7460. "name": "Liam Morland",
  7461. "homepage": "https://www.drupal.org/user/493050"
  7462. },
  7463. {
  7464. "name": "quicksketch",
  7465. "homepage": "https://www.drupal.org/user/35821"
  7466. },
  7467. {
  7468. "name": "torotil",
  7469. "homepage": "https://www.drupal.org/user/865256"
  7470. }
  7471. ],
  7472. "description": "Enables the creation of webforms and questionnaires.",
  7473. "homepage": "https://drupal.org/project/webform",
  7474. "support": {
  7475. "source": "https://git.drupalcode.org/project/webform",
  7476. "issues": "https://www.drupal.org/project/issues/webform?version=8.x",
  7477. "docs": "https://www.drupal.org/docs/8/modules/webform",
  7478. "forum": "https://drupal.stackexchange.com/questions/tagged/webform"
  7479. }
  7480. },
  7481. {
  7482. "name": "drush/drush",
  7483. "version": "11.6.0",
  7484. "source": {
  7485. "type": "git",
  7486. "url": "https://github.com/drush-ops/drush.git",
  7487. "reference": "f301df5dec8d2aacb03d3e01e0ffc6d98e10ae78"
  7488. },
  7489. "dist": {
  7490. "type": "zip",
  7491. "url": "https://api.github.com/repos/drush-ops/drush/zipball/f301df5dec8d2aacb03d3e01e0ffc6d98e10ae78",
  7492. "reference": "f301df5dec8d2aacb03d3e01e0ffc6d98e10ae78",
  7493. "shasum": ""
  7494. },
  7495. "require": {
  7496. "chi-teck/drupal-code-generator": "^2.4",
  7497. "composer/semver": "^1.4 || ^3",
  7498. "consolidation/annotated-command": "^4.8.2",
  7499. "consolidation/config": "^2",
  7500. "consolidation/filter-via-dot-access-data": "^2",
  7501. "consolidation/robo": "^3.0.9 || ^4.0.1",
  7502. "consolidation/site-alias": "^3.1.6 || ^4",
  7503. "consolidation/site-process": "^4.1.3 || ^5",
  7504. "enlightn/security-checker": "^1",
  7505. "ext-dom": "*",
  7506. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  7507. "league/container": "^3.4 || ^4",
  7508. "php": ">=7.4",
  7509. "psy/psysh": "~0.11",
  7510. "symfony/event-dispatcher": "^4.0 || ^5.0 || ^6.0",
  7511. "symfony/filesystem": "^4.4 || ^5.4 || ^6.1",
  7512. "symfony/finder": "^4.0 || ^5 || ^6",
  7513. "symfony/polyfill-php80": "^1.23",
  7514. "symfony/var-dumper": "^4.0 || ^5.0 || ^6.0",
  7515. "symfony/yaml": "^4.0 || ^5.0 || ^6.0",
  7516. "webflo/drupal-finder": "^1.2"
  7517. },
  7518. "conflict": {
  7519. "drupal/core": "< 9.2",
  7520. "drupal/migrate_run": "*",
  7521. "drupal/migrate_tools": "<= 5"
  7522. },
  7523. "require-dev": {
  7524. "composer/installers": "^1.7",
  7525. "cweagans/composer-patches": "~1.0",
  7526. "david-garcia/phpwhois": "4.3.0",
  7527. "drupal/core-recommended": "^9 || ^10",
  7528. "drupal/semver_example": "2.3.0",
  7529. "phpunit/phpunit": ">=7.5.20",
  7530. "rector/rector": "^0.12",
  7531. "squizlabs/php_codesniffer": "^3.6",
  7532. "vlucas/phpdotenv": "^2.4",
  7533. "yoast/phpunit-polyfills": "^0.2.0"
  7534. },
  7535. "bin": [
  7536. "drush"
  7537. ],
  7538. "type": "library",
  7539. "extra": {
  7540. "installer-paths": {
  7541. "sut/core": [
  7542. "type:drupal-core"
  7543. ],
  7544. "sut/libraries/{$name}": [
  7545. "type:drupal-library"
  7546. ],
  7547. "sut/modules/unish/{$name}": [
  7548. "drupal/devel"
  7549. ],
  7550. "sut/themes/unish/{$name}": [
  7551. "drupal/empty_theme"
  7552. ],
  7553. "sut/modules/contrib/{$name}": [
  7554. "type:drupal-module"
  7555. ],
  7556. "sut/profiles/contrib/{$name}": [
  7557. "type:drupal-profile"
  7558. ],
  7559. "sut/themes/contrib/{$name}": [
  7560. "type:drupal-theme"
  7561. ],
  7562. "sut/drush/contrib/{$name}": [
  7563. "type:drupal-drush"
  7564. ]
  7565. }
  7566. },
  7567. "autoload": {
  7568. "psr-4": {
  7569. "Drush\\": "src/"
  7570. }
  7571. },
  7572. "notification-url": "https://packagist.org/downloads/",
  7573. "license": [
  7574. "GPL-2.0-or-later"
  7575. ],
  7576. "authors": [
  7577. {
  7578. "name": "Moshe Weitzman",
  7579. "email": "weitzman@tejasa.com"
  7580. },
  7581. {
  7582. "name": "Owen Barton",
  7583. "email": "drupal@owenbarton.com"
  7584. },
  7585. {
  7586. "name": "Greg Anderson",
  7587. "email": "greg.1.anderson@greenknowe.org"
  7588. },
  7589. {
  7590. "name": "Jonathan Araña Cruz",
  7591. "email": "jonhattan@faita.net"
  7592. },
  7593. {
  7594. "name": "Jonathan Hedstrom",
  7595. "email": "jhedstrom@gmail.com"
  7596. },
  7597. {
  7598. "name": "Christopher Gervais",
  7599. "email": "chris@ergonlogic.com"
  7600. },
  7601. {
  7602. "name": "Dave Reid",
  7603. "email": "dave@davereid.net"
  7604. },
  7605. {
  7606. "name": "Damian Lee",
  7607. "email": "damiankloip@googlemail.com"
  7608. }
  7609. ],
  7610. "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.",
  7611. "homepage": "http://www.drush.org",
  7612. "support": {
  7613. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  7614. "issues": "https://github.com/drush-ops/drush/issues",
  7615. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  7616. "source": "https://github.com/drush-ops/drush/tree/11.6.0"
  7617. },
  7618. "funding": [
  7619. {
  7620. "url": "https://github.com/weitzman",
  7621. "type": "github"
  7622. }
  7623. ],
  7624. "time": "2023-06-06T18:46:18+00:00"
  7625. },
  7626. {
  7627. "name": "egulias/email-validator",
  7628. "version": "4.0.2",
  7629. "source": {
  7630. "type": "git",
  7631. "url": "https://github.com/egulias/EmailValidator.git",
  7632. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  7633. },
  7634. "dist": {
  7635. "type": "zip",
  7636. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  7637. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  7638. "shasum": ""
  7639. },
  7640. "require": {
  7641. "doctrine/lexer": "^2.0 || ^3.0",
  7642. "php": ">=8.1",
  7643. "symfony/polyfill-intl-idn": "^1.26"
  7644. },
  7645. "require-dev": {
  7646. "phpunit/phpunit": "^10.2",
  7647. "vimeo/psalm": "^5.12"
  7648. },
  7649. "suggest": {
  7650. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  7651. },
  7652. "type": "library",
  7653. "extra": {
  7654. "branch-alias": {
  7655. "dev-master": "4.0.x-dev"
  7656. }
  7657. },
  7658. "autoload": {
  7659. "psr-4": {
  7660. "Egulias\\EmailValidator\\": "src"
  7661. }
  7662. },
  7663. "notification-url": "https://packagist.org/downloads/",
  7664. "license": [
  7665. "MIT"
  7666. ],
  7667. "authors": [
  7668. {
  7669. "name": "Eduardo Gulias Davis"
  7670. }
  7671. ],
  7672. "description": "A library for validating emails against several RFCs",
  7673. "homepage": "https://github.com/egulias/EmailValidator",
  7674. "keywords": [
  7675. "email",
  7676. "emailvalidation",
  7677. "emailvalidator",
  7678. "validation",
  7679. "validator"
  7680. ],
  7681. "support": {
  7682. "issues": "https://github.com/egulias/EmailValidator/issues",
  7683. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  7684. },
  7685. "funding": [
  7686. {
  7687. "url": "https://github.com/egulias",
  7688. "type": "github"
  7689. }
  7690. ],
  7691. "time": "2023-10-06T06:47:41+00:00"
  7692. },
  7693. {
  7694. "name": "enlightn/security-checker",
  7695. "version": "v1.10.0",
  7696. "source": {
  7697. "type": "git",
  7698. "url": "https://github.com/enlightn/security-checker.git",
  7699. "reference": "196bacc76e7a72a63d0e1220926dbb190272db97"
  7700. },
  7701. "dist": {
  7702. "type": "zip",
  7703. "url": "https://api.github.com/repos/enlightn/security-checker/zipball/196bacc76e7a72a63d0e1220926dbb190272db97",
  7704. "reference": "196bacc76e7a72a63d0e1220926dbb190272db97",
  7705. "shasum": ""
  7706. },
  7707. "require": {
  7708. "ext-json": "*",
  7709. "guzzlehttp/guzzle": "^6.3|^7.0",
  7710. "php": ">=5.6",
  7711. "symfony/console": "^3.4|^4|^5|^6",
  7712. "symfony/finder": "^3|^4|^5|^6",
  7713. "symfony/process": "^3.4|^4|^5|^6",
  7714. "symfony/yaml": "^3.4|^4|^5|^6"
  7715. },
  7716. "require-dev": {
  7717. "ext-zip": "*",
  7718. "friendsofphp/php-cs-fixer": "^2.18|^3.0",
  7719. "phpunit/phpunit": "^5.5|^6|^7|^8|^9"
  7720. },
  7721. "bin": [
  7722. "security-checker"
  7723. ],
  7724. "type": "library",
  7725. "autoload": {
  7726. "psr-4": {
  7727. "Enlightn\\SecurityChecker\\": "src"
  7728. }
  7729. },
  7730. "notification-url": "https://packagist.org/downloads/",
  7731. "license": [
  7732. "MIT"
  7733. ],
  7734. "authors": [
  7735. {
  7736. "name": "Paras Malhotra",
  7737. "email": "paras@laravel-enlightn.com"
  7738. },
  7739. {
  7740. "name": "Miguel Piedrafita",
  7741. "email": "soy@miguelpiedrafita.com"
  7742. }
  7743. ],
  7744. "description": "A PHP dependency vulnerabilities scanner based on the Security Advisories Database.",
  7745. "keywords": [
  7746. "package",
  7747. "php",
  7748. "scanner",
  7749. "security",
  7750. "security advisories",
  7751. "vulnerability scanner"
  7752. ],
  7753. "support": {
  7754. "issues": "https://github.com/enlightn/security-checker/issues",
  7755. "source": "https://github.com/enlightn/security-checker/tree/v1.10.0"
  7756. },
  7757. "time": "2022-02-21T22:40:16+00:00"
  7758. },
  7759. {
  7760. "name": "fileeye/mimemap",
  7761. "version": "2.0.2",
  7762. "source": {
  7763. "type": "git",
  7764. "url": "https://github.com/FileEye/MimeMap.git",
  7765. "reference": "befb9f1ee77dbf6b74a2c578874e128c9a5c1a2d"
  7766. },
  7767. "dist": {
  7768. "type": "zip",
  7769. "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/befb9f1ee77dbf6b74a2c578874e128c9a5c1a2d",
  7770. "reference": "befb9f1ee77dbf6b74a2c578874e128c9a5c1a2d",
  7771. "shasum": ""
  7772. },
  7773. "require": {
  7774. "php": ">=7.3"
  7775. },
  7776. "require-dev": {
  7777. "composer-runtime-api": "^2.0.0",
  7778. "phpstan/phpstan": "^1.2",
  7779. "phpunit/phpunit": "^9 | ^10",
  7780. "sebastian/comparator": ">=4",
  7781. "sebastian/diff": ">=4",
  7782. "squizlabs/php_codesniffer": ">=3.6",
  7783. "symfony/console": ">=5.4",
  7784. "symfony/filesystem": ">=5.4",
  7785. "symfony/var-dumper": ">=5.4",
  7786. "symfony/yaml": ">=5.4",
  7787. "vimeo/psalm": "^4.23 | ^5"
  7788. },
  7789. "bin": [
  7790. "bin/fileeye-mimemap"
  7791. ],
  7792. "type": "library",
  7793. "extra": {
  7794. "branch-alias": {
  7795. "dev-master": "2.x-dev"
  7796. }
  7797. },
  7798. "autoload": {
  7799. "psr-4": {
  7800. "FileEye\\MimeMap\\": "src/"
  7801. }
  7802. },
  7803. "notification-url": "https://packagist.org/downloads/",
  7804. "license": [
  7805. "LGPL-3.0-or-later"
  7806. ],
  7807. "description": "A PHP library to handle MIME Content-Type fields and their related file extensions.",
  7808. "homepage": "https://github.com/FileEye/MimeMap",
  7809. "keywords": [
  7810. "mime",
  7811. "mime-database",
  7812. "mime-parser",
  7813. "mime-type"
  7814. ],
  7815. "support": {
  7816. "issues": "https://github.com/FileEye/MimeMap/issues",
  7817. "source": "https://github.com/FileEye/MimeMap/tree/2.0.2"
  7818. },
  7819. "time": "2023-08-29T16:20:26+00:00"
  7820. },
  7821. {
  7822. "name": "fileeye/pel",
  7823. "version": "0.9.20",
  7824. "source": {
  7825. "type": "git",
  7826. "url": "https://github.com/FileEye/pel.git",
  7827. "reference": "1675cbd44e89ff8f01b9576cf32ec1b4a4a67ede"
  7828. },
  7829. "dist": {
  7830. "type": "zip",
  7831. "url": "https://api.github.com/repos/FileEye/pel/zipball/1675cbd44e89ff8f01b9576cf32ec1b4a4a67ede",
  7832. "reference": "1675cbd44e89ff8f01b9576cf32ec1b4a4a67ede",
  7833. "shasum": ""
  7834. },
  7835. "require": {
  7836. "php": ">=7.1.0"
  7837. },
  7838. "require-dev": {
  7839. "ext-exif": "*",
  7840. "ext-gd": "*",
  7841. "php-coveralls/php-coveralls": ">2.4",
  7842. "phpstan/phpstan": "^1.4",
  7843. "squizlabs/php_codesniffer": ">3.5",
  7844. "symfony/phpunit-bridge": "^4 || ^5 || ^6"
  7845. },
  7846. "type": "library",
  7847. "autoload": {
  7848. "psr-4": {
  7849. "lsolesen\\pel\\": "src/"
  7850. }
  7851. },
  7852. "notification-url": "https://packagist.org/downloads/",
  7853. "license": [
  7854. "GPL-2.0"
  7855. ],
  7856. "authors": [
  7857. {
  7858. "name": "Lars Olesen",
  7859. "email": "lars@intraface.dk",
  7860. "homepage": "http://intraface.dk",
  7861. "role": "Developer"
  7862. },
  7863. {
  7864. "name": "Martin Geisler",
  7865. "email": "martin@geisler.net",
  7866. "homepage": "http://geisler.net",
  7867. "role": "Developer"
  7868. }
  7869. ],
  7870. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  7871. "homepage": "https://github.com/FileEye/pel",
  7872. "keywords": [
  7873. "exif",
  7874. "image"
  7875. ],
  7876. "support": {
  7877. "issues": "https://github.com/FileEye/pel/issues",
  7878. "source": "https://github.com/FileEye/pel/tree/0.9.20"
  7879. },
  7880. "time": "2023-06-20T07:10:35+00:00"
  7881. },
  7882. {
  7883. "name": "giggsey/libphonenumber-for-php",
  7884. "version": "8.13.25",
  7885. "source": {
  7886. "type": "git",
  7887. "url": "https://github.com/giggsey/libphonenumber-for-php.git",
  7888. "reference": "fe9c0b201941977b91b6b086c9551aff07a733ae"
  7889. },
  7890. "dist": {
  7891. "type": "zip",
  7892. "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/fe9c0b201941977b91b6b086c9551aff07a733ae",
  7893. "reference": "fe9c0b201941977b91b6b086c9551aff07a733ae",
  7894. "shasum": ""
  7895. },
  7896. "require": {
  7897. "giggsey/locale": "^1.7|^2.0",
  7898. "php": ">=5.3.2",
  7899. "symfony/polyfill-mbstring": "^1.17"
  7900. },
  7901. "require-dev": {
  7902. "pear/pear-core-minimal": "^1.9",
  7903. "pear/pear_exception": "^1.0",
  7904. "pear/versioncontrol_git": "^0.5",
  7905. "phing/phing": "^2.7",
  7906. "php-coveralls/php-coveralls": "^1.0|^2.0",
  7907. "symfony/console": "^2.8|^3.0|^v4.4|^v5.2",
  7908. "symfony/phpunit-bridge": "^4.2 || ^5"
  7909. },
  7910. "type": "library",
  7911. "extra": {
  7912. "branch-alias": {
  7913. "dev-master": "8.x-dev"
  7914. }
  7915. },
  7916. "autoload": {
  7917. "psr-4": {
  7918. "libphonenumber\\": "src/"
  7919. },
  7920. "exclude-from-classmap": [
  7921. "/src/data/",
  7922. "/src/carrier/data/",
  7923. "/src/geocoding/data/",
  7924. "/src/timezone/data/"
  7925. ]
  7926. },
  7927. "notification-url": "https://packagist.org/downloads/",
  7928. "license": [
  7929. "Apache-2.0"
  7930. ],
  7931. "authors": [
  7932. {
  7933. "name": "Joshua Gigg",
  7934. "email": "giggsey@gmail.com",
  7935. "homepage": "https://giggsey.com/"
  7936. }
  7937. ],
  7938. "description": "PHP Port of Google's libphonenumber",
  7939. "homepage": "https://github.com/giggsey/libphonenumber-for-php",
  7940. "keywords": [
  7941. "geocoding",
  7942. "geolocation",
  7943. "libphonenumber",
  7944. "mobile",
  7945. "phonenumber",
  7946. "validation"
  7947. ],
  7948. "support": {
  7949. "issues": "https://github.com/giggsey/libphonenumber-for-php/issues",
  7950. "source": "https://github.com/giggsey/libphonenumber-for-php"
  7951. },
  7952. "time": "2023-11-13T09:34:15+00:00"
  7953. },
  7954. {
  7955. "name": "giggsey/locale",
  7956. "version": "2.5",
  7957. "source": {
  7958. "type": "git",
  7959. "url": "https://github.com/giggsey/Locale.git",
  7960. "reference": "e6d4540109a01dd2bc7334cdc842d6a6a67cf239"
  7961. },
  7962. "dist": {
  7963. "type": "zip",
  7964. "url": "https://api.github.com/repos/giggsey/Locale/zipball/e6d4540109a01dd2bc7334cdc842d6a6a67cf239",
  7965. "reference": "e6d4540109a01dd2bc7334cdc842d6a6a67cf239",
  7966. "shasum": ""
  7967. },
  7968. "require": {
  7969. "php": ">=7.2"
  7970. },
  7971. "require-dev": {
  7972. "ext-json": "*",
  7973. "pear/pear-core-minimal": "^1.9",
  7974. "pear/pear_exception": "^1.0",
  7975. "pear/versioncontrol_git": "^0.5",
  7976. "phing/phing": "^2.7",
  7977. "php-coveralls/php-coveralls": "^2.0",
  7978. "phpunit/phpunit": "^8.5|^9.5",
  7979. "symfony/console": "^5.0|^6.0",
  7980. "symfony/filesystem": "^5.0|^6.0",
  7981. "symfony/finder": "^5.0|^6.0",
  7982. "symfony/process": "^5.0|^6.0"
  7983. },
  7984. "type": "library",
  7985. "autoload": {
  7986. "psr-4": {
  7987. "Giggsey\\Locale\\": "src/"
  7988. }
  7989. },
  7990. "notification-url": "https://packagist.org/downloads/",
  7991. "license": [
  7992. "MIT"
  7993. ],
  7994. "authors": [
  7995. {
  7996. "name": "Joshua Gigg",
  7997. "email": "giggsey@gmail.com",
  7998. "homepage": "https://giggsey.com/"
  7999. }
  8000. ],
  8001. "description": "Locale functions required by libphonenumber-for-php",
  8002. "support": {
  8003. "issues": "https://github.com/giggsey/Locale/issues",
  8004. "source": "https://github.com/giggsey/Locale/tree/2.5"
  8005. },
  8006. "time": "2023-11-01T17:19:48+00:00"
  8007. },
  8008. {
  8009. "name": "grasmash/expander",
  8010. "version": "3.0.0",
  8011. "source": {
  8012. "type": "git",
  8013. "url": "https://github.com/grasmash/expander.git",
  8014. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82"
  8015. },
  8016. "dist": {
  8017. "type": "zip",
  8018. "url": "https://api.github.com/repos/grasmash/expander/zipball/bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  8019. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  8020. "shasum": ""
  8021. },
  8022. "require": {
  8023. "dflydev/dot-access-data": "^3.0.0",
  8024. "php": ">=8.0",
  8025. "psr/log": "^2 | ^3"
  8026. },
  8027. "require-dev": {
  8028. "greg-1-anderson/composer-test-scenarios": "^1",
  8029. "php-coveralls/php-coveralls": "^2.5",
  8030. "phpunit/phpunit": "^9",
  8031. "squizlabs/php_codesniffer": "^3.3"
  8032. },
  8033. "type": "library",
  8034. "extra": {
  8035. "branch-alias": {
  8036. "dev-master": "1.x-dev"
  8037. }
  8038. },
  8039. "autoload": {
  8040. "psr-4": {
  8041. "Grasmash\\Expander\\": "src/"
  8042. }
  8043. },
  8044. "notification-url": "https://packagist.org/downloads/",
  8045. "license": [
  8046. "MIT"
  8047. ],
  8048. "authors": [
  8049. {
  8050. "name": "Matthew Grasmick"
  8051. }
  8052. ],
  8053. "description": "Expands internal property references in PHP arrays file.",
  8054. "support": {
  8055. "issues": "https://github.com/grasmash/expander/issues",
  8056. "source": "https://github.com/grasmash/expander/tree/3.0.0"
  8057. },
  8058. "time": "2022-05-10T13:14:49+00:00"
  8059. },
  8060. {
  8061. "name": "guzzlehttp/guzzle",
  8062. "version": "7.7.1",
  8063. "source": {
  8064. "type": "git",
  8065. "url": "https://github.com/guzzle/guzzle.git",
  8066. "reference": "085b026db54d4b5012f727c80c9958e8b8cbc454"
  8067. },
  8068. "dist": {
  8069. "type": "zip",
  8070. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/085b026db54d4b5012f727c80c9958e8b8cbc454",
  8071. "reference": "085b026db54d4b5012f727c80c9958e8b8cbc454",
  8072. "shasum": ""
  8073. },
  8074. "require": {
  8075. "ext-json": "*",
  8076. "guzzlehttp/promises": "^1.5.3 || ^2.0",
  8077. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  8078. "php": "^7.2.5 || ^8.0",
  8079. "psr/http-client": "^1.0",
  8080. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8081. },
  8082. "provide": {
  8083. "psr/http-client-implementation": "1.0"
  8084. },
  8085. "require-dev": {
  8086. "bamarni/composer-bin-plugin": "^1.8.1",
  8087. "ext-curl": "*",
  8088. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  8089. "php-http/message-factory": "^1.1",
  8090. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  8091. "psr/log": "^1.1 || ^2.0 || ^3.0"
  8092. },
  8093. "suggest": {
  8094. "ext-curl": "Required for CURL handler support",
  8095. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  8096. "psr/log": "Required for using the Log middleware"
  8097. },
  8098. "type": "library",
  8099. "extra": {
  8100. "bamarni-bin": {
  8101. "bin-links": true,
  8102. "forward-command": false
  8103. }
  8104. },
  8105. "autoload": {
  8106. "files": [
  8107. "src/functions_include.php"
  8108. ],
  8109. "psr-4": {
  8110. "GuzzleHttp\\": "src/"
  8111. }
  8112. },
  8113. "notification-url": "https://packagist.org/downloads/",
  8114. "license": [
  8115. "MIT"
  8116. ],
  8117. "authors": [
  8118. {
  8119. "name": "Graham Campbell",
  8120. "email": "hello@gjcampbell.co.uk",
  8121. "homepage": "https://github.com/GrahamCampbell"
  8122. },
  8123. {
  8124. "name": "Michael Dowling",
  8125. "email": "mtdowling@gmail.com",
  8126. "homepage": "https://github.com/mtdowling"
  8127. },
  8128. {
  8129. "name": "Jeremy Lindblom",
  8130. "email": "jeremeamia@gmail.com",
  8131. "homepage": "https://github.com/jeremeamia"
  8132. },
  8133. {
  8134. "name": "George Mponos",
  8135. "email": "gmponos@gmail.com",
  8136. "homepage": "https://github.com/gmponos"
  8137. },
  8138. {
  8139. "name": "Tobias Nyholm",
  8140. "email": "tobias.nyholm@gmail.com",
  8141. "homepage": "https://github.com/Nyholm"
  8142. },
  8143. {
  8144. "name": "Márk Sági-Kazár",
  8145. "email": "mark.sagikazar@gmail.com",
  8146. "homepage": "https://github.com/sagikazarmark"
  8147. },
  8148. {
  8149. "name": "Tobias Schultze",
  8150. "email": "webmaster@tubo-world.de",
  8151. "homepage": "https://github.com/Tobion"
  8152. }
  8153. ],
  8154. "description": "Guzzle is a PHP HTTP client library",
  8155. "keywords": [
  8156. "client",
  8157. "curl",
  8158. "framework",
  8159. "http",
  8160. "http client",
  8161. "psr-18",
  8162. "psr-7",
  8163. "rest",
  8164. "web service"
  8165. ],
  8166. "support": {
  8167. "issues": "https://github.com/guzzle/guzzle/issues",
  8168. "source": "https://github.com/guzzle/guzzle/tree/7.7.1"
  8169. },
  8170. "funding": [
  8171. {
  8172. "url": "https://github.com/GrahamCampbell",
  8173. "type": "github"
  8174. },
  8175. {
  8176. "url": "https://github.com/Nyholm",
  8177. "type": "github"
  8178. },
  8179. {
  8180. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  8181. "type": "tidelift"
  8182. }
  8183. ],
  8184. "time": "2023-08-27T10:02:06+00:00"
  8185. },
  8186. {
  8187. "name": "guzzlehttp/promises",
  8188. "version": "2.0.1",
  8189. "source": {
  8190. "type": "git",
  8191. "url": "https://github.com/guzzle/promises.git",
  8192. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d"
  8193. },
  8194. "dist": {
  8195. "type": "zip",
  8196. "url": "https://api.github.com/repos/guzzle/promises/zipball/111166291a0f8130081195ac4556a5587d7f1b5d",
  8197. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d",
  8198. "shasum": ""
  8199. },
  8200. "require": {
  8201. "php": "^7.2.5 || ^8.0"
  8202. },
  8203. "require-dev": {
  8204. "bamarni/composer-bin-plugin": "^1.8.1",
  8205. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  8206. },
  8207. "type": "library",
  8208. "extra": {
  8209. "bamarni-bin": {
  8210. "bin-links": true,
  8211. "forward-command": false
  8212. }
  8213. },
  8214. "autoload": {
  8215. "psr-4": {
  8216. "GuzzleHttp\\Promise\\": "src/"
  8217. }
  8218. },
  8219. "notification-url": "https://packagist.org/downloads/",
  8220. "license": [
  8221. "MIT"
  8222. ],
  8223. "authors": [
  8224. {
  8225. "name": "Graham Campbell",
  8226. "email": "hello@gjcampbell.co.uk",
  8227. "homepage": "https://github.com/GrahamCampbell"
  8228. },
  8229. {
  8230. "name": "Michael Dowling",
  8231. "email": "mtdowling@gmail.com",
  8232. "homepage": "https://github.com/mtdowling"
  8233. },
  8234. {
  8235. "name": "Tobias Nyholm",
  8236. "email": "tobias.nyholm@gmail.com",
  8237. "homepage": "https://github.com/Nyholm"
  8238. },
  8239. {
  8240. "name": "Tobias Schultze",
  8241. "email": "webmaster@tubo-world.de",
  8242. "homepage": "https://github.com/Tobion"
  8243. }
  8244. ],
  8245. "description": "Guzzle promises library",
  8246. "keywords": [
  8247. "promise"
  8248. ],
  8249. "support": {
  8250. "issues": "https://github.com/guzzle/promises/issues",
  8251. "source": "https://github.com/guzzle/promises/tree/2.0.1"
  8252. },
  8253. "funding": [
  8254. {
  8255. "url": "https://github.com/GrahamCampbell",
  8256. "type": "github"
  8257. },
  8258. {
  8259. "url": "https://github.com/Nyholm",
  8260. "type": "github"
  8261. },
  8262. {
  8263. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  8264. "type": "tidelift"
  8265. }
  8266. ],
  8267. "time": "2023-08-03T15:11:55+00:00"
  8268. },
  8269. {
  8270. "name": "guzzlehttp/psr7",
  8271. "version": "2.5.1",
  8272. "source": {
  8273. "type": "git",
  8274. "url": "https://github.com/guzzle/psr7.git",
  8275. "reference": "a0b3a03e8e8005257fbc408ce5f0fd0a8274dc7f"
  8276. },
  8277. "dist": {
  8278. "type": "zip",
  8279. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a0b3a03e8e8005257fbc408ce5f0fd0a8274dc7f",
  8280. "reference": "a0b3a03e8e8005257fbc408ce5f0fd0a8274dc7f",
  8281. "shasum": ""
  8282. },
  8283. "require": {
  8284. "php": "^7.2.5 || ^8.0",
  8285. "psr/http-factory": "^1.0",
  8286. "psr/http-message": "^1.1 || ^2.0",
  8287. "ralouphie/getallheaders": "^3.0"
  8288. },
  8289. "provide": {
  8290. "psr/http-factory-implementation": "1.0",
  8291. "psr/http-message-implementation": "1.0"
  8292. },
  8293. "require-dev": {
  8294. "bamarni/composer-bin-plugin": "^1.8.1",
  8295. "http-interop/http-factory-tests": "^0.9",
  8296. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  8297. },
  8298. "suggest": {
  8299. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  8300. },
  8301. "type": "library",
  8302. "extra": {
  8303. "bamarni-bin": {
  8304. "bin-links": true,
  8305. "forward-command": false
  8306. }
  8307. },
  8308. "autoload": {
  8309. "psr-4": {
  8310. "GuzzleHttp\\Psr7\\": "src/"
  8311. }
  8312. },
  8313. "notification-url": "https://packagist.org/downloads/",
  8314. "license": [
  8315. "MIT"
  8316. ],
  8317. "authors": [
  8318. {
  8319. "name": "Graham Campbell",
  8320. "email": "hello@gjcampbell.co.uk",
  8321. "homepage": "https://github.com/GrahamCampbell"
  8322. },
  8323. {
  8324. "name": "Michael Dowling",
  8325. "email": "mtdowling@gmail.com",
  8326. "homepage": "https://github.com/mtdowling"
  8327. },
  8328. {
  8329. "name": "George Mponos",
  8330. "email": "gmponos@gmail.com",
  8331. "homepage": "https://github.com/gmponos"
  8332. },
  8333. {
  8334. "name": "Tobias Nyholm",
  8335. "email": "tobias.nyholm@gmail.com",
  8336. "homepage": "https://github.com/Nyholm"
  8337. },
  8338. {
  8339. "name": "Márk Sági-Kazár",
  8340. "email": "mark.sagikazar@gmail.com",
  8341. "homepage": "https://github.com/sagikazarmark"
  8342. },
  8343. {
  8344. "name": "Tobias Schultze",
  8345. "email": "webmaster@tubo-world.de",
  8346. "homepage": "https://github.com/Tobion"
  8347. },
  8348. {
  8349. "name": "Márk Sági-Kazár",
  8350. "email": "mark.sagikazar@gmail.com",
  8351. "homepage": "https://sagikazarmark.hu"
  8352. }
  8353. ],
  8354. "description": "PSR-7 message implementation that also provides common utility methods",
  8355. "keywords": [
  8356. "http",
  8357. "message",
  8358. "psr-7",
  8359. "request",
  8360. "response",
  8361. "stream",
  8362. "uri",
  8363. "url"
  8364. ],
  8365. "support": {
  8366. "issues": "https://github.com/guzzle/psr7/issues",
  8367. "source": "https://github.com/guzzle/psr7/tree/2.5.1"
  8368. },
  8369. "funding": [
  8370. {
  8371. "url": "https://github.com/GrahamCampbell",
  8372. "type": "github"
  8373. },
  8374. {
  8375. "url": "https://github.com/Nyholm",
  8376. "type": "github"
  8377. },
  8378. {
  8379. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  8380. "type": "tidelift"
  8381. }
  8382. ],
  8383. "time": "2023-08-03T15:02:42+00:00"
  8384. },
  8385. {
  8386. "name": "kint-php/kint",
  8387. "version": "3.3",
  8388. "source": {
  8389. "type": "git",
  8390. "url": "https://github.com/kint-php/kint.git",
  8391. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b"
  8392. },
  8393. "dist": {
  8394. "type": "zip",
  8395. "url": "https://api.github.com/repos/kint-php/kint/zipball/335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8396. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8397. "shasum": ""
  8398. },
  8399. "require": {
  8400. "php": ">=5.3.6"
  8401. },
  8402. "require-dev": {
  8403. "friendsofphp/php-cs-fixer": "^2.0",
  8404. "phpunit/phpunit": "^4.0",
  8405. "seld/phar-utils": "^1.0",
  8406. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  8407. "vimeo/psalm": "^3.0"
  8408. },
  8409. "suggest": {
  8410. "ext-ctype": "Simple data type tests",
  8411. "ext-iconv": "Provides fallback detection for ambiguous legacy string encodings such as the Windows and ISO 8859 code pages",
  8412. "ext-mbstring": "Provides string encoding detection",
  8413. "kint-php/kint-js": "Provides a simplified dump to console.log()",
  8414. "kint-php/kint-twig": "Provides d() and s() functions in twig templates",
  8415. "symfony/polyfill-ctype": "Replacement for ext-ctype if missing",
  8416. "symfony/polyfill-iconv": "Replacement for ext-iconv if missing",
  8417. "symfony/polyfill-mbstring": "Replacement for ext-mbstring if missing"
  8418. },
  8419. "type": "library",
  8420. "autoload": {
  8421. "files": [
  8422. "init.php"
  8423. ],
  8424. "psr-4": {
  8425. "Kint\\": "src/"
  8426. }
  8427. },
  8428. "notification-url": "https://packagist.org/downloads/",
  8429. "license": [
  8430. "MIT"
  8431. ],
  8432. "authors": [
  8433. {
  8434. "name": "Jonathan Vollebregt",
  8435. "homepage": "https://github.com/jnvsor"
  8436. },
  8437. {
  8438. "name": "Rokas Šleinius",
  8439. "homepage": "https://github.com/raveren"
  8440. },
  8441. {
  8442. "name": "Contributors",
  8443. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  8444. }
  8445. ],
  8446. "description": "Kint - debugging tool for PHP developers",
  8447. "homepage": "https://kint-php.github.io/kint/",
  8448. "keywords": [
  8449. "debug",
  8450. "kint",
  8451. "php"
  8452. ],
  8453. "support": {
  8454. "issues": "https://github.com/kint-php/kint/issues",
  8455. "source": "https://github.com/kint-php/kint/tree/master"
  8456. },
  8457. "time": "2019-10-17T18:05:24+00:00"
  8458. },
  8459. {
  8460. "name": "league/container",
  8461. "version": "4.2.0",
  8462. "source": {
  8463. "type": "git",
  8464. "url": "https://github.com/thephpleague/container.git",
  8465. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab"
  8466. },
  8467. "dist": {
  8468. "type": "zip",
  8469. "url": "https://api.github.com/repos/thephpleague/container/zipball/375d13cb828649599ef5d48a339c4af7a26cd0ab",
  8470. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab",
  8471. "shasum": ""
  8472. },
  8473. "require": {
  8474. "php": "^7.2 || ^8.0",
  8475. "psr/container": "^1.1 || ^2.0"
  8476. },
  8477. "provide": {
  8478. "psr/container-implementation": "^1.0"
  8479. },
  8480. "replace": {
  8481. "orno/di": "~2.0"
  8482. },
  8483. "require-dev": {
  8484. "nette/php-generator": "^3.4",
  8485. "nikic/php-parser": "^4.10",
  8486. "phpstan/phpstan": "^0.12.47",
  8487. "phpunit/phpunit": "^8.5.17",
  8488. "roave/security-advisories": "dev-latest",
  8489. "scrutinizer/ocular": "^1.8",
  8490. "squizlabs/php_codesniffer": "^3.6"
  8491. },
  8492. "type": "library",
  8493. "extra": {
  8494. "branch-alias": {
  8495. "dev-master": "4.x-dev",
  8496. "dev-4.x": "4.x-dev",
  8497. "dev-3.x": "3.x-dev",
  8498. "dev-2.x": "2.x-dev",
  8499. "dev-1.x": "1.x-dev"
  8500. }
  8501. },
  8502. "autoload": {
  8503. "psr-4": {
  8504. "League\\Container\\": "src"
  8505. }
  8506. },
  8507. "notification-url": "https://packagist.org/downloads/",
  8508. "license": [
  8509. "MIT"
  8510. ],
  8511. "authors": [
  8512. {
  8513. "name": "Phil Bennett",
  8514. "email": "mail@philbennett.co.uk",
  8515. "role": "Developer"
  8516. }
  8517. ],
  8518. "description": "A fast and intuitive dependency injection container.",
  8519. "homepage": "https://github.com/thephpleague/container",
  8520. "keywords": [
  8521. "container",
  8522. "dependency",
  8523. "di",
  8524. "injection",
  8525. "league",
  8526. "provider",
  8527. "service"
  8528. ],
  8529. "support": {
  8530. "issues": "https://github.com/thephpleague/container/issues",
  8531. "source": "https://github.com/thephpleague/container/tree/4.2.0"
  8532. },
  8533. "funding": [
  8534. {
  8535. "url": "https://github.com/philipobenito",
  8536. "type": "github"
  8537. }
  8538. ],
  8539. "time": "2021-11-16T10:29:06+00:00"
  8540. },
  8541. {
  8542. "name": "masterminds/html5",
  8543. "version": "2.8.1",
  8544. "source": {
  8545. "type": "git",
  8546. "url": "https://github.com/Masterminds/html5-php.git",
  8547. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf"
  8548. },
  8549. "dist": {
  8550. "type": "zip",
  8551. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f47dcf3c70c584de14f21143c55d9939631bc6cf",
  8552. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf",
  8553. "shasum": ""
  8554. },
  8555. "require": {
  8556. "ext-dom": "*",
  8557. "php": ">=5.3.0"
  8558. },
  8559. "require-dev": {
  8560. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8"
  8561. },
  8562. "type": "library",
  8563. "extra": {
  8564. "branch-alias": {
  8565. "dev-master": "2.7-dev"
  8566. }
  8567. },
  8568. "autoload": {
  8569. "psr-4": {
  8570. "Masterminds\\": "src"
  8571. }
  8572. },
  8573. "notification-url": "https://packagist.org/downloads/",
  8574. "license": [
  8575. "MIT"
  8576. ],
  8577. "authors": [
  8578. {
  8579. "name": "Matt Butcher",
  8580. "email": "technosophos@gmail.com"
  8581. },
  8582. {
  8583. "name": "Matt Farina",
  8584. "email": "matt@mattfarina.com"
  8585. },
  8586. {
  8587. "name": "Asmir Mustafic",
  8588. "email": "goetas@gmail.com"
  8589. }
  8590. ],
  8591. "description": "An HTML5 parser and serializer.",
  8592. "homepage": "http://masterminds.github.io/html5-php",
  8593. "keywords": [
  8594. "HTML5",
  8595. "dom",
  8596. "html",
  8597. "parser",
  8598. "querypath",
  8599. "serializer",
  8600. "xml"
  8601. ],
  8602. "support": {
  8603. "issues": "https://github.com/Masterminds/html5-php/issues",
  8604. "source": "https://github.com/Masterminds/html5-php/tree/2.8.1"
  8605. },
  8606. "time": "2023-05-10T11:58:31+00:00"
  8607. },
  8608. {
  8609. "name": "mck89/peast",
  8610. "version": "v1.15.4",
  8611. "source": {
  8612. "type": "git",
  8613. "url": "https://github.com/mck89/peast.git",
  8614. "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18"
  8615. },
  8616. "dist": {
  8617. "type": "zip",
  8618. "url": "https://api.github.com/repos/mck89/peast/zipball/1df4dc28a6b5bb7ab117ab073c1712256e954e18",
  8619. "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18",
  8620. "shasum": ""
  8621. },
  8622. "require": {
  8623. "ext-mbstring": "*",
  8624. "php": ">=5.4.0"
  8625. },
  8626. "require-dev": {
  8627. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  8628. },
  8629. "type": "library",
  8630. "extra": {
  8631. "branch-alias": {
  8632. "dev-master": "1.15.4-dev"
  8633. }
  8634. },
  8635. "autoload": {
  8636. "psr-4": {
  8637. "Peast\\": "lib/Peast/"
  8638. }
  8639. },
  8640. "notification-url": "https://packagist.org/downloads/",
  8641. "license": [
  8642. "BSD-3-Clause"
  8643. ],
  8644. "authors": [
  8645. {
  8646. "name": "Marco Marchiò",
  8647. "email": "marco.mm89@gmail.com"
  8648. }
  8649. ],
  8650. "description": "Peast is PHP library that generates AST for JavaScript code",
  8651. "support": {
  8652. "issues": "https://github.com/mck89/peast/issues",
  8653. "source": "https://github.com/mck89/peast/tree/v1.15.4"
  8654. },
  8655. "time": "2023-08-12T08:29:29+00:00"
  8656. },
  8657. {
  8658. "name": "nikic/php-parser",
  8659. "version": "v4.17.1",
  8660. "source": {
  8661. "type": "git",
  8662. "url": "https://github.com/nikic/PHP-Parser.git",
  8663. "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d"
  8664. },
  8665. "dist": {
  8666. "type": "zip",
  8667. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
  8668. "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
  8669. "shasum": ""
  8670. },
  8671. "require": {
  8672. "ext-tokenizer": "*",
  8673. "php": ">=7.0"
  8674. },
  8675. "require-dev": {
  8676. "ircmaxell/php-yacc": "^0.0.7",
  8677. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  8678. },
  8679. "bin": [
  8680. "bin/php-parse"
  8681. ],
  8682. "type": "library",
  8683. "extra": {
  8684. "branch-alias": {
  8685. "dev-master": "4.9-dev"
  8686. }
  8687. },
  8688. "autoload": {
  8689. "psr-4": {
  8690. "PhpParser\\": "lib/PhpParser"
  8691. }
  8692. },
  8693. "notification-url": "https://packagist.org/downloads/",
  8694. "license": [
  8695. "BSD-3-Clause"
  8696. ],
  8697. "authors": [
  8698. {
  8699. "name": "Nikita Popov"
  8700. }
  8701. ],
  8702. "description": "A PHP parser written in PHP",
  8703. "keywords": [
  8704. "parser",
  8705. "php"
  8706. ],
  8707. "support": {
  8708. "issues": "https://github.com/nikic/PHP-Parser/issues",
  8709. "source": "https://github.com/nikic/PHP-Parser/tree/v4.17.1"
  8710. },
  8711. "time": "2023-08-13T19:53:39+00:00"
  8712. },
  8713. {
  8714. "name": "pear/archive_tar",
  8715. "version": "1.4.14",
  8716. "source": {
  8717. "type": "git",
  8718. "url": "https://github.com/pear/Archive_Tar.git",
  8719. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  8720. },
  8721. "dist": {
  8722. "type": "zip",
  8723. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  8724. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  8725. "shasum": ""
  8726. },
  8727. "require": {
  8728. "pear/pear-core-minimal": "^1.10.0alpha2",
  8729. "php": ">=5.2.0"
  8730. },
  8731. "require-dev": {
  8732. "phpunit/phpunit": "*"
  8733. },
  8734. "suggest": {
  8735. "ext-bz2": "Bz2 compression support.",
  8736. "ext-xz": "Lzma2 compression support.",
  8737. "ext-zlib": "Gzip compression support."
  8738. },
  8739. "type": "library",
  8740. "extra": {
  8741. "branch-alias": {
  8742. "dev-master": "1.4.x-dev"
  8743. }
  8744. },
  8745. "autoload": {
  8746. "psr-0": {
  8747. "Archive_Tar": ""
  8748. }
  8749. },
  8750. "notification-url": "https://packagist.org/downloads/",
  8751. "include-path": [
  8752. "./"
  8753. ],
  8754. "license": [
  8755. "BSD-3-Clause"
  8756. ],
  8757. "authors": [
  8758. {
  8759. "name": "Vincent Blavet",
  8760. "email": "vincent@phpconcept.net"
  8761. },
  8762. {
  8763. "name": "Greg Beaver",
  8764. "email": "greg@chiaraquartet.net"
  8765. },
  8766. {
  8767. "name": "Michiel Rook",
  8768. "email": "mrook@php.net"
  8769. }
  8770. ],
  8771. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  8772. "homepage": "https://github.com/pear/Archive_Tar",
  8773. "keywords": [
  8774. "archive",
  8775. "tar"
  8776. ],
  8777. "support": {
  8778. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  8779. "source": "https://github.com/pear/Archive_Tar"
  8780. },
  8781. "funding": [
  8782. {
  8783. "url": "https://github.com/mrook",
  8784. "type": "github"
  8785. },
  8786. {
  8787. "url": "https://www.patreon.com/michielrook",
  8788. "type": "patreon"
  8789. }
  8790. ],
  8791. "time": "2021-07-20T13:53:39+00:00"
  8792. },
  8793. {
  8794. "name": "pear/console_getopt",
  8795. "version": "v1.4.3",
  8796. "source": {
  8797. "type": "git",
  8798. "url": "https://github.com/pear/Console_Getopt.git",
  8799. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  8800. },
  8801. "dist": {
  8802. "type": "zip",
  8803. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  8804. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  8805. "shasum": ""
  8806. },
  8807. "type": "library",
  8808. "autoload": {
  8809. "psr-0": {
  8810. "Console": "./"
  8811. }
  8812. },
  8813. "notification-url": "https://packagist.org/downloads/",
  8814. "include-path": [
  8815. "./"
  8816. ],
  8817. "license": [
  8818. "BSD-2-Clause"
  8819. ],
  8820. "authors": [
  8821. {
  8822. "name": "Andrei Zmievski",
  8823. "email": "andrei@php.net",
  8824. "role": "Lead"
  8825. },
  8826. {
  8827. "name": "Stig Bakken",
  8828. "email": "stig@php.net",
  8829. "role": "Developer"
  8830. },
  8831. {
  8832. "name": "Greg Beaver",
  8833. "email": "cellog@php.net",
  8834. "role": "Helper"
  8835. }
  8836. ],
  8837. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  8838. "support": {
  8839. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  8840. "source": "https://github.com/pear/Console_Getopt"
  8841. },
  8842. "time": "2019-11-20T18:27:48+00:00"
  8843. },
  8844. {
  8845. "name": "pear/pear-core-minimal",
  8846. "version": "v1.10.13",
  8847. "source": {
  8848. "type": "git",
  8849. "url": "https://github.com/pear/pear-core-minimal.git",
  8850. "reference": "aed862e95fd286c53cc546734868dc38ff4b5b1d"
  8851. },
  8852. "dist": {
  8853. "type": "zip",
  8854. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/aed862e95fd286c53cc546734868dc38ff4b5b1d",
  8855. "reference": "aed862e95fd286c53cc546734868dc38ff4b5b1d",
  8856. "shasum": ""
  8857. },
  8858. "require": {
  8859. "pear/console_getopt": "~1.4",
  8860. "pear/pear_exception": "~1.0"
  8861. },
  8862. "replace": {
  8863. "rsky/pear-core-min": "self.version"
  8864. },
  8865. "type": "library",
  8866. "autoload": {
  8867. "psr-0": {
  8868. "": "src/"
  8869. }
  8870. },
  8871. "notification-url": "https://packagist.org/downloads/",
  8872. "include-path": [
  8873. "src/"
  8874. ],
  8875. "license": [
  8876. "BSD-3-Clause"
  8877. ],
  8878. "authors": [
  8879. {
  8880. "name": "Christian Weiske",
  8881. "email": "cweiske@php.net",
  8882. "role": "Lead"
  8883. }
  8884. ],
  8885. "description": "Minimal set of PEAR core files to be used as composer dependency",
  8886. "support": {
  8887. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  8888. "source": "https://github.com/pear/pear-core-minimal"
  8889. },
  8890. "time": "2023-04-19T19:15:47+00:00"
  8891. },
  8892. {
  8893. "name": "pear/pear_exception",
  8894. "version": "v1.0.2",
  8895. "source": {
  8896. "type": "git",
  8897. "url": "https://github.com/pear/PEAR_Exception.git",
  8898. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  8899. },
  8900. "dist": {
  8901. "type": "zip",
  8902. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  8903. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  8904. "shasum": ""
  8905. },
  8906. "require": {
  8907. "php": ">=5.2.0"
  8908. },
  8909. "require-dev": {
  8910. "phpunit/phpunit": "<9"
  8911. },
  8912. "type": "class",
  8913. "extra": {
  8914. "branch-alias": {
  8915. "dev-master": "1.0.x-dev"
  8916. }
  8917. },
  8918. "autoload": {
  8919. "classmap": [
  8920. "PEAR/"
  8921. ]
  8922. },
  8923. "notification-url": "https://packagist.org/downloads/",
  8924. "include-path": [
  8925. "."
  8926. ],
  8927. "license": [
  8928. "BSD-2-Clause"
  8929. ],
  8930. "authors": [
  8931. {
  8932. "name": "Helgi Thormar",
  8933. "email": "dufuz@php.net"
  8934. },
  8935. {
  8936. "name": "Greg Beaver",
  8937. "email": "cellog@php.net"
  8938. }
  8939. ],
  8940. "description": "The PEAR Exception base class.",
  8941. "homepage": "https://github.com/pear/PEAR_Exception",
  8942. "keywords": [
  8943. "exception"
  8944. ],
  8945. "support": {
  8946. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  8947. "source": "https://github.com/pear/PEAR_Exception"
  8948. },
  8949. "time": "2021-03-21T15:43:46+00:00"
  8950. },
  8951. {
  8952. "name": "phenx/php-font-lib",
  8953. "version": "0.5.4",
  8954. "source": {
  8955. "type": "git",
  8956. "url": "https://github.com/dompdf/php-font-lib.git",
  8957. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4"
  8958. },
  8959. "dist": {
  8960. "type": "zip",
  8961. "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/dd448ad1ce34c63d09baccd05415e361300c35b4",
  8962. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4",
  8963. "shasum": ""
  8964. },
  8965. "require": {
  8966. "ext-mbstring": "*"
  8967. },
  8968. "require-dev": {
  8969. "symfony/phpunit-bridge": "^3 || ^4 || ^5"
  8970. },
  8971. "type": "library",
  8972. "autoload": {
  8973. "psr-4": {
  8974. "FontLib\\": "src/FontLib"
  8975. }
  8976. },
  8977. "notification-url": "https://packagist.org/downloads/",
  8978. "license": [
  8979. "LGPL-3.0"
  8980. ],
  8981. "authors": [
  8982. {
  8983. "name": "Fabien Ménager",
  8984. "email": "fabien.menager@gmail.com"
  8985. }
  8986. ],
  8987. "description": "A library to read, parse, export and make subsets of different types of font files.",
  8988. "homepage": "https://github.com/PhenX/php-font-lib",
  8989. "support": {
  8990. "issues": "https://github.com/dompdf/php-font-lib/issues",
  8991. "source": "https://github.com/dompdf/php-font-lib/tree/0.5.4"
  8992. },
  8993. "time": "2021-12-17T19:44:54+00:00"
  8994. },
  8995. {
  8996. "name": "phootwork/collection",
  8997. "version": "v3.2.2",
  8998. "source": {
  8999. "type": "git",
  9000. "url": "https://github.com/phootwork/collection.git",
  9001. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
  9002. },
  9003. "dist": {
  9004. "type": "zip",
  9005. "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
  9006. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
  9007. "shasum": ""
  9008. },
  9009. "require": {
  9010. "phootwork/lang": "^3.0",
  9011. "php": ">=8.0"
  9012. },
  9013. "type": "library",
  9014. "autoload": {
  9015. "psr-4": {
  9016. "phootwork\\collection\\": ""
  9017. }
  9018. },
  9019. "notification-url": "https://packagist.org/downloads/",
  9020. "license": [
  9021. "MIT"
  9022. ],
  9023. "authors": [
  9024. {
  9025. "name": "Thomas Gossmann",
  9026. "homepage": "http://gos.si"
  9027. }
  9028. ],
  9029. "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
  9030. "homepage": "https://phootwork.github.io/collection/",
  9031. "keywords": [
  9032. "Array object",
  9033. "Text object",
  9034. "collection",
  9035. "collections",
  9036. "json",
  9037. "list",
  9038. "map",
  9039. "queue",
  9040. "set",
  9041. "stack",
  9042. "xml"
  9043. ],
  9044. "support": {
  9045. "issues": "https://github.com/phootwork/phootwork/issues",
  9046. "source": "https://github.com/phootwork/collection/tree/v3.2.2"
  9047. },
  9048. "time": "2022-08-27T12:51:24+00:00"
  9049. },
  9050. {
  9051. "name": "phootwork/lang",
  9052. "version": "v3.2.2",
  9053. "source": {
  9054. "type": "git",
  9055. "url": "https://github.com/phootwork/lang.git",
  9056. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597"
  9057. },
  9058. "dist": {
  9059. "type": "zip",
  9060. "url": "https://api.github.com/repos/phootwork/lang/zipball/baaf154ae7d521ebeee5e89105f5b12b0f234597",
  9061. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597",
  9062. "shasum": ""
  9063. },
  9064. "require": {
  9065. "php": ">=8.0",
  9066. "symfony/polyfill-mbstring": "^1.12",
  9067. "symfony/polyfill-php81": "^1.22"
  9068. },
  9069. "type": "library",
  9070. "autoload": {
  9071. "psr-4": {
  9072. "phootwork\\lang\\": ""
  9073. }
  9074. },
  9075. "notification-url": "https://packagist.org/downloads/",
  9076. "license": [
  9077. "MIT"
  9078. ],
  9079. "authors": [
  9080. {
  9081. "name": "Thomas Gossmann",
  9082. "homepage": "http://gos.si"
  9083. }
  9084. ],
  9085. "description": "Missing PHP language constructs",
  9086. "homepage": "https://phootwork.github.io/lang/",
  9087. "keywords": [
  9088. "array",
  9089. "comparator",
  9090. "comparison",
  9091. "string"
  9092. ],
  9093. "support": {
  9094. "issues": "https://github.com/phootwork/phootwork/issues",
  9095. "source": "https://github.com/phootwork/lang/tree/v3.2.2"
  9096. },
  9097. "time": "2023-05-26T05:37:59+00:00"
  9098. },
  9099. {
  9100. "name": "phpmailer/phpmailer",
  9101. "version": "v6.8.1",
  9102. "source": {
  9103. "type": "git",
  9104. "url": "https://github.com/PHPMailer/PHPMailer.git",
  9105. "reference": "e88da8d679acc3824ff231fdc553565b802ac016"
  9106. },
  9107. "dist": {
  9108. "type": "zip",
  9109. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/e88da8d679acc3824ff231fdc553565b802ac016",
  9110. "reference": "e88da8d679acc3824ff231fdc553565b802ac016",
  9111. "shasum": ""
  9112. },
  9113. "require": {
  9114. "ext-ctype": "*",
  9115. "ext-filter": "*",
  9116. "ext-hash": "*",
  9117. "php": ">=5.5.0"
  9118. },
  9119. "require-dev": {
  9120. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  9121. "doctrine/annotations": "^1.2.6 || ^1.13.3",
  9122. "php-parallel-lint/php-console-highlighter": "^1.0.0",
  9123. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  9124. "phpcompatibility/php-compatibility": "^9.3.5",
  9125. "roave/security-advisories": "dev-latest",
  9126. "squizlabs/php_codesniffer": "^3.7.2",
  9127. "yoast/phpunit-polyfills": "^1.0.4"
  9128. },
  9129. "suggest": {
  9130. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  9131. "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
  9132. "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
  9133. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  9134. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  9135. "psr/log": "For optional PSR-3 debug logging",
  9136. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
  9137. "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
  9138. },
  9139. "type": "library",
  9140. "autoload": {
  9141. "psr-4": {
  9142. "PHPMailer\\PHPMailer\\": "src/"
  9143. }
  9144. },
  9145. "notification-url": "https://packagist.org/downloads/",
  9146. "license": [
  9147. "LGPL-2.1-only"
  9148. ],
  9149. "authors": [
  9150. {
  9151. "name": "Marcus Bointon",
  9152. "email": "phpmailer@synchromedia.co.uk"
  9153. },
  9154. {
  9155. "name": "Jim Jagielski",
  9156. "email": "jimjag@gmail.com"
  9157. },
  9158. {
  9159. "name": "Andy Prevost",
  9160. "email": "codeworxtech@users.sourceforge.net"
  9161. },
  9162. {
  9163. "name": "Brent R. Matzelle"
  9164. }
  9165. ],
  9166. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  9167. "support": {
  9168. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  9169. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.8.1"
  9170. },
  9171. "funding": [
  9172. {
  9173. "url": "https://github.com/Synchro",
  9174. "type": "github"
  9175. }
  9176. ],
  9177. "time": "2023-08-29T08:26:30+00:00"
  9178. },
  9179. {
  9180. "name": "phpowermove/docblock",
  9181. "version": "v4.0",
  9182. "source": {
  9183. "type": "git",
  9184. "url": "https://github.com/phpowermove/docblock.git",
  9185. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
  9186. },
  9187. "dist": {
  9188. "type": "zip",
  9189. "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  9190. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  9191. "shasum": ""
  9192. },
  9193. "require": {
  9194. "phootwork/collection": "^3.0",
  9195. "phootwork/lang": "^3.0",
  9196. "php": ">=8.0"
  9197. },
  9198. "require-dev": {
  9199. "phootwork/php-cs-fixer-config": "^0.4",
  9200. "phpunit/phpunit": "^9.0",
  9201. "psalm/phar": "^4.3"
  9202. },
  9203. "type": "library",
  9204. "autoload": {
  9205. "psr-4": {
  9206. "phpowermove\\docblock\\": "src/"
  9207. }
  9208. },
  9209. "notification-url": "https://packagist.org/downloads/",
  9210. "license": [
  9211. "MIT"
  9212. ],
  9213. "authors": [
  9214. {
  9215. "name": "Thomas Gossmann",
  9216. "homepage": "http://gos.si"
  9217. }
  9218. ],
  9219. "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
  9220. "keywords": [
  9221. "docblock",
  9222. "generator",
  9223. "parser"
  9224. ],
  9225. "support": {
  9226. "issues": "https://github.com/phpowermove/docblock/issues",
  9227. "source": "https://github.com/phpowermove/docblock/tree/v4.0"
  9228. },
  9229. "time": "2021-09-22T16:57:06+00:00"
  9230. },
  9231. {
  9232. "name": "politsin/jquery-ui-touch-punch",
  9233. "version": "1.0",
  9234. "source": {
  9235. "type": "git",
  9236. "url": "https://github.com/politsin/jquery-ui-touch-punch.git",
  9237. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd"
  9238. },
  9239. "dist": {
  9240. "type": "zip",
  9241. "url": "https://api.github.com/repos/politsin/jquery-ui-touch-punch/zipball/2fe375e05821e267f0f3c0e063197f5c406896dd",
  9242. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd",
  9243. "shasum": ""
  9244. },
  9245. "type": "drupal-library",
  9246. "notification-url": "https://packagist.org/downloads/",
  9247. "license": [
  9248. "MIT"
  9249. ],
  9250. "authors": [
  9251. {
  9252. "name": "Dave Furfero",
  9253. "email": "furf@furf.com"
  9254. }
  9255. ],
  9256. "description": "Extension to jQuery UI for mobile touch event support.",
  9257. "homepage": "http://touchpunch.furf.com/",
  9258. "keywords": [
  9259. "gestures",
  9260. "mobile",
  9261. "touch"
  9262. ],
  9263. "support": {
  9264. "issues": "https://github.com/politsin/jquery-ui-touch-punch/issues",
  9265. "source": "https://github.com/politsin/jquery-ui-touch-punch/tree/1.0"
  9266. },
  9267. "time": "2020-12-15T10:26:18+00:00"
  9268. },
  9269. {
  9270. "name": "psr/cache",
  9271. "version": "3.0.0",
  9272. "source": {
  9273. "type": "git",
  9274. "url": "https://github.com/php-fig/cache.git",
  9275. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  9276. },
  9277. "dist": {
  9278. "type": "zip",
  9279. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  9280. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  9281. "shasum": ""
  9282. },
  9283. "require": {
  9284. "php": ">=8.0.0"
  9285. },
  9286. "type": "library",
  9287. "extra": {
  9288. "branch-alias": {
  9289. "dev-master": "1.0.x-dev"
  9290. }
  9291. },
  9292. "autoload": {
  9293. "psr-4": {
  9294. "Psr\\Cache\\": "src/"
  9295. }
  9296. },
  9297. "notification-url": "https://packagist.org/downloads/",
  9298. "license": [
  9299. "MIT"
  9300. ],
  9301. "authors": [
  9302. {
  9303. "name": "PHP-FIG",
  9304. "homepage": "https://www.php-fig.org/"
  9305. }
  9306. ],
  9307. "description": "Common interface for caching libraries",
  9308. "keywords": [
  9309. "cache",
  9310. "psr",
  9311. "psr-6"
  9312. ],
  9313. "support": {
  9314. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  9315. },
  9316. "time": "2021-02-03T23:26:27+00:00"
  9317. },
  9318. {
  9319. "name": "psr/container",
  9320. "version": "2.0.2",
  9321. "source": {
  9322. "type": "git",
  9323. "url": "https://github.com/php-fig/container.git",
  9324. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  9325. },
  9326. "dist": {
  9327. "type": "zip",
  9328. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  9329. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  9330. "shasum": ""
  9331. },
  9332. "require": {
  9333. "php": ">=7.4.0"
  9334. },
  9335. "type": "library",
  9336. "extra": {
  9337. "branch-alias": {
  9338. "dev-master": "2.0.x-dev"
  9339. }
  9340. },
  9341. "autoload": {
  9342. "psr-4": {
  9343. "Psr\\Container\\": "src/"
  9344. }
  9345. },
  9346. "notification-url": "https://packagist.org/downloads/",
  9347. "license": [
  9348. "MIT"
  9349. ],
  9350. "authors": [
  9351. {
  9352. "name": "PHP-FIG",
  9353. "homepage": "https://www.php-fig.org/"
  9354. }
  9355. ],
  9356. "description": "Common Container Interface (PHP FIG PSR-11)",
  9357. "homepage": "https://github.com/php-fig/container",
  9358. "keywords": [
  9359. "PSR-11",
  9360. "container",
  9361. "container-interface",
  9362. "container-interop",
  9363. "psr"
  9364. ],
  9365. "support": {
  9366. "issues": "https://github.com/php-fig/container/issues",
  9367. "source": "https://github.com/php-fig/container/tree/2.0.2"
  9368. },
  9369. "time": "2021-11-05T16:47:00+00:00"
  9370. },
  9371. {
  9372. "name": "psr/event-dispatcher",
  9373. "version": "1.0.0",
  9374. "source": {
  9375. "type": "git",
  9376. "url": "https://github.com/php-fig/event-dispatcher.git",
  9377. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  9378. },
  9379. "dist": {
  9380. "type": "zip",
  9381. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  9382. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  9383. "shasum": ""
  9384. },
  9385. "require": {
  9386. "php": ">=7.2.0"
  9387. },
  9388. "type": "library",
  9389. "extra": {
  9390. "branch-alias": {
  9391. "dev-master": "1.0.x-dev"
  9392. }
  9393. },
  9394. "autoload": {
  9395. "psr-4": {
  9396. "Psr\\EventDispatcher\\": "src/"
  9397. }
  9398. },
  9399. "notification-url": "https://packagist.org/downloads/",
  9400. "license": [
  9401. "MIT"
  9402. ],
  9403. "authors": [
  9404. {
  9405. "name": "PHP-FIG",
  9406. "homepage": "http://www.php-fig.org/"
  9407. }
  9408. ],
  9409. "description": "Standard interfaces for event handling.",
  9410. "keywords": [
  9411. "events",
  9412. "psr",
  9413. "psr-14"
  9414. ],
  9415. "support": {
  9416. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  9417. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  9418. },
  9419. "time": "2019-01-08T18:20:26+00:00"
  9420. },
  9421. {
  9422. "name": "psr/http-client",
  9423. "version": "1.0.3",
  9424. "source": {
  9425. "type": "git",
  9426. "url": "https://github.com/php-fig/http-client.git",
  9427. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  9428. },
  9429. "dist": {
  9430. "type": "zip",
  9431. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  9432. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  9433. "shasum": ""
  9434. },
  9435. "require": {
  9436. "php": "^7.0 || ^8.0",
  9437. "psr/http-message": "^1.0 || ^2.0"
  9438. },
  9439. "type": "library",
  9440. "extra": {
  9441. "branch-alias": {
  9442. "dev-master": "1.0.x-dev"
  9443. }
  9444. },
  9445. "autoload": {
  9446. "psr-4": {
  9447. "Psr\\Http\\Client\\": "src/"
  9448. }
  9449. },
  9450. "notification-url": "https://packagist.org/downloads/",
  9451. "license": [
  9452. "MIT"
  9453. ],
  9454. "authors": [
  9455. {
  9456. "name": "PHP-FIG",
  9457. "homepage": "https://www.php-fig.org/"
  9458. }
  9459. ],
  9460. "description": "Common interface for HTTP clients",
  9461. "homepage": "https://github.com/php-fig/http-client",
  9462. "keywords": [
  9463. "http",
  9464. "http-client",
  9465. "psr",
  9466. "psr-18"
  9467. ],
  9468. "support": {
  9469. "source": "https://github.com/php-fig/http-client"
  9470. },
  9471. "time": "2023-09-23T14:17:50+00:00"
  9472. },
  9473. {
  9474. "name": "psr/http-factory",
  9475. "version": "1.0.2",
  9476. "source": {
  9477. "type": "git",
  9478. "url": "https://github.com/php-fig/http-factory.git",
  9479. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  9480. },
  9481. "dist": {
  9482. "type": "zip",
  9483. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  9484. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  9485. "shasum": ""
  9486. },
  9487. "require": {
  9488. "php": ">=7.0.0",
  9489. "psr/http-message": "^1.0 || ^2.0"
  9490. },
  9491. "type": "library",
  9492. "extra": {
  9493. "branch-alias": {
  9494. "dev-master": "1.0.x-dev"
  9495. }
  9496. },
  9497. "autoload": {
  9498. "psr-4": {
  9499. "Psr\\Http\\Message\\": "src/"
  9500. }
  9501. },
  9502. "notification-url": "https://packagist.org/downloads/",
  9503. "license": [
  9504. "MIT"
  9505. ],
  9506. "authors": [
  9507. {
  9508. "name": "PHP-FIG",
  9509. "homepage": "https://www.php-fig.org/"
  9510. }
  9511. ],
  9512. "description": "Common interfaces for PSR-7 HTTP message factories",
  9513. "keywords": [
  9514. "factory",
  9515. "http",
  9516. "message",
  9517. "psr",
  9518. "psr-17",
  9519. "psr-7",
  9520. "request",
  9521. "response"
  9522. ],
  9523. "support": {
  9524. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  9525. },
  9526. "time": "2023-04-10T20:10:41+00:00"
  9527. },
  9528. {
  9529. "name": "psr/http-message",
  9530. "version": "2.0",
  9531. "source": {
  9532. "type": "git",
  9533. "url": "https://github.com/php-fig/http-message.git",
  9534. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  9535. },
  9536. "dist": {
  9537. "type": "zip",
  9538. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  9539. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  9540. "shasum": ""
  9541. },
  9542. "require": {
  9543. "php": "^7.2 || ^8.0"
  9544. },
  9545. "type": "library",
  9546. "extra": {
  9547. "branch-alias": {
  9548. "dev-master": "2.0.x-dev"
  9549. }
  9550. },
  9551. "autoload": {
  9552. "psr-4": {
  9553. "Psr\\Http\\Message\\": "src/"
  9554. }
  9555. },
  9556. "notification-url": "https://packagist.org/downloads/",
  9557. "license": [
  9558. "MIT"
  9559. ],
  9560. "authors": [
  9561. {
  9562. "name": "PHP-FIG",
  9563. "homepage": "https://www.php-fig.org/"
  9564. }
  9565. ],
  9566. "description": "Common interface for HTTP messages",
  9567. "homepage": "https://github.com/php-fig/http-message",
  9568. "keywords": [
  9569. "http",
  9570. "http-message",
  9571. "psr",
  9572. "psr-7",
  9573. "request",
  9574. "response"
  9575. ],
  9576. "support": {
  9577. "source": "https://github.com/php-fig/http-message/tree/2.0"
  9578. },
  9579. "time": "2023-04-04T09:54:51+00:00"
  9580. },
  9581. {
  9582. "name": "psr/log",
  9583. "version": "3.0.0",
  9584. "source": {
  9585. "type": "git",
  9586. "url": "https://github.com/php-fig/log.git",
  9587. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  9588. },
  9589. "dist": {
  9590. "type": "zip",
  9591. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  9592. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  9593. "shasum": ""
  9594. },
  9595. "require": {
  9596. "php": ">=8.0.0"
  9597. },
  9598. "type": "library",
  9599. "extra": {
  9600. "branch-alias": {
  9601. "dev-master": "3.x-dev"
  9602. }
  9603. },
  9604. "autoload": {
  9605. "psr-4": {
  9606. "Psr\\Log\\": "src"
  9607. }
  9608. },
  9609. "notification-url": "https://packagist.org/downloads/",
  9610. "license": [
  9611. "MIT"
  9612. ],
  9613. "authors": [
  9614. {
  9615. "name": "PHP-FIG",
  9616. "homepage": "https://www.php-fig.org/"
  9617. }
  9618. ],
  9619. "description": "Common interface for logging libraries",
  9620. "homepage": "https://github.com/php-fig/log",
  9621. "keywords": [
  9622. "log",
  9623. "psr",
  9624. "psr-3"
  9625. ],
  9626. "support": {
  9627. "source": "https://github.com/php-fig/log/tree/3.0.0"
  9628. },
  9629. "time": "2021-07-14T16:46:02+00:00"
  9630. },
  9631. {
  9632. "name": "psy/psysh",
  9633. "version": "v0.11.22",
  9634. "source": {
  9635. "type": "git",
  9636. "url": "https://github.com/bobthecow/psysh.git",
  9637. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b"
  9638. },
  9639. "dist": {
  9640. "type": "zip",
  9641. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/128fa1b608be651999ed9789c95e6e2a31b5802b",
  9642. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b",
  9643. "shasum": ""
  9644. },
  9645. "require": {
  9646. "ext-json": "*",
  9647. "ext-tokenizer": "*",
  9648. "nikic/php-parser": "^4.0 || ^3.1",
  9649. "php": "^8.0 || ^7.0.8",
  9650. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  9651. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  9652. },
  9653. "conflict": {
  9654. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  9655. },
  9656. "require-dev": {
  9657. "bamarni/composer-bin-plugin": "^1.2"
  9658. },
  9659. "suggest": {
  9660. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  9661. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  9662. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  9663. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  9664. },
  9665. "bin": [
  9666. "bin/psysh"
  9667. ],
  9668. "type": "library",
  9669. "extra": {
  9670. "branch-alias": {
  9671. "dev-0.11": "0.11.x-dev"
  9672. },
  9673. "bamarni-bin": {
  9674. "bin-links": false,
  9675. "forward-command": false
  9676. }
  9677. },
  9678. "autoload": {
  9679. "files": [
  9680. "src/functions.php"
  9681. ],
  9682. "psr-4": {
  9683. "Psy\\": "src/"
  9684. }
  9685. },
  9686. "notification-url": "https://packagist.org/downloads/",
  9687. "license": [
  9688. "MIT"
  9689. ],
  9690. "authors": [
  9691. {
  9692. "name": "Justin Hileman",
  9693. "email": "justin@justinhileman.info",
  9694. "homepage": "http://justinhileman.com"
  9695. }
  9696. ],
  9697. "description": "An interactive shell for modern PHP.",
  9698. "homepage": "http://psysh.org",
  9699. "keywords": [
  9700. "REPL",
  9701. "console",
  9702. "interactive",
  9703. "shell"
  9704. ],
  9705. "support": {
  9706. "issues": "https://github.com/bobthecow/psysh/issues",
  9707. "source": "https://github.com/bobthecow/psysh/tree/v0.11.22"
  9708. },
  9709. "time": "2023-10-14T21:56:36+00:00"
  9710. },
  9711. {
  9712. "name": "ralouphie/getallheaders",
  9713. "version": "3.0.3",
  9714. "source": {
  9715. "type": "git",
  9716. "url": "https://github.com/ralouphie/getallheaders.git",
  9717. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  9718. },
  9719. "dist": {
  9720. "type": "zip",
  9721. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  9722. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  9723. "shasum": ""
  9724. },
  9725. "require": {
  9726. "php": ">=5.6"
  9727. },
  9728. "require-dev": {
  9729. "php-coveralls/php-coveralls": "^2.1",
  9730. "phpunit/phpunit": "^5 || ^6.5"
  9731. },
  9732. "type": "library",
  9733. "autoload": {
  9734. "files": [
  9735. "src/getallheaders.php"
  9736. ]
  9737. },
  9738. "notification-url": "https://packagist.org/downloads/",
  9739. "license": [
  9740. "MIT"
  9741. ],
  9742. "authors": [
  9743. {
  9744. "name": "Ralph Khattar",
  9745. "email": "ralph.khattar@gmail.com"
  9746. }
  9747. ],
  9748. "description": "A polyfill for getallheaders.",
  9749. "support": {
  9750. "issues": "https://github.com/ralouphie/getallheaders/issues",
  9751. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  9752. },
  9753. "time": "2019-03-08T08:55:37+00:00"
  9754. },
  9755. {
  9756. "name": "sebastian/diff",
  9757. "version": "4.0.5",
  9758. "source": {
  9759. "type": "git",
  9760. "url": "https://github.com/sebastianbergmann/diff.git",
  9761. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  9762. },
  9763. "dist": {
  9764. "type": "zip",
  9765. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  9766. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  9767. "shasum": ""
  9768. },
  9769. "require": {
  9770. "php": ">=7.3"
  9771. },
  9772. "require-dev": {
  9773. "phpunit/phpunit": "^9.3",
  9774. "symfony/process": "^4.2 || ^5"
  9775. },
  9776. "type": "library",
  9777. "extra": {
  9778. "branch-alias": {
  9779. "dev-master": "4.0-dev"
  9780. }
  9781. },
  9782. "autoload": {
  9783. "classmap": [
  9784. "src/"
  9785. ]
  9786. },
  9787. "notification-url": "https://packagist.org/downloads/",
  9788. "license": [
  9789. "BSD-3-Clause"
  9790. ],
  9791. "authors": [
  9792. {
  9793. "name": "Sebastian Bergmann",
  9794. "email": "sebastian@phpunit.de"
  9795. },
  9796. {
  9797. "name": "Kore Nordmann",
  9798. "email": "mail@kore-nordmann.de"
  9799. }
  9800. ],
  9801. "description": "Diff implementation",
  9802. "homepage": "https://github.com/sebastianbergmann/diff",
  9803. "keywords": [
  9804. "diff",
  9805. "udiff",
  9806. "unidiff",
  9807. "unified diff"
  9808. ],
  9809. "support": {
  9810. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9811. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  9812. },
  9813. "funding": [
  9814. {
  9815. "url": "https://github.com/sebastianbergmann",
  9816. "type": "github"
  9817. }
  9818. ],
  9819. "time": "2023-05-07T05:35:17+00:00"
  9820. },
  9821. {
  9822. "name": "stymiee/email-validator",
  9823. "version": "1.1.3",
  9824. "source": {
  9825. "type": "git",
  9826. "url": "https://github.com/stymiee/email-validator.git",
  9827. "reference": "017a53567aadc82e51773b887d0dff381aae5f2e"
  9828. },
  9829. "dist": {
  9830. "type": "zip",
  9831. "url": "https://api.github.com/repos/stymiee/email-validator/zipball/017a53567aadc82e51773b887d0dff381aae5f2e",
  9832. "reference": "017a53567aadc82e51773b887d0dff381aae5f2e",
  9833. "shasum": ""
  9834. },
  9835. "require": {
  9836. "ext-json": "*",
  9837. "php": ">=7.2.0"
  9838. },
  9839. "require-dev": {
  9840. "nunomaduro/phpinsights": "@stable",
  9841. "phpmd/phpmd": "@stable",
  9842. "phpunit/phpunit": "^8",
  9843. "squizlabs/php_codesniffer": "3.*"
  9844. },
  9845. "type": "library",
  9846. "autoload": {
  9847. "psr-4": {
  9848. "EmailValidator\\": [
  9849. "src/EmailValidator/"
  9850. ]
  9851. }
  9852. },
  9853. "notification-url": "https://packagist.org/downloads/",
  9854. "license": [
  9855. "Apache-2.0"
  9856. ],
  9857. "authors": [
  9858. {
  9859. "name": "John Conde",
  9860. "email": "stymiee@gmail.com",
  9861. "homepage": "https://stymiee.dev",
  9862. "role": "Developer"
  9863. }
  9864. ],
  9865. "description": "The Email Validator library builds upon PHP's built in filter_var($emailAddress, FILTER_VALIDATE_EMAIL); by adding a default MX record check. It also offers additional validation against disposable email addresses, free email address providers, and a custom banned domain list.",
  9866. "homepage": "https://github.com/stymiee/php-simple-encryption",
  9867. "keywords": [
  9868. "email",
  9869. "php",
  9870. "validation"
  9871. ],
  9872. "support": {
  9873. "issues": "https://github.com/stymiee/email-validator/issues",
  9874. "source": "https://github.com/stymiee/email-validator/tree/1.1.3"
  9875. },
  9876. "time": "2022-10-11T19:23:13+00:00"
  9877. },
  9878. {
  9879. "name": "symfony/console",
  9880. "version": "v6.3.8",
  9881. "source": {
  9882. "type": "git",
  9883. "url": "https://github.com/symfony/console.git",
  9884. "reference": "0d14a9f6d04d4ac38a8cea1171f4554e325dae92"
  9885. },
  9886. "dist": {
  9887. "type": "zip",
  9888. "url": "https://api.github.com/repos/symfony/console/zipball/0d14a9f6d04d4ac38a8cea1171f4554e325dae92",
  9889. "reference": "0d14a9f6d04d4ac38a8cea1171f4554e325dae92",
  9890. "shasum": ""
  9891. },
  9892. "require": {
  9893. "php": ">=8.1",
  9894. "symfony/deprecation-contracts": "^2.5|^3",
  9895. "symfony/polyfill-mbstring": "~1.0",
  9896. "symfony/service-contracts": "^2.5|^3",
  9897. "symfony/string": "^5.4|^6.0"
  9898. },
  9899. "conflict": {
  9900. "symfony/dependency-injection": "<5.4",
  9901. "symfony/dotenv": "<5.4",
  9902. "symfony/event-dispatcher": "<5.4",
  9903. "symfony/lock": "<5.4",
  9904. "symfony/process": "<5.4"
  9905. },
  9906. "provide": {
  9907. "psr/log-implementation": "1.0|2.0|3.0"
  9908. },
  9909. "require-dev": {
  9910. "psr/log": "^1|^2|^3",
  9911. "symfony/config": "^5.4|^6.0",
  9912. "symfony/dependency-injection": "^5.4|^6.0",
  9913. "symfony/event-dispatcher": "^5.4|^6.0",
  9914. "symfony/lock": "^5.4|^6.0",
  9915. "symfony/process": "^5.4|^6.0",
  9916. "symfony/var-dumper": "^5.4|^6.0"
  9917. },
  9918. "type": "library",
  9919. "autoload": {
  9920. "psr-4": {
  9921. "Symfony\\Component\\Console\\": ""
  9922. },
  9923. "exclude-from-classmap": [
  9924. "/Tests/"
  9925. ]
  9926. },
  9927. "notification-url": "https://packagist.org/downloads/",
  9928. "license": [
  9929. "MIT"
  9930. ],
  9931. "authors": [
  9932. {
  9933. "name": "Fabien Potencier",
  9934. "email": "fabien@symfony.com"
  9935. },
  9936. {
  9937. "name": "Symfony Community",
  9938. "homepage": "https://symfony.com/contributors"
  9939. }
  9940. ],
  9941. "description": "Eases the creation of beautiful and testable command line interfaces",
  9942. "homepage": "https://symfony.com",
  9943. "keywords": [
  9944. "cli",
  9945. "command-line",
  9946. "console",
  9947. "terminal"
  9948. ],
  9949. "support": {
  9950. "source": "https://github.com/symfony/console/tree/v6.3.8"
  9951. },
  9952. "funding": [
  9953. {
  9954. "url": "https://symfony.com/sponsor",
  9955. "type": "custom"
  9956. },
  9957. {
  9958. "url": "https://github.com/fabpot",
  9959. "type": "github"
  9960. },
  9961. {
  9962. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9963. "type": "tidelift"
  9964. }
  9965. ],
  9966. "time": "2023-10-31T08:09:35+00:00"
  9967. },
  9968. {
  9969. "name": "symfony/dependency-injection",
  9970. "version": "v6.3.8",
  9971. "source": {
  9972. "type": "git",
  9973. "url": "https://github.com/symfony/dependency-injection.git",
  9974. "reference": "1f30f545c4151f611148fc19e28d54d39e0a00bc"
  9975. },
  9976. "dist": {
  9977. "type": "zip",
  9978. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/1f30f545c4151f611148fc19e28d54d39e0a00bc",
  9979. "reference": "1f30f545c4151f611148fc19e28d54d39e0a00bc",
  9980. "shasum": ""
  9981. },
  9982. "require": {
  9983. "php": ">=8.1",
  9984. "psr/container": "^1.1|^2.0",
  9985. "symfony/deprecation-contracts": "^2.5|^3",
  9986. "symfony/service-contracts": "^2.5|^3.0",
  9987. "symfony/var-exporter": "^6.2.10"
  9988. },
  9989. "conflict": {
  9990. "ext-psr": "<1.1|>=2",
  9991. "symfony/config": "<6.1",
  9992. "symfony/finder": "<5.4",
  9993. "symfony/proxy-manager-bridge": "<6.3",
  9994. "symfony/yaml": "<5.4"
  9995. },
  9996. "provide": {
  9997. "psr/container-implementation": "1.1|2.0",
  9998. "symfony/service-implementation": "1.1|2.0|3.0"
  9999. },
  10000. "require-dev": {
  10001. "symfony/config": "^6.1",
  10002. "symfony/expression-language": "^5.4|^6.0",
  10003. "symfony/yaml": "^5.4|^6.0"
  10004. },
  10005. "type": "library",
  10006. "autoload": {
  10007. "psr-4": {
  10008. "Symfony\\Component\\DependencyInjection\\": ""
  10009. },
  10010. "exclude-from-classmap": [
  10011. "/Tests/"
  10012. ]
  10013. },
  10014. "notification-url": "https://packagist.org/downloads/",
  10015. "license": [
  10016. "MIT"
  10017. ],
  10018. "authors": [
  10019. {
  10020. "name": "Fabien Potencier",
  10021. "email": "fabien@symfony.com"
  10022. },
  10023. {
  10024. "name": "Symfony Community",
  10025. "homepage": "https://symfony.com/contributors"
  10026. }
  10027. ],
  10028. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  10029. "homepage": "https://symfony.com",
  10030. "support": {
  10031. "source": "https://github.com/symfony/dependency-injection/tree/v6.3.8"
  10032. },
  10033. "funding": [
  10034. {
  10035. "url": "https://symfony.com/sponsor",
  10036. "type": "custom"
  10037. },
  10038. {
  10039. "url": "https://github.com/fabpot",
  10040. "type": "github"
  10041. },
  10042. {
  10043. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10044. "type": "tidelift"
  10045. }
  10046. ],
  10047. "time": "2023-10-31T08:07:48+00:00"
  10048. },
  10049. {
  10050. "name": "symfony/deprecation-contracts",
  10051. "version": "v3.3.0",
  10052. "source": {
  10053. "type": "git",
  10054. "url": "https://github.com/symfony/deprecation-contracts.git",
  10055. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  10056. },
  10057. "dist": {
  10058. "type": "zip",
  10059. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  10060. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  10061. "shasum": ""
  10062. },
  10063. "require": {
  10064. "php": ">=8.1"
  10065. },
  10066. "type": "library",
  10067. "extra": {
  10068. "branch-alias": {
  10069. "dev-main": "3.4-dev"
  10070. },
  10071. "thanks": {
  10072. "name": "symfony/contracts",
  10073. "url": "https://github.com/symfony/contracts"
  10074. }
  10075. },
  10076. "autoload": {
  10077. "files": [
  10078. "function.php"
  10079. ]
  10080. },
  10081. "notification-url": "https://packagist.org/downloads/",
  10082. "license": [
  10083. "MIT"
  10084. ],
  10085. "authors": [
  10086. {
  10087. "name": "Nicolas Grekas",
  10088. "email": "p@tchwork.com"
  10089. },
  10090. {
  10091. "name": "Symfony Community",
  10092. "homepage": "https://symfony.com/contributors"
  10093. }
  10094. ],
  10095. "description": "A generic function and convention to trigger deprecation notices",
  10096. "homepage": "https://symfony.com",
  10097. "support": {
  10098. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.3.0"
  10099. },
  10100. "funding": [
  10101. {
  10102. "url": "https://symfony.com/sponsor",
  10103. "type": "custom"
  10104. },
  10105. {
  10106. "url": "https://github.com/fabpot",
  10107. "type": "github"
  10108. },
  10109. {
  10110. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10111. "type": "tidelift"
  10112. }
  10113. ],
  10114. "time": "2023-05-23T14:45:45+00:00"
  10115. },
  10116. {
  10117. "name": "symfony/error-handler",
  10118. "version": "v6.3.5",
  10119. "source": {
  10120. "type": "git",
  10121. "url": "https://github.com/symfony/error-handler.git",
  10122. "reference": "1f69476b64fb47105c06beef757766c376b548c4"
  10123. },
  10124. "dist": {
  10125. "type": "zip",
  10126. "url": "https://api.github.com/repos/symfony/error-handler/zipball/1f69476b64fb47105c06beef757766c376b548c4",
  10127. "reference": "1f69476b64fb47105c06beef757766c376b548c4",
  10128. "shasum": ""
  10129. },
  10130. "require": {
  10131. "php": ">=8.1",
  10132. "psr/log": "^1|^2|^3",
  10133. "symfony/var-dumper": "^5.4|^6.0"
  10134. },
  10135. "conflict": {
  10136. "symfony/deprecation-contracts": "<2.5"
  10137. },
  10138. "require-dev": {
  10139. "symfony/deprecation-contracts": "^2.5|^3",
  10140. "symfony/http-kernel": "^5.4|^6.0",
  10141. "symfony/serializer": "^5.4|^6.0"
  10142. },
  10143. "bin": [
  10144. "Resources/bin/patch-type-declarations"
  10145. ],
  10146. "type": "library",
  10147. "autoload": {
  10148. "psr-4": {
  10149. "Symfony\\Component\\ErrorHandler\\": ""
  10150. },
  10151. "exclude-from-classmap": [
  10152. "/Tests/"
  10153. ]
  10154. },
  10155. "notification-url": "https://packagist.org/downloads/",
  10156. "license": [
  10157. "MIT"
  10158. ],
  10159. "authors": [
  10160. {
  10161. "name": "Fabien Potencier",
  10162. "email": "fabien@symfony.com"
  10163. },
  10164. {
  10165. "name": "Symfony Community",
  10166. "homepage": "https://symfony.com/contributors"
  10167. }
  10168. ],
  10169. "description": "Provides tools to manage errors and ease debugging PHP code",
  10170. "homepage": "https://symfony.com",
  10171. "support": {
  10172. "source": "https://github.com/symfony/error-handler/tree/v6.3.5"
  10173. },
  10174. "funding": [
  10175. {
  10176. "url": "https://symfony.com/sponsor",
  10177. "type": "custom"
  10178. },
  10179. {
  10180. "url": "https://github.com/fabpot",
  10181. "type": "github"
  10182. },
  10183. {
  10184. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10185. "type": "tidelift"
  10186. }
  10187. ],
  10188. "time": "2023-09-12T06:57:20+00:00"
  10189. },
  10190. {
  10191. "name": "symfony/event-dispatcher",
  10192. "version": "v6.3.2",
  10193. "source": {
  10194. "type": "git",
  10195. "url": "https://github.com/symfony/event-dispatcher.git",
  10196. "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e"
  10197. },
  10198. "dist": {
  10199. "type": "zip",
  10200. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/adb01fe097a4ee930db9258a3cc906b5beb5cf2e",
  10201. "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e",
  10202. "shasum": ""
  10203. },
  10204. "require": {
  10205. "php": ">=8.1",
  10206. "symfony/event-dispatcher-contracts": "^2.5|^3"
  10207. },
  10208. "conflict": {
  10209. "symfony/dependency-injection": "<5.4",
  10210. "symfony/service-contracts": "<2.5"
  10211. },
  10212. "provide": {
  10213. "psr/event-dispatcher-implementation": "1.0",
  10214. "symfony/event-dispatcher-implementation": "2.0|3.0"
  10215. },
  10216. "require-dev": {
  10217. "psr/log": "^1|^2|^3",
  10218. "symfony/config": "^5.4|^6.0",
  10219. "symfony/dependency-injection": "^5.4|^6.0",
  10220. "symfony/error-handler": "^5.4|^6.0",
  10221. "symfony/expression-language": "^5.4|^6.0",
  10222. "symfony/http-foundation": "^5.4|^6.0",
  10223. "symfony/service-contracts": "^2.5|^3",
  10224. "symfony/stopwatch": "^5.4|^6.0"
  10225. },
  10226. "type": "library",
  10227. "autoload": {
  10228. "psr-4": {
  10229. "Symfony\\Component\\EventDispatcher\\": ""
  10230. },
  10231. "exclude-from-classmap": [
  10232. "/Tests/"
  10233. ]
  10234. },
  10235. "notification-url": "https://packagist.org/downloads/",
  10236. "license": [
  10237. "MIT"
  10238. ],
  10239. "authors": [
  10240. {
  10241. "name": "Fabien Potencier",
  10242. "email": "fabien@symfony.com"
  10243. },
  10244. {
  10245. "name": "Symfony Community",
  10246. "homepage": "https://symfony.com/contributors"
  10247. }
  10248. ],
  10249. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  10250. "homepage": "https://symfony.com",
  10251. "support": {
  10252. "source": "https://github.com/symfony/event-dispatcher/tree/v6.3.2"
  10253. },
  10254. "funding": [
  10255. {
  10256. "url": "https://symfony.com/sponsor",
  10257. "type": "custom"
  10258. },
  10259. {
  10260. "url": "https://github.com/fabpot",
  10261. "type": "github"
  10262. },
  10263. {
  10264. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10265. "type": "tidelift"
  10266. }
  10267. ],
  10268. "time": "2023-07-06T06:56:43+00:00"
  10269. },
  10270. {
  10271. "name": "symfony/event-dispatcher-contracts",
  10272. "version": "v3.3.0",
  10273. "source": {
  10274. "type": "git",
  10275. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10276. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  10277. },
  10278. "dist": {
  10279. "type": "zip",
  10280. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  10281. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  10282. "shasum": ""
  10283. },
  10284. "require": {
  10285. "php": ">=8.1",
  10286. "psr/event-dispatcher": "^1"
  10287. },
  10288. "type": "library",
  10289. "extra": {
  10290. "branch-alias": {
  10291. "dev-main": "3.4-dev"
  10292. },
  10293. "thanks": {
  10294. "name": "symfony/contracts",
  10295. "url": "https://github.com/symfony/contracts"
  10296. }
  10297. },
  10298. "autoload": {
  10299. "psr-4": {
  10300. "Symfony\\Contracts\\EventDispatcher\\": ""
  10301. }
  10302. },
  10303. "notification-url": "https://packagist.org/downloads/",
  10304. "license": [
  10305. "MIT"
  10306. ],
  10307. "authors": [
  10308. {
  10309. "name": "Nicolas Grekas",
  10310. "email": "p@tchwork.com"
  10311. },
  10312. {
  10313. "name": "Symfony Community",
  10314. "homepage": "https://symfony.com/contributors"
  10315. }
  10316. ],
  10317. "description": "Generic abstractions related to dispatching event",
  10318. "homepage": "https://symfony.com",
  10319. "keywords": [
  10320. "abstractions",
  10321. "contracts",
  10322. "decoupling",
  10323. "interfaces",
  10324. "interoperability",
  10325. "standards"
  10326. ],
  10327. "support": {
  10328. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.3.0"
  10329. },
  10330. "funding": [
  10331. {
  10332. "url": "https://symfony.com/sponsor",
  10333. "type": "custom"
  10334. },
  10335. {
  10336. "url": "https://github.com/fabpot",
  10337. "type": "github"
  10338. },
  10339. {
  10340. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10341. "type": "tidelift"
  10342. }
  10343. ],
  10344. "time": "2023-05-23T14:45:45+00:00"
  10345. },
  10346. {
  10347. "name": "symfony/filesystem",
  10348. "version": "v6.3.1",
  10349. "source": {
  10350. "type": "git",
  10351. "url": "https://github.com/symfony/filesystem.git",
  10352. "reference": "edd36776956f2a6fcf577edb5b05eb0e3bdc52ae"
  10353. },
  10354. "dist": {
  10355. "type": "zip",
  10356. "url": "https://api.github.com/repos/symfony/filesystem/zipball/edd36776956f2a6fcf577edb5b05eb0e3bdc52ae",
  10357. "reference": "edd36776956f2a6fcf577edb5b05eb0e3bdc52ae",
  10358. "shasum": ""
  10359. },
  10360. "require": {
  10361. "php": ">=8.1",
  10362. "symfony/polyfill-ctype": "~1.8",
  10363. "symfony/polyfill-mbstring": "~1.8"
  10364. },
  10365. "type": "library",
  10366. "autoload": {
  10367. "psr-4": {
  10368. "Symfony\\Component\\Filesystem\\": ""
  10369. },
  10370. "exclude-from-classmap": [
  10371. "/Tests/"
  10372. ]
  10373. },
  10374. "notification-url": "https://packagist.org/downloads/",
  10375. "license": [
  10376. "MIT"
  10377. ],
  10378. "authors": [
  10379. {
  10380. "name": "Fabien Potencier",
  10381. "email": "fabien@symfony.com"
  10382. },
  10383. {
  10384. "name": "Symfony Community",
  10385. "homepage": "https://symfony.com/contributors"
  10386. }
  10387. ],
  10388. "description": "Provides basic utilities for the filesystem",
  10389. "homepage": "https://symfony.com",
  10390. "support": {
  10391. "source": "https://github.com/symfony/filesystem/tree/v6.3.1"
  10392. },
  10393. "funding": [
  10394. {
  10395. "url": "https://symfony.com/sponsor",
  10396. "type": "custom"
  10397. },
  10398. {
  10399. "url": "https://github.com/fabpot",
  10400. "type": "github"
  10401. },
  10402. {
  10403. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10404. "type": "tidelift"
  10405. }
  10406. ],
  10407. "time": "2023-06-01T08:30:39+00:00"
  10408. },
  10409. {
  10410. "name": "symfony/finder",
  10411. "version": "v6.3.5",
  10412. "source": {
  10413. "type": "git",
  10414. "url": "https://github.com/symfony/finder.git",
  10415. "reference": "a1b31d88c0e998168ca7792f222cbecee47428c4"
  10416. },
  10417. "dist": {
  10418. "type": "zip",
  10419. "url": "https://api.github.com/repos/symfony/finder/zipball/a1b31d88c0e998168ca7792f222cbecee47428c4",
  10420. "reference": "a1b31d88c0e998168ca7792f222cbecee47428c4",
  10421. "shasum": ""
  10422. },
  10423. "require": {
  10424. "php": ">=8.1"
  10425. },
  10426. "require-dev": {
  10427. "symfony/filesystem": "^6.0"
  10428. },
  10429. "type": "library",
  10430. "autoload": {
  10431. "psr-4": {
  10432. "Symfony\\Component\\Finder\\": ""
  10433. },
  10434. "exclude-from-classmap": [
  10435. "/Tests/"
  10436. ]
  10437. },
  10438. "notification-url": "https://packagist.org/downloads/",
  10439. "license": [
  10440. "MIT"
  10441. ],
  10442. "authors": [
  10443. {
  10444. "name": "Fabien Potencier",
  10445. "email": "fabien@symfony.com"
  10446. },
  10447. {
  10448. "name": "Symfony Community",
  10449. "homepage": "https://symfony.com/contributors"
  10450. }
  10451. ],
  10452. "description": "Finds files and directories via an intuitive fluent interface",
  10453. "homepage": "https://symfony.com",
  10454. "support": {
  10455. "source": "https://github.com/symfony/finder/tree/v6.3.5"
  10456. },
  10457. "funding": [
  10458. {
  10459. "url": "https://symfony.com/sponsor",
  10460. "type": "custom"
  10461. },
  10462. {
  10463. "url": "https://github.com/fabpot",
  10464. "type": "github"
  10465. },
  10466. {
  10467. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10468. "type": "tidelift"
  10469. }
  10470. ],
  10471. "time": "2023-09-26T12:56:25+00:00"
  10472. },
  10473. {
  10474. "name": "symfony/http-foundation",
  10475. "version": "v6.3.8",
  10476. "source": {
  10477. "type": "git",
  10478. "url": "https://github.com/symfony/http-foundation.git",
  10479. "reference": "ce332676de1912c4389222987193c3ef38033df6"
  10480. },
  10481. "dist": {
  10482. "type": "zip",
  10483. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ce332676de1912c4389222987193c3ef38033df6",
  10484. "reference": "ce332676de1912c4389222987193c3ef38033df6",
  10485. "shasum": ""
  10486. },
  10487. "require": {
  10488. "php": ">=8.1",
  10489. "symfony/deprecation-contracts": "^2.5|^3",
  10490. "symfony/polyfill-mbstring": "~1.1",
  10491. "symfony/polyfill-php83": "^1.27"
  10492. },
  10493. "conflict": {
  10494. "symfony/cache": "<6.3"
  10495. },
  10496. "require-dev": {
  10497. "doctrine/dbal": "^2.13.1|^3|^4",
  10498. "predis/predis": "^1.1|^2.0",
  10499. "symfony/cache": "^6.3",
  10500. "symfony/dependency-injection": "^5.4|^6.0",
  10501. "symfony/expression-language": "^5.4|^6.0",
  10502. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  10503. "symfony/mime": "^5.4|^6.0",
  10504. "symfony/rate-limiter": "^5.2|^6.0"
  10505. },
  10506. "type": "library",
  10507. "autoload": {
  10508. "psr-4": {
  10509. "Symfony\\Component\\HttpFoundation\\": ""
  10510. },
  10511. "exclude-from-classmap": [
  10512. "/Tests/"
  10513. ]
  10514. },
  10515. "notification-url": "https://packagist.org/downloads/",
  10516. "license": [
  10517. "MIT"
  10518. ],
  10519. "authors": [
  10520. {
  10521. "name": "Fabien Potencier",
  10522. "email": "fabien@symfony.com"
  10523. },
  10524. {
  10525. "name": "Symfony Community",
  10526. "homepage": "https://symfony.com/contributors"
  10527. }
  10528. ],
  10529. "description": "Defines an object-oriented layer for the HTTP specification",
  10530. "homepage": "https://symfony.com",
  10531. "support": {
  10532. "source": "https://github.com/symfony/http-foundation/tree/v6.3.8"
  10533. },
  10534. "funding": [
  10535. {
  10536. "url": "https://symfony.com/sponsor",
  10537. "type": "custom"
  10538. },
  10539. {
  10540. "url": "https://github.com/fabpot",
  10541. "type": "github"
  10542. },
  10543. {
  10544. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10545. "type": "tidelift"
  10546. }
  10547. ],
  10548. "time": "2023-11-07T10:17:15+00:00"
  10549. },
  10550. {
  10551. "name": "symfony/http-kernel",
  10552. "version": "v6.3.8",
  10553. "source": {
  10554. "type": "git",
  10555. "url": "https://github.com/symfony/http-kernel.git",
  10556. "reference": "929202375ccf44a309c34aeca8305408442ebcc1"
  10557. },
  10558. "dist": {
  10559. "type": "zip",
  10560. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/929202375ccf44a309c34aeca8305408442ebcc1",
  10561. "reference": "929202375ccf44a309c34aeca8305408442ebcc1",
  10562. "shasum": ""
  10563. },
  10564. "require": {
  10565. "php": ">=8.1",
  10566. "psr/log": "^1|^2|^3",
  10567. "symfony/deprecation-contracts": "^2.5|^3",
  10568. "symfony/error-handler": "^6.3",
  10569. "symfony/event-dispatcher": "^5.4|^6.0",
  10570. "symfony/http-foundation": "^6.3.4",
  10571. "symfony/polyfill-ctype": "^1.8"
  10572. },
  10573. "conflict": {
  10574. "symfony/browser-kit": "<5.4",
  10575. "symfony/cache": "<5.4",
  10576. "symfony/config": "<6.1",
  10577. "symfony/console": "<5.4",
  10578. "symfony/dependency-injection": "<6.3.4",
  10579. "symfony/doctrine-bridge": "<5.4",
  10580. "symfony/form": "<5.4",
  10581. "symfony/http-client": "<5.4",
  10582. "symfony/http-client-contracts": "<2.5",
  10583. "symfony/mailer": "<5.4",
  10584. "symfony/messenger": "<5.4",
  10585. "symfony/translation": "<5.4",
  10586. "symfony/translation-contracts": "<2.5",
  10587. "symfony/twig-bridge": "<5.4",
  10588. "symfony/validator": "<5.4",
  10589. "symfony/var-dumper": "<6.3",
  10590. "twig/twig": "<2.13"
  10591. },
  10592. "provide": {
  10593. "psr/log-implementation": "1.0|2.0|3.0"
  10594. },
  10595. "require-dev": {
  10596. "psr/cache": "^1.0|^2.0|^3.0",
  10597. "symfony/browser-kit": "^5.4|^6.0",
  10598. "symfony/clock": "^6.2",
  10599. "symfony/config": "^6.1",
  10600. "symfony/console": "^5.4|^6.0",
  10601. "symfony/css-selector": "^5.4|^6.0",
  10602. "symfony/dependency-injection": "^6.3.4",
  10603. "symfony/dom-crawler": "^5.4|^6.0",
  10604. "symfony/expression-language": "^5.4|^6.0",
  10605. "symfony/finder": "^5.4|^6.0",
  10606. "symfony/http-client-contracts": "^2.5|^3",
  10607. "symfony/process": "^5.4|^6.0",
  10608. "symfony/property-access": "^5.4.5|^6.0.5",
  10609. "symfony/routing": "^5.4|^6.0",
  10610. "symfony/serializer": "^6.3",
  10611. "symfony/stopwatch": "^5.4|^6.0",
  10612. "symfony/translation": "^5.4|^6.0",
  10613. "symfony/translation-contracts": "^2.5|^3",
  10614. "symfony/uid": "^5.4|^6.0",
  10615. "symfony/validator": "^6.3",
  10616. "symfony/var-exporter": "^6.2",
  10617. "twig/twig": "^2.13|^3.0.4"
  10618. },
  10619. "type": "library",
  10620. "autoload": {
  10621. "psr-4": {
  10622. "Symfony\\Component\\HttpKernel\\": ""
  10623. },
  10624. "exclude-from-classmap": [
  10625. "/Tests/"
  10626. ]
  10627. },
  10628. "notification-url": "https://packagist.org/downloads/",
  10629. "license": [
  10630. "MIT"
  10631. ],
  10632. "authors": [
  10633. {
  10634. "name": "Fabien Potencier",
  10635. "email": "fabien@symfony.com"
  10636. },
  10637. {
  10638. "name": "Symfony Community",
  10639. "homepage": "https://symfony.com/contributors"
  10640. }
  10641. ],
  10642. "description": "Provides a structured process for converting a Request into a Response",
  10643. "homepage": "https://symfony.com",
  10644. "support": {
  10645. "source": "https://github.com/symfony/http-kernel/tree/v6.3.8"
  10646. },
  10647. "funding": [
  10648. {
  10649. "url": "https://symfony.com/sponsor",
  10650. "type": "custom"
  10651. },
  10652. {
  10653. "url": "https://github.com/fabpot",
  10654. "type": "github"
  10655. },
  10656. {
  10657. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10658. "type": "tidelift"
  10659. }
  10660. ],
  10661. "time": "2023-11-10T13:47:32+00:00"
  10662. },
  10663. {
  10664. "name": "symfony/mime",
  10665. "version": "v6.3.5",
  10666. "source": {
  10667. "type": "git",
  10668. "url": "https://github.com/symfony/mime.git",
  10669. "reference": "d5179eedf1cb2946dbd760475ebf05c251ef6a6e"
  10670. },
  10671. "dist": {
  10672. "type": "zip",
  10673. "url": "https://api.github.com/repos/symfony/mime/zipball/d5179eedf1cb2946dbd760475ebf05c251ef6a6e",
  10674. "reference": "d5179eedf1cb2946dbd760475ebf05c251ef6a6e",
  10675. "shasum": ""
  10676. },
  10677. "require": {
  10678. "php": ">=8.1",
  10679. "symfony/deprecation-contracts": "^2.5|^3",
  10680. "symfony/polyfill-intl-idn": "^1.10",
  10681. "symfony/polyfill-mbstring": "^1.0"
  10682. },
  10683. "conflict": {
  10684. "egulias/email-validator": "~3.0.0",
  10685. "phpdocumentor/reflection-docblock": "<3.2.2",
  10686. "phpdocumentor/type-resolver": "<1.4.0",
  10687. "symfony/mailer": "<5.4",
  10688. "symfony/serializer": "<6.2.13|>=6.3,<6.3.2"
  10689. },
  10690. "require-dev": {
  10691. "egulias/email-validator": "^2.1.10|^3.1|^4",
  10692. "league/html-to-markdown": "^5.0",
  10693. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  10694. "symfony/dependency-injection": "^5.4|^6.0",
  10695. "symfony/property-access": "^5.4|^6.0",
  10696. "symfony/property-info": "^5.4|^6.0",
  10697. "symfony/serializer": "~6.2.13|^6.3.2"
  10698. },
  10699. "type": "library",
  10700. "autoload": {
  10701. "psr-4": {
  10702. "Symfony\\Component\\Mime\\": ""
  10703. },
  10704. "exclude-from-classmap": [
  10705. "/Tests/"
  10706. ]
  10707. },
  10708. "notification-url": "https://packagist.org/downloads/",
  10709. "license": [
  10710. "MIT"
  10711. ],
  10712. "authors": [
  10713. {
  10714. "name": "Fabien Potencier",
  10715. "email": "fabien@symfony.com"
  10716. },
  10717. {
  10718. "name": "Symfony Community",
  10719. "homepage": "https://symfony.com/contributors"
  10720. }
  10721. ],
  10722. "description": "Allows manipulating MIME messages",
  10723. "homepage": "https://symfony.com",
  10724. "keywords": [
  10725. "mime",
  10726. "mime-type"
  10727. ],
  10728. "support": {
  10729. "source": "https://github.com/symfony/mime/tree/v6.3.5"
  10730. },
  10731. "funding": [
  10732. {
  10733. "url": "https://symfony.com/sponsor",
  10734. "type": "custom"
  10735. },
  10736. {
  10737. "url": "https://github.com/fabpot",
  10738. "type": "github"
  10739. },
  10740. {
  10741. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10742. "type": "tidelift"
  10743. }
  10744. ],
  10745. "time": "2023-09-29T06:59:36+00:00"
  10746. },
  10747. {
  10748. "name": "symfony/polyfill-ctype",
  10749. "version": "v1.27.0",
  10750. "source": {
  10751. "type": "git",
  10752. "url": "https://github.com/symfony/polyfill-ctype.git",
  10753. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  10754. },
  10755. "dist": {
  10756. "type": "zip",
  10757. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  10758. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  10759. "shasum": ""
  10760. },
  10761. "require": {
  10762. "php": ">=7.1"
  10763. },
  10764. "provide": {
  10765. "ext-ctype": "*"
  10766. },
  10767. "suggest": {
  10768. "ext-ctype": "For best performance"
  10769. },
  10770. "type": "library",
  10771. "extra": {
  10772. "branch-alias": {
  10773. "dev-main": "1.27-dev"
  10774. },
  10775. "thanks": {
  10776. "name": "symfony/polyfill",
  10777. "url": "https://github.com/symfony/polyfill"
  10778. }
  10779. },
  10780. "autoload": {
  10781. "files": [
  10782. "bootstrap.php"
  10783. ],
  10784. "psr-4": {
  10785. "Symfony\\Polyfill\\Ctype\\": ""
  10786. }
  10787. },
  10788. "notification-url": "https://packagist.org/downloads/",
  10789. "license": [
  10790. "MIT"
  10791. ],
  10792. "authors": [
  10793. {
  10794. "name": "Gert de Pagter",
  10795. "email": "BackEndTea@gmail.com"
  10796. },
  10797. {
  10798. "name": "Symfony Community",
  10799. "homepage": "https://symfony.com/contributors"
  10800. }
  10801. ],
  10802. "description": "Symfony polyfill for ctype functions",
  10803. "homepage": "https://symfony.com",
  10804. "keywords": [
  10805. "compatibility",
  10806. "ctype",
  10807. "polyfill",
  10808. "portable"
  10809. ],
  10810. "support": {
  10811. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  10812. },
  10813. "funding": [
  10814. {
  10815. "url": "https://symfony.com/sponsor",
  10816. "type": "custom"
  10817. },
  10818. {
  10819. "url": "https://github.com/fabpot",
  10820. "type": "github"
  10821. },
  10822. {
  10823. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10824. "type": "tidelift"
  10825. }
  10826. ],
  10827. "time": "2022-11-03T14:55:06+00:00"
  10828. },
  10829. {
  10830. "name": "symfony/polyfill-iconv",
  10831. "version": "v1.27.0",
  10832. "source": {
  10833. "type": "git",
  10834. "url": "https://github.com/symfony/polyfill-iconv.git",
  10835. "reference": "927013f3aac555983a5059aada98e1907d842695"
  10836. },
  10837. "dist": {
  10838. "type": "zip",
  10839. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695",
  10840. "reference": "927013f3aac555983a5059aada98e1907d842695",
  10841. "shasum": ""
  10842. },
  10843. "require": {
  10844. "php": ">=7.1"
  10845. },
  10846. "provide": {
  10847. "ext-iconv": "*"
  10848. },
  10849. "suggest": {
  10850. "ext-iconv": "For best performance"
  10851. },
  10852. "type": "library",
  10853. "extra": {
  10854. "branch-alias": {
  10855. "dev-main": "1.27-dev"
  10856. },
  10857. "thanks": {
  10858. "name": "symfony/polyfill",
  10859. "url": "https://github.com/symfony/polyfill"
  10860. }
  10861. },
  10862. "autoload": {
  10863. "files": [
  10864. "bootstrap.php"
  10865. ],
  10866. "psr-4": {
  10867. "Symfony\\Polyfill\\Iconv\\": ""
  10868. }
  10869. },
  10870. "notification-url": "https://packagist.org/downloads/",
  10871. "license": [
  10872. "MIT"
  10873. ],
  10874. "authors": [
  10875. {
  10876. "name": "Nicolas Grekas",
  10877. "email": "p@tchwork.com"
  10878. },
  10879. {
  10880. "name": "Symfony Community",
  10881. "homepage": "https://symfony.com/contributors"
  10882. }
  10883. ],
  10884. "description": "Symfony polyfill for the Iconv extension",
  10885. "homepage": "https://symfony.com",
  10886. "keywords": [
  10887. "compatibility",
  10888. "iconv",
  10889. "polyfill",
  10890. "portable",
  10891. "shim"
  10892. ],
  10893. "support": {
  10894. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0"
  10895. },
  10896. "funding": [
  10897. {
  10898. "url": "https://symfony.com/sponsor",
  10899. "type": "custom"
  10900. },
  10901. {
  10902. "url": "https://github.com/fabpot",
  10903. "type": "github"
  10904. },
  10905. {
  10906. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10907. "type": "tidelift"
  10908. }
  10909. ],
  10910. "time": "2022-11-03T14:55:06+00:00"
  10911. },
  10912. {
  10913. "name": "symfony/polyfill-intl-grapheme",
  10914. "version": "v1.27.0",
  10915. "source": {
  10916. "type": "git",
  10917. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  10918. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  10919. },
  10920. "dist": {
  10921. "type": "zip",
  10922. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  10923. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  10924. "shasum": ""
  10925. },
  10926. "require": {
  10927. "php": ">=7.1"
  10928. },
  10929. "suggest": {
  10930. "ext-intl": "For best performance"
  10931. },
  10932. "type": "library",
  10933. "extra": {
  10934. "branch-alias": {
  10935. "dev-main": "1.27-dev"
  10936. },
  10937. "thanks": {
  10938. "name": "symfony/polyfill",
  10939. "url": "https://github.com/symfony/polyfill"
  10940. }
  10941. },
  10942. "autoload": {
  10943. "files": [
  10944. "bootstrap.php"
  10945. ],
  10946. "psr-4": {
  10947. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  10948. }
  10949. },
  10950. "notification-url": "https://packagist.org/downloads/",
  10951. "license": [
  10952. "MIT"
  10953. ],
  10954. "authors": [
  10955. {
  10956. "name": "Nicolas Grekas",
  10957. "email": "p@tchwork.com"
  10958. },
  10959. {
  10960. "name": "Symfony Community",
  10961. "homepage": "https://symfony.com/contributors"
  10962. }
  10963. ],
  10964. "description": "Symfony polyfill for intl's grapheme_* functions",
  10965. "homepage": "https://symfony.com",
  10966. "keywords": [
  10967. "compatibility",
  10968. "grapheme",
  10969. "intl",
  10970. "polyfill",
  10971. "portable",
  10972. "shim"
  10973. ],
  10974. "support": {
  10975. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  10976. },
  10977. "funding": [
  10978. {
  10979. "url": "https://symfony.com/sponsor",
  10980. "type": "custom"
  10981. },
  10982. {
  10983. "url": "https://github.com/fabpot",
  10984. "type": "github"
  10985. },
  10986. {
  10987. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10988. "type": "tidelift"
  10989. }
  10990. ],
  10991. "time": "2022-11-03T14:55:06+00:00"
  10992. },
  10993. {
  10994. "name": "symfony/polyfill-intl-idn",
  10995. "version": "v1.27.0",
  10996. "source": {
  10997. "type": "git",
  10998. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  10999. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  11000. },
  11001. "dist": {
  11002. "type": "zip",
  11003. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  11004. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  11005. "shasum": ""
  11006. },
  11007. "require": {
  11008. "php": ">=7.1",
  11009. "symfony/polyfill-intl-normalizer": "^1.10",
  11010. "symfony/polyfill-php72": "^1.10"
  11011. },
  11012. "suggest": {
  11013. "ext-intl": "For best performance"
  11014. },
  11015. "type": "library",
  11016. "extra": {
  11017. "branch-alias": {
  11018. "dev-main": "1.27-dev"
  11019. },
  11020. "thanks": {
  11021. "name": "symfony/polyfill",
  11022. "url": "https://github.com/symfony/polyfill"
  11023. }
  11024. },
  11025. "autoload": {
  11026. "files": [
  11027. "bootstrap.php"
  11028. ],
  11029. "psr-4": {
  11030. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  11031. }
  11032. },
  11033. "notification-url": "https://packagist.org/downloads/",
  11034. "license": [
  11035. "MIT"
  11036. ],
  11037. "authors": [
  11038. {
  11039. "name": "Laurent Bassin",
  11040. "email": "laurent@bassin.info"
  11041. },
  11042. {
  11043. "name": "Trevor Rowbotham",
  11044. "email": "trevor.rowbotham@pm.me"
  11045. },
  11046. {
  11047. "name": "Symfony Community",
  11048. "homepage": "https://symfony.com/contributors"
  11049. }
  11050. ],
  11051. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  11052. "homepage": "https://symfony.com",
  11053. "keywords": [
  11054. "compatibility",
  11055. "idn",
  11056. "intl",
  11057. "polyfill",
  11058. "portable",
  11059. "shim"
  11060. ],
  11061. "support": {
  11062. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  11063. },
  11064. "funding": [
  11065. {
  11066. "url": "https://symfony.com/sponsor",
  11067. "type": "custom"
  11068. },
  11069. {
  11070. "url": "https://github.com/fabpot",
  11071. "type": "github"
  11072. },
  11073. {
  11074. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11075. "type": "tidelift"
  11076. }
  11077. ],
  11078. "time": "2022-11-03T14:55:06+00:00"
  11079. },
  11080. {
  11081. "name": "symfony/polyfill-intl-normalizer",
  11082. "version": "v1.27.0",
  11083. "source": {
  11084. "type": "git",
  11085. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  11086. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  11087. },
  11088. "dist": {
  11089. "type": "zip",
  11090. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  11091. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  11092. "shasum": ""
  11093. },
  11094. "require": {
  11095. "php": ">=7.1"
  11096. },
  11097. "suggest": {
  11098. "ext-intl": "For best performance"
  11099. },
  11100. "type": "library",
  11101. "extra": {
  11102. "branch-alias": {
  11103. "dev-main": "1.27-dev"
  11104. },
  11105. "thanks": {
  11106. "name": "symfony/polyfill",
  11107. "url": "https://github.com/symfony/polyfill"
  11108. }
  11109. },
  11110. "autoload": {
  11111. "files": [
  11112. "bootstrap.php"
  11113. ],
  11114. "psr-4": {
  11115. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  11116. },
  11117. "classmap": [
  11118. "Resources/stubs"
  11119. ]
  11120. },
  11121. "notification-url": "https://packagist.org/downloads/",
  11122. "license": [
  11123. "MIT"
  11124. ],
  11125. "authors": [
  11126. {
  11127. "name": "Nicolas Grekas",
  11128. "email": "p@tchwork.com"
  11129. },
  11130. {
  11131. "name": "Symfony Community",
  11132. "homepage": "https://symfony.com/contributors"
  11133. }
  11134. ],
  11135. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  11136. "homepage": "https://symfony.com",
  11137. "keywords": [
  11138. "compatibility",
  11139. "intl",
  11140. "normalizer",
  11141. "polyfill",
  11142. "portable",
  11143. "shim"
  11144. ],
  11145. "support": {
  11146. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  11147. },
  11148. "funding": [
  11149. {
  11150. "url": "https://symfony.com/sponsor",
  11151. "type": "custom"
  11152. },
  11153. {
  11154. "url": "https://github.com/fabpot",
  11155. "type": "github"
  11156. },
  11157. {
  11158. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11159. "type": "tidelift"
  11160. }
  11161. ],
  11162. "time": "2022-11-03T14:55:06+00:00"
  11163. },
  11164. {
  11165. "name": "symfony/polyfill-mbstring",
  11166. "version": "v1.27.0",
  11167. "source": {
  11168. "type": "git",
  11169. "url": "https://github.com/symfony/polyfill-mbstring.git",
  11170. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  11171. },
  11172. "dist": {
  11173. "type": "zip",
  11174. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  11175. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  11176. "shasum": ""
  11177. },
  11178. "require": {
  11179. "php": ">=7.1"
  11180. },
  11181. "provide": {
  11182. "ext-mbstring": "*"
  11183. },
  11184. "suggest": {
  11185. "ext-mbstring": "For best performance"
  11186. },
  11187. "type": "library",
  11188. "extra": {
  11189. "branch-alias": {
  11190. "dev-main": "1.27-dev"
  11191. },
  11192. "thanks": {
  11193. "name": "symfony/polyfill",
  11194. "url": "https://github.com/symfony/polyfill"
  11195. }
  11196. },
  11197. "autoload": {
  11198. "files": [
  11199. "bootstrap.php"
  11200. ],
  11201. "psr-4": {
  11202. "Symfony\\Polyfill\\Mbstring\\": ""
  11203. }
  11204. },
  11205. "notification-url": "https://packagist.org/downloads/",
  11206. "license": [
  11207. "MIT"
  11208. ],
  11209. "authors": [
  11210. {
  11211. "name": "Nicolas Grekas",
  11212. "email": "p@tchwork.com"
  11213. },
  11214. {
  11215. "name": "Symfony Community",
  11216. "homepage": "https://symfony.com/contributors"
  11217. }
  11218. ],
  11219. "description": "Symfony polyfill for the Mbstring extension",
  11220. "homepage": "https://symfony.com",
  11221. "keywords": [
  11222. "compatibility",
  11223. "mbstring",
  11224. "polyfill",
  11225. "portable",
  11226. "shim"
  11227. ],
  11228. "support": {
  11229. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  11230. },
  11231. "funding": [
  11232. {
  11233. "url": "https://symfony.com/sponsor",
  11234. "type": "custom"
  11235. },
  11236. {
  11237. "url": "https://github.com/fabpot",
  11238. "type": "github"
  11239. },
  11240. {
  11241. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11242. "type": "tidelift"
  11243. }
  11244. ],
  11245. "time": "2022-11-03T14:55:06+00:00"
  11246. },
  11247. {
  11248. "name": "symfony/polyfill-php72",
  11249. "version": "v1.28.0",
  11250. "source": {
  11251. "type": "git",
  11252. "url": "https://github.com/symfony/polyfill-php72.git",
  11253. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179"
  11254. },
  11255. "dist": {
  11256. "type": "zip",
  11257. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179",
  11258. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179",
  11259. "shasum": ""
  11260. },
  11261. "require": {
  11262. "php": ">=7.1"
  11263. },
  11264. "type": "library",
  11265. "extra": {
  11266. "branch-alias": {
  11267. "dev-main": "1.28-dev"
  11268. },
  11269. "thanks": {
  11270. "name": "symfony/polyfill",
  11271. "url": "https://github.com/symfony/polyfill"
  11272. }
  11273. },
  11274. "autoload": {
  11275. "files": [
  11276. "bootstrap.php"
  11277. ],
  11278. "psr-4": {
  11279. "Symfony\\Polyfill\\Php72\\": ""
  11280. }
  11281. },
  11282. "notification-url": "https://packagist.org/downloads/",
  11283. "license": [
  11284. "MIT"
  11285. ],
  11286. "authors": [
  11287. {
  11288. "name": "Nicolas Grekas",
  11289. "email": "p@tchwork.com"
  11290. },
  11291. {
  11292. "name": "Symfony Community",
  11293. "homepage": "https://symfony.com/contributors"
  11294. }
  11295. ],
  11296. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  11297. "homepage": "https://symfony.com",
  11298. "keywords": [
  11299. "compatibility",
  11300. "polyfill",
  11301. "portable",
  11302. "shim"
  11303. ],
  11304. "support": {
  11305. "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0"
  11306. },
  11307. "funding": [
  11308. {
  11309. "url": "https://symfony.com/sponsor",
  11310. "type": "custom"
  11311. },
  11312. {
  11313. "url": "https://github.com/fabpot",
  11314. "type": "github"
  11315. },
  11316. {
  11317. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11318. "type": "tidelift"
  11319. }
  11320. ],
  11321. "time": "2023-01-26T09:26:14+00:00"
  11322. },
  11323. {
  11324. "name": "symfony/polyfill-php80",
  11325. "version": "v1.28.0",
  11326. "source": {
  11327. "type": "git",
  11328. "url": "https://github.com/symfony/polyfill-php80.git",
  11329. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
  11330. },
  11331. "dist": {
  11332. "type": "zip",
  11333. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  11334. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  11335. "shasum": ""
  11336. },
  11337. "require": {
  11338. "php": ">=7.1"
  11339. },
  11340. "type": "library",
  11341. "extra": {
  11342. "branch-alias": {
  11343. "dev-main": "1.28-dev"
  11344. },
  11345. "thanks": {
  11346. "name": "symfony/polyfill",
  11347. "url": "https://github.com/symfony/polyfill"
  11348. }
  11349. },
  11350. "autoload": {
  11351. "files": [
  11352. "bootstrap.php"
  11353. ],
  11354. "psr-4": {
  11355. "Symfony\\Polyfill\\Php80\\": ""
  11356. },
  11357. "classmap": [
  11358. "Resources/stubs"
  11359. ]
  11360. },
  11361. "notification-url": "https://packagist.org/downloads/",
  11362. "license": [
  11363. "MIT"
  11364. ],
  11365. "authors": [
  11366. {
  11367. "name": "Ion Bazan",
  11368. "email": "ion.bazan@gmail.com"
  11369. },
  11370. {
  11371. "name": "Nicolas Grekas",
  11372. "email": "p@tchwork.com"
  11373. },
  11374. {
  11375. "name": "Symfony Community",
  11376. "homepage": "https://symfony.com/contributors"
  11377. }
  11378. ],
  11379. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  11380. "homepage": "https://symfony.com",
  11381. "keywords": [
  11382. "compatibility",
  11383. "polyfill",
  11384. "portable",
  11385. "shim"
  11386. ],
  11387. "support": {
  11388. "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
  11389. },
  11390. "funding": [
  11391. {
  11392. "url": "https://symfony.com/sponsor",
  11393. "type": "custom"
  11394. },
  11395. {
  11396. "url": "https://github.com/fabpot",
  11397. "type": "github"
  11398. },
  11399. {
  11400. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11401. "type": "tidelift"
  11402. }
  11403. ],
  11404. "time": "2023-01-26T09:26:14+00:00"
  11405. },
  11406. {
  11407. "name": "symfony/polyfill-php81",
  11408. "version": "v1.28.0",
  11409. "source": {
  11410. "type": "git",
  11411. "url": "https://github.com/symfony/polyfill-php81.git",
  11412. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b"
  11413. },
  11414. "dist": {
  11415. "type": "zip",
  11416. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/7581cd600fa9fd681b797d00b02f068e2f13263b",
  11417. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b",
  11418. "shasum": ""
  11419. },
  11420. "require": {
  11421. "php": ">=7.1"
  11422. },
  11423. "type": "library",
  11424. "extra": {
  11425. "branch-alias": {
  11426. "dev-main": "1.28-dev"
  11427. },
  11428. "thanks": {
  11429. "name": "symfony/polyfill",
  11430. "url": "https://github.com/symfony/polyfill"
  11431. }
  11432. },
  11433. "autoload": {
  11434. "files": [
  11435. "bootstrap.php"
  11436. ],
  11437. "psr-4": {
  11438. "Symfony\\Polyfill\\Php81\\": ""
  11439. },
  11440. "classmap": [
  11441. "Resources/stubs"
  11442. ]
  11443. },
  11444. "notification-url": "https://packagist.org/downloads/",
  11445. "license": [
  11446. "MIT"
  11447. ],
  11448. "authors": [
  11449. {
  11450. "name": "Nicolas Grekas",
  11451. "email": "p@tchwork.com"
  11452. },
  11453. {
  11454. "name": "Symfony Community",
  11455. "homepage": "https://symfony.com/contributors"
  11456. }
  11457. ],
  11458. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  11459. "homepage": "https://symfony.com",
  11460. "keywords": [
  11461. "compatibility",
  11462. "polyfill",
  11463. "portable",
  11464. "shim"
  11465. ],
  11466. "support": {
  11467. "source": "https://github.com/symfony/polyfill-php81/tree/v1.28.0"
  11468. },
  11469. "funding": [
  11470. {
  11471. "url": "https://symfony.com/sponsor",
  11472. "type": "custom"
  11473. },
  11474. {
  11475. "url": "https://github.com/fabpot",
  11476. "type": "github"
  11477. },
  11478. {
  11479. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11480. "type": "tidelift"
  11481. }
  11482. ],
  11483. "time": "2023-01-26T09:26:14+00:00"
  11484. },
  11485. {
  11486. "name": "symfony/polyfill-php83",
  11487. "version": "v1.27.0",
  11488. "source": {
  11489. "type": "git",
  11490. "url": "https://github.com/symfony/polyfill-php83.git",
  11491. "reference": "508c652ba3ccf69f8c97f251534f229791b52a57"
  11492. },
  11493. "dist": {
  11494. "type": "zip",
  11495. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/508c652ba3ccf69f8c97f251534f229791b52a57",
  11496. "reference": "508c652ba3ccf69f8c97f251534f229791b52a57",
  11497. "shasum": ""
  11498. },
  11499. "require": {
  11500. "php": ">=7.1",
  11501. "symfony/polyfill-php80": "^1.14"
  11502. },
  11503. "type": "library",
  11504. "extra": {
  11505. "branch-alias": {
  11506. "dev-main": "1.27-dev"
  11507. },
  11508. "thanks": {
  11509. "name": "symfony/polyfill",
  11510. "url": "https://github.com/symfony/polyfill"
  11511. }
  11512. },
  11513. "autoload": {
  11514. "files": [
  11515. "bootstrap.php"
  11516. ],
  11517. "psr-4": {
  11518. "Symfony\\Polyfill\\Php83\\": ""
  11519. }
  11520. },
  11521. "notification-url": "https://packagist.org/downloads/",
  11522. "license": [
  11523. "MIT"
  11524. ],
  11525. "authors": [
  11526. {
  11527. "name": "Nicolas Grekas",
  11528. "email": "p@tchwork.com"
  11529. },
  11530. {
  11531. "name": "Symfony Community",
  11532. "homepage": "https://symfony.com/contributors"
  11533. }
  11534. ],
  11535. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  11536. "homepage": "https://symfony.com",
  11537. "keywords": [
  11538. "compatibility",
  11539. "polyfill",
  11540. "portable",
  11541. "shim"
  11542. ],
  11543. "support": {
  11544. "source": "https://github.com/symfony/polyfill-php83/tree/v1.27.0"
  11545. },
  11546. "funding": [
  11547. {
  11548. "url": "https://symfony.com/sponsor",
  11549. "type": "custom"
  11550. },
  11551. {
  11552. "url": "https://github.com/fabpot",
  11553. "type": "github"
  11554. },
  11555. {
  11556. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11557. "type": "tidelift"
  11558. }
  11559. ],
  11560. "time": "2022-11-03T14:55:06+00:00"
  11561. },
  11562. {
  11563. "name": "symfony/process",
  11564. "version": "v6.3.4",
  11565. "source": {
  11566. "type": "git",
  11567. "url": "https://github.com/symfony/process.git",
  11568. "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54"
  11569. },
  11570. "dist": {
  11571. "type": "zip",
  11572. "url": "https://api.github.com/repos/symfony/process/zipball/0b5c29118f2e980d455d2e34a5659f4579847c54",
  11573. "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54",
  11574. "shasum": ""
  11575. },
  11576. "require": {
  11577. "php": ">=8.1"
  11578. },
  11579. "type": "library",
  11580. "autoload": {
  11581. "psr-4": {
  11582. "Symfony\\Component\\Process\\": ""
  11583. },
  11584. "exclude-from-classmap": [
  11585. "/Tests/"
  11586. ]
  11587. },
  11588. "notification-url": "https://packagist.org/downloads/",
  11589. "license": [
  11590. "MIT"
  11591. ],
  11592. "authors": [
  11593. {
  11594. "name": "Fabien Potencier",
  11595. "email": "fabien@symfony.com"
  11596. },
  11597. {
  11598. "name": "Symfony Community",
  11599. "homepage": "https://symfony.com/contributors"
  11600. }
  11601. ],
  11602. "description": "Executes commands in sub-processes",
  11603. "homepage": "https://symfony.com",
  11604. "support": {
  11605. "source": "https://github.com/symfony/process/tree/v6.3.4"
  11606. },
  11607. "funding": [
  11608. {
  11609. "url": "https://symfony.com/sponsor",
  11610. "type": "custom"
  11611. },
  11612. {
  11613. "url": "https://github.com/fabpot",
  11614. "type": "github"
  11615. },
  11616. {
  11617. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11618. "type": "tidelift"
  11619. }
  11620. ],
  11621. "time": "2023-08-07T10:39:22+00:00"
  11622. },
  11623. {
  11624. "name": "symfony/psr-http-message-bridge",
  11625. "version": "v2.2.0",
  11626. "source": {
  11627. "type": "git",
  11628. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  11629. "reference": "28a732c05bbad801304ad5a5c674cf2970508993"
  11630. },
  11631. "dist": {
  11632. "type": "zip",
  11633. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/28a732c05bbad801304ad5a5c674cf2970508993",
  11634. "reference": "28a732c05bbad801304ad5a5c674cf2970508993",
  11635. "shasum": ""
  11636. },
  11637. "require": {
  11638. "php": ">=7.2.5",
  11639. "psr/http-message": "^1.0 || ^2.0",
  11640. "symfony/http-foundation": "^5.4 || ^6.0"
  11641. },
  11642. "require-dev": {
  11643. "nyholm/psr7": "^1.1",
  11644. "psr/log": "^1.1 || ^2 || ^3",
  11645. "symfony/browser-kit": "^5.4 || ^6.0",
  11646. "symfony/config": "^5.4 || ^6.0",
  11647. "symfony/event-dispatcher": "^5.4 || ^6.0",
  11648. "symfony/framework-bundle": "^5.4 || ^6.0",
  11649. "symfony/http-kernel": "^5.4 || ^6.0",
  11650. "symfony/phpunit-bridge": "^6.2"
  11651. },
  11652. "suggest": {
  11653. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  11654. },
  11655. "type": "symfony-bridge",
  11656. "extra": {
  11657. "branch-alias": {
  11658. "dev-main": "2.2-dev"
  11659. }
  11660. },
  11661. "autoload": {
  11662. "psr-4": {
  11663. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  11664. },
  11665. "exclude-from-classmap": [
  11666. "/Tests/"
  11667. ]
  11668. },
  11669. "notification-url": "https://packagist.org/downloads/",
  11670. "license": [
  11671. "MIT"
  11672. ],
  11673. "authors": [
  11674. {
  11675. "name": "Fabien Potencier",
  11676. "email": "fabien@symfony.com"
  11677. },
  11678. {
  11679. "name": "Symfony Community",
  11680. "homepage": "http://symfony.com/contributors"
  11681. }
  11682. ],
  11683. "description": "PSR HTTP message bridge",
  11684. "homepage": "http://symfony.com",
  11685. "keywords": [
  11686. "http",
  11687. "http-message",
  11688. "psr-17",
  11689. "psr-7"
  11690. ],
  11691. "support": {
  11692. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  11693. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.2.0"
  11694. },
  11695. "funding": [
  11696. {
  11697. "url": "https://symfony.com/sponsor",
  11698. "type": "custom"
  11699. },
  11700. {
  11701. "url": "https://github.com/fabpot",
  11702. "type": "github"
  11703. },
  11704. {
  11705. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11706. "type": "tidelift"
  11707. }
  11708. ],
  11709. "time": "2023-04-21T08:40:19+00:00"
  11710. },
  11711. {
  11712. "name": "symfony/routing",
  11713. "version": "v6.3.5",
  11714. "source": {
  11715. "type": "git",
  11716. "url": "https://github.com/symfony/routing.git",
  11717. "reference": "82616e59acd3e3d9c916bba798326cb7796d7d31"
  11718. },
  11719. "dist": {
  11720. "type": "zip",
  11721. "url": "https://api.github.com/repos/symfony/routing/zipball/82616e59acd3e3d9c916bba798326cb7796d7d31",
  11722. "reference": "82616e59acd3e3d9c916bba798326cb7796d7d31",
  11723. "shasum": ""
  11724. },
  11725. "require": {
  11726. "php": ">=8.1",
  11727. "symfony/deprecation-contracts": "^2.5|^3"
  11728. },
  11729. "conflict": {
  11730. "doctrine/annotations": "<1.12",
  11731. "symfony/config": "<6.2",
  11732. "symfony/dependency-injection": "<5.4",
  11733. "symfony/yaml": "<5.4"
  11734. },
  11735. "require-dev": {
  11736. "doctrine/annotations": "^1.12|^2",
  11737. "psr/log": "^1|^2|^3",
  11738. "symfony/config": "^6.2",
  11739. "symfony/dependency-injection": "^5.4|^6.0",
  11740. "symfony/expression-language": "^5.4|^6.0",
  11741. "symfony/http-foundation": "^5.4|^6.0",
  11742. "symfony/yaml": "^5.4|^6.0"
  11743. },
  11744. "type": "library",
  11745. "autoload": {
  11746. "psr-4": {
  11747. "Symfony\\Component\\Routing\\": ""
  11748. },
  11749. "exclude-from-classmap": [
  11750. "/Tests/"
  11751. ]
  11752. },
  11753. "notification-url": "https://packagist.org/downloads/",
  11754. "license": [
  11755. "MIT"
  11756. ],
  11757. "authors": [
  11758. {
  11759. "name": "Fabien Potencier",
  11760. "email": "fabien@symfony.com"
  11761. },
  11762. {
  11763. "name": "Symfony Community",
  11764. "homepage": "https://symfony.com/contributors"
  11765. }
  11766. ],
  11767. "description": "Maps an HTTP request to a set of configuration variables",
  11768. "homepage": "https://symfony.com",
  11769. "keywords": [
  11770. "router",
  11771. "routing",
  11772. "uri",
  11773. "url"
  11774. ],
  11775. "support": {
  11776. "source": "https://github.com/symfony/routing/tree/v6.3.5"
  11777. },
  11778. "funding": [
  11779. {
  11780. "url": "https://symfony.com/sponsor",
  11781. "type": "custom"
  11782. },
  11783. {
  11784. "url": "https://github.com/fabpot",
  11785. "type": "github"
  11786. },
  11787. {
  11788. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11789. "type": "tidelift"
  11790. }
  11791. ],
  11792. "time": "2023-09-20T16:05:51+00:00"
  11793. },
  11794. {
  11795. "name": "symfony/serializer",
  11796. "version": "v6.3.8",
  11797. "source": {
  11798. "type": "git",
  11799. "url": "https://github.com/symfony/serializer.git",
  11800. "reference": "b3ad1515a276473f7919ac97e560017284a7c4bf"
  11801. },
  11802. "dist": {
  11803. "type": "zip",
  11804. "url": "https://api.github.com/repos/symfony/serializer/zipball/b3ad1515a276473f7919ac97e560017284a7c4bf",
  11805. "reference": "b3ad1515a276473f7919ac97e560017284a7c4bf",
  11806. "shasum": ""
  11807. },
  11808. "require": {
  11809. "php": ">=8.1",
  11810. "symfony/deprecation-contracts": "^2.5|^3",
  11811. "symfony/polyfill-ctype": "~1.8"
  11812. },
  11813. "conflict": {
  11814. "doctrine/annotations": "<1.12",
  11815. "phpdocumentor/reflection-docblock": "<3.2.2",
  11816. "phpdocumentor/type-resolver": "<1.4.0",
  11817. "symfony/dependency-injection": "<5.4",
  11818. "symfony/property-access": "<5.4",
  11819. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  11820. "symfony/uid": "<5.4",
  11821. "symfony/yaml": "<5.4"
  11822. },
  11823. "require-dev": {
  11824. "doctrine/annotations": "^1.12|^2",
  11825. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  11826. "symfony/cache": "^5.4|^6.0",
  11827. "symfony/config": "^5.4|^6.0",
  11828. "symfony/console": "^5.4|^6.0",
  11829. "symfony/dependency-injection": "^5.4|^6.0",
  11830. "symfony/error-handler": "^5.4|^6.0",
  11831. "symfony/filesystem": "^5.4|^6.0",
  11832. "symfony/form": "^5.4|^6.0",
  11833. "symfony/http-foundation": "^5.4|^6.0",
  11834. "symfony/http-kernel": "^5.4|^6.0",
  11835. "symfony/mime": "^5.4|^6.0",
  11836. "symfony/property-access": "^5.4|^6.0",
  11837. "symfony/property-info": "^5.4.24|^6.2.11",
  11838. "symfony/uid": "^5.4|^6.0",
  11839. "symfony/validator": "^5.4|^6.0",
  11840. "symfony/var-dumper": "^5.4|^6.0",
  11841. "symfony/var-exporter": "^5.4|^6.0",
  11842. "symfony/yaml": "^5.4|^6.0"
  11843. },
  11844. "type": "library",
  11845. "autoload": {
  11846. "psr-4": {
  11847. "Symfony\\Component\\Serializer\\": ""
  11848. },
  11849. "exclude-from-classmap": [
  11850. "/Tests/"
  11851. ]
  11852. },
  11853. "notification-url": "https://packagist.org/downloads/",
  11854. "license": [
  11855. "MIT"
  11856. ],
  11857. "authors": [
  11858. {
  11859. "name": "Fabien Potencier",
  11860. "email": "fabien@symfony.com"
  11861. },
  11862. {
  11863. "name": "Symfony Community",
  11864. "homepage": "https://symfony.com/contributors"
  11865. }
  11866. ],
  11867. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  11868. "homepage": "https://symfony.com",
  11869. "support": {
  11870. "source": "https://github.com/symfony/serializer/tree/v6.3.8"
  11871. },
  11872. "funding": [
  11873. {
  11874. "url": "https://symfony.com/sponsor",
  11875. "type": "custom"
  11876. },
  11877. {
  11878. "url": "https://github.com/fabpot",
  11879. "type": "github"
  11880. },
  11881. {
  11882. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11883. "type": "tidelift"
  11884. }
  11885. ],
  11886. "time": "2023-11-07T10:11:25+00:00"
  11887. },
  11888. {
  11889. "name": "symfony/service-contracts",
  11890. "version": "v3.3.0",
  11891. "source": {
  11892. "type": "git",
  11893. "url": "https://github.com/symfony/service-contracts.git",
  11894. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4"
  11895. },
  11896. "dist": {
  11897. "type": "zip",
  11898. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  11899. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  11900. "shasum": ""
  11901. },
  11902. "require": {
  11903. "php": ">=8.1",
  11904. "psr/container": "^2.0"
  11905. },
  11906. "conflict": {
  11907. "ext-psr": "<1.1|>=2"
  11908. },
  11909. "type": "library",
  11910. "extra": {
  11911. "branch-alias": {
  11912. "dev-main": "3.4-dev"
  11913. },
  11914. "thanks": {
  11915. "name": "symfony/contracts",
  11916. "url": "https://github.com/symfony/contracts"
  11917. }
  11918. },
  11919. "autoload": {
  11920. "psr-4": {
  11921. "Symfony\\Contracts\\Service\\": ""
  11922. },
  11923. "exclude-from-classmap": [
  11924. "/Test/"
  11925. ]
  11926. },
  11927. "notification-url": "https://packagist.org/downloads/",
  11928. "license": [
  11929. "MIT"
  11930. ],
  11931. "authors": [
  11932. {
  11933. "name": "Nicolas Grekas",
  11934. "email": "p@tchwork.com"
  11935. },
  11936. {
  11937. "name": "Symfony Community",
  11938. "homepage": "https://symfony.com/contributors"
  11939. }
  11940. ],
  11941. "description": "Generic abstractions related to writing services",
  11942. "homepage": "https://symfony.com",
  11943. "keywords": [
  11944. "abstractions",
  11945. "contracts",
  11946. "decoupling",
  11947. "interfaces",
  11948. "interoperability",
  11949. "standards"
  11950. ],
  11951. "support": {
  11952. "source": "https://github.com/symfony/service-contracts/tree/v3.3.0"
  11953. },
  11954. "funding": [
  11955. {
  11956. "url": "https://symfony.com/sponsor",
  11957. "type": "custom"
  11958. },
  11959. {
  11960. "url": "https://github.com/fabpot",
  11961. "type": "github"
  11962. },
  11963. {
  11964. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11965. "type": "tidelift"
  11966. }
  11967. ],
  11968. "time": "2023-05-23T14:45:45+00:00"
  11969. },
  11970. {
  11971. "name": "symfony/string",
  11972. "version": "v6.3.8",
  11973. "source": {
  11974. "type": "git",
  11975. "url": "https://github.com/symfony/string.git",
  11976. "reference": "13880a87790c76ef994c91e87efb96134522577a"
  11977. },
  11978. "dist": {
  11979. "type": "zip",
  11980. "url": "https://api.github.com/repos/symfony/string/zipball/13880a87790c76ef994c91e87efb96134522577a",
  11981. "reference": "13880a87790c76ef994c91e87efb96134522577a",
  11982. "shasum": ""
  11983. },
  11984. "require": {
  11985. "php": ">=8.1",
  11986. "symfony/polyfill-ctype": "~1.8",
  11987. "symfony/polyfill-intl-grapheme": "~1.0",
  11988. "symfony/polyfill-intl-normalizer": "~1.0",
  11989. "symfony/polyfill-mbstring": "~1.0"
  11990. },
  11991. "conflict": {
  11992. "symfony/translation-contracts": "<2.5"
  11993. },
  11994. "require-dev": {
  11995. "symfony/error-handler": "^5.4|^6.0",
  11996. "symfony/http-client": "^5.4|^6.0",
  11997. "symfony/intl": "^6.2",
  11998. "symfony/translation-contracts": "^2.5|^3.0",
  11999. "symfony/var-exporter": "^5.4|^6.0"
  12000. },
  12001. "type": "library",
  12002. "autoload": {
  12003. "files": [
  12004. "Resources/functions.php"
  12005. ],
  12006. "psr-4": {
  12007. "Symfony\\Component\\String\\": ""
  12008. },
  12009. "exclude-from-classmap": [
  12010. "/Tests/"
  12011. ]
  12012. },
  12013. "notification-url": "https://packagist.org/downloads/",
  12014. "license": [
  12015. "MIT"
  12016. ],
  12017. "authors": [
  12018. {
  12019. "name": "Nicolas Grekas",
  12020. "email": "p@tchwork.com"
  12021. },
  12022. {
  12023. "name": "Symfony Community",
  12024. "homepage": "https://symfony.com/contributors"
  12025. }
  12026. ],
  12027. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  12028. "homepage": "https://symfony.com",
  12029. "keywords": [
  12030. "grapheme",
  12031. "i18n",
  12032. "string",
  12033. "unicode",
  12034. "utf-8",
  12035. "utf8"
  12036. ],
  12037. "support": {
  12038. "source": "https://github.com/symfony/string/tree/v6.3.8"
  12039. },
  12040. "funding": [
  12041. {
  12042. "url": "https://symfony.com/sponsor",
  12043. "type": "custom"
  12044. },
  12045. {
  12046. "url": "https://github.com/fabpot",
  12047. "type": "github"
  12048. },
  12049. {
  12050. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12051. "type": "tidelift"
  12052. }
  12053. ],
  12054. "time": "2023-11-09T08:28:21+00:00"
  12055. },
  12056. {
  12057. "name": "symfony/translation-contracts",
  12058. "version": "v3.3.0",
  12059. "source": {
  12060. "type": "git",
  12061. "url": "https://github.com/symfony/translation-contracts.git",
  12062. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86"
  12063. },
  12064. "dist": {
  12065. "type": "zip",
  12066. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/02c24deb352fb0d79db5486c0c79905a85e37e86",
  12067. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86",
  12068. "shasum": ""
  12069. },
  12070. "require": {
  12071. "php": ">=8.1"
  12072. },
  12073. "type": "library",
  12074. "extra": {
  12075. "branch-alias": {
  12076. "dev-main": "3.4-dev"
  12077. },
  12078. "thanks": {
  12079. "name": "symfony/contracts",
  12080. "url": "https://github.com/symfony/contracts"
  12081. }
  12082. },
  12083. "autoload": {
  12084. "psr-4": {
  12085. "Symfony\\Contracts\\Translation\\": ""
  12086. },
  12087. "exclude-from-classmap": [
  12088. "/Test/"
  12089. ]
  12090. },
  12091. "notification-url": "https://packagist.org/downloads/",
  12092. "license": [
  12093. "MIT"
  12094. ],
  12095. "authors": [
  12096. {
  12097. "name": "Nicolas Grekas",
  12098. "email": "p@tchwork.com"
  12099. },
  12100. {
  12101. "name": "Symfony Community",
  12102. "homepage": "https://symfony.com/contributors"
  12103. }
  12104. ],
  12105. "description": "Generic abstractions related to translation",
  12106. "homepage": "https://symfony.com",
  12107. "keywords": [
  12108. "abstractions",
  12109. "contracts",
  12110. "decoupling",
  12111. "interfaces",
  12112. "interoperability",
  12113. "standards"
  12114. ],
  12115. "support": {
  12116. "source": "https://github.com/symfony/translation-contracts/tree/v3.3.0"
  12117. },
  12118. "funding": [
  12119. {
  12120. "url": "https://symfony.com/sponsor",
  12121. "type": "custom"
  12122. },
  12123. {
  12124. "url": "https://github.com/fabpot",
  12125. "type": "github"
  12126. },
  12127. {
  12128. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12129. "type": "tidelift"
  12130. }
  12131. ],
  12132. "time": "2023-05-30T17:17:10+00:00"
  12133. },
  12134. {
  12135. "name": "symfony/validator",
  12136. "version": "v6.3.8",
  12137. "source": {
  12138. "type": "git",
  12139. "url": "https://github.com/symfony/validator.git",
  12140. "reference": "f75b40e088d095db1e788b81605a76f4563cb80e"
  12141. },
  12142. "dist": {
  12143. "type": "zip",
  12144. "url": "https://api.github.com/repos/symfony/validator/zipball/f75b40e088d095db1e788b81605a76f4563cb80e",
  12145. "reference": "f75b40e088d095db1e788b81605a76f4563cb80e",
  12146. "shasum": ""
  12147. },
  12148. "require": {
  12149. "php": ">=8.1",
  12150. "symfony/deprecation-contracts": "^2.5|^3",
  12151. "symfony/polyfill-ctype": "~1.8",
  12152. "symfony/polyfill-mbstring": "~1.0",
  12153. "symfony/polyfill-php83": "^1.27",
  12154. "symfony/translation-contracts": "^2.5|^3"
  12155. },
  12156. "conflict": {
  12157. "doctrine/annotations": "<1.13",
  12158. "doctrine/lexer": "<1.1",
  12159. "symfony/dependency-injection": "<5.4",
  12160. "symfony/expression-language": "<5.4",
  12161. "symfony/http-kernel": "<5.4",
  12162. "symfony/intl": "<5.4",
  12163. "symfony/property-info": "<5.4",
  12164. "symfony/translation": "<5.4",
  12165. "symfony/yaml": "<5.4"
  12166. },
  12167. "require-dev": {
  12168. "doctrine/annotations": "^1.13|^2",
  12169. "egulias/email-validator": "^2.1.10|^3|^4",
  12170. "symfony/cache": "^5.4|^6.0",
  12171. "symfony/config": "^5.4|^6.0",
  12172. "symfony/console": "^5.4|^6.0",
  12173. "symfony/dependency-injection": "^5.4|^6.0",
  12174. "symfony/expression-language": "^5.4|^6.0",
  12175. "symfony/finder": "^5.4|^6.0",
  12176. "symfony/http-client": "^5.4|^6.0",
  12177. "symfony/http-foundation": "^5.4|^6.0",
  12178. "symfony/http-kernel": "^5.4|^6.0",
  12179. "symfony/intl": "^5.4|^6.0",
  12180. "symfony/mime": "^5.4|^6.0",
  12181. "symfony/property-access": "^5.4|^6.0",
  12182. "symfony/property-info": "^5.4|^6.0",
  12183. "symfony/translation": "^5.4|^6.0",
  12184. "symfony/yaml": "^5.4|^6.0"
  12185. },
  12186. "type": "library",
  12187. "autoload": {
  12188. "psr-4": {
  12189. "Symfony\\Component\\Validator\\": ""
  12190. },
  12191. "exclude-from-classmap": [
  12192. "/Tests/"
  12193. ]
  12194. },
  12195. "notification-url": "https://packagist.org/downloads/",
  12196. "license": [
  12197. "MIT"
  12198. ],
  12199. "authors": [
  12200. {
  12201. "name": "Fabien Potencier",
  12202. "email": "fabien@symfony.com"
  12203. },
  12204. {
  12205. "name": "Symfony Community",
  12206. "homepage": "https://symfony.com/contributors"
  12207. }
  12208. ],
  12209. "description": "Provides tools to validate values",
  12210. "homepage": "https://symfony.com",
  12211. "support": {
  12212. "source": "https://github.com/symfony/validator/tree/v6.3.8"
  12213. },
  12214. "funding": [
  12215. {
  12216. "url": "https://symfony.com/sponsor",
  12217. "type": "custom"
  12218. },
  12219. {
  12220. "url": "https://github.com/fabpot",
  12221. "type": "github"
  12222. },
  12223. {
  12224. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12225. "type": "tidelift"
  12226. }
  12227. ],
  12228. "time": "2023-11-07T10:17:15+00:00"
  12229. },
  12230. {
  12231. "name": "symfony/var-dumper",
  12232. "version": "v6.3.8",
  12233. "source": {
  12234. "type": "git",
  12235. "url": "https://github.com/symfony/var-dumper.git",
  12236. "reference": "81acabba9046550e89634876ca64bfcd3c06aa0a"
  12237. },
  12238. "dist": {
  12239. "type": "zip",
  12240. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/81acabba9046550e89634876ca64bfcd3c06aa0a",
  12241. "reference": "81acabba9046550e89634876ca64bfcd3c06aa0a",
  12242. "shasum": ""
  12243. },
  12244. "require": {
  12245. "php": ">=8.1",
  12246. "symfony/deprecation-contracts": "^2.5|^3",
  12247. "symfony/polyfill-mbstring": "~1.0"
  12248. },
  12249. "conflict": {
  12250. "symfony/console": "<5.4"
  12251. },
  12252. "require-dev": {
  12253. "ext-iconv": "*",
  12254. "symfony/console": "^5.4|^6.0",
  12255. "symfony/http-kernel": "^5.4|^6.0",
  12256. "symfony/process": "^5.4|^6.0",
  12257. "symfony/uid": "^5.4|^6.0",
  12258. "twig/twig": "^2.13|^3.0.4"
  12259. },
  12260. "bin": [
  12261. "Resources/bin/var-dump-server"
  12262. ],
  12263. "type": "library",
  12264. "autoload": {
  12265. "files": [
  12266. "Resources/functions/dump.php"
  12267. ],
  12268. "psr-4": {
  12269. "Symfony\\Component\\VarDumper\\": ""
  12270. },
  12271. "exclude-from-classmap": [
  12272. "/Tests/"
  12273. ]
  12274. },
  12275. "notification-url": "https://packagist.org/downloads/",
  12276. "license": [
  12277. "MIT"
  12278. ],
  12279. "authors": [
  12280. {
  12281. "name": "Nicolas Grekas",
  12282. "email": "p@tchwork.com"
  12283. },
  12284. {
  12285. "name": "Symfony Community",
  12286. "homepage": "https://symfony.com/contributors"
  12287. }
  12288. ],
  12289. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  12290. "homepage": "https://symfony.com",
  12291. "keywords": [
  12292. "debug",
  12293. "dump"
  12294. ],
  12295. "support": {
  12296. "source": "https://github.com/symfony/var-dumper/tree/v6.3.8"
  12297. },
  12298. "funding": [
  12299. {
  12300. "url": "https://symfony.com/sponsor",
  12301. "type": "custom"
  12302. },
  12303. {
  12304. "url": "https://github.com/fabpot",
  12305. "type": "github"
  12306. },
  12307. {
  12308. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12309. "type": "tidelift"
  12310. }
  12311. ],
  12312. "time": "2023-11-08T10:42:36+00:00"
  12313. },
  12314. {
  12315. "name": "symfony/var-exporter",
  12316. "version": "v6.3.6",
  12317. "source": {
  12318. "type": "git",
  12319. "url": "https://github.com/symfony/var-exporter.git",
  12320. "reference": "374d289c13cb989027274c86206ddc63b16a2441"
  12321. },
  12322. "dist": {
  12323. "type": "zip",
  12324. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/374d289c13cb989027274c86206ddc63b16a2441",
  12325. "reference": "374d289c13cb989027274c86206ddc63b16a2441",
  12326. "shasum": ""
  12327. },
  12328. "require": {
  12329. "php": ">=8.1"
  12330. },
  12331. "require-dev": {
  12332. "symfony/var-dumper": "^5.4|^6.0"
  12333. },
  12334. "type": "library",
  12335. "autoload": {
  12336. "psr-4": {
  12337. "Symfony\\Component\\VarExporter\\": ""
  12338. },
  12339. "exclude-from-classmap": [
  12340. "/Tests/"
  12341. ]
  12342. },
  12343. "notification-url": "https://packagist.org/downloads/",
  12344. "license": [
  12345. "MIT"
  12346. ],
  12347. "authors": [
  12348. {
  12349. "name": "Nicolas Grekas",
  12350. "email": "p@tchwork.com"
  12351. },
  12352. {
  12353. "name": "Symfony Community",
  12354. "homepage": "https://symfony.com/contributors"
  12355. }
  12356. ],
  12357. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  12358. "homepage": "https://symfony.com",
  12359. "keywords": [
  12360. "clone",
  12361. "construct",
  12362. "export",
  12363. "hydrate",
  12364. "instantiate",
  12365. "lazy-loading",
  12366. "proxy",
  12367. "serialize"
  12368. ],
  12369. "support": {
  12370. "source": "https://github.com/symfony/var-exporter/tree/v6.3.6"
  12371. },
  12372. "funding": [
  12373. {
  12374. "url": "https://symfony.com/sponsor",
  12375. "type": "custom"
  12376. },
  12377. {
  12378. "url": "https://github.com/fabpot",
  12379. "type": "github"
  12380. },
  12381. {
  12382. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12383. "type": "tidelift"
  12384. }
  12385. ],
  12386. "time": "2023-10-13T09:16:49+00:00"
  12387. },
  12388. {
  12389. "name": "symfony/yaml",
  12390. "version": "v6.3.8",
  12391. "source": {
  12392. "type": "git",
  12393. "url": "https://github.com/symfony/yaml.git",
  12394. "reference": "3493af8a8dad7fa91c77fa473ba23ecd95334a92"
  12395. },
  12396. "dist": {
  12397. "type": "zip",
  12398. "url": "https://api.github.com/repos/symfony/yaml/zipball/3493af8a8dad7fa91c77fa473ba23ecd95334a92",
  12399. "reference": "3493af8a8dad7fa91c77fa473ba23ecd95334a92",
  12400. "shasum": ""
  12401. },
  12402. "require": {
  12403. "php": ">=8.1",
  12404. "symfony/deprecation-contracts": "^2.5|^3",
  12405. "symfony/polyfill-ctype": "^1.8"
  12406. },
  12407. "conflict": {
  12408. "symfony/console": "<5.4"
  12409. },
  12410. "require-dev": {
  12411. "symfony/console": "^5.4|^6.0"
  12412. },
  12413. "bin": [
  12414. "Resources/bin/yaml-lint"
  12415. ],
  12416. "type": "library",
  12417. "autoload": {
  12418. "psr-4": {
  12419. "Symfony\\Component\\Yaml\\": ""
  12420. },
  12421. "exclude-from-classmap": [
  12422. "/Tests/"
  12423. ]
  12424. },
  12425. "notification-url": "https://packagist.org/downloads/",
  12426. "license": [
  12427. "MIT"
  12428. ],
  12429. "authors": [
  12430. {
  12431. "name": "Fabien Potencier",
  12432. "email": "fabien@symfony.com"
  12433. },
  12434. {
  12435. "name": "Symfony Community",
  12436. "homepage": "https://symfony.com/contributors"
  12437. }
  12438. ],
  12439. "description": "Loads and dumps YAML files",
  12440. "homepage": "https://symfony.com",
  12441. "support": {
  12442. "source": "https://github.com/symfony/yaml/tree/v6.3.8"
  12443. },
  12444. "funding": [
  12445. {
  12446. "url": "https://symfony.com/sponsor",
  12447. "type": "custom"
  12448. },
  12449. {
  12450. "url": "https://github.com/fabpot",
  12451. "type": "github"
  12452. },
  12453. {
  12454. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12455. "type": "tidelift"
  12456. }
  12457. ],
  12458. "time": "2023-11-06T10:58:05+00:00"
  12459. },
  12460. {
  12461. "name": "twig/twig",
  12462. "version": "v3.6.1",
  12463. "source": {
  12464. "type": "git",
  12465. "url": "https://github.com/twigphp/Twig.git",
  12466. "reference": "7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd"
  12467. },
  12468. "dist": {
  12469. "type": "zip",
  12470. "url": "https://api.github.com/repos/twigphp/Twig/zipball/7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd",
  12471. "reference": "7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd",
  12472. "shasum": ""
  12473. },
  12474. "require": {
  12475. "php": ">=7.2.5",
  12476. "symfony/polyfill-ctype": "^1.8",
  12477. "symfony/polyfill-mbstring": "^1.3"
  12478. },
  12479. "require-dev": {
  12480. "psr/container": "^1.0|^2.0",
  12481. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  12482. },
  12483. "type": "library",
  12484. "autoload": {
  12485. "psr-4": {
  12486. "Twig\\": "src/"
  12487. }
  12488. },
  12489. "notification-url": "https://packagist.org/downloads/",
  12490. "license": [
  12491. "BSD-3-Clause"
  12492. ],
  12493. "authors": [
  12494. {
  12495. "name": "Fabien Potencier",
  12496. "email": "fabien@symfony.com",
  12497. "homepage": "http://fabien.potencier.org",
  12498. "role": "Lead Developer"
  12499. },
  12500. {
  12501. "name": "Twig Team",
  12502. "role": "Contributors"
  12503. },
  12504. {
  12505. "name": "Armin Ronacher",
  12506. "email": "armin.ronacher@active-4.com",
  12507. "role": "Project Founder"
  12508. }
  12509. ],
  12510. "description": "Twig, the flexible, fast, and secure template language for PHP",
  12511. "homepage": "https://twig.symfony.com",
  12512. "keywords": [
  12513. "templating"
  12514. ],
  12515. "support": {
  12516. "issues": "https://github.com/twigphp/Twig/issues",
  12517. "source": "https://github.com/twigphp/Twig/tree/v3.6.1"
  12518. },
  12519. "funding": [
  12520. {
  12521. "url": "https://github.com/fabpot",
  12522. "type": "github"
  12523. },
  12524. {
  12525. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  12526. "type": "tidelift"
  12527. }
  12528. ],
  12529. "time": "2023-06-08T12:52:13+00:00"
  12530. },
  12531. {
  12532. "name": "webflo/drupal-finder",
  12533. "version": "1.2.2",
  12534. "source": {
  12535. "type": "git",
  12536. "url": "https://github.com/webflo/drupal-finder.git",
  12537. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  12538. },
  12539. "dist": {
  12540. "type": "zip",
  12541. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  12542. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  12543. "shasum": ""
  12544. },
  12545. "require": {
  12546. "ext-json": "*"
  12547. },
  12548. "require-dev": {
  12549. "mikey179/vfsstream": "^1.6",
  12550. "phpunit/phpunit": "^4.8"
  12551. },
  12552. "type": "library",
  12553. "autoload": {
  12554. "classmap": [
  12555. "src/DrupalFinder.php"
  12556. ]
  12557. },
  12558. "notification-url": "https://packagist.org/downloads/",
  12559. "license": [
  12560. "GPL-2.0-or-later"
  12561. ],
  12562. "authors": [
  12563. {
  12564. "name": "Florian Weber",
  12565. "email": "florian@webflo.org"
  12566. }
  12567. ],
  12568. "description": "Helper class to locate a Drupal installation from a given path.",
  12569. "support": {
  12570. "issues": "https://github.com/webflo/drupal-finder/issues",
  12571. "source": "https://github.com/webflo/drupal-finder/tree/1.2.2"
  12572. },
  12573. "time": "2020-10-27T09:42:17+00:00"
  12574. },
  12575. {
  12576. "name": "wikimedia/composer-merge-plugin",
  12577. "version": "v2.1.0",
  12578. "source": {
  12579. "type": "git",
  12580. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  12581. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc"
  12582. },
  12583. "dist": {
  12584. "type": "zip",
  12585. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  12586. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  12587. "shasum": ""
  12588. },
  12589. "require": {
  12590. "composer-plugin-api": "^1.1||^2.0",
  12591. "php": ">=7.2.0"
  12592. },
  12593. "require-dev": {
  12594. "composer/composer": "^1.1||^2.0",
  12595. "ext-json": "*",
  12596. "mediawiki/mediawiki-phan-config": "0.11.1",
  12597. "php-parallel-lint/php-parallel-lint": "~1.3.1",
  12598. "phpspec/prophecy": "~1.15.0",
  12599. "phpunit/phpunit": "^8.5||^9.0",
  12600. "squizlabs/php_codesniffer": "~3.7.1"
  12601. },
  12602. "type": "composer-plugin",
  12603. "extra": {
  12604. "branch-alias": {
  12605. "dev-master": "2.x-dev"
  12606. },
  12607. "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin"
  12608. },
  12609. "autoload": {
  12610. "psr-4": {
  12611. "Wikimedia\\Composer\\Merge\\V2\\": "src/"
  12612. }
  12613. },
  12614. "notification-url": "https://packagist.org/downloads/",
  12615. "license": [
  12616. "MIT"
  12617. ],
  12618. "authors": [
  12619. {
  12620. "name": "Bryan Davis",
  12621. "email": "bd808@wikimedia.org"
  12622. }
  12623. ],
  12624. "description": "Composer plugin to merge multiple composer.json files",
  12625. "support": {
  12626. "issues": "https://github.com/wikimedia/composer-merge-plugin/issues",
  12627. "source": "https://github.com/wikimedia/composer-merge-plugin/tree/v2.1.0"
  12628. },
  12629. "time": "2023-04-15T19:07:00+00:00"
  12630. }
  12631. ],
  12632. "packages-dev": [],
  12633. "aliases": [],
  12634. "minimum-stability": "stable",
  12635. "stability-flags": {
  12636. "drupal/login_destination": 20,
  12637. "drupal/page_manager": 5,
  12638. "drupal/phone_number": 15,
  12639. "drupal/rules": 15,
  12640. "drupal/typed_data": 10,
  12641. "drupal/advanced_text_formatter": 5,
  12642. "drupal/bulkdelete": 20,
  12643. "drupal/config_ignore": 5,
  12644. "drupal/config_devel": 20,
  12645. "drupal/config_update": 15,
  12646. "drupal/context": 5,
  12647. "drupal/date_range_formatter": 20,
  12648. "drupal/email_registration": 5,
  12649. "drupal/entity_clone": 20,
  12650. "drupal/field_group": 20,
  12651. "drupal/filter_perms": 20,
  12652. "drupal/inline_entity_form": 5,
  12653. "drupal/linkit": 10,
  12654. "drupal/maillog": 20,
  12655. "drupal/maxlength": 10,
  12656. "drupal/menu_block": 20,
  12657. "drupal/menu_position": 20,
  12658. "drupal/path_alias_xt": 20,
  12659. "drupal/pathologic": 15,
  12660. "drupal/profile": 5,
  12661. "drupal/smtp": 10,
  12662. "drupal/synonyms": 10,
  12663. "drupal/translation_views": 15,
  12664. "drupal/ultimate_cron": 15
  12665. },
  12666. "prefer-stable": true,
  12667. "prefer-lowest": false,
  12668. "platform": [],
  12669. "platform-dev": [],
  12670. "plugin-api-version": "2.6.0"
  12671. }