composer.lock 471 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890
  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": "6f22602308a4ff1247870c4dc23f07e1",
  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_theme",
  1715. "version": "1.0.0",
  1716. "source": {
  1717. "type": "git",
  1718. "url": "https://git.drupalcode.org/project/admin_theme.git",
  1719. "reference": "8.x-1.0"
  1720. },
  1721. "dist": {
  1722. "type": "zip",
  1723. "url": "https://ftp.drupal.org/files/projects/admin_theme-8.x-1.0.zip",
  1724. "reference": "8.x-1.0",
  1725. "shasum": "5dafd7457840963609502567d60f7fdf0b3e81c3"
  1726. },
  1727. "require": {
  1728. "drupal/core": "^8.8 || ^9 || ^10",
  1729. "php": ">=5.5.9"
  1730. },
  1731. "type": "drupal-module",
  1732. "extra": {
  1733. "drupal": {
  1734. "version": "8.x-1.0",
  1735. "datestamp": "1681407048",
  1736. "security-coverage": {
  1737. "status": "covered",
  1738. "message": "Covered by Drupal's security advisory policy"
  1739. }
  1740. }
  1741. },
  1742. "notification-url": "https://packages.drupal.org/8/downloads",
  1743. "license": [
  1744. "GPL-2.0+"
  1745. ],
  1746. "authors": [
  1747. {
  1748. "name": "geek-merlin",
  1749. "homepage": "https://www.drupal.org/user/229048"
  1750. },
  1751. {
  1752. "name": "justy",
  1753. "homepage": "https://www.drupal.org/user/115811"
  1754. }
  1755. ],
  1756. "description": "Enable the administration theme on more paths than possible with Drupal's default administration page.",
  1757. "homepage": "https://www.drupal.org/project/admin_theme",
  1758. "keywords": [
  1759. "drupal"
  1760. ],
  1761. "support": {
  1762. "source": "https://git.drupalcode.org/project/admin_theme"
  1763. }
  1764. },
  1765. {
  1766. "name": "drupal/admin_toolbar",
  1767. "version": "3.4.2",
  1768. "source": {
  1769. "type": "git",
  1770. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1771. "reference": "3.4.2"
  1772. },
  1773. "dist": {
  1774. "type": "zip",
  1775. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.4.2.zip",
  1776. "reference": "3.4.2",
  1777. "shasum": "f5a008e5c73f5a11c6c8067c0ea6ebb76aa33854"
  1778. },
  1779. "require": {
  1780. "drupal/core": "^9.2 || ^10"
  1781. },
  1782. "require-dev": {
  1783. "drupal/admin_toolbar_tools": "*"
  1784. },
  1785. "type": "drupal-module",
  1786. "extra": {
  1787. "drupal": {
  1788. "version": "3.4.2",
  1789. "datestamp": "1696006195",
  1790. "security-coverage": {
  1791. "status": "covered",
  1792. "message": "Covered by Drupal's security advisory policy"
  1793. }
  1794. }
  1795. },
  1796. "notification-url": "https://packages.drupal.org/8/downloads",
  1797. "license": [
  1798. "GPL-2.0-or-later"
  1799. ],
  1800. "authors": [
  1801. {
  1802. "name": "Wilfrid Roze (eme)",
  1803. "homepage": "https://www.drupal.org/u/eme",
  1804. "role": "Maintainer"
  1805. },
  1806. {
  1807. "name": "Romain Jarraud (romainj)",
  1808. "homepage": "https://www.drupal.org/u/romainj",
  1809. "role": "Maintainer"
  1810. },
  1811. {
  1812. "name": "Adrian Cid Almaguer (adriancid)",
  1813. "homepage": "https://www.drupal.org/u/adriancid",
  1814. "email": "adriancid@gmail.com",
  1815. "role": "Maintainer"
  1816. },
  1817. {
  1818. "name": "Mohamed Anis Taktak (matio89)",
  1819. "homepage": "https://www.drupal.org/u/matio89",
  1820. "role": "Maintainer"
  1821. },
  1822. {
  1823. "name": "matio89",
  1824. "homepage": "https://www.drupal.org/user/2320090"
  1825. },
  1826. {
  1827. "name": "Musa.thomas",
  1828. "homepage": "https://www.drupal.org/user/1213824"
  1829. },
  1830. {
  1831. "name": "romainj",
  1832. "homepage": "https://www.drupal.org/user/370706"
  1833. }
  1834. ],
  1835. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1836. "homepage": "http://drupal.org/project/admin_toolbar",
  1837. "keywords": [
  1838. "Drupal",
  1839. "Toolbar"
  1840. ],
  1841. "support": {
  1842. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1843. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1844. }
  1845. },
  1846. {
  1847. "name": "drupal/adminimal_theme",
  1848. "version": "1.7.0",
  1849. "source": {
  1850. "type": "git",
  1851. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1852. "reference": "8.x-1.7"
  1853. },
  1854. "dist": {
  1855. "type": "zip",
  1856. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.7.zip",
  1857. "reference": "8.x-1.7",
  1858. "shasum": "0fe020fecab6a1f6d877f2e622fb9f916ada52bb"
  1859. },
  1860. "require": {
  1861. "drupal/core": "^9.3 || ^10",
  1862. "drupal/seven": "~1.0"
  1863. },
  1864. "type": "drupal-theme",
  1865. "extra": {
  1866. "drupal": {
  1867. "version": "8.x-1.7",
  1868. "datestamp": "1691504486",
  1869. "security-coverage": {
  1870. "status": "covered",
  1871. "message": "Covered by Drupal's security advisory policy"
  1872. }
  1873. }
  1874. },
  1875. "notification-url": "https://packages.drupal.org/8/downloads",
  1876. "license": [
  1877. "GPL-2.0+"
  1878. ],
  1879. "authors": [
  1880. {
  1881. "name": "ANDiTKO",
  1882. "homepage": "https://www.drupal.org/user/1428124"
  1883. },
  1884. {
  1885. "name": "andrey.troeglazov",
  1886. "homepage": "https://www.drupal.org/user/3145389"
  1887. },
  1888. {
  1889. "name": "realityloop",
  1890. "homepage": "https://www.drupal.org/user/139189"
  1891. },
  1892. {
  1893. "name": "rjjakes",
  1894. "homepage": "https://www.drupal.org/user/3457245"
  1895. }
  1896. ],
  1897. "description": "Drupal administration theme with modern minimalist design.",
  1898. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1899. "support": {
  1900. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1901. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1902. }
  1903. },
  1904. {
  1905. "name": "drupal/advanced_email_validation",
  1906. "version": "1.1.5",
  1907. "source": {
  1908. "type": "git",
  1909. "url": "https://git.drupalcode.org/project/advanced_email_validation.git",
  1910. "reference": "1.1.5"
  1911. },
  1912. "dist": {
  1913. "type": "zip",
  1914. "url": "https://ftp.drupal.org/files/projects/advanced_email_validation-1.1.5.zip",
  1915. "reference": "1.1.5",
  1916. "shasum": "39bb313fe3be5c329012aa5310a6081cdc7e9df0"
  1917. },
  1918. "require": {
  1919. "drupal/core": "^9.3 || ^10",
  1920. "stymiee/email-validator": "^1.0.1"
  1921. },
  1922. "type": "drupal-module",
  1923. "extra": {
  1924. "drupal": {
  1925. "version": "1.1.5",
  1926. "datestamp": "1686705109",
  1927. "security-coverage": {
  1928. "status": "covered",
  1929. "message": "Covered by Drupal's security advisory policy"
  1930. }
  1931. }
  1932. },
  1933. "notification-url": "https://packages.drupal.org/8/downloads",
  1934. "license": [
  1935. "GPL-2.0+"
  1936. ],
  1937. "authors": [
  1938. {
  1939. "name": "Max Pogonowski (darvanen)",
  1940. "homepage": "https://www.drupal.org/u/darvanen",
  1941. "role": "Maintainer"
  1942. }
  1943. ],
  1944. "description": "User account email validation using MX records and lists of free or disposable emails (configurable).",
  1945. "homepage": "https://www.drupal.org/project/advanced_email_validation",
  1946. "keywords": [
  1947. "Drupal"
  1948. ],
  1949. "support": {
  1950. "source": "http://cgit.drupalcode.org/advanced_email_validation",
  1951. "issues": "https://www.drupal.org/project/issues/advanced_email_validation"
  1952. }
  1953. },
  1954. {
  1955. "name": "drupal/advanced_text_formatter",
  1956. "version": "3.0.0-rc1",
  1957. "source": {
  1958. "type": "git",
  1959. "url": "https://git.drupalcode.org/project/advanced_text_formatter.git",
  1960. "reference": "3.0.0-rc1"
  1961. },
  1962. "dist": {
  1963. "type": "zip",
  1964. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-3.0.0-rc1.zip",
  1965. "reference": "3.0.0-rc1",
  1966. "shasum": "394729127f44a6398e29f5e5702e6def00a06e20"
  1967. },
  1968. "require": {
  1969. "drupal/core": "^8 || ^9 || ^10"
  1970. },
  1971. "type": "drupal-module",
  1972. "extra": {
  1973. "drupal": {
  1974. "version": "3.0.0-rc1",
  1975. "datestamp": "1675163352",
  1976. "security-coverage": {
  1977. "status": "not-covered",
  1978. "message": "RC releases are not covered by Drupal security advisories."
  1979. }
  1980. }
  1981. },
  1982. "notification-url": "https://packages.drupal.org/8/downloads",
  1983. "license": [
  1984. "GPL-2.0-or-later"
  1985. ],
  1986. "authors": [
  1987. {
  1988. "name": "azovsky",
  1989. "homepage": "https://www.drupal.org/user/330533"
  1990. },
  1991. {
  1992. "name": "thmnhat",
  1993. "homepage": "https://www.drupal.org/user/998946"
  1994. }
  1995. ],
  1996. "description": "Provides an additional formatter for text field, text area and text format.",
  1997. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  1998. "support": {
  1999. "source": "https://git.drupalcode.org/project/advanced_text_formatter"
  2000. }
  2001. },
  2002. {
  2003. "name": "drupal/amswap",
  2004. "version": "3.2.1",
  2005. "source": {
  2006. "type": "git",
  2007. "url": "https://git.drupalcode.org/project/amswap.git",
  2008. "reference": "3.2.1"
  2009. },
  2010. "dist": {
  2011. "type": "zip",
  2012. "url": "https://ftp.drupal.org/files/projects/amswap-3.2.1.zip",
  2013. "reference": "3.2.1",
  2014. "shasum": "6fdfb96eb3a000d6b01e9d72071ad736f2e81889"
  2015. },
  2016. "require": {
  2017. "drupal/core": "^8 || ^9 || ^10"
  2018. },
  2019. "type": "drupal-module",
  2020. "extra": {
  2021. "drupal": {
  2022. "version": "3.2.1",
  2023. "datestamp": "1680451461",
  2024. "security-coverage": {
  2025. "status": "not-covered",
  2026. "message": "Project has not opted into security advisory coverage!"
  2027. }
  2028. }
  2029. },
  2030. "notification-url": "https://packages.drupal.org/8/downloads",
  2031. "license": [
  2032. "GPL-2.0-or-later"
  2033. ],
  2034. "authors": [
  2035. {
  2036. "name": "cedewey",
  2037. "homepage": "https://www.drupal.org/user/38694"
  2038. },
  2039. {
  2040. "name": "droces",
  2041. "homepage": "https://www.drupal.org/user/2996575"
  2042. }
  2043. ],
  2044. "description": "Allows the administration menu to be customised per user role.",
  2045. "homepage": "https://www.drupal.org/project/amswap",
  2046. "keywords": [
  2047. "Drupal"
  2048. ],
  2049. "support": {
  2050. "source": "http://cgit.drupalcode.org/amswap",
  2051. "issues": "https://www.drupal.org/project/issues/amswap"
  2052. }
  2053. },
  2054. {
  2055. "name": "drupal/audiofield",
  2056. "version": "1.13.0",
  2057. "source": {
  2058. "type": "git",
  2059. "url": "https://git.drupalcode.org/project/audiofield.git",
  2060. "reference": "8.x-1.13"
  2061. },
  2062. "dist": {
  2063. "type": "zip",
  2064. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  2065. "reference": "8.x-1.13",
  2066. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  2067. },
  2068. "require": {
  2069. "drupal/core": "^8 || ^9 || ^10"
  2070. },
  2071. "type": "drupal-module",
  2072. "extra": {
  2073. "drupal": {
  2074. "version": "8.x-1.13",
  2075. "datestamp": "1681143245",
  2076. "security-coverage": {
  2077. "status": "covered",
  2078. "message": "Covered by Drupal's security advisory policy"
  2079. }
  2080. },
  2081. "drush": {
  2082. "services": {
  2083. "drush.services.yml": "^9"
  2084. }
  2085. }
  2086. },
  2087. "notification-url": "https://packages.drupal.org/8/downloads",
  2088. "license": [
  2089. "GPL-2.0-or-later"
  2090. ],
  2091. "authors": [
  2092. {
  2093. "name": "Daniel Moberly",
  2094. "homepage": "https://www.drupal.org/u/danielmoberly",
  2095. "role": "Maintainer"
  2096. },
  2097. {
  2098. "name": "tamerzg",
  2099. "homepage": "https://www.drupal.org/user/464564"
  2100. }
  2101. ],
  2102. "description": "AudioField Module",
  2103. "homepage": "https://www.drupal.org/project/audiofield",
  2104. "support": {
  2105. "source": "https://git.drupalcode.org/project/audiofield",
  2106. "issues": "https://www.drupal.org/project/issues/audiofield"
  2107. }
  2108. },
  2109. {
  2110. "name": "drupal/autocomplete_deluxe",
  2111. "version": "2.0.3",
  2112. "source": {
  2113. "type": "git",
  2114. "url": "https://git.drupalcode.org/project/autocomplete_deluxe.git",
  2115. "reference": "2.0.3"
  2116. },
  2117. "dist": {
  2118. "type": "zip",
  2119. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-2.0.3.zip",
  2120. "reference": "2.0.3",
  2121. "shasum": "686bb49e7366d59f7eef7acf8906ba907898497f"
  2122. },
  2123. "require": {
  2124. "drupal/core": "^8 || ^9 || ^10"
  2125. },
  2126. "type": "drupal-module",
  2127. "extra": {
  2128. "drupal": {
  2129. "version": "2.0.3",
  2130. "datestamp": "1673454732",
  2131. "security-coverage": {
  2132. "status": "covered",
  2133. "message": "Covered by Drupal's security advisory policy"
  2134. }
  2135. }
  2136. },
  2137. "notification-url": "https://packages.drupal.org/8/downloads",
  2138. "license": [
  2139. "GPL-2.0-or-later"
  2140. ],
  2141. "authors": [
  2142. {
  2143. "name": "Vardot",
  2144. "homepage": "https://www.drupal.org/vardot",
  2145. "role": "Maintenance for D8 and D9 versions"
  2146. },
  2147. {
  2148. "name": "Mediacurrent",
  2149. "homepage": "https://www.drupal.org/mediacurrent",
  2150. "role": "Supporting organization"
  2151. },
  2152. {
  2153. "name": "Mohammed J. Razem",
  2154. "homepage": "https://www.drupal.org/user/255384"
  2155. },
  2156. {
  2157. "name": "mpriscella",
  2158. "homepage": "https://www.drupal.org/user/2354820"
  2159. },
  2160. {
  2161. "name": "Rajab Natshah",
  2162. "homepage": "https://www.drupal.org/user/1414312"
  2163. },
  2164. {
  2165. "name": "sepgil",
  2166. "homepage": "https://www.drupal.org/user/512828"
  2167. }
  2168. ],
  2169. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  2170. "homepage": "https://www.drupal.org/project/autocomplete_deluxe",
  2171. "support": {
  2172. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  2173. "issues": "https://www.drupal.org/project/issues/autocomplete_deluxe"
  2174. }
  2175. },
  2176. {
  2177. "name": "drupal/autologout",
  2178. "version": "1.4.0",
  2179. "source": {
  2180. "type": "git",
  2181. "url": "https://git.drupalcode.org/project/autologout.git",
  2182. "reference": "8.x-1.4"
  2183. },
  2184. "dist": {
  2185. "type": "zip",
  2186. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.4.zip",
  2187. "reference": "8.x-1.4",
  2188. "shasum": "f751062f463d0b52df81764f67cee3a0be97825e"
  2189. },
  2190. "require": {
  2191. "drupal/core": "^9.2 || ^10"
  2192. },
  2193. "type": "drupal-module",
  2194. "extra": {
  2195. "drupal": {
  2196. "version": "8.x-1.4",
  2197. "datestamp": "1658168199",
  2198. "security-coverage": {
  2199. "status": "covered",
  2200. "message": "Covered by Drupal's security advisory policy"
  2201. }
  2202. }
  2203. },
  2204. "notification-url": "https://packages.drupal.org/8/downloads",
  2205. "license": [
  2206. "GPL-2.0-or-later"
  2207. ],
  2208. "authors": [
  2209. {
  2210. "name": "AjitS",
  2211. "homepage": "https://www.drupal.org/user/981944"
  2212. },
  2213. {
  2214. "name": "AjK",
  2215. "homepage": "https://www.drupal.org/user/39030"
  2216. },
  2217. {
  2218. "name": "boshtian",
  2219. "homepage": "https://www.drupal.org/user/1773456"
  2220. },
  2221. {
  2222. "name": "dandrews",
  2223. "homepage": "https://www.drupal.org/user/2014490"
  2224. },
  2225. {
  2226. "name": "darksnow",
  2227. "homepage": "https://www.drupal.org/user/391915"
  2228. },
  2229. {
  2230. "name": "japerry",
  2231. "homepage": "https://www.drupal.org/user/45640"
  2232. },
  2233. {
  2234. "name": "johnennew",
  2235. "homepage": "https://www.drupal.org/user/1150042"
  2236. },
  2237. {
  2238. "name": "jrglasgow",
  2239. "homepage": "https://www.drupal.org/user/36590"
  2240. },
  2241. {
  2242. "name": "kmasood",
  2243. "homepage": "https://www.drupal.org/user/1262860"
  2244. },
  2245. {
  2246. "name": "levelos",
  2247. "homepage": "https://www.drupal.org/user/54135"
  2248. },
  2249. {
  2250. "name": "prabeen.giri",
  2251. "homepage": "https://www.drupal.org/user/913078"
  2252. },
  2253. {
  2254. "name": "str8",
  2255. "homepage": "https://www.drupal.org/user/2865063"
  2256. }
  2257. ],
  2258. "description": "Adds automated timed logout.",
  2259. "homepage": "http://drupal.org/project/autologout",
  2260. "support": {
  2261. "source": "https://git.drupalcode.org/project/autologout"
  2262. }
  2263. },
  2264. {
  2265. "name": "drupal/better_exposed_filters",
  2266. "version": "6.0.3",
  2267. "source": {
  2268. "type": "git",
  2269. "url": "https://git.drupalcode.org/project/better_exposed_filters.git",
  2270. "reference": "6.0.3"
  2271. },
  2272. "dist": {
  2273. "type": "zip",
  2274. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-6.0.3.zip",
  2275. "reference": "6.0.3",
  2276. "shasum": "b5c20207d7679542bb81955771956c18083e6e0b"
  2277. },
  2278. "require": {
  2279. "drupal/core": "^9 || ^10",
  2280. "drupal/jquery_ui": "^1.6",
  2281. "drupal/jquery_ui_datepicker": "^2.0",
  2282. "drupal/jquery_ui_slider": "^2.0.0",
  2283. "drupal/jquery_ui_touch_punch": "^1.0"
  2284. },
  2285. "type": "drupal-module",
  2286. "extra": {
  2287. "drupal": {
  2288. "version": "6.0.3",
  2289. "datestamp": "1671541877",
  2290. "security-coverage": {
  2291. "status": "covered",
  2292. "message": "Covered by Drupal's security advisory policy"
  2293. }
  2294. }
  2295. },
  2296. "notification-url": "https://packages.drupal.org/8/downloads",
  2297. "license": [
  2298. "GPL-2.0-or-later"
  2299. ],
  2300. "authors": [
  2301. {
  2302. "name": "Mike Keran",
  2303. "homepage": "https://www.drupal.org/u/mikeker"
  2304. },
  2305. {
  2306. "name": "Martin Keereman",
  2307. "homepage": "https://www.drupal.org/u/etroid"
  2308. },
  2309. {
  2310. "name": "Neslee Canil Pinto",
  2311. "homepage": "https://www.drupal.org/u/neslee-canil-pinto"
  2312. },
  2313. {
  2314. "name": "mikeker",
  2315. "homepage": "https://www.drupal.org/user/192273"
  2316. },
  2317. {
  2318. "name": "Neslee Canil Pinto",
  2319. "homepage": "https://www.drupal.org/user/3580850"
  2320. },
  2321. {
  2322. "name": "podarok",
  2323. "homepage": "https://www.drupal.org/user/116002"
  2324. },
  2325. {
  2326. "name": "rlhawk",
  2327. "homepage": "https://www.drupal.org/user/352283"
  2328. }
  2329. ],
  2330. "description": "Replaces the Views default single- or multi-select boxes with more advanced options.",
  2331. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2332. "support": {
  2333. "source": "https://git.drupalcode.org/project/better_exposed_filters",
  2334. "issues": "https://www.drupal.org/project/issues/better_exposed_filters"
  2335. }
  2336. },
  2337. {
  2338. "name": "drupal/block_class",
  2339. "version": "2.0.11",
  2340. "source": {
  2341. "type": "git",
  2342. "url": "https://git.drupalcode.org/project/block_class.git",
  2343. "reference": "2.0.11"
  2344. },
  2345. "dist": {
  2346. "type": "zip",
  2347. "url": "https://ftp.drupal.org/files/projects/block_class-2.0.11.zip",
  2348. "reference": "2.0.11",
  2349. "shasum": "bd098ef0071b5baca1248c0deaa9bbedc0ddcaf4"
  2350. },
  2351. "require": {
  2352. "drupal/core": "^8 || ^9 || ^10"
  2353. },
  2354. "type": "drupal-module",
  2355. "extra": {
  2356. "drupal": {
  2357. "version": "2.0.11",
  2358. "datestamp": "1672065313",
  2359. "security-coverage": {
  2360. "status": "covered",
  2361. "message": "Covered by Drupal's security advisory policy"
  2362. }
  2363. }
  2364. },
  2365. "notification-url": "https://packages.drupal.org/8/downloads",
  2366. "license": [
  2367. "GPL-2.0-or-later"
  2368. ],
  2369. "authors": [
  2370. {
  2371. "name": "Todd Nienkerk",
  2372. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2373. "role": "Maintainer"
  2374. },
  2375. {
  2376. "name": "Renato Gonçalves (RenatoG)",
  2377. "homepage": "https://www.drupal.org/u/RenatoG",
  2378. "role": "Maintainer"
  2379. },
  2380. {
  2381. "name": "Neslee Canil Pinto",
  2382. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  2383. "role": "Maintainer"
  2384. },
  2385. {
  2386. "name": "Aaron Stanush",
  2387. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2388. "role": "Maintainer"
  2389. },
  2390. {
  2391. "name": "David Suissa (DYdave)",
  2392. "homepage": "https://www.drupal.org/u/DYdave",
  2393. "role": "Maintainer"
  2394. },
  2395. {
  2396. "name": "Four Kitchens",
  2397. "homepage": "https://www.drupal.org/user/358502",
  2398. "role": "Maintainer"
  2399. },
  2400. {
  2401. "name": "berenddeboer",
  2402. "homepage": "https://www.drupal.org/u/berenddeboer",
  2403. "role": "Maintainer"
  2404. },
  2405. {
  2406. "name": "elliotttf",
  2407. "homepage": "https://www.drupal.org/u/elliotttf",
  2408. "role": "Maintainer"
  2409. },
  2410. {
  2411. "name": "Michal Minecki (mirzu)",
  2412. "homepage": "https://www.drupal.org/u/mirzu",
  2413. "role": "Maintainer"
  2414. },
  2415. {
  2416. "name": "Patrick Coffey (pcoffey)",
  2417. "homepage": "https://www.drupal.org/u/pcoffey",
  2418. "role": "Maintainer"
  2419. },
  2420. {
  2421. "name": "Taylor Smith (tsmith512)",
  2422. "homepage": "https://www.drupal.org/u/tsmith512",
  2423. "role": "Maintainer"
  2424. }
  2425. ],
  2426. "description": "Allows assigning classes to Blocks.",
  2427. "homepage": "https://www.drupal.org/project/block_class",
  2428. "keywords": [
  2429. "Drupal"
  2430. ],
  2431. "support": {
  2432. "source": "https://git.drupalcode.org/project/block_class",
  2433. "issues": "https://www.drupal.org/project/issues/block_class",
  2434. "irc": "irc://irc.freenode.org/drupal-contribute"
  2435. }
  2436. },
  2437. {
  2438. "name": "drupal/bulkdelete",
  2439. "version": "dev-1.x",
  2440. "source": {
  2441. "type": "git",
  2442. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2443. "reference": "95a7ff49f152021be88ba562c247347ff36392c7"
  2444. },
  2445. "require": {
  2446. "drupal/core": "^8.7.7 || ^9 || ^10"
  2447. },
  2448. "type": "drupal-module",
  2449. "extra": {
  2450. "branch-alias": {
  2451. "dev-1.x": "1.x-dev"
  2452. },
  2453. "drupal": {
  2454. "version": "8.x-1.x-dev",
  2455. "datestamp": "1655322426",
  2456. "security-coverage": {
  2457. "status": "not-covered",
  2458. "message": "Dev releases are not covered by Drupal security advisories."
  2459. }
  2460. }
  2461. },
  2462. "notification-url": "https://packages.drupal.org/8/downloads",
  2463. "license": [
  2464. "GPL-2.0-or-later"
  2465. ],
  2466. "authors": [
  2467. {
  2468. "name": "Kars-T",
  2469. "homepage": "https://www.drupal.org/user/224499"
  2470. },
  2471. {
  2472. "name": "Rahul Seth",
  2473. "homepage": "https://www.drupal.org/user/2694359"
  2474. },
  2475. {
  2476. "name": "adriancid",
  2477. "homepage": "https://www.drupal.org/user/1962106"
  2478. },
  2479. {
  2480. "name": "robertDouglass",
  2481. "homepage": "https://www.drupal.org/user/5449"
  2482. }
  2483. ],
  2484. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2485. "homepage": "https://www.drupal.org/project/bulkdelete",
  2486. "support": {
  2487. "source": "https://git.drupalcode.org/project/bulkdelete"
  2488. }
  2489. },
  2490. {
  2491. "name": "drupal/config_devel",
  2492. "version": "dev-1.x",
  2493. "source": {
  2494. "type": "git",
  2495. "url": "https://git.drupalcode.org/project/config_devel.git",
  2496. "reference": "d0a98704eb6f9d4bdfe8e91e678b895648bb3c83"
  2497. },
  2498. "require": {
  2499. "drupal/core": "^9.3 || ^10"
  2500. },
  2501. "type": "drupal-module",
  2502. "extra": {
  2503. "branch-alias": {
  2504. "dev-1.x": "1.x-dev"
  2505. },
  2506. "drupal": {
  2507. "version": "8.x-1.8+2-dev",
  2508. "datestamp": "1678264720",
  2509. "security-coverage": {
  2510. "status": "not-covered",
  2511. "message": "Dev releases are not covered by Drupal security advisories."
  2512. }
  2513. }
  2514. },
  2515. "notification-url": "https://packages.drupal.org/8/downloads",
  2516. "license": [
  2517. "GPL-2.0+"
  2518. ],
  2519. "authors": [
  2520. {
  2521. "name": "alexpott",
  2522. "homepage": "https://www.drupal.org/user/157725"
  2523. },
  2524. {
  2525. "name": "benjy",
  2526. "homepage": "https://www.drupal.org/user/1852732"
  2527. },
  2528. {
  2529. "name": "chx",
  2530. "homepage": "https://www.drupal.org/user/9446"
  2531. },
  2532. {
  2533. "name": "joachim",
  2534. "homepage": "https://www.drupal.org/user/107701"
  2535. },
  2536. {
  2537. "name": "nedjo",
  2538. "homepage": "https://www.drupal.org/user/4481"
  2539. },
  2540. {
  2541. "name": "vijaycs85",
  2542. "homepage": "https://www.drupal.org/user/93488"
  2543. }
  2544. ],
  2545. "description": "Helps developers work with configuration.",
  2546. "homepage": "https://www.drupal.org/project/config_devel",
  2547. "support": {
  2548. "source": "https://git.drupalcode.org/project/config_devel"
  2549. }
  2550. },
  2551. {
  2552. "name": "drupal/config_filter",
  2553. "version": "2.6.0",
  2554. "source": {
  2555. "type": "git",
  2556. "url": "https://git.drupalcode.org/project/config_filter.git",
  2557. "reference": "8.x-2.6"
  2558. },
  2559. "dist": {
  2560. "type": "zip",
  2561. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.6.zip",
  2562. "reference": "8.x-2.6",
  2563. "shasum": "fd1a057a402436fc906c63bf0a74722f73b9b155"
  2564. },
  2565. "require": {
  2566. "drupal/core": "^8.8 || ^9 || ^10"
  2567. },
  2568. "conflict": {
  2569. "drush/drush": "<10"
  2570. },
  2571. "suggest": {
  2572. "drupal/config_split": "Split site configuration for different environments."
  2573. },
  2574. "type": "drupal-module",
  2575. "extra": {
  2576. "drupal": {
  2577. "version": "8.x-2.6",
  2578. "datestamp": "1698308577",
  2579. "security-coverage": {
  2580. "status": "covered",
  2581. "message": "Covered by Drupal's security advisory policy"
  2582. }
  2583. }
  2584. },
  2585. "notification-url": "https://packages.drupal.org/8/downloads",
  2586. "license": [
  2587. "GPL-2.0-or-later"
  2588. ],
  2589. "authors": [
  2590. {
  2591. "name": "Fabian Bircher",
  2592. "homepage": "https://www.drupal.org/u/bircher",
  2593. "email": "opensource@fabianbircher.com",
  2594. "role": "Maintainer"
  2595. },
  2596. {
  2597. "name": "Nuvole Web",
  2598. "homepage": "http://nuvole.org",
  2599. "email": "info@nuvole.org",
  2600. "role": "Maintainer"
  2601. },
  2602. {
  2603. "name": "pescetti",
  2604. "homepage": "https://www.drupal.org/user/436244"
  2605. }
  2606. ],
  2607. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2608. "homepage": "https://www.drupal.org/project/config_filter",
  2609. "keywords": [
  2610. "Drupal",
  2611. "configuration",
  2612. "configuration management"
  2613. ],
  2614. "support": {
  2615. "source": "https://git.drupalcode.org/project/config_filter",
  2616. "issues": "https://www.drupal.org/project/issues/config_filter",
  2617. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2618. }
  2619. },
  2620. {
  2621. "name": "drupal/config_ignore",
  2622. "version": "2.4.0",
  2623. "source": {
  2624. "type": "git",
  2625. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2626. "reference": "8.x-2.4"
  2627. },
  2628. "dist": {
  2629. "type": "zip",
  2630. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.4.zip",
  2631. "reference": "8.x-2.4",
  2632. "shasum": "e0e45dde2d6927c5d26de59f352792fb6cf26554"
  2633. },
  2634. "require": {
  2635. "drupal/config_filter": "^1 || ^2",
  2636. "drupal/core": "^8 || ^9 || ^10"
  2637. },
  2638. "type": "drupal-module",
  2639. "extra": {
  2640. "drupal": {
  2641. "version": "8.x-2.4",
  2642. "datestamp": "1676045435",
  2643. "security-coverage": {
  2644. "status": "covered",
  2645. "message": "Covered by Drupal's security advisory policy"
  2646. }
  2647. }
  2648. },
  2649. "notification-url": "https://packages.drupal.org/8/downloads",
  2650. "license": [
  2651. "GPL-2.0-or-later"
  2652. ],
  2653. "authors": [
  2654. {
  2655. "name": "Tommy Lynge Jørgensen",
  2656. "homepage": "https://www.drupal.org/u/tlyngej",
  2657. "email": "tlyngej@gmail.com",
  2658. "role": "Maintainer"
  2659. },
  2660. {
  2661. "name": "Fabian Bircher",
  2662. "homepage": "https://www.drupal.org/u/bircher",
  2663. "role": "Maintainer"
  2664. },
  2665. {
  2666. "name": "tlyngej",
  2667. "homepage": "https://www.drupal.org/user/413139"
  2668. }
  2669. ],
  2670. "description": "Ignore certain configuration during import.",
  2671. "homepage": "http://drupal.org/project/config_ignore",
  2672. "support": {
  2673. "source": "https://git.drupalcode.org/project/config_ignore",
  2674. "issues": "https://drupal.org/project/config_ignore",
  2675. "irc": "irc://irc.freenode.org/drupal-contribute"
  2676. }
  2677. },
  2678. {
  2679. "name": "drupal/config_pages",
  2680. "version": "2.15.0",
  2681. "source": {
  2682. "type": "git",
  2683. "url": "https://git.drupalcode.org/project/config_pages.git",
  2684. "reference": "8.x-2.15"
  2685. },
  2686. "dist": {
  2687. "type": "zip",
  2688. "url": "https://ftp.drupal.org/files/projects/config_pages-8.x-2.15.zip",
  2689. "reference": "8.x-2.15",
  2690. "shasum": "55d4a898c6df03295e26ce07930c6b7d06183287"
  2691. },
  2692. "require": {
  2693. "drupal/core": "^8.5 | ^9 || ^10"
  2694. },
  2695. "type": "drupal-module",
  2696. "extra": {
  2697. "drupal": {
  2698. "version": "8.x-2.15",
  2699. "datestamp": "1688847929",
  2700. "security-coverage": {
  2701. "status": "covered",
  2702. "message": "Covered by Drupal's security advisory policy"
  2703. }
  2704. },
  2705. "drush": {
  2706. "services": {
  2707. "drush.services.yml": "^9"
  2708. }
  2709. }
  2710. },
  2711. "notification-url": "https://packages.drupal.org/8/downloads",
  2712. "license": [
  2713. "GPL-2.0-or-later"
  2714. ],
  2715. "authors": [
  2716. {
  2717. "name": "m.krestnicov",
  2718. "homepage": "https://www.drupal.org/user/3193903"
  2719. },
  2720. {
  2721. "name": "Qwaygon",
  2722. "homepage": "https://www.drupal.org/user/636624"
  2723. },
  2724. {
  2725. "name": "shumer",
  2726. "homepage": "https://www.drupal.org/user/2297432"
  2727. }
  2728. ],
  2729. "description": "ConfigPages module",
  2730. "homepage": "http://drupal.org/project/config_pages",
  2731. "keywords": [
  2732. "Drupal"
  2733. ],
  2734. "support": {
  2735. "source": "http://cgit.drupalcode.org/config_pages",
  2736. "issues": "http://drupal.org/project/issues/config_pages"
  2737. }
  2738. },
  2739. {
  2740. "name": "drupal/config_update",
  2741. "version": "2.0.0-alpha3",
  2742. "source": {
  2743. "type": "git",
  2744. "url": "https://git.drupalcode.org/project/config_update.git",
  2745. "reference": "2.0.0-alpha3"
  2746. },
  2747. "dist": {
  2748. "type": "zip",
  2749. "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha3.zip",
  2750. "reference": "2.0.0-alpha3",
  2751. "shasum": "c35e81e8fb77efdff5ddca3a87116ea0c522a7e2"
  2752. },
  2753. "require": {
  2754. "drupal/core": "^9.4 || ^10"
  2755. },
  2756. "type": "drupal-module",
  2757. "extra": {
  2758. "drupal": {
  2759. "version": "2.0.0-alpha3",
  2760. "datestamp": "1683807608",
  2761. "security-coverage": {
  2762. "status": "not-covered",
  2763. "message": "Alpha releases are not covered by Drupal security advisories."
  2764. }
  2765. }
  2766. },
  2767. "notification-url": "https://packages.drupal.org/8/downloads",
  2768. "license": [
  2769. "GPL-2.0-or-later"
  2770. ],
  2771. "authors": [
  2772. {
  2773. "name": "codebymikey",
  2774. "homepage": "https://www.drupal.org/user/3573206"
  2775. },
  2776. {
  2777. "name": "Pasqualle",
  2778. "homepage": "https://www.drupal.org/user/80733"
  2779. }
  2780. ],
  2781. "description": "Provides basic revert and update functionality for other modules.",
  2782. "homepage": "https://www.drupal.org/project/config_update",
  2783. "support": {
  2784. "source": "https://git.drupalcode.org/project/config_update"
  2785. }
  2786. },
  2787. {
  2788. "name": "drupal/content_as_config",
  2789. "version": "1.0.10",
  2790. "source": {
  2791. "type": "git",
  2792. "url": "https://git.drupalcode.org/project/content_as_config.git",
  2793. "reference": "1.0.10"
  2794. },
  2795. "dist": {
  2796. "type": "zip",
  2797. "url": "https://ftp.drupal.org/files/projects/content_as_config-1.0.10.zip",
  2798. "reference": "1.0.10",
  2799. "shasum": "3ed5dd56486a98b6832eb6fea257792d5af145b4"
  2800. },
  2801. "require": {
  2802. "drupal/core": "^9.3 || ^10"
  2803. },
  2804. "conflict": {
  2805. "drupal/structure_sync": "*"
  2806. },
  2807. "require-dev": {
  2808. "drupal/feeds": "*",
  2809. "drupal/group": "*"
  2810. },
  2811. "suggest": {
  2812. "drupal/markdown": "Render module help more elegantly."
  2813. },
  2814. "type": "drupal-module",
  2815. "extra": {
  2816. "drupal": {
  2817. "version": "1.0.10",
  2818. "datestamp": "1665066743",
  2819. "security-coverage": {
  2820. "status": "covered",
  2821. "message": "Covered by Drupal's security advisory policy"
  2822. }
  2823. },
  2824. "drush": {
  2825. "services": {
  2826. "drush.services.yml": "^9"
  2827. }
  2828. }
  2829. },
  2830. "notification-url": "https://packages.drupal.org/8/downloads",
  2831. "license": [
  2832. "GPL-2.0-or-later"
  2833. ],
  2834. "authors": [
  2835. {
  2836. "name": "Daniel Johnson (daniel_j)",
  2837. "homepage": "https://www.drupal.org/u/daniel_j",
  2838. "role": "Maintainer"
  2839. }
  2840. ],
  2841. "description": "Allows content entities to be exported/imported as configuration.",
  2842. "homepage": "https://drupal.org/project/content_as_config",
  2843. "keywords": [
  2844. "Configuration",
  2845. "Drupal"
  2846. ],
  2847. "support": {
  2848. "source": "https://git.drupalcode.org/project/content_as_config",
  2849. "issues": "https://www.drupal.org/project/issues/content_as_config"
  2850. }
  2851. },
  2852. {
  2853. "name": "drupal/content_lock",
  2854. "version": "2.3.0",
  2855. "source": {
  2856. "type": "git",
  2857. "url": "https://git.drupalcode.org/project/content_lock.git",
  2858. "reference": "8.x-2.3"
  2859. },
  2860. "dist": {
  2861. "type": "zip",
  2862. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.3.zip",
  2863. "reference": "8.x-2.3",
  2864. "shasum": "0e8343f82330899baef65aa85d9994154e29506f"
  2865. },
  2866. "require": {
  2867. "drupal/core": "^9.0 || ^10.0"
  2868. },
  2869. "type": "drupal-module",
  2870. "extra": {
  2871. "drupal": {
  2872. "version": "8.x-2.3",
  2873. "datestamp": "1668427342",
  2874. "security-coverage": {
  2875. "status": "covered",
  2876. "message": "Covered by Drupal's security advisory policy"
  2877. }
  2878. }
  2879. },
  2880. "notification-url": "https://packages.drupal.org/8/downloads",
  2881. "license": [
  2882. "GPL-2.0-or-later"
  2883. ],
  2884. "authors": [
  2885. {
  2886. "name": "alexpott",
  2887. "homepage": "https://www.drupal.org/user/157725"
  2888. },
  2889. {
  2890. "name": "chr.fritsch",
  2891. "homepage": "https://www.drupal.org/user/2103716"
  2892. },
  2893. {
  2894. "name": "daniel.bosen",
  2895. "homepage": "https://www.drupal.org/user/404865"
  2896. },
  2897. {
  2898. "name": "ergonlogic",
  2899. "homepage": "https://www.drupal.org/user/368613"
  2900. },
  2901. {
  2902. "name": "mfb",
  2903. "homepage": "https://www.drupal.org/user/12302"
  2904. },
  2905. {
  2906. "name": "pandaski",
  2907. "homepage": "https://www.drupal.org/user/1987218"
  2908. },
  2909. {
  2910. "name": "volkerk",
  2911. "homepage": "https://www.drupal.org/user/57527"
  2912. }
  2913. ],
  2914. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  2915. "homepage": "https://www.drupal.org/project/content_lock",
  2916. "support": {
  2917. "source": "https://git.drupalcode.org/project/content_lock"
  2918. }
  2919. },
  2920. {
  2921. "name": "drupal/context",
  2922. "version": "5.0.0-rc1",
  2923. "source": {
  2924. "type": "git",
  2925. "url": "https://git.drupalcode.org/project/context.git",
  2926. "reference": "5.0.0-rc1"
  2927. },
  2928. "dist": {
  2929. "type": "zip",
  2930. "url": "https://ftp.drupal.org/files/projects/context-5.0.0-rc1.zip",
  2931. "reference": "5.0.0-rc1",
  2932. "shasum": "ae1549bc5e5c75c0c6799b7b737d7391cfc5be73"
  2933. },
  2934. "require": {
  2935. "drupal/core": "^9.3 || ^10"
  2936. },
  2937. "type": "drupal-module",
  2938. "extra": {
  2939. "drupal": {
  2940. "version": "5.0.0-rc1",
  2941. "datestamp": "1677054769",
  2942. "security-coverage": {
  2943. "status": "not-covered",
  2944. "message": "RC releases are not covered by Drupal security advisories."
  2945. }
  2946. }
  2947. },
  2948. "notification-url": "https://packages.drupal.org/8/downloads",
  2949. "license": [
  2950. "MIT"
  2951. ],
  2952. "authors": [
  2953. {
  2954. "name": "Christoffer Palm",
  2955. "homepage": "http://www.oddhill.se/",
  2956. "email": "christoffer.palm@oddhill.se",
  2957. "role": "Developer"
  2958. },
  2959. {
  2960. "name": "boshtian",
  2961. "homepage": "https://www.drupal.org/user/1773456"
  2962. },
  2963. {
  2964. "name": "colan",
  2965. "homepage": "https://www.drupal.org/user/58704"
  2966. },
  2967. {
  2968. "name": "emanaton",
  2969. "homepage": "https://www.drupal.org/user/120853"
  2970. },
  2971. {
  2972. "name": "febbraro",
  2973. "homepage": "https://www.drupal.org/user/43670"
  2974. },
  2975. {
  2976. "name": "fizk",
  2977. "homepage": "https://www.drupal.org/user/473174"
  2978. },
  2979. {
  2980. "name": "hass",
  2981. "homepage": "https://www.drupal.org/user/85918"
  2982. },
  2983. {
  2984. "name": "hefox",
  2985. "homepage": "https://www.drupal.org/user/426416"
  2986. },
  2987. {
  2988. "name": "jmiccolis",
  2989. "homepage": "https://www.drupal.org/user/31731"
  2990. },
  2991. {
  2992. "name": "Kristen Pol",
  2993. "homepage": "https://www.drupal.org/user/8389"
  2994. },
  2995. {
  2996. "name": "nedjo",
  2997. "homepage": "https://www.drupal.org/user/4481"
  2998. },
  2999. {
  3000. "name": "NormySan",
  3001. "homepage": "https://www.drupal.org/user/112352"
  3002. },
  3003. {
  3004. "name": "patricksettle",
  3005. "homepage": "https://www.drupal.org/user/26618"
  3006. },
  3007. {
  3008. "name": "paulocs",
  3009. "homepage": "https://www.drupal.org/user/3640109"
  3010. },
  3011. {
  3012. "name": "Steven Jones",
  3013. "homepage": "https://www.drupal.org/user/99644"
  3014. },
  3015. {
  3016. "name": "tekante",
  3017. "homepage": "https://www.drupal.org/user/640024"
  3018. },
  3019. {
  3020. "name": "yhahn",
  3021. "homepage": "https://www.drupal.org/user/264833"
  3022. }
  3023. ],
  3024. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3025. "homepage": "https://github.com/oddhill/context",
  3026. "keywords": [
  3027. "Drupal",
  3028. "block",
  3029. "conditions",
  3030. "context",
  3031. "visibility"
  3032. ],
  3033. "support": {
  3034. "source": "https://github.com/oddhill/context",
  3035. "issues": "https://github.com/oddhill/context/issues",
  3036. "docs": "https://github.com/oddhill/context"
  3037. }
  3038. },
  3039. {
  3040. "name": "drupal/core",
  3041. "version": "10.1.6",
  3042. "source": {
  3043. "type": "git",
  3044. "url": "https://github.com/drupal/core.git",
  3045. "reference": "33695caf467e3e1e8c75d42215df57bee31be9ec"
  3046. },
  3047. "dist": {
  3048. "type": "zip",
  3049. "url": "https://api.github.com/repos/drupal/core/zipball/33695caf467e3e1e8c75d42215df57bee31be9ec",
  3050. "reference": "33695caf467e3e1e8c75d42215df57bee31be9ec",
  3051. "shasum": ""
  3052. },
  3053. "require": {
  3054. "asm89/stack-cors": "^2.1",
  3055. "composer-runtime-api": "^2.1",
  3056. "composer/semver": "^3.3",
  3057. "doctrine/annotations": "^1.14",
  3058. "egulias/email-validator": "^3.2.1|^4.0",
  3059. "ext-date": "*",
  3060. "ext-dom": "*",
  3061. "ext-filter": "*",
  3062. "ext-gd": "*",
  3063. "ext-hash": "*",
  3064. "ext-json": "*",
  3065. "ext-pcre": "*",
  3066. "ext-pdo": "*",
  3067. "ext-session": "*",
  3068. "ext-simplexml": "*",
  3069. "ext-spl": "*",
  3070. "ext-tokenizer": "*",
  3071. "ext-xml": "*",
  3072. "guzzlehttp/guzzle": "^7.5",
  3073. "guzzlehttp/psr7": "^2.4.5",
  3074. "masterminds/html5": "^2.7",
  3075. "mck89/peast": "^1.14",
  3076. "pear/archive_tar": "^1.4.14",
  3077. "php": ">=8.1.0",
  3078. "psr/log": "^3.0",
  3079. "sebastian/diff": "^4",
  3080. "symfony/console": "^6.3",
  3081. "symfony/dependency-injection": "^6.3",
  3082. "symfony/event-dispatcher": "^6.3",
  3083. "symfony/http-foundation": "^6.3",
  3084. "symfony/http-kernel": "^6.3",
  3085. "symfony/mime": "^6.3",
  3086. "symfony/polyfill-iconv": "^1.26",
  3087. "symfony/process": "^6.3",
  3088. "symfony/psr-http-message-bridge": "^2.1",
  3089. "symfony/routing": "^6.3",
  3090. "symfony/serializer": "^6.3",
  3091. "symfony/validator": "^6.3",
  3092. "symfony/yaml": "^6.3",
  3093. "twig/twig": "^3.5.0"
  3094. },
  3095. "conflict": {
  3096. "drush/drush": "<8.1.10"
  3097. },
  3098. "replace": {
  3099. "drupal/core-annotation": "self.version",
  3100. "drupal/core-assertion": "self.version",
  3101. "drupal/core-class-finder": "self.version",
  3102. "drupal/core-datetime": "self.version",
  3103. "drupal/core-dependency-injection": "self.version",
  3104. "drupal/core-diff": "self.version",
  3105. "drupal/core-discovery": "self.version",
  3106. "drupal/core-event-dispatcher": "self.version",
  3107. "drupal/core-file-cache": "self.version",
  3108. "drupal/core-file-security": "self.version",
  3109. "drupal/core-filesystem": "self.version",
  3110. "drupal/core-front-matter": "self.version",
  3111. "drupal/core-gettext": "self.version",
  3112. "drupal/core-graph": "self.version",
  3113. "drupal/core-http-foundation": "self.version",
  3114. "drupal/core-php-storage": "self.version",
  3115. "drupal/core-plugin": "self.version",
  3116. "drupal/core-proxy-builder": "self.version",
  3117. "drupal/core-render": "self.version",
  3118. "drupal/core-serialization": "self.version",
  3119. "drupal/core-transliteration": "self.version",
  3120. "drupal/core-utility": "self.version",
  3121. "drupal/core-uuid": "self.version",
  3122. "drupal/core-version": "self.version"
  3123. },
  3124. "suggest": {
  3125. "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format."
  3126. },
  3127. "type": "drupal-core",
  3128. "extra": {
  3129. "drupal-scaffold": {
  3130. "file-mapping": {
  3131. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  3132. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  3133. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  3134. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  3135. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  3136. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  3137. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  3138. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  3139. "[web-root]/index.php": "assets/scaffold/files/index.php",
  3140. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  3141. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  3142. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  3143. "[web-root]/update.php": "assets/scaffold/files/update.php",
  3144. "[web-root]/web.config": "assets/scaffold/files/web.config",
  3145. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  3146. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  3147. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  3148. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  3149. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  3150. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  3151. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  3152. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  3153. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  3154. }
  3155. }
  3156. },
  3157. "autoload": {
  3158. "files": [
  3159. "includes/bootstrap.inc"
  3160. ],
  3161. "psr-4": {
  3162. "Drupal\\Core\\": "lib/Drupal/Core",
  3163. "Drupal\\Component\\": "lib/Drupal/Component"
  3164. },
  3165. "classmap": [
  3166. "lib/Drupal.php",
  3167. "lib/Drupal/Component/DependencyInjection/Container.php",
  3168. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  3169. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  3170. "lib/Drupal/Component/Utility/Timer.php",
  3171. "lib/Drupal/Component/Utility/Unicode.php",
  3172. "lib/Drupal/Core/Cache/Cache.php",
  3173. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  3174. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  3175. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  3176. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  3177. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  3178. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  3179. "lib/Drupal/Core/Database/Connection.php",
  3180. "lib/Drupal/Core/Database/Database.php",
  3181. "lib/Drupal/Core/Database/StatementInterface.php",
  3182. "lib/Drupal/Core/DependencyInjection/Container.php",
  3183. "lib/Drupal/Core/DrupalKernel.php",
  3184. "lib/Drupal/Core/DrupalKernelInterface.php",
  3185. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  3186. "lib/Drupal/Core/Site/Settings.php"
  3187. ]
  3188. },
  3189. "notification-url": "https://packagist.org/downloads/",
  3190. "license": [
  3191. "GPL-2.0-or-later"
  3192. ],
  3193. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3194. "support": {
  3195. "source": "https://github.com/drupal/core/tree/10.1.6"
  3196. },
  3197. "time": "2023-11-01T11:59:20+00:00"
  3198. },
  3199. {
  3200. "name": "drupal/core-composer-scaffold",
  3201. "version": "10.1.6",
  3202. "source": {
  3203. "type": "git",
  3204. "url": "https://github.com/drupal/core-composer-scaffold.git",
  3205. "reference": "1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51"
  3206. },
  3207. "dist": {
  3208. "type": "zip",
  3209. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51",
  3210. "reference": "1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51",
  3211. "shasum": ""
  3212. },
  3213. "require": {
  3214. "composer-plugin-api": "^2",
  3215. "php": ">=7.3.0"
  3216. },
  3217. "conflict": {
  3218. "drupal-composer/drupal-scaffold": "*"
  3219. },
  3220. "require-dev": {
  3221. "composer/composer": "^1.8@stable"
  3222. },
  3223. "type": "composer-plugin",
  3224. "extra": {
  3225. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  3226. "branch-alias": {
  3227. "dev-master": "1.0.x-dev"
  3228. }
  3229. },
  3230. "autoload": {
  3231. "psr-4": {
  3232. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  3233. }
  3234. },
  3235. "notification-url": "https://packagist.org/downloads/",
  3236. "license": [
  3237. "GPL-2.0-or-later"
  3238. ],
  3239. "description": "A flexible Composer project scaffold builder.",
  3240. "homepage": "https://www.drupal.org/project/drupal",
  3241. "keywords": [
  3242. "drupal"
  3243. ],
  3244. "support": {
  3245. "source": "https://github.com/drupal/core-composer-scaffold/tree/10.1.6"
  3246. },
  3247. "time": "2023-04-30T16:15:32+00:00"
  3248. },
  3249. {
  3250. "name": "drupal/core-project-message",
  3251. "version": "10.1.6",
  3252. "source": {
  3253. "type": "git",
  3254. "url": "https://github.com/drupal/core-project-message.git",
  3255. "reference": "59b4475f01debd9a0f173938a06189982c8ebffd"
  3256. },
  3257. "dist": {
  3258. "type": "zip",
  3259. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/59b4475f01debd9a0f173938a06189982c8ebffd",
  3260. "reference": "59b4475f01debd9a0f173938a06189982c8ebffd",
  3261. "shasum": ""
  3262. },
  3263. "require": {
  3264. "composer-plugin-api": "^2",
  3265. "php": ">=7.3.0"
  3266. },
  3267. "type": "composer-plugin",
  3268. "extra": {
  3269. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  3270. },
  3271. "autoload": {
  3272. "psr-4": {
  3273. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  3274. }
  3275. },
  3276. "notification-url": "https://packagist.org/downloads/",
  3277. "license": [
  3278. "GPL-2.0-or-later"
  3279. ],
  3280. "description": "Adds a message after Composer installation.",
  3281. "homepage": "https://www.drupal.org/project/drupal",
  3282. "keywords": [
  3283. "drupal"
  3284. ],
  3285. "support": {
  3286. "source": "https://github.com/drupal/core-project-message/tree/10.1.6"
  3287. },
  3288. "time": "2022-07-01T08:32:39+00:00"
  3289. },
  3290. {
  3291. "name": "drupal/core-recommended",
  3292. "version": "10.1.6",
  3293. "source": {
  3294. "type": "git",
  3295. "url": "https://github.com/drupal/core-recommended.git",
  3296. "reference": "13f5968854fe8bc02e659d8a4facc04a1a576ce5"
  3297. },
  3298. "dist": {
  3299. "type": "zip",
  3300. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/13f5968854fe8bc02e659d8a4facc04a1a576ce5",
  3301. "reference": "13f5968854fe8bc02e659d8a4facc04a1a576ce5",
  3302. "shasum": ""
  3303. },
  3304. "require": {
  3305. "asm89/stack-cors": "~v2.1.1",
  3306. "composer/semver": "~3.3.2",
  3307. "doctrine/annotations": "~1.14.3",
  3308. "doctrine/deprecations": "~v1.1.1",
  3309. "doctrine/lexer": "~2.1.0",
  3310. "drupal/core": "10.1.6",
  3311. "egulias/email-validator": "~4.0.1",
  3312. "guzzlehttp/guzzle": "~7.7.0",
  3313. "guzzlehttp/psr7": "~2.5.0",
  3314. "masterminds/html5": "~2.8.0",
  3315. "mck89/peast": "~v1.15.4",
  3316. "pear/archive_tar": "~1.4.14",
  3317. "pear/console_getopt": "~v1.4.3",
  3318. "pear/pear-core-minimal": "~v1.10.13",
  3319. "pear/pear_exception": "~v1.0.2",
  3320. "psr/cache": "~3.0.0",
  3321. "psr/container": "~2.0.2",
  3322. "psr/event-dispatcher": "~1.0.0",
  3323. "psr/http-client": "~1.0.2",
  3324. "psr/http-factory": "~1.0.2",
  3325. "psr/log": "~3.0.0",
  3326. "ralouphie/getallheaders": "~3.0.3",
  3327. "sebastian/diff": "~4.0.5",
  3328. "symfony/console": "~v6.3.0",
  3329. "symfony/dependency-injection": "~v6.3.0",
  3330. "symfony/deprecation-contracts": "~v3.3.0",
  3331. "symfony/error-handler": "~v6.3.0",
  3332. "symfony/event-dispatcher": "~v6.3.0",
  3333. "symfony/event-dispatcher-contracts": "~v3.3.0",
  3334. "symfony/http-foundation": "~v6.3.0",
  3335. "symfony/http-kernel": "~v6.3.0",
  3336. "symfony/mime": "~v6.3.0",
  3337. "symfony/polyfill-ctype": "~v1.27.0",
  3338. "symfony/polyfill-iconv": "~v1.27.0",
  3339. "symfony/polyfill-intl-grapheme": "~v1.27.0",
  3340. "symfony/polyfill-intl-idn": "~v1.27.0",
  3341. "symfony/polyfill-intl-normalizer": "~v1.27.0",
  3342. "symfony/polyfill-mbstring": "~v1.27.0",
  3343. "symfony/polyfill-php83": "~v1.27.0",
  3344. "symfony/process": "~v6.3.0",
  3345. "symfony/psr-http-message-bridge": "~v2.2.0",
  3346. "symfony/routing": "~v6.3.0",
  3347. "symfony/serializer": "~v6.3.0",
  3348. "symfony/service-contracts": "~v3.3.0",
  3349. "symfony/string": "~v6.3.0",
  3350. "symfony/translation-contracts": "~v3.3.0",
  3351. "symfony/validator": "~v6.3.0",
  3352. "symfony/var-dumper": "~v6.3.0",
  3353. "symfony/var-exporter": "~v6.3.0",
  3354. "symfony/yaml": "~v6.3.0",
  3355. "twig/twig": "~v3.6.0"
  3356. },
  3357. "conflict": {
  3358. "webflo/drupal-core-strict": "*"
  3359. },
  3360. "type": "metapackage",
  3361. "notification-url": "https://packagist.org/downloads/",
  3362. "license": [
  3363. "GPL-2.0-or-later"
  3364. ],
  3365. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  3366. "support": {
  3367. "source": "https://github.com/drupal/core-recommended/tree/10.1.6"
  3368. },
  3369. "time": "2023-11-01T11:59:20+00:00"
  3370. },
  3371. {
  3372. "name": "drupal/cshs",
  3373. "version": "4.0.0",
  3374. "source": {
  3375. "type": "git",
  3376. "url": "https://git.drupalcode.org/project/cshs.git",
  3377. "reference": "4.0.0"
  3378. },
  3379. "dist": {
  3380. "type": "zip",
  3381. "url": "https://ftp.drupal.org/files/projects/cshs-4.0.0.zip",
  3382. "reference": "4.0.0",
  3383. "shasum": "ebcd3932481aba4004f4e2078038cdc7293738b0"
  3384. },
  3385. "require": {
  3386. "drupal/core": "^9 || ^10",
  3387. "php": ">=8.0"
  3388. },
  3389. "type": "drupal-module",
  3390. "extra": {
  3391. "drupal": {
  3392. "version": "4.0.0",
  3393. "datestamp": "1668457722",
  3394. "security-coverage": {
  3395. "status": "covered",
  3396. "message": "Covered by Drupal's security advisory policy"
  3397. }
  3398. }
  3399. },
  3400. "notification-url": "https://packages.drupal.org/8/downloads",
  3401. "license": [
  3402. "GPL-2.0-or-later"
  3403. ],
  3404. "authors": [
  3405. {
  3406. "name": "Walter Jenner",
  3407. "homepage": "https://drupal.org/u/valderama"
  3408. },
  3409. {
  3410. "name": "Sergii Bondarenko",
  3411. "homepage": "https://drupal.org/u/BR0kEN",
  3412. "email": "sb@firstvector.org"
  3413. },
  3414. {
  3415. "name": "Daneel Cruz",
  3416. "homepage": "https://drupal.org/u/daneelcm"
  3417. },
  3418. {
  3419. "name": "Purushotam Rai",
  3420. "homepage": "https://drupal.org/u/purushotam.rai"
  3421. }
  3422. ],
  3423. "description": "A simple client-side hierarchical select widget for taxonomy terms.",
  3424. "homepage": "https://www.drupal.org/project/cshs",
  3425. "keywords": [
  3426. "client-side-select",
  3427. "hierarchical-select",
  3428. "module",
  3429. "select",
  3430. "taxonomy"
  3431. ],
  3432. "support": {
  3433. "source": "https://git.drupalcode.org/project/cshs",
  3434. "issues": "https://www.drupal.org/project/issues/cshs"
  3435. }
  3436. },
  3437. {
  3438. "name": "drupal/ctools",
  3439. "version": "3.14.0",
  3440. "source": {
  3441. "type": "git",
  3442. "url": "https://git.drupalcode.org/project/ctools.git",
  3443. "reference": "8.x-3.14"
  3444. },
  3445. "dist": {
  3446. "type": "zip",
  3447. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.14.zip",
  3448. "reference": "8.x-3.14",
  3449. "shasum": "8895a8e47199b458013bc153ceafa0b1495f33c1"
  3450. },
  3451. "require": {
  3452. "drupal/core": "^9.3 || ^10"
  3453. },
  3454. "type": "drupal-module",
  3455. "extra": {
  3456. "drupal": {
  3457. "version": "8.x-3.14",
  3458. "datestamp": "1684299793",
  3459. "security-coverage": {
  3460. "status": "covered",
  3461. "message": "Covered by Drupal's security advisory policy"
  3462. }
  3463. },
  3464. "branch-alias": {
  3465. "dev-8.x-3.x": "3.x-dev"
  3466. }
  3467. },
  3468. "notification-url": "https://packages.drupal.org/8/downloads",
  3469. "license": [
  3470. "GPL-2.0-or-later"
  3471. ],
  3472. "authors": [
  3473. {
  3474. "name": "Kris Vanderwater (EclipseGc)",
  3475. "homepage": "https://www.drupal.org/u/eclipsegc",
  3476. "role": "Maintainer"
  3477. },
  3478. {
  3479. "name": "Jakob Perry (japerry)",
  3480. "homepage": "https://www.drupal.org/u/japerry",
  3481. "role": "Maintainer"
  3482. },
  3483. {
  3484. "name": "Tim Plunkett (tim.plunkett)",
  3485. "homepage": "https://www.drupal.org/u/timplunkett",
  3486. "role": "Maintainer"
  3487. },
  3488. {
  3489. "name": "James Gilliland (neclimdul)",
  3490. "homepage": "https://www.drupal.org/u/neclimdul",
  3491. "role": "Maintainer"
  3492. },
  3493. {
  3494. "name": "Daniel Wehner (dawehner)",
  3495. "homepage": "https://www.drupal.org/u/dawehner",
  3496. "role": "Maintainer"
  3497. },
  3498. {
  3499. "name": "joelpittet",
  3500. "homepage": "https://www.drupal.org/user/160302"
  3501. },
  3502. {
  3503. "name": "merlinofchaos",
  3504. "homepage": "https://www.drupal.org/user/26979"
  3505. },
  3506. {
  3507. "name": "neclimdul",
  3508. "homepage": "https://www.drupal.org/user/48673"
  3509. },
  3510. {
  3511. "name": "sdboyer",
  3512. "homepage": "https://www.drupal.org/user/146719"
  3513. },
  3514. {
  3515. "name": "sun",
  3516. "homepage": "https://www.drupal.org/user/54136"
  3517. },
  3518. {
  3519. "name": "tim.plunkett",
  3520. "homepage": "https://www.drupal.org/user/241634"
  3521. }
  3522. ],
  3523. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3524. "homepage": "https://www.drupal.org/project/ctools",
  3525. "support": {
  3526. "source": "https://git.drupalcode.org/project/ctools",
  3527. "issues": "https://www.drupal.org/project/issues/ctools"
  3528. }
  3529. },
  3530. {
  3531. "name": "drupal/date_range_formatter",
  3532. "version": "dev-9.0.x",
  3533. "source": {
  3534. "type": "git",
  3535. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3536. "reference": "8808a9c324c781b4a7cae9ea5f16017a6b8f63f7"
  3537. },
  3538. "require": {
  3539. "drupal/core": "^8 || ^9 || ^10"
  3540. },
  3541. "type": "drupal-module",
  3542. "extra": {
  3543. "branch-alias": {
  3544. "dev-9.0.x": "9.0.x-dev"
  3545. },
  3546. "drupal": {
  3547. "version": "9.0.x-dev",
  3548. "datestamp": "1661511425",
  3549. "security-coverage": {
  3550. "status": "not-covered",
  3551. "message": "Dev releases are not covered by Drupal security advisories."
  3552. }
  3553. }
  3554. },
  3555. "notification-url": "https://packages.drupal.org/8/downloads",
  3556. "license": [
  3557. "GPL-2.0-or-later"
  3558. ],
  3559. "authors": [
  3560. {
  3561. "name": "maximpodorov",
  3562. "homepage": "https://www.drupal.org/user/515310"
  3563. },
  3564. {
  3565. "name": "sudishth",
  3566. "homepage": "https://www.drupal.org/user/1440562"
  3567. }
  3568. ],
  3569. "description": "Formats date ranges.",
  3570. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3571. "support": {
  3572. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3573. }
  3574. },
  3575. {
  3576. "name": "drupal/devel",
  3577. "version": "5.1.2",
  3578. "source": {
  3579. "type": "git",
  3580. "url": "https://git.drupalcode.org/project/devel.git",
  3581. "reference": "5.1.2"
  3582. },
  3583. "dist": {
  3584. "type": "zip",
  3585. "url": "https://ftp.drupal.org/files/projects/devel-5.1.2.zip",
  3586. "reference": "5.1.2",
  3587. "shasum": "9b35e38bf2043bf87f88585b3d9100f38da8f07f"
  3588. },
  3589. "require": {
  3590. "doctrine/common": "^2.7 || ^3.4",
  3591. "drupal/core": "^9 || ^10",
  3592. "php": ">=7.4",
  3593. "symfony/var-dumper": "^4 || ^5 || ^6"
  3594. },
  3595. "conflict": {
  3596. "kint-php/kint": "<3"
  3597. },
  3598. "require-dev": {
  3599. "drush/drush": "^11"
  3600. },
  3601. "suggest": {
  3602. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3603. },
  3604. "type": "drupal-module",
  3605. "extra": {
  3606. "drupal": {
  3607. "version": "5.1.2",
  3608. "datestamp": "1686161028",
  3609. "security-coverage": {
  3610. "status": "covered",
  3611. "message": "Covered by Drupal's security advisory policy"
  3612. }
  3613. },
  3614. "drush": {
  3615. "services": {
  3616. "drush.services.yml": "^9 || ^10 || ^11"
  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": "drupalspoons",
  3627. "homepage": "https://www.drupal.org/user/3647684"
  3628. },
  3629. {
  3630. "name": "moshe weitzman",
  3631. "homepage": "https://www.drupal.org/user/23"
  3632. }
  3633. ],
  3634. "description": "Various blocks, pages, and functions for developers.",
  3635. "homepage": "https://www.drupal.org/project/devel",
  3636. "support": {
  3637. "source": "https://gitlab.com/drupalspoons/devel",
  3638. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3639. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3640. }
  3641. },
  3642. {
  3643. "name": "drupal/devel_kint_extras",
  3644. "version": "1.1.0",
  3645. "source": {
  3646. "type": "git",
  3647. "url": "https://git.drupalcode.org/project/devel_kint_extras.git",
  3648. "reference": "1.1.0"
  3649. },
  3650. "dist": {
  3651. "type": "zip",
  3652. "url": "https://ftp.drupal.org/files/projects/devel_kint_extras-1.1.0.zip",
  3653. "reference": "1.1.0",
  3654. "shasum": "c9f485f6f2562710d2bd2c62f0073aa0049f5c8c"
  3655. },
  3656. "require": {
  3657. "drupal/core": "^9 || ^10",
  3658. "drupal/devel": "^4.0 || ^5.0",
  3659. "kint-php/kint": "^3.3 || ^4.0"
  3660. },
  3661. "type": "drupal-module",
  3662. "extra": {
  3663. "drupal": {
  3664. "version": "1.1.0",
  3665. "datestamp": "1663760998",
  3666. "security-coverage": {
  3667. "status": "covered",
  3668. "message": "Covered by Drupal's security advisory policy"
  3669. }
  3670. }
  3671. },
  3672. "notification-url": "https://packages.drupal.org/8/downloads",
  3673. "license": [
  3674. "GPL-2.0-or-later"
  3675. ],
  3676. "authors": [
  3677. {
  3678. "name": "Jan Chojnacki",
  3679. "homepage": "https://www.drupal.org/u/janchojnacki"
  3680. },
  3681. {
  3682. "name": "Other contributors",
  3683. "homepage": "https://www.drupal.org/node/3164492/committers"
  3684. }
  3685. ],
  3686. "description": "Shows methods and statics available for an object when using Kint with Devel",
  3687. "homepage": "https://www.drupal.org/project/devel_kint_extras",
  3688. "support": {
  3689. "source": "http://git.drupal.org/project/devel_kint_extras.git",
  3690. "issues": "https://www.drupal.org/project/issues/devel_kint_extras",
  3691. "chat": "irc://irc.freenode.org/drupal-contribute"
  3692. }
  3693. },
  3694. {
  3695. "name": "drupal/email_registration",
  3696. "version": "1.3.0",
  3697. "source": {
  3698. "type": "git",
  3699. "url": "https://git.drupalcode.org/project/email_registration.git",
  3700. "reference": "8.x-1.3"
  3701. },
  3702. "dist": {
  3703. "type": "zip",
  3704. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.3.zip",
  3705. "reference": "8.x-1.3",
  3706. "shasum": "6fe425246511e29dfef4294139c8704aec16cbec"
  3707. },
  3708. "require": {
  3709. "drupal/core": "^9.1 || ^10"
  3710. },
  3711. "conflict": {
  3712. "drupal/commerce": "<2.12"
  3713. },
  3714. "require-dev": {
  3715. "drupal/commerce": "^2.0",
  3716. "drupal/token": "*"
  3717. },
  3718. "type": "drupal-module",
  3719. "extra": {
  3720. "drupal": {
  3721. "version": "8.x-1.3",
  3722. "datestamp": "1697182609",
  3723. "security-coverage": {
  3724. "status": "covered",
  3725. "message": "Covered by Drupal's security advisory policy"
  3726. }
  3727. }
  3728. },
  3729. "notification-url": "https://packages.drupal.org/8/downloads",
  3730. "license": [
  3731. "GPL-2.0-or-later"
  3732. ],
  3733. "authors": [
  3734. {
  3735. "name": "Greg Knaddison (greggles)",
  3736. "homepage": "https://www.drupal.org/u/greggles",
  3737. "role": "Maintainer"
  3738. },
  3739. {
  3740. "name": "Andrey Postnikov (andypost)",
  3741. "homepage": "https://www.drupal.org/u/andypost",
  3742. "role": "Maintainer"
  3743. },
  3744. {
  3745. "name": "Chris Herberte",
  3746. "homepage": "https://www.drupal.org/u/chris-herberte",
  3747. "role": "Maintainer"
  3748. },
  3749. {
  3750. "name": "Moshe Weitzman (moshe weitzman)",
  3751. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3752. "role": "Maintainer"
  3753. },
  3754. {
  3755. "name": "Grevil",
  3756. "homepage": "https://www.drupal.org/user/3668491"
  3757. },
  3758. {
  3759. "name": "moshe weitzman",
  3760. "homepage": "https://www.drupal.org/user/23"
  3761. }
  3762. ],
  3763. "description": "Allows users to register with an email address as their username.",
  3764. "homepage": "https://www.drupal.org/project/email_registration",
  3765. "support": {
  3766. "source": "https://git.drupalcode.org/project/email_registration",
  3767. "issues": "http://drupal.org/project/issues/email_registration"
  3768. }
  3769. },
  3770. {
  3771. "name": "drupal/embed",
  3772. "version": "1.7.0",
  3773. "source": {
  3774. "type": "git",
  3775. "url": "https://git.drupalcode.org/project/embed.git",
  3776. "reference": "8.x-1.7"
  3777. },
  3778. "dist": {
  3779. "type": "zip",
  3780. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.7.zip",
  3781. "reference": "8.x-1.7",
  3782. "shasum": "b7ca4264be51038f947d26b6725fc0446b224f60"
  3783. },
  3784. "require": {
  3785. "drupal/core": "^9.3 | ^10"
  3786. },
  3787. "require-dev": {
  3788. "drupal/ckeditor": "*"
  3789. },
  3790. "type": "drupal-module",
  3791. "extra": {
  3792. "drupal": {
  3793. "version": "8.x-1.7",
  3794. "datestamp": "1697642867",
  3795. "security-coverage": {
  3796. "status": "covered",
  3797. "message": "Covered by Drupal's security advisory policy"
  3798. }
  3799. }
  3800. },
  3801. "notification-url": "https://packages.drupal.org/8/downloads",
  3802. "license": [
  3803. "GPL-2.0-or-later"
  3804. ],
  3805. "authors": [
  3806. {
  3807. "name": "cs_shadow",
  3808. "homepage": "https://www.drupal.org/user/2828287"
  3809. },
  3810. {
  3811. "name": "Dave Reid",
  3812. "homepage": "https://www.drupal.org/user/53892"
  3813. },
  3814. {
  3815. "name": "Devin Carlson",
  3816. "homepage": "https://www.drupal.org/user/290182"
  3817. },
  3818. {
  3819. "name": "Drupal Media Team",
  3820. "homepage": "https://www.drupal.org/user/3260690"
  3821. },
  3822. {
  3823. "name": "phenaproxima",
  3824. "homepage": "https://www.drupal.org/user/205645"
  3825. },
  3826. {
  3827. "name": "slashrsm",
  3828. "homepage": "https://www.drupal.org/user/744628"
  3829. }
  3830. ],
  3831. "description": "Provides a framework for different types of embeds in text editors.",
  3832. "homepage": "https://www.drupal.org/project/embed",
  3833. "support": {
  3834. "source": "https://git.drupalcode.org/project/embed"
  3835. }
  3836. },
  3837. {
  3838. "name": "drupal/entity",
  3839. "version": "1.4.0",
  3840. "source": {
  3841. "type": "git",
  3842. "url": "https://git.drupalcode.org/project/entity.git",
  3843. "reference": "8.x-1.4"
  3844. },
  3845. "dist": {
  3846. "type": "zip",
  3847. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.4.zip",
  3848. "reference": "8.x-1.4",
  3849. "shasum": "1cf7712318fad144eab106a8fcfcd396aeb5676f"
  3850. },
  3851. "require": {
  3852. "drupal/core": "^9.2|^10.0"
  3853. },
  3854. "type": "drupal-module",
  3855. "extra": {
  3856. "drupal": {
  3857. "version": "8.x-1.4",
  3858. "datestamp": "1661898023",
  3859. "security-coverage": {
  3860. "status": "covered",
  3861. "message": "Covered by Drupal's security advisory policy"
  3862. }
  3863. }
  3864. },
  3865. "notification-url": "https://packages.drupal.org/8/downloads",
  3866. "license": [
  3867. "GPL-2.0-or-later"
  3868. ],
  3869. "authors": [
  3870. {
  3871. "name": "Berdir",
  3872. "homepage": "https://www.drupal.org/user/214652"
  3873. },
  3874. {
  3875. "name": "bojanz",
  3876. "homepage": "https://www.drupal.org/user/86106"
  3877. },
  3878. {
  3879. "name": "dawehner",
  3880. "homepage": "https://www.drupal.org/user/99340"
  3881. },
  3882. {
  3883. "name": "dixon_",
  3884. "homepage": "https://www.drupal.org/user/239911"
  3885. },
  3886. {
  3887. "name": "fago",
  3888. "homepage": "https://www.drupal.org/user/16747"
  3889. },
  3890. {
  3891. "name": "mglaman",
  3892. "homepage": "https://www.drupal.org/user/2416470"
  3893. },
  3894. {
  3895. "name": "TR",
  3896. "homepage": "https://www.drupal.org/user/202830"
  3897. }
  3898. ],
  3899. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3900. "homepage": "https://www.drupal.org/project/entity",
  3901. "support": {
  3902. "source": "https://git.drupalcode.org/project/entity",
  3903. "issues": "https://www.drupal.org/project/issues/entity"
  3904. }
  3905. },
  3906. {
  3907. "name": "drupal/entity_browser",
  3908. "version": "2.9.0",
  3909. "source": {
  3910. "type": "git",
  3911. "url": "https://git.drupalcode.org/project/entity_browser.git",
  3912. "reference": "8.x-2.9"
  3913. },
  3914. "dist": {
  3915. "type": "zip",
  3916. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.9.zip",
  3917. "reference": "8.x-2.9",
  3918. "shasum": "251afad80cde9fa547501a8d9de5d94b9f5bacff"
  3919. },
  3920. "require": {
  3921. "drupal/core": "^9.2 || ^10"
  3922. },
  3923. "require-dev": {
  3924. "drupal/embed": "~1.0",
  3925. "drupal/entity_embed": "1.x-dev",
  3926. "drupal/entity_reference_revisions": "1.x-dev",
  3927. "drupal/entityqueue": "1.x-dev",
  3928. "drupal/inline_entity_form": "1.x-dev",
  3929. "drupal/paragraphs": "1.x-dev",
  3930. "drupal/token": "1.x-dev"
  3931. },
  3932. "type": "drupal-module",
  3933. "extra": {
  3934. "drupal": {
  3935. "version": "8.x-2.9",
  3936. "datestamp": "1674070933",
  3937. "security-coverage": {
  3938. "status": "covered",
  3939. "message": "Covered by Drupal's security advisory policy"
  3940. }
  3941. }
  3942. },
  3943. "notification-url": "https://packages.drupal.org/8/downloads",
  3944. "license": [
  3945. "GPL-2.0+"
  3946. ],
  3947. "authors": [
  3948. {
  3949. "name": "Janez Urevc",
  3950. "homepage": "https://github.com/slashrsm",
  3951. "role": "Maintainer"
  3952. },
  3953. {
  3954. "name": "Primoz Hmeljak",
  3955. "homepage": "https://github.com/primsi",
  3956. "role": "Maintainer"
  3957. },
  3958. {
  3959. "name": "See other contributors",
  3960. "homepage": "https://www.drupal.org/node/1943336/committers",
  3961. "role": "contributor"
  3962. },
  3963. {
  3964. "name": "Drupal Media Team",
  3965. "homepage": "https://www.drupal.org/user/3260690"
  3966. },
  3967. {
  3968. "name": "marcingy",
  3969. "homepage": "https://www.drupal.org/user/77320"
  3970. },
  3971. {
  3972. "name": "oknate",
  3973. "homepage": "https://www.drupal.org/user/471638"
  3974. },
  3975. {
  3976. "name": "Primsi",
  3977. "homepage": "https://www.drupal.org/user/282629"
  3978. },
  3979. {
  3980. "name": "samuel.mortenson",
  3981. "homepage": "https://www.drupal.org/user/2582268"
  3982. },
  3983. {
  3984. "name": "slashrsm",
  3985. "homepage": "https://www.drupal.org/user/744628"
  3986. }
  3987. ],
  3988. "description": "Entity browsing and selecting component.",
  3989. "homepage": "http://drupal.org/project/entity_browser",
  3990. "support": {
  3991. "source": "https://git.drupalcode.org/project/entity_browser",
  3992. "issues": "https://www.drupal.org/project/issues/entity_browser",
  3993. "irc": "irc://irc.freenode.org/drupal-contribute"
  3994. }
  3995. },
  3996. {
  3997. "name": "drupal/entity_browser_enhanced",
  3998. "version": "2.0.0",
  3999. "source": {
  4000. "type": "git",
  4001. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  4002. "reference": "2.0.0"
  4003. },
  4004. "dist": {
  4005. "type": "zip",
  4006. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-2.0.0.zip",
  4007. "reference": "2.0.0",
  4008. "shasum": "2880829c847c1c4b06092ab5335adb6ea960317b"
  4009. },
  4010. "require": {
  4011. "drupal/core": "^9 || ^10",
  4012. "drupal/entity_browser": "~2.0"
  4013. },
  4014. "type": "drupal-module",
  4015. "extra": {
  4016. "drupal": {
  4017. "version": "2.0.0",
  4018. "datestamp": "1697211243",
  4019. "security-coverage": {
  4020. "status": "covered",
  4021. "message": "Covered by Drupal's security advisory policy"
  4022. }
  4023. }
  4024. },
  4025. "notification-url": "https://packages.drupal.org/8/downloads",
  4026. "license": [
  4027. "GPL-2.0-or-later"
  4028. ],
  4029. "authors": [
  4030. {
  4031. "name": "Vardot",
  4032. "homepage": "https://www.drupal.org/vardot",
  4033. "role": "Maintainer"
  4034. },
  4035. {
  4036. "name": "Rajab Natshah",
  4037. "homepage": "https://www.drupal.org/user/1414312"
  4038. }
  4039. ],
  4040. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  4041. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  4042. "support": {
  4043. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  4044. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  4045. }
  4046. },
  4047. {
  4048. "name": "drupal/entity_clone",
  4049. "version": "dev-2.x",
  4050. "source": {
  4051. "type": "git",
  4052. "url": "https://git.drupalcode.org/project/entity_clone.git",
  4053. "reference": "5cbfafdbc860cbda7bef91c89628aefca25efe7b"
  4054. },
  4055. "require": {
  4056. "drupal/core": "^8.8 || ^9 || ^10"
  4057. },
  4058. "require-dev": {
  4059. "drupal/entity_browser": "2.x-dev",
  4060. "drupal/entity_usage": "2.x-dev",
  4061. "drupal/paragraphs": "^1.0",
  4062. "drupal/search_api": "~1.0"
  4063. },
  4064. "type": "drupal-module",
  4065. "extra": {
  4066. "branch-alias": {
  4067. "dev-2.x": "2.x-dev"
  4068. },
  4069. "drupal": {
  4070. "version": "2.0.0-beta4+3-dev",
  4071. "datestamp": "1697545494",
  4072. "security-coverage": {
  4073. "status": "not-covered",
  4074. "message": "Dev releases are not covered by Drupal security advisories."
  4075. }
  4076. }
  4077. },
  4078. "notification-url": "https://packages.drupal.org/8/downloads",
  4079. "license": [
  4080. "GPL-2.0-or-later"
  4081. ],
  4082. "authors": [
  4083. {
  4084. "name": "colan",
  4085. "homepage": "https://www.drupal.org/user/58704"
  4086. },
  4087. {
  4088. "name": "joevagyok",
  4089. "homepage": "https://www.drupal.org/user/2876343"
  4090. },
  4091. {
  4092. "name": "NickDickinsonWilde",
  4093. "homepage": "https://www.drupal.org/user/3094661"
  4094. },
  4095. {
  4096. "name": "Rajeshreeputra",
  4097. "homepage": "https://www.drupal.org/user/3418561"
  4098. },
  4099. {
  4100. "name": "Upchuk",
  4101. "homepage": "https://www.drupal.org/user/1885838"
  4102. },
  4103. {
  4104. "name": "vpeltot",
  4105. "homepage": "https://www.drupal.org/user/1361586"
  4106. }
  4107. ],
  4108. "description": "Add a clone action for all entities.",
  4109. "homepage": "https://drupal.org/project/entity_clone",
  4110. "support": {
  4111. "source": "https://git.drupalcode.org/project/entity_clone"
  4112. }
  4113. },
  4114. {
  4115. "name": "drupal/entity_reference_revisions",
  4116. "version": "1.10.0",
  4117. "source": {
  4118. "type": "git",
  4119. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  4120. "reference": "8.x-1.10"
  4121. },
  4122. "dist": {
  4123. "type": "zip",
  4124. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.10.zip",
  4125. "reference": "8.x-1.10",
  4126. "shasum": "edd23b91c4a34db65ea22c4db54b7458edc7513b"
  4127. },
  4128. "require": {
  4129. "drupal/core": "^9 || ^10"
  4130. },
  4131. "require-dev": {
  4132. "drupal/diff": "1.x-dev"
  4133. },
  4134. "type": "drupal-module",
  4135. "extra": {
  4136. "drupal": {
  4137. "version": "8.x-1.10",
  4138. "datestamp": "1660664712",
  4139. "security-coverage": {
  4140. "status": "covered",
  4141. "message": "Covered by Drupal's security advisory policy"
  4142. }
  4143. },
  4144. "drush": {
  4145. "services": {
  4146. "drush.services.yml": "^9 || ^10 || ^11"
  4147. }
  4148. }
  4149. },
  4150. "notification-url": "https://packages.drupal.org/8/downloads",
  4151. "license": [
  4152. "GPL-2.0-or-later"
  4153. ],
  4154. "authors": [
  4155. {
  4156. "name": "Berdir",
  4157. "homepage": "https://www.drupal.org/user/214652"
  4158. },
  4159. {
  4160. "name": "Frans",
  4161. "homepage": "https://www.drupal.org/user/514222"
  4162. },
  4163. {
  4164. "name": "jeroen.b",
  4165. "homepage": "https://www.drupal.org/user/1853532"
  4166. },
  4167. {
  4168. "name": "miro_dietiker",
  4169. "homepage": "https://www.drupal.org/user/227761"
  4170. }
  4171. ],
  4172. "description": "Entity Reference Revisions",
  4173. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  4174. "support": {
  4175. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  4176. }
  4177. },
  4178. {
  4179. "name": "drupal/extlink",
  4180. "version": "1.7.0",
  4181. "source": {
  4182. "type": "git",
  4183. "url": "https://git.drupalcode.org/project/extlink.git",
  4184. "reference": "8.x-1.7"
  4185. },
  4186. "dist": {
  4187. "type": "zip",
  4188. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.7.zip",
  4189. "reference": "8.x-1.7",
  4190. "shasum": "38650688b5a58496db59f40b2a7f36c4bedcbfb4"
  4191. },
  4192. "require": {
  4193. "drupal/core": "^8 || ^9 || ^10"
  4194. },
  4195. "type": "drupal-module",
  4196. "extra": {
  4197. "drupal": {
  4198. "version": "8.x-1.7",
  4199. "datestamp": "1665770295",
  4200. "security-coverage": {
  4201. "status": "covered",
  4202. "message": "Covered by Drupal's security advisory policy"
  4203. }
  4204. }
  4205. },
  4206. "notification-url": "https://packages.drupal.org/8/downloads",
  4207. "license": [
  4208. "GPL-2.0-or-later"
  4209. ],
  4210. "authors": [
  4211. {
  4212. "name": "Nate Lampton",
  4213. "homepage": "https://www.drupal.org/u/quicksketch",
  4214. "role": "Maintainer"
  4215. },
  4216. {
  4217. "name": "Lachlan Ennis",
  4218. "homepage": "https://www.drupal.org/u/elachlan",
  4219. "role": "Maintainer"
  4220. },
  4221. {
  4222. "name": "Neslee Canil Pinto",
  4223. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  4224. "role": "Maintainer"
  4225. }
  4226. ],
  4227. "description": "Modify behavior and appearance of external links.",
  4228. "homepage": "https://www.drupal.org/project/extlink",
  4229. "keywords": [
  4230. "Drupal",
  4231. "External Links"
  4232. ],
  4233. "support": {
  4234. "source": "https://git.drupalcode.org/project/extlink",
  4235. "issues": "https://www.drupal.org/project/issues/extlink"
  4236. }
  4237. },
  4238. {
  4239. "name": "drupal/field_group",
  4240. "version": "dev-3.x",
  4241. "source": {
  4242. "type": "git",
  4243. "url": "https://git.drupalcode.org/project/field_group.git",
  4244. "reference": "1211c8f4e06592418ca368afe88ef9aa237e900a"
  4245. },
  4246. "require": {
  4247. "drupal/core": "^9.2 || ^10"
  4248. },
  4249. "type": "drupal-module",
  4250. "extra": {
  4251. "branch-alias": {
  4252. "dev-3.x": "3.x-dev"
  4253. },
  4254. "drupal": {
  4255. "version": "8.x-3.4+4-dev",
  4256. "datestamp": "1696831482",
  4257. "security-coverage": {
  4258. "status": "not-covered",
  4259. "message": "Dev releases are not covered by Drupal security advisories."
  4260. }
  4261. }
  4262. },
  4263. "notification-url": "https://packages.drupal.org/8/downloads",
  4264. "license": [
  4265. "GPL-2.0-or-later"
  4266. ],
  4267. "authors": [
  4268. {
  4269. "name": "Anybody",
  4270. "homepage": "https://www.drupal.org/user/291091"
  4271. },
  4272. {
  4273. "name": "Hydra",
  4274. "homepage": "https://www.drupal.org/user/647364"
  4275. },
  4276. {
  4277. "name": "jyve",
  4278. "homepage": "https://www.drupal.org/user/591438"
  4279. },
  4280. {
  4281. "name": "nils.destoop",
  4282. "homepage": "https://www.drupal.org/user/361625"
  4283. },
  4284. {
  4285. "name": "Stalski",
  4286. "homepage": "https://www.drupal.org/user/322618"
  4287. },
  4288. {
  4289. "name": "swentel",
  4290. "homepage": "https://www.drupal.org/user/107403"
  4291. }
  4292. ],
  4293. "description": "Provides the field_group module.",
  4294. "homepage": "https://www.drupal.org/project/field_group",
  4295. "support": {
  4296. "source": "https://git.drupalcode.org/project/field_group",
  4297. "issues": "https://www.drupal.org/project/issues/field_group"
  4298. }
  4299. },
  4300. {
  4301. "name": "drupal/file_mdm",
  4302. "version": "2.6.0",
  4303. "source": {
  4304. "type": "git",
  4305. "url": "https://git.drupalcode.org/project/file_mdm.git",
  4306. "reference": "8.x-2.6"
  4307. },
  4308. "dist": {
  4309. "type": "zip",
  4310. "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-2.6.zip",
  4311. "reference": "8.x-2.6",
  4312. "shasum": "56c7c06107ce6e249b6d644136e6807573efb0e3"
  4313. },
  4314. "require": {
  4315. "drupal/core": "^9.3 | ^10",
  4316. "fileeye/pel": "^0.9.20",
  4317. "phenx/php-font-lib": "^0.5.4"
  4318. },
  4319. "require-dev": {
  4320. "drupal/vendor_stream_wrapper": "^2.0.2",
  4321. "fileeye/linuxlibertine-fonts": "^5.3"
  4322. },
  4323. "type": "drupal-module",
  4324. "extra": {
  4325. "drupal": {
  4326. "version": "8.x-2.6",
  4327. "datestamp": "1688489716",
  4328. "security-coverage": {
  4329. "status": "covered",
  4330. "message": "Covered by Drupal's security advisory policy"
  4331. }
  4332. }
  4333. },
  4334. "notification-url": "https://packages.drupal.org/8/downloads",
  4335. "license": [
  4336. "GPL-2.0-or-later"
  4337. ],
  4338. "authors": [
  4339. {
  4340. "name": "mondrake",
  4341. "homepage": "https://www.drupal.org/user/1307444"
  4342. }
  4343. ],
  4344. "description": "Provides a service to manage file metadata.",
  4345. "homepage": "https://www.drupal.org/project/file_mdm",
  4346. "support": {
  4347. "source": "https://git.drupalcode.org/project/file_mdm"
  4348. }
  4349. },
  4350. {
  4351. "name": "drupal/filter_perms",
  4352. "version": "dev-1.x",
  4353. "source": {
  4354. "type": "git",
  4355. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4356. "reference": "1ba486b620e0c0ea1c323cfcadb0f965d9022d1c"
  4357. },
  4358. "require": {
  4359. "drupal/core": "^9.0 || ^10.0"
  4360. },
  4361. "type": "drupal-module",
  4362. "extra": {
  4363. "branch-alias": {
  4364. "dev-1.x": "1.x-dev"
  4365. },
  4366. "drupal": {
  4367. "version": "8.x-1.0-alpha2+1-dev",
  4368. "datestamp": "1697635045",
  4369. "security-coverage": {
  4370. "status": "not-covered",
  4371. "message": "Dev releases are not covered by Drupal security advisories."
  4372. }
  4373. }
  4374. },
  4375. "notification-url": "https://packages.drupal.org/8/downloads",
  4376. "license": [
  4377. "GPL-2.0+"
  4378. ],
  4379. "authors": [
  4380. {
  4381. "name": "cYu",
  4382. "homepage": "https://www.drupal.org/user/202205"
  4383. },
  4384. {
  4385. "name": "deekayen",
  4386. "homepage": "https://www.drupal.org/user/972"
  4387. },
  4388. {
  4389. "name": "ivavictoria",
  4390. "homepage": "https://www.drupal.org/user/3061533"
  4391. },
  4392. {
  4393. "name": "justcaldwell",
  4394. "homepage": "https://www.drupal.org/user/290069"
  4395. },
  4396. {
  4397. "name": "mgbellaire",
  4398. "homepage": "https://www.drupal.org/user/1831932"
  4399. },
  4400. {
  4401. "name": "willzyx",
  4402. "homepage": "https://www.drupal.org/user/1043862"
  4403. }
  4404. ],
  4405. "description": "Provides role and module filters to simplify the user permissions page.",
  4406. "homepage": "https://www.drupal.org/project/filter_perms",
  4407. "support": {
  4408. "source": "http://cgit.drupalcode.org/filter_perms",
  4409. "issues": "https://www.drupal.org/project/issues/filter_perms?categories=All"
  4410. }
  4411. },
  4412. {
  4413. "name": "drupal/formatter_suite",
  4414. "version": "2.0.0",
  4415. "source": {
  4416. "type": "git",
  4417. "url": "https://git.drupalcode.org/project/formatter_suite.git",
  4418. "reference": "2.0.0"
  4419. },
  4420. "dist": {
  4421. "type": "zip",
  4422. "url": "https://ftp.drupal.org/files/projects/formatter_suite-2.0.0.zip",
  4423. "reference": "2.0.0",
  4424. "shasum": "1c6c0fc11d381c10a7b13c51ec2848ae91b40cec"
  4425. },
  4426. "require": {
  4427. "drupal/core": "^9 || ^10"
  4428. },
  4429. "type": "drupal-module",
  4430. "extra": {
  4431. "drupal": {
  4432. "version": "2.0.0",
  4433. "datestamp": "1694036572",
  4434. "security-coverage": {
  4435. "status": "covered",
  4436. "message": "Covered by Drupal's security advisory policy"
  4437. }
  4438. }
  4439. },
  4440. "notification-url": "https://packages.drupal.org/8/downloads",
  4441. "license": [
  4442. "GPL-2.0-or-later"
  4443. ],
  4444. "authors": [
  4445. {
  4446. "name": "thecooltechguy",
  4447. "homepage": "https://www.drupal.org/user/3674323"
  4448. },
  4449. {
  4450. "name": "toamit",
  4451. "homepage": "https://www.drupal.org/user/2820523"
  4452. }
  4453. ],
  4454. "description": "Field formaters to present numbers, text, links, etc.",
  4455. "homepage": "https://www.drupal.org/project/formatter_suite",
  4456. "keywords": [
  4457. "Drupal",
  4458. "Format"
  4459. ],
  4460. "support": {
  4461. "source": "http://cgit.drupalcode.org/formatter_suite",
  4462. "issues": "http://drupal.org/project/issues/formatter_suite"
  4463. }
  4464. },
  4465. {
  4466. "name": "drupal/honeypot",
  4467. "version": "2.1.3",
  4468. "source": {
  4469. "type": "git",
  4470. "url": "https://git.drupalcode.org/project/honeypot.git",
  4471. "reference": "2.1.3"
  4472. },
  4473. "dist": {
  4474. "type": "zip",
  4475. "url": "https://ftp.drupal.org/files/projects/honeypot-2.1.3.zip",
  4476. "reference": "2.1.3",
  4477. "shasum": "101105029a10a574ef6017824182500ab9905856"
  4478. },
  4479. "require": {
  4480. "drupal/core": "^9.2 || ^10"
  4481. },
  4482. "require-dev": {
  4483. "drupal/rules": "^3.0"
  4484. },
  4485. "type": "drupal-module",
  4486. "extra": {
  4487. "drupal": {
  4488. "version": "2.1.3",
  4489. "datestamp": "1695604754",
  4490. "security-coverage": {
  4491. "status": "covered",
  4492. "message": "Covered by Drupal's security advisory policy"
  4493. }
  4494. }
  4495. },
  4496. "notification-url": "https://packages.drupal.org/8/downloads",
  4497. "license": [
  4498. "GPL-2.0-or-later"
  4499. ],
  4500. "authors": [
  4501. {
  4502. "name": "Jeff Geerling",
  4503. "homepage": "https://www.drupal.org/user/389011",
  4504. "email": "geerlingguy@mac.com"
  4505. },
  4506. {
  4507. "name": "Manuel Garcia",
  4508. "homepage": "https://www.drupal.org/user/213194"
  4509. },
  4510. {
  4511. "name": "TR",
  4512. "homepage": "https://www.drupal.org/user/202830"
  4513. },
  4514. {
  4515. "name": "vijaycs85",
  4516. "homepage": "https://www.drupal.org/user/93488"
  4517. }
  4518. ],
  4519. "description": "Mitigates spam form submissions using the honeypot method.",
  4520. "homepage": "https://www.drupal.org/project/honeypot",
  4521. "keywords": [
  4522. "deterrent",
  4523. "form",
  4524. "honeypot",
  4525. "honeytrap",
  4526. "php",
  4527. "spam"
  4528. ],
  4529. "support": {
  4530. "source": "https://git.drupalcode.org/project/honeypot",
  4531. "issues": "https://www.drupal.org/project/issues/honeypot"
  4532. }
  4533. },
  4534. {
  4535. "name": "drupal/imagemagick",
  4536. "version": "3.4.0",
  4537. "source": {
  4538. "type": "git",
  4539. "url": "https://git.drupalcode.org/project/imagemagick.git",
  4540. "reference": "8.x-3.4"
  4541. },
  4542. "dist": {
  4543. "type": "zip",
  4544. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-3.4.zip",
  4545. "reference": "8.x-3.4",
  4546. "shasum": "9f07b7db4bba2cb0e4ff004629f8f78242bb7226"
  4547. },
  4548. "require": {
  4549. "drupal/core": "^9.3 || ^10",
  4550. "drupal/file_mdm": "^2.5",
  4551. "drupal/sophron": "^1.2 || ^2"
  4552. },
  4553. "type": "drupal-module",
  4554. "extra": {
  4555. "drupal": {
  4556. "version": "8.x-3.4",
  4557. "datestamp": "1663947784",
  4558. "security-coverage": {
  4559. "status": "covered",
  4560. "message": "Covered by Drupal's security advisory policy"
  4561. }
  4562. }
  4563. },
  4564. "notification-url": "https://packages.drupal.org/8/downloads",
  4565. "license": [
  4566. "GPL-2.0-or-later"
  4567. ],
  4568. "authors": [
  4569. {
  4570. "name": "Chris Charlton",
  4571. "homepage": "https://www.drupal.org/user/17089"
  4572. },
  4573. {
  4574. "name": "chx",
  4575. "homepage": "https://www.drupal.org/user/9446"
  4576. },
  4577. {
  4578. "name": "claudiu.cristea",
  4579. "homepage": "https://www.drupal.org/user/56348"
  4580. },
  4581. {
  4582. "name": "dman",
  4583. "homepage": "https://www.drupal.org/user/33240"
  4584. },
  4585. {
  4586. "name": "dopry",
  4587. "homepage": "https://www.drupal.org/user/22202"
  4588. },
  4589. {
  4590. "name": "drewish",
  4591. "homepage": "https://www.drupal.org/user/34869"
  4592. },
  4593. {
  4594. "name": "gdl",
  4595. "homepage": "https://www.drupal.org/user/507326"
  4596. },
  4597. {
  4598. "name": "mondrake",
  4599. "homepage": "https://www.drupal.org/user/1307444"
  4600. },
  4601. {
  4602. "name": "quicksketch",
  4603. "homepage": "https://www.drupal.org/user/35821"
  4604. },
  4605. {
  4606. "name": "sun",
  4607. "homepage": "https://www.drupal.org/user/54136"
  4608. },
  4609. {
  4610. "name": "walkah",
  4611. "homepage": "https://www.drupal.org/user/1531"
  4612. }
  4613. ],
  4614. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  4615. "homepage": "https://www.drupal.org/project/imagemagick",
  4616. "support": {
  4617. "source": "https://git.drupalcode.org/project/imagemagick"
  4618. }
  4619. },
  4620. {
  4621. "name": "drupal/inline_entity_form",
  4622. "version": "1.0.0-rc15",
  4623. "source": {
  4624. "type": "git",
  4625. "url": "https://git.drupalcode.org/project/inline_entity_form.git",
  4626. "reference": "8.x-1.0-rc15"
  4627. },
  4628. "dist": {
  4629. "type": "zip",
  4630. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc15.zip",
  4631. "reference": "8.x-1.0-rc15",
  4632. "shasum": "7702801f7e599956fc3d10cff8257809f53ac3ec"
  4633. },
  4634. "require": {
  4635. "drupal/core": "^8.8 || ^9 || ^10",
  4636. "php": ">=7.1"
  4637. },
  4638. "require-dev": {
  4639. "drupal/entity_reference_revisions": "^1.0"
  4640. },
  4641. "type": "drupal-module",
  4642. "extra": {
  4643. "drupal": {
  4644. "version": "8.x-1.0-rc15",
  4645. "datestamp": "1678126675",
  4646. "security-coverage": {
  4647. "status": "not-covered",
  4648. "message": "RC releases are not covered by Drupal security advisories."
  4649. }
  4650. }
  4651. },
  4652. "notification-url": "https://packages.drupal.org/8/downloads",
  4653. "license": [
  4654. "GPL-2.0-or-later"
  4655. ],
  4656. "authors": [
  4657. {
  4658. "name": "bojanz",
  4659. "homepage": "https://www.drupal.org/user/86106"
  4660. },
  4661. {
  4662. "name": "Centarro",
  4663. "homepage": "https://www.drupal.org/user/3661446"
  4664. },
  4665. {
  4666. "name": "dawehner",
  4667. "homepage": "https://www.drupal.org/user/99340"
  4668. },
  4669. {
  4670. "name": "geek-merlin",
  4671. "homepage": "https://www.drupal.org/user/229048"
  4672. },
  4673. {
  4674. "name": "joachim",
  4675. "homepage": "https://www.drupal.org/user/107701"
  4676. },
  4677. {
  4678. "name": "jsacksick",
  4679. "homepage": "https://www.drupal.org/user/972218"
  4680. },
  4681. {
  4682. "name": "oknate",
  4683. "homepage": "https://www.drupal.org/user/471638"
  4684. },
  4685. {
  4686. "name": "podarok",
  4687. "homepage": "https://www.drupal.org/user/116002"
  4688. },
  4689. {
  4690. "name": "ram4nd",
  4691. "homepage": "https://www.drupal.org/user/601534"
  4692. },
  4693. {
  4694. "name": "rszrama",
  4695. "homepage": "https://www.drupal.org/user/49344"
  4696. },
  4697. {
  4698. "name": "slashrsm",
  4699. "homepage": "https://www.drupal.org/user/744628"
  4700. },
  4701. {
  4702. "name": "webflo",
  4703. "homepage": "https://www.drupal.org/user/254778"
  4704. }
  4705. ],
  4706. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  4707. "homepage": "https://www.drupal.org/project/inline_entity_form",
  4708. "support": {
  4709. "source": "https://git.drupalcode.org/project/inline_entity_form"
  4710. }
  4711. },
  4712. {
  4713. "name": "drupal/jquery_ui",
  4714. "version": "1.6.0",
  4715. "source": {
  4716. "type": "git",
  4717. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  4718. "reference": "8.x-1.6"
  4719. },
  4720. "dist": {
  4721. "type": "zip",
  4722. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.6.zip",
  4723. "reference": "8.x-1.6",
  4724. "shasum": "0ddccdcf35a066de1843e1d9670677ee1a2faac0"
  4725. },
  4726. "require": {
  4727. "drupal/core": "^9.2 || ^10"
  4728. },
  4729. "type": "drupal-module",
  4730. "extra": {
  4731. "drupal": {
  4732. "version": "8.x-1.6",
  4733. "datestamp": "1668521197",
  4734. "security-coverage": {
  4735. "status": "covered",
  4736. "message": "Covered by Drupal's security advisory policy"
  4737. }
  4738. }
  4739. },
  4740. "notification-url": "https://packages.drupal.org/8/downloads",
  4741. "license": [
  4742. "GPL-2.0-or-later"
  4743. ],
  4744. "authors": [
  4745. {
  4746. "name": "bnjmnm",
  4747. "homepage": "https://www.drupal.org/user/2369194"
  4748. },
  4749. {
  4750. "name": "jjeff",
  4751. "homepage": "https://www.drupal.org/user/17190"
  4752. },
  4753. {
  4754. "name": "lauriii",
  4755. "homepage": "https://www.drupal.org/user/1078742"
  4756. },
  4757. {
  4758. "name": "litwol",
  4759. "homepage": "https://www.drupal.org/user/78134"
  4760. },
  4761. {
  4762. "name": "mfb",
  4763. "homepage": "https://www.drupal.org/user/12302"
  4764. },
  4765. {
  4766. "name": "mfer",
  4767. "homepage": "https://www.drupal.org/user/25701"
  4768. },
  4769. {
  4770. "name": "mikelutz",
  4771. "homepage": "https://www.drupal.org/user/2972409"
  4772. },
  4773. {
  4774. "name": "nod_",
  4775. "homepage": "https://www.drupal.org/user/598310"
  4776. },
  4777. {
  4778. "name": "phenaproxima",
  4779. "homepage": "https://www.drupal.org/user/205645"
  4780. },
  4781. {
  4782. "name": "RobLoach",
  4783. "homepage": "https://www.drupal.org/user/61114"
  4784. },
  4785. {
  4786. "name": "sun",
  4787. "homepage": "https://www.drupal.org/user/54136"
  4788. },
  4789. {
  4790. "name": "webchick",
  4791. "homepage": "https://www.drupal.org/user/24967"
  4792. },
  4793. {
  4794. "name": "Wim Leers",
  4795. "homepage": "https://www.drupal.org/user/99777"
  4796. },
  4797. {
  4798. "name": "zrpnr",
  4799. "homepage": "https://www.drupal.org/user/1448368"
  4800. }
  4801. ],
  4802. "description": "Provides jQuery UI library.",
  4803. "homepage": "https://www.drupal.org/project/jquery_ui",
  4804. "support": {
  4805. "source": "https://git.drupalcode.org/project/jquery_ui"
  4806. }
  4807. },
  4808. {
  4809. "name": "drupal/jquery_ui_datepicker",
  4810. "version": "2.0.0",
  4811. "source": {
  4812. "type": "git",
  4813. "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
  4814. "reference": "2.0.0"
  4815. },
  4816. "dist": {
  4817. "type": "zip",
  4818. "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-2.0.0.zip",
  4819. "reference": "2.0.0",
  4820. "shasum": "ce40cf8ab400866bffda1ac3f7e4a5ac20bb3ae5"
  4821. },
  4822. "require": {
  4823. "drupal/core": "^9.2 || ^10",
  4824. "drupal/jquery_ui": "^1.6"
  4825. },
  4826. "type": "drupal-module",
  4827. "extra": {
  4828. "drupal": {
  4829. "version": "2.0.0",
  4830. "datestamp": "1670871494",
  4831. "security-coverage": {
  4832. "status": "covered",
  4833. "message": "Covered by Drupal's security advisory policy"
  4834. }
  4835. }
  4836. },
  4837. "notification-url": "https://packages.drupal.org/8/downloads",
  4838. "license": [
  4839. "GPL-2.0-or-later"
  4840. ],
  4841. "authors": [
  4842. {
  4843. "name": "bnjmnm",
  4844. "homepage": "https://www.drupal.org/user/2369194"
  4845. },
  4846. {
  4847. "name": "jrockowitz",
  4848. "homepage": "https://www.drupal.org/user/371407"
  4849. },
  4850. {
  4851. "name": "lauriii",
  4852. "homepage": "https://www.drupal.org/user/1078742"
  4853. },
  4854. {
  4855. "name": "nod_",
  4856. "homepage": "https://www.drupal.org/user/598310"
  4857. },
  4858. {
  4859. "name": "phenaproxima",
  4860. "homepage": "https://www.drupal.org/user/205645"
  4861. },
  4862. {
  4863. "name": "zrpnr",
  4864. "homepage": "https://www.drupal.org/user/1448368"
  4865. }
  4866. ],
  4867. "description": "Provides jQuery UI Datepicker library.",
  4868. "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
  4869. "support": {
  4870. "source": "https://git.drupalcode.org/project/jquery_ui_datepicker"
  4871. }
  4872. },
  4873. {
  4874. "name": "drupal/jquery_ui_draggable",
  4875. "version": "2.0.0",
  4876. "source": {
  4877. "type": "git",
  4878. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  4879. "reference": "2.0.0"
  4880. },
  4881. "dist": {
  4882. "type": "zip",
  4883. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.0.0.zip",
  4884. "reference": "2.0.0",
  4885. "shasum": "13a8f4bf037449cd176ddb967fc9cba9a466a705"
  4886. },
  4887. "require": {
  4888. "drupal/core": "^9.2 || ^10",
  4889. "drupal/jquery_ui": "^1.6"
  4890. },
  4891. "type": "drupal-module",
  4892. "extra": {
  4893. "drupal": {
  4894. "version": "2.0.0",
  4895. "datestamp": "1670871516",
  4896. "security-coverage": {
  4897. "status": "covered",
  4898. "message": "Covered by Drupal's security advisory policy"
  4899. }
  4900. }
  4901. },
  4902. "notification-url": "https://packages.drupal.org/8/downloads",
  4903. "license": [
  4904. "GPL-2.0-or-later"
  4905. ],
  4906. "authors": [
  4907. {
  4908. "name": "bnjmnm",
  4909. "homepage": "https://www.drupal.org/user/2369194"
  4910. },
  4911. {
  4912. "name": "lauriii",
  4913. "homepage": "https://www.drupal.org/user/1078742"
  4914. },
  4915. {
  4916. "name": "zrpnr",
  4917. "homepage": "https://www.drupal.org/user/1448368"
  4918. }
  4919. ],
  4920. "description": "Provides jQuery UI Draggable library.",
  4921. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  4922. "support": {
  4923. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  4924. }
  4925. },
  4926. {
  4927. "name": "drupal/jquery_ui_droppable",
  4928. "version": "1.5.0",
  4929. "source": {
  4930. "type": "git",
  4931. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  4932. "reference": "8.x-1.5"
  4933. },
  4934. "dist": {
  4935. "type": "zip",
  4936. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-8.x-1.5.zip",
  4937. "reference": "8.x-1.5",
  4938. "shasum": "ee9fec147493ce6c81fdf95ec463f7092606e913"
  4939. },
  4940. "require": {
  4941. "drupal/core": "^9.2 || ^10",
  4942. "drupal/jquery_ui": "^1.5",
  4943. "drupal/jquery_ui_draggable": "*"
  4944. },
  4945. "type": "drupal-module",
  4946. "extra": {
  4947. "drupal": {
  4948. "version": "8.x-1.5",
  4949. "datestamp": "1668452746",
  4950. "security-coverage": {
  4951. "status": "covered",
  4952. "message": "Covered by Drupal's security advisory policy"
  4953. }
  4954. }
  4955. },
  4956. "notification-url": "https://packages.drupal.org/8/downloads",
  4957. "license": [
  4958. "GPL-2.0-or-later"
  4959. ],
  4960. "authors": [
  4961. {
  4962. "name": "bnjmnm",
  4963. "homepage": "https://www.drupal.org/user/2369194"
  4964. },
  4965. {
  4966. "name": "lauriii",
  4967. "homepage": "https://www.drupal.org/user/1078742"
  4968. },
  4969. {
  4970. "name": "zrpnr",
  4971. "homepage": "https://www.drupal.org/user/1448368"
  4972. }
  4973. ],
  4974. "description": "Provides jQuery UI Droppable library.",
  4975. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  4976. "support": {
  4977. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  4978. }
  4979. },
  4980. {
  4981. "name": "drupal/jquery_ui_slider",
  4982. "version": "2.0.0",
  4983. "source": {
  4984. "type": "git",
  4985. "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
  4986. "reference": "2.0.0"
  4987. },
  4988. "dist": {
  4989. "type": "zip",
  4990. "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-2.0.0.zip",
  4991. "reference": "2.0.0",
  4992. "shasum": "86b7d71e91013cffafb8021dbf8047745ebc5fd6"
  4993. },
  4994. "require": {
  4995. "drupal/core": "^9.2 || ^10",
  4996. "drupal/jquery_ui": "^1.6"
  4997. },
  4998. "type": "drupal-module",
  4999. "extra": {
  5000. "drupal": {
  5001. "version": "2.0.0",
  5002. "datestamp": "1670871571",
  5003. "security-coverage": {
  5004. "status": "covered",
  5005. "message": "Covered by Drupal's security advisory policy"
  5006. }
  5007. }
  5008. },
  5009. "notification-url": "https://packages.drupal.org/8/downloads",
  5010. "license": [
  5011. "GPL-2.0-or-later"
  5012. ],
  5013. "authors": [
  5014. {
  5015. "name": "bnjmnm",
  5016. "homepage": "https://www.drupal.org/user/2369194"
  5017. },
  5018. {
  5019. "name": "lauriii",
  5020. "homepage": "https://www.drupal.org/user/1078742"
  5021. },
  5022. {
  5023. "name": "zrpnr",
  5024. "homepage": "https://www.drupal.org/user/1448368"
  5025. }
  5026. ],
  5027. "description": "Provides jQuery UI Slider library.",
  5028. "homepage": "https://www.drupal.org/project/jquery_ui_slider",
  5029. "support": {
  5030. "source": "https://git.drupalcode.org/project/jquery_ui_slider"
  5031. }
  5032. },
  5033. {
  5034. "name": "drupal/jquery_ui_touch_punch",
  5035. "version": "1.1.0",
  5036. "source": {
  5037. "type": "git",
  5038. "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
  5039. "reference": "1.1.0"
  5040. },
  5041. "dist": {
  5042. "type": "zip",
  5043. "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.1.0.zip",
  5044. "reference": "1.1.0",
  5045. "shasum": "4b7e50a98246dfa6ef48e5b12c70277873902824"
  5046. },
  5047. "require": {
  5048. "drupal/core": "^8 || ^9 || ^10",
  5049. "drupal/jquery_ui": "^1.0",
  5050. "politsin/jquery-ui-touch-punch": "^1.0"
  5051. },
  5052. "type": "drupal-module",
  5053. "extra": {
  5054. "drupal": {
  5055. "version": "1.1.0",
  5056. "datestamp": "1662744607",
  5057. "security-coverage": {
  5058. "status": "covered",
  5059. "message": "Covered by Drupal's security advisory policy"
  5060. }
  5061. }
  5062. },
  5063. "notification-url": "https://packages.drupal.org/8/downloads",
  5064. "license": [
  5065. "GPL-2.0-or-later"
  5066. ],
  5067. "authors": [
  5068. {
  5069. "name": "Naveen Valecha",
  5070. "homepage": "https://drupal.org/u/naveenvalecha",
  5071. "role": "Maintainer"
  5072. },
  5073. {
  5074. "name": "naveenvalecha",
  5075. "homepage": "https://www.drupal.org/user/2665733"
  5076. }
  5077. ],
  5078. "description": "Provides jQuery UI Touch Punch library.",
  5079. "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5080. "keywords": [
  5081. "Drupal",
  5082. "jquery_ui_touch_punch"
  5083. ],
  5084. "support": {
  5085. "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5086. "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch"
  5087. }
  5088. },
  5089. {
  5090. "name": "drupal/link_attributes",
  5091. "version": "1.14.0",
  5092. "source": {
  5093. "type": "git",
  5094. "url": "https://git.drupalcode.org/project/link_attributes.git",
  5095. "reference": "8.x-1.14"
  5096. },
  5097. "dist": {
  5098. "type": "zip",
  5099. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.14.zip",
  5100. "reference": "8.x-1.14",
  5101. "shasum": "fa4f27ecaed7e6b3c58c0adc679918a9beb7ded5"
  5102. },
  5103. "require": {
  5104. "drupal/core": "^9 || ^10"
  5105. },
  5106. "type": "drupal-module",
  5107. "extra": {
  5108. "drupal": {
  5109. "version": "8.x-1.14",
  5110. "datestamp": "1687393687",
  5111. "security-coverage": {
  5112. "status": "covered",
  5113. "message": "Covered by Drupal's security advisory policy"
  5114. }
  5115. }
  5116. },
  5117. "notification-url": "https://packages.drupal.org/8/downloads",
  5118. "license": [
  5119. "GPL-2.0-or-later"
  5120. ],
  5121. "authors": [
  5122. {
  5123. "name": "larowlan",
  5124. "homepage": "https://www.drupal.org/user/395439"
  5125. }
  5126. ],
  5127. "description": "Provides a widget to allow settings of link attributes for menu links.",
  5128. "homepage": "https://www.drupal.org/project/link_attributes",
  5129. "keywords": [
  5130. "Drupal"
  5131. ],
  5132. "support": {
  5133. "source": "https://git.drupalcode.org/project/link_attributes",
  5134. "issues": "https://www.drupal.org/project/issues/link_attributes"
  5135. }
  5136. },
  5137. {
  5138. "name": "drupal/linked_field",
  5139. "version": "1.5.0",
  5140. "source": {
  5141. "type": "git",
  5142. "url": "https://git.drupalcode.org/project/linked_field.git",
  5143. "reference": "8.x-1.5"
  5144. },
  5145. "dist": {
  5146. "type": "zip",
  5147. "url": "https://ftp.drupal.org/files/projects/linked_field-8.x-1.5.zip",
  5148. "reference": "8.x-1.5",
  5149. "shasum": "31ed8008d2f88c693334f6faad03112280820fe0"
  5150. },
  5151. "require": {
  5152. "drupal/core": "^8.8 || ^9 || ^10"
  5153. },
  5154. "type": "drupal-module",
  5155. "extra": {
  5156. "drupal": {
  5157. "version": "8.x-1.5",
  5158. "datestamp": "1677239525",
  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": "jcnventura",
  5172. "homepage": "https://www.drupal.org/user/122464"
  5173. },
  5174. {
  5175. "name": "yannickoo",
  5176. "homepage": "https://www.drupal.org/user/531118"
  5177. }
  5178. ],
  5179. "description": "Adds the functionality to link fields to a specific destination.",
  5180. "homepage": "https://www.drupal.org/project/linked_field",
  5181. "support": {
  5182. "source": "https://git.drupalcode.org/project/linked_field"
  5183. }
  5184. },
  5185. {
  5186. "name": "drupal/linkit",
  5187. "version": "6.1.2",
  5188. "source": {
  5189. "type": "git",
  5190. "url": "https://git.drupalcode.org/project/linkit.git",
  5191. "reference": "6.1.2"
  5192. },
  5193. "dist": {
  5194. "type": "zip",
  5195. "url": "https://ftp.drupal.org/files/projects/linkit-6.1.2.zip",
  5196. "reference": "6.1.2",
  5197. "shasum": "63fb311d2b78df81a9a588330429b640ec7da0e8"
  5198. },
  5199. "require": {
  5200. "drupal/core": "^10.1"
  5201. },
  5202. "require-dev": {
  5203. "drupal/ckeditor": "*",
  5204. "drupal/imce": "*"
  5205. },
  5206. "type": "drupal-module",
  5207. "extra": {
  5208. "drupal": {
  5209. "version": "6.1.2",
  5210. "datestamp": "1696865478",
  5211. "security-coverage": {
  5212. "status": "covered",
  5213. "message": "Covered by Drupal's security advisory policy"
  5214. }
  5215. }
  5216. },
  5217. "notification-url": "https://packages.drupal.org/8/downloads",
  5218. "license": [
  5219. "GPL-2.0-or-later"
  5220. ],
  5221. "authors": [
  5222. {
  5223. "name": "Emil Stjerneman",
  5224. "homepage": "https://stjerneman.com",
  5225. "email": "emil@stjerneman.com",
  5226. "role": "Maintainer"
  5227. },
  5228. {
  5229. "name": "johnwebdev",
  5230. "homepage": "https://www.drupal.org/user/3331569"
  5231. },
  5232. {
  5233. "name": "mark_fullmer",
  5234. "homepage": "https://www.drupal.org/user/2612816"
  5235. }
  5236. ],
  5237. "description": "Linkit - Enriched linking experience",
  5238. "homepage": "http://drupal.org/project/linkit",
  5239. "support": {
  5240. "source": "http://cgit.drupalcode.org/linkit",
  5241. "issues": "http://drupal.org/project/linkit"
  5242. }
  5243. },
  5244. {
  5245. "name": "drupal/login_destination",
  5246. "version": "dev-2.x",
  5247. "source": {
  5248. "type": "git",
  5249. "url": "https://git.drupalcode.org/project/login_destination.git",
  5250. "reference": "5ba35c477e9b902b08c70c60e1d28eff11cc8e9f"
  5251. },
  5252. "require": {
  5253. "drupal/core": "^8.7.10 || ^9 || ^10"
  5254. },
  5255. "require-dev": {
  5256. "drupal/admin_toolbar": "^1.23",
  5257. "drupal/admin_toolbar_tools": "*"
  5258. },
  5259. "type": "drupal-module",
  5260. "extra": {
  5261. "branch-alias": {
  5262. "dev-2.x": "2.x-dev"
  5263. },
  5264. "drupal": {
  5265. "version": "8.x-2.0-beta5+3-dev",
  5266. "datestamp": "1680181961",
  5267. "security-coverage": {
  5268. "status": "not-covered",
  5269. "message": "Dev releases are not covered by Drupal security advisories."
  5270. }
  5271. }
  5272. },
  5273. "notification-url": "https://packages.drupal.org/8/downloads",
  5274. "license": [
  5275. "GPL-2.0-or-later"
  5276. ],
  5277. "authors": [
  5278. {
  5279. "name": "rsvelko",
  5280. "homepage": "https://www.drupal.org/u/rsvelko",
  5281. "role": "Creator, Maintainer"
  5282. },
  5283. {
  5284. "name": "Other Contributors",
  5285. "homepage": "https://www.drupal.org/node/69051/committers",
  5286. "role": "Contributors"
  5287. },
  5288. {
  5289. "name": "ddrozdik",
  5290. "homepage": "https://www.drupal.org/user/574124"
  5291. },
  5292. {
  5293. "name": "jng12",
  5294. "homepage": "https://www.drupal.org/user/204316"
  5295. },
  5296. {
  5297. "name": "marcp",
  5298. "homepage": "https://www.drupal.org/user/20885"
  5299. },
  5300. {
  5301. "name": "mithy",
  5302. "homepage": "https://www.drupal.org/user/258911"
  5303. },
  5304. {
  5305. "name": "moshe weitzman",
  5306. "homepage": "https://www.drupal.org/user/23"
  5307. },
  5308. {
  5309. "name": "Oliver Huynh",
  5310. "homepage": "https://www.drupal.org/user/243730"
  5311. },
  5312. {
  5313. "name": "perennial.sky",
  5314. "homepage": "https://www.drupal.org/user/2622667"
  5315. },
  5316. {
  5317. "name": "rsvelko",
  5318. "homepage": "https://www.drupal.org/user/337401"
  5319. }
  5320. ],
  5321. "description": "Customizes the destination the user is redirected to after login/logout/registration/one-time login.",
  5322. "homepage": "https://drupal.org/project/login_destination",
  5323. "support": {
  5324. "source": "https://git.drupalcode.org/project/login_destination",
  5325. "issues": "https://drupal.org/project/issues/login_destination"
  5326. }
  5327. },
  5328. {
  5329. "name": "drupal/maillog",
  5330. "version": "dev-1.x",
  5331. "source": {
  5332. "type": "git",
  5333. "url": "https://git.drupalcode.org/project/maillog.git",
  5334. "reference": "baa5d6ca739e6aecfdf28461d54911a2f6a038a4"
  5335. },
  5336. "require": {
  5337. "drupal/core": "^9 || ^10"
  5338. },
  5339. "type": "drupal-module",
  5340. "extra": {
  5341. "branch-alias": {
  5342. "dev-1.x": "1.x-dev"
  5343. },
  5344. "drupal": {
  5345. "version": "8.x-1.1+2-dev",
  5346. "datestamp": "1686405787",
  5347. "security-coverage": {
  5348. "status": "not-covered",
  5349. "message": "Dev releases are not covered by Drupal security advisories."
  5350. }
  5351. }
  5352. },
  5353. "notification-url": "https://packages.drupal.org/8/downloads",
  5354. "license": [
  5355. "GPL-2.0-or-later"
  5356. ],
  5357. "authors": [
  5358. {
  5359. "name": "Berdir",
  5360. "homepage": "https://www.drupal.org/user/214652"
  5361. },
  5362. {
  5363. "name": "DamienMcKenna",
  5364. "homepage": "https://www.drupal.org/user/108450"
  5365. },
  5366. {
  5367. "name": "miro_dietiker",
  5368. "homepage": "https://www.drupal.org/user/227761"
  5369. },
  5370. {
  5371. "name": "pluess",
  5372. "homepage": "https://www.drupal.org/user/84659"
  5373. }
  5374. ],
  5375. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  5376. "homepage": "https://www.drupal.org/project/maillog",
  5377. "support": {
  5378. "source": "https://git.drupalcode.org/project/maillog"
  5379. }
  5380. },
  5381. {
  5382. "name": "drupal/mailsystem",
  5383. "version": "4.4.0",
  5384. "source": {
  5385. "type": "git",
  5386. "url": "https://git.drupalcode.org/project/mailsystem.git",
  5387. "reference": "8.x-4.4"
  5388. },
  5389. "dist": {
  5390. "type": "zip",
  5391. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.4.zip",
  5392. "reference": "8.x-4.4",
  5393. "shasum": "49b2e9efd090cdb4a282c7638b1c76d6723c47b6"
  5394. },
  5395. "require": {
  5396. "drupal/core": "^9 || ^10"
  5397. },
  5398. "type": "drupal-module",
  5399. "extra": {
  5400. "drupal": {
  5401. "version": "8.x-4.4",
  5402. "datestamp": "1657576306",
  5403. "security-coverage": {
  5404. "status": "covered",
  5405. "message": "Covered by Drupal's security advisory policy"
  5406. }
  5407. }
  5408. },
  5409. "notification-url": "https://packages.drupal.org/8/downloads",
  5410. "license": [
  5411. "GPL-2.0-or-later"
  5412. ],
  5413. "authors": [
  5414. {
  5415. "name": "Berdir",
  5416. "homepage": "https://www.drupal.org/user/214652"
  5417. },
  5418. {
  5419. "name": "Les Lim",
  5420. "homepage": "https://www.drupal.org/user/84263"
  5421. },
  5422. {
  5423. "name": "Manuel Garcia",
  5424. "homepage": "https://www.drupal.org/user/213194"
  5425. },
  5426. {
  5427. "name": "miro_dietiker",
  5428. "homepage": "https://www.drupal.org/user/227761"
  5429. },
  5430. {
  5431. "name": "Nafes",
  5432. "homepage": "https://www.drupal.org/user/2489926"
  5433. },
  5434. {
  5435. "name": "pillarsdotnet",
  5436. "homepage": "https://www.drupal.org/user/36148"
  5437. }
  5438. ],
  5439. "description": "Mail System",
  5440. "homepage": "https://www.drupal.org/project/mailsystem",
  5441. "support": {
  5442. "source": "https://git.drupalcode.org/project/mailsystem"
  5443. }
  5444. },
  5445. {
  5446. "name": "drupal/matomo",
  5447. "version": "1.23.0",
  5448. "source": {
  5449. "type": "git",
  5450. "url": "https://git.drupalcode.org/project/matomo.git",
  5451. "reference": "8.x-1.23"
  5452. },
  5453. "dist": {
  5454. "type": "zip",
  5455. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.23.zip",
  5456. "reference": "8.x-1.23",
  5457. "shasum": "c2dbf12878388c5859e64f1e74a9ca5110d1623f"
  5458. },
  5459. "require": {
  5460. "drupal/core": "^9.0 || ^10"
  5461. },
  5462. "conflict": {
  5463. "drupal/csp": "<1.12"
  5464. },
  5465. "require-dev": {
  5466. "drupal/csp": "~1.12",
  5467. "drupal/php": "~1.1",
  5468. "drupal/token": "~1.9"
  5469. },
  5470. "type": "drupal-module",
  5471. "extra": {
  5472. "drupal": {
  5473. "version": "8.x-1.23",
  5474. "datestamp": "1700936102",
  5475. "security-coverage": {
  5476. "status": "covered",
  5477. "message": "Covered by Drupal's security advisory policy"
  5478. }
  5479. }
  5480. },
  5481. "notification-url": "https://packages.drupal.org/8/downloads",
  5482. "license": [
  5483. "GPL-2.0-or-later"
  5484. ],
  5485. "authors": [
  5486. {
  5487. "name": "C-Logemann",
  5488. "homepage": "https://www.drupal.org/user/218368"
  5489. },
  5490. {
  5491. "name": "Grimreaper",
  5492. "homepage": "https://www.drupal.org/user/2388214"
  5493. },
  5494. {
  5495. "name": "hass",
  5496. "homepage": "https://www.drupal.org/user/85918"
  5497. },
  5498. {
  5499. "name": "shelane",
  5500. "homepage": "https://www.drupal.org/user/2674989"
  5501. }
  5502. ],
  5503. "description": "Adds Matomo javascript tracking code to all your site's pages.",
  5504. "homepage": "https://www.drupal.org/project/matomo",
  5505. "support": {
  5506. "source": "https://git.drupalcode.org/project/matomo"
  5507. }
  5508. },
  5509. {
  5510. "name": "drupal/maxlength",
  5511. "version": "2.1.2",
  5512. "source": {
  5513. "type": "git",
  5514. "url": "https://git.drupalcode.org/project/maxlength.git",
  5515. "reference": "2.1.2"
  5516. },
  5517. "dist": {
  5518. "type": "zip",
  5519. "url": "https://ftp.drupal.org/files/projects/maxlength-2.1.2.zip",
  5520. "reference": "2.1.2",
  5521. "shasum": "97015e4d1065770a92953c9f37fef5d55b360cf6"
  5522. },
  5523. "require": {
  5524. "drupal/core": "^9.2 || ^10"
  5525. },
  5526. "type": "drupal-module",
  5527. "extra": {
  5528. "drupal": {
  5529. "version": "2.1.2",
  5530. "datestamp": "1689974531",
  5531. "security-coverage": {
  5532. "status": "covered",
  5533. "message": "Covered by Drupal's security advisory policy"
  5534. }
  5535. }
  5536. },
  5537. "notification-url": "https://packages.drupal.org/8/downloads",
  5538. "license": [
  5539. "GPL-2.0-or-later"
  5540. ],
  5541. "authors": [
  5542. {
  5543. "name": "Marius Scurtescu (mariuss)",
  5544. "homepage": "https://www.drupal.org/u/mariuss",
  5545. "role": "Maintainer"
  5546. },
  5547. {
  5548. "name": "Clayton Dewey (cedewey)",
  5549. "homepage": "https://www.drupal.org/u/cedewey",
  5550. "role": "Maintainer"
  5551. },
  5552. {
  5553. "name": "Daniel Wehner (dawehner)",
  5554. "homepage": "https://www.drupal.org/u/dawehner",
  5555. "role": "Maintainer"
  5556. },
  5557. {
  5558. "name": "Paulino Michelazzo (pmichelazzo)",
  5559. "homepage": "https://www.drupal.org/u/pmichelazzo",
  5560. "role": "Maintainer"
  5561. },
  5562. {
  5563. "name": "Jeff Hipp (hipp2bsquare)",
  5564. "homepage": "https://www.drupal.org/u/hipp2bsquare",
  5565. "role": "Maintainer"
  5566. },
  5567. {
  5568. "name": "Steven DuBois (srdtwc)",
  5569. "homepage": "https://www.drupal.org/u/srdtwc",
  5570. "role": "Maintainer"
  5571. },
  5572. {
  5573. "name": "srdtwc",
  5574. "homepage": "https://www.drupal.org/user/3422763"
  5575. }
  5576. ],
  5577. "description": "MaxLength allows a soft or hard character limit to be set on titles, text fields and link fields.",
  5578. "homepage": "https://www.drupal.org/project/maxlength",
  5579. "support": {
  5580. "source": "https://git.drupalcode.org/project/maxlength",
  5581. "issues": "https://www.drupal.org/project/issues/maxlength"
  5582. }
  5583. },
  5584. {
  5585. "name": "drupal/menu_admin_per_menu",
  5586. "version": "1.5.0",
  5587. "source": {
  5588. "type": "git",
  5589. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  5590. "reference": "8.x-1.5"
  5591. },
  5592. "dist": {
  5593. "type": "zip",
  5594. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.5.zip",
  5595. "reference": "8.x-1.5",
  5596. "shasum": "ec8c7a4a064aa285dfb722dad264da9936fc81b6"
  5597. },
  5598. "require": {
  5599. "drupal/core": "^9 || ^10"
  5600. },
  5601. "type": "drupal-module",
  5602. "extra": {
  5603. "drupal": {
  5604. "version": "8.x-1.5",
  5605. "datestamp": "1660918821",
  5606. "security-coverage": {
  5607. "status": "covered",
  5608. "message": "Covered by Drupal's security advisory policy"
  5609. }
  5610. }
  5611. },
  5612. "notification-url": "https://packages.drupal.org/8/downloads",
  5613. "license": [
  5614. "GPL-2.0-or-later"
  5615. ],
  5616. "authors": [
  5617. {
  5618. "name": "anrikun",
  5619. "homepage": "https://www.drupal.org/user/410199"
  5620. },
  5621. {
  5622. "name": "JeroenT",
  5623. "homepage": "https://www.drupal.org/user/2228934"
  5624. },
  5625. {
  5626. "name": "jonas139",
  5627. "homepage": "https://www.drupal.org/user/2873401"
  5628. },
  5629. {
  5630. "name": "mkdok",
  5631. "homepage": "https://www.drupal.org/user/3308753"
  5632. }
  5633. ],
  5634. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  5635. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  5636. "support": {
  5637. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  5638. }
  5639. },
  5640. {
  5641. "name": "drupal/menu_block",
  5642. "version": "dev-1.x",
  5643. "source": {
  5644. "type": "git",
  5645. "url": "https://git.drupalcode.org/project/menu_block.git",
  5646. "reference": "aafb3953b765e93d4de49c4fb6130a49304e6f2a"
  5647. },
  5648. "require": {
  5649. "drupal/core": "^9.1 || ^10"
  5650. },
  5651. "type": "drupal-module",
  5652. "extra": {
  5653. "branch-alias": {
  5654. "dev-1.x": "1.x-dev"
  5655. },
  5656. "drupal": {
  5657. "version": "8.x-1.9+1-dev",
  5658. "datestamp": "1667434044",
  5659. "security-coverage": {
  5660. "status": "not-covered",
  5661. "message": "Dev releases are not covered by Drupal security advisories."
  5662. }
  5663. }
  5664. },
  5665. "notification-url": "https://packages.drupal.org/8/downloads",
  5666. "license": [
  5667. "GPL-2.0-or-later"
  5668. ],
  5669. "authors": [
  5670. {
  5671. "name": "Dave Reid",
  5672. "homepage": "https://www.drupal.org/user/53892"
  5673. },
  5674. {
  5675. "name": "joelpittet",
  5676. "homepage": "https://www.drupal.org/user/160302"
  5677. },
  5678. {
  5679. "name": "JohnAlbin",
  5680. "homepage": "https://www.drupal.org/user/32095"
  5681. },
  5682. {
  5683. "name": "kim.pepper",
  5684. "homepage": "https://www.drupal.org/user/370574"
  5685. },
  5686. {
  5687. "name": "RenatoG",
  5688. "homepage": "https://www.drupal.org/user/3326031"
  5689. },
  5690. {
  5691. "name": "rrrob",
  5692. "homepage": "https://www.drupal.org/user/273533"
  5693. }
  5694. ],
  5695. "description": "Provides configurable blocks of menu links.",
  5696. "homepage": "https://www.drupal.org/project/menu_block",
  5697. "support": {
  5698. "source": "https://git.drupalcode.org/project/menu_block"
  5699. }
  5700. },
  5701. {
  5702. "name": "drupal/menu_position",
  5703. "version": "dev-1.x",
  5704. "source": {
  5705. "type": "git",
  5706. "url": "https://git.drupalcode.org/project/menu_position.git",
  5707. "reference": "f88cef07a70af63337a82652b9224a9c0b08b5b2"
  5708. },
  5709. "require": {
  5710. "drupal/core": "^8 || ^9 || ^10"
  5711. },
  5712. "type": "drupal-module",
  5713. "extra": {
  5714. "branch-alias": {
  5715. "dev-1.x": "1.x-dev"
  5716. },
  5717. "drupal": {
  5718. "version": "8.x-1.0+6-dev",
  5719. "datestamp": "1685505680",
  5720. "security-coverage": {
  5721. "status": "not-covered",
  5722. "message": "Dev releases are not covered by Drupal security advisories."
  5723. }
  5724. }
  5725. },
  5726. "notification-url": "https://packages.drupal.org/8/downloads",
  5727. "license": [
  5728. "GPL-2.0-or-later"
  5729. ],
  5730. "authors": [
  5731. {
  5732. "name": "BarisW",
  5733. "homepage": "https://www.drupal.org/user/107229"
  5734. },
  5735. {
  5736. "name": "joelpittet",
  5737. "homepage": "https://www.drupal.org/user/160302"
  5738. },
  5739. {
  5740. "name": "JohnAlbin",
  5741. "homepage": "https://www.drupal.org/user/32095"
  5742. },
  5743. {
  5744. "name": "lbainbridge",
  5745. "homepage": "https://www.drupal.org/user/2406996"
  5746. },
  5747. {
  5748. "name": "Rajab Natshah",
  5749. "homepage": "https://www.drupal.org/user/1414312"
  5750. },
  5751. {
  5752. "name": "Sutharsan",
  5753. "homepage": "https://www.drupal.org/user/73854"
  5754. }
  5755. ],
  5756. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  5757. "homepage": "https://www.drupal.org/project/menu_position",
  5758. "support": {
  5759. "source": "https://git.drupalcode.org/project/menu_position",
  5760. "issues": "https://www.drupal.org/project/issues/menu_position"
  5761. }
  5762. },
  5763. {
  5764. "name": "drupal/mimemail",
  5765. "version": "1.0.0-alpha6",
  5766. "source": {
  5767. "type": "git",
  5768. "url": "https://git.drupalcode.org/project/mimemail.git",
  5769. "reference": "8.x-1.0-alpha6"
  5770. },
  5771. "dist": {
  5772. "type": "zip",
  5773. "url": "https://ftp.drupal.org/files/projects/mimemail-8.x-1.0-alpha6.zip",
  5774. "reference": "8.x-1.0-alpha6",
  5775. "shasum": "c25246747dac4372c7d5a5a5fd0f276d9e468eff"
  5776. },
  5777. "require": {
  5778. "drupal/core": "^9.3 || ^10",
  5779. "drupal/mailsystem": "^4"
  5780. },
  5781. "require-dev": {
  5782. "drupal/rules": "^3"
  5783. },
  5784. "type": "drupal-module",
  5785. "extra": {
  5786. "drupal": {
  5787. "version": "8.x-1.0-alpha6",
  5788. "datestamp": "1697143284",
  5789. "security-coverage": {
  5790. "status": "not-covered",
  5791. "message": "Alpha releases are not covered by Drupal security advisories."
  5792. }
  5793. }
  5794. },
  5795. "notification-url": "https://packages.drupal.org/8/downloads",
  5796. "license": [
  5797. "GPL-2.0-or-later"
  5798. ],
  5799. "authors": [
  5800. {
  5801. "name": "TR",
  5802. "homepage": "https://www.drupal.org/user/202830"
  5803. }
  5804. ],
  5805. "description": "Sends MIME-encoded emails with embedded images and attachments.",
  5806. "homepage": "https://www.drupal.org/project/mimemail",
  5807. "support": {
  5808. "source": "https://git.drupalcode.org/project/mimemail",
  5809. "issues": "https://www.drupal.org/project/issues/mimemail"
  5810. }
  5811. },
  5812. {
  5813. "name": "drupal/notify",
  5814. "version": "2.0.0-beta1",
  5815. "source": {
  5816. "type": "git",
  5817. "url": "https://git.drupalcode.org/project/notify.git",
  5818. "reference": "2.0.0-beta1"
  5819. },
  5820. "dist": {
  5821. "type": "zip",
  5822. "url": "https://ftp.drupal.org/files/projects/notify-2.0.0-beta1.zip",
  5823. "reference": "2.0.0-beta1",
  5824. "shasum": "a0f06792b4aed38c8c466389ae4c03497c4c9270"
  5825. },
  5826. "require": {
  5827. "drupal/core": "^9 || ^10"
  5828. },
  5829. "type": "drupal-module",
  5830. "extra": {
  5831. "drupal": {
  5832. "version": "2.0.0-beta1",
  5833. "datestamp": "1699808614",
  5834. "security-coverage": {
  5835. "status": "not-covered",
  5836. "message": "Beta releases are not covered by Drupal security advisories."
  5837. }
  5838. }
  5839. },
  5840. "notification-url": "https://packages.drupal.org/8/downloads",
  5841. "license": [
  5842. "GPL-2.0-or-later"
  5843. ],
  5844. "authors": [
  5845. {
  5846. "name": "gisle",
  5847. "homepage": "https://www.drupal.org/user/409554"
  5848. },
  5849. {
  5850. "name": "matt2000",
  5851. "homepage": "https://www.drupal.org/user/143172"
  5852. },
  5853. {
  5854. "name": "rik.scholten",
  5855. "homepage": "https://www.drupal.org/user/3661104"
  5856. }
  5857. ],
  5858. "description": "Enables notifications of new content and comments by e-mail.",
  5859. "homepage": "https://www.drupal.org/project/notify",
  5860. "support": {
  5861. "source": "https://git.drupalcode.org/project/notify"
  5862. }
  5863. },
  5864. {
  5865. "name": "drupal/page_manager",
  5866. "version": "4.0.0-rc2",
  5867. "source": {
  5868. "type": "git",
  5869. "url": "https://git.drupalcode.org/project/page_manager.git",
  5870. "reference": "8.x-4.0-rc2"
  5871. },
  5872. "dist": {
  5873. "type": "zip",
  5874. "url": "https://ftp.drupal.org/files/projects/page_manager-8.x-4.0-rc2.zip",
  5875. "reference": "8.x-4.0-rc2",
  5876. "shasum": "4a1e96284c5775343fbb4612072a2abfc83ebc33"
  5877. },
  5878. "require": {
  5879. "drupal/core": "^9.3 || ^10",
  5880. "drupal/ctools": "^3.11 || ^4.0"
  5881. },
  5882. "type": "drupal-module",
  5883. "extra": {
  5884. "drupal": {
  5885. "version": "8.x-4.0-rc2",
  5886. "datestamp": "1671210021",
  5887. "security-coverage": {
  5888. "status": "not-covered",
  5889. "message": "RC releases are not covered by Drupal security advisories."
  5890. }
  5891. },
  5892. "branch-alias": {
  5893. "dev-8.x-4.x": "4.x-dev"
  5894. }
  5895. },
  5896. "notification-url": "https://packages.drupal.org/8/downloads",
  5897. "license": [
  5898. "GPL-2.0-or-later"
  5899. ],
  5900. "authors": [
  5901. {
  5902. "name": "Tim Plunkett",
  5903. "homepage": "https://www.drupal.org/u/tim.plunkett",
  5904. "role": "Maintainer"
  5905. },
  5906. {
  5907. "name": "EclipseGc",
  5908. "homepage": "https://www.drupal.org/user/61203"
  5909. },
  5910. {
  5911. "name": "ivnish",
  5912. "homepage": "https://www.drupal.org/user/3547706"
  5913. },
  5914. {
  5915. "name": "japerry",
  5916. "homepage": "https://www.drupal.org/user/45640"
  5917. },
  5918. {
  5919. "name": "joelpittet",
  5920. "homepage": "https://www.drupal.org/user/160302"
  5921. },
  5922. {
  5923. "name": "manuel.adan",
  5924. "homepage": "https://www.drupal.org/user/516420"
  5925. },
  5926. {
  5927. "name": "phenaproxima",
  5928. "homepage": "https://www.drupal.org/user/205645"
  5929. }
  5930. ],
  5931. "description": "Provides a way to place blocks on a custom page.",
  5932. "homepage": "https://www.drupal.org/project/page_manager",
  5933. "support": {
  5934. "source": "https://git.drupal.org/project/page_manager.git",
  5935. "issues": "https://www.drupal.org/project/issues/page_manager",
  5936. "irc": "irc://irc.freenode.org/drupal-contribute"
  5937. }
  5938. },
  5939. {
  5940. "name": "drupal/pagerer",
  5941. "version": "3.0.0",
  5942. "source": {
  5943. "type": "git",
  5944. "url": "https://git.drupalcode.org/project/pagerer.git",
  5945. "reference": "3.0.0"
  5946. },
  5947. "dist": {
  5948. "type": "zip",
  5949. "url": "https://ftp.drupal.org/files/projects/pagerer-3.0.0.zip",
  5950. "reference": "3.0.0",
  5951. "shasum": "8b81271842b68399c1c58d0809cf1c737fa2aa1c"
  5952. },
  5953. "require": {
  5954. "drupal/core": "^10"
  5955. },
  5956. "type": "drupal-module",
  5957. "extra": {
  5958. "drupal": {
  5959. "version": "3.0.0",
  5960. "datestamp": "1663962586",
  5961. "security-coverage": {
  5962. "status": "covered",
  5963. "message": "Covered by Drupal's security advisory policy"
  5964. }
  5965. }
  5966. },
  5967. "notification-url": "https://packages.drupal.org/8/downloads",
  5968. "license": [
  5969. "GPL-2.0-or-later"
  5970. ],
  5971. "authors": [
  5972. {
  5973. "name": "mondrake",
  5974. "homepage": "https://www.drupal.org/user/1307444"
  5975. }
  5976. ],
  5977. "description": "Configurable pager styles.",
  5978. "homepage": "https://www.drupal.org/project/pagerer",
  5979. "support": {
  5980. "source": "https://git.drupalcode.org/project/pagerer"
  5981. }
  5982. },
  5983. {
  5984. "name": "drupal/panels",
  5985. "version": "4.7.0",
  5986. "source": {
  5987. "type": "git",
  5988. "url": "https://git.drupalcode.org/project/panels.git",
  5989. "reference": "8.x-4.7"
  5990. },
  5991. "dist": {
  5992. "type": "zip",
  5993. "url": "https://ftp.drupal.org/files/projects/panels-8.x-4.7.zip",
  5994. "reference": "8.x-4.7",
  5995. "shasum": "5536f192d328e93a9f8c4a2646df15c514d75639"
  5996. },
  5997. "require": {
  5998. "drupal/core": "^9.2 || ^10",
  5999. "drupal/ctools": "^3.12",
  6000. "drupal/jquery_ui_droppable": "^1.5"
  6001. },
  6002. "require-dev": {
  6003. "drupal/jquery_ui_droppable": "*",
  6004. "drupal/page_manager": "^4"
  6005. },
  6006. "type": "drupal-module",
  6007. "extra": {
  6008. "drupal": {
  6009. "version": "8.x-4.7",
  6010. "datestamp": "1668632919",
  6011. "security-coverage": {
  6012. "status": "covered",
  6013. "message": "Covered by Drupal's security advisory policy"
  6014. }
  6015. },
  6016. "branch-alias": {
  6017. "dev-8.x-4.x": "4.x-dev"
  6018. }
  6019. },
  6020. "notification-url": "https://packages.drupal.org/8/downloads",
  6021. "license": [
  6022. "GPL-2.0+"
  6023. ],
  6024. "authors": [
  6025. {
  6026. "name": "Jakob Perry",
  6027. "homepage": "https://www.drupal.org/u/japerry"
  6028. },
  6029. {
  6030. "name": "Samuel Mortenson",
  6031. "homepage": "https://www.drupal.org/u/samuel.mortenson"
  6032. },
  6033. {
  6034. "name": "See other contributors",
  6035. "homepage": "https://www.drupal.org/node/74958/committers"
  6036. },
  6037. {
  6038. "name": "joelpittet",
  6039. "homepage": "https://www.drupal.org/user/160302"
  6040. },
  6041. {
  6042. "name": "Letharion",
  6043. "homepage": "https://www.drupal.org/user/373603"
  6044. },
  6045. {
  6046. "name": "merlinofchaos",
  6047. "homepage": "https://www.drupal.org/user/26979"
  6048. },
  6049. {
  6050. "name": "neclimdul",
  6051. "homepage": "https://www.drupal.org/user/48673"
  6052. },
  6053. {
  6054. "name": "phenaproxima",
  6055. "homepage": "https://www.drupal.org/user/205645"
  6056. },
  6057. {
  6058. "name": "samuel.mortenson",
  6059. "homepage": "https://www.drupal.org/user/2582268"
  6060. }
  6061. ],
  6062. "description": "Core Panels display functions; provides no external UI, at least one other Panels module should be enabled.",
  6063. "homepage": "https://www.drupal.org/project/panels",
  6064. "support": {
  6065. "source": "http://git.drupal.org/project/panels.git",
  6066. "issues": "https://www.drupal.org/project/issues/panels",
  6067. "irc": "irc://irc.freenode.org/drupal-scotch"
  6068. }
  6069. },
  6070. {
  6071. "name": "drupal/paragraphs",
  6072. "version": "1.16.0",
  6073. "source": {
  6074. "type": "git",
  6075. "url": "https://git.drupalcode.org/project/paragraphs.git",
  6076. "reference": "8.x-1.16"
  6077. },
  6078. "dist": {
  6079. "type": "zip",
  6080. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.16.zip",
  6081. "reference": "8.x-1.16",
  6082. "shasum": "48f60810fd8086a52d56e84af8b212cce7a270e8"
  6083. },
  6084. "require": {
  6085. "drupal/core": "^9.3 || ^10",
  6086. "drupal/entity_reference_revisions": "~1.3"
  6087. },
  6088. "require-dev": {
  6089. "drupal/block_field": "1.x-dev",
  6090. "drupal/diff": "1.x-dev",
  6091. "drupal/entity_browser": "2.x-dev",
  6092. "drupal/entity_usage": "2.x-dev",
  6093. "drupal/field_group": "3.x-dev",
  6094. "drupal/inline_entity_form": "1.x-dev",
  6095. "drupal/paragraphs-paragraphs_library": "*",
  6096. "drupal/replicate": "1.x-dev",
  6097. "drupal/search_api": "1.x-dev",
  6098. "drupal/search_api_db": "*"
  6099. },
  6100. "suggest": {
  6101. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  6102. },
  6103. "type": "drupal-module",
  6104. "extra": {
  6105. "drupal": {
  6106. "version": "8.x-1.16",
  6107. "datestamp": "1694007797",
  6108. "security-coverage": {
  6109. "status": "covered",
  6110. "message": "Covered by Drupal's security advisory policy"
  6111. }
  6112. }
  6113. },
  6114. "notification-url": "https://packages.drupal.org/8/downloads",
  6115. "license": [
  6116. "GPL-2.0-or-later"
  6117. ],
  6118. "authors": [
  6119. {
  6120. "name": "Berdir",
  6121. "homepage": "https://www.drupal.org/user/214652"
  6122. },
  6123. {
  6124. "name": "Frans",
  6125. "homepage": "https://www.drupal.org/user/514222"
  6126. },
  6127. {
  6128. "name": "jeroen.b",
  6129. "homepage": "https://www.drupal.org/user/1853532"
  6130. },
  6131. {
  6132. "name": "jstoller",
  6133. "homepage": "https://www.drupal.org/user/99012"
  6134. },
  6135. {
  6136. "name": "miro_dietiker",
  6137. "homepage": "https://www.drupal.org/user/227761"
  6138. },
  6139. {
  6140. "name": "Primsi",
  6141. "homepage": "https://www.drupal.org/user/282629"
  6142. }
  6143. ],
  6144. "description": "Enables the creation of Paragraphs entities.",
  6145. "homepage": "https://www.drupal.org/project/paragraphs",
  6146. "support": {
  6147. "source": "https://git.drupalcode.org/project/paragraphs"
  6148. }
  6149. },
  6150. {
  6151. "name": "drupal/path_alias_xt",
  6152. "version": "dev-1.x",
  6153. "source": {
  6154. "type": "git",
  6155. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  6156. "reference": "0573ad218a2f7143544626165418eaeec03e1157"
  6157. },
  6158. "require": {
  6159. "drupal/core": "^9.3 || ^10"
  6160. },
  6161. "type": "drupal-module",
  6162. "extra": {
  6163. "branch-alias": {
  6164. "dev-1.x": "1.x-dev"
  6165. },
  6166. "drupal": {
  6167. "version": "8.x-1.x-dev",
  6168. "datestamp": "1658166545",
  6169. "security-coverage": {
  6170. "status": "not-covered",
  6171. "message": "Dev releases are not covered by Drupal security advisories."
  6172. }
  6173. }
  6174. },
  6175. "notification-url": "https://packages.drupal.org/8/downloads",
  6176. "license": [
  6177. "GPL-2.0-or-later"
  6178. ],
  6179. "authors": [
  6180. {
  6181. "name": "adriancid",
  6182. "homepage": "https://www.drupal.org/user/1962106"
  6183. },
  6184. {
  6185. "name": "RdeBoer",
  6186. "homepage": "https://www.drupal.org/user/404007"
  6187. },
  6188. {
  6189. "name": "sdstyles",
  6190. "homepage": "https://www.drupal.org/user/1420228"
  6191. }
  6192. ],
  6193. "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.",
  6194. "homepage": "https://www.drupal.org/project/path_alias_xt",
  6195. "support": {
  6196. "source": "https://git.drupalcode.org/project/path_alias_xt"
  6197. }
  6198. },
  6199. {
  6200. "name": "drupal/pathauto",
  6201. "version": "1.12.0",
  6202. "source": {
  6203. "type": "git",
  6204. "url": "https://git.drupalcode.org/project/pathauto.git",
  6205. "reference": "8.x-1.12"
  6206. },
  6207. "dist": {
  6208. "type": "zip",
  6209. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.12.zip",
  6210. "reference": "8.x-1.12",
  6211. "shasum": "b7b6432e315e38e59a7c6cc117134326c580de4c"
  6212. },
  6213. "require": {
  6214. "drupal/core": "^9.3 || ^10",
  6215. "drupal/ctools": "*",
  6216. "drupal/token": "*"
  6217. },
  6218. "suggest": {
  6219. "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."
  6220. },
  6221. "type": "drupal-module",
  6222. "extra": {
  6223. "drupal": {
  6224. "version": "8.x-1.12",
  6225. "datestamp": "1696776683",
  6226. "security-coverage": {
  6227. "status": "covered",
  6228. "message": "Covered by Drupal's security advisory policy"
  6229. }
  6230. },
  6231. "drush": {
  6232. "services": {
  6233. "drush.services.yml": "^9 || ^10"
  6234. }
  6235. }
  6236. },
  6237. "notification-url": "https://packages.drupal.org/8/downloads",
  6238. "license": [
  6239. "GPL-2.0-or-later"
  6240. ],
  6241. "authors": [
  6242. {
  6243. "name": "Berdir",
  6244. "homepage": "https://www.drupal.org/user/214652"
  6245. },
  6246. {
  6247. "name": "Dave Reid",
  6248. "homepage": "https://www.drupal.org/user/53892"
  6249. },
  6250. {
  6251. "name": "Freso",
  6252. "homepage": "https://www.drupal.org/user/27504"
  6253. },
  6254. {
  6255. "name": "greggles",
  6256. "homepage": "https://www.drupal.org/user/36762"
  6257. }
  6258. ],
  6259. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  6260. "homepage": "https://www.drupal.org/project/pathauto",
  6261. "support": {
  6262. "source": "https://cgit.drupalcode.org/pathauto",
  6263. "issues": "https://www.drupal.org/project/issues/pathauto",
  6264. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  6265. }
  6266. },
  6267. {
  6268. "name": "drupal/pathologic",
  6269. "version": "2.0.0-alpha1",
  6270. "source": {
  6271. "type": "git",
  6272. "url": "https://git.drupalcode.org/project/pathologic.git",
  6273. "reference": "2.0.0-alpha1"
  6274. },
  6275. "dist": {
  6276. "type": "zip",
  6277. "url": "https://ftp.drupal.org/files/projects/pathologic-2.0.0-alpha1.zip",
  6278. "reference": "2.0.0-alpha1",
  6279. "shasum": "be911b098ece7d1ffa55cf0d5f33d38ea40acda4"
  6280. },
  6281. "require": {
  6282. "drupal/core": "^9 || ^10"
  6283. },
  6284. "type": "drupal-module",
  6285. "extra": {
  6286. "drupal": {
  6287. "version": "2.0.0-alpha1",
  6288. "datestamp": "1681263978",
  6289. "security-coverage": {
  6290. "status": "not-covered",
  6291. "message": "Alpha releases are not covered by Drupal security advisories."
  6292. }
  6293. }
  6294. },
  6295. "notification-url": "https://packages.drupal.org/8/downloads",
  6296. "license": [
  6297. "GPL-2.0+"
  6298. ],
  6299. "authors": [
  6300. {
  6301. "name": "Berdir",
  6302. "homepage": "https://www.drupal.org/user/214652"
  6303. },
  6304. {
  6305. "name": "dww",
  6306. "homepage": "https://www.drupal.org/user/46549"
  6307. },
  6308. {
  6309. "name": "Garrett Albright",
  6310. "homepage": "https://www.drupal.org/user/191212"
  6311. },
  6312. {
  6313. "name": "mark_fullmer",
  6314. "homepage": "https://www.drupal.org/user/2612816"
  6315. }
  6316. ],
  6317. "description": "Helps avoid broken links and incorrect paths in content.",
  6318. "homepage": "https://www.drupal.org/project/pathologic",
  6319. "support": {
  6320. "source": "https://git.drupalcode.org/project/pathologic"
  6321. }
  6322. },
  6323. {
  6324. "name": "drupal/persistent_login",
  6325. "version": "1.6.0",
  6326. "source": {
  6327. "type": "git",
  6328. "url": "https://git.drupalcode.org/project/persistent_login.git",
  6329. "reference": "8.x-1.6"
  6330. },
  6331. "dist": {
  6332. "type": "zip",
  6333. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.6.zip",
  6334. "reference": "8.x-1.6",
  6335. "shasum": "87bc87ae8c4035efbdf8d6cae17c489c4fdd0aa3"
  6336. },
  6337. "require": {
  6338. "drupal/core": "^9.2 || ^10"
  6339. },
  6340. "type": "drupal-module",
  6341. "extra": {
  6342. "drupal": {
  6343. "version": "8.x-1.6",
  6344. "datestamp": "1679547817",
  6345. "security-coverage": {
  6346. "status": "covered",
  6347. "message": "Covered by Drupal's security advisory policy"
  6348. }
  6349. }
  6350. },
  6351. "notification-url": "https://packages.drupal.org/8/downloads",
  6352. "license": [
  6353. "GPL-2.0-or-later"
  6354. ],
  6355. "authors": [
  6356. {
  6357. "name": "gapple",
  6358. "homepage": "https://www.drupal.org/user/490940"
  6359. }
  6360. ],
  6361. "description": "Provides a \"Remember Me\" feature on the login form.",
  6362. "homepage": "https://www.drupal.org/project/persistent_login",
  6363. "keywords": [
  6364. "Drupal"
  6365. ],
  6366. "support": {
  6367. "source": "https://git.drupalcode.org/project/persistent_login",
  6368. "issues": "https://www.drupal.org/project/issues/persistent_login"
  6369. }
  6370. },
  6371. {
  6372. "name": "drupal/phone_number",
  6373. "version": "2.0.0-alpha5",
  6374. "source": {
  6375. "type": "git",
  6376. "url": "https://git.drupalcode.org/project/phone_number.git",
  6377. "reference": "2.0.0-alpha5"
  6378. },
  6379. "dist": {
  6380. "type": "zip",
  6381. "url": "https://ftp.drupal.org/files/projects/phone_number-2.0.0-alpha5.zip",
  6382. "reference": "2.0.0-alpha5",
  6383. "shasum": "b57f78b8d68c6e1017cdeb7ff77440729d9216c4"
  6384. },
  6385. "require": {
  6386. "drupal/core": "^9.2 || ^10",
  6387. "giggsey/libphonenumber-for-php": "^8.0"
  6388. },
  6389. "type": "drupal-module",
  6390. "extra": {
  6391. "drupal": {
  6392. "version": "2.0.0-alpha5",
  6393. "datestamp": "1698159525",
  6394. "security-coverage": {
  6395. "status": "not-covered",
  6396. "message": "Alpha releases are not covered by Drupal security advisories."
  6397. }
  6398. }
  6399. },
  6400. "notification-url": "https://packages.drupal.org/8/downloads",
  6401. "license": [
  6402. "GPL-2.0+"
  6403. ],
  6404. "authors": [
  6405. {
  6406. "name": "Christopher Caldwell",
  6407. "homepage": "https://www.drupal.org/u/chrisolof",
  6408. "email": "chrisolof@gmail.com",
  6409. "role": "Maintainer"
  6410. },
  6411. {
  6412. "name": "nyariv",
  6413. "homepage": "https://www.drupal.org/user/2747789"
  6414. },
  6415. {
  6416. "name": "tim-diels",
  6417. "homepage": "https://www.drupal.org/user/2915097"
  6418. },
  6419. {
  6420. "name": "vaish",
  6421. "homepage": "https://www.drupal.org/user/92189"
  6422. }
  6423. ],
  6424. "description": "A validated phone number field.",
  6425. "homepage": "http://drupal.org/project/phone_number",
  6426. "support": {
  6427. "source": "https://git.drupalcode.org/project/phone_number"
  6428. }
  6429. },
  6430. {
  6431. "name": "drupal/profile",
  6432. "version": "1.7.0",
  6433. "source": {
  6434. "type": "git",
  6435. "url": "https://git.drupalcode.org/project/profile.git",
  6436. "reference": "8.x-1.7"
  6437. },
  6438. "dist": {
  6439. "type": "zip",
  6440. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.7.zip",
  6441. "reference": "8.x-1.7",
  6442. "shasum": "f0236acff507aff2a1e2e11cb9c873a0b608ec1c"
  6443. },
  6444. "require": {
  6445. "drupal/core": "^9 || ^10",
  6446. "drupal/entity": "^1.0"
  6447. },
  6448. "require-dev": {
  6449. "drupal/token": "^1.7"
  6450. },
  6451. "type": "drupal-module",
  6452. "extra": {
  6453. "drupal": {
  6454. "version": "8.x-1.7",
  6455. "datestamp": "1665131792",
  6456. "security-coverage": {
  6457. "status": "covered",
  6458. "message": "Covered by Drupal's security advisory policy"
  6459. }
  6460. }
  6461. },
  6462. "notification-url": "https://packages.drupal.org/8/downloads",
  6463. "license": [
  6464. "GPL-2.0-or-later"
  6465. ],
  6466. "authors": [
  6467. {
  6468. "name": "bojanz",
  6469. "homepage": "https://www.drupal.org/user/86106"
  6470. },
  6471. {
  6472. "name": "daggerhart",
  6473. "homepage": "https://www.drupal.org/user/167806"
  6474. },
  6475. {
  6476. "name": "fago",
  6477. "homepage": "https://www.drupal.org/user/16747"
  6478. },
  6479. {
  6480. "name": "jsacksick",
  6481. "homepage": "https://www.drupal.org/user/972218"
  6482. },
  6483. {
  6484. "name": "mglaman",
  6485. "homepage": "https://www.drupal.org/user/2416470"
  6486. },
  6487. {
  6488. "name": "pcambra",
  6489. "homepage": "https://www.drupal.org/user/122101"
  6490. }
  6491. ],
  6492. "description": "Provides configurable user profiles.",
  6493. "homepage": "https://drupal.org/project/profile",
  6494. "support": {
  6495. "source": "https://git.drupalcode.org/project/profile"
  6496. }
  6497. },
  6498. {
  6499. "name": "drupal/redirect",
  6500. "version": "1.9.0",
  6501. "source": {
  6502. "type": "git",
  6503. "url": "https://git.drupalcode.org/project/redirect.git",
  6504. "reference": "8.x-1.9"
  6505. },
  6506. "dist": {
  6507. "type": "zip",
  6508. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.9.zip",
  6509. "reference": "8.x-1.9",
  6510. "shasum": "2987de20f509e9f7cec8a0f81d3a6774f9b0ba3e"
  6511. },
  6512. "require": {
  6513. "drupal/core": "^9.2 || ^10"
  6514. },
  6515. "type": "drupal-module",
  6516. "extra": {
  6517. "drupal": {
  6518. "version": "8.x-1.9",
  6519. "datestamp": "1693393506",
  6520. "security-coverage": {
  6521. "status": "covered",
  6522. "message": "Covered by Drupal's security advisory policy"
  6523. }
  6524. }
  6525. },
  6526. "notification-url": "https://packages.drupal.org/8/downloads",
  6527. "license": [
  6528. "GPL-2.0-or-later"
  6529. ],
  6530. "authors": [
  6531. {
  6532. "name": "Berdir",
  6533. "homepage": "https://www.drupal.org/user/214652"
  6534. },
  6535. {
  6536. "name": "Dave Reid",
  6537. "homepage": "https://www.drupal.org/user/53892"
  6538. },
  6539. {
  6540. "name": "Kristen Pol",
  6541. "homepage": "https://www.drupal.org/user/8389"
  6542. },
  6543. {
  6544. "name": "pifagor",
  6545. "homepage": "https://www.drupal.org/user/2375692"
  6546. }
  6547. ],
  6548. "description": "Allows users to redirect from old URLs to new URLs.",
  6549. "homepage": "https://www.drupal.org/project/redirect",
  6550. "support": {
  6551. "source": "https://git.drupalcode.org/project/redirect"
  6552. }
  6553. },
  6554. {
  6555. "name": "drupal/redis",
  6556. "version": "1.7.0",
  6557. "source": {
  6558. "type": "git",
  6559. "url": "https://git.drupalcode.org/project/redis.git",
  6560. "reference": "8.x-1.7"
  6561. },
  6562. "dist": {
  6563. "type": "zip",
  6564. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.7.zip",
  6565. "reference": "8.x-1.7",
  6566. "shasum": "602043bdad62ff047321121edcfde8abf3638c7c"
  6567. },
  6568. "require": {
  6569. "drupal/core": "^9.3 || ^10"
  6570. },
  6571. "suggest": {
  6572. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  6573. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  6574. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  6575. },
  6576. "type": "drupal-module",
  6577. "extra": {
  6578. "drupal": {
  6579. "version": "8.x-1.7",
  6580. "datestamp": "1686175620",
  6581. "security-coverage": {
  6582. "status": "covered",
  6583. "message": "Covered by Drupal's security advisory policy"
  6584. }
  6585. }
  6586. },
  6587. "autoload": {
  6588. "psr-4": {
  6589. "Drupal\\redis\\": "src"
  6590. }
  6591. },
  6592. "notification-url": "https://packages.drupal.org/8/downloads",
  6593. "license": [
  6594. "GPL-2.0-or-later"
  6595. ],
  6596. "authors": [
  6597. {
  6598. "name": "Berdir",
  6599. "homepage": "https://www.drupal.org/user/214652"
  6600. },
  6601. {
  6602. "name": "greg.1.anderson",
  6603. "homepage": "https://www.drupal.org/user/438598"
  6604. },
  6605. {
  6606. "name": "kporras07",
  6607. "homepage": "https://www.drupal.org/user/1349780"
  6608. },
  6609. {
  6610. "name": "pounard",
  6611. "homepage": "https://www.drupal.org/user/240164"
  6612. }
  6613. ],
  6614. "description": "Integration of Drupal with the Redis key-value store.",
  6615. "homepage": "https://www.drupal.org/project/redis",
  6616. "support": {
  6617. "source": "https://git.drupalcode.org/project/redis"
  6618. }
  6619. },
  6620. {
  6621. "name": "drupal/rules",
  6622. "version": "3.0.0-alpha8",
  6623. "source": {
  6624. "type": "git",
  6625. "url": "https://git.drupalcode.org/project/rules.git",
  6626. "reference": "8.x-3.0-alpha8"
  6627. },
  6628. "dist": {
  6629. "type": "zip",
  6630. "url": "https://ftp.drupal.org/files/projects/rules-8.x-3.0-alpha8.zip",
  6631. "reference": "8.x-3.0-alpha8",
  6632. "shasum": "22a44298b98000697efd86a29a8df1c0ce0bf44f"
  6633. },
  6634. "require": {
  6635. "drupal/core": "^9.1 || ^10",
  6636. "drupal/typed_data": "^1.0"
  6637. },
  6638. "type": "drupal-module",
  6639. "extra": {
  6640. "drupal": {
  6641. "version": "8.x-3.0-alpha8",
  6642. "datestamp": "1696376270",
  6643. "security-coverage": {
  6644. "status": "not-covered",
  6645. "message": "Alpha releases are not covered by Drupal security advisories."
  6646. }
  6647. },
  6648. "drush": {
  6649. "services": {
  6650. "drush.services.yml": "^9 || ^10"
  6651. }
  6652. }
  6653. },
  6654. "notification-url": "https://packages.drupal.org/8/downloads",
  6655. "license": [
  6656. "GPL-2.0-or-later"
  6657. ],
  6658. "authors": [
  6659. {
  6660. "name": "fago",
  6661. "homepage": "https://www.drupal.org/user/16747"
  6662. },
  6663. {
  6664. "name": "klausi",
  6665. "homepage": "https://www.drupal.org/user/262198"
  6666. },
  6667. {
  6668. "name": "TR",
  6669. "homepage": "https://www.drupal.org/user/202830"
  6670. }
  6671. ],
  6672. "description": "React on events and conditionally evaluate actions.",
  6673. "homepage": "https://www.drupal.org/project/rules",
  6674. "support": {
  6675. "source": "https://git.drupalcode.org/project/rules",
  6676. "issues": "https://www.drupal.org/project/issues/rules"
  6677. }
  6678. },
  6679. {
  6680. "name": "drupal/search_api",
  6681. "version": "1.30.0",
  6682. "source": {
  6683. "type": "git",
  6684. "url": "https://git.drupalcode.org/project/search_api.git",
  6685. "reference": "8.x-1.30"
  6686. },
  6687. "dist": {
  6688. "type": "zip",
  6689. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.30.zip",
  6690. "reference": "8.x-1.30",
  6691. "shasum": "25bd2cfab6a6332c595fbc8be1c4cfff33a85ce8"
  6692. },
  6693. "require": {
  6694. "drupal/core": "^9.3 || ^10.0"
  6695. },
  6696. "conflict": {
  6697. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  6698. },
  6699. "require-dev": {
  6700. "drupal/language_fallback_fix": "@dev",
  6701. "drupal/search_api_autocomplete": "@dev",
  6702. "drupal/search_api_db": "*"
  6703. },
  6704. "suggest": {
  6705. "drupal/facets": "Adds the ability to create faceted searches.",
  6706. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  6707. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  6708. },
  6709. "type": "drupal-module",
  6710. "extra": {
  6711. "drupal": {
  6712. "version": "8.x-1.30",
  6713. "datestamp": "1697366291",
  6714. "security-coverage": {
  6715. "status": "covered",
  6716. "message": "Covered by Drupal's security advisory policy"
  6717. }
  6718. },
  6719. "drush": {
  6720. "services": {
  6721. "drush.services.yml": "^9 || ^10 || ^11"
  6722. }
  6723. }
  6724. },
  6725. "notification-url": "https://packages.drupal.org/8/downloads",
  6726. "license": [
  6727. "GPL-2.0-or-later"
  6728. ],
  6729. "authors": [
  6730. {
  6731. "name": "Thomas Seidl",
  6732. "homepage": "https://www.drupal.org/u/drunken-monkey"
  6733. },
  6734. {
  6735. "name": "Nick Veenhof",
  6736. "homepage": "https://www.drupal.org/u/nick_vh"
  6737. },
  6738. {
  6739. "name": "See other contributors",
  6740. "homepage": "https://www.drupal.org/node/790418/committers"
  6741. }
  6742. ],
  6743. "description": "Provides a generic framework for modules offering search capabilities.",
  6744. "homepage": "https://www.drupal.org/project/search_api",
  6745. "support": {
  6746. "source": "https://git.drupalcode.org/project/search_api",
  6747. "issues": "https://www.drupal.org/project/issues/search_api",
  6748. "irc": "irc://irc.freenode.org/drupal-search-api"
  6749. }
  6750. },
  6751. {
  6752. "name": "drupal/search_api_db",
  6753. "version": "1.30.0",
  6754. "require": {
  6755. "drupal/core": "^9.2 || ^10.0",
  6756. "drupal/search_api": "*"
  6757. },
  6758. "type": "metapackage",
  6759. "extra": {
  6760. "drupal": {
  6761. "version": "8.x-1.30",
  6762. "datestamp": "1697366291",
  6763. "security-coverage": {
  6764. "status": "covered",
  6765. "message": "Covered by Drupal's security advisory policy"
  6766. }
  6767. }
  6768. },
  6769. "notification-url": "https://packages.drupal.org/8/downloads",
  6770. "license": [
  6771. "GPL-2.0-or-later"
  6772. ],
  6773. "authors": [
  6774. {
  6775. "name": "borisson_",
  6776. "homepage": "https://www.drupal.org/user/2393360"
  6777. },
  6778. {
  6779. "name": "drunken monkey",
  6780. "homepage": "https://www.drupal.org/user/205582"
  6781. },
  6782. {
  6783. "name": "Nick_vh",
  6784. "homepage": "https://www.drupal.org/user/122682"
  6785. }
  6786. ],
  6787. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  6788. "homepage": "https://www.drupal.org/project/search_api",
  6789. "support": {
  6790. "source": "https://git.drupalcode.org/project/search_api"
  6791. }
  6792. },
  6793. {
  6794. "name": "drupal/seven",
  6795. "version": "1.0.0",
  6796. "source": {
  6797. "type": "git",
  6798. "url": "https://git.drupalcode.org/project/seven.git",
  6799. "reference": "1.0.0"
  6800. },
  6801. "dist": {
  6802. "type": "zip",
  6803. "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip",
  6804. "reference": "1.0.0",
  6805. "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd"
  6806. },
  6807. "require": {
  6808. "drupal/core": "^9 || ^10"
  6809. },
  6810. "type": "drupal-theme",
  6811. "extra": {
  6812. "drupal": {
  6813. "version": "1.0.0",
  6814. "datestamp": "1683652106",
  6815. "security-coverage": {
  6816. "status": "covered",
  6817. "message": "Covered by Drupal's security advisory policy"
  6818. }
  6819. }
  6820. },
  6821. "notification-url": "https://packages.drupal.org/8/downloads",
  6822. "license": [
  6823. "GPL-2.0-or-later"
  6824. ],
  6825. "authors": [
  6826. {
  6827. "name": "bnjmnm",
  6828. "homepage": "https://www.drupal.org/user/2369194"
  6829. },
  6830. {
  6831. "name": "lauriii",
  6832. "homepage": "https://www.drupal.org/user/1078742"
  6833. },
  6834. {
  6835. "name": "mcrittenden",
  6836. "homepage": "https://www.drupal.org/user/420631"
  6837. },
  6838. {
  6839. "name": "mrfelton",
  6840. "homepage": "https://www.drupal.org/user/305669"
  6841. },
  6842. {
  6843. "name": "TravisCarden",
  6844. "homepage": "https://www.drupal.org/user/236758"
  6845. }
  6846. ],
  6847. "description": "The Seven theme from Drupal 8/9 moved to contrib",
  6848. "homepage": "https://www.drupal.org/project/seven",
  6849. "support": {
  6850. "source": "https://git.drupalcode.org/project/seven"
  6851. }
  6852. },
  6853. {
  6854. "name": "drupal/smart_trim",
  6855. "version": "2.1.0",
  6856. "source": {
  6857. "type": "git",
  6858. "url": "https://git.drupalcode.org/project/smart_trim.git",
  6859. "reference": "2.1.0"
  6860. },
  6861. "dist": {
  6862. "type": "zip",
  6863. "url": "https://ftp.drupal.org/files/projects/smart_trim-2.1.0.zip",
  6864. "reference": "2.1.0",
  6865. "shasum": "874b4cbddc4833f1b9adc76a8398377903fd73ee"
  6866. },
  6867. "require": {
  6868. "drupal/core": "^8 || ^9 || ^10",
  6869. "drupal/token": "^1.0",
  6870. "php": ">=7.4.0"
  6871. },
  6872. "require-dev": {
  6873. "drupal/token_filter": "^2.0"
  6874. },
  6875. "type": "drupal-module",
  6876. "extra": {
  6877. "drupal": {
  6878. "version": "2.1.0",
  6879. "datestamp": "1686152417",
  6880. "security-coverage": {
  6881. "status": "covered",
  6882. "message": "Covered by Drupal's security advisory policy"
  6883. }
  6884. }
  6885. },
  6886. "notification-url": "https://packages.drupal.org/8/downloads",
  6887. "license": [
  6888. "GPL-2.0-or-later"
  6889. ],
  6890. "authors": [
  6891. {
  6892. "name": "Mark Casias (markie)",
  6893. "homepage": "https://www.drupal.org/u/markie",
  6894. "role": "Maintainer"
  6895. },
  6896. {
  6897. "name": "AmyJune Hineline (volkswagenchick)",
  6898. "homepage": "https://www.drupal.org/u/volkswagenchick",
  6899. "role": "Maintainer"
  6900. },
  6901. {
  6902. "name": "Michael Anello (ultimike)",
  6903. "homepage": "https://www.drupal.org/u/ultimike",
  6904. "role": "Maintainer"
  6905. }
  6906. ],
  6907. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  6908. "homepage": "https://drupal.org/project/smart_trim",
  6909. "support": {
  6910. "source": "https://git.drupalcode.org/project/smart_trim",
  6911. "issues": "https://drupal.org/project/issues/smart_trim"
  6912. }
  6913. },
  6914. {
  6915. "name": "drupal/smtp",
  6916. "version": "1.2.0",
  6917. "source": {
  6918. "type": "git",
  6919. "url": "https://git.drupalcode.org/project/smtp.git",
  6920. "reference": "8.x-1.2"
  6921. },
  6922. "dist": {
  6923. "type": "zip",
  6924. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.2.zip",
  6925. "reference": "8.x-1.2",
  6926. "shasum": "10d302d4a90521d674bdd078da8aed886fa5ec41"
  6927. },
  6928. "require": {
  6929. "drupal/core": ">=8.9 <11",
  6930. "phpmailer/phpmailer": "^6.1.7"
  6931. },
  6932. "suggest": {
  6933. "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
  6934. },
  6935. "type": "drupal-module",
  6936. "extra": {
  6937. "drupal": {
  6938. "version": "8.x-1.2",
  6939. "datestamp": "1667416337",
  6940. "security-coverage": {
  6941. "status": "covered",
  6942. "message": "Covered by Drupal's security advisory policy"
  6943. }
  6944. },
  6945. "branch-alias": {
  6946. "dev-8.x-1.x": "1.x-dev"
  6947. }
  6948. },
  6949. "notification-url": "https://packages.drupal.org/8/downloads",
  6950. "license": [
  6951. "GPL-2.0-or-later"
  6952. ],
  6953. "authors": [
  6954. {
  6955. "name": "japerry",
  6956. "homepage": "https://www.drupal.org/user/45640"
  6957. },
  6958. {
  6959. "name": "joseph.olstad",
  6960. "homepage": "https://www.drupal.org/user/1321830"
  6961. },
  6962. {
  6963. "name": "josesanmartin",
  6964. "homepage": "https://www.drupal.org/user/72012"
  6965. },
  6966. {
  6967. "name": "LukeLast",
  6968. "homepage": "https://www.drupal.org/user/30151"
  6969. },
  6970. {
  6971. "name": "oadaeh",
  6972. "homepage": "https://www.drupal.org/user/4649"
  6973. },
  6974. {
  6975. "name": "sadashiv",
  6976. "homepage": "https://www.drupal.org/user/1773304"
  6977. },
  6978. {
  6979. "name": "wundo",
  6980. "homepage": "https://www.drupal.org/user/25523"
  6981. },
  6982. {
  6983. "name": "yettyn",
  6984. "homepage": "https://www.drupal.org/user/93281"
  6985. }
  6986. ],
  6987. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  6988. "homepage": "https://www.drupal.org/project/smtp",
  6989. "support": {
  6990. "source": "https://git.drupalcode.org/project/smtp",
  6991. "issues": "https://www.drupal.org/project/issues/smtp"
  6992. }
  6993. },
  6994. {
  6995. "name": "drupal/social_media_links",
  6996. "version": "2.9.0",
  6997. "source": {
  6998. "type": "git",
  6999. "url": "https://git.drupalcode.org/project/social_media_links.git",
  7000. "reference": "8.x-2.9"
  7001. },
  7002. "dist": {
  7003. "type": "zip",
  7004. "url": "https://ftp.drupal.org/files/projects/social_media_links-8.x-2.9.zip",
  7005. "reference": "8.x-2.9",
  7006. "shasum": "d73ea6199b48e11e57fe8a2aeb2afbf3c295704a"
  7007. },
  7008. "require": {
  7009. "drupal/core": "^8 || ^9 || ^10"
  7010. },
  7011. "type": "drupal-module",
  7012. "extra": {
  7013. "drupal": {
  7014. "version": "8.x-2.9",
  7015. "datestamp": "1665768361",
  7016. "security-coverage": {
  7017. "status": "covered",
  7018. "message": "Covered by Drupal's security advisory policy"
  7019. }
  7020. }
  7021. },
  7022. "notification-url": "https://packages.drupal.org/8/downloads",
  7023. "license": [
  7024. "GPL-2.0-or-later"
  7025. ],
  7026. "authors": [
  7027. {
  7028. "name": "Neslee Canil Pinto",
  7029. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  7030. "role": "Maintainer"
  7031. },
  7032. {
  7033. "name": "Christian Beier",
  7034. "homepage": "https://www.drupal.org/u/cbeier",
  7035. "role": "Maintainer"
  7036. }
  7037. ],
  7038. "description": "The module provides a block that display links (icons) to your profiles on various social networking sites.",
  7039. "homepage": "https://www.drupal.org/project/social_media_links",
  7040. "support": {
  7041. "source": "https://git.drupalcode.org/project/social_media_links",
  7042. "issues": "https://www.drupal.org/project/issues/social_media_links"
  7043. }
  7044. },
  7045. {
  7046. "name": "drupal/sophron",
  7047. "version": "2.0.1",
  7048. "source": {
  7049. "type": "git",
  7050. "url": "https://git.drupalcode.org/project/sophron.git",
  7051. "reference": "2.0.1"
  7052. },
  7053. "dist": {
  7054. "type": "zip",
  7055. "url": "https://ftp.drupal.org/files/projects/sophron-2.0.1.zip",
  7056. "reference": "2.0.1",
  7057. "shasum": "eb9b22e843400392ba7fa35dc99c644d2cf08982"
  7058. },
  7059. "require": {
  7060. "drupal/core": "^10",
  7061. "fileeye/mimemap": "^2.0.1"
  7062. },
  7063. "type": "drupal-module",
  7064. "extra": {
  7065. "drupal": {
  7066. "version": "2.0.1",
  7067. "datestamp": "1676319965",
  7068. "security-coverage": {
  7069. "status": "covered",
  7070. "message": "Covered by Drupal's security advisory policy"
  7071. }
  7072. }
  7073. },
  7074. "autoload": {
  7075. "psr-4": {
  7076. "Drupal\\sophron\\": "src/"
  7077. }
  7078. },
  7079. "notification-url": "https://packages.drupal.org/8/downloads",
  7080. "license": [
  7081. "GPL-2.0-or-later"
  7082. ],
  7083. "authors": [
  7084. {
  7085. "name": "mondrake",
  7086. "homepage": "https://www.drupal.org/user/1307444"
  7087. }
  7088. ],
  7089. "description": "Provides an extensive MIME types management API",
  7090. "homepage": "https://www.drupal.org/project/sophron",
  7091. "support": {
  7092. "source": "https://git.drupalcode.org/project/sophron"
  7093. }
  7094. },
  7095. {
  7096. "name": "drupal/synonyms",
  7097. "version": "2.1.2",
  7098. "source": {
  7099. "type": "git",
  7100. "url": "https://git.drupalcode.org/project/synonyms.git",
  7101. "reference": "2.1.2"
  7102. },
  7103. "dist": {
  7104. "type": "zip",
  7105. "url": "https://ftp.drupal.org/files/projects/synonyms-2.1.2.zip",
  7106. "reference": "2.1.2",
  7107. "shasum": "b6b88dc80ecb88b67bf4cbf220ea5e712137ca4d"
  7108. },
  7109. "require": {
  7110. "drupal/core": "^9 || ^10"
  7111. },
  7112. "require-dev": {
  7113. "drupal/synonyms_list_field": "*"
  7114. },
  7115. "type": "drupal-module",
  7116. "extra": {
  7117. "drupal": {
  7118. "version": "2.1.2",
  7119. "datestamp": "1665785027",
  7120. "security-coverage": {
  7121. "status": "covered",
  7122. "message": "Covered by Drupal's security advisory policy"
  7123. }
  7124. }
  7125. },
  7126. "notification-url": "https://packages.drupal.org/8/downloads",
  7127. "license": [
  7128. "GPL-2.0-or-later"
  7129. ],
  7130. "authors": [
  7131. {
  7132. "name": "Bojan Zivanovic",
  7133. "homepage": "https://www.drupal.org/u/bojanz",
  7134. "role": "Author and D5, D6 and D7 versions developer."
  7135. },
  7136. {
  7137. "name": "Alex Trosenko",
  7138. "homepage": "https://www.drupal.org/u/bucefal91",
  7139. "role": "D7 and D8 versions developer."
  7140. },
  7141. {
  7142. "name": "Duro Arezina",
  7143. "homepage": "https://www.drupal.org/u/devad",
  7144. "role": "D8, D9 and D10 versions maintenance"
  7145. },
  7146. {
  7147. "name": "See other contributors",
  7148. "homepage": "https://www.drupal.org/node/148775/committers"
  7149. }
  7150. ],
  7151. "description": "Provides synonyms feature for all entities.",
  7152. "homepage": "https://www.drupal.org/project/synonyms",
  7153. "support": {
  7154. "source": "https://git.drupalcode.org/project/synonyms",
  7155. "issues": "https://www.drupal.org/project/issues/synonyms"
  7156. }
  7157. },
  7158. {
  7159. "name": "drupal/token",
  7160. "version": "1.13.0",
  7161. "source": {
  7162. "type": "git",
  7163. "url": "https://git.drupalcode.org/project/token.git",
  7164. "reference": "8.x-1.13"
  7165. },
  7166. "dist": {
  7167. "type": "zip",
  7168. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.13.zip",
  7169. "reference": "8.x-1.13",
  7170. "shasum": "f2a074b51726de3727c1d900237d6d471806a4d2"
  7171. },
  7172. "require": {
  7173. "drupal/core": "^9.2 || ^10"
  7174. },
  7175. "type": "drupal-module",
  7176. "extra": {
  7177. "drupal": {
  7178. "version": "8.x-1.13",
  7179. "datestamp": "1697885927",
  7180. "security-coverage": {
  7181. "status": "covered",
  7182. "message": "Covered by Drupal's security advisory policy"
  7183. }
  7184. },
  7185. "drush": {
  7186. "services": {
  7187. "drush.services.yml": ">=9"
  7188. }
  7189. }
  7190. },
  7191. "notification-url": "https://packages.drupal.org/8/downloads",
  7192. "license": [
  7193. "GPL-2.0-or-later"
  7194. ],
  7195. "authors": [
  7196. {
  7197. "name": "Berdir",
  7198. "homepage": "https://www.drupal.org/user/214652"
  7199. },
  7200. {
  7201. "name": "Dave Reid",
  7202. "homepage": "https://www.drupal.org/user/53892"
  7203. },
  7204. {
  7205. "name": "eaton",
  7206. "homepage": "https://www.drupal.org/user/16496"
  7207. },
  7208. {
  7209. "name": "fago",
  7210. "homepage": "https://www.drupal.org/user/16747"
  7211. },
  7212. {
  7213. "name": "greggles",
  7214. "homepage": "https://www.drupal.org/user/36762"
  7215. },
  7216. {
  7217. "name": "mikeryan",
  7218. "homepage": "https://www.drupal.org/user/4420"
  7219. }
  7220. ],
  7221. "description": "Provides a user interface for the Token API, some missing core tokens.",
  7222. "homepage": "https://www.drupal.org/project/token",
  7223. "support": {
  7224. "source": "https://git.drupalcode.org/project/token"
  7225. }
  7226. },
  7227. {
  7228. "name": "drupal/translation_views",
  7229. "version": "1.0.0-alpha11",
  7230. "source": {
  7231. "type": "git",
  7232. "url": "https://git.drupalcode.org/project/translation_views.git",
  7233. "reference": "8.x-1.0-alpha11"
  7234. },
  7235. "dist": {
  7236. "type": "zip",
  7237. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  7238. "reference": "8.x-1.0-alpha11",
  7239. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  7240. },
  7241. "require": {
  7242. "drupal/core": "^8.8 || ^9 || ^10"
  7243. },
  7244. "require-dev": {
  7245. "drupal/translators_content": "^1.0@alpha"
  7246. },
  7247. "type": "drupal-module",
  7248. "extra": {
  7249. "drupal": {
  7250. "version": "8.x-1.0-alpha11",
  7251. "datestamp": "1679660668",
  7252. "security-coverage": {
  7253. "status": "not-covered",
  7254. "message": "Project has not opted into security advisory coverage!"
  7255. }
  7256. }
  7257. },
  7258. "notification-url": "https://packages.drupal.org/8/downloads",
  7259. "license": [
  7260. "GPL-2.0-or-later"
  7261. ],
  7262. "authors": [
  7263. {
  7264. "name": "matsbla",
  7265. "homepage": "https://www.drupal.org/user/2325394"
  7266. },
  7267. {
  7268. "name": "vlad.dancer",
  7269. "homepage": "https://www.drupal.org/user/903844"
  7270. }
  7271. ],
  7272. "description": "Create customized lists and queries of translations from your database.",
  7273. "homepage": "https://www.drupal.org/project/translation_views",
  7274. "support": {
  7275. "source": "https://git.drupalcode.org/project/translation_views"
  7276. }
  7277. },
  7278. {
  7279. "name": "drupal/typed_data",
  7280. "version": "1.0.0-beta2",
  7281. "source": {
  7282. "type": "git",
  7283. "url": "https://git.drupalcode.org/project/typed_data.git",
  7284. "reference": "8.x-1.0-beta2"
  7285. },
  7286. "dist": {
  7287. "type": "zip",
  7288. "url": "https://ftp.drupal.org/files/projects/typed_data-8.x-1.0-beta2.zip",
  7289. "reference": "8.x-1.0-beta2",
  7290. "shasum": "e0aa651b129d8dcd765ca49cba8682ebe09e6e73"
  7291. },
  7292. "require": {
  7293. "drupal/core": "^9.1 || ^10"
  7294. },
  7295. "type": "drupal-module",
  7296. "extra": {
  7297. "drupal": {
  7298. "version": "8.x-1.0-beta2",
  7299. "datestamp": "1679429196",
  7300. "security-coverage": {
  7301. "status": "not-covered",
  7302. "message": "Beta releases are not covered by Drupal security advisories."
  7303. }
  7304. },
  7305. "drush": {
  7306. "services": {
  7307. "drush.services.yml": ">=9"
  7308. }
  7309. }
  7310. },
  7311. "notification-url": "https://packages.drupal.org/8/downloads",
  7312. "license": [
  7313. "GPL-2.0-or-later"
  7314. ],
  7315. "authors": [
  7316. {
  7317. "name": "fago",
  7318. "homepage": "https://www.drupal.org/user/16747"
  7319. },
  7320. {
  7321. "name": "TR",
  7322. "homepage": "https://www.drupal.org/user/202830"
  7323. }
  7324. ],
  7325. "description": "Extends the core Typed Data API with new APIs and features.",
  7326. "homepage": "https://www.drupal.org/project/typed_data",
  7327. "support": {
  7328. "source": "https://git.drupalcode.org/project/typed_data",
  7329. "issues": "https://www.drupal.org/project/issues/typed_data"
  7330. }
  7331. },
  7332. {
  7333. "name": "drupal/ultimate_cron",
  7334. "version": "2.0.0-alpha6",
  7335. "source": {
  7336. "type": "git",
  7337. "url": "https://git.drupalcode.org/project/ultimate_cron.git",
  7338. "reference": "8.x-2.0-alpha6"
  7339. },
  7340. "dist": {
  7341. "type": "zip",
  7342. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha6.zip",
  7343. "reference": "8.x-2.0-alpha6",
  7344. "shasum": "42ab6df8e94a9b3772876a378062534552a32826"
  7345. },
  7346. "require": {
  7347. "drupal/core": "^9 || ^10"
  7348. },
  7349. "type": "drupal-module",
  7350. "extra": {
  7351. "drupal": {
  7352. "version": "8.x-2.0-alpha6",
  7353. "datestamp": "1666471448",
  7354. "security-coverage": {
  7355. "status": "not-covered",
  7356. "message": "Alpha releases are not covered by Drupal security advisories."
  7357. }
  7358. },
  7359. "drush": {
  7360. "services": {
  7361. "drush.services.yml": "^9 || ^10 || ^11"
  7362. }
  7363. }
  7364. },
  7365. "notification-url": "https://packages.drupal.org/8/downloads",
  7366. "license": [
  7367. "GPL-2.0+"
  7368. ],
  7369. "authors": [
  7370. {
  7371. "name": "arnested",
  7372. "homepage": "https://www.drupal.org/user/245635"
  7373. },
  7374. {
  7375. "name": "Berdir",
  7376. "homepage": "https://www.drupal.org/user/214652"
  7377. },
  7378. {
  7379. "name": "Dane Powell",
  7380. "homepage": "https://www.drupal.org/user/339326"
  7381. },
  7382. {
  7383. "name": "gielfeldt",
  7384. "homepage": "https://www.drupal.org/user/366993"
  7385. },
  7386. {
  7387. "name": "miro_dietiker",
  7388. "homepage": "https://www.drupal.org/user/227761"
  7389. },
  7390. {
  7391. "name": "Primsi",
  7392. "homepage": "https://www.drupal.org/user/282629"
  7393. }
  7394. ],
  7395. "description": "Ultimate cron",
  7396. "homepage": "https://www.drupal.org/project/ultimate_cron",
  7397. "support": {
  7398. "source": "https://git.drupalcode.org/project/ultimate_cron"
  7399. }
  7400. },
  7401. {
  7402. "name": "drupal/video_embed_field",
  7403. "version": "2.5.0",
  7404. "source": {
  7405. "type": "git",
  7406. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  7407. "reference": "8.x-2.5"
  7408. },
  7409. "dist": {
  7410. "type": "zip",
  7411. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.5.zip",
  7412. "reference": "8.x-2.5",
  7413. "shasum": "997ed67b6873e822fe628f87f65bd6da67e7350c"
  7414. },
  7415. "require": {
  7416. "drupal/core": "^9.2 || ^10"
  7417. },
  7418. "require-dev": {
  7419. "drupal/ckeditor": "^1",
  7420. "drupal/colorbox": "^2",
  7421. "drupal/video_embed_media": "*"
  7422. },
  7423. "type": "drupal-module",
  7424. "extra": {
  7425. "drupal": {
  7426. "version": "8.x-2.5",
  7427. "datestamp": "1671413311",
  7428. "security-coverage": {
  7429. "status": "covered",
  7430. "message": "Covered by Drupal's security advisory policy"
  7431. }
  7432. }
  7433. },
  7434. "notification-url": "https://packages.drupal.org/8/downloads",
  7435. "license": [
  7436. "GPL-2.0-or-later"
  7437. ],
  7438. "authors": [
  7439. {
  7440. "name": "abhinesh",
  7441. "homepage": "https://www.drupal.org/user/3645979"
  7442. },
  7443. {
  7444. "name": "jec006",
  7445. "homepage": "https://www.drupal.org/user/855980"
  7446. },
  7447. {
  7448. "name": "plopesc",
  7449. "homepage": "https://www.drupal.org/user/282415"
  7450. },
  7451. {
  7452. "name": "Sam152",
  7453. "homepage": "https://www.drupal.org/user/1485048"
  7454. }
  7455. ],
  7456. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  7457. "homepage": "https://www.drupal.org/project/video_embed_field",
  7458. "support": {
  7459. "source": "https://git.drupalcode.org/project/video_embed_field"
  7460. }
  7461. },
  7462. {
  7463. "name": "drupal/views_bulk_edit",
  7464. "version": "2.9.0",
  7465. "source": {
  7466. "type": "git",
  7467. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  7468. "reference": "8.x-2.9"
  7469. },
  7470. "dist": {
  7471. "type": "zip",
  7472. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.9.zip",
  7473. "reference": "8.x-2.9",
  7474. "shasum": "db45a8cc9ac629859374b24974eafcef257e4387"
  7475. },
  7476. "require": {
  7477. "drupal/core": "^9.4 || ^10"
  7478. },
  7479. "require-dev": {
  7480. "drupal/views_bulk_operations": "~4.2.4"
  7481. },
  7482. "suggest": {
  7483. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  7484. },
  7485. "type": "drupal-module",
  7486. "extra": {
  7487. "drupal": {
  7488. "version": "8.x-2.9",
  7489. "datestamp": "1690222256",
  7490. "security-coverage": {
  7491. "status": "covered",
  7492. "message": "Covered by Drupal's security advisory policy"
  7493. }
  7494. }
  7495. },
  7496. "notification-url": "https://packages.drupal.org/8/downloads",
  7497. "license": [
  7498. "GPL-2.0+"
  7499. ],
  7500. "authors": [
  7501. {
  7502. "name": "Marcin Grabias",
  7503. "homepage": "https://www.drupal.org/u/graber"
  7504. },
  7505. {
  7506. "name": "Graber",
  7507. "homepage": "https://www.drupal.org/user/1599440"
  7508. },
  7509. {
  7510. "name": "joseph.olstad",
  7511. "homepage": "https://www.drupal.org/user/1321830"
  7512. }
  7513. ],
  7514. "description": "Allows bulk edition of entity field values.",
  7515. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  7516. "support": {
  7517. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  7518. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  7519. }
  7520. },
  7521. {
  7522. "name": "drupal/views_bulk_operations",
  7523. "version": "4.2.5",
  7524. "source": {
  7525. "type": "git",
  7526. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  7527. "reference": "4.2.5"
  7528. },
  7529. "dist": {
  7530. "type": "zip",
  7531. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.2.5.zip",
  7532. "reference": "4.2.5",
  7533. "shasum": "220479c5187b1619d5703f64c6f8c272afecf897"
  7534. },
  7535. "require": {
  7536. "drupal/core": "^9.4 || ^10",
  7537. "php": ">=7.4.0"
  7538. },
  7539. "require-dev": {
  7540. "drush/drush": "^11"
  7541. },
  7542. "suggest": {
  7543. "drush/drush": "^10 || ^11"
  7544. },
  7545. "type": "drupal-module",
  7546. "extra": {
  7547. "drupal": {
  7548. "version": "4.2.5",
  7549. "datestamp": "1691066184",
  7550. "security-coverage": {
  7551. "status": "covered",
  7552. "message": "Covered by Drupal's security advisory policy"
  7553. }
  7554. },
  7555. "drush": {
  7556. "services": {
  7557. "drush.services.yml": "^10 || ^11"
  7558. }
  7559. }
  7560. },
  7561. "notification-url": "https://packages.drupal.org/8/downloads",
  7562. "license": [
  7563. "GPL-2.0-or-later"
  7564. ],
  7565. "authors": [
  7566. {
  7567. "name": "Marcin Grabias",
  7568. "homepage": "https://www.drupal.org/u/graber"
  7569. },
  7570. {
  7571. "name": "Graber",
  7572. "homepage": "https://www.drupal.org/user/1599440"
  7573. },
  7574. {
  7575. "name": "joelpittet",
  7576. "homepage": "https://www.drupal.org/user/160302"
  7577. }
  7578. ],
  7579. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  7580. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  7581. "support": {
  7582. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  7583. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  7584. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  7585. }
  7586. },
  7587. {
  7588. "name": "drupal/webform",
  7589. "version": "6.2.0",
  7590. "source": {
  7591. "type": "git",
  7592. "url": "https://git.drupalcode.org/project/webform.git",
  7593. "reference": "6.2.0"
  7594. },
  7595. "dist": {
  7596. "type": "zip",
  7597. "url": "https://ftp.drupal.org/files/projects/webform-6.2.0.zip",
  7598. "reference": "6.2.0",
  7599. "shasum": "7a8292fb86fa60c88377279769fd6f1b1fad05c2"
  7600. },
  7601. "require": {
  7602. "drupal/core": "^9.4 || ^10",
  7603. "php": ">=8.1"
  7604. },
  7605. "require-dev": {
  7606. "drupal/address": "1.x-dev",
  7607. "drupal/bootstrap": "3.x-dev",
  7608. "drupal/captcha": "^1 || ^2",
  7609. "drupal/chosen": "3.0.x-dev",
  7610. "drupal/ckeditor": "1.0.x-dev",
  7611. "drupal/clientside_validation": "^3 || ^4",
  7612. "drupal/clientside_validation_jquery": "*",
  7613. "drupal/devel": "5.x-dev",
  7614. "drupal/entity": "1.x-dev",
  7615. "drupal/entity_print": "2.x-dev",
  7616. "drupal/group": "1.x-dev",
  7617. "drupal/hal": "1 - 2",
  7618. "drupal/jquery_ui": "1.x-dev",
  7619. "drupal/jquery_ui_checkboxradio": "2.x-dev",
  7620. "drupal/jquery_ui_datepicker": "2.x-dev",
  7621. "drupal/mailsystem": "4.x-dev",
  7622. "drupal/metatag": "1.x-dev",
  7623. "drupal/paragraphs": "1.x-dev",
  7624. "drupal/select2": "1.x-dev",
  7625. "drupal/smtp": "1.x-dev",
  7626. "drupal/styleguide": "^1 || ^2",
  7627. "drupal/telephone_validation": "2.x-dev",
  7628. "drupal/token": "1.x-dev",
  7629. "drupal/variationcache": "1.x-dev",
  7630. "drupal/webform_access": "*",
  7631. "drupal/webform_attachment": "*",
  7632. "drupal/webform_clientside_validation": "*",
  7633. "drupal/webform_devel": "*",
  7634. "drupal/webform_entity_print": "*",
  7635. "drupal/webform_node": "*",
  7636. "drupal/webform_options_limit": "*",
  7637. "drupal/webform_scheduled_email": "*",
  7638. "drupal/webform_share": "*",
  7639. "drupal/webform_ui": "*"
  7640. },
  7641. "suggest": {
  7642. "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.",
  7643. "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."
  7644. },
  7645. "type": "drupal-module",
  7646. "extra": {
  7647. "drupal": {
  7648. "version": "6.2.0",
  7649. "datestamp": "1698674300",
  7650. "security-coverage": {
  7651. "status": "covered",
  7652. "message": "Covered by Drupal's security advisory policy"
  7653. }
  7654. },
  7655. "drush": {
  7656. "services": {
  7657. "drush.services.yml": ">=9"
  7658. }
  7659. }
  7660. },
  7661. "notification-url": "https://packages.drupal.org/8/downloads",
  7662. "license": [
  7663. "GPL-2.0-or-later"
  7664. ],
  7665. "authors": [
  7666. {
  7667. "name": "Jacob Rockowitz (jrockowitz)",
  7668. "homepage": "https://www.drupal.org/u/jrockowitz",
  7669. "role": "Maintainer"
  7670. },
  7671. {
  7672. "name": "Contributors",
  7673. "homepage": "https://www.drupal.org/node/7404/committers",
  7674. "role": "Contributor"
  7675. },
  7676. {
  7677. "name": "Liam Morland",
  7678. "homepage": "https://www.drupal.org/user/493050"
  7679. },
  7680. {
  7681. "name": "quicksketch",
  7682. "homepage": "https://www.drupal.org/user/35821"
  7683. },
  7684. {
  7685. "name": "torotil",
  7686. "homepage": "https://www.drupal.org/user/865256"
  7687. }
  7688. ],
  7689. "description": "Enables the creation of webforms and questionnaires.",
  7690. "homepage": "https://drupal.org/project/webform",
  7691. "support": {
  7692. "source": "https://git.drupalcode.org/project/webform",
  7693. "issues": "https://www.drupal.org/project/issues/webform?version=8.x",
  7694. "docs": "https://www.drupal.org/docs/8/modules/webform",
  7695. "forum": "https://drupal.stackexchange.com/questions/tagged/webform"
  7696. }
  7697. },
  7698. {
  7699. "name": "drush/drush",
  7700. "version": "11.6.0",
  7701. "source": {
  7702. "type": "git",
  7703. "url": "https://github.com/drush-ops/drush.git",
  7704. "reference": "f301df5dec8d2aacb03d3e01e0ffc6d98e10ae78"
  7705. },
  7706. "dist": {
  7707. "type": "zip",
  7708. "url": "https://api.github.com/repos/drush-ops/drush/zipball/f301df5dec8d2aacb03d3e01e0ffc6d98e10ae78",
  7709. "reference": "f301df5dec8d2aacb03d3e01e0ffc6d98e10ae78",
  7710. "shasum": ""
  7711. },
  7712. "require": {
  7713. "chi-teck/drupal-code-generator": "^2.4",
  7714. "composer/semver": "^1.4 || ^3",
  7715. "consolidation/annotated-command": "^4.8.2",
  7716. "consolidation/config": "^2",
  7717. "consolidation/filter-via-dot-access-data": "^2",
  7718. "consolidation/robo": "^3.0.9 || ^4.0.1",
  7719. "consolidation/site-alias": "^3.1.6 || ^4",
  7720. "consolidation/site-process": "^4.1.3 || ^5",
  7721. "enlightn/security-checker": "^1",
  7722. "ext-dom": "*",
  7723. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  7724. "league/container": "^3.4 || ^4",
  7725. "php": ">=7.4",
  7726. "psy/psysh": "~0.11",
  7727. "symfony/event-dispatcher": "^4.0 || ^5.0 || ^6.0",
  7728. "symfony/filesystem": "^4.4 || ^5.4 || ^6.1",
  7729. "symfony/finder": "^4.0 || ^5 || ^6",
  7730. "symfony/polyfill-php80": "^1.23",
  7731. "symfony/var-dumper": "^4.0 || ^5.0 || ^6.0",
  7732. "symfony/yaml": "^4.0 || ^5.0 || ^6.0",
  7733. "webflo/drupal-finder": "^1.2"
  7734. },
  7735. "conflict": {
  7736. "drupal/core": "< 9.2",
  7737. "drupal/migrate_run": "*",
  7738. "drupal/migrate_tools": "<= 5"
  7739. },
  7740. "require-dev": {
  7741. "composer/installers": "^1.7",
  7742. "cweagans/composer-patches": "~1.0",
  7743. "david-garcia/phpwhois": "4.3.0",
  7744. "drupal/core-recommended": "^9 || ^10",
  7745. "drupal/semver_example": "2.3.0",
  7746. "phpunit/phpunit": ">=7.5.20",
  7747. "rector/rector": "^0.12",
  7748. "squizlabs/php_codesniffer": "^3.6",
  7749. "vlucas/phpdotenv": "^2.4",
  7750. "yoast/phpunit-polyfills": "^0.2.0"
  7751. },
  7752. "bin": [
  7753. "drush"
  7754. ],
  7755. "type": "library",
  7756. "extra": {
  7757. "installer-paths": {
  7758. "sut/core": [
  7759. "type:drupal-core"
  7760. ],
  7761. "sut/libraries/{$name}": [
  7762. "type:drupal-library"
  7763. ],
  7764. "sut/modules/unish/{$name}": [
  7765. "drupal/devel"
  7766. ],
  7767. "sut/themes/unish/{$name}": [
  7768. "drupal/empty_theme"
  7769. ],
  7770. "sut/modules/contrib/{$name}": [
  7771. "type:drupal-module"
  7772. ],
  7773. "sut/profiles/contrib/{$name}": [
  7774. "type:drupal-profile"
  7775. ],
  7776. "sut/themes/contrib/{$name}": [
  7777. "type:drupal-theme"
  7778. ],
  7779. "sut/drush/contrib/{$name}": [
  7780. "type:drupal-drush"
  7781. ]
  7782. }
  7783. },
  7784. "autoload": {
  7785. "psr-4": {
  7786. "Drush\\": "src/"
  7787. }
  7788. },
  7789. "notification-url": "https://packagist.org/downloads/",
  7790. "license": [
  7791. "GPL-2.0-or-later"
  7792. ],
  7793. "authors": [
  7794. {
  7795. "name": "Moshe Weitzman",
  7796. "email": "weitzman@tejasa.com"
  7797. },
  7798. {
  7799. "name": "Owen Barton",
  7800. "email": "drupal@owenbarton.com"
  7801. },
  7802. {
  7803. "name": "Greg Anderson",
  7804. "email": "greg.1.anderson@greenknowe.org"
  7805. },
  7806. {
  7807. "name": "Jonathan Araña Cruz",
  7808. "email": "jonhattan@faita.net"
  7809. },
  7810. {
  7811. "name": "Jonathan Hedstrom",
  7812. "email": "jhedstrom@gmail.com"
  7813. },
  7814. {
  7815. "name": "Christopher Gervais",
  7816. "email": "chris@ergonlogic.com"
  7817. },
  7818. {
  7819. "name": "Dave Reid",
  7820. "email": "dave@davereid.net"
  7821. },
  7822. {
  7823. "name": "Damian Lee",
  7824. "email": "damiankloip@googlemail.com"
  7825. }
  7826. ],
  7827. "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.",
  7828. "homepage": "http://www.drush.org",
  7829. "support": {
  7830. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  7831. "issues": "https://github.com/drush-ops/drush/issues",
  7832. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  7833. "source": "https://github.com/drush-ops/drush/tree/11.6.0"
  7834. },
  7835. "funding": [
  7836. {
  7837. "url": "https://github.com/weitzman",
  7838. "type": "github"
  7839. }
  7840. ],
  7841. "time": "2023-06-06T18:46:18+00:00"
  7842. },
  7843. {
  7844. "name": "egulias/email-validator",
  7845. "version": "4.0.2",
  7846. "source": {
  7847. "type": "git",
  7848. "url": "https://github.com/egulias/EmailValidator.git",
  7849. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  7850. },
  7851. "dist": {
  7852. "type": "zip",
  7853. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  7854. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  7855. "shasum": ""
  7856. },
  7857. "require": {
  7858. "doctrine/lexer": "^2.0 || ^3.0",
  7859. "php": ">=8.1",
  7860. "symfony/polyfill-intl-idn": "^1.26"
  7861. },
  7862. "require-dev": {
  7863. "phpunit/phpunit": "^10.2",
  7864. "vimeo/psalm": "^5.12"
  7865. },
  7866. "suggest": {
  7867. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  7868. },
  7869. "type": "library",
  7870. "extra": {
  7871. "branch-alias": {
  7872. "dev-master": "4.0.x-dev"
  7873. }
  7874. },
  7875. "autoload": {
  7876. "psr-4": {
  7877. "Egulias\\EmailValidator\\": "src"
  7878. }
  7879. },
  7880. "notification-url": "https://packagist.org/downloads/",
  7881. "license": [
  7882. "MIT"
  7883. ],
  7884. "authors": [
  7885. {
  7886. "name": "Eduardo Gulias Davis"
  7887. }
  7888. ],
  7889. "description": "A library for validating emails against several RFCs",
  7890. "homepage": "https://github.com/egulias/EmailValidator",
  7891. "keywords": [
  7892. "email",
  7893. "emailvalidation",
  7894. "emailvalidator",
  7895. "validation",
  7896. "validator"
  7897. ],
  7898. "support": {
  7899. "issues": "https://github.com/egulias/EmailValidator/issues",
  7900. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  7901. },
  7902. "funding": [
  7903. {
  7904. "url": "https://github.com/egulias",
  7905. "type": "github"
  7906. }
  7907. ],
  7908. "time": "2023-10-06T06:47:41+00:00"
  7909. },
  7910. {
  7911. "name": "enlightn/security-checker",
  7912. "version": "v1.10.0",
  7913. "source": {
  7914. "type": "git",
  7915. "url": "https://github.com/enlightn/security-checker.git",
  7916. "reference": "196bacc76e7a72a63d0e1220926dbb190272db97"
  7917. },
  7918. "dist": {
  7919. "type": "zip",
  7920. "url": "https://api.github.com/repos/enlightn/security-checker/zipball/196bacc76e7a72a63d0e1220926dbb190272db97",
  7921. "reference": "196bacc76e7a72a63d0e1220926dbb190272db97",
  7922. "shasum": ""
  7923. },
  7924. "require": {
  7925. "ext-json": "*",
  7926. "guzzlehttp/guzzle": "^6.3|^7.0",
  7927. "php": ">=5.6",
  7928. "symfony/console": "^3.4|^4|^5|^6",
  7929. "symfony/finder": "^3|^4|^5|^6",
  7930. "symfony/process": "^3.4|^4|^5|^6",
  7931. "symfony/yaml": "^3.4|^4|^5|^6"
  7932. },
  7933. "require-dev": {
  7934. "ext-zip": "*",
  7935. "friendsofphp/php-cs-fixer": "^2.18|^3.0",
  7936. "phpunit/phpunit": "^5.5|^6|^7|^8|^9"
  7937. },
  7938. "bin": [
  7939. "security-checker"
  7940. ],
  7941. "type": "library",
  7942. "autoload": {
  7943. "psr-4": {
  7944. "Enlightn\\SecurityChecker\\": "src"
  7945. }
  7946. },
  7947. "notification-url": "https://packagist.org/downloads/",
  7948. "license": [
  7949. "MIT"
  7950. ],
  7951. "authors": [
  7952. {
  7953. "name": "Paras Malhotra",
  7954. "email": "paras@laravel-enlightn.com"
  7955. },
  7956. {
  7957. "name": "Miguel Piedrafita",
  7958. "email": "soy@miguelpiedrafita.com"
  7959. }
  7960. ],
  7961. "description": "A PHP dependency vulnerabilities scanner based on the Security Advisories Database.",
  7962. "keywords": [
  7963. "package",
  7964. "php",
  7965. "scanner",
  7966. "security",
  7967. "security advisories",
  7968. "vulnerability scanner"
  7969. ],
  7970. "support": {
  7971. "issues": "https://github.com/enlightn/security-checker/issues",
  7972. "source": "https://github.com/enlightn/security-checker/tree/v1.10.0"
  7973. },
  7974. "time": "2022-02-21T22:40:16+00:00"
  7975. },
  7976. {
  7977. "name": "fileeye/mimemap",
  7978. "version": "2.0.2",
  7979. "source": {
  7980. "type": "git",
  7981. "url": "https://github.com/FileEye/MimeMap.git",
  7982. "reference": "befb9f1ee77dbf6b74a2c578874e128c9a5c1a2d"
  7983. },
  7984. "dist": {
  7985. "type": "zip",
  7986. "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/befb9f1ee77dbf6b74a2c578874e128c9a5c1a2d",
  7987. "reference": "befb9f1ee77dbf6b74a2c578874e128c9a5c1a2d",
  7988. "shasum": ""
  7989. },
  7990. "require": {
  7991. "php": ">=7.3"
  7992. },
  7993. "require-dev": {
  7994. "composer-runtime-api": "^2.0.0",
  7995. "phpstan/phpstan": "^1.2",
  7996. "phpunit/phpunit": "^9 | ^10",
  7997. "sebastian/comparator": ">=4",
  7998. "sebastian/diff": ">=4",
  7999. "squizlabs/php_codesniffer": ">=3.6",
  8000. "symfony/console": ">=5.4",
  8001. "symfony/filesystem": ">=5.4",
  8002. "symfony/var-dumper": ">=5.4",
  8003. "symfony/yaml": ">=5.4",
  8004. "vimeo/psalm": "^4.23 | ^5"
  8005. },
  8006. "bin": [
  8007. "bin/fileeye-mimemap"
  8008. ],
  8009. "type": "library",
  8010. "extra": {
  8011. "branch-alias": {
  8012. "dev-master": "2.x-dev"
  8013. }
  8014. },
  8015. "autoload": {
  8016. "psr-4": {
  8017. "FileEye\\MimeMap\\": "src/"
  8018. }
  8019. },
  8020. "notification-url": "https://packagist.org/downloads/",
  8021. "license": [
  8022. "LGPL-3.0-or-later"
  8023. ],
  8024. "description": "A PHP library to handle MIME Content-Type fields and their related file extensions.",
  8025. "homepage": "https://github.com/FileEye/MimeMap",
  8026. "keywords": [
  8027. "mime",
  8028. "mime-database",
  8029. "mime-parser",
  8030. "mime-type"
  8031. ],
  8032. "support": {
  8033. "issues": "https://github.com/FileEye/MimeMap/issues",
  8034. "source": "https://github.com/FileEye/MimeMap/tree/2.0.2"
  8035. },
  8036. "time": "2023-08-29T16:20:26+00:00"
  8037. },
  8038. {
  8039. "name": "fileeye/pel",
  8040. "version": "0.9.20",
  8041. "source": {
  8042. "type": "git",
  8043. "url": "https://github.com/FileEye/pel.git",
  8044. "reference": "1675cbd44e89ff8f01b9576cf32ec1b4a4a67ede"
  8045. },
  8046. "dist": {
  8047. "type": "zip",
  8048. "url": "https://api.github.com/repos/FileEye/pel/zipball/1675cbd44e89ff8f01b9576cf32ec1b4a4a67ede",
  8049. "reference": "1675cbd44e89ff8f01b9576cf32ec1b4a4a67ede",
  8050. "shasum": ""
  8051. },
  8052. "require": {
  8053. "php": ">=7.1.0"
  8054. },
  8055. "require-dev": {
  8056. "ext-exif": "*",
  8057. "ext-gd": "*",
  8058. "php-coveralls/php-coveralls": ">2.4",
  8059. "phpstan/phpstan": "^1.4",
  8060. "squizlabs/php_codesniffer": ">3.5",
  8061. "symfony/phpunit-bridge": "^4 || ^5 || ^6"
  8062. },
  8063. "type": "library",
  8064. "autoload": {
  8065. "psr-4": {
  8066. "lsolesen\\pel\\": "src/"
  8067. }
  8068. },
  8069. "notification-url": "https://packagist.org/downloads/",
  8070. "license": [
  8071. "GPL-2.0"
  8072. ],
  8073. "authors": [
  8074. {
  8075. "name": "Lars Olesen",
  8076. "email": "lars@intraface.dk",
  8077. "homepage": "http://intraface.dk",
  8078. "role": "Developer"
  8079. },
  8080. {
  8081. "name": "Martin Geisler",
  8082. "email": "martin@geisler.net",
  8083. "homepage": "http://geisler.net",
  8084. "role": "Developer"
  8085. }
  8086. ],
  8087. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  8088. "homepage": "https://github.com/FileEye/pel",
  8089. "keywords": [
  8090. "exif",
  8091. "image"
  8092. ],
  8093. "support": {
  8094. "issues": "https://github.com/FileEye/pel/issues",
  8095. "source": "https://github.com/FileEye/pel/tree/0.9.20"
  8096. },
  8097. "time": "2023-06-20T07:10:35+00:00"
  8098. },
  8099. {
  8100. "name": "giggsey/libphonenumber-for-php",
  8101. "version": "8.13.25",
  8102. "source": {
  8103. "type": "git",
  8104. "url": "https://github.com/giggsey/libphonenumber-for-php.git",
  8105. "reference": "fe9c0b201941977b91b6b086c9551aff07a733ae"
  8106. },
  8107. "dist": {
  8108. "type": "zip",
  8109. "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/fe9c0b201941977b91b6b086c9551aff07a733ae",
  8110. "reference": "fe9c0b201941977b91b6b086c9551aff07a733ae",
  8111. "shasum": ""
  8112. },
  8113. "require": {
  8114. "giggsey/locale": "^1.7|^2.0",
  8115. "php": ">=5.3.2",
  8116. "symfony/polyfill-mbstring": "^1.17"
  8117. },
  8118. "require-dev": {
  8119. "pear/pear-core-minimal": "^1.9",
  8120. "pear/pear_exception": "^1.0",
  8121. "pear/versioncontrol_git": "^0.5",
  8122. "phing/phing": "^2.7",
  8123. "php-coveralls/php-coveralls": "^1.0|^2.0",
  8124. "symfony/console": "^2.8|^3.0|^v4.4|^v5.2",
  8125. "symfony/phpunit-bridge": "^4.2 || ^5"
  8126. },
  8127. "type": "library",
  8128. "extra": {
  8129. "branch-alias": {
  8130. "dev-master": "8.x-dev"
  8131. }
  8132. },
  8133. "autoload": {
  8134. "psr-4": {
  8135. "libphonenumber\\": "src/"
  8136. },
  8137. "exclude-from-classmap": [
  8138. "/src/data/",
  8139. "/src/carrier/data/",
  8140. "/src/geocoding/data/",
  8141. "/src/timezone/data/"
  8142. ]
  8143. },
  8144. "notification-url": "https://packagist.org/downloads/",
  8145. "license": [
  8146. "Apache-2.0"
  8147. ],
  8148. "authors": [
  8149. {
  8150. "name": "Joshua Gigg",
  8151. "email": "giggsey@gmail.com",
  8152. "homepage": "https://giggsey.com/"
  8153. }
  8154. ],
  8155. "description": "PHP Port of Google's libphonenumber",
  8156. "homepage": "https://github.com/giggsey/libphonenumber-for-php",
  8157. "keywords": [
  8158. "geocoding",
  8159. "geolocation",
  8160. "libphonenumber",
  8161. "mobile",
  8162. "phonenumber",
  8163. "validation"
  8164. ],
  8165. "support": {
  8166. "issues": "https://github.com/giggsey/libphonenumber-for-php/issues",
  8167. "source": "https://github.com/giggsey/libphonenumber-for-php"
  8168. },
  8169. "time": "2023-11-13T09:34:15+00:00"
  8170. },
  8171. {
  8172. "name": "giggsey/locale",
  8173. "version": "2.5",
  8174. "source": {
  8175. "type": "git",
  8176. "url": "https://github.com/giggsey/Locale.git",
  8177. "reference": "e6d4540109a01dd2bc7334cdc842d6a6a67cf239"
  8178. },
  8179. "dist": {
  8180. "type": "zip",
  8181. "url": "https://api.github.com/repos/giggsey/Locale/zipball/e6d4540109a01dd2bc7334cdc842d6a6a67cf239",
  8182. "reference": "e6d4540109a01dd2bc7334cdc842d6a6a67cf239",
  8183. "shasum": ""
  8184. },
  8185. "require": {
  8186. "php": ">=7.2"
  8187. },
  8188. "require-dev": {
  8189. "ext-json": "*",
  8190. "pear/pear-core-minimal": "^1.9",
  8191. "pear/pear_exception": "^1.0",
  8192. "pear/versioncontrol_git": "^0.5",
  8193. "phing/phing": "^2.7",
  8194. "php-coveralls/php-coveralls": "^2.0",
  8195. "phpunit/phpunit": "^8.5|^9.5",
  8196. "symfony/console": "^5.0|^6.0",
  8197. "symfony/filesystem": "^5.0|^6.0",
  8198. "symfony/finder": "^5.0|^6.0",
  8199. "symfony/process": "^5.0|^6.0"
  8200. },
  8201. "type": "library",
  8202. "autoload": {
  8203. "psr-4": {
  8204. "Giggsey\\Locale\\": "src/"
  8205. }
  8206. },
  8207. "notification-url": "https://packagist.org/downloads/",
  8208. "license": [
  8209. "MIT"
  8210. ],
  8211. "authors": [
  8212. {
  8213. "name": "Joshua Gigg",
  8214. "email": "giggsey@gmail.com",
  8215. "homepage": "https://giggsey.com/"
  8216. }
  8217. ],
  8218. "description": "Locale functions required by libphonenumber-for-php",
  8219. "support": {
  8220. "issues": "https://github.com/giggsey/Locale/issues",
  8221. "source": "https://github.com/giggsey/Locale/tree/2.5"
  8222. },
  8223. "time": "2023-11-01T17:19:48+00:00"
  8224. },
  8225. {
  8226. "name": "grasmash/expander",
  8227. "version": "3.0.0",
  8228. "source": {
  8229. "type": "git",
  8230. "url": "https://github.com/grasmash/expander.git",
  8231. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82"
  8232. },
  8233. "dist": {
  8234. "type": "zip",
  8235. "url": "https://api.github.com/repos/grasmash/expander/zipball/bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  8236. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  8237. "shasum": ""
  8238. },
  8239. "require": {
  8240. "dflydev/dot-access-data": "^3.0.0",
  8241. "php": ">=8.0",
  8242. "psr/log": "^2 | ^3"
  8243. },
  8244. "require-dev": {
  8245. "greg-1-anderson/composer-test-scenarios": "^1",
  8246. "php-coveralls/php-coveralls": "^2.5",
  8247. "phpunit/phpunit": "^9",
  8248. "squizlabs/php_codesniffer": "^3.3"
  8249. },
  8250. "type": "library",
  8251. "extra": {
  8252. "branch-alias": {
  8253. "dev-master": "1.x-dev"
  8254. }
  8255. },
  8256. "autoload": {
  8257. "psr-4": {
  8258. "Grasmash\\Expander\\": "src/"
  8259. }
  8260. },
  8261. "notification-url": "https://packagist.org/downloads/",
  8262. "license": [
  8263. "MIT"
  8264. ],
  8265. "authors": [
  8266. {
  8267. "name": "Matthew Grasmick"
  8268. }
  8269. ],
  8270. "description": "Expands internal property references in PHP arrays file.",
  8271. "support": {
  8272. "issues": "https://github.com/grasmash/expander/issues",
  8273. "source": "https://github.com/grasmash/expander/tree/3.0.0"
  8274. },
  8275. "time": "2022-05-10T13:14:49+00:00"
  8276. },
  8277. {
  8278. "name": "guzzlehttp/guzzle",
  8279. "version": "7.7.1",
  8280. "source": {
  8281. "type": "git",
  8282. "url": "https://github.com/guzzle/guzzle.git",
  8283. "reference": "085b026db54d4b5012f727c80c9958e8b8cbc454"
  8284. },
  8285. "dist": {
  8286. "type": "zip",
  8287. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/085b026db54d4b5012f727c80c9958e8b8cbc454",
  8288. "reference": "085b026db54d4b5012f727c80c9958e8b8cbc454",
  8289. "shasum": ""
  8290. },
  8291. "require": {
  8292. "ext-json": "*",
  8293. "guzzlehttp/promises": "^1.5.3 || ^2.0",
  8294. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  8295. "php": "^7.2.5 || ^8.0",
  8296. "psr/http-client": "^1.0",
  8297. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8298. },
  8299. "provide": {
  8300. "psr/http-client-implementation": "1.0"
  8301. },
  8302. "require-dev": {
  8303. "bamarni/composer-bin-plugin": "^1.8.1",
  8304. "ext-curl": "*",
  8305. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  8306. "php-http/message-factory": "^1.1",
  8307. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  8308. "psr/log": "^1.1 || ^2.0 || ^3.0"
  8309. },
  8310. "suggest": {
  8311. "ext-curl": "Required for CURL handler support",
  8312. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  8313. "psr/log": "Required for using the Log middleware"
  8314. },
  8315. "type": "library",
  8316. "extra": {
  8317. "bamarni-bin": {
  8318. "bin-links": true,
  8319. "forward-command": false
  8320. }
  8321. },
  8322. "autoload": {
  8323. "files": [
  8324. "src/functions_include.php"
  8325. ],
  8326. "psr-4": {
  8327. "GuzzleHttp\\": "src/"
  8328. }
  8329. },
  8330. "notification-url": "https://packagist.org/downloads/",
  8331. "license": [
  8332. "MIT"
  8333. ],
  8334. "authors": [
  8335. {
  8336. "name": "Graham Campbell",
  8337. "email": "hello@gjcampbell.co.uk",
  8338. "homepage": "https://github.com/GrahamCampbell"
  8339. },
  8340. {
  8341. "name": "Michael Dowling",
  8342. "email": "mtdowling@gmail.com",
  8343. "homepage": "https://github.com/mtdowling"
  8344. },
  8345. {
  8346. "name": "Jeremy Lindblom",
  8347. "email": "jeremeamia@gmail.com",
  8348. "homepage": "https://github.com/jeremeamia"
  8349. },
  8350. {
  8351. "name": "George Mponos",
  8352. "email": "gmponos@gmail.com",
  8353. "homepage": "https://github.com/gmponos"
  8354. },
  8355. {
  8356. "name": "Tobias Nyholm",
  8357. "email": "tobias.nyholm@gmail.com",
  8358. "homepage": "https://github.com/Nyholm"
  8359. },
  8360. {
  8361. "name": "Márk Sági-Kazár",
  8362. "email": "mark.sagikazar@gmail.com",
  8363. "homepage": "https://github.com/sagikazarmark"
  8364. },
  8365. {
  8366. "name": "Tobias Schultze",
  8367. "email": "webmaster@tubo-world.de",
  8368. "homepage": "https://github.com/Tobion"
  8369. }
  8370. ],
  8371. "description": "Guzzle is a PHP HTTP client library",
  8372. "keywords": [
  8373. "client",
  8374. "curl",
  8375. "framework",
  8376. "http",
  8377. "http client",
  8378. "psr-18",
  8379. "psr-7",
  8380. "rest",
  8381. "web service"
  8382. ],
  8383. "support": {
  8384. "issues": "https://github.com/guzzle/guzzle/issues",
  8385. "source": "https://github.com/guzzle/guzzle/tree/7.7.1"
  8386. },
  8387. "funding": [
  8388. {
  8389. "url": "https://github.com/GrahamCampbell",
  8390. "type": "github"
  8391. },
  8392. {
  8393. "url": "https://github.com/Nyholm",
  8394. "type": "github"
  8395. },
  8396. {
  8397. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  8398. "type": "tidelift"
  8399. }
  8400. ],
  8401. "time": "2023-08-27T10:02:06+00:00"
  8402. },
  8403. {
  8404. "name": "guzzlehttp/promises",
  8405. "version": "2.0.1",
  8406. "source": {
  8407. "type": "git",
  8408. "url": "https://github.com/guzzle/promises.git",
  8409. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d"
  8410. },
  8411. "dist": {
  8412. "type": "zip",
  8413. "url": "https://api.github.com/repos/guzzle/promises/zipball/111166291a0f8130081195ac4556a5587d7f1b5d",
  8414. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d",
  8415. "shasum": ""
  8416. },
  8417. "require": {
  8418. "php": "^7.2.5 || ^8.0"
  8419. },
  8420. "require-dev": {
  8421. "bamarni/composer-bin-plugin": "^1.8.1",
  8422. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  8423. },
  8424. "type": "library",
  8425. "extra": {
  8426. "bamarni-bin": {
  8427. "bin-links": true,
  8428. "forward-command": false
  8429. }
  8430. },
  8431. "autoload": {
  8432. "psr-4": {
  8433. "GuzzleHttp\\Promise\\": "src/"
  8434. }
  8435. },
  8436. "notification-url": "https://packagist.org/downloads/",
  8437. "license": [
  8438. "MIT"
  8439. ],
  8440. "authors": [
  8441. {
  8442. "name": "Graham Campbell",
  8443. "email": "hello@gjcampbell.co.uk",
  8444. "homepage": "https://github.com/GrahamCampbell"
  8445. },
  8446. {
  8447. "name": "Michael Dowling",
  8448. "email": "mtdowling@gmail.com",
  8449. "homepage": "https://github.com/mtdowling"
  8450. },
  8451. {
  8452. "name": "Tobias Nyholm",
  8453. "email": "tobias.nyholm@gmail.com",
  8454. "homepage": "https://github.com/Nyholm"
  8455. },
  8456. {
  8457. "name": "Tobias Schultze",
  8458. "email": "webmaster@tubo-world.de",
  8459. "homepage": "https://github.com/Tobion"
  8460. }
  8461. ],
  8462. "description": "Guzzle promises library",
  8463. "keywords": [
  8464. "promise"
  8465. ],
  8466. "support": {
  8467. "issues": "https://github.com/guzzle/promises/issues",
  8468. "source": "https://github.com/guzzle/promises/tree/2.0.1"
  8469. },
  8470. "funding": [
  8471. {
  8472. "url": "https://github.com/GrahamCampbell",
  8473. "type": "github"
  8474. },
  8475. {
  8476. "url": "https://github.com/Nyholm",
  8477. "type": "github"
  8478. },
  8479. {
  8480. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  8481. "type": "tidelift"
  8482. }
  8483. ],
  8484. "time": "2023-08-03T15:11:55+00:00"
  8485. },
  8486. {
  8487. "name": "guzzlehttp/psr7",
  8488. "version": "2.5.1",
  8489. "source": {
  8490. "type": "git",
  8491. "url": "https://github.com/guzzle/psr7.git",
  8492. "reference": "a0b3a03e8e8005257fbc408ce5f0fd0a8274dc7f"
  8493. },
  8494. "dist": {
  8495. "type": "zip",
  8496. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a0b3a03e8e8005257fbc408ce5f0fd0a8274dc7f",
  8497. "reference": "a0b3a03e8e8005257fbc408ce5f0fd0a8274dc7f",
  8498. "shasum": ""
  8499. },
  8500. "require": {
  8501. "php": "^7.2.5 || ^8.0",
  8502. "psr/http-factory": "^1.0",
  8503. "psr/http-message": "^1.1 || ^2.0",
  8504. "ralouphie/getallheaders": "^3.0"
  8505. },
  8506. "provide": {
  8507. "psr/http-factory-implementation": "1.0",
  8508. "psr/http-message-implementation": "1.0"
  8509. },
  8510. "require-dev": {
  8511. "bamarni/composer-bin-plugin": "^1.8.1",
  8512. "http-interop/http-factory-tests": "^0.9",
  8513. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  8514. },
  8515. "suggest": {
  8516. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  8517. },
  8518. "type": "library",
  8519. "extra": {
  8520. "bamarni-bin": {
  8521. "bin-links": true,
  8522. "forward-command": false
  8523. }
  8524. },
  8525. "autoload": {
  8526. "psr-4": {
  8527. "GuzzleHttp\\Psr7\\": "src/"
  8528. }
  8529. },
  8530. "notification-url": "https://packagist.org/downloads/",
  8531. "license": [
  8532. "MIT"
  8533. ],
  8534. "authors": [
  8535. {
  8536. "name": "Graham Campbell",
  8537. "email": "hello@gjcampbell.co.uk",
  8538. "homepage": "https://github.com/GrahamCampbell"
  8539. },
  8540. {
  8541. "name": "Michael Dowling",
  8542. "email": "mtdowling@gmail.com",
  8543. "homepage": "https://github.com/mtdowling"
  8544. },
  8545. {
  8546. "name": "George Mponos",
  8547. "email": "gmponos@gmail.com",
  8548. "homepage": "https://github.com/gmponos"
  8549. },
  8550. {
  8551. "name": "Tobias Nyholm",
  8552. "email": "tobias.nyholm@gmail.com",
  8553. "homepage": "https://github.com/Nyholm"
  8554. },
  8555. {
  8556. "name": "Márk Sági-Kazár",
  8557. "email": "mark.sagikazar@gmail.com",
  8558. "homepage": "https://github.com/sagikazarmark"
  8559. },
  8560. {
  8561. "name": "Tobias Schultze",
  8562. "email": "webmaster@tubo-world.de",
  8563. "homepage": "https://github.com/Tobion"
  8564. },
  8565. {
  8566. "name": "Márk Sági-Kazár",
  8567. "email": "mark.sagikazar@gmail.com",
  8568. "homepage": "https://sagikazarmark.hu"
  8569. }
  8570. ],
  8571. "description": "PSR-7 message implementation that also provides common utility methods",
  8572. "keywords": [
  8573. "http",
  8574. "message",
  8575. "psr-7",
  8576. "request",
  8577. "response",
  8578. "stream",
  8579. "uri",
  8580. "url"
  8581. ],
  8582. "support": {
  8583. "issues": "https://github.com/guzzle/psr7/issues",
  8584. "source": "https://github.com/guzzle/psr7/tree/2.5.1"
  8585. },
  8586. "funding": [
  8587. {
  8588. "url": "https://github.com/GrahamCampbell",
  8589. "type": "github"
  8590. },
  8591. {
  8592. "url": "https://github.com/Nyholm",
  8593. "type": "github"
  8594. },
  8595. {
  8596. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  8597. "type": "tidelift"
  8598. }
  8599. ],
  8600. "time": "2023-08-03T15:02:42+00:00"
  8601. },
  8602. {
  8603. "name": "kint-php/kint",
  8604. "version": "3.3",
  8605. "source": {
  8606. "type": "git",
  8607. "url": "https://github.com/kint-php/kint.git",
  8608. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b"
  8609. },
  8610. "dist": {
  8611. "type": "zip",
  8612. "url": "https://api.github.com/repos/kint-php/kint/zipball/335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8613. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8614. "shasum": ""
  8615. },
  8616. "require": {
  8617. "php": ">=5.3.6"
  8618. },
  8619. "require-dev": {
  8620. "friendsofphp/php-cs-fixer": "^2.0",
  8621. "phpunit/phpunit": "^4.0",
  8622. "seld/phar-utils": "^1.0",
  8623. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  8624. "vimeo/psalm": "^3.0"
  8625. },
  8626. "suggest": {
  8627. "ext-ctype": "Simple data type tests",
  8628. "ext-iconv": "Provides fallback detection for ambiguous legacy string encodings such as the Windows and ISO 8859 code pages",
  8629. "ext-mbstring": "Provides string encoding detection",
  8630. "kint-php/kint-js": "Provides a simplified dump to console.log()",
  8631. "kint-php/kint-twig": "Provides d() and s() functions in twig templates",
  8632. "symfony/polyfill-ctype": "Replacement for ext-ctype if missing",
  8633. "symfony/polyfill-iconv": "Replacement for ext-iconv if missing",
  8634. "symfony/polyfill-mbstring": "Replacement for ext-mbstring if missing"
  8635. },
  8636. "type": "library",
  8637. "autoload": {
  8638. "files": [
  8639. "init.php"
  8640. ],
  8641. "psr-4": {
  8642. "Kint\\": "src/"
  8643. }
  8644. },
  8645. "notification-url": "https://packagist.org/downloads/",
  8646. "license": [
  8647. "MIT"
  8648. ],
  8649. "authors": [
  8650. {
  8651. "name": "Jonathan Vollebregt",
  8652. "homepage": "https://github.com/jnvsor"
  8653. },
  8654. {
  8655. "name": "Rokas Šleinius",
  8656. "homepage": "https://github.com/raveren"
  8657. },
  8658. {
  8659. "name": "Contributors",
  8660. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  8661. }
  8662. ],
  8663. "description": "Kint - debugging tool for PHP developers",
  8664. "homepage": "https://kint-php.github.io/kint/",
  8665. "keywords": [
  8666. "debug",
  8667. "kint",
  8668. "php"
  8669. ],
  8670. "support": {
  8671. "issues": "https://github.com/kint-php/kint/issues",
  8672. "source": "https://github.com/kint-php/kint/tree/master"
  8673. },
  8674. "time": "2019-10-17T18:05:24+00:00"
  8675. },
  8676. {
  8677. "name": "league/container",
  8678. "version": "4.2.0",
  8679. "source": {
  8680. "type": "git",
  8681. "url": "https://github.com/thephpleague/container.git",
  8682. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab"
  8683. },
  8684. "dist": {
  8685. "type": "zip",
  8686. "url": "https://api.github.com/repos/thephpleague/container/zipball/375d13cb828649599ef5d48a339c4af7a26cd0ab",
  8687. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab",
  8688. "shasum": ""
  8689. },
  8690. "require": {
  8691. "php": "^7.2 || ^8.0",
  8692. "psr/container": "^1.1 || ^2.0"
  8693. },
  8694. "provide": {
  8695. "psr/container-implementation": "^1.0"
  8696. },
  8697. "replace": {
  8698. "orno/di": "~2.0"
  8699. },
  8700. "require-dev": {
  8701. "nette/php-generator": "^3.4",
  8702. "nikic/php-parser": "^4.10",
  8703. "phpstan/phpstan": "^0.12.47",
  8704. "phpunit/phpunit": "^8.5.17",
  8705. "roave/security-advisories": "dev-latest",
  8706. "scrutinizer/ocular": "^1.8",
  8707. "squizlabs/php_codesniffer": "^3.6"
  8708. },
  8709. "type": "library",
  8710. "extra": {
  8711. "branch-alias": {
  8712. "dev-master": "4.x-dev",
  8713. "dev-4.x": "4.x-dev",
  8714. "dev-3.x": "3.x-dev",
  8715. "dev-2.x": "2.x-dev",
  8716. "dev-1.x": "1.x-dev"
  8717. }
  8718. },
  8719. "autoload": {
  8720. "psr-4": {
  8721. "League\\Container\\": "src"
  8722. }
  8723. },
  8724. "notification-url": "https://packagist.org/downloads/",
  8725. "license": [
  8726. "MIT"
  8727. ],
  8728. "authors": [
  8729. {
  8730. "name": "Phil Bennett",
  8731. "email": "mail@philbennett.co.uk",
  8732. "role": "Developer"
  8733. }
  8734. ],
  8735. "description": "A fast and intuitive dependency injection container.",
  8736. "homepage": "https://github.com/thephpleague/container",
  8737. "keywords": [
  8738. "container",
  8739. "dependency",
  8740. "di",
  8741. "injection",
  8742. "league",
  8743. "provider",
  8744. "service"
  8745. ],
  8746. "support": {
  8747. "issues": "https://github.com/thephpleague/container/issues",
  8748. "source": "https://github.com/thephpleague/container/tree/4.2.0"
  8749. },
  8750. "funding": [
  8751. {
  8752. "url": "https://github.com/philipobenito",
  8753. "type": "github"
  8754. }
  8755. ],
  8756. "time": "2021-11-16T10:29:06+00:00"
  8757. },
  8758. {
  8759. "name": "masterminds/html5",
  8760. "version": "2.8.1",
  8761. "source": {
  8762. "type": "git",
  8763. "url": "https://github.com/Masterminds/html5-php.git",
  8764. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf"
  8765. },
  8766. "dist": {
  8767. "type": "zip",
  8768. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f47dcf3c70c584de14f21143c55d9939631bc6cf",
  8769. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf",
  8770. "shasum": ""
  8771. },
  8772. "require": {
  8773. "ext-dom": "*",
  8774. "php": ">=5.3.0"
  8775. },
  8776. "require-dev": {
  8777. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8"
  8778. },
  8779. "type": "library",
  8780. "extra": {
  8781. "branch-alias": {
  8782. "dev-master": "2.7-dev"
  8783. }
  8784. },
  8785. "autoload": {
  8786. "psr-4": {
  8787. "Masterminds\\": "src"
  8788. }
  8789. },
  8790. "notification-url": "https://packagist.org/downloads/",
  8791. "license": [
  8792. "MIT"
  8793. ],
  8794. "authors": [
  8795. {
  8796. "name": "Matt Butcher",
  8797. "email": "technosophos@gmail.com"
  8798. },
  8799. {
  8800. "name": "Matt Farina",
  8801. "email": "matt@mattfarina.com"
  8802. },
  8803. {
  8804. "name": "Asmir Mustafic",
  8805. "email": "goetas@gmail.com"
  8806. }
  8807. ],
  8808. "description": "An HTML5 parser and serializer.",
  8809. "homepage": "http://masterminds.github.io/html5-php",
  8810. "keywords": [
  8811. "HTML5",
  8812. "dom",
  8813. "html",
  8814. "parser",
  8815. "querypath",
  8816. "serializer",
  8817. "xml"
  8818. ],
  8819. "support": {
  8820. "issues": "https://github.com/Masterminds/html5-php/issues",
  8821. "source": "https://github.com/Masterminds/html5-php/tree/2.8.1"
  8822. },
  8823. "time": "2023-05-10T11:58:31+00:00"
  8824. },
  8825. {
  8826. "name": "mck89/peast",
  8827. "version": "v1.15.4",
  8828. "source": {
  8829. "type": "git",
  8830. "url": "https://github.com/mck89/peast.git",
  8831. "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18"
  8832. },
  8833. "dist": {
  8834. "type": "zip",
  8835. "url": "https://api.github.com/repos/mck89/peast/zipball/1df4dc28a6b5bb7ab117ab073c1712256e954e18",
  8836. "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18",
  8837. "shasum": ""
  8838. },
  8839. "require": {
  8840. "ext-mbstring": "*",
  8841. "php": ">=5.4.0"
  8842. },
  8843. "require-dev": {
  8844. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  8845. },
  8846. "type": "library",
  8847. "extra": {
  8848. "branch-alias": {
  8849. "dev-master": "1.15.4-dev"
  8850. }
  8851. },
  8852. "autoload": {
  8853. "psr-4": {
  8854. "Peast\\": "lib/Peast/"
  8855. }
  8856. },
  8857. "notification-url": "https://packagist.org/downloads/",
  8858. "license": [
  8859. "BSD-3-Clause"
  8860. ],
  8861. "authors": [
  8862. {
  8863. "name": "Marco Marchiò",
  8864. "email": "marco.mm89@gmail.com"
  8865. }
  8866. ],
  8867. "description": "Peast is PHP library that generates AST for JavaScript code",
  8868. "support": {
  8869. "issues": "https://github.com/mck89/peast/issues",
  8870. "source": "https://github.com/mck89/peast/tree/v1.15.4"
  8871. },
  8872. "time": "2023-08-12T08:29:29+00:00"
  8873. },
  8874. {
  8875. "name": "nikic/php-parser",
  8876. "version": "v4.17.1",
  8877. "source": {
  8878. "type": "git",
  8879. "url": "https://github.com/nikic/PHP-Parser.git",
  8880. "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d"
  8881. },
  8882. "dist": {
  8883. "type": "zip",
  8884. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
  8885. "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
  8886. "shasum": ""
  8887. },
  8888. "require": {
  8889. "ext-tokenizer": "*",
  8890. "php": ">=7.0"
  8891. },
  8892. "require-dev": {
  8893. "ircmaxell/php-yacc": "^0.0.7",
  8894. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  8895. },
  8896. "bin": [
  8897. "bin/php-parse"
  8898. ],
  8899. "type": "library",
  8900. "extra": {
  8901. "branch-alias": {
  8902. "dev-master": "4.9-dev"
  8903. }
  8904. },
  8905. "autoload": {
  8906. "psr-4": {
  8907. "PhpParser\\": "lib/PhpParser"
  8908. }
  8909. },
  8910. "notification-url": "https://packagist.org/downloads/",
  8911. "license": [
  8912. "BSD-3-Clause"
  8913. ],
  8914. "authors": [
  8915. {
  8916. "name": "Nikita Popov"
  8917. }
  8918. ],
  8919. "description": "A PHP parser written in PHP",
  8920. "keywords": [
  8921. "parser",
  8922. "php"
  8923. ],
  8924. "support": {
  8925. "issues": "https://github.com/nikic/PHP-Parser/issues",
  8926. "source": "https://github.com/nikic/PHP-Parser/tree/v4.17.1"
  8927. },
  8928. "time": "2023-08-13T19:53:39+00:00"
  8929. },
  8930. {
  8931. "name": "pear/archive_tar",
  8932. "version": "1.4.14",
  8933. "source": {
  8934. "type": "git",
  8935. "url": "https://github.com/pear/Archive_Tar.git",
  8936. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  8937. },
  8938. "dist": {
  8939. "type": "zip",
  8940. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  8941. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  8942. "shasum": ""
  8943. },
  8944. "require": {
  8945. "pear/pear-core-minimal": "^1.10.0alpha2",
  8946. "php": ">=5.2.0"
  8947. },
  8948. "require-dev": {
  8949. "phpunit/phpunit": "*"
  8950. },
  8951. "suggest": {
  8952. "ext-bz2": "Bz2 compression support.",
  8953. "ext-xz": "Lzma2 compression support.",
  8954. "ext-zlib": "Gzip compression support."
  8955. },
  8956. "type": "library",
  8957. "extra": {
  8958. "branch-alias": {
  8959. "dev-master": "1.4.x-dev"
  8960. }
  8961. },
  8962. "autoload": {
  8963. "psr-0": {
  8964. "Archive_Tar": ""
  8965. }
  8966. },
  8967. "notification-url": "https://packagist.org/downloads/",
  8968. "include-path": [
  8969. "./"
  8970. ],
  8971. "license": [
  8972. "BSD-3-Clause"
  8973. ],
  8974. "authors": [
  8975. {
  8976. "name": "Vincent Blavet",
  8977. "email": "vincent@phpconcept.net"
  8978. },
  8979. {
  8980. "name": "Greg Beaver",
  8981. "email": "greg@chiaraquartet.net"
  8982. },
  8983. {
  8984. "name": "Michiel Rook",
  8985. "email": "mrook@php.net"
  8986. }
  8987. ],
  8988. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  8989. "homepage": "https://github.com/pear/Archive_Tar",
  8990. "keywords": [
  8991. "archive",
  8992. "tar"
  8993. ],
  8994. "support": {
  8995. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  8996. "source": "https://github.com/pear/Archive_Tar"
  8997. },
  8998. "funding": [
  8999. {
  9000. "url": "https://github.com/mrook",
  9001. "type": "github"
  9002. },
  9003. {
  9004. "url": "https://www.patreon.com/michielrook",
  9005. "type": "patreon"
  9006. }
  9007. ],
  9008. "time": "2021-07-20T13:53:39+00:00"
  9009. },
  9010. {
  9011. "name": "pear/console_getopt",
  9012. "version": "v1.4.3",
  9013. "source": {
  9014. "type": "git",
  9015. "url": "https://github.com/pear/Console_Getopt.git",
  9016. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  9017. },
  9018. "dist": {
  9019. "type": "zip",
  9020. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9021. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9022. "shasum": ""
  9023. },
  9024. "type": "library",
  9025. "autoload": {
  9026. "psr-0": {
  9027. "Console": "./"
  9028. }
  9029. },
  9030. "notification-url": "https://packagist.org/downloads/",
  9031. "include-path": [
  9032. "./"
  9033. ],
  9034. "license": [
  9035. "BSD-2-Clause"
  9036. ],
  9037. "authors": [
  9038. {
  9039. "name": "Andrei Zmievski",
  9040. "email": "andrei@php.net",
  9041. "role": "Lead"
  9042. },
  9043. {
  9044. "name": "Stig Bakken",
  9045. "email": "stig@php.net",
  9046. "role": "Developer"
  9047. },
  9048. {
  9049. "name": "Greg Beaver",
  9050. "email": "cellog@php.net",
  9051. "role": "Helper"
  9052. }
  9053. ],
  9054. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  9055. "support": {
  9056. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  9057. "source": "https://github.com/pear/Console_Getopt"
  9058. },
  9059. "time": "2019-11-20T18:27:48+00:00"
  9060. },
  9061. {
  9062. "name": "pear/pear-core-minimal",
  9063. "version": "v1.10.13",
  9064. "source": {
  9065. "type": "git",
  9066. "url": "https://github.com/pear/pear-core-minimal.git",
  9067. "reference": "aed862e95fd286c53cc546734868dc38ff4b5b1d"
  9068. },
  9069. "dist": {
  9070. "type": "zip",
  9071. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/aed862e95fd286c53cc546734868dc38ff4b5b1d",
  9072. "reference": "aed862e95fd286c53cc546734868dc38ff4b5b1d",
  9073. "shasum": ""
  9074. },
  9075. "require": {
  9076. "pear/console_getopt": "~1.4",
  9077. "pear/pear_exception": "~1.0"
  9078. },
  9079. "replace": {
  9080. "rsky/pear-core-min": "self.version"
  9081. },
  9082. "type": "library",
  9083. "autoload": {
  9084. "psr-0": {
  9085. "": "src/"
  9086. }
  9087. },
  9088. "notification-url": "https://packagist.org/downloads/",
  9089. "include-path": [
  9090. "src/"
  9091. ],
  9092. "license": [
  9093. "BSD-3-Clause"
  9094. ],
  9095. "authors": [
  9096. {
  9097. "name": "Christian Weiske",
  9098. "email": "cweiske@php.net",
  9099. "role": "Lead"
  9100. }
  9101. ],
  9102. "description": "Minimal set of PEAR core files to be used as composer dependency",
  9103. "support": {
  9104. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  9105. "source": "https://github.com/pear/pear-core-minimal"
  9106. },
  9107. "time": "2023-04-19T19:15:47+00:00"
  9108. },
  9109. {
  9110. "name": "pear/pear_exception",
  9111. "version": "v1.0.2",
  9112. "source": {
  9113. "type": "git",
  9114. "url": "https://github.com/pear/PEAR_Exception.git",
  9115. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  9116. },
  9117. "dist": {
  9118. "type": "zip",
  9119. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  9120. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  9121. "shasum": ""
  9122. },
  9123. "require": {
  9124. "php": ">=5.2.0"
  9125. },
  9126. "require-dev": {
  9127. "phpunit/phpunit": "<9"
  9128. },
  9129. "type": "class",
  9130. "extra": {
  9131. "branch-alias": {
  9132. "dev-master": "1.0.x-dev"
  9133. }
  9134. },
  9135. "autoload": {
  9136. "classmap": [
  9137. "PEAR/"
  9138. ]
  9139. },
  9140. "notification-url": "https://packagist.org/downloads/",
  9141. "include-path": [
  9142. "."
  9143. ],
  9144. "license": [
  9145. "BSD-2-Clause"
  9146. ],
  9147. "authors": [
  9148. {
  9149. "name": "Helgi Thormar",
  9150. "email": "dufuz@php.net"
  9151. },
  9152. {
  9153. "name": "Greg Beaver",
  9154. "email": "cellog@php.net"
  9155. }
  9156. ],
  9157. "description": "The PEAR Exception base class.",
  9158. "homepage": "https://github.com/pear/PEAR_Exception",
  9159. "keywords": [
  9160. "exception"
  9161. ],
  9162. "support": {
  9163. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  9164. "source": "https://github.com/pear/PEAR_Exception"
  9165. },
  9166. "time": "2021-03-21T15:43:46+00:00"
  9167. },
  9168. {
  9169. "name": "phenx/php-font-lib",
  9170. "version": "0.5.4",
  9171. "source": {
  9172. "type": "git",
  9173. "url": "https://github.com/dompdf/php-font-lib.git",
  9174. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4"
  9175. },
  9176. "dist": {
  9177. "type": "zip",
  9178. "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/dd448ad1ce34c63d09baccd05415e361300c35b4",
  9179. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4",
  9180. "shasum": ""
  9181. },
  9182. "require": {
  9183. "ext-mbstring": "*"
  9184. },
  9185. "require-dev": {
  9186. "symfony/phpunit-bridge": "^3 || ^4 || ^5"
  9187. },
  9188. "type": "library",
  9189. "autoload": {
  9190. "psr-4": {
  9191. "FontLib\\": "src/FontLib"
  9192. }
  9193. },
  9194. "notification-url": "https://packagist.org/downloads/",
  9195. "license": [
  9196. "LGPL-3.0"
  9197. ],
  9198. "authors": [
  9199. {
  9200. "name": "Fabien Ménager",
  9201. "email": "fabien.menager@gmail.com"
  9202. }
  9203. ],
  9204. "description": "A library to read, parse, export and make subsets of different types of font files.",
  9205. "homepage": "https://github.com/PhenX/php-font-lib",
  9206. "support": {
  9207. "issues": "https://github.com/dompdf/php-font-lib/issues",
  9208. "source": "https://github.com/dompdf/php-font-lib/tree/0.5.4"
  9209. },
  9210. "time": "2021-12-17T19:44:54+00:00"
  9211. },
  9212. {
  9213. "name": "phootwork/collection",
  9214. "version": "v3.2.2",
  9215. "source": {
  9216. "type": "git",
  9217. "url": "https://github.com/phootwork/collection.git",
  9218. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
  9219. },
  9220. "dist": {
  9221. "type": "zip",
  9222. "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
  9223. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
  9224. "shasum": ""
  9225. },
  9226. "require": {
  9227. "phootwork/lang": "^3.0",
  9228. "php": ">=8.0"
  9229. },
  9230. "type": "library",
  9231. "autoload": {
  9232. "psr-4": {
  9233. "phootwork\\collection\\": ""
  9234. }
  9235. },
  9236. "notification-url": "https://packagist.org/downloads/",
  9237. "license": [
  9238. "MIT"
  9239. ],
  9240. "authors": [
  9241. {
  9242. "name": "Thomas Gossmann",
  9243. "homepage": "http://gos.si"
  9244. }
  9245. ],
  9246. "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
  9247. "homepage": "https://phootwork.github.io/collection/",
  9248. "keywords": [
  9249. "Array object",
  9250. "Text object",
  9251. "collection",
  9252. "collections",
  9253. "json",
  9254. "list",
  9255. "map",
  9256. "queue",
  9257. "set",
  9258. "stack",
  9259. "xml"
  9260. ],
  9261. "support": {
  9262. "issues": "https://github.com/phootwork/phootwork/issues",
  9263. "source": "https://github.com/phootwork/collection/tree/v3.2.2"
  9264. },
  9265. "time": "2022-08-27T12:51:24+00:00"
  9266. },
  9267. {
  9268. "name": "phootwork/lang",
  9269. "version": "v3.2.2",
  9270. "source": {
  9271. "type": "git",
  9272. "url": "https://github.com/phootwork/lang.git",
  9273. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597"
  9274. },
  9275. "dist": {
  9276. "type": "zip",
  9277. "url": "https://api.github.com/repos/phootwork/lang/zipball/baaf154ae7d521ebeee5e89105f5b12b0f234597",
  9278. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597",
  9279. "shasum": ""
  9280. },
  9281. "require": {
  9282. "php": ">=8.0",
  9283. "symfony/polyfill-mbstring": "^1.12",
  9284. "symfony/polyfill-php81": "^1.22"
  9285. },
  9286. "type": "library",
  9287. "autoload": {
  9288. "psr-4": {
  9289. "phootwork\\lang\\": ""
  9290. }
  9291. },
  9292. "notification-url": "https://packagist.org/downloads/",
  9293. "license": [
  9294. "MIT"
  9295. ],
  9296. "authors": [
  9297. {
  9298. "name": "Thomas Gossmann",
  9299. "homepage": "http://gos.si"
  9300. }
  9301. ],
  9302. "description": "Missing PHP language constructs",
  9303. "homepage": "https://phootwork.github.io/lang/",
  9304. "keywords": [
  9305. "array",
  9306. "comparator",
  9307. "comparison",
  9308. "string"
  9309. ],
  9310. "support": {
  9311. "issues": "https://github.com/phootwork/phootwork/issues",
  9312. "source": "https://github.com/phootwork/lang/tree/v3.2.2"
  9313. },
  9314. "time": "2023-05-26T05:37:59+00:00"
  9315. },
  9316. {
  9317. "name": "phpmailer/phpmailer",
  9318. "version": "v6.8.1",
  9319. "source": {
  9320. "type": "git",
  9321. "url": "https://github.com/PHPMailer/PHPMailer.git",
  9322. "reference": "e88da8d679acc3824ff231fdc553565b802ac016"
  9323. },
  9324. "dist": {
  9325. "type": "zip",
  9326. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/e88da8d679acc3824ff231fdc553565b802ac016",
  9327. "reference": "e88da8d679acc3824ff231fdc553565b802ac016",
  9328. "shasum": ""
  9329. },
  9330. "require": {
  9331. "ext-ctype": "*",
  9332. "ext-filter": "*",
  9333. "ext-hash": "*",
  9334. "php": ">=5.5.0"
  9335. },
  9336. "require-dev": {
  9337. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  9338. "doctrine/annotations": "^1.2.6 || ^1.13.3",
  9339. "php-parallel-lint/php-console-highlighter": "^1.0.0",
  9340. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  9341. "phpcompatibility/php-compatibility": "^9.3.5",
  9342. "roave/security-advisories": "dev-latest",
  9343. "squizlabs/php_codesniffer": "^3.7.2",
  9344. "yoast/phpunit-polyfills": "^1.0.4"
  9345. },
  9346. "suggest": {
  9347. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  9348. "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
  9349. "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
  9350. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  9351. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  9352. "psr/log": "For optional PSR-3 debug logging",
  9353. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
  9354. "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
  9355. },
  9356. "type": "library",
  9357. "autoload": {
  9358. "psr-4": {
  9359. "PHPMailer\\PHPMailer\\": "src/"
  9360. }
  9361. },
  9362. "notification-url": "https://packagist.org/downloads/",
  9363. "license": [
  9364. "LGPL-2.1-only"
  9365. ],
  9366. "authors": [
  9367. {
  9368. "name": "Marcus Bointon",
  9369. "email": "phpmailer@synchromedia.co.uk"
  9370. },
  9371. {
  9372. "name": "Jim Jagielski",
  9373. "email": "jimjag@gmail.com"
  9374. },
  9375. {
  9376. "name": "Andy Prevost",
  9377. "email": "codeworxtech@users.sourceforge.net"
  9378. },
  9379. {
  9380. "name": "Brent R. Matzelle"
  9381. }
  9382. ],
  9383. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  9384. "support": {
  9385. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  9386. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.8.1"
  9387. },
  9388. "funding": [
  9389. {
  9390. "url": "https://github.com/Synchro",
  9391. "type": "github"
  9392. }
  9393. ],
  9394. "time": "2023-08-29T08:26:30+00:00"
  9395. },
  9396. {
  9397. "name": "phpowermove/docblock",
  9398. "version": "v4.0",
  9399. "source": {
  9400. "type": "git",
  9401. "url": "https://github.com/phpowermove/docblock.git",
  9402. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
  9403. },
  9404. "dist": {
  9405. "type": "zip",
  9406. "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  9407. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  9408. "shasum": ""
  9409. },
  9410. "require": {
  9411. "phootwork/collection": "^3.0",
  9412. "phootwork/lang": "^3.0",
  9413. "php": ">=8.0"
  9414. },
  9415. "require-dev": {
  9416. "phootwork/php-cs-fixer-config": "^0.4",
  9417. "phpunit/phpunit": "^9.0",
  9418. "psalm/phar": "^4.3"
  9419. },
  9420. "type": "library",
  9421. "autoload": {
  9422. "psr-4": {
  9423. "phpowermove\\docblock\\": "src/"
  9424. }
  9425. },
  9426. "notification-url": "https://packagist.org/downloads/",
  9427. "license": [
  9428. "MIT"
  9429. ],
  9430. "authors": [
  9431. {
  9432. "name": "Thomas Gossmann",
  9433. "homepage": "http://gos.si"
  9434. }
  9435. ],
  9436. "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
  9437. "keywords": [
  9438. "docblock",
  9439. "generator",
  9440. "parser"
  9441. ],
  9442. "support": {
  9443. "issues": "https://github.com/phpowermove/docblock/issues",
  9444. "source": "https://github.com/phpowermove/docblock/tree/v4.0"
  9445. },
  9446. "time": "2021-09-22T16:57:06+00:00"
  9447. },
  9448. {
  9449. "name": "politsin/jquery-ui-touch-punch",
  9450. "version": "1.0",
  9451. "source": {
  9452. "type": "git",
  9453. "url": "https://github.com/politsin/jquery-ui-touch-punch.git",
  9454. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd"
  9455. },
  9456. "dist": {
  9457. "type": "zip",
  9458. "url": "https://api.github.com/repos/politsin/jquery-ui-touch-punch/zipball/2fe375e05821e267f0f3c0e063197f5c406896dd",
  9459. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd",
  9460. "shasum": ""
  9461. },
  9462. "type": "drupal-library",
  9463. "notification-url": "https://packagist.org/downloads/",
  9464. "license": [
  9465. "MIT"
  9466. ],
  9467. "authors": [
  9468. {
  9469. "name": "Dave Furfero",
  9470. "email": "furf@furf.com"
  9471. }
  9472. ],
  9473. "description": "Extension to jQuery UI for mobile touch event support.",
  9474. "homepage": "http://touchpunch.furf.com/",
  9475. "keywords": [
  9476. "gestures",
  9477. "mobile",
  9478. "touch"
  9479. ],
  9480. "support": {
  9481. "issues": "https://github.com/politsin/jquery-ui-touch-punch/issues",
  9482. "source": "https://github.com/politsin/jquery-ui-touch-punch/tree/1.0"
  9483. },
  9484. "time": "2020-12-15T10:26:18+00:00"
  9485. },
  9486. {
  9487. "name": "psr/cache",
  9488. "version": "3.0.0",
  9489. "source": {
  9490. "type": "git",
  9491. "url": "https://github.com/php-fig/cache.git",
  9492. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  9493. },
  9494. "dist": {
  9495. "type": "zip",
  9496. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  9497. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  9498. "shasum": ""
  9499. },
  9500. "require": {
  9501. "php": ">=8.0.0"
  9502. },
  9503. "type": "library",
  9504. "extra": {
  9505. "branch-alias": {
  9506. "dev-master": "1.0.x-dev"
  9507. }
  9508. },
  9509. "autoload": {
  9510. "psr-4": {
  9511. "Psr\\Cache\\": "src/"
  9512. }
  9513. },
  9514. "notification-url": "https://packagist.org/downloads/",
  9515. "license": [
  9516. "MIT"
  9517. ],
  9518. "authors": [
  9519. {
  9520. "name": "PHP-FIG",
  9521. "homepage": "https://www.php-fig.org/"
  9522. }
  9523. ],
  9524. "description": "Common interface for caching libraries",
  9525. "keywords": [
  9526. "cache",
  9527. "psr",
  9528. "psr-6"
  9529. ],
  9530. "support": {
  9531. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  9532. },
  9533. "time": "2021-02-03T23:26:27+00:00"
  9534. },
  9535. {
  9536. "name": "psr/container",
  9537. "version": "2.0.2",
  9538. "source": {
  9539. "type": "git",
  9540. "url": "https://github.com/php-fig/container.git",
  9541. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  9542. },
  9543. "dist": {
  9544. "type": "zip",
  9545. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  9546. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  9547. "shasum": ""
  9548. },
  9549. "require": {
  9550. "php": ">=7.4.0"
  9551. },
  9552. "type": "library",
  9553. "extra": {
  9554. "branch-alias": {
  9555. "dev-master": "2.0.x-dev"
  9556. }
  9557. },
  9558. "autoload": {
  9559. "psr-4": {
  9560. "Psr\\Container\\": "src/"
  9561. }
  9562. },
  9563. "notification-url": "https://packagist.org/downloads/",
  9564. "license": [
  9565. "MIT"
  9566. ],
  9567. "authors": [
  9568. {
  9569. "name": "PHP-FIG",
  9570. "homepage": "https://www.php-fig.org/"
  9571. }
  9572. ],
  9573. "description": "Common Container Interface (PHP FIG PSR-11)",
  9574. "homepage": "https://github.com/php-fig/container",
  9575. "keywords": [
  9576. "PSR-11",
  9577. "container",
  9578. "container-interface",
  9579. "container-interop",
  9580. "psr"
  9581. ],
  9582. "support": {
  9583. "issues": "https://github.com/php-fig/container/issues",
  9584. "source": "https://github.com/php-fig/container/tree/2.0.2"
  9585. },
  9586. "time": "2021-11-05T16:47:00+00:00"
  9587. },
  9588. {
  9589. "name": "psr/event-dispatcher",
  9590. "version": "1.0.0",
  9591. "source": {
  9592. "type": "git",
  9593. "url": "https://github.com/php-fig/event-dispatcher.git",
  9594. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  9595. },
  9596. "dist": {
  9597. "type": "zip",
  9598. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  9599. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  9600. "shasum": ""
  9601. },
  9602. "require": {
  9603. "php": ">=7.2.0"
  9604. },
  9605. "type": "library",
  9606. "extra": {
  9607. "branch-alias": {
  9608. "dev-master": "1.0.x-dev"
  9609. }
  9610. },
  9611. "autoload": {
  9612. "psr-4": {
  9613. "Psr\\EventDispatcher\\": "src/"
  9614. }
  9615. },
  9616. "notification-url": "https://packagist.org/downloads/",
  9617. "license": [
  9618. "MIT"
  9619. ],
  9620. "authors": [
  9621. {
  9622. "name": "PHP-FIG",
  9623. "homepage": "http://www.php-fig.org/"
  9624. }
  9625. ],
  9626. "description": "Standard interfaces for event handling.",
  9627. "keywords": [
  9628. "events",
  9629. "psr",
  9630. "psr-14"
  9631. ],
  9632. "support": {
  9633. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  9634. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  9635. },
  9636. "time": "2019-01-08T18:20:26+00:00"
  9637. },
  9638. {
  9639. "name": "psr/http-client",
  9640. "version": "1.0.3",
  9641. "source": {
  9642. "type": "git",
  9643. "url": "https://github.com/php-fig/http-client.git",
  9644. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  9645. },
  9646. "dist": {
  9647. "type": "zip",
  9648. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  9649. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  9650. "shasum": ""
  9651. },
  9652. "require": {
  9653. "php": "^7.0 || ^8.0",
  9654. "psr/http-message": "^1.0 || ^2.0"
  9655. },
  9656. "type": "library",
  9657. "extra": {
  9658. "branch-alias": {
  9659. "dev-master": "1.0.x-dev"
  9660. }
  9661. },
  9662. "autoload": {
  9663. "psr-4": {
  9664. "Psr\\Http\\Client\\": "src/"
  9665. }
  9666. },
  9667. "notification-url": "https://packagist.org/downloads/",
  9668. "license": [
  9669. "MIT"
  9670. ],
  9671. "authors": [
  9672. {
  9673. "name": "PHP-FIG",
  9674. "homepage": "https://www.php-fig.org/"
  9675. }
  9676. ],
  9677. "description": "Common interface for HTTP clients",
  9678. "homepage": "https://github.com/php-fig/http-client",
  9679. "keywords": [
  9680. "http",
  9681. "http-client",
  9682. "psr",
  9683. "psr-18"
  9684. ],
  9685. "support": {
  9686. "source": "https://github.com/php-fig/http-client"
  9687. },
  9688. "time": "2023-09-23T14:17:50+00:00"
  9689. },
  9690. {
  9691. "name": "psr/http-factory",
  9692. "version": "1.0.2",
  9693. "source": {
  9694. "type": "git",
  9695. "url": "https://github.com/php-fig/http-factory.git",
  9696. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  9697. },
  9698. "dist": {
  9699. "type": "zip",
  9700. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  9701. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  9702. "shasum": ""
  9703. },
  9704. "require": {
  9705. "php": ">=7.0.0",
  9706. "psr/http-message": "^1.0 || ^2.0"
  9707. },
  9708. "type": "library",
  9709. "extra": {
  9710. "branch-alias": {
  9711. "dev-master": "1.0.x-dev"
  9712. }
  9713. },
  9714. "autoload": {
  9715. "psr-4": {
  9716. "Psr\\Http\\Message\\": "src/"
  9717. }
  9718. },
  9719. "notification-url": "https://packagist.org/downloads/",
  9720. "license": [
  9721. "MIT"
  9722. ],
  9723. "authors": [
  9724. {
  9725. "name": "PHP-FIG",
  9726. "homepage": "https://www.php-fig.org/"
  9727. }
  9728. ],
  9729. "description": "Common interfaces for PSR-7 HTTP message factories",
  9730. "keywords": [
  9731. "factory",
  9732. "http",
  9733. "message",
  9734. "psr",
  9735. "psr-17",
  9736. "psr-7",
  9737. "request",
  9738. "response"
  9739. ],
  9740. "support": {
  9741. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  9742. },
  9743. "time": "2023-04-10T20:10:41+00:00"
  9744. },
  9745. {
  9746. "name": "psr/http-message",
  9747. "version": "2.0",
  9748. "source": {
  9749. "type": "git",
  9750. "url": "https://github.com/php-fig/http-message.git",
  9751. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  9752. },
  9753. "dist": {
  9754. "type": "zip",
  9755. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  9756. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  9757. "shasum": ""
  9758. },
  9759. "require": {
  9760. "php": "^7.2 || ^8.0"
  9761. },
  9762. "type": "library",
  9763. "extra": {
  9764. "branch-alias": {
  9765. "dev-master": "2.0.x-dev"
  9766. }
  9767. },
  9768. "autoload": {
  9769. "psr-4": {
  9770. "Psr\\Http\\Message\\": "src/"
  9771. }
  9772. },
  9773. "notification-url": "https://packagist.org/downloads/",
  9774. "license": [
  9775. "MIT"
  9776. ],
  9777. "authors": [
  9778. {
  9779. "name": "PHP-FIG",
  9780. "homepage": "https://www.php-fig.org/"
  9781. }
  9782. ],
  9783. "description": "Common interface for HTTP messages",
  9784. "homepage": "https://github.com/php-fig/http-message",
  9785. "keywords": [
  9786. "http",
  9787. "http-message",
  9788. "psr",
  9789. "psr-7",
  9790. "request",
  9791. "response"
  9792. ],
  9793. "support": {
  9794. "source": "https://github.com/php-fig/http-message/tree/2.0"
  9795. },
  9796. "time": "2023-04-04T09:54:51+00:00"
  9797. },
  9798. {
  9799. "name": "psr/log",
  9800. "version": "3.0.0",
  9801. "source": {
  9802. "type": "git",
  9803. "url": "https://github.com/php-fig/log.git",
  9804. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  9805. },
  9806. "dist": {
  9807. "type": "zip",
  9808. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  9809. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  9810. "shasum": ""
  9811. },
  9812. "require": {
  9813. "php": ">=8.0.0"
  9814. },
  9815. "type": "library",
  9816. "extra": {
  9817. "branch-alias": {
  9818. "dev-master": "3.x-dev"
  9819. }
  9820. },
  9821. "autoload": {
  9822. "psr-4": {
  9823. "Psr\\Log\\": "src"
  9824. }
  9825. },
  9826. "notification-url": "https://packagist.org/downloads/",
  9827. "license": [
  9828. "MIT"
  9829. ],
  9830. "authors": [
  9831. {
  9832. "name": "PHP-FIG",
  9833. "homepage": "https://www.php-fig.org/"
  9834. }
  9835. ],
  9836. "description": "Common interface for logging libraries",
  9837. "homepage": "https://github.com/php-fig/log",
  9838. "keywords": [
  9839. "log",
  9840. "psr",
  9841. "psr-3"
  9842. ],
  9843. "support": {
  9844. "source": "https://github.com/php-fig/log/tree/3.0.0"
  9845. },
  9846. "time": "2021-07-14T16:46:02+00:00"
  9847. },
  9848. {
  9849. "name": "psy/psysh",
  9850. "version": "v0.11.22",
  9851. "source": {
  9852. "type": "git",
  9853. "url": "https://github.com/bobthecow/psysh.git",
  9854. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b"
  9855. },
  9856. "dist": {
  9857. "type": "zip",
  9858. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/128fa1b608be651999ed9789c95e6e2a31b5802b",
  9859. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b",
  9860. "shasum": ""
  9861. },
  9862. "require": {
  9863. "ext-json": "*",
  9864. "ext-tokenizer": "*",
  9865. "nikic/php-parser": "^4.0 || ^3.1",
  9866. "php": "^8.0 || ^7.0.8",
  9867. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  9868. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  9869. },
  9870. "conflict": {
  9871. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  9872. },
  9873. "require-dev": {
  9874. "bamarni/composer-bin-plugin": "^1.2"
  9875. },
  9876. "suggest": {
  9877. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  9878. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  9879. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  9880. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  9881. },
  9882. "bin": [
  9883. "bin/psysh"
  9884. ],
  9885. "type": "library",
  9886. "extra": {
  9887. "branch-alias": {
  9888. "dev-0.11": "0.11.x-dev"
  9889. },
  9890. "bamarni-bin": {
  9891. "bin-links": false,
  9892. "forward-command": false
  9893. }
  9894. },
  9895. "autoload": {
  9896. "files": [
  9897. "src/functions.php"
  9898. ],
  9899. "psr-4": {
  9900. "Psy\\": "src/"
  9901. }
  9902. },
  9903. "notification-url": "https://packagist.org/downloads/",
  9904. "license": [
  9905. "MIT"
  9906. ],
  9907. "authors": [
  9908. {
  9909. "name": "Justin Hileman",
  9910. "email": "justin@justinhileman.info",
  9911. "homepage": "http://justinhileman.com"
  9912. }
  9913. ],
  9914. "description": "An interactive shell for modern PHP.",
  9915. "homepage": "http://psysh.org",
  9916. "keywords": [
  9917. "REPL",
  9918. "console",
  9919. "interactive",
  9920. "shell"
  9921. ],
  9922. "support": {
  9923. "issues": "https://github.com/bobthecow/psysh/issues",
  9924. "source": "https://github.com/bobthecow/psysh/tree/v0.11.22"
  9925. },
  9926. "time": "2023-10-14T21:56:36+00:00"
  9927. },
  9928. {
  9929. "name": "ralouphie/getallheaders",
  9930. "version": "3.0.3",
  9931. "source": {
  9932. "type": "git",
  9933. "url": "https://github.com/ralouphie/getallheaders.git",
  9934. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  9935. },
  9936. "dist": {
  9937. "type": "zip",
  9938. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  9939. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  9940. "shasum": ""
  9941. },
  9942. "require": {
  9943. "php": ">=5.6"
  9944. },
  9945. "require-dev": {
  9946. "php-coveralls/php-coveralls": "^2.1",
  9947. "phpunit/phpunit": "^5 || ^6.5"
  9948. },
  9949. "type": "library",
  9950. "autoload": {
  9951. "files": [
  9952. "src/getallheaders.php"
  9953. ]
  9954. },
  9955. "notification-url": "https://packagist.org/downloads/",
  9956. "license": [
  9957. "MIT"
  9958. ],
  9959. "authors": [
  9960. {
  9961. "name": "Ralph Khattar",
  9962. "email": "ralph.khattar@gmail.com"
  9963. }
  9964. ],
  9965. "description": "A polyfill for getallheaders.",
  9966. "support": {
  9967. "issues": "https://github.com/ralouphie/getallheaders/issues",
  9968. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  9969. },
  9970. "time": "2019-03-08T08:55:37+00:00"
  9971. },
  9972. {
  9973. "name": "sebastian/diff",
  9974. "version": "4.0.5",
  9975. "source": {
  9976. "type": "git",
  9977. "url": "https://github.com/sebastianbergmann/diff.git",
  9978. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  9979. },
  9980. "dist": {
  9981. "type": "zip",
  9982. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  9983. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  9984. "shasum": ""
  9985. },
  9986. "require": {
  9987. "php": ">=7.3"
  9988. },
  9989. "require-dev": {
  9990. "phpunit/phpunit": "^9.3",
  9991. "symfony/process": "^4.2 || ^5"
  9992. },
  9993. "type": "library",
  9994. "extra": {
  9995. "branch-alias": {
  9996. "dev-master": "4.0-dev"
  9997. }
  9998. },
  9999. "autoload": {
  10000. "classmap": [
  10001. "src/"
  10002. ]
  10003. },
  10004. "notification-url": "https://packagist.org/downloads/",
  10005. "license": [
  10006. "BSD-3-Clause"
  10007. ],
  10008. "authors": [
  10009. {
  10010. "name": "Sebastian Bergmann",
  10011. "email": "sebastian@phpunit.de"
  10012. },
  10013. {
  10014. "name": "Kore Nordmann",
  10015. "email": "mail@kore-nordmann.de"
  10016. }
  10017. ],
  10018. "description": "Diff implementation",
  10019. "homepage": "https://github.com/sebastianbergmann/diff",
  10020. "keywords": [
  10021. "diff",
  10022. "udiff",
  10023. "unidiff",
  10024. "unified diff"
  10025. ],
  10026. "support": {
  10027. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10028. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  10029. },
  10030. "funding": [
  10031. {
  10032. "url": "https://github.com/sebastianbergmann",
  10033. "type": "github"
  10034. }
  10035. ],
  10036. "time": "2023-05-07T05:35:17+00:00"
  10037. },
  10038. {
  10039. "name": "stymiee/email-validator",
  10040. "version": "1.1.3",
  10041. "source": {
  10042. "type": "git",
  10043. "url": "https://github.com/stymiee/email-validator.git",
  10044. "reference": "017a53567aadc82e51773b887d0dff381aae5f2e"
  10045. },
  10046. "dist": {
  10047. "type": "zip",
  10048. "url": "https://api.github.com/repos/stymiee/email-validator/zipball/017a53567aadc82e51773b887d0dff381aae5f2e",
  10049. "reference": "017a53567aadc82e51773b887d0dff381aae5f2e",
  10050. "shasum": ""
  10051. },
  10052. "require": {
  10053. "ext-json": "*",
  10054. "php": ">=7.2.0"
  10055. },
  10056. "require-dev": {
  10057. "nunomaduro/phpinsights": "@stable",
  10058. "phpmd/phpmd": "@stable",
  10059. "phpunit/phpunit": "^8",
  10060. "squizlabs/php_codesniffer": "3.*"
  10061. },
  10062. "type": "library",
  10063. "autoload": {
  10064. "psr-4": {
  10065. "EmailValidator\\": [
  10066. "src/EmailValidator/"
  10067. ]
  10068. }
  10069. },
  10070. "notification-url": "https://packagist.org/downloads/",
  10071. "license": [
  10072. "Apache-2.0"
  10073. ],
  10074. "authors": [
  10075. {
  10076. "name": "John Conde",
  10077. "email": "stymiee@gmail.com",
  10078. "homepage": "https://stymiee.dev",
  10079. "role": "Developer"
  10080. }
  10081. ],
  10082. "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.",
  10083. "homepage": "https://github.com/stymiee/php-simple-encryption",
  10084. "keywords": [
  10085. "email",
  10086. "php",
  10087. "validation"
  10088. ],
  10089. "support": {
  10090. "issues": "https://github.com/stymiee/email-validator/issues",
  10091. "source": "https://github.com/stymiee/email-validator/tree/1.1.3"
  10092. },
  10093. "time": "2022-10-11T19:23:13+00:00"
  10094. },
  10095. {
  10096. "name": "symfony/console",
  10097. "version": "v6.3.8",
  10098. "source": {
  10099. "type": "git",
  10100. "url": "https://github.com/symfony/console.git",
  10101. "reference": "0d14a9f6d04d4ac38a8cea1171f4554e325dae92"
  10102. },
  10103. "dist": {
  10104. "type": "zip",
  10105. "url": "https://api.github.com/repos/symfony/console/zipball/0d14a9f6d04d4ac38a8cea1171f4554e325dae92",
  10106. "reference": "0d14a9f6d04d4ac38a8cea1171f4554e325dae92",
  10107. "shasum": ""
  10108. },
  10109. "require": {
  10110. "php": ">=8.1",
  10111. "symfony/deprecation-contracts": "^2.5|^3",
  10112. "symfony/polyfill-mbstring": "~1.0",
  10113. "symfony/service-contracts": "^2.5|^3",
  10114. "symfony/string": "^5.4|^6.0"
  10115. },
  10116. "conflict": {
  10117. "symfony/dependency-injection": "<5.4",
  10118. "symfony/dotenv": "<5.4",
  10119. "symfony/event-dispatcher": "<5.4",
  10120. "symfony/lock": "<5.4",
  10121. "symfony/process": "<5.4"
  10122. },
  10123. "provide": {
  10124. "psr/log-implementation": "1.0|2.0|3.0"
  10125. },
  10126. "require-dev": {
  10127. "psr/log": "^1|^2|^3",
  10128. "symfony/config": "^5.4|^6.0",
  10129. "symfony/dependency-injection": "^5.4|^6.0",
  10130. "symfony/event-dispatcher": "^5.4|^6.0",
  10131. "symfony/lock": "^5.4|^6.0",
  10132. "symfony/process": "^5.4|^6.0",
  10133. "symfony/var-dumper": "^5.4|^6.0"
  10134. },
  10135. "type": "library",
  10136. "autoload": {
  10137. "psr-4": {
  10138. "Symfony\\Component\\Console\\": ""
  10139. },
  10140. "exclude-from-classmap": [
  10141. "/Tests/"
  10142. ]
  10143. },
  10144. "notification-url": "https://packagist.org/downloads/",
  10145. "license": [
  10146. "MIT"
  10147. ],
  10148. "authors": [
  10149. {
  10150. "name": "Fabien Potencier",
  10151. "email": "fabien@symfony.com"
  10152. },
  10153. {
  10154. "name": "Symfony Community",
  10155. "homepage": "https://symfony.com/contributors"
  10156. }
  10157. ],
  10158. "description": "Eases the creation of beautiful and testable command line interfaces",
  10159. "homepage": "https://symfony.com",
  10160. "keywords": [
  10161. "cli",
  10162. "command-line",
  10163. "console",
  10164. "terminal"
  10165. ],
  10166. "support": {
  10167. "source": "https://github.com/symfony/console/tree/v6.3.8"
  10168. },
  10169. "funding": [
  10170. {
  10171. "url": "https://symfony.com/sponsor",
  10172. "type": "custom"
  10173. },
  10174. {
  10175. "url": "https://github.com/fabpot",
  10176. "type": "github"
  10177. },
  10178. {
  10179. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10180. "type": "tidelift"
  10181. }
  10182. ],
  10183. "time": "2023-10-31T08:09:35+00:00"
  10184. },
  10185. {
  10186. "name": "symfony/dependency-injection",
  10187. "version": "v6.3.8",
  10188. "source": {
  10189. "type": "git",
  10190. "url": "https://github.com/symfony/dependency-injection.git",
  10191. "reference": "1f30f545c4151f611148fc19e28d54d39e0a00bc"
  10192. },
  10193. "dist": {
  10194. "type": "zip",
  10195. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/1f30f545c4151f611148fc19e28d54d39e0a00bc",
  10196. "reference": "1f30f545c4151f611148fc19e28d54d39e0a00bc",
  10197. "shasum": ""
  10198. },
  10199. "require": {
  10200. "php": ">=8.1",
  10201. "psr/container": "^1.1|^2.0",
  10202. "symfony/deprecation-contracts": "^2.5|^3",
  10203. "symfony/service-contracts": "^2.5|^3.0",
  10204. "symfony/var-exporter": "^6.2.10"
  10205. },
  10206. "conflict": {
  10207. "ext-psr": "<1.1|>=2",
  10208. "symfony/config": "<6.1",
  10209. "symfony/finder": "<5.4",
  10210. "symfony/proxy-manager-bridge": "<6.3",
  10211. "symfony/yaml": "<5.4"
  10212. },
  10213. "provide": {
  10214. "psr/container-implementation": "1.1|2.0",
  10215. "symfony/service-implementation": "1.1|2.0|3.0"
  10216. },
  10217. "require-dev": {
  10218. "symfony/config": "^6.1",
  10219. "symfony/expression-language": "^5.4|^6.0",
  10220. "symfony/yaml": "^5.4|^6.0"
  10221. },
  10222. "type": "library",
  10223. "autoload": {
  10224. "psr-4": {
  10225. "Symfony\\Component\\DependencyInjection\\": ""
  10226. },
  10227. "exclude-from-classmap": [
  10228. "/Tests/"
  10229. ]
  10230. },
  10231. "notification-url": "https://packagist.org/downloads/",
  10232. "license": [
  10233. "MIT"
  10234. ],
  10235. "authors": [
  10236. {
  10237. "name": "Fabien Potencier",
  10238. "email": "fabien@symfony.com"
  10239. },
  10240. {
  10241. "name": "Symfony Community",
  10242. "homepage": "https://symfony.com/contributors"
  10243. }
  10244. ],
  10245. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  10246. "homepage": "https://symfony.com",
  10247. "support": {
  10248. "source": "https://github.com/symfony/dependency-injection/tree/v6.3.8"
  10249. },
  10250. "funding": [
  10251. {
  10252. "url": "https://symfony.com/sponsor",
  10253. "type": "custom"
  10254. },
  10255. {
  10256. "url": "https://github.com/fabpot",
  10257. "type": "github"
  10258. },
  10259. {
  10260. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10261. "type": "tidelift"
  10262. }
  10263. ],
  10264. "time": "2023-10-31T08:07:48+00:00"
  10265. },
  10266. {
  10267. "name": "symfony/deprecation-contracts",
  10268. "version": "v3.3.0",
  10269. "source": {
  10270. "type": "git",
  10271. "url": "https://github.com/symfony/deprecation-contracts.git",
  10272. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  10273. },
  10274. "dist": {
  10275. "type": "zip",
  10276. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  10277. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  10278. "shasum": ""
  10279. },
  10280. "require": {
  10281. "php": ">=8.1"
  10282. },
  10283. "type": "library",
  10284. "extra": {
  10285. "branch-alias": {
  10286. "dev-main": "3.4-dev"
  10287. },
  10288. "thanks": {
  10289. "name": "symfony/contracts",
  10290. "url": "https://github.com/symfony/contracts"
  10291. }
  10292. },
  10293. "autoload": {
  10294. "files": [
  10295. "function.php"
  10296. ]
  10297. },
  10298. "notification-url": "https://packagist.org/downloads/",
  10299. "license": [
  10300. "MIT"
  10301. ],
  10302. "authors": [
  10303. {
  10304. "name": "Nicolas Grekas",
  10305. "email": "p@tchwork.com"
  10306. },
  10307. {
  10308. "name": "Symfony Community",
  10309. "homepage": "https://symfony.com/contributors"
  10310. }
  10311. ],
  10312. "description": "A generic function and convention to trigger deprecation notices",
  10313. "homepage": "https://symfony.com",
  10314. "support": {
  10315. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.3.0"
  10316. },
  10317. "funding": [
  10318. {
  10319. "url": "https://symfony.com/sponsor",
  10320. "type": "custom"
  10321. },
  10322. {
  10323. "url": "https://github.com/fabpot",
  10324. "type": "github"
  10325. },
  10326. {
  10327. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10328. "type": "tidelift"
  10329. }
  10330. ],
  10331. "time": "2023-05-23T14:45:45+00:00"
  10332. },
  10333. {
  10334. "name": "symfony/error-handler",
  10335. "version": "v6.3.5",
  10336. "source": {
  10337. "type": "git",
  10338. "url": "https://github.com/symfony/error-handler.git",
  10339. "reference": "1f69476b64fb47105c06beef757766c376b548c4"
  10340. },
  10341. "dist": {
  10342. "type": "zip",
  10343. "url": "https://api.github.com/repos/symfony/error-handler/zipball/1f69476b64fb47105c06beef757766c376b548c4",
  10344. "reference": "1f69476b64fb47105c06beef757766c376b548c4",
  10345. "shasum": ""
  10346. },
  10347. "require": {
  10348. "php": ">=8.1",
  10349. "psr/log": "^1|^2|^3",
  10350. "symfony/var-dumper": "^5.4|^6.0"
  10351. },
  10352. "conflict": {
  10353. "symfony/deprecation-contracts": "<2.5"
  10354. },
  10355. "require-dev": {
  10356. "symfony/deprecation-contracts": "^2.5|^3",
  10357. "symfony/http-kernel": "^5.4|^6.0",
  10358. "symfony/serializer": "^5.4|^6.0"
  10359. },
  10360. "bin": [
  10361. "Resources/bin/patch-type-declarations"
  10362. ],
  10363. "type": "library",
  10364. "autoload": {
  10365. "psr-4": {
  10366. "Symfony\\Component\\ErrorHandler\\": ""
  10367. },
  10368. "exclude-from-classmap": [
  10369. "/Tests/"
  10370. ]
  10371. },
  10372. "notification-url": "https://packagist.org/downloads/",
  10373. "license": [
  10374. "MIT"
  10375. ],
  10376. "authors": [
  10377. {
  10378. "name": "Fabien Potencier",
  10379. "email": "fabien@symfony.com"
  10380. },
  10381. {
  10382. "name": "Symfony Community",
  10383. "homepage": "https://symfony.com/contributors"
  10384. }
  10385. ],
  10386. "description": "Provides tools to manage errors and ease debugging PHP code",
  10387. "homepage": "https://symfony.com",
  10388. "support": {
  10389. "source": "https://github.com/symfony/error-handler/tree/v6.3.5"
  10390. },
  10391. "funding": [
  10392. {
  10393. "url": "https://symfony.com/sponsor",
  10394. "type": "custom"
  10395. },
  10396. {
  10397. "url": "https://github.com/fabpot",
  10398. "type": "github"
  10399. },
  10400. {
  10401. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10402. "type": "tidelift"
  10403. }
  10404. ],
  10405. "time": "2023-09-12T06:57:20+00:00"
  10406. },
  10407. {
  10408. "name": "symfony/event-dispatcher",
  10409. "version": "v6.3.2",
  10410. "source": {
  10411. "type": "git",
  10412. "url": "https://github.com/symfony/event-dispatcher.git",
  10413. "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e"
  10414. },
  10415. "dist": {
  10416. "type": "zip",
  10417. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/adb01fe097a4ee930db9258a3cc906b5beb5cf2e",
  10418. "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e",
  10419. "shasum": ""
  10420. },
  10421. "require": {
  10422. "php": ">=8.1",
  10423. "symfony/event-dispatcher-contracts": "^2.5|^3"
  10424. },
  10425. "conflict": {
  10426. "symfony/dependency-injection": "<5.4",
  10427. "symfony/service-contracts": "<2.5"
  10428. },
  10429. "provide": {
  10430. "psr/event-dispatcher-implementation": "1.0",
  10431. "symfony/event-dispatcher-implementation": "2.0|3.0"
  10432. },
  10433. "require-dev": {
  10434. "psr/log": "^1|^2|^3",
  10435. "symfony/config": "^5.4|^6.0",
  10436. "symfony/dependency-injection": "^5.4|^6.0",
  10437. "symfony/error-handler": "^5.4|^6.0",
  10438. "symfony/expression-language": "^5.4|^6.0",
  10439. "symfony/http-foundation": "^5.4|^6.0",
  10440. "symfony/service-contracts": "^2.5|^3",
  10441. "symfony/stopwatch": "^5.4|^6.0"
  10442. },
  10443. "type": "library",
  10444. "autoload": {
  10445. "psr-4": {
  10446. "Symfony\\Component\\EventDispatcher\\": ""
  10447. },
  10448. "exclude-from-classmap": [
  10449. "/Tests/"
  10450. ]
  10451. },
  10452. "notification-url": "https://packagist.org/downloads/",
  10453. "license": [
  10454. "MIT"
  10455. ],
  10456. "authors": [
  10457. {
  10458. "name": "Fabien Potencier",
  10459. "email": "fabien@symfony.com"
  10460. },
  10461. {
  10462. "name": "Symfony Community",
  10463. "homepage": "https://symfony.com/contributors"
  10464. }
  10465. ],
  10466. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  10467. "homepage": "https://symfony.com",
  10468. "support": {
  10469. "source": "https://github.com/symfony/event-dispatcher/tree/v6.3.2"
  10470. },
  10471. "funding": [
  10472. {
  10473. "url": "https://symfony.com/sponsor",
  10474. "type": "custom"
  10475. },
  10476. {
  10477. "url": "https://github.com/fabpot",
  10478. "type": "github"
  10479. },
  10480. {
  10481. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10482. "type": "tidelift"
  10483. }
  10484. ],
  10485. "time": "2023-07-06T06:56:43+00:00"
  10486. },
  10487. {
  10488. "name": "symfony/event-dispatcher-contracts",
  10489. "version": "v3.3.0",
  10490. "source": {
  10491. "type": "git",
  10492. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10493. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  10494. },
  10495. "dist": {
  10496. "type": "zip",
  10497. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  10498. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  10499. "shasum": ""
  10500. },
  10501. "require": {
  10502. "php": ">=8.1",
  10503. "psr/event-dispatcher": "^1"
  10504. },
  10505. "type": "library",
  10506. "extra": {
  10507. "branch-alias": {
  10508. "dev-main": "3.4-dev"
  10509. },
  10510. "thanks": {
  10511. "name": "symfony/contracts",
  10512. "url": "https://github.com/symfony/contracts"
  10513. }
  10514. },
  10515. "autoload": {
  10516. "psr-4": {
  10517. "Symfony\\Contracts\\EventDispatcher\\": ""
  10518. }
  10519. },
  10520. "notification-url": "https://packagist.org/downloads/",
  10521. "license": [
  10522. "MIT"
  10523. ],
  10524. "authors": [
  10525. {
  10526. "name": "Nicolas Grekas",
  10527. "email": "p@tchwork.com"
  10528. },
  10529. {
  10530. "name": "Symfony Community",
  10531. "homepage": "https://symfony.com/contributors"
  10532. }
  10533. ],
  10534. "description": "Generic abstractions related to dispatching event",
  10535. "homepage": "https://symfony.com",
  10536. "keywords": [
  10537. "abstractions",
  10538. "contracts",
  10539. "decoupling",
  10540. "interfaces",
  10541. "interoperability",
  10542. "standards"
  10543. ],
  10544. "support": {
  10545. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.3.0"
  10546. },
  10547. "funding": [
  10548. {
  10549. "url": "https://symfony.com/sponsor",
  10550. "type": "custom"
  10551. },
  10552. {
  10553. "url": "https://github.com/fabpot",
  10554. "type": "github"
  10555. },
  10556. {
  10557. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10558. "type": "tidelift"
  10559. }
  10560. ],
  10561. "time": "2023-05-23T14:45:45+00:00"
  10562. },
  10563. {
  10564. "name": "symfony/filesystem",
  10565. "version": "v6.3.1",
  10566. "source": {
  10567. "type": "git",
  10568. "url": "https://github.com/symfony/filesystem.git",
  10569. "reference": "edd36776956f2a6fcf577edb5b05eb0e3bdc52ae"
  10570. },
  10571. "dist": {
  10572. "type": "zip",
  10573. "url": "https://api.github.com/repos/symfony/filesystem/zipball/edd36776956f2a6fcf577edb5b05eb0e3bdc52ae",
  10574. "reference": "edd36776956f2a6fcf577edb5b05eb0e3bdc52ae",
  10575. "shasum": ""
  10576. },
  10577. "require": {
  10578. "php": ">=8.1",
  10579. "symfony/polyfill-ctype": "~1.8",
  10580. "symfony/polyfill-mbstring": "~1.8"
  10581. },
  10582. "type": "library",
  10583. "autoload": {
  10584. "psr-4": {
  10585. "Symfony\\Component\\Filesystem\\": ""
  10586. },
  10587. "exclude-from-classmap": [
  10588. "/Tests/"
  10589. ]
  10590. },
  10591. "notification-url": "https://packagist.org/downloads/",
  10592. "license": [
  10593. "MIT"
  10594. ],
  10595. "authors": [
  10596. {
  10597. "name": "Fabien Potencier",
  10598. "email": "fabien@symfony.com"
  10599. },
  10600. {
  10601. "name": "Symfony Community",
  10602. "homepage": "https://symfony.com/contributors"
  10603. }
  10604. ],
  10605. "description": "Provides basic utilities for the filesystem",
  10606. "homepage": "https://symfony.com",
  10607. "support": {
  10608. "source": "https://github.com/symfony/filesystem/tree/v6.3.1"
  10609. },
  10610. "funding": [
  10611. {
  10612. "url": "https://symfony.com/sponsor",
  10613. "type": "custom"
  10614. },
  10615. {
  10616. "url": "https://github.com/fabpot",
  10617. "type": "github"
  10618. },
  10619. {
  10620. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10621. "type": "tidelift"
  10622. }
  10623. ],
  10624. "time": "2023-06-01T08:30:39+00:00"
  10625. },
  10626. {
  10627. "name": "symfony/finder",
  10628. "version": "v6.3.5",
  10629. "source": {
  10630. "type": "git",
  10631. "url": "https://github.com/symfony/finder.git",
  10632. "reference": "a1b31d88c0e998168ca7792f222cbecee47428c4"
  10633. },
  10634. "dist": {
  10635. "type": "zip",
  10636. "url": "https://api.github.com/repos/symfony/finder/zipball/a1b31d88c0e998168ca7792f222cbecee47428c4",
  10637. "reference": "a1b31d88c0e998168ca7792f222cbecee47428c4",
  10638. "shasum": ""
  10639. },
  10640. "require": {
  10641. "php": ">=8.1"
  10642. },
  10643. "require-dev": {
  10644. "symfony/filesystem": "^6.0"
  10645. },
  10646. "type": "library",
  10647. "autoload": {
  10648. "psr-4": {
  10649. "Symfony\\Component\\Finder\\": ""
  10650. },
  10651. "exclude-from-classmap": [
  10652. "/Tests/"
  10653. ]
  10654. },
  10655. "notification-url": "https://packagist.org/downloads/",
  10656. "license": [
  10657. "MIT"
  10658. ],
  10659. "authors": [
  10660. {
  10661. "name": "Fabien Potencier",
  10662. "email": "fabien@symfony.com"
  10663. },
  10664. {
  10665. "name": "Symfony Community",
  10666. "homepage": "https://symfony.com/contributors"
  10667. }
  10668. ],
  10669. "description": "Finds files and directories via an intuitive fluent interface",
  10670. "homepage": "https://symfony.com",
  10671. "support": {
  10672. "source": "https://github.com/symfony/finder/tree/v6.3.5"
  10673. },
  10674. "funding": [
  10675. {
  10676. "url": "https://symfony.com/sponsor",
  10677. "type": "custom"
  10678. },
  10679. {
  10680. "url": "https://github.com/fabpot",
  10681. "type": "github"
  10682. },
  10683. {
  10684. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10685. "type": "tidelift"
  10686. }
  10687. ],
  10688. "time": "2023-09-26T12:56:25+00:00"
  10689. },
  10690. {
  10691. "name": "symfony/http-foundation",
  10692. "version": "v6.3.8",
  10693. "source": {
  10694. "type": "git",
  10695. "url": "https://github.com/symfony/http-foundation.git",
  10696. "reference": "ce332676de1912c4389222987193c3ef38033df6"
  10697. },
  10698. "dist": {
  10699. "type": "zip",
  10700. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ce332676de1912c4389222987193c3ef38033df6",
  10701. "reference": "ce332676de1912c4389222987193c3ef38033df6",
  10702. "shasum": ""
  10703. },
  10704. "require": {
  10705. "php": ">=8.1",
  10706. "symfony/deprecation-contracts": "^2.5|^3",
  10707. "symfony/polyfill-mbstring": "~1.1",
  10708. "symfony/polyfill-php83": "^1.27"
  10709. },
  10710. "conflict": {
  10711. "symfony/cache": "<6.3"
  10712. },
  10713. "require-dev": {
  10714. "doctrine/dbal": "^2.13.1|^3|^4",
  10715. "predis/predis": "^1.1|^2.0",
  10716. "symfony/cache": "^6.3",
  10717. "symfony/dependency-injection": "^5.4|^6.0",
  10718. "symfony/expression-language": "^5.4|^6.0",
  10719. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  10720. "symfony/mime": "^5.4|^6.0",
  10721. "symfony/rate-limiter": "^5.2|^6.0"
  10722. },
  10723. "type": "library",
  10724. "autoload": {
  10725. "psr-4": {
  10726. "Symfony\\Component\\HttpFoundation\\": ""
  10727. },
  10728. "exclude-from-classmap": [
  10729. "/Tests/"
  10730. ]
  10731. },
  10732. "notification-url": "https://packagist.org/downloads/",
  10733. "license": [
  10734. "MIT"
  10735. ],
  10736. "authors": [
  10737. {
  10738. "name": "Fabien Potencier",
  10739. "email": "fabien@symfony.com"
  10740. },
  10741. {
  10742. "name": "Symfony Community",
  10743. "homepage": "https://symfony.com/contributors"
  10744. }
  10745. ],
  10746. "description": "Defines an object-oriented layer for the HTTP specification",
  10747. "homepage": "https://symfony.com",
  10748. "support": {
  10749. "source": "https://github.com/symfony/http-foundation/tree/v6.3.8"
  10750. },
  10751. "funding": [
  10752. {
  10753. "url": "https://symfony.com/sponsor",
  10754. "type": "custom"
  10755. },
  10756. {
  10757. "url": "https://github.com/fabpot",
  10758. "type": "github"
  10759. },
  10760. {
  10761. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10762. "type": "tidelift"
  10763. }
  10764. ],
  10765. "time": "2023-11-07T10:17:15+00:00"
  10766. },
  10767. {
  10768. "name": "symfony/http-kernel",
  10769. "version": "v6.3.8",
  10770. "source": {
  10771. "type": "git",
  10772. "url": "https://github.com/symfony/http-kernel.git",
  10773. "reference": "929202375ccf44a309c34aeca8305408442ebcc1"
  10774. },
  10775. "dist": {
  10776. "type": "zip",
  10777. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/929202375ccf44a309c34aeca8305408442ebcc1",
  10778. "reference": "929202375ccf44a309c34aeca8305408442ebcc1",
  10779. "shasum": ""
  10780. },
  10781. "require": {
  10782. "php": ">=8.1",
  10783. "psr/log": "^1|^2|^3",
  10784. "symfony/deprecation-contracts": "^2.5|^3",
  10785. "symfony/error-handler": "^6.3",
  10786. "symfony/event-dispatcher": "^5.4|^6.0",
  10787. "symfony/http-foundation": "^6.3.4",
  10788. "symfony/polyfill-ctype": "^1.8"
  10789. },
  10790. "conflict": {
  10791. "symfony/browser-kit": "<5.4",
  10792. "symfony/cache": "<5.4",
  10793. "symfony/config": "<6.1",
  10794. "symfony/console": "<5.4",
  10795. "symfony/dependency-injection": "<6.3.4",
  10796. "symfony/doctrine-bridge": "<5.4",
  10797. "symfony/form": "<5.4",
  10798. "symfony/http-client": "<5.4",
  10799. "symfony/http-client-contracts": "<2.5",
  10800. "symfony/mailer": "<5.4",
  10801. "symfony/messenger": "<5.4",
  10802. "symfony/translation": "<5.4",
  10803. "symfony/translation-contracts": "<2.5",
  10804. "symfony/twig-bridge": "<5.4",
  10805. "symfony/validator": "<5.4",
  10806. "symfony/var-dumper": "<6.3",
  10807. "twig/twig": "<2.13"
  10808. },
  10809. "provide": {
  10810. "psr/log-implementation": "1.0|2.0|3.0"
  10811. },
  10812. "require-dev": {
  10813. "psr/cache": "^1.0|^2.0|^3.0",
  10814. "symfony/browser-kit": "^5.4|^6.0",
  10815. "symfony/clock": "^6.2",
  10816. "symfony/config": "^6.1",
  10817. "symfony/console": "^5.4|^6.0",
  10818. "symfony/css-selector": "^5.4|^6.0",
  10819. "symfony/dependency-injection": "^6.3.4",
  10820. "symfony/dom-crawler": "^5.4|^6.0",
  10821. "symfony/expression-language": "^5.4|^6.0",
  10822. "symfony/finder": "^5.4|^6.0",
  10823. "symfony/http-client-contracts": "^2.5|^3",
  10824. "symfony/process": "^5.4|^6.0",
  10825. "symfony/property-access": "^5.4.5|^6.0.5",
  10826. "symfony/routing": "^5.4|^6.0",
  10827. "symfony/serializer": "^6.3",
  10828. "symfony/stopwatch": "^5.4|^6.0",
  10829. "symfony/translation": "^5.4|^6.0",
  10830. "symfony/translation-contracts": "^2.5|^3",
  10831. "symfony/uid": "^5.4|^6.0",
  10832. "symfony/validator": "^6.3",
  10833. "symfony/var-exporter": "^6.2",
  10834. "twig/twig": "^2.13|^3.0.4"
  10835. },
  10836. "type": "library",
  10837. "autoload": {
  10838. "psr-4": {
  10839. "Symfony\\Component\\HttpKernel\\": ""
  10840. },
  10841. "exclude-from-classmap": [
  10842. "/Tests/"
  10843. ]
  10844. },
  10845. "notification-url": "https://packagist.org/downloads/",
  10846. "license": [
  10847. "MIT"
  10848. ],
  10849. "authors": [
  10850. {
  10851. "name": "Fabien Potencier",
  10852. "email": "fabien@symfony.com"
  10853. },
  10854. {
  10855. "name": "Symfony Community",
  10856. "homepage": "https://symfony.com/contributors"
  10857. }
  10858. ],
  10859. "description": "Provides a structured process for converting a Request into a Response",
  10860. "homepage": "https://symfony.com",
  10861. "support": {
  10862. "source": "https://github.com/symfony/http-kernel/tree/v6.3.8"
  10863. },
  10864. "funding": [
  10865. {
  10866. "url": "https://symfony.com/sponsor",
  10867. "type": "custom"
  10868. },
  10869. {
  10870. "url": "https://github.com/fabpot",
  10871. "type": "github"
  10872. },
  10873. {
  10874. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10875. "type": "tidelift"
  10876. }
  10877. ],
  10878. "time": "2023-11-10T13:47:32+00:00"
  10879. },
  10880. {
  10881. "name": "symfony/mime",
  10882. "version": "v6.3.5",
  10883. "source": {
  10884. "type": "git",
  10885. "url": "https://github.com/symfony/mime.git",
  10886. "reference": "d5179eedf1cb2946dbd760475ebf05c251ef6a6e"
  10887. },
  10888. "dist": {
  10889. "type": "zip",
  10890. "url": "https://api.github.com/repos/symfony/mime/zipball/d5179eedf1cb2946dbd760475ebf05c251ef6a6e",
  10891. "reference": "d5179eedf1cb2946dbd760475ebf05c251ef6a6e",
  10892. "shasum": ""
  10893. },
  10894. "require": {
  10895. "php": ">=8.1",
  10896. "symfony/deprecation-contracts": "^2.5|^3",
  10897. "symfony/polyfill-intl-idn": "^1.10",
  10898. "symfony/polyfill-mbstring": "^1.0"
  10899. },
  10900. "conflict": {
  10901. "egulias/email-validator": "~3.0.0",
  10902. "phpdocumentor/reflection-docblock": "<3.2.2",
  10903. "phpdocumentor/type-resolver": "<1.4.0",
  10904. "symfony/mailer": "<5.4",
  10905. "symfony/serializer": "<6.2.13|>=6.3,<6.3.2"
  10906. },
  10907. "require-dev": {
  10908. "egulias/email-validator": "^2.1.10|^3.1|^4",
  10909. "league/html-to-markdown": "^5.0",
  10910. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  10911. "symfony/dependency-injection": "^5.4|^6.0",
  10912. "symfony/property-access": "^5.4|^6.0",
  10913. "symfony/property-info": "^5.4|^6.0",
  10914. "symfony/serializer": "~6.2.13|^6.3.2"
  10915. },
  10916. "type": "library",
  10917. "autoload": {
  10918. "psr-4": {
  10919. "Symfony\\Component\\Mime\\": ""
  10920. },
  10921. "exclude-from-classmap": [
  10922. "/Tests/"
  10923. ]
  10924. },
  10925. "notification-url": "https://packagist.org/downloads/",
  10926. "license": [
  10927. "MIT"
  10928. ],
  10929. "authors": [
  10930. {
  10931. "name": "Fabien Potencier",
  10932. "email": "fabien@symfony.com"
  10933. },
  10934. {
  10935. "name": "Symfony Community",
  10936. "homepage": "https://symfony.com/contributors"
  10937. }
  10938. ],
  10939. "description": "Allows manipulating MIME messages",
  10940. "homepage": "https://symfony.com",
  10941. "keywords": [
  10942. "mime",
  10943. "mime-type"
  10944. ],
  10945. "support": {
  10946. "source": "https://github.com/symfony/mime/tree/v6.3.5"
  10947. },
  10948. "funding": [
  10949. {
  10950. "url": "https://symfony.com/sponsor",
  10951. "type": "custom"
  10952. },
  10953. {
  10954. "url": "https://github.com/fabpot",
  10955. "type": "github"
  10956. },
  10957. {
  10958. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10959. "type": "tidelift"
  10960. }
  10961. ],
  10962. "time": "2023-09-29T06:59:36+00:00"
  10963. },
  10964. {
  10965. "name": "symfony/polyfill-ctype",
  10966. "version": "v1.27.0",
  10967. "source": {
  10968. "type": "git",
  10969. "url": "https://github.com/symfony/polyfill-ctype.git",
  10970. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  10971. },
  10972. "dist": {
  10973. "type": "zip",
  10974. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  10975. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  10976. "shasum": ""
  10977. },
  10978. "require": {
  10979. "php": ">=7.1"
  10980. },
  10981. "provide": {
  10982. "ext-ctype": "*"
  10983. },
  10984. "suggest": {
  10985. "ext-ctype": "For best performance"
  10986. },
  10987. "type": "library",
  10988. "extra": {
  10989. "branch-alias": {
  10990. "dev-main": "1.27-dev"
  10991. },
  10992. "thanks": {
  10993. "name": "symfony/polyfill",
  10994. "url": "https://github.com/symfony/polyfill"
  10995. }
  10996. },
  10997. "autoload": {
  10998. "files": [
  10999. "bootstrap.php"
  11000. ],
  11001. "psr-4": {
  11002. "Symfony\\Polyfill\\Ctype\\": ""
  11003. }
  11004. },
  11005. "notification-url": "https://packagist.org/downloads/",
  11006. "license": [
  11007. "MIT"
  11008. ],
  11009. "authors": [
  11010. {
  11011. "name": "Gert de Pagter",
  11012. "email": "BackEndTea@gmail.com"
  11013. },
  11014. {
  11015. "name": "Symfony Community",
  11016. "homepage": "https://symfony.com/contributors"
  11017. }
  11018. ],
  11019. "description": "Symfony polyfill for ctype functions",
  11020. "homepage": "https://symfony.com",
  11021. "keywords": [
  11022. "compatibility",
  11023. "ctype",
  11024. "polyfill",
  11025. "portable"
  11026. ],
  11027. "support": {
  11028. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  11029. },
  11030. "funding": [
  11031. {
  11032. "url": "https://symfony.com/sponsor",
  11033. "type": "custom"
  11034. },
  11035. {
  11036. "url": "https://github.com/fabpot",
  11037. "type": "github"
  11038. },
  11039. {
  11040. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11041. "type": "tidelift"
  11042. }
  11043. ],
  11044. "time": "2022-11-03T14:55:06+00:00"
  11045. },
  11046. {
  11047. "name": "symfony/polyfill-iconv",
  11048. "version": "v1.27.0",
  11049. "source": {
  11050. "type": "git",
  11051. "url": "https://github.com/symfony/polyfill-iconv.git",
  11052. "reference": "927013f3aac555983a5059aada98e1907d842695"
  11053. },
  11054. "dist": {
  11055. "type": "zip",
  11056. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695",
  11057. "reference": "927013f3aac555983a5059aada98e1907d842695",
  11058. "shasum": ""
  11059. },
  11060. "require": {
  11061. "php": ">=7.1"
  11062. },
  11063. "provide": {
  11064. "ext-iconv": "*"
  11065. },
  11066. "suggest": {
  11067. "ext-iconv": "For best performance"
  11068. },
  11069. "type": "library",
  11070. "extra": {
  11071. "branch-alias": {
  11072. "dev-main": "1.27-dev"
  11073. },
  11074. "thanks": {
  11075. "name": "symfony/polyfill",
  11076. "url": "https://github.com/symfony/polyfill"
  11077. }
  11078. },
  11079. "autoload": {
  11080. "files": [
  11081. "bootstrap.php"
  11082. ],
  11083. "psr-4": {
  11084. "Symfony\\Polyfill\\Iconv\\": ""
  11085. }
  11086. },
  11087. "notification-url": "https://packagist.org/downloads/",
  11088. "license": [
  11089. "MIT"
  11090. ],
  11091. "authors": [
  11092. {
  11093. "name": "Nicolas Grekas",
  11094. "email": "p@tchwork.com"
  11095. },
  11096. {
  11097. "name": "Symfony Community",
  11098. "homepage": "https://symfony.com/contributors"
  11099. }
  11100. ],
  11101. "description": "Symfony polyfill for the Iconv extension",
  11102. "homepage": "https://symfony.com",
  11103. "keywords": [
  11104. "compatibility",
  11105. "iconv",
  11106. "polyfill",
  11107. "portable",
  11108. "shim"
  11109. ],
  11110. "support": {
  11111. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0"
  11112. },
  11113. "funding": [
  11114. {
  11115. "url": "https://symfony.com/sponsor",
  11116. "type": "custom"
  11117. },
  11118. {
  11119. "url": "https://github.com/fabpot",
  11120. "type": "github"
  11121. },
  11122. {
  11123. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11124. "type": "tidelift"
  11125. }
  11126. ],
  11127. "time": "2022-11-03T14:55:06+00:00"
  11128. },
  11129. {
  11130. "name": "symfony/polyfill-intl-grapheme",
  11131. "version": "v1.27.0",
  11132. "source": {
  11133. "type": "git",
  11134. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  11135. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  11136. },
  11137. "dist": {
  11138. "type": "zip",
  11139. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  11140. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  11141. "shasum": ""
  11142. },
  11143. "require": {
  11144. "php": ">=7.1"
  11145. },
  11146. "suggest": {
  11147. "ext-intl": "For best performance"
  11148. },
  11149. "type": "library",
  11150. "extra": {
  11151. "branch-alias": {
  11152. "dev-main": "1.27-dev"
  11153. },
  11154. "thanks": {
  11155. "name": "symfony/polyfill",
  11156. "url": "https://github.com/symfony/polyfill"
  11157. }
  11158. },
  11159. "autoload": {
  11160. "files": [
  11161. "bootstrap.php"
  11162. ],
  11163. "psr-4": {
  11164. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  11165. }
  11166. },
  11167. "notification-url": "https://packagist.org/downloads/",
  11168. "license": [
  11169. "MIT"
  11170. ],
  11171. "authors": [
  11172. {
  11173. "name": "Nicolas Grekas",
  11174. "email": "p@tchwork.com"
  11175. },
  11176. {
  11177. "name": "Symfony Community",
  11178. "homepage": "https://symfony.com/contributors"
  11179. }
  11180. ],
  11181. "description": "Symfony polyfill for intl's grapheme_* functions",
  11182. "homepage": "https://symfony.com",
  11183. "keywords": [
  11184. "compatibility",
  11185. "grapheme",
  11186. "intl",
  11187. "polyfill",
  11188. "portable",
  11189. "shim"
  11190. ],
  11191. "support": {
  11192. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  11193. },
  11194. "funding": [
  11195. {
  11196. "url": "https://symfony.com/sponsor",
  11197. "type": "custom"
  11198. },
  11199. {
  11200. "url": "https://github.com/fabpot",
  11201. "type": "github"
  11202. },
  11203. {
  11204. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11205. "type": "tidelift"
  11206. }
  11207. ],
  11208. "time": "2022-11-03T14:55:06+00:00"
  11209. },
  11210. {
  11211. "name": "symfony/polyfill-intl-idn",
  11212. "version": "v1.27.0",
  11213. "source": {
  11214. "type": "git",
  11215. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  11216. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  11217. },
  11218. "dist": {
  11219. "type": "zip",
  11220. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  11221. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  11222. "shasum": ""
  11223. },
  11224. "require": {
  11225. "php": ">=7.1",
  11226. "symfony/polyfill-intl-normalizer": "^1.10",
  11227. "symfony/polyfill-php72": "^1.10"
  11228. },
  11229. "suggest": {
  11230. "ext-intl": "For best performance"
  11231. },
  11232. "type": "library",
  11233. "extra": {
  11234. "branch-alias": {
  11235. "dev-main": "1.27-dev"
  11236. },
  11237. "thanks": {
  11238. "name": "symfony/polyfill",
  11239. "url": "https://github.com/symfony/polyfill"
  11240. }
  11241. },
  11242. "autoload": {
  11243. "files": [
  11244. "bootstrap.php"
  11245. ],
  11246. "psr-4": {
  11247. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  11248. }
  11249. },
  11250. "notification-url": "https://packagist.org/downloads/",
  11251. "license": [
  11252. "MIT"
  11253. ],
  11254. "authors": [
  11255. {
  11256. "name": "Laurent Bassin",
  11257. "email": "laurent@bassin.info"
  11258. },
  11259. {
  11260. "name": "Trevor Rowbotham",
  11261. "email": "trevor.rowbotham@pm.me"
  11262. },
  11263. {
  11264. "name": "Symfony Community",
  11265. "homepage": "https://symfony.com/contributors"
  11266. }
  11267. ],
  11268. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  11269. "homepage": "https://symfony.com",
  11270. "keywords": [
  11271. "compatibility",
  11272. "idn",
  11273. "intl",
  11274. "polyfill",
  11275. "portable",
  11276. "shim"
  11277. ],
  11278. "support": {
  11279. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  11280. },
  11281. "funding": [
  11282. {
  11283. "url": "https://symfony.com/sponsor",
  11284. "type": "custom"
  11285. },
  11286. {
  11287. "url": "https://github.com/fabpot",
  11288. "type": "github"
  11289. },
  11290. {
  11291. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11292. "type": "tidelift"
  11293. }
  11294. ],
  11295. "time": "2022-11-03T14:55:06+00:00"
  11296. },
  11297. {
  11298. "name": "symfony/polyfill-intl-normalizer",
  11299. "version": "v1.27.0",
  11300. "source": {
  11301. "type": "git",
  11302. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  11303. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  11304. },
  11305. "dist": {
  11306. "type": "zip",
  11307. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  11308. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  11309. "shasum": ""
  11310. },
  11311. "require": {
  11312. "php": ">=7.1"
  11313. },
  11314. "suggest": {
  11315. "ext-intl": "For best performance"
  11316. },
  11317. "type": "library",
  11318. "extra": {
  11319. "branch-alias": {
  11320. "dev-main": "1.27-dev"
  11321. },
  11322. "thanks": {
  11323. "name": "symfony/polyfill",
  11324. "url": "https://github.com/symfony/polyfill"
  11325. }
  11326. },
  11327. "autoload": {
  11328. "files": [
  11329. "bootstrap.php"
  11330. ],
  11331. "psr-4": {
  11332. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  11333. },
  11334. "classmap": [
  11335. "Resources/stubs"
  11336. ]
  11337. },
  11338. "notification-url": "https://packagist.org/downloads/",
  11339. "license": [
  11340. "MIT"
  11341. ],
  11342. "authors": [
  11343. {
  11344. "name": "Nicolas Grekas",
  11345. "email": "p@tchwork.com"
  11346. },
  11347. {
  11348. "name": "Symfony Community",
  11349. "homepage": "https://symfony.com/contributors"
  11350. }
  11351. ],
  11352. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  11353. "homepage": "https://symfony.com",
  11354. "keywords": [
  11355. "compatibility",
  11356. "intl",
  11357. "normalizer",
  11358. "polyfill",
  11359. "portable",
  11360. "shim"
  11361. ],
  11362. "support": {
  11363. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  11364. },
  11365. "funding": [
  11366. {
  11367. "url": "https://symfony.com/sponsor",
  11368. "type": "custom"
  11369. },
  11370. {
  11371. "url": "https://github.com/fabpot",
  11372. "type": "github"
  11373. },
  11374. {
  11375. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11376. "type": "tidelift"
  11377. }
  11378. ],
  11379. "time": "2022-11-03T14:55:06+00:00"
  11380. },
  11381. {
  11382. "name": "symfony/polyfill-mbstring",
  11383. "version": "v1.27.0",
  11384. "source": {
  11385. "type": "git",
  11386. "url": "https://github.com/symfony/polyfill-mbstring.git",
  11387. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  11388. },
  11389. "dist": {
  11390. "type": "zip",
  11391. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  11392. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  11393. "shasum": ""
  11394. },
  11395. "require": {
  11396. "php": ">=7.1"
  11397. },
  11398. "provide": {
  11399. "ext-mbstring": "*"
  11400. },
  11401. "suggest": {
  11402. "ext-mbstring": "For best performance"
  11403. },
  11404. "type": "library",
  11405. "extra": {
  11406. "branch-alias": {
  11407. "dev-main": "1.27-dev"
  11408. },
  11409. "thanks": {
  11410. "name": "symfony/polyfill",
  11411. "url": "https://github.com/symfony/polyfill"
  11412. }
  11413. },
  11414. "autoload": {
  11415. "files": [
  11416. "bootstrap.php"
  11417. ],
  11418. "psr-4": {
  11419. "Symfony\\Polyfill\\Mbstring\\": ""
  11420. }
  11421. },
  11422. "notification-url": "https://packagist.org/downloads/",
  11423. "license": [
  11424. "MIT"
  11425. ],
  11426. "authors": [
  11427. {
  11428. "name": "Nicolas Grekas",
  11429. "email": "p@tchwork.com"
  11430. },
  11431. {
  11432. "name": "Symfony Community",
  11433. "homepage": "https://symfony.com/contributors"
  11434. }
  11435. ],
  11436. "description": "Symfony polyfill for the Mbstring extension",
  11437. "homepage": "https://symfony.com",
  11438. "keywords": [
  11439. "compatibility",
  11440. "mbstring",
  11441. "polyfill",
  11442. "portable",
  11443. "shim"
  11444. ],
  11445. "support": {
  11446. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  11447. },
  11448. "funding": [
  11449. {
  11450. "url": "https://symfony.com/sponsor",
  11451. "type": "custom"
  11452. },
  11453. {
  11454. "url": "https://github.com/fabpot",
  11455. "type": "github"
  11456. },
  11457. {
  11458. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11459. "type": "tidelift"
  11460. }
  11461. ],
  11462. "time": "2022-11-03T14:55:06+00:00"
  11463. },
  11464. {
  11465. "name": "symfony/polyfill-php72",
  11466. "version": "v1.28.0",
  11467. "source": {
  11468. "type": "git",
  11469. "url": "https://github.com/symfony/polyfill-php72.git",
  11470. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179"
  11471. },
  11472. "dist": {
  11473. "type": "zip",
  11474. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179",
  11475. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179",
  11476. "shasum": ""
  11477. },
  11478. "require": {
  11479. "php": ">=7.1"
  11480. },
  11481. "type": "library",
  11482. "extra": {
  11483. "branch-alias": {
  11484. "dev-main": "1.28-dev"
  11485. },
  11486. "thanks": {
  11487. "name": "symfony/polyfill",
  11488. "url": "https://github.com/symfony/polyfill"
  11489. }
  11490. },
  11491. "autoload": {
  11492. "files": [
  11493. "bootstrap.php"
  11494. ],
  11495. "psr-4": {
  11496. "Symfony\\Polyfill\\Php72\\": ""
  11497. }
  11498. },
  11499. "notification-url": "https://packagist.org/downloads/",
  11500. "license": [
  11501. "MIT"
  11502. ],
  11503. "authors": [
  11504. {
  11505. "name": "Nicolas Grekas",
  11506. "email": "p@tchwork.com"
  11507. },
  11508. {
  11509. "name": "Symfony Community",
  11510. "homepage": "https://symfony.com/contributors"
  11511. }
  11512. ],
  11513. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  11514. "homepage": "https://symfony.com",
  11515. "keywords": [
  11516. "compatibility",
  11517. "polyfill",
  11518. "portable",
  11519. "shim"
  11520. ],
  11521. "support": {
  11522. "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0"
  11523. },
  11524. "funding": [
  11525. {
  11526. "url": "https://symfony.com/sponsor",
  11527. "type": "custom"
  11528. },
  11529. {
  11530. "url": "https://github.com/fabpot",
  11531. "type": "github"
  11532. },
  11533. {
  11534. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11535. "type": "tidelift"
  11536. }
  11537. ],
  11538. "time": "2023-01-26T09:26:14+00:00"
  11539. },
  11540. {
  11541. "name": "symfony/polyfill-php80",
  11542. "version": "v1.28.0",
  11543. "source": {
  11544. "type": "git",
  11545. "url": "https://github.com/symfony/polyfill-php80.git",
  11546. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
  11547. },
  11548. "dist": {
  11549. "type": "zip",
  11550. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  11551. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  11552. "shasum": ""
  11553. },
  11554. "require": {
  11555. "php": ">=7.1"
  11556. },
  11557. "type": "library",
  11558. "extra": {
  11559. "branch-alias": {
  11560. "dev-main": "1.28-dev"
  11561. },
  11562. "thanks": {
  11563. "name": "symfony/polyfill",
  11564. "url": "https://github.com/symfony/polyfill"
  11565. }
  11566. },
  11567. "autoload": {
  11568. "files": [
  11569. "bootstrap.php"
  11570. ],
  11571. "psr-4": {
  11572. "Symfony\\Polyfill\\Php80\\": ""
  11573. },
  11574. "classmap": [
  11575. "Resources/stubs"
  11576. ]
  11577. },
  11578. "notification-url": "https://packagist.org/downloads/",
  11579. "license": [
  11580. "MIT"
  11581. ],
  11582. "authors": [
  11583. {
  11584. "name": "Ion Bazan",
  11585. "email": "ion.bazan@gmail.com"
  11586. },
  11587. {
  11588. "name": "Nicolas Grekas",
  11589. "email": "p@tchwork.com"
  11590. },
  11591. {
  11592. "name": "Symfony Community",
  11593. "homepage": "https://symfony.com/contributors"
  11594. }
  11595. ],
  11596. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  11597. "homepage": "https://symfony.com",
  11598. "keywords": [
  11599. "compatibility",
  11600. "polyfill",
  11601. "portable",
  11602. "shim"
  11603. ],
  11604. "support": {
  11605. "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
  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-01-26T09:26:14+00:00"
  11622. },
  11623. {
  11624. "name": "symfony/polyfill-php81",
  11625. "version": "v1.28.0",
  11626. "source": {
  11627. "type": "git",
  11628. "url": "https://github.com/symfony/polyfill-php81.git",
  11629. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b"
  11630. },
  11631. "dist": {
  11632. "type": "zip",
  11633. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/7581cd600fa9fd681b797d00b02f068e2f13263b",
  11634. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b",
  11635. "shasum": ""
  11636. },
  11637. "require": {
  11638. "php": ">=7.1"
  11639. },
  11640. "type": "library",
  11641. "extra": {
  11642. "branch-alias": {
  11643. "dev-main": "1.28-dev"
  11644. },
  11645. "thanks": {
  11646. "name": "symfony/polyfill",
  11647. "url": "https://github.com/symfony/polyfill"
  11648. }
  11649. },
  11650. "autoload": {
  11651. "files": [
  11652. "bootstrap.php"
  11653. ],
  11654. "psr-4": {
  11655. "Symfony\\Polyfill\\Php81\\": ""
  11656. },
  11657. "classmap": [
  11658. "Resources/stubs"
  11659. ]
  11660. },
  11661. "notification-url": "https://packagist.org/downloads/",
  11662. "license": [
  11663. "MIT"
  11664. ],
  11665. "authors": [
  11666. {
  11667. "name": "Nicolas Grekas",
  11668. "email": "p@tchwork.com"
  11669. },
  11670. {
  11671. "name": "Symfony Community",
  11672. "homepage": "https://symfony.com/contributors"
  11673. }
  11674. ],
  11675. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  11676. "homepage": "https://symfony.com",
  11677. "keywords": [
  11678. "compatibility",
  11679. "polyfill",
  11680. "portable",
  11681. "shim"
  11682. ],
  11683. "support": {
  11684. "source": "https://github.com/symfony/polyfill-php81/tree/v1.28.0"
  11685. },
  11686. "funding": [
  11687. {
  11688. "url": "https://symfony.com/sponsor",
  11689. "type": "custom"
  11690. },
  11691. {
  11692. "url": "https://github.com/fabpot",
  11693. "type": "github"
  11694. },
  11695. {
  11696. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11697. "type": "tidelift"
  11698. }
  11699. ],
  11700. "time": "2023-01-26T09:26:14+00:00"
  11701. },
  11702. {
  11703. "name": "symfony/polyfill-php83",
  11704. "version": "v1.27.0",
  11705. "source": {
  11706. "type": "git",
  11707. "url": "https://github.com/symfony/polyfill-php83.git",
  11708. "reference": "508c652ba3ccf69f8c97f251534f229791b52a57"
  11709. },
  11710. "dist": {
  11711. "type": "zip",
  11712. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/508c652ba3ccf69f8c97f251534f229791b52a57",
  11713. "reference": "508c652ba3ccf69f8c97f251534f229791b52a57",
  11714. "shasum": ""
  11715. },
  11716. "require": {
  11717. "php": ">=7.1",
  11718. "symfony/polyfill-php80": "^1.14"
  11719. },
  11720. "type": "library",
  11721. "extra": {
  11722. "branch-alias": {
  11723. "dev-main": "1.27-dev"
  11724. },
  11725. "thanks": {
  11726. "name": "symfony/polyfill",
  11727. "url": "https://github.com/symfony/polyfill"
  11728. }
  11729. },
  11730. "autoload": {
  11731. "files": [
  11732. "bootstrap.php"
  11733. ],
  11734. "psr-4": {
  11735. "Symfony\\Polyfill\\Php83\\": ""
  11736. }
  11737. },
  11738. "notification-url": "https://packagist.org/downloads/",
  11739. "license": [
  11740. "MIT"
  11741. ],
  11742. "authors": [
  11743. {
  11744. "name": "Nicolas Grekas",
  11745. "email": "p@tchwork.com"
  11746. },
  11747. {
  11748. "name": "Symfony Community",
  11749. "homepage": "https://symfony.com/contributors"
  11750. }
  11751. ],
  11752. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  11753. "homepage": "https://symfony.com",
  11754. "keywords": [
  11755. "compatibility",
  11756. "polyfill",
  11757. "portable",
  11758. "shim"
  11759. ],
  11760. "support": {
  11761. "source": "https://github.com/symfony/polyfill-php83/tree/v1.27.0"
  11762. },
  11763. "funding": [
  11764. {
  11765. "url": "https://symfony.com/sponsor",
  11766. "type": "custom"
  11767. },
  11768. {
  11769. "url": "https://github.com/fabpot",
  11770. "type": "github"
  11771. },
  11772. {
  11773. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11774. "type": "tidelift"
  11775. }
  11776. ],
  11777. "time": "2022-11-03T14:55:06+00:00"
  11778. },
  11779. {
  11780. "name": "symfony/process",
  11781. "version": "v6.3.4",
  11782. "source": {
  11783. "type": "git",
  11784. "url": "https://github.com/symfony/process.git",
  11785. "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54"
  11786. },
  11787. "dist": {
  11788. "type": "zip",
  11789. "url": "https://api.github.com/repos/symfony/process/zipball/0b5c29118f2e980d455d2e34a5659f4579847c54",
  11790. "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54",
  11791. "shasum": ""
  11792. },
  11793. "require": {
  11794. "php": ">=8.1"
  11795. },
  11796. "type": "library",
  11797. "autoload": {
  11798. "psr-4": {
  11799. "Symfony\\Component\\Process\\": ""
  11800. },
  11801. "exclude-from-classmap": [
  11802. "/Tests/"
  11803. ]
  11804. },
  11805. "notification-url": "https://packagist.org/downloads/",
  11806. "license": [
  11807. "MIT"
  11808. ],
  11809. "authors": [
  11810. {
  11811. "name": "Fabien Potencier",
  11812. "email": "fabien@symfony.com"
  11813. },
  11814. {
  11815. "name": "Symfony Community",
  11816. "homepage": "https://symfony.com/contributors"
  11817. }
  11818. ],
  11819. "description": "Executes commands in sub-processes",
  11820. "homepage": "https://symfony.com",
  11821. "support": {
  11822. "source": "https://github.com/symfony/process/tree/v6.3.4"
  11823. },
  11824. "funding": [
  11825. {
  11826. "url": "https://symfony.com/sponsor",
  11827. "type": "custom"
  11828. },
  11829. {
  11830. "url": "https://github.com/fabpot",
  11831. "type": "github"
  11832. },
  11833. {
  11834. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11835. "type": "tidelift"
  11836. }
  11837. ],
  11838. "time": "2023-08-07T10:39:22+00:00"
  11839. },
  11840. {
  11841. "name": "symfony/psr-http-message-bridge",
  11842. "version": "v2.2.0",
  11843. "source": {
  11844. "type": "git",
  11845. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  11846. "reference": "28a732c05bbad801304ad5a5c674cf2970508993"
  11847. },
  11848. "dist": {
  11849. "type": "zip",
  11850. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/28a732c05bbad801304ad5a5c674cf2970508993",
  11851. "reference": "28a732c05bbad801304ad5a5c674cf2970508993",
  11852. "shasum": ""
  11853. },
  11854. "require": {
  11855. "php": ">=7.2.5",
  11856. "psr/http-message": "^1.0 || ^2.0",
  11857. "symfony/http-foundation": "^5.4 || ^6.0"
  11858. },
  11859. "require-dev": {
  11860. "nyholm/psr7": "^1.1",
  11861. "psr/log": "^1.1 || ^2 || ^3",
  11862. "symfony/browser-kit": "^5.4 || ^6.0",
  11863. "symfony/config": "^5.4 || ^6.0",
  11864. "symfony/event-dispatcher": "^5.4 || ^6.0",
  11865. "symfony/framework-bundle": "^5.4 || ^6.0",
  11866. "symfony/http-kernel": "^5.4 || ^6.0",
  11867. "symfony/phpunit-bridge": "^6.2"
  11868. },
  11869. "suggest": {
  11870. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  11871. },
  11872. "type": "symfony-bridge",
  11873. "extra": {
  11874. "branch-alias": {
  11875. "dev-main": "2.2-dev"
  11876. }
  11877. },
  11878. "autoload": {
  11879. "psr-4": {
  11880. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  11881. },
  11882. "exclude-from-classmap": [
  11883. "/Tests/"
  11884. ]
  11885. },
  11886. "notification-url": "https://packagist.org/downloads/",
  11887. "license": [
  11888. "MIT"
  11889. ],
  11890. "authors": [
  11891. {
  11892. "name": "Fabien Potencier",
  11893. "email": "fabien@symfony.com"
  11894. },
  11895. {
  11896. "name": "Symfony Community",
  11897. "homepage": "http://symfony.com/contributors"
  11898. }
  11899. ],
  11900. "description": "PSR HTTP message bridge",
  11901. "homepage": "http://symfony.com",
  11902. "keywords": [
  11903. "http",
  11904. "http-message",
  11905. "psr-17",
  11906. "psr-7"
  11907. ],
  11908. "support": {
  11909. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  11910. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.2.0"
  11911. },
  11912. "funding": [
  11913. {
  11914. "url": "https://symfony.com/sponsor",
  11915. "type": "custom"
  11916. },
  11917. {
  11918. "url": "https://github.com/fabpot",
  11919. "type": "github"
  11920. },
  11921. {
  11922. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11923. "type": "tidelift"
  11924. }
  11925. ],
  11926. "time": "2023-04-21T08:40:19+00:00"
  11927. },
  11928. {
  11929. "name": "symfony/routing",
  11930. "version": "v6.3.5",
  11931. "source": {
  11932. "type": "git",
  11933. "url": "https://github.com/symfony/routing.git",
  11934. "reference": "82616e59acd3e3d9c916bba798326cb7796d7d31"
  11935. },
  11936. "dist": {
  11937. "type": "zip",
  11938. "url": "https://api.github.com/repos/symfony/routing/zipball/82616e59acd3e3d9c916bba798326cb7796d7d31",
  11939. "reference": "82616e59acd3e3d9c916bba798326cb7796d7d31",
  11940. "shasum": ""
  11941. },
  11942. "require": {
  11943. "php": ">=8.1",
  11944. "symfony/deprecation-contracts": "^2.5|^3"
  11945. },
  11946. "conflict": {
  11947. "doctrine/annotations": "<1.12",
  11948. "symfony/config": "<6.2",
  11949. "symfony/dependency-injection": "<5.4",
  11950. "symfony/yaml": "<5.4"
  11951. },
  11952. "require-dev": {
  11953. "doctrine/annotations": "^1.12|^2",
  11954. "psr/log": "^1|^2|^3",
  11955. "symfony/config": "^6.2",
  11956. "symfony/dependency-injection": "^5.4|^6.0",
  11957. "symfony/expression-language": "^5.4|^6.0",
  11958. "symfony/http-foundation": "^5.4|^6.0",
  11959. "symfony/yaml": "^5.4|^6.0"
  11960. },
  11961. "type": "library",
  11962. "autoload": {
  11963. "psr-4": {
  11964. "Symfony\\Component\\Routing\\": ""
  11965. },
  11966. "exclude-from-classmap": [
  11967. "/Tests/"
  11968. ]
  11969. },
  11970. "notification-url": "https://packagist.org/downloads/",
  11971. "license": [
  11972. "MIT"
  11973. ],
  11974. "authors": [
  11975. {
  11976. "name": "Fabien Potencier",
  11977. "email": "fabien@symfony.com"
  11978. },
  11979. {
  11980. "name": "Symfony Community",
  11981. "homepage": "https://symfony.com/contributors"
  11982. }
  11983. ],
  11984. "description": "Maps an HTTP request to a set of configuration variables",
  11985. "homepage": "https://symfony.com",
  11986. "keywords": [
  11987. "router",
  11988. "routing",
  11989. "uri",
  11990. "url"
  11991. ],
  11992. "support": {
  11993. "source": "https://github.com/symfony/routing/tree/v6.3.5"
  11994. },
  11995. "funding": [
  11996. {
  11997. "url": "https://symfony.com/sponsor",
  11998. "type": "custom"
  11999. },
  12000. {
  12001. "url": "https://github.com/fabpot",
  12002. "type": "github"
  12003. },
  12004. {
  12005. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12006. "type": "tidelift"
  12007. }
  12008. ],
  12009. "time": "2023-09-20T16:05:51+00:00"
  12010. },
  12011. {
  12012. "name": "symfony/serializer",
  12013. "version": "v6.3.8",
  12014. "source": {
  12015. "type": "git",
  12016. "url": "https://github.com/symfony/serializer.git",
  12017. "reference": "b3ad1515a276473f7919ac97e560017284a7c4bf"
  12018. },
  12019. "dist": {
  12020. "type": "zip",
  12021. "url": "https://api.github.com/repos/symfony/serializer/zipball/b3ad1515a276473f7919ac97e560017284a7c4bf",
  12022. "reference": "b3ad1515a276473f7919ac97e560017284a7c4bf",
  12023. "shasum": ""
  12024. },
  12025. "require": {
  12026. "php": ">=8.1",
  12027. "symfony/deprecation-contracts": "^2.5|^3",
  12028. "symfony/polyfill-ctype": "~1.8"
  12029. },
  12030. "conflict": {
  12031. "doctrine/annotations": "<1.12",
  12032. "phpdocumentor/reflection-docblock": "<3.2.2",
  12033. "phpdocumentor/type-resolver": "<1.4.0",
  12034. "symfony/dependency-injection": "<5.4",
  12035. "symfony/property-access": "<5.4",
  12036. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  12037. "symfony/uid": "<5.4",
  12038. "symfony/yaml": "<5.4"
  12039. },
  12040. "require-dev": {
  12041. "doctrine/annotations": "^1.12|^2",
  12042. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  12043. "symfony/cache": "^5.4|^6.0",
  12044. "symfony/config": "^5.4|^6.0",
  12045. "symfony/console": "^5.4|^6.0",
  12046. "symfony/dependency-injection": "^5.4|^6.0",
  12047. "symfony/error-handler": "^5.4|^6.0",
  12048. "symfony/filesystem": "^5.4|^6.0",
  12049. "symfony/form": "^5.4|^6.0",
  12050. "symfony/http-foundation": "^5.4|^6.0",
  12051. "symfony/http-kernel": "^5.4|^6.0",
  12052. "symfony/mime": "^5.4|^6.0",
  12053. "symfony/property-access": "^5.4|^6.0",
  12054. "symfony/property-info": "^5.4.24|^6.2.11",
  12055. "symfony/uid": "^5.4|^6.0",
  12056. "symfony/validator": "^5.4|^6.0",
  12057. "symfony/var-dumper": "^5.4|^6.0",
  12058. "symfony/var-exporter": "^5.4|^6.0",
  12059. "symfony/yaml": "^5.4|^6.0"
  12060. },
  12061. "type": "library",
  12062. "autoload": {
  12063. "psr-4": {
  12064. "Symfony\\Component\\Serializer\\": ""
  12065. },
  12066. "exclude-from-classmap": [
  12067. "/Tests/"
  12068. ]
  12069. },
  12070. "notification-url": "https://packagist.org/downloads/",
  12071. "license": [
  12072. "MIT"
  12073. ],
  12074. "authors": [
  12075. {
  12076. "name": "Fabien Potencier",
  12077. "email": "fabien@symfony.com"
  12078. },
  12079. {
  12080. "name": "Symfony Community",
  12081. "homepage": "https://symfony.com/contributors"
  12082. }
  12083. ],
  12084. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  12085. "homepage": "https://symfony.com",
  12086. "support": {
  12087. "source": "https://github.com/symfony/serializer/tree/v6.3.8"
  12088. },
  12089. "funding": [
  12090. {
  12091. "url": "https://symfony.com/sponsor",
  12092. "type": "custom"
  12093. },
  12094. {
  12095. "url": "https://github.com/fabpot",
  12096. "type": "github"
  12097. },
  12098. {
  12099. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12100. "type": "tidelift"
  12101. }
  12102. ],
  12103. "time": "2023-11-07T10:11:25+00:00"
  12104. },
  12105. {
  12106. "name": "symfony/service-contracts",
  12107. "version": "v3.3.0",
  12108. "source": {
  12109. "type": "git",
  12110. "url": "https://github.com/symfony/service-contracts.git",
  12111. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4"
  12112. },
  12113. "dist": {
  12114. "type": "zip",
  12115. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  12116. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  12117. "shasum": ""
  12118. },
  12119. "require": {
  12120. "php": ">=8.1",
  12121. "psr/container": "^2.0"
  12122. },
  12123. "conflict": {
  12124. "ext-psr": "<1.1|>=2"
  12125. },
  12126. "type": "library",
  12127. "extra": {
  12128. "branch-alias": {
  12129. "dev-main": "3.4-dev"
  12130. },
  12131. "thanks": {
  12132. "name": "symfony/contracts",
  12133. "url": "https://github.com/symfony/contracts"
  12134. }
  12135. },
  12136. "autoload": {
  12137. "psr-4": {
  12138. "Symfony\\Contracts\\Service\\": ""
  12139. },
  12140. "exclude-from-classmap": [
  12141. "/Test/"
  12142. ]
  12143. },
  12144. "notification-url": "https://packagist.org/downloads/",
  12145. "license": [
  12146. "MIT"
  12147. ],
  12148. "authors": [
  12149. {
  12150. "name": "Nicolas Grekas",
  12151. "email": "p@tchwork.com"
  12152. },
  12153. {
  12154. "name": "Symfony Community",
  12155. "homepage": "https://symfony.com/contributors"
  12156. }
  12157. ],
  12158. "description": "Generic abstractions related to writing services",
  12159. "homepage": "https://symfony.com",
  12160. "keywords": [
  12161. "abstractions",
  12162. "contracts",
  12163. "decoupling",
  12164. "interfaces",
  12165. "interoperability",
  12166. "standards"
  12167. ],
  12168. "support": {
  12169. "source": "https://github.com/symfony/service-contracts/tree/v3.3.0"
  12170. },
  12171. "funding": [
  12172. {
  12173. "url": "https://symfony.com/sponsor",
  12174. "type": "custom"
  12175. },
  12176. {
  12177. "url": "https://github.com/fabpot",
  12178. "type": "github"
  12179. },
  12180. {
  12181. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12182. "type": "tidelift"
  12183. }
  12184. ],
  12185. "time": "2023-05-23T14:45:45+00:00"
  12186. },
  12187. {
  12188. "name": "symfony/string",
  12189. "version": "v6.3.8",
  12190. "source": {
  12191. "type": "git",
  12192. "url": "https://github.com/symfony/string.git",
  12193. "reference": "13880a87790c76ef994c91e87efb96134522577a"
  12194. },
  12195. "dist": {
  12196. "type": "zip",
  12197. "url": "https://api.github.com/repos/symfony/string/zipball/13880a87790c76ef994c91e87efb96134522577a",
  12198. "reference": "13880a87790c76ef994c91e87efb96134522577a",
  12199. "shasum": ""
  12200. },
  12201. "require": {
  12202. "php": ">=8.1",
  12203. "symfony/polyfill-ctype": "~1.8",
  12204. "symfony/polyfill-intl-grapheme": "~1.0",
  12205. "symfony/polyfill-intl-normalizer": "~1.0",
  12206. "symfony/polyfill-mbstring": "~1.0"
  12207. },
  12208. "conflict": {
  12209. "symfony/translation-contracts": "<2.5"
  12210. },
  12211. "require-dev": {
  12212. "symfony/error-handler": "^5.4|^6.0",
  12213. "symfony/http-client": "^5.4|^6.0",
  12214. "symfony/intl": "^6.2",
  12215. "symfony/translation-contracts": "^2.5|^3.0",
  12216. "symfony/var-exporter": "^5.4|^6.0"
  12217. },
  12218. "type": "library",
  12219. "autoload": {
  12220. "files": [
  12221. "Resources/functions.php"
  12222. ],
  12223. "psr-4": {
  12224. "Symfony\\Component\\String\\": ""
  12225. },
  12226. "exclude-from-classmap": [
  12227. "/Tests/"
  12228. ]
  12229. },
  12230. "notification-url": "https://packagist.org/downloads/",
  12231. "license": [
  12232. "MIT"
  12233. ],
  12234. "authors": [
  12235. {
  12236. "name": "Nicolas Grekas",
  12237. "email": "p@tchwork.com"
  12238. },
  12239. {
  12240. "name": "Symfony Community",
  12241. "homepage": "https://symfony.com/contributors"
  12242. }
  12243. ],
  12244. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  12245. "homepage": "https://symfony.com",
  12246. "keywords": [
  12247. "grapheme",
  12248. "i18n",
  12249. "string",
  12250. "unicode",
  12251. "utf-8",
  12252. "utf8"
  12253. ],
  12254. "support": {
  12255. "source": "https://github.com/symfony/string/tree/v6.3.8"
  12256. },
  12257. "funding": [
  12258. {
  12259. "url": "https://symfony.com/sponsor",
  12260. "type": "custom"
  12261. },
  12262. {
  12263. "url": "https://github.com/fabpot",
  12264. "type": "github"
  12265. },
  12266. {
  12267. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12268. "type": "tidelift"
  12269. }
  12270. ],
  12271. "time": "2023-11-09T08:28:21+00:00"
  12272. },
  12273. {
  12274. "name": "symfony/translation-contracts",
  12275. "version": "v3.3.0",
  12276. "source": {
  12277. "type": "git",
  12278. "url": "https://github.com/symfony/translation-contracts.git",
  12279. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86"
  12280. },
  12281. "dist": {
  12282. "type": "zip",
  12283. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/02c24deb352fb0d79db5486c0c79905a85e37e86",
  12284. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86",
  12285. "shasum": ""
  12286. },
  12287. "require": {
  12288. "php": ">=8.1"
  12289. },
  12290. "type": "library",
  12291. "extra": {
  12292. "branch-alias": {
  12293. "dev-main": "3.4-dev"
  12294. },
  12295. "thanks": {
  12296. "name": "symfony/contracts",
  12297. "url": "https://github.com/symfony/contracts"
  12298. }
  12299. },
  12300. "autoload": {
  12301. "psr-4": {
  12302. "Symfony\\Contracts\\Translation\\": ""
  12303. },
  12304. "exclude-from-classmap": [
  12305. "/Test/"
  12306. ]
  12307. },
  12308. "notification-url": "https://packagist.org/downloads/",
  12309. "license": [
  12310. "MIT"
  12311. ],
  12312. "authors": [
  12313. {
  12314. "name": "Nicolas Grekas",
  12315. "email": "p@tchwork.com"
  12316. },
  12317. {
  12318. "name": "Symfony Community",
  12319. "homepage": "https://symfony.com/contributors"
  12320. }
  12321. ],
  12322. "description": "Generic abstractions related to translation",
  12323. "homepage": "https://symfony.com",
  12324. "keywords": [
  12325. "abstractions",
  12326. "contracts",
  12327. "decoupling",
  12328. "interfaces",
  12329. "interoperability",
  12330. "standards"
  12331. ],
  12332. "support": {
  12333. "source": "https://github.com/symfony/translation-contracts/tree/v3.3.0"
  12334. },
  12335. "funding": [
  12336. {
  12337. "url": "https://symfony.com/sponsor",
  12338. "type": "custom"
  12339. },
  12340. {
  12341. "url": "https://github.com/fabpot",
  12342. "type": "github"
  12343. },
  12344. {
  12345. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12346. "type": "tidelift"
  12347. }
  12348. ],
  12349. "time": "2023-05-30T17:17:10+00:00"
  12350. },
  12351. {
  12352. "name": "symfony/validator",
  12353. "version": "v6.3.8",
  12354. "source": {
  12355. "type": "git",
  12356. "url": "https://github.com/symfony/validator.git",
  12357. "reference": "f75b40e088d095db1e788b81605a76f4563cb80e"
  12358. },
  12359. "dist": {
  12360. "type": "zip",
  12361. "url": "https://api.github.com/repos/symfony/validator/zipball/f75b40e088d095db1e788b81605a76f4563cb80e",
  12362. "reference": "f75b40e088d095db1e788b81605a76f4563cb80e",
  12363. "shasum": ""
  12364. },
  12365. "require": {
  12366. "php": ">=8.1",
  12367. "symfony/deprecation-contracts": "^2.5|^3",
  12368. "symfony/polyfill-ctype": "~1.8",
  12369. "symfony/polyfill-mbstring": "~1.0",
  12370. "symfony/polyfill-php83": "^1.27",
  12371. "symfony/translation-contracts": "^2.5|^3"
  12372. },
  12373. "conflict": {
  12374. "doctrine/annotations": "<1.13",
  12375. "doctrine/lexer": "<1.1",
  12376. "symfony/dependency-injection": "<5.4",
  12377. "symfony/expression-language": "<5.4",
  12378. "symfony/http-kernel": "<5.4",
  12379. "symfony/intl": "<5.4",
  12380. "symfony/property-info": "<5.4",
  12381. "symfony/translation": "<5.4",
  12382. "symfony/yaml": "<5.4"
  12383. },
  12384. "require-dev": {
  12385. "doctrine/annotations": "^1.13|^2",
  12386. "egulias/email-validator": "^2.1.10|^3|^4",
  12387. "symfony/cache": "^5.4|^6.0",
  12388. "symfony/config": "^5.4|^6.0",
  12389. "symfony/console": "^5.4|^6.0",
  12390. "symfony/dependency-injection": "^5.4|^6.0",
  12391. "symfony/expression-language": "^5.4|^6.0",
  12392. "symfony/finder": "^5.4|^6.0",
  12393. "symfony/http-client": "^5.4|^6.0",
  12394. "symfony/http-foundation": "^5.4|^6.0",
  12395. "symfony/http-kernel": "^5.4|^6.0",
  12396. "symfony/intl": "^5.4|^6.0",
  12397. "symfony/mime": "^5.4|^6.0",
  12398. "symfony/property-access": "^5.4|^6.0",
  12399. "symfony/property-info": "^5.4|^6.0",
  12400. "symfony/translation": "^5.4|^6.0",
  12401. "symfony/yaml": "^5.4|^6.0"
  12402. },
  12403. "type": "library",
  12404. "autoload": {
  12405. "psr-4": {
  12406. "Symfony\\Component\\Validator\\": ""
  12407. },
  12408. "exclude-from-classmap": [
  12409. "/Tests/"
  12410. ]
  12411. },
  12412. "notification-url": "https://packagist.org/downloads/",
  12413. "license": [
  12414. "MIT"
  12415. ],
  12416. "authors": [
  12417. {
  12418. "name": "Fabien Potencier",
  12419. "email": "fabien@symfony.com"
  12420. },
  12421. {
  12422. "name": "Symfony Community",
  12423. "homepage": "https://symfony.com/contributors"
  12424. }
  12425. ],
  12426. "description": "Provides tools to validate values",
  12427. "homepage": "https://symfony.com",
  12428. "support": {
  12429. "source": "https://github.com/symfony/validator/tree/v6.3.8"
  12430. },
  12431. "funding": [
  12432. {
  12433. "url": "https://symfony.com/sponsor",
  12434. "type": "custom"
  12435. },
  12436. {
  12437. "url": "https://github.com/fabpot",
  12438. "type": "github"
  12439. },
  12440. {
  12441. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12442. "type": "tidelift"
  12443. }
  12444. ],
  12445. "time": "2023-11-07T10:17:15+00:00"
  12446. },
  12447. {
  12448. "name": "symfony/var-dumper",
  12449. "version": "v6.3.8",
  12450. "source": {
  12451. "type": "git",
  12452. "url": "https://github.com/symfony/var-dumper.git",
  12453. "reference": "81acabba9046550e89634876ca64bfcd3c06aa0a"
  12454. },
  12455. "dist": {
  12456. "type": "zip",
  12457. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/81acabba9046550e89634876ca64bfcd3c06aa0a",
  12458. "reference": "81acabba9046550e89634876ca64bfcd3c06aa0a",
  12459. "shasum": ""
  12460. },
  12461. "require": {
  12462. "php": ">=8.1",
  12463. "symfony/deprecation-contracts": "^2.5|^3",
  12464. "symfony/polyfill-mbstring": "~1.0"
  12465. },
  12466. "conflict": {
  12467. "symfony/console": "<5.4"
  12468. },
  12469. "require-dev": {
  12470. "ext-iconv": "*",
  12471. "symfony/console": "^5.4|^6.0",
  12472. "symfony/http-kernel": "^5.4|^6.0",
  12473. "symfony/process": "^5.4|^6.0",
  12474. "symfony/uid": "^5.4|^6.0",
  12475. "twig/twig": "^2.13|^3.0.4"
  12476. },
  12477. "bin": [
  12478. "Resources/bin/var-dump-server"
  12479. ],
  12480. "type": "library",
  12481. "autoload": {
  12482. "files": [
  12483. "Resources/functions/dump.php"
  12484. ],
  12485. "psr-4": {
  12486. "Symfony\\Component\\VarDumper\\": ""
  12487. },
  12488. "exclude-from-classmap": [
  12489. "/Tests/"
  12490. ]
  12491. },
  12492. "notification-url": "https://packagist.org/downloads/",
  12493. "license": [
  12494. "MIT"
  12495. ],
  12496. "authors": [
  12497. {
  12498. "name": "Nicolas Grekas",
  12499. "email": "p@tchwork.com"
  12500. },
  12501. {
  12502. "name": "Symfony Community",
  12503. "homepage": "https://symfony.com/contributors"
  12504. }
  12505. ],
  12506. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  12507. "homepage": "https://symfony.com",
  12508. "keywords": [
  12509. "debug",
  12510. "dump"
  12511. ],
  12512. "support": {
  12513. "source": "https://github.com/symfony/var-dumper/tree/v6.3.8"
  12514. },
  12515. "funding": [
  12516. {
  12517. "url": "https://symfony.com/sponsor",
  12518. "type": "custom"
  12519. },
  12520. {
  12521. "url": "https://github.com/fabpot",
  12522. "type": "github"
  12523. },
  12524. {
  12525. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12526. "type": "tidelift"
  12527. }
  12528. ],
  12529. "time": "2023-11-08T10:42:36+00:00"
  12530. },
  12531. {
  12532. "name": "symfony/var-exporter",
  12533. "version": "v6.3.6",
  12534. "source": {
  12535. "type": "git",
  12536. "url": "https://github.com/symfony/var-exporter.git",
  12537. "reference": "374d289c13cb989027274c86206ddc63b16a2441"
  12538. },
  12539. "dist": {
  12540. "type": "zip",
  12541. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/374d289c13cb989027274c86206ddc63b16a2441",
  12542. "reference": "374d289c13cb989027274c86206ddc63b16a2441",
  12543. "shasum": ""
  12544. },
  12545. "require": {
  12546. "php": ">=8.1"
  12547. },
  12548. "require-dev": {
  12549. "symfony/var-dumper": "^5.4|^6.0"
  12550. },
  12551. "type": "library",
  12552. "autoload": {
  12553. "psr-4": {
  12554. "Symfony\\Component\\VarExporter\\": ""
  12555. },
  12556. "exclude-from-classmap": [
  12557. "/Tests/"
  12558. ]
  12559. },
  12560. "notification-url": "https://packagist.org/downloads/",
  12561. "license": [
  12562. "MIT"
  12563. ],
  12564. "authors": [
  12565. {
  12566. "name": "Nicolas Grekas",
  12567. "email": "p@tchwork.com"
  12568. },
  12569. {
  12570. "name": "Symfony Community",
  12571. "homepage": "https://symfony.com/contributors"
  12572. }
  12573. ],
  12574. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  12575. "homepage": "https://symfony.com",
  12576. "keywords": [
  12577. "clone",
  12578. "construct",
  12579. "export",
  12580. "hydrate",
  12581. "instantiate",
  12582. "lazy-loading",
  12583. "proxy",
  12584. "serialize"
  12585. ],
  12586. "support": {
  12587. "source": "https://github.com/symfony/var-exporter/tree/v6.3.6"
  12588. },
  12589. "funding": [
  12590. {
  12591. "url": "https://symfony.com/sponsor",
  12592. "type": "custom"
  12593. },
  12594. {
  12595. "url": "https://github.com/fabpot",
  12596. "type": "github"
  12597. },
  12598. {
  12599. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12600. "type": "tidelift"
  12601. }
  12602. ],
  12603. "time": "2023-10-13T09:16:49+00:00"
  12604. },
  12605. {
  12606. "name": "symfony/yaml",
  12607. "version": "v6.3.8",
  12608. "source": {
  12609. "type": "git",
  12610. "url": "https://github.com/symfony/yaml.git",
  12611. "reference": "3493af8a8dad7fa91c77fa473ba23ecd95334a92"
  12612. },
  12613. "dist": {
  12614. "type": "zip",
  12615. "url": "https://api.github.com/repos/symfony/yaml/zipball/3493af8a8dad7fa91c77fa473ba23ecd95334a92",
  12616. "reference": "3493af8a8dad7fa91c77fa473ba23ecd95334a92",
  12617. "shasum": ""
  12618. },
  12619. "require": {
  12620. "php": ">=8.1",
  12621. "symfony/deprecation-contracts": "^2.5|^3",
  12622. "symfony/polyfill-ctype": "^1.8"
  12623. },
  12624. "conflict": {
  12625. "symfony/console": "<5.4"
  12626. },
  12627. "require-dev": {
  12628. "symfony/console": "^5.4|^6.0"
  12629. },
  12630. "bin": [
  12631. "Resources/bin/yaml-lint"
  12632. ],
  12633. "type": "library",
  12634. "autoload": {
  12635. "psr-4": {
  12636. "Symfony\\Component\\Yaml\\": ""
  12637. },
  12638. "exclude-from-classmap": [
  12639. "/Tests/"
  12640. ]
  12641. },
  12642. "notification-url": "https://packagist.org/downloads/",
  12643. "license": [
  12644. "MIT"
  12645. ],
  12646. "authors": [
  12647. {
  12648. "name": "Fabien Potencier",
  12649. "email": "fabien@symfony.com"
  12650. },
  12651. {
  12652. "name": "Symfony Community",
  12653. "homepage": "https://symfony.com/contributors"
  12654. }
  12655. ],
  12656. "description": "Loads and dumps YAML files",
  12657. "homepage": "https://symfony.com",
  12658. "support": {
  12659. "source": "https://github.com/symfony/yaml/tree/v6.3.8"
  12660. },
  12661. "funding": [
  12662. {
  12663. "url": "https://symfony.com/sponsor",
  12664. "type": "custom"
  12665. },
  12666. {
  12667. "url": "https://github.com/fabpot",
  12668. "type": "github"
  12669. },
  12670. {
  12671. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12672. "type": "tidelift"
  12673. }
  12674. ],
  12675. "time": "2023-11-06T10:58:05+00:00"
  12676. },
  12677. {
  12678. "name": "twig/twig",
  12679. "version": "v3.6.1",
  12680. "source": {
  12681. "type": "git",
  12682. "url": "https://github.com/twigphp/Twig.git",
  12683. "reference": "7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd"
  12684. },
  12685. "dist": {
  12686. "type": "zip",
  12687. "url": "https://api.github.com/repos/twigphp/Twig/zipball/7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd",
  12688. "reference": "7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd",
  12689. "shasum": ""
  12690. },
  12691. "require": {
  12692. "php": ">=7.2.5",
  12693. "symfony/polyfill-ctype": "^1.8",
  12694. "symfony/polyfill-mbstring": "^1.3"
  12695. },
  12696. "require-dev": {
  12697. "psr/container": "^1.0|^2.0",
  12698. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  12699. },
  12700. "type": "library",
  12701. "autoload": {
  12702. "psr-4": {
  12703. "Twig\\": "src/"
  12704. }
  12705. },
  12706. "notification-url": "https://packagist.org/downloads/",
  12707. "license": [
  12708. "BSD-3-Clause"
  12709. ],
  12710. "authors": [
  12711. {
  12712. "name": "Fabien Potencier",
  12713. "email": "fabien@symfony.com",
  12714. "homepage": "http://fabien.potencier.org",
  12715. "role": "Lead Developer"
  12716. },
  12717. {
  12718. "name": "Twig Team",
  12719. "role": "Contributors"
  12720. },
  12721. {
  12722. "name": "Armin Ronacher",
  12723. "email": "armin.ronacher@active-4.com",
  12724. "role": "Project Founder"
  12725. }
  12726. ],
  12727. "description": "Twig, the flexible, fast, and secure template language for PHP",
  12728. "homepage": "https://twig.symfony.com",
  12729. "keywords": [
  12730. "templating"
  12731. ],
  12732. "support": {
  12733. "issues": "https://github.com/twigphp/Twig/issues",
  12734. "source": "https://github.com/twigphp/Twig/tree/v3.6.1"
  12735. },
  12736. "funding": [
  12737. {
  12738. "url": "https://github.com/fabpot",
  12739. "type": "github"
  12740. },
  12741. {
  12742. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  12743. "type": "tidelift"
  12744. }
  12745. ],
  12746. "time": "2023-06-08T12:52:13+00:00"
  12747. },
  12748. {
  12749. "name": "webflo/drupal-finder",
  12750. "version": "1.2.2",
  12751. "source": {
  12752. "type": "git",
  12753. "url": "https://github.com/webflo/drupal-finder.git",
  12754. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  12755. },
  12756. "dist": {
  12757. "type": "zip",
  12758. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  12759. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  12760. "shasum": ""
  12761. },
  12762. "require": {
  12763. "ext-json": "*"
  12764. },
  12765. "require-dev": {
  12766. "mikey179/vfsstream": "^1.6",
  12767. "phpunit/phpunit": "^4.8"
  12768. },
  12769. "type": "library",
  12770. "autoload": {
  12771. "classmap": [
  12772. "src/DrupalFinder.php"
  12773. ]
  12774. },
  12775. "notification-url": "https://packagist.org/downloads/",
  12776. "license": [
  12777. "GPL-2.0-or-later"
  12778. ],
  12779. "authors": [
  12780. {
  12781. "name": "Florian Weber",
  12782. "email": "florian@webflo.org"
  12783. }
  12784. ],
  12785. "description": "Helper class to locate a Drupal installation from a given path.",
  12786. "support": {
  12787. "issues": "https://github.com/webflo/drupal-finder/issues",
  12788. "source": "https://github.com/webflo/drupal-finder/tree/1.2.2"
  12789. },
  12790. "time": "2020-10-27T09:42:17+00:00"
  12791. },
  12792. {
  12793. "name": "wikimedia/composer-merge-plugin",
  12794. "version": "v2.1.0",
  12795. "source": {
  12796. "type": "git",
  12797. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  12798. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc"
  12799. },
  12800. "dist": {
  12801. "type": "zip",
  12802. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  12803. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  12804. "shasum": ""
  12805. },
  12806. "require": {
  12807. "composer-plugin-api": "^1.1||^2.0",
  12808. "php": ">=7.2.0"
  12809. },
  12810. "require-dev": {
  12811. "composer/composer": "^1.1||^2.0",
  12812. "ext-json": "*",
  12813. "mediawiki/mediawiki-phan-config": "0.11.1",
  12814. "php-parallel-lint/php-parallel-lint": "~1.3.1",
  12815. "phpspec/prophecy": "~1.15.0",
  12816. "phpunit/phpunit": "^8.5||^9.0",
  12817. "squizlabs/php_codesniffer": "~3.7.1"
  12818. },
  12819. "type": "composer-plugin",
  12820. "extra": {
  12821. "branch-alias": {
  12822. "dev-master": "2.x-dev"
  12823. },
  12824. "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin"
  12825. },
  12826. "autoload": {
  12827. "psr-4": {
  12828. "Wikimedia\\Composer\\Merge\\V2\\": "src/"
  12829. }
  12830. },
  12831. "notification-url": "https://packagist.org/downloads/",
  12832. "license": [
  12833. "MIT"
  12834. ],
  12835. "authors": [
  12836. {
  12837. "name": "Bryan Davis",
  12838. "email": "bd808@wikimedia.org"
  12839. }
  12840. ],
  12841. "description": "Composer plugin to merge multiple composer.json files",
  12842. "support": {
  12843. "issues": "https://github.com/wikimedia/composer-merge-plugin/issues",
  12844. "source": "https://github.com/wikimedia/composer-merge-plugin/tree/v2.1.0"
  12845. },
  12846. "time": "2023-04-15T19:07:00+00:00"
  12847. }
  12848. ],
  12849. "packages-dev": [],
  12850. "aliases": [],
  12851. "minimum-stability": "stable",
  12852. "stability-flags": {
  12853. "drupal/login_destination": 20,
  12854. "drupal/mimemail": 15,
  12855. "drupal/notify": 10,
  12856. "drupal/page_manager": 5,
  12857. "drupal/phone_number": 15,
  12858. "drupal/rules": 15,
  12859. "drupal/typed_data": 10,
  12860. "drupal/advanced_text_formatter": 5,
  12861. "drupal/bulkdelete": 20,
  12862. "drupal/config_ignore": 5,
  12863. "drupal/config_devel": 20,
  12864. "drupal/config_update": 15,
  12865. "drupal/context": 5,
  12866. "drupal/date_range_formatter": 20,
  12867. "drupal/email_registration": 5,
  12868. "drupal/entity_clone": 20,
  12869. "drupal/field_group": 20,
  12870. "drupal/filter_perms": 20,
  12871. "drupal/inline_entity_form": 5,
  12872. "drupal/linkit": 10,
  12873. "drupal/maillog": 20,
  12874. "drupal/maxlength": 10,
  12875. "drupal/menu_block": 20,
  12876. "drupal/menu_position": 20,
  12877. "drupal/path_alias_xt": 20,
  12878. "drupal/pathologic": 15,
  12879. "drupal/profile": 5,
  12880. "drupal/smtp": 10,
  12881. "drupal/synonyms": 10,
  12882. "drupal/translation_views": 15,
  12883. "drupal/ultimate_cron": 15
  12884. },
  12885. "prefer-stable": true,
  12886. "prefer-lowest": false,
  12887. "platform": [],
  12888. "platform-dev": [],
  12889. "plugin-api-version": "2.6.0"
  12890. }