composer.lock 418 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462
  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": "a2c64c27b05d5c125cf5ca43f3e5ffce",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.1.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  20. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.2|^8.0",
  25. "symfony/http-foundation": "^4|^5|^6",
  26. "symfony/http-kernel": "^4|^5|^6"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^7|^9",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.1-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/asm89/stack-cors/issues",
  61. "source": "https://github.com/asm89/stack-cors/tree/v2.1.1"
  62. },
  63. "time": "2022-01-18T09:12:03+00:00"
  64. },
  65. {
  66. "name": "chi-teck/drupal-code-generator",
  67. "version": "2.6.2",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  71. "reference": "22ed1cc02dc47814e8239de577da541e9b9bd980"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/22ed1cc02dc47814e8239de577da541e9b9bd980",
  76. "reference": "22ed1cc02dc47814e8239de577da541e9b9bd980",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "ext-json": "*",
  81. "php": ">=7.4",
  82. "psr/log": "^1.1 || ^2.0 || ^3.0",
  83. "symfony/console": "^4.4.15 || ^5.1 || ^6.0",
  84. "symfony/filesystem": "^4.4 || ^5.1 || ^6",
  85. "symfony/polyfill-php80": "^1.23",
  86. "symfony/string": "^5.1 || ^6",
  87. "twig/twig": "^2.14.11 || ^3.1"
  88. },
  89. "conflict": {
  90. "squizlabs/php_codesniffer": "<3.6"
  91. },
  92. "require-dev": {
  93. "chi-teck/drupal-coder-extension": "^1.2",
  94. "drupal/coder": "^8.3.14",
  95. "phpspec/prophecy-phpunit": "^2.0",
  96. "phpunit/phpunit": "^9.4",
  97. "squizlabs/php_codesniffer": "^3.5",
  98. "symfony/var-dumper": "^5.2 || ^6.0",
  99. "symfony/yaml": "^5.2 || ^6.0"
  100. },
  101. "bin": [
  102. "bin/dcg"
  103. ],
  104. "type": "library",
  105. "extra": {
  106. "branch-alias": {
  107. "dev-master": "2.x-dev"
  108. }
  109. },
  110. "autoload": {
  111. "psr-4": {
  112. "DrupalCodeGenerator\\": "src"
  113. }
  114. },
  115. "notification-url": "https://packagist.org/downloads/",
  116. "license": [
  117. "GPL-2.0-or-later"
  118. ],
  119. "description": "Drupal code generator",
  120. "support": {
  121. "issues": "https://github.com/Chi-teck/drupal-code-generator/issues",
  122. "source": "https://github.com/Chi-teck/drupal-code-generator/tree/2.6.2"
  123. },
  124. "time": "2022-11-11T15:34:04+00:00"
  125. },
  126. {
  127. "name": "commerceguys/addressing",
  128. "version": "v1.4.2",
  129. "source": {
  130. "type": "git",
  131. "url": "https://github.com/commerceguys/addressing.git",
  132. "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308"
  133. },
  134. "dist": {
  135. "type": "zip",
  136. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/406c7b5f0fbe4f6a64155c0fe03b1adb34d01308",
  137. "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308",
  138. "shasum": ""
  139. },
  140. "require": {
  141. "doctrine/collections": "^1.2 || ^2.0",
  142. "php": ">=7.3"
  143. },
  144. "require-dev": {
  145. "ext-json": "*",
  146. "mikey179/vfsstream": "^1.6.10",
  147. "phpunit/phpunit": "^9.5",
  148. "squizlabs/php_codesniffer": "^3.6",
  149. "symfony/validator": "^4.4 || ^5.4 || ^6.0"
  150. },
  151. "suggest": {
  152. "symfony/validator": "to validate addresses"
  153. },
  154. "type": "library",
  155. "extra": {
  156. "branch-alias": {
  157. "dev-master": "1.x-dev"
  158. }
  159. },
  160. "autoload": {
  161. "psr-4": {
  162. "CommerceGuys\\Addressing\\": "src"
  163. }
  164. },
  165. "notification-url": "https://packagist.org/downloads/",
  166. "license": [
  167. "MIT"
  168. ],
  169. "authors": [
  170. {
  171. "name": "Bojan Zivanovic"
  172. },
  173. {
  174. "name": "Damien Tournoud"
  175. }
  176. ],
  177. "description": "Addressing library powered by CLDR and Google's address data.",
  178. "keywords": [
  179. "address",
  180. "internationalization",
  181. "localization",
  182. "postal"
  183. ],
  184. "support": {
  185. "issues": "https://github.com/commerceguys/addressing/issues",
  186. "source": "https://github.com/commerceguys/addressing/tree/v1.4.2"
  187. },
  188. "time": "2023-02-15T10:11:14+00:00"
  189. },
  190. {
  191. "name": "components/highlightjs",
  192. "version": "9.7.0",
  193. "dist": {
  194. "type": "zip",
  195. "url": "https://github.com/components/highlightjs/archive/9.7.0.zip"
  196. },
  197. "type": "drupal-library"
  198. },
  199. {
  200. "name": "composer/installers",
  201. "version": "v2.2.0",
  202. "source": {
  203. "type": "git",
  204. "url": "https://github.com/composer/installers.git",
  205. "reference": "c29dc4b93137acb82734f672c37e029dfbd95b35"
  206. },
  207. "dist": {
  208. "type": "zip",
  209. "url": "https://api.github.com/repos/composer/installers/zipball/c29dc4b93137acb82734f672c37e029dfbd95b35",
  210. "reference": "c29dc4b93137acb82734f672c37e029dfbd95b35",
  211. "shasum": ""
  212. },
  213. "require": {
  214. "composer-plugin-api": "^1.0 || ^2.0",
  215. "php": "^7.2 || ^8.0"
  216. },
  217. "require-dev": {
  218. "composer/composer": "1.6.* || ^2.0",
  219. "composer/semver": "^1 || ^3",
  220. "phpstan/phpstan": "^0.12.55",
  221. "phpstan/phpstan-phpunit": "^0.12.16",
  222. "symfony/phpunit-bridge": "^5.3",
  223. "symfony/process": "^5"
  224. },
  225. "type": "composer-plugin",
  226. "extra": {
  227. "class": "Composer\\Installers\\Plugin",
  228. "branch-alias": {
  229. "dev-main": "2.x-dev"
  230. },
  231. "plugin-modifies-install-path": true
  232. },
  233. "autoload": {
  234. "psr-4": {
  235. "Composer\\Installers\\": "src/Composer/Installers"
  236. }
  237. },
  238. "notification-url": "https://packagist.org/downloads/",
  239. "license": [
  240. "MIT"
  241. ],
  242. "authors": [
  243. {
  244. "name": "Kyle Robinson Young",
  245. "email": "kyle@dontkry.com",
  246. "homepage": "https://github.com/shama"
  247. }
  248. ],
  249. "description": "A multi-framework Composer library installer",
  250. "homepage": "https://composer.github.io/installers/",
  251. "keywords": [
  252. "Dolibarr",
  253. "Eliasis",
  254. "Hurad",
  255. "ImageCMS",
  256. "Kanboard",
  257. "Lan Management System",
  258. "MODX Evo",
  259. "MantisBT",
  260. "Mautic",
  261. "Maya",
  262. "OXID",
  263. "Plentymarkets",
  264. "Porto",
  265. "RadPHP",
  266. "SMF",
  267. "Starbug",
  268. "Thelia",
  269. "Whmcs",
  270. "WolfCMS",
  271. "agl",
  272. "annotatecms",
  273. "attogram",
  274. "bitrix",
  275. "cakephp",
  276. "chef",
  277. "cockpit",
  278. "codeigniter",
  279. "concrete5",
  280. "croogo",
  281. "dokuwiki",
  282. "drupal",
  283. "eZ Platform",
  284. "elgg",
  285. "expressionengine",
  286. "fuelphp",
  287. "grav",
  288. "installer",
  289. "itop",
  290. "known",
  291. "kohana",
  292. "laravel",
  293. "lavalite",
  294. "lithium",
  295. "magento",
  296. "majima",
  297. "mako",
  298. "matomo",
  299. "mediawiki",
  300. "miaoxing",
  301. "modulework",
  302. "modx",
  303. "moodle",
  304. "osclass",
  305. "pantheon",
  306. "phpbb",
  307. "piwik",
  308. "ppi",
  309. "processwire",
  310. "puppet",
  311. "pxcms",
  312. "reindex",
  313. "roundcube",
  314. "shopware",
  315. "silverstripe",
  316. "sydes",
  317. "sylius",
  318. "tastyigniter",
  319. "wordpress",
  320. "yawik",
  321. "zend",
  322. "zikula"
  323. ],
  324. "support": {
  325. "issues": "https://github.com/composer/installers/issues",
  326. "source": "https://github.com/composer/installers/tree/v2.2.0"
  327. },
  328. "funding": [
  329. {
  330. "url": "https://packagist.com",
  331. "type": "custom"
  332. },
  333. {
  334. "url": "https://github.com/composer",
  335. "type": "github"
  336. },
  337. {
  338. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  339. "type": "tidelift"
  340. }
  341. ],
  342. "time": "2022-08-20T06:45:11+00:00"
  343. },
  344. {
  345. "name": "composer/semver",
  346. "version": "3.3.2",
  347. "source": {
  348. "type": "git",
  349. "url": "https://github.com/composer/semver.git",
  350. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9"
  351. },
  352. "dist": {
  353. "type": "zip",
  354. "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9",
  355. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9",
  356. "shasum": ""
  357. },
  358. "require": {
  359. "php": "^5.3.2 || ^7.0 || ^8.0"
  360. },
  361. "require-dev": {
  362. "phpstan/phpstan": "^1.4",
  363. "symfony/phpunit-bridge": "^4.2 || ^5"
  364. },
  365. "type": "library",
  366. "extra": {
  367. "branch-alias": {
  368. "dev-main": "3.x-dev"
  369. }
  370. },
  371. "autoload": {
  372. "psr-4": {
  373. "Composer\\Semver\\": "src"
  374. }
  375. },
  376. "notification-url": "https://packagist.org/downloads/",
  377. "license": [
  378. "MIT"
  379. ],
  380. "authors": [
  381. {
  382. "name": "Nils Adermann",
  383. "email": "naderman@naderman.de",
  384. "homepage": "http://www.naderman.de"
  385. },
  386. {
  387. "name": "Jordi Boggiano",
  388. "email": "j.boggiano@seld.be",
  389. "homepage": "http://seld.be"
  390. },
  391. {
  392. "name": "Rob Bast",
  393. "email": "rob.bast@gmail.com",
  394. "homepage": "http://robbast.nl"
  395. }
  396. ],
  397. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  398. "keywords": [
  399. "semantic",
  400. "semver",
  401. "validation",
  402. "versioning"
  403. ],
  404. "support": {
  405. "irc": "irc://irc.freenode.org/composer",
  406. "issues": "https://github.com/composer/semver/issues",
  407. "source": "https://github.com/composer/semver/tree/3.3.2"
  408. },
  409. "funding": [
  410. {
  411. "url": "https://packagist.com",
  412. "type": "custom"
  413. },
  414. {
  415. "url": "https://github.com/composer",
  416. "type": "github"
  417. },
  418. {
  419. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  420. "type": "tidelift"
  421. }
  422. ],
  423. "time": "2022-04-01T19:23:25+00:00"
  424. },
  425. {
  426. "name": "consolidation/annotated-command",
  427. "version": "4.9.1",
  428. "source": {
  429. "type": "git",
  430. "url": "https://github.com/consolidation/annotated-command.git",
  431. "reference": "e01152f698eff4cb5df3ebfe5e097ef335dbd3c9"
  432. },
  433. "dist": {
  434. "type": "zip",
  435. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/e01152f698eff4cb5df3ebfe5e097ef335dbd3c9",
  436. "reference": "e01152f698eff4cb5df3ebfe5e097ef335dbd3c9",
  437. "shasum": ""
  438. },
  439. "require": {
  440. "consolidation/output-formatters": "^4.3.1",
  441. "php": ">=7.1.3",
  442. "psr/log": "^1 || ^2 || ^3",
  443. "symfony/console": "^4.4.8 || ^5 || ^6",
  444. "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6",
  445. "symfony/finder": "^4.4.8 || ^5 || ^6"
  446. },
  447. "require-dev": {
  448. "composer-runtime-api": "^2.0",
  449. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  450. "squizlabs/php_codesniffer": "^3",
  451. "yoast/phpunit-polyfills": "^0.2.0"
  452. },
  453. "type": "library",
  454. "extra": {
  455. "branch-alias": {
  456. "dev-main": "4.x-dev"
  457. }
  458. },
  459. "autoload": {
  460. "psr-4": {
  461. "Consolidation\\AnnotatedCommand\\": "src"
  462. }
  463. },
  464. "notification-url": "https://packagist.org/downloads/",
  465. "license": [
  466. "MIT"
  467. ],
  468. "authors": [
  469. {
  470. "name": "Greg Anderson",
  471. "email": "greg.1.anderson@greenknowe.org"
  472. }
  473. ],
  474. "description": "Initialize Symfony Console commands from annotated command class methods.",
  475. "support": {
  476. "issues": "https://github.com/consolidation/annotated-command/issues",
  477. "source": "https://github.com/consolidation/annotated-command/tree/4.9.1"
  478. },
  479. "time": "2023-05-20T04:19:01+00:00"
  480. },
  481. {
  482. "name": "consolidation/config",
  483. "version": "2.1.2",
  484. "source": {
  485. "type": "git",
  486. "url": "https://github.com/consolidation/config.git",
  487. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae"
  488. },
  489. "dist": {
  490. "type": "zip",
  491. "url": "https://api.github.com/repos/consolidation/config/zipball/597f8d7fbeef801736250ec10c3e190569b1b0ae",
  492. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae",
  493. "shasum": ""
  494. },
  495. "require": {
  496. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  497. "grasmash/expander": "^2.0.1 || ^3",
  498. "php": ">=7.1.3",
  499. "symfony/event-dispatcher": "^4 || ^5 || ^6"
  500. },
  501. "require-dev": {
  502. "ext-json": "*",
  503. "phpunit/phpunit": ">=7.5.20",
  504. "squizlabs/php_codesniffer": "^3",
  505. "symfony/console": "^4 || ^5 || ^6",
  506. "symfony/yaml": "^4 || ^5 || ^6",
  507. "yoast/phpunit-polyfills": "^1"
  508. },
  509. "suggest": {
  510. "symfony/event-dispatcher": "Required to inject configuration into Command options",
  511. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  512. },
  513. "type": "library",
  514. "extra": {
  515. "branch-alias": {
  516. "dev-main": "2.x-dev"
  517. }
  518. },
  519. "autoload": {
  520. "psr-4": {
  521. "Consolidation\\Config\\": "src"
  522. }
  523. },
  524. "notification-url": "https://packagist.org/downloads/",
  525. "license": [
  526. "MIT"
  527. ],
  528. "authors": [
  529. {
  530. "name": "Greg Anderson",
  531. "email": "greg.1.anderson@greenknowe.org"
  532. }
  533. ],
  534. "description": "Provide configuration services for a commandline tool.",
  535. "support": {
  536. "issues": "https://github.com/consolidation/config/issues",
  537. "source": "https://github.com/consolidation/config/tree/2.1.2"
  538. },
  539. "time": "2022-10-06T17:48:03+00:00"
  540. },
  541. {
  542. "name": "consolidation/filter-via-dot-access-data",
  543. "version": "2.0.2",
  544. "source": {
  545. "type": "git",
  546. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  547. "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b"
  548. },
  549. "dist": {
  550. "type": "zip",
  551. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
  552. "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
  553. "shasum": ""
  554. },
  555. "require": {
  556. "dflydev/dot-access-data": "^1.1.0 || ^2.0.0 || ^3.0.0",
  557. "php": ">=7.1.3"
  558. },
  559. "require-dev": {
  560. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  561. "squizlabs/php_codesniffer": "^3",
  562. "yoast/phpunit-polyfills": "^0.2.0"
  563. },
  564. "type": "library",
  565. "extra": {
  566. "branch-alias": {
  567. "dev-main": "2.x-dev"
  568. }
  569. },
  570. "autoload": {
  571. "psr-4": {
  572. "Consolidation\\Filter\\": "src"
  573. }
  574. },
  575. "notification-url": "https://packagist.org/downloads/",
  576. "license": [
  577. "MIT"
  578. ],
  579. "authors": [
  580. {
  581. "name": "Greg Anderson",
  582. "email": "greg.1.anderson@greenknowe.org"
  583. }
  584. ],
  585. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  586. "support": {
  587. "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/2.0.2"
  588. },
  589. "time": "2021-12-30T03:56:08+00:00"
  590. },
  591. {
  592. "name": "consolidation/log",
  593. "version": "3.0.0",
  594. "source": {
  595. "type": "git",
  596. "url": "https://github.com/consolidation/log.git",
  597. "reference": "caaad9d70dae54eb49002666f000e3c607066878"
  598. },
  599. "dist": {
  600. "type": "zip",
  601. "url": "https://api.github.com/repos/consolidation/log/zipball/caaad9d70dae54eb49002666f000e3c607066878",
  602. "reference": "caaad9d70dae54eb49002666f000e3c607066878",
  603. "shasum": ""
  604. },
  605. "require": {
  606. "php": ">=8.0.0",
  607. "psr/log": "^3",
  608. "symfony/console": "^5 || ^6"
  609. },
  610. "require-dev": {
  611. "phpunit/phpunit": ">=7.5.20",
  612. "squizlabs/php_codesniffer": "^3",
  613. "yoast/phpunit-polyfills": "^0.2.0"
  614. },
  615. "type": "library",
  616. "extra": {
  617. "branch-alias": {
  618. "dev-main": "2.x-dev"
  619. }
  620. },
  621. "autoload": {
  622. "psr-4": {
  623. "Consolidation\\Log\\": "src"
  624. }
  625. },
  626. "notification-url": "https://packagist.org/downloads/",
  627. "license": [
  628. "MIT"
  629. ],
  630. "authors": [
  631. {
  632. "name": "Greg Anderson",
  633. "email": "greg.1.anderson@greenknowe.org"
  634. }
  635. ],
  636. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  637. "support": {
  638. "issues": "https://github.com/consolidation/log/issues",
  639. "source": "https://github.com/consolidation/log/tree/3.0.0"
  640. },
  641. "time": "2022-04-05T16:53:32+00:00"
  642. },
  643. {
  644. "name": "consolidation/output-formatters",
  645. "version": "4.3.2",
  646. "source": {
  647. "type": "git",
  648. "url": "https://github.com/consolidation/output-formatters.git",
  649. "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58"
  650. },
  651. "dist": {
  652. "type": "zip",
  653. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/06711568b4cd169700ff7e8075db0a9a341ceb58",
  654. "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58",
  655. "shasum": ""
  656. },
  657. "require": {
  658. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  659. "php": ">=7.1.3",
  660. "symfony/console": "^4 || ^5 || ^6",
  661. "symfony/finder": "^4 || ^5 || ^6"
  662. },
  663. "require-dev": {
  664. "php-coveralls/php-coveralls": "^2.4.2",
  665. "phpunit/phpunit": "^7 || ^8 || ^9",
  666. "squizlabs/php_codesniffer": "^3",
  667. "symfony/var-dumper": "^4 || ^5 || ^6",
  668. "symfony/yaml": "^4 || ^5 || ^6",
  669. "yoast/phpunit-polyfills": "^1"
  670. },
  671. "suggest": {
  672. "symfony/var-dumper": "For using the var_dump formatter"
  673. },
  674. "type": "library",
  675. "autoload": {
  676. "psr-4": {
  677. "Consolidation\\OutputFormatters\\": "src"
  678. }
  679. },
  680. "notification-url": "https://packagist.org/downloads/",
  681. "license": [
  682. "MIT"
  683. ],
  684. "authors": [
  685. {
  686. "name": "Greg Anderson",
  687. "email": "greg.1.anderson@greenknowe.org"
  688. }
  689. ],
  690. "description": "Format text by applying transformations provided by plug-in formatters.",
  691. "support": {
  692. "issues": "https://github.com/consolidation/output-formatters/issues",
  693. "source": "https://github.com/consolidation/output-formatters/tree/4.3.2"
  694. },
  695. "time": "2023-07-06T04:45:41+00:00"
  696. },
  697. {
  698. "name": "consolidation/robo",
  699. "version": "4.0.6",
  700. "source": {
  701. "type": "git",
  702. "url": "https://github.com/consolidation/robo.git",
  703. "reference": "55a272370940607649e5c46eb173c5c54f7c166d"
  704. },
  705. "dist": {
  706. "type": "zip",
  707. "url": "https://api.github.com/repos/consolidation/robo/zipball/55a272370940607649e5c46eb173c5c54f7c166d",
  708. "reference": "55a272370940607649e5c46eb173c5c54f7c166d",
  709. "shasum": ""
  710. },
  711. "require": {
  712. "consolidation/annotated-command": "^4.8.1",
  713. "consolidation/config": "^2.0.1",
  714. "consolidation/log": "^2.0.2 || ^3",
  715. "consolidation/output-formatters": "^4.1.2",
  716. "consolidation/self-update": "^2.0",
  717. "league/container": "^3.3.1 || ^4.0",
  718. "php": ">=8.0",
  719. "phpowermove/docblock": "^4.0",
  720. "symfony/console": "^6",
  721. "symfony/event-dispatcher": "^6",
  722. "symfony/filesystem": "^6",
  723. "symfony/finder": "^6",
  724. "symfony/process": "^6",
  725. "symfony/yaml": "^6"
  726. },
  727. "conflict": {
  728. "codegyre/robo": "*"
  729. },
  730. "require-dev": {
  731. "natxet/cssmin": "3.0.4",
  732. "patchwork/jsqueeze": "^2",
  733. "pear/archive_tar": "^1.4.4",
  734. "phpunit/phpunit": "^7.5.20 || ^8",
  735. "squizlabs/php_codesniffer": "^3.6",
  736. "yoast/phpunit-polyfills": "^0.2.0"
  737. },
  738. "suggest": {
  739. "natxet/cssmin": "For minifying CSS files in taskMinify",
  740. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  741. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.",
  742. "totten/lurkerlite": "For monitoring filesystem changes in taskWatch"
  743. },
  744. "bin": [
  745. "robo"
  746. ],
  747. "type": "library",
  748. "autoload": {
  749. "psr-4": {
  750. "Robo\\": "src"
  751. }
  752. },
  753. "notification-url": "https://packagist.org/downloads/",
  754. "license": [
  755. "MIT"
  756. ],
  757. "authors": [
  758. {
  759. "name": "Davert",
  760. "email": "davert.php@resend.cc"
  761. }
  762. ],
  763. "description": "Modern task runner",
  764. "support": {
  765. "issues": "https://github.com/consolidation/robo/issues",
  766. "source": "https://github.com/consolidation/robo/tree/4.0.6"
  767. },
  768. "time": "2023-04-30T21:49:04+00:00"
  769. },
  770. {
  771. "name": "consolidation/self-update",
  772. "version": "2.2.0",
  773. "source": {
  774. "type": "git",
  775. "url": "https://github.com/consolidation/self-update.git",
  776. "reference": "972a1016761c9b63314e040836a12795dff6953a"
  777. },
  778. "dist": {
  779. "type": "zip",
  780. "url": "https://api.github.com/repos/consolidation/self-update/zipball/972a1016761c9b63314e040836a12795dff6953a",
  781. "reference": "972a1016761c9b63314e040836a12795dff6953a",
  782. "shasum": ""
  783. },
  784. "require": {
  785. "composer/semver": "^3.2",
  786. "php": ">=5.5.0",
  787. "symfony/console": "^2.8 || ^3 || ^4 || ^5 || ^6",
  788. "symfony/filesystem": "^2.5 || ^3 || ^4 || ^5 || ^6"
  789. },
  790. "bin": [
  791. "scripts/release"
  792. ],
  793. "type": "library",
  794. "extra": {
  795. "branch-alias": {
  796. "dev-main": "2.x-dev"
  797. }
  798. },
  799. "autoload": {
  800. "psr-4": {
  801. "SelfUpdate\\": "src"
  802. }
  803. },
  804. "notification-url": "https://packagist.org/downloads/",
  805. "license": [
  806. "MIT"
  807. ],
  808. "authors": [
  809. {
  810. "name": "Alexander Menk",
  811. "email": "menk@mestrona.net"
  812. },
  813. {
  814. "name": "Greg Anderson",
  815. "email": "greg.1.anderson@greenknowe.org"
  816. }
  817. ],
  818. "description": "Provides a self:update command for Symfony Console applications.",
  819. "support": {
  820. "issues": "https://github.com/consolidation/self-update/issues",
  821. "source": "https://github.com/consolidation/self-update/tree/2.2.0"
  822. },
  823. "time": "2023-03-18T01:37:41+00:00"
  824. },
  825. {
  826. "name": "consolidation/site-alias",
  827. "version": "4.0.1",
  828. "source": {
  829. "type": "git",
  830. "url": "https://github.com/consolidation/site-alias.git",
  831. "reference": "b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5"
  832. },
  833. "dist": {
  834. "type": "zip",
  835. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5",
  836. "reference": "b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5",
  837. "shasum": ""
  838. },
  839. "require": {
  840. "consolidation/config": "^1.2.1 || ^2",
  841. "php": ">=7.4",
  842. "symfony/filesystem": "^5.4 || ^6",
  843. "symfony/finder": "^5 || ^6"
  844. },
  845. "require-dev": {
  846. "php-coveralls/php-coveralls": "^2.4.2",
  847. "phpunit/phpunit": ">=7",
  848. "squizlabs/php_codesniffer": "^3",
  849. "symfony/var-dumper": "^4",
  850. "yoast/phpunit-polyfills": "^0.2.0"
  851. },
  852. "type": "library",
  853. "extra": {
  854. "branch-alias": {
  855. "dev-main": "4.x-dev"
  856. }
  857. },
  858. "autoload": {
  859. "psr-4": {
  860. "Consolidation\\SiteAlias\\": "src"
  861. }
  862. },
  863. "notification-url": "https://packagist.org/downloads/",
  864. "license": [
  865. "MIT"
  866. ],
  867. "authors": [
  868. {
  869. "name": "Greg Anderson",
  870. "email": "greg.1.anderson@greenknowe.org"
  871. },
  872. {
  873. "name": "Moshe Weitzman",
  874. "email": "weitzman@tejasa.com"
  875. }
  876. ],
  877. "description": "Manage alias records for local and remote sites.",
  878. "support": {
  879. "issues": "https://github.com/consolidation/site-alias/issues",
  880. "source": "https://github.com/consolidation/site-alias/tree/4.0.1"
  881. },
  882. "time": "2023-04-29T17:18:10+00:00"
  883. },
  884. {
  885. "name": "consolidation/site-process",
  886. "version": "5.2.0",
  887. "source": {
  888. "type": "git",
  889. "url": "https://github.com/consolidation/site-process.git",
  890. "reference": "6c44638d7af8a8b4abe12c3180701243f480539d"
  891. },
  892. "dist": {
  893. "type": "zip",
  894. "url": "https://api.github.com/repos/consolidation/site-process/zipball/6c44638d7af8a8b4abe12c3180701243f480539d",
  895. "reference": "6c44638d7af8a8b4abe12c3180701243f480539d",
  896. "shasum": ""
  897. },
  898. "require": {
  899. "consolidation/config": "^2",
  900. "consolidation/site-alias": "^3 || ^4",
  901. "php": ">=8.0.14",
  902. "symfony/console": "^5.4 || ^6",
  903. "symfony/process": "^6"
  904. },
  905. "require-dev": {
  906. "phpunit/phpunit": "^9",
  907. "squizlabs/php_codesniffer": "^3"
  908. },
  909. "type": "library",
  910. "extra": {
  911. "branch-alias": {
  912. "dev-main": "5.x-dev"
  913. }
  914. },
  915. "autoload": {
  916. "psr-4": {
  917. "Consolidation\\SiteProcess\\": "src"
  918. }
  919. },
  920. "notification-url": "https://packagist.org/downloads/",
  921. "license": [
  922. "MIT"
  923. ],
  924. "authors": [
  925. {
  926. "name": "Greg Anderson",
  927. "email": "greg.1.anderson@greenknowe.org"
  928. },
  929. {
  930. "name": "Moshe Weitzman",
  931. "email": "weitzman@tejasa.com"
  932. }
  933. ],
  934. "description": "A thin wrapper around the Symfony Process Component that allows applications to use the Site Alias library to specify the target for a remote call.",
  935. "support": {
  936. "issues": "https://github.com/consolidation/site-process/issues",
  937. "source": "https://github.com/consolidation/site-process/tree/5.2.0"
  938. },
  939. "time": "2022-12-06T17:57:16+00:00"
  940. },
  941. {
  942. "name": "cweagans/composer-patches",
  943. "version": "1.7.3",
  944. "source": {
  945. "type": "git",
  946. "url": "https://github.com/cweagans/composer-patches.git",
  947. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db"
  948. },
  949. "dist": {
  950. "type": "zip",
  951. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  952. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  953. "shasum": ""
  954. },
  955. "require": {
  956. "composer-plugin-api": "^1.0 || ^2.0",
  957. "php": ">=5.3.0"
  958. },
  959. "require-dev": {
  960. "composer/composer": "~1.0 || ~2.0",
  961. "phpunit/phpunit": "~4.6"
  962. },
  963. "type": "composer-plugin",
  964. "extra": {
  965. "class": "cweagans\\Composer\\Patches"
  966. },
  967. "autoload": {
  968. "psr-4": {
  969. "cweagans\\Composer\\": "src"
  970. }
  971. },
  972. "notification-url": "https://packagist.org/downloads/",
  973. "license": [
  974. "BSD-3-Clause"
  975. ],
  976. "authors": [
  977. {
  978. "name": "Cameron Eagans",
  979. "email": "me@cweagans.net"
  980. }
  981. ],
  982. "description": "Provides a way to patch Composer packages.",
  983. "support": {
  984. "issues": "https://github.com/cweagans/composer-patches/issues",
  985. "source": "https://github.com/cweagans/composer-patches/tree/1.7.3"
  986. },
  987. "time": "2022-12-20T22:53:13+00:00"
  988. },
  989. {
  990. "name": "d3/d3",
  991. "version": "v3.5.17",
  992. "dist": {
  993. "type": "zip",
  994. "url": "https://github.com/d3/d3/archive/v3.5.17.zip"
  995. },
  996. "type": "drupal-library"
  997. },
  998. {
  999. "name": "dflydev/dot-access-data",
  1000. "version": "v3.0.2",
  1001. "source": {
  1002. "type": "git",
  1003. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1004. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  1005. },
  1006. "dist": {
  1007. "type": "zip",
  1008. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  1009. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  1010. "shasum": ""
  1011. },
  1012. "require": {
  1013. "php": "^7.1 || ^8.0"
  1014. },
  1015. "require-dev": {
  1016. "phpstan/phpstan": "^0.12.42",
  1017. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1018. "scrutinizer/ocular": "1.6.0",
  1019. "squizlabs/php_codesniffer": "^3.5",
  1020. "vimeo/psalm": "^4.0.0"
  1021. },
  1022. "type": "library",
  1023. "extra": {
  1024. "branch-alias": {
  1025. "dev-main": "3.x-dev"
  1026. }
  1027. },
  1028. "autoload": {
  1029. "psr-4": {
  1030. "Dflydev\\DotAccessData\\": "src/"
  1031. }
  1032. },
  1033. "notification-url": "https://packagist.org/downloads/",
  1034. "license": [
  1035. "MIT"
  1036. ],
  1037. "authors": [
  1038. {
  1039. "name": "Dragonfly Development Inc.",
  1040. "email": "info@dflydev.com",
  1041. "homepage": "http://dflydev.com"
  1042. },
  1043. {
  1044. "name": "Beau Simensen",
  1045. "email": "beau@dflydev.com",
  1046. "homepage": "http://beausimensen.com"
  1047. },
  1048. {
  1049. "name": "Carlos Frutos",
  1050. "email": "carlos@kiwing.it",
  1051. "homepage": "https://github.com/cfrutos"
  1052. },
  1053. {
  1054. "name": "Colin O'Dell",
  1055. "email": "colinodell@gmail.com",
  1056. "homepage": "https://www.colinodell.com"
  1057. }
  1058. ],
  1059. "description": "Given a deep data structure, access data by dot notation.",
  1060. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1061. "keywords": [
  1062. "access",
  1063. "data",
  1064. "dot",
  1065. "notation"
  1066. ],
  1067. "support": {
  1068. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1069. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  1070. },
  1071. "time": "2022-10-27T11:44:00+00:00"
  1072. },
  1073. {
  1074. "name": "doctrine/annotations",
  1075. "version": "1.14.3",
  1076. "source": {
  1077. "type": "git",
  1078. "url": "https://github.com/doctrine/annotations.git",
  1079. "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af"
  1080. },
  1081. "dist": {
  1082. "type": "zip",
  1083. "url": "https://api.github.com/repos/doctrine/annotations/zipball/fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af",
  1084. "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af",
  1085. "shasum": ""
  1086. },
  1087. "require": {
  1088. "doctrine/lexer": "^1 || ^2",
  1089. "ext-tokenizer": "*",
  1090. "php": "^7.1 || ^8.0",
  1091. "psr/cache": "^1 || ^2 || ^3"
  1092. },
  1093. "require-dev": {
  1094. "doctrine/cache": "^1.11 || ^2.0",
  1095. "doctrine/coding-standard": "^9 || ^10",
  1096. "phpstan/phpstan": "~1.4.10 || ^1.8.0",
  1097. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1098. "symfony/cache": "^4.4 || ^5.4 || ^6",
  1099. "vimeo/psalm": "^4.10"
  1100. },
  1101. "suggest": {
  1102. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  1103. },
  1104. "type": "library",
  1105. "autoload": {
  1106. "psr-4": {
  1107. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1108. }
  1109. },
  1110. "notification-url": "https://packagist.org/downloads/",
  1111. "license": [
  1112. "MIT"
  1113. ],
  1114. "authors": [
  1115. {
  1116. "name": "Guilherme Blanco",
  1117. "email": "guilhermeblanco@gmail.com"
  1118. },
  1119. {
  1120. "name": "Roman Borschel",
  1121. "email": "roman@code-factory.org"
  1122. },
  1123. {
  1124. "name": "Benjamin Eberlei",
  1125. "email": "kontakt@beberlei.de"
  1126. },
  1127. {
  1128. "name": "Jonathan Wage",
  1129. "email": "jonwage@gmail.com"
  1130. },
  1131. {
  1132. "name": "Johannes Schmitt",
  1133. "email": "schmittjoh@gmail.com"
  1134. }
  1135. ],
  1136. "description": "Docblock Annotations Parser",
  1137. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1138. "keywords": [
  1139. "annotations",
  1140. "docblock",
  1141. "parser"
  1142. ],
  1143. "support": {
  1144. "issues": "https://github.com/doctrine/annotations/issues",
  1145. "source": "https://github.com/doctrine/annotations/tree/1.14.3"
  1146. },
  1147. "time": "2023-02-01T09:20:38+00:00"
  1148. },
  1149. {
  1150. "name": "doctrine/collections",
  1151. "version": "2.1.4",
  1152. "source": {
  1153. "type": "git",
  1154. "url": "https://github.com/doctrine/collections.git",
  1155. "reference": "72328a11443a0de79967104ad36ba7b30bded134"
  1156. },
  1157. "dist": {
  1158. "type": "zip",
  1159. "url": "https://api.github.com/repos/doctrine/collections/zipball/72328a11443a0de79967104ad36ba7b30bded134",
  1160. "reference": "72328a11443a0de79967104ad36ba7b30bded134",
  1161. "shasum": ""
  1162. },
  1163. "require": {
  1164. "doctrine/deprecations": "^1",
  1165. "php": "^8.1"
  1166. },
  1167. "require-dev": {
  1168. "doctrine/coding-standard": "^12",
  1169. "ext-json": "*",
  1170. "phpstan/phpstan": "^1.8",
  1171. "phpstan/phpstan-phpunit": "^1.0",
  1172. "phpunit/phpunit": "^9.5",
  1173. "vimeo/psalm": "^5.11"
  1174. },
  1175. "type": "library",
  1176. "autoload": {
  1177. "psr-4": {
  1178. "Doctrine\\Common\\Collections\\": "src"
  1179. }
  1180. },
  1181. "notification-url": "https://packagist.org/downloads/",
  1182. "license": [
  1183. "MIT"
  1184. ],
  1185. "authors": [
  1186. {
  1187. "name": "Guilherme Blanco",
  1188. "email": "guilhermeblanco@gmail.com"
  1189. },
  1190. {
  1191. "name": "Roman Borschel",
  1192. "email": "roman@code-factory.org"
  1193. },
  1194. {
  1195. "name": "Benjamin Eberlei",
  1196. "email": "kontakt@beberlei.de"
  1197. },
  1198. {
  1199. "name": "Jonathan Wage",
  1200. "email": "jonwage@gmail.com"
  1201. },
  1202. {
  1203. "name": "Johannes Schmitt",
  1204. "email": "schmittjoh@gmail.com"
  1205. }
  1206. ],
  1207. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  1208. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  1209. "keywords": [
  1210. "array",
  1211. "collections",
  1212. "iterators",
  1213. "php"
  1214. ],
  1215. "support": {
  1216. "issues": "https://github.com/doctrine/collections/issues",
  1217. "source": "https://github.com/doctrine/collections/tree/2.1.4"
  1218. },
  1219. "funding": [
  1220. {
  1221. "url": "https://www.doctrine-project.org/sponsorship.html",
  1222. "type": "custom"
  1223. },
  1224. {
  1225. "url": "https://www.patreon.com/phpdoctrine",
  1226. "type": "patreon"
  1227. },
  1228. {
  1229. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  1230. "type": "tidelift"
  1231. }
  1232. ],
  1233. "time": "2023-10-03T09:22:33+00:00"
  1234. },
  1235. {
  1236. "name": "doctrine/common",
  1237. "version": "3.4.3",
  1238. "source": {
  1239. "type": "git",
  1240. "url": "https://github.com/doctrine/common.git",
  1241. "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced"
  1242. },
  1243. "dist": {
  1244. "type": "zip",
  1245. "url": "https://api.github.com/repos/doctrine/common/zipball/8b5e5650391f851ed58910b3e3d48a71062eeced",
  1246. "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced",
  1247. "shasum": ""
  1248. },
  1249. "require": {
  1250. "doctrine/persistence": "^2.0 || ^3.0",
  1251. "php": "^7.1 || ^8.0"
  1252. },
  1253. "require-dev": {
  1254. "doctrine/coding-standard": "^9.0 || ^10.0",
  1255. "doctrine/collections": "^1",
  1256. "phpstan/phpstan": "^1.4.1",
  1257. "phpstan/phpstan-phpunit": "^1",
  1258. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  1259. "squizlabs/php_codesniffer": "^3.0",
  1260. "symfony/phpunit-bridge": "^6.1",
  1261. "vimeo/psalm": "^4.4"
  1262. },
  1263. "type": "library",
  1264. "autoload": {
  1265. "psr-4": {
  1266. "Doctrine\\Common\\": "src"
  1267. }
  1268. },
  1269. "notification-url": "https://packagist.org/downloads/",
  1270. "license": [
  1271. "MIT"
  1272. ],
  1273. "authors": [
  1274. {
  1275. "name": "Guilherme Blanco",
  1276. "email": "guilhermeblanco@gmail.com"
  1277. },
  1278. {
  1279. "name": "Roman Borschel",
  1280. "email": "roman@code-factory.org"
  1281. },
  1282. {
  1283. "name": "Benjamin Eberlei",
  1284. "email": "kontakt@beberlei.de"
  1285. },
  1286. {
  1287. "name": "Jonathan Wage",
  1288. "email": "jonwage@gmail.com"
  1289. },
  1290. {
  1291. "name": "Johannes Schmitt",
  1292. "email": "schmittjoh@gmail.com"
  1293. },
  1294. {
  1295. "name": "Marco Pivetta",
  1296. "email": "ocramius@gmail.com"
  1297. }
  1298. ],
  1299. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, proxies and much more.",
  1300. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1301. "keywords": [
  1302. "common",
  1303. "doctrine",
  1304. "php"
  1305. ],
  1306. "support": {
  1307. "issues": "https://github.com/doctrine/common/issues",
  1308. "source": "https://github.com/doctrine/common/tree/3.4.3"
  1309. },
  1310. "funding": [
  1311. {
  1312. "url": "https://www.doctrine-project.org/sponsorship.html",
  1313. "type": "custom"
  1314. },
  1315. {
  1316. "url": "https://www.patreon.com/phpdoctrine",
  1317. "type": "patreon"
  1318. },
  1319. {
  1320. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1321. "type": "tidelift"
  1322. }
  1323. ],
  1324. "time": "2022-10-09T11:47:59+00:00"
  1325. },
  1326. {
  1327. "name": "doctrine/deprecations",
  1328. "version": "1.1.2",
  1329. "source": {
  1330. "type": "git",
  1331. "url": "https://github.com/doctrine/deprecations.git",
  1332. "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931"
  1333. },
  1334. "dist": {
  1335. "type": "zip",
  1336. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/4f2d4f2836e7ec4e7a8625e75c6aa916004db931",
  1337. "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931",
  1338. "shasum": ""
  1339. },
  1340. "require": {
  1341. "php": "^7.1 || ^8.0"
  1342. },
  1343. "require-dev": {
  1344. "doctrine/coding-standard": "^9",
  1345. "phpstan/phpstan": "1.4.10 || 1.10.15",
  1346. "phpstan/phpstan-phpunit": "^1.0",
  1347. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1348. "psalm/plugin-phpunit": "0.18.4",
  1349. "psr/log": "^1 || ^2 || ^3",
  1350. "vimeo/psalm": "4.30.0 || 5.12.0"
  1351. },
  1352. "suggest": {
  1353. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1354. },
  1355. "type": "library",
  1356. "autoload": {
  1357. "psr-4": {
  1358. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1359. }
  1360. },
  1361. "notification-url": "https://packagist.org/downloads/",
  1362. "license": [
  1363. "MIT"
  1364. ],
  1365. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  1366. "homepage": "https://www.doctrine-project.org/",
  1367. "support": {
  1368. "issues": "https://github.com/doctrine/deprecations/issues",
  1369. "source": "https://github.com/doctrine/deprecations/tree/1.1.2"
  1370. },
  1371. "time": "2023-09-27T20:04:15+00:00"
  1372. },
  1373. {
  1374. "name": "doctrine/event-manager",
  1375. "version": "2.0.0",
  1376. "source": {
  1377. "type": "git",
  1378. "url": "https://github.com/doctrine/event-manager.git",
  1379. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32"
  1380. },
  1381. "dist": {
  1382. "type": "zip",
  1383. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32",
  1384. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32",
  1385. "shasum": ""
  1386. },
  1387. "require": {
  1388. "php": "^8.1"
  1389. },
  1390. "conflict": {
  1391. "doctrine/common": "<2.9"
  1392. },
  1393. "require-dev": {
  1394. "doctrine/coding-standard": "^10",
  1395. "phpstan/phpstan": "^1.8.8",
  1396. "phpunit/phpunit": "^9.5",
  1397. "vimeo/psalm": "^4.28"
  1398. },
  1399. "type": "library",
  1400. "autoload": {
  1401. "psr-4": {
  1402. "Doctrine\\Common\\": "src"
  1403. }
  1404. },
  1405. "notification-url": "https://packagist.org/downloads/",
  1406. "license": [
  1407. "MIT"
  1408. ],
  1409. "authors": [
  1410. {
  1411. "name": "Guilherme Blanco",
  1412. "email": "guilhermeblanco@gmail.com"
  1413. },
  1414. {
  1415. "name": "Roman Borschel",
  1416. "email": "roman@code-factory.org"
  1417. },
  1418. {
  1419. "name": "Benjamin Eberlei",
  1420. "email": "kontakt@beberlei.de"
  1421. },
  1422. {
  1423. "name": "Jonathan Wage",
  1424. "email": "jonwage@gmail.com"
  1425. },
  1426. {
  1427. "name": "Johannes Schmitt",
  1428. "email": "schmittjoh@gmail.com"
  1429. },
  1430. {
  1431. "name": "Marco Pivetta",
  1432. "email": "ocramius@gmail.com"
  1433. }
  1434. ],
  1435. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1436. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1437. "keywords": [
  1438. "event",
  1439. "event dispatcher",
  1440. "event manager",
  1441. "event system",
  1442. "events"
  1443. ],
  1444. "support": {
  1445. "issues": "https://github.com/doctrine/event-manager/issues",
  1446. "source": "https://github.com/doctrine/event-manager/tree/2.0.0"
  1447. },
  1448. "funding": [
  1449. {
  1450. "url": "https://www.doctrine-project.org/sponsorship.html",
  1451. "type": "custom"
  1452. },
  1453. {
  1454. "url": "https://www.patreon.com/phpdoctrine",
  1455. "type": "patreon"
  1456. },
  1457. {
  1458. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1459. "type": "tidelift"
  1460. }
  1461. ],
  1462. "time": "2022-10-12T20:59:15+00:00"
  1463. },
  1464. {
  1465. "name": "doctrine/lexer",
  1466. "version": "2.1.0",
  1467. "source": {
  1468. "type": "git",
  1469. "url": "https://github.com/doctrine/lexer.git",
  1470. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124"
  1471. },
  1472. "dist": {
  1473. "type": "zip",
  1474. "url": "https://api.github.com/repos/doctrine/lexer/zipball/39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  1475. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  1476. "shasum": ""
  1477. },
  1478. "require": {
  1479. "doctrine/deprecations": "^1.0",
  1480. "php": "^7.1 || ^8.0"
  1481. },
  1482. "require-dev": {
  1483. "doctrine/coding-standard": "^9 || ^10",
  1484. "phpstan/phpstan": "^1.3",
  1485. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1486. "psalm/plugin-phpunit": "^0.18.3",
  1487. "vimeo/psalm": "^4.11 || ^5.0"
  1488. },
  1489. "type": "library",
  1490. "autoload": {
  1491. "psr-4": {
  1492. "Doctrine\\Common\\Lexer\\": "src"
  1493. }
  1494. },
  1495. "notification-url": "https://packagist.org/downloads/",
  1496. "license": [
  1497. "MIT"
  1498. ],
  1499. "authors": [
  1500. {
  1501. "name": "Guilherme Blanco",
  1502. "email": "guilhermeblanco@gmail.com"
  1503. },
  1504. {
  1505. "name": "Roman Borschel",
  1506. "email": "roman@code-factory.org"
  1507. },
  1508. {
  1509. "name": "Johannes Schmitt",
  1510. "email": "schmittjoh@gmail.com"
  1511. }
  1512. ],
  1513. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1514. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1515. "keywords": [
  1516. "annotations",
  1517. "docblock",
  1518. "lexer",
  1519. "parser",
  1520. "php"
  1521. ],
  1522. "support": {
  1523. "issues": "https://github.com/doctrine/lexer/issues",
  1524. "source": "https://github.com/doctrine/lexer/tree/2.1.0"
  1525. },
  1526. "funding": [
  1527. {
  1528. "url": "https://www.doctrine-project.org/sponsorship.html",
  1529. "type": "custom"
  1530. },
  1531. {
  1532. "url": "https://www.patreon.com/phpdoctrine",
  1533. "type": "patreon"
  1534. },
  1535. {
  1536. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1537. "type": "tidelift"
  1538. }
  1539. ],
  1540. "time": "2022-12-14T08:49:07+00:00"
  1541. },
  1542. {
  1543. "name": "doctrine/persistence",
  1544. "version": "3.2.0",
  1545. "source": {
  1546. "type": "git",
  1547. "url": "https://github.com/doctrine/persistence.git",
  1548. "reference": "63fee8c33bef740db6730eb2a750cd3da6495603"
  1549. },
  1550. "dist": {
  1551. "type": "zip",
  1552. "url": "https://api.github.com/repos/doctrine/persistence/zipball/63fee8c33bef740db6730eb2a750cd3da6495603",
  1553. "reference": "63fee8c33bef740db6730eb2a750cd3da6495603",
  1554. "shasum": ""
  1555. },
  1556. "require": {
  1557. "doctrine/event-manager": "^1 || ^2",
  1558. "php": "^7.2 || ^8.0",
  1559. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1560. },
  1561. "conflict": {
  1562. "doctrine/common": "<2.10"
  1563. },
  1564. "require-dev": {
  1565. "composer/package-versions-deprecated": "^1.11",
  1566. "doctrine/coding-standard": "^11",
  1567. "doctrine/common": "^3.0",
  1568. "phpstan/phpstan": "1.9.4",
  1569. "phpstan/phpstan-phpunit": "^1",
  1570. "phpstan/phpstan-strict-rules": "^1.1",
  1571. "phpunit/phpunit": "^8.5 || ^9.5",
  1572. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1573. "vimeo/psalm": "4.30.0 || 5.3.0"
  1574. },
  1575. "type": "library",
  1576. "autoload": {
  1577. "psr-4": {
  1578. "Doctrine\\Persistence\\": "src/Persistence"
  1579. }
  1580. },
  1581. "notification-url": "https://packagist.org/downloads/",
  1582. "license": [
  1583. "MIT"
  1584. ],
  1585. "authors": [
  1586. {
  1587. "name": "Guilherme Blanco",
  1588. "email": "guilhermeblanco@gmail.com"
  1589. },
  1590. {
  1591. "name": "Roman Borschel",
  1592. "email": "roman@code-factory.org"
  1593. },
  1594. {
  1595. "name": "Benjamin Eberlei",
  1596. "email": "kontakt@beberlei.de"
  1597. },
  1598. {
  1599. "name": "Jonathan Wage",
  1600. "email": "jonwage@gmail.com"
  1601. },
  1602. {
  1603. "name": "Johannes Schmitt",
  1604. "email": "schmittjoh@gmail.com"
  1605. },
  1606. {
  1607. "name": "Marco Pivetta",
  1608. "email": "ocramius@gmail.com"
  1609. }
  1610. ],
  1611. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1612. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1613. "keywords": [
  1614. "mapper",
  1615. "object",
  1616. "odm",
  1617. "orm",
  1618. "persistence"
  1619. ],
  1620. "support": {
  1621. "issues": "https://github.com/doctrine/persistence/issues",
  1622. "source": "https://github.com/doctrine/persistence/tree/3.2.0"
  1623. },
  1624. "funding": [
  1625. {
  1626. "url": "https://www.doctrine-project.org/sponsorship.html",
  1627. "type": "custom"
  1628. },
  1629. {
  1630. "url": "https://www.patreon.com/phpdoctrine",
  1631. "type": "patreon"
  1632. },
  1633. {
  1634. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1635. "type": "tidelift"
  1636. }
  1637. ],
  1638. "time": "2023-05-17T18:32:04+00:00"
  1639. },
  1640. {
  1641. "name": "drupal/address",
  1642. "version": "1.12.0",
  1643. "source": {
  1644. "type": "git",
  1645. "url": "https://git.drupalcode.org/project/address.git",
  1646. "reference": "8.x-1.12"
  1647. },
  1648. "dist": {
  1649. "type": "zip",
  1650. "url": "https://ftp.drupal.org/files/projects/address-8.x-1.12.zip",
  1651. "reference": "8.x-1.12",
  1652. "shasum": "67dd4699040aabf0cd6169e437706fa6a39b0b3a"
  1653. },
  1654. "require": {
  1655. "commerceguys/addressing": "^1.4.2",
  1656. "drupal/core": "^9.2 || ^10",
  1657. "php": "^7.3 || ^8.0"
  1658. },
  1659. "require-dev": {
  1660. "drupal/token": "^1.0"
  1661. },
  1662. "type": "drupal-module",
  1663. "extra": {
  1664. "drupal": {
  1665. "version": "8.x-1.12",
  1666. "datestamp": "1684710176",
  1667. "security-coverage": {
  1668. "status": "covered",
  1669. "message": "Covered by Drupal's security advisory policy"
  1670. }
  1671. }
  1672. },
  1673. "notification-url": "https://packages.drupal.org/8/downloads",
  1674. "license": [
  1675. "GPL-2.0-or-later"
  1676. ],
  1677. "authors": [
  1678. {
  1679. "name": "bojanz",
  1680. "homepage": "https://www.drupal.org/user/86106"
  1681. },
  1682. {
  1683. "name": "Centarro",
  1684. "homepage": "https://www.drupal.org/user/3661446"
  1685. },
  1686. {
  1687. "name": "dww",
  1688. "homepage": "https://www.drupal.org/user/46549"
  1689. },
  1690. {
  1691. "name": "googletorp",
  1692. "homepage": "https://www.drupal.org/user/386230"
  1693. },
  1694. {
  1695. "name": "jsacksick",
  1696. "homepage": "https://www.drupal.org/user/972218"
  1697. },
  1698. {
  1699. "name": "mglaman",
  1700. "homepage": "https://www.drupal.org/user/2416470"
  1701. },
  1702. {
  1703. "name": "rszrama",
  1704. "homepage": "https://www.drupal.org/user/49344"
  1705. }
  1706. ],
  1707. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  1708. "homepage": "http://drupal.org/project/address",
  1709. "support": {
  1710. "source": "https://git.drupalcode.org/project/address"
  1711. }
  1712. },
  1713. {
  1714. "name": "drupal/admin_toolbar",
  1715. "version": "3.4.2",
  1716. "source": {
  1717. "type": "git",
  1718. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1719. "reference": "3.4.2"
  1720. },
  1721. "dist": {
  1722. "type": "zip",
  1723. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.4.2.zip",
  1724. "reference": "3.4.2",
  1725. "shasum": "f5a008e5c73f5a11c6c8067c0ea6ebb76aa33854"
  1726. },
  1727. "require": {
  1728. "drupal/core": "^9.2 || ^10"
  1729. },
  1730. "require-dev": {
  1731. "drupal/admin_toolbar_tools": "*"
  1732. },
  1733. "type": "drupal-module",
  1734. "extra": {
  1735. "drupal": {
  1736. "version": "3.4.2",
  1737. "datestamp": "1696006195",
  1738. "security-coverage": {
  1739. "status": "covered",
  1740. "message": "Covered by Drupal's security advisory policy"
  1741. }
  1742. }
  1743. },
  1744. "notification-url": "https://packages.drupal.org/8/downloads",
  1745. "license": [
  1746. "GPL-2.0-or-later"
  1747. ],
  1748. "authors": [
  1749. {
  1750. "name": "Wilfrid Roze (eme)",
  1751. "homepage": "https://www.drupal.org/u/eme",
  1752. "role": "Maintainer"
  1753. },
  1754. {
  1755. "name": "Romain Jarraud (romainj)",
  1756. "homepage": "https://www.drupal.org/u/romainj",
  1757. "role": "Maintainer"
  1758. },
  1759. {
  1760. "name": "Adrian Cid Almaguer (adriancid)",
  1761. "homepage": "https://www.drupal.org/u/adriancid",
  1762. "email": "adriancid@gmail.com",
  1763. "role": "Maintainer"
  1764. },
  1765. {
  1766. "name": "Mohamed Anis Taktak (matio89)",
  1767. "homepage": "https://www.drupal.org/u/matio89",
  1768. "role": "Maintainer"
  1769. },
  1770. {
  1771. "name": "matio89",
  1772. "homepage": "https://www.drupal.org/user/2320090"
  1773. },
  1774. {
  1775. "name": "Musa.thomas",
  1776. "homepage": "https://www.drupal.org/user/1213824"
  1777. },
  1778. {
  1779. "name": "romainj",
  1780. "homepage": "https://www.drupal.org/user/370706"
  1781. }
  1782. ],
  1783. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1784. "homepage": "http://drupal.org/project/admin_toolbar",
  1785. "keywords": [
  1786. "Drupal",
  1787. "Toolbar"
  1788. ],
  1789. "support": {
  1790. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1791. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1792. }
  1793. },
  1794. {
  1795. "name": "drupal/adminimal_theme",
  1796. "version": "1.7.0",
  1797. "source": {
  1798. "type": "git",
  1799. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1800. "reference": "8.x-1.7"
  1801. },
  1802. "dist": {
  1803. "type": "zip",
  1804. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.7.zip",
  1805. "reference": "8.x-1.7",
  1806. "shasum": "0fe020fecab6a1f6d877f2e622fb9f916ada52bb"
  1807. },
  1808. "require": {
  1809. "drupal/core": "^9.3 || ^10",
  1810. "drupal/seven": "~1.0"
  1811. },
  1812. "type": "drupal-theme",
  1813. "extra": {
  1814. "drupal": {
  1815. "version": "8.x-1.7",
  1816. "datestamp": "1691504486",
  1817. "security-coverage": {
  1818. "status": "covered",
  1819. "message": "Covered by Drupal's security advisory policy"
  1820. }
  1821. }
  1822. },
  1823. "notification-url": "https://packages.drupal.org/8/downloads",
  1824. "license": [
  1825. "GPL-2.0+"
  1826. ],
  1827. "authors": [
  1828. {
  1829. "name": "ANDiTKO",
  1830. "homepage": "https://www.drupal.org/user/1428124"
  1831. },
  1832. {
  1833. "name": "andrey.troeglazov",
  1834. "homepage": "https://www.drupal.org/user/3145389"
  1835. },
  1836. {
  1837. "name": "realityloop",
  1838. "homepage": "https://www.drupal.org/user/139189"
  1839. },
  1840. {
  1841. "name": "rjjakes",
  1842. "homepage": "https://www.drupal.org/user/3457245"
  1843. }
  1844. ],
  1845. "description": "Drupal administration theme with modern minimalist design.",
  1846. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1847. "support": {
  1848. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1849. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1850. }
  1851. },
  1852. {
  1853. "name": "drupal/advanced_text_formatter",
  1854. "version": "3.0.0-rc1",
  1855. "source": {
  1856. "type": "git",
  1857. "url": "https://git.drupalcode.org/project/advanced_text_formatter.git",
  1858. "reference": "3.0.0-rc1"
  1859. },
  1860. "dist": {
  1861. "type": "zip",
  1862. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-3.0.0-rc1.zip",
  1863. "reference": "3.0.0-rc1",
  1864. "shasum": "394729127f44a6398e29f5e5702e6def00a06e20"
  1865. },
  1866. "require": {
  1867. "drupal/core": "^8 || ^9 || ^10"
  1868. },
  1869. "type": "drupal-module",
  1870. "extra": {
  1871. "drupal": {
  1872. "version": "3.0.0-rc1",
  1873. "datestamp": "1675163352",
  1874. "security-coverage": {
  1875. "status": "not-covered",
  1876. "message": "RC releases are not covered by Drupal security advisories."
  1877. }
  1878. }
  1879. },
  1880. "notification-url": "https://packages.drupal.org/8/downloads",
  1881. "license": [
  1882. "GPL-2.0-or-later"
  1883. ],
  1884. "authors": [
  1885. {
  1886. "name": "azovsky",
  1887. "homepage": "https://www.drupal.org/user/330533"
  1888. },
  1889. {
  1890. "name": "thmnhat",
  1891. "homepage": "https://www.drupal.org/user/998946"
  1892. }
  1893. ],
  1894. "description": "Provides an additional formatter for text field, text area and text format.",
  1895. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  1896. "support": {
  1897. "source": "https://git.drupalcode.org/project/advanced_text_formatter"
  1898. }
  1899. },
  1900. {
  1901. "name": "drupal/audiofield",
  1902. "version": "1.13.0",
  1903. "source": {
  1904. "type": "git",
  1905. "url": "https://git.drupalcode.org/project/audiofield.git",
  1906. "reference": "8.x-1.13"
  1907. },
  1908. "dist": {
  1909. "type": "zip",
  1910. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  1911. "reference": "8.x-1.13",
  1912. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  1913. },
  1914. "require": {
  1915. "drupal/core": "^8 || ^9 || ^10"
  1916. },
  1917. "type": "drupal-module",
  1918. "extra": {
  1919. "drupal": {
  1920. "version": "8.x-1.13",
  1921. "datestamp": "1681143245",
  1922. "security-coverage": {
  1923. "status": "covered",
  1924. "message": "Covered by Drupal's security advisory policy"
  1925. }
  1926. },
  1927. "drush": {
  1928. "services": {
  1929. "drush.services.yml": "^9"
  1930. }
  1931. }
  1932. },
  1933. "notification-url": "https://packages.drupal.org/8/downloads",
  1934. "license": [
  1935. "GPL-2.0-or-later"
  1936. ],
  1937. "authors": [
  1938. {
  1939. "name": "Daniel Moberly",
  1940. "homepage": "https://www.drupal.org/u/danielmoberly",
  1941. "role": "Maintainer"
  1942. },
  1943. {
  1944. "name": "tamerzg",
  1945. "homepage": "https://www.drupal.org/user/464564"
  1946. }
  1947. ],
  1948. "description": "AudioField Module",
  1949. "homepage": "https://www.drupal.org/project/audiofield",
  1950. "support": {
  1951. "source": "https://git.drupalcode.org/project/audiofield",
  1952. "issues": "https://www.drupal.org/project/issues/audiofield"
  1953. }
  1954. },
  1955. {
  1956. "name": "drupal/autocomplete_deluxe",
  1957. "version": "2.0.3",
  1958. "source": {
  1959. "type": "git",
  1960. "url": "https://git.drupalcode.org/project/autocomplete_deluxe.git",
  1961. "reference": "2.0.3"
  1962. },
  1963. "dist": {
  1964. "type": "zip",
  1965. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-2.0.3.zip",
  1966. "reference": "2.0.3",
  1967. "shasum": "686bb49e7366d59f7eef7acf8906ba907898497f"
  1968. },
  1969. "require": {
  1970. "drupal/core": "^8 || ^9 || ^10"
  1971. },
  1972. "type": "drupal-module",
  1973. "extra": {
  1974. "drupal": {
  1975. "version": "2.0.3",
  1976. "datestamp": "1673454732",
  1977. "security-coverage": {
  1978. "status": "covered",
  1979. "message": "Covered by Drupal's security advisory policy"
  1980. }
  1981. }
  1982. },
  1983. "notification-url": "https://packages.drupal.org/8/downloads",
  1984. "license": [
  1985. "GPL-2.0-or-later"
  1986. ],
  1987. "authors": [
  1988. {
  1989. "name": "Vardot",
  1990. "homepage": "https://www.drupal.org/vardot",
  1991. "role": "Maintenance for D8 and D9 versions"
  1992. },
  1993. {
  1994. "name": "Mediacurrent",
  1995. "homepage": "https://www.drupal.org/mediacurrent",
  1996. "role": "Supporting organization"
  1997. },
  1998. {
  1999. "name": "Mohammed J. Razem",
  2000. "homepage": "https://www.drupal.org/user/255384"
  2001. },
  2002. {
  2003. "name": "mpriscella",
  2004. "homepage": "https://www.drupal.org/user/2354820"
  2005. },
  2006. {
  2007. "name": "Rajab Natshah",
  2008. "homepage": "https://www.drupal.org/user/1414312"
  2009. },
  2010. {
  2011. "name": "sepgil",
  2012. "homepage": "https://www.drupal.org/user/512828"
  2013. }
  2014. ],
  2015. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  2016. "homepage": "https://www.drupal.org/project/autocomplete_deluxe",
  2017. "support": {
  2018. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  2019. "issues": "https://www.drupal.org/project/issues/autocomplete_deluxe"
  2020. }
  2021. },
  2022. {
  2023. "name": "drupal/autologout",
  2024. "version": "1.4.0",
  2025. "source": {
  2026. "type": "git",
  2027. "url": "https://git.drupalcode.org/project/autologout.git",
  2028. "reference": "8.x-1.4"
  2029. },
  2030. "dist": {
  2031. "type": "zip",
  2032. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.4.zip",
  2033. "reference": "8.x-1.4",
  2034. "shasum": "f751062f463d0b52df81764f67cee3a0be97825e"
  2035. },
  2036. "require": {
  2037. "drupal/core": "^9.2 || ^10"
  2038. },
  2039. "type": "drupal-module",
  2040. "extra": {
  2041. "drupal": {
  2042. "version": "8.x-1.4",
  2043. "datestamp": "1658168199",
  2044. "security-coverage": {
  2045. "status": "covered",
  2046. "message": "Covered by Drupal's security advisory policy"
  2047. }
  2048. }
  2049. },
  2050. "notification-url": "https://packages.drupal.org/8/downloads",
  2051. "license": [
  2052. "GPL-2.0-or-later"
  2053. ],
  2054. "authors": [
  2055. {
  2056. "name": "AjitS",
  2057. "homepage": "https://www.drupal.org/user/981944"
  2058. },
  2059. {
  2060. "name": "AjK",
  2061. "homepage": "https://www.drupal.org/user/39030"
  2062. },
  2063. {
  2064. "name": "boshtian",
  2065. "homepage": "https://www.drupal.org/user/1773456"
  2066. },
  2067. {
  2068. "name": "dandrews",
  2069. "homepage": "https://www.drupal.org/user/2014490"
  2070. },
  2071. {
  2072. "name": "darksnow",
  2073. "homepage": "https://www.drupal.org/user/391915"
  2074. },
  2075. {
  2076. "name": "japerry",
  2077. "homepage": "https://www.drupal.org/user/45640"
  2078. },
  2079. {
  2080. "name": "johnennew",
  2081. "homepage": "https://www.drupal.org/user/1150042"
  2082. },
  2083. {
  2084. "name": "jrglasgow",
  2085. "homepage": "https://www.drupal.org/user/36590"
  2086. },
  2087. {
  2088. "name": "kmasood",
  2089. "homepage": "https://www.drupal.org/user/1262860"
  2090. },
  2091. {
  2092. "name": "levelos",
  2093. "homepage": "https://www.drupal.org/user/54135"
  2094. },
  2095. {
  2096. "name": "prabeen.giri",
  2097. "homepage": "https://www.drupal.org/user/913078"
  2098. },
  2099. {
  2100. "name": "str8",
  2101. "homepage": "https://www.drupal.org/user/2865063"
  2102. }
  2103. ],
  2104. "description": "Adds automated timed logout.",
  2105. "homepage": "http://drupal.org/project/autologout",
  2106. "support": {
  2107. "source": "https://git.drupalcode.org/project/autologout"
  2108. }
  2109. },
  2110. {
  2111. "name": "drupal/better_exposed_filters",
  2112. "version": "6.0.3",
  2113. "source": {
  2114. "type": "git",
  2115. "url": "https://git.drupalcode.org/project/better_exposed_filters.git",
  2116. "reference": "6.0.3"
  2117. },
  2118. "dist": {
  2119. "type": "zip",
  2120. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-6.0.3.zip",
  2121. "reference": "6.0.3",
  2122. "shasum": "b5c20207d7679542bb81955771956c18083e6e0b"
  2123. },
  2124. "require": {
  2125. "drupal/core": "^9 || ^10",
  2126. "drupal/jquery_ui": "^1.6",
  2127. "drupal/jquery_ui_datepicker": "^2.0",
  2128. "drupal/jquery_ui_slider": "^2.0.0",
  2129. "drupal/jquery_ui_touch_punch": "^1.0"
  2130. },
  2131. "type": "drupal-module",
  2132. "extra": {
  2133. "drupal": {
  2134. "version": "6.0.3",
  2135. "datestamp": "1671541877",
  2136. "security-coverage": {
  2137. "status": "covered",
  2138. "message": "Covered by Drupal's security advisory policy"
  2139. }
  2140. }
  2141. },
  2142. "notification-url": "https://packages.drupal.org/8/downloads",
  2143. "license": [
  2144. "GPL-2.0-or-later"
  2145. ],
  2146. "authors": [
  2147. {
  2148. "name": "Mike Keran",
  2149. "homepage": "https://www.drupal.org/u/mikeker"
  2150. },
  2151. {
  2152. "name": "Martin Keereman",
  2153. "homepage": "https://www.drupal.org/u/etroid"
  2154. },
  2155. {
  2156. "name": "Neslee Canil Pinto",
  2157. "homepage": "https://www.drupal.org/u/neslee-canil-pinto"
  2158. },
  2159. {
  2160. "name": "mikeker",
  2161. "homepage": "https://www.drupal.org/user/192273"
  2162. },
  2163. {
  2164. "name": "Neslee Canil Pinto",
  2165. "homepage": "https://www.drupal.org/user/3580850"
  2166. },
  2167. {
  2168. "name": "podarok",
  2169. "homepage": "https://www.drupal.org/user/116002"
  2170. },
  2171. {
  2172. "name": "rlhawk",
  2173. "homepage": "https://www.drupal.org/user/352283"
  2174. }
  2175. ],
  2176. "description": "Replaces the Views default single- or multi-select boxes with more advanced options.",
  2177. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2178. "support": {
  2179. "source": "https://git.drupalcode.org/project/better_exposed_filters",
  2180. "issues": "https://www.drupal.org/project/issues/better_exposed_filters"
  2181. }
  2182. },
  2183. {
  2184. "name": "drupal/block_class",
  2185. "version": "2.0.11",
  2186. "source": {
  2187. "type": "git",
  2188. "url": "https://git.drupalcode.org/project/block_class.git",
  2189. "reference": "2.0.11"
  2190. },
  2191. "dist": {
  2192. "type": "zip",
  2193. "url": "https://ftp.drupal.org/files/projects/block_class-2.0.11.zip",
  2194. "reference": "2.0.11",
  2195. "shasum": "bd098ef0071b5baca1248c0deaa9bbedc0ddcaf4"
  2196. },
  2197. "require": {
  2198. "drupal/core": "^8 || ^9 || ^10"
  2199. },
  2200. "type": "drupal-module",
  2201. "extra": {
  2202. "drupal": {
  2203. "version": "2.0.11",
  2204. "datestamp": "1672065313",
  2205. "security-coverage": {
  2206. "status": "covered",
  2207. "message": "Covered by Drupal's security advisory policy"
  2208. }
  2209. }
  2210. },
  2211. "notification-url": "https://packages.drupal.org/8/downloads",
  2212. "license": [
  2213. "GPL-2.0-or-later"
  2214. ],
  2215. "authors": [
  2216. {
  2217. "name": "Todd Nienkerk",
  2218. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2219. "role": "Maintainer"
  2220. },
  2221. {
  2222. "name": "Renato Gonçalves (RenatoG)",
  2223. "homepage": "https://www.drupal.org/u/RenatoG",
  2224. "role": "Maintainer"
  2225. },
  2226. {
  2227. "name": "Neslee Canil Pinto",
  2228. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  2229. "role": "Maintainer"
  2230. },
  2231. {
  2232. "name": "Aaron Stanush",
  2233. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2234. "role": "Maintainer"
  2235. },
  2236. {
  2237. "name": "David Suissa (DYdave)",
  2238. "homepage": "https://www.drupal.org/u/DYdave",
  2239. "role": "Maintainer"
  2240. },
  2241. {
  2242. "name": "Four Kitchens",
  2243. "homepage": "https://www.drupal.org/user/358502",
  2244. "role": "Maintainer"
  2245. },
  2246. {
  2247. "name": "berenddeboer",
  2248. "homepage": "https://www.drupal.org/u/berenddeboer",
  2249. "role": "Maintainer"
  2250. },
  2251. {
  2252. "name": "elliotttf",
  2253. "homepage": "https://www.drupal.org/u/elliotttf",
  2254. "role": "Maintainer"
  2255. },
  2256. {
  2257. "name": "Michal Minecki (mirzu)",
  2258. "homepage": "https://www.drupal.org/u/mirzu",
  2259. "role": "Maintainer"
  2260. },
  2261. {
  2262. "name": "Patrick Coffey (pcoffey)",
  2263. "homepage": "https://www.drupal.org/u/pcoffey",
  2264. "role": "Maintainer"
  2265. },
  2266. {
  2267. "name": "Taylor Smith (tsmith512)",
  2268. "homepage": "https://www.drupal.org/u/tsmith512",
  2269. "role": "Maintainer"
  2270. }
  2271. ],
  2272. "description": "Allows assigning classes to Blocks.",
  2273. "homepage": "https://www.drupal.org/project/block_class",
  2274. "keywords": [
  2275. "Drupal"
  2276. ],
  2277. "support": {
  2278. "source": "https://git.drupalcode.org/project/block_class",
  2279. "issues": "https://www.drupal.org/project/issues/block_class",
  2280. "irc": "irc://irc.freenode.org/drupal-contribute"
  2281. }
  2282. },
  2283. {
  2284. "name": "drupal/bulkdelete",
  2285. "version": "dev-1.x",
  2286. "source": {
  2287. "type": "git",
  2288. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2289. "reference": "95a7ff49f152021be88ba562c247347ff36392c7"
  2290. },
  2291. "require": {
  2292. "drupal/core": "^8.7.7 || ^9 || ^10"
  2293. },
  2294. "type": "drupal-module",
  2295. "extra": {
  2296. "branch-alias": {
  2297. "dev-1.x": "1.x-dev"
  2298. },
  2299. "drupal": {
  2300. "version": "8.x-1.x-dev",
  2301. "datestamp": "1655322426",
  2302. "security-coverage": {
  2303. "status": "not-covered",
  2304. "message": "Dev releases are not covered by Drupal security advisories."
  2305. }
  2306. }
  2307. },
  2308. "notification-url": "https://packages.drupal.org/8/downloads",
  2309. "license": [
  2310. "GPL-2.0-or-later"
  2311. ],
  2312. "authors": [
  2313. {
  2314. "name": "Kars-T",
  2315. "homepage": "https://www.drupal.org/user/224499"
  2316. },
  2317. {
  2318. "name": "Rahul Seth",
  2319. "homepage": "https://www.drupal.org/user/2694359"
  2320. },
  2321. {
  2322. "name": "adriancid",
  2323. "homepage": "https://www.drupal.org/user/1962106"
  2324. },
  2325. {
  2326. "name": "robertDouglass",
  2327. "homepage": "https://www.drupal.org/user/5449"
  2328. }
  2329. ],
  2330. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2331. "homepage": "https://www.drupal.org/project/bulkdelete",
  2332. "support": {
  2333. "source": "https://git.drupalcode.org/project/bulkdelete"
  2334. }
  2335. },
  2336. {
  2337. "name": "drupal/config_devel",
  2338. "version": "dev-1.x",
  2339. "source": {
  2340. "type": "git",
  2341. "url": "https://git.drupalcode.org/project/config_devel.git",
  2342. "reference": "d0a98704eb6f9d4bdfe8e91e678b895648bb3c83"
  2343. },
  2344. "require": {
  2345. "drupal/core": "^9.3 || ^10"
  2346. },
  2347. "type": "drupal-module",
  2348. "extra": {
  2349. "branch-alias": {
  2350. "dev-1.x": "1.x-dev"
  2351. },
  2352. "drupal": {
  2353. "version": "8.x-1.8+2-dev",
  2354. "datestamp": "1678264720",
  2355. "security-coverage": {
  2356. "status": "not-covered",
  2357. "message": "Dev releases are not covered by Drupal security advisories."
  2358. }
  2359. }
  2360. },
  2361. "notification-url": "https://packages.drupal.org/8/downloads",
  2362. "license": [
  2363. "GPL-2.0+"
  2364. ],
  2365. "authors": [
  2366. {
  2367. "name": "alexpott",
  2368. "homepage": "https://www.drupal.org/user/157725"
  2369. },
  2370. {
  2371. "name": "benjy",
  2372. "homepage": "https://www.drupal.org/user/1852732"
  2373. },
  2374. {
  2375. "name": "chx",
  2376. "homepage": "https://www.drupal.org/user/9446"
  2377. },
  2378. {
  2379. "name": "joachim",
  2380. "homepage": "https://www.drupal.org/user/107701"
  2381. },
  2382. {
  2383. "name": "nedjo",
  2384. "homepage": "https://www.drupal.org/user/4481"
  2385. },
  2386. {
  2387. "name": "vijaycs85",
  2388. "homepage": "https://www.drupal.org/user/93488"
  2389. }
  2390. ],
  2391. "description": "Helps developers work with configuration.",
  2392. "homepage": "https://www.drupal.org/project/config_devel",
  2393. "support": {
  2394. "source": "https://git.drupalcode.org/project/config_devel"
  2395. }
  2396. },
  2397. {
  2398. "name": "drupal/config_filter",
  2399. "version": "2.6.0",
  2400. "source": {
  2401. "type": "git",
  2402. "url": "https://git.drupalcode.org/project/config_filter.git",
  2403. "reference": "8.x-2.6"
  2404. },
  2405. "dist": {
  2406. "type": "zip",
  2407. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.6.zip",
  2408. "reference": "8.x-2.6",
  2409. "shasum": "fd1a057a402436fc906c63bf0a74722f73b9b155"
  2410. },
  2411. "require": {
  2412. "drupal/core": "^8.8 || ^9 || ^10"
  2413. },
  2414. "conflict": {
  2415. "drush/drush": "<10"
  2416. },
  2417. "suggest": {
  2418. "drupal/config_split": "Split site configuration for different environments."
  2419. },
  2420. "type": "drupal-module",
  2421. "extra": {
  2422. "drupal": {
  2423. "version": "8.x-2.6",
  2424. "datestamp": "1698308577",
  2425. "security-coverage": {
  2426. "status": "covered",
  2427. "message": "Covered by Drupal's security advisory policy"
  2428. }
  2429. }
  2430. },
  2431. "notification-url": "https://packages.drupal.org/8/downloads",
  2432. "license": [
  2433. "GPL-2.0-or-later"
  2434. ],
  2435. "authors": [
  2436. {
  2437. "name": "Fabian Bircher",
  2438. "homepage": "https://www.drupal.org/u/bircher",
  2439. "email": "opensource@fabianbircher.com",
  2440. "role": "Maintainer"
  2441. },
  2442. {
  2443. "name": "Nuvole Web",
  2444. "homepage": "http://nuvole.org",
  2445. "email": "info@nuvole.org",
  2446. "role": "Maintainer"
  2447. },
  2448. {
  2449. "name": "pescetti",
  2450. "homepage": "https://www.drupal.org/user/436244"
  2451. }
  2452. ],
  2453. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2454. "homepage": "https://www.drupal.org/project/config_filter",
  2455. "keywords": [
  2456. "Drupal",
  2457. "configuration",
  2458. "configuration management"
  2459. ],
  2460. "support": {
  2461. "source": "https://git.drupalcode.org/project/config_filter",
  2462. "issues": "https://www.drupal.org/project/issues/config_filter",
  2463. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2464. }
  2465. },
  2466. {
  2467. "name": "drupal/config_ignore",
  2468. "version": "2.4.0",
  2469. "source": {
  2470. "type": "git",
  2471. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2472. "reference": "8.x-2.4"
  2473. },
  2474. "dist": {
  2475. "type": "zip",
  2476. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.4.zip",
  2477. "reference": "8.x-2.4",
  2478. "shasum": "e0e45dde2d6927c5d26de59f352792fb6cf26554"
  2479. },
  2480. "require": {
  2481. "drupal/config_filter": "^1 || ^2",
  2482. "drupal/core": "^8 || ^9 || ^10"
  2483. },
  2484. "type": "drupal-module",
  2485. "extra": {
  2486. "drupal": {
  2487. "version": "8.x-2.4",
  2488. "datestamp": "1676045435",
  2489. "security-coverage": {
  2490. "status": "covered",
  2491. "message": "Covered by Drupal's security advisory policy"
  2492. }
  2493. }
  2494. },
  2495. "notification-url": "https://packages.drupal.org/8/downloads",
  2496. "license": [
  2497. "GPL-2.0-or-later"
  2498. ],
  2499. "authors": [
  2500. {
  2501. "name": "Tommy Lynge Jørgensen",
  2502. "homepage": "https://www.drupal.org/u/tlyngej",
  2503. "email": "tlyngej@gmail.com",
  2504. "role": "Maintainer"
  2505. },
  2506. {
  2507. "name": "Fabian Bircher",
  2508. "homepage": "https://www.drupal.org/u/bircher",
  2509. "role": "Maintainer"
  2510. },
  2511. {
  2512. "name": "tlyngej",
  2513. "homepage": "https://www.drupal.org/user/413139"
  2514. }
  2515. ],
  2516. "description": "Ignore certain configuration during import.",
  2517. "homepage": "http://drupal.org/project/config_ignore",
  2518. "support": {
  2519. "source": "https://git.drupalcode.org/project/config_ignore",
  2520. "issues": "https://drupal.org/project/config_ignore",
  2521. "irc": "irc://irc.freenode.org/drupal-contribute"
  2522. }
  2523. },
  2524. {
  2525. "name": "drupal/config_update",
  2526. "version": "2.0.0-alpha3",
  2527. "source": {
  2528. "type": "git",
  2529. "url": "https://git.drupalcode.org/project/config_update.git",
  2530. "reference": "2.0.0-alpha3"
  2531. },
  2532. "dist": {
  2533. "type": "zip",
  2534. "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha3.zip",
  2535. "reference": "2.0.0-alpha3",
  2536. "shasum": "c35e81e8fb77efdff5ddca3a87116ea0c522a7e2"
  2537. },
  2538. "require": {
  2539. "drupal/core": "^9.4 || ^10"
  2540. },
  2541. "type": "drupal-module",
  2542. "extra": {
  2543. "drupal": {
  2544. "version": "2.0.0-alpha3",
  2545. "datestamp": "1683807608",
  2546. "security-coverage": {
  2547. "status": "not-covered",
  2548. "message": "Alpha releases are not covered by Drupal security advisories."
  2549. }
  2550. }
  2551. },
  2552. "notification-url": "https://packages.drupal.org/8/downloads",
  2553. "license": [
  2554. "GPL-2.0-or-later"
  2555. ],
  2556. "authors": [
  2557. {
  2558. "name": "codebymikey",
  2559. "homepage": "https://www.drupal.org/user/3573206"
  2560. },
  2561. {
  2562. "name": "Pasqualle",
  2563. "homepage": "https://www.drupal.org/user/80733"
  2564. }
  2565. ],
  2566. "description": "Provides basic revert and update functionality for other modules.",
  2567. "homepage": "https://www.drupal.org/project/config_update",
  2568. "support": {
  2569. "source": "https://git.drupalcode.org/project/config_update"
  2570. }
  2571. },
  2572. {
  2573. "name": "drupal/content_lock",
  2574. "version": "2.3.0",
  2575. "source": {
  2576. "type": "git",
  2577. "url": "https://git.drupalcode.org/project/content_lock.git",
  2578. "reference": "8.x-2.3"
  2579. },
  2580. "dist": {
  2581. "type": "zip",
  2582. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.3.zip",
  2583. "reference": "8.x-2.3",
  2584. "shasum": "0e8343f82330899baef65aa85d9994154e29506f"
  2585. },
  2586. "require": {
  2587. "drupal/core": "^9.0 || ^10.0"
  2588. },
  2589. "type": "drupal-module",
  2590. "extra": {
  2591. "drupal": {
  2592. "version": "8.x-2.3",
  2593. "datestamp": "1668427342",
  2594. "security-coverage": {
  2595. "status": "covered",
  2596. "message": "Covered by Drupal's security advisory policy"
  2597. }
  2598. }
  2599. },
  2600. "notification-url": "https://packages.drupal.org/8/downloads",
  2601. "license": [
  2602. "GPL-2.0-or-later"
  2603. ],
  2604. "authors": [
  2605. {
  2606. "name": "alexpott",
  2607. "homepage": "https://www.drupal.org/user/157725"
  2608. },
  2609. {
  2610. "name": "chr.fritsch",
  2611. "homepage": "https://www.drupal.org/user/2103716"
  2612. },
  2613. {
  2614. "name": "daniel.bosen",
  2615. "homepage": "https://www.drupal.org/user/404865"
  2616. },
  2617. {
  2618. "name": "ergonlogic",
  2619. "homepage": "https://www.drupal.org/user/368613"
  2620. },
  2621. {
  2622. "name": "mfb",
  2623. "homepage": "https://www.drupal.org/user/12302"
  2624. },
  2625. {
  2626. "name": "pandaski",
  2627. "homepage": "https://www.drupal.org/user/1987218"
  2628. },
  2629. {
  2630. "name": "volkerk",
  2631. "homepage": "https://www.drupal.org/user/57527"
  2632. }
  2633. ],
  2634. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  2635. "homepage": "https://www.drupal.org/project/content_lock",
  2636. "support": {
  2637. "source": "https://git.drupalcode.org/project/content_lock"
  2638. }
  2639. },
  2640. {
  2641. "name": "drupal/context",
  2642. "version": "5.0.0-rc1",
  2643. "source": {
  2644. "type": "git",
  2645. "url": "https://git.drupalcode.org/project/context.git",
  2646. "reference": "5.0.0-rc1"
  2647. },
  2648. "dist": {
  2649. "type": "zip",
  2650. "url": "https://ftp.drupal.org/files/projects/context-5.0.0-rc1.zip",
  2651. "reference": "5.0.0-rc1",
  2652. "shasum": "ae1549bc5e5c75c0c6799b7b737d7391cfc5be73"
  2653. },
  2654. "require": {
  2655. "drupal/core": "^9.3 || ^10"
  2656. },
  2657. "type": "drupal-module",
  2658. "extra": {
  2659. "drupal": {
  2660. "version": "5.0.0-rc1",
  2661. "datestamp": "1677054769",
  2662. "security-coverage": {
  2663. "status": "not-covered",
  2664. "message": "RC releases are not covered by Drupal security advisories."
  2665. }
  2666. }
  2667. },
  2668. "notification-url": "https://packages.drupal.org/8/downloads",
  2669. "license": [
  2670. "MIT"
  2671. ],
  2672. "authors": [
  2673. {
  2674. "name": "Christoffer Palm",
  2675. "homepage": "http://www.oddhill.se/",
  2676. "email": "christoffer.palm@oddhill.se",
  2677. "role": "Developer"
  2678. },
  2679. {
  2680. "name": "boshtian",
  2681. "homepage": "https://www.drupal.org/user/1773456"
  2682. },
  2683. {
  2684. "name": "colan",
  2685. "homepage": "https://www.drupal.org/user/58704"
  2686. },
  2687. {
  2688. "name": "emanaton",
  2689. "homepage": "https://www.drupal.org/user/120853"
  2690. },
  2691. {
  2692. "name": "febbraro",
  2693. "homepage": "https://www.drupal.org/user/43670"
  2694. },
  2695. {
  2696. "name": "fizk",
  2697. "homepage": "https://www.drupal.org/user/473174"
  2698. },
  2699. {
  2700. "name": "hass",
  2701. "homepage": "https://www.drupal.org/user/85918"
  2702. },
  2703. {
  2704. "name": "hefox",
  2705. "homepage": "https://www.drupal.org/user/426416"
  2706. },
  2707. {
  2708. "name": "jmiccolis",
  2709. "homepage": "https://www.drupal.org/user/31731"
  2710. },
  2711. {
  2712. "name": "Kristen Pol",
  2713. "homepage": "https://www.drupal.org/user/8389"
  2714. },
  2715. {
  2716. "name": "nedjo",
  2717. "homepage": "https://www.drupal.org/user/4481"
  2718. },
  2719. {
  2720. "name": "NormySan",
  2721. "homepage": "https://www.drupal.org/user/112352"
  2722. },
  2723. {
  2724. "name": "patricksettle",
  2725. "homepage": "https://www.drupal.org/user/26618"
  2726. },
  2727. {
  2728. "name": "paulocs",
  2729. "homepage": "https://www.drupal.org/user/3640109"
  2730. },
  2731. {
  2732. "name": "Steven Jones",
  2733. "homepage": "https://www.drupal.org/user/99644"
  2734. },
  2735. {
  2736. "name": "tekante",
  2737. "homepage": "https://www.drupal.org/user/640024"
  2738. },
  2739. {
  2740. "name": "yhahn",
  2741. "homepage": "https://www.drupal.org/user/264833"
  2742. }
  2743. ],
  2744. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2745. "homepage": "https://github.com/oddhill/context",
  2746. "keywords": [
  2747. "Drupal",
  2748. "block",
  2749. "conditions",
  2750. "context",
  2751. "visibility"
  2752. ],
  2753. "support": {
  2754. "source": "https://github.com/oddhill/context",
  2755. "issues": "https://github.com/oddhill/context/issues",
  2756. "docs": "https://github.com/oddhill/context"
  2757. }
  2758. },
  2759. {
  2760. "name": "drupal/core",
  2761. "version": "10.1.6",
  2762. "source": {
  2763. "type": "git",
  2764. "url": "https://github.com/drupal/core.git",
  2765. "reference": "33695caf467e3e1e8c75d42215df57bee31be9ec"
  2766. },
  2767. "dist": {
  2768. "type": "zip",
  2769. "url": "https://api.github.com/repos/drupal/core/zipball/33695caf467e3e1e8c75d42215df57bee31be9ec",
  2770. "reference": "33695caf467e3e1e8c75d42215df57bee31be9ec",
  2771. "shasum": ""
  2772. },
  2773. "require": {
  2774. "asm89/stack-cors": "^2.1",
  2775. "composer-runtime-api": "^2.1",
  2776. "composer/semver": "^3.3",
  2777. "doctrine/annotations": "^1.14",
  2778. "egulias/email-validator": "^3.2.1|^4.0",
  2779. "ext-date": "*",
  2780. "ext-dom": "*",
  2781. "ext-filter": "*",
  2782. "ext-gd": "*",
  2783. "ext-hash": "*",
  2784. "ext-json": "*",
  2785. "ext-pcre": "*",
  2786. "ext-pdo": "*",
  2787. "ext-session": "*",
  2788. "ext-simplexml": "*",
  2789. "ext-spl": "*",
  2790. "ext-tokenizer": "*",
  2791. "ext-xml": "*",
  2792. "guzzlehttp/guzzle": "^7.5",
  2793. "guzzlehttp/psr7": "^2.4.5",
  2794. "masterminds/html5": "^2.7",
  2795. "mck89/peast": "^1.14",
  2796. "pear/archive_tar": "^1.4.14",
  2797. "php": ">=8.1.0",
  2798. "psr/log": "^3.0",
  2799. "sebastian/diff": "^4",
  2800. "symfony/console": "^6.3",
  2801. "symfony/dependency-injection": "^6.3",
  2802. "symfony/event-dispatcher": "^6.3",
  2803. "symfony/http-foundation": "^6.3",
  2804. "symfony/http-kernel": "^6.3",
  2805. "symfony/mime": "^6.3",
  2806. "symfony/polyfill-iconv": "^1.26",
  2807. "symfony/process": "^6.3",
  2808. "symfony/psr-http-message-bridge": "^2.1",
  2809. "symfony/routing": "^6.3",
  2810. "symfony/serializer": "^6.3",
  2811. "symfony/validator": "^6.3",
  2812. "symfony/yaml": "^6.3",
  2813. "twig/twig": "^3.5.0"
  2814. },
  2815. "conflict": {
  2816. "drush/drush": "<8.1.10"
  2817. },
  2818. "replace": {
  2819. "drupal/core-annotation": "self.version",
  2820. "drupal/core-assertion": "self.version",
  2821. "drupal/core-class-finder": "self.version",
  2822. "drupal/core-datetime": "self.version",
  2823. "drupal/core-dependency-injection": "self.version",
  2824. "drupal/core-diff": "self.version",
  2825. "drupal/core-discovery": "self.version",
  2826. "drupal/core-event-dispatcher": "self.version",
  2827. "drupal/core-file-cache": "self.version",
  2828. "drupal/core-file-security": "self.version",
  2829. "drupal/core-filesystem": "self.version",
  2830. "drupal/core-front-matter": "self.version",
  2831. "drupal/core-gettext": "self.version",
  2832. "drupal/core-graph": "self.version",
  2833. "drupal/core-http-foundation": "self.version",
  2834. "drupal/core-php-storage": "self.version",
  2835. "drupal/core-plugin": "self.version",
  2836. "drupal/core-proxy-builder": "self.version",
  2837. "drupal/core-render": "self.version",
  2838. "drupal/core-serialization": "self.version",
  2839. "drupal/core-transliteration": "self.version",
  2840. "drupal/core-utility": "self.version",
  2841. "drupal/core-uuid": "self.version",
  2842. "drupal/core-version": "self.version"
  2843. },
  2844. "suggest": {
  2845. "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format."
  2846. },
  2847. "type": "drupal-core",
  2848. "extra": {
  2849. "drupal-scaffold": {
  2850. "file-mapping": {
  2851. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  2852. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  2853. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  2854. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  2855. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  2856. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  2857. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  2858. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  2859. "[web-root]/index.php": "assets/scaffold/files/index.php",
  2860. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  2861. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  2862. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  2863. "[web-root]/update.php": "assets/scaffold/files/update.php",
  2864. "[web-root]/web.config": "assets/scaffold/files/web.config",
  2865. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  2866. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  2867. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  2868. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  2869. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  2870. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  2871. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  2872. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  2873. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  2874. }
  2875. }
  2876. },
  2877. "autoload": {
  2878. "files": [
  2879. "includes/bootstrap.inc"
  2880. ],
  2881. "psr-4": {
  2882. "Drupal\\Core\\": "lib/Drupal/Core",
  2883. "Drupal\\Component\\": "lib/Drupal/Component"
  2884. },
  2885. "classmap": [
  2886. "lib/Drupal.php",
  2887. "lib/Drupal/Component/DependencyInjection/Container.php",
  2888. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  2889. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  2890. "lib/Drupal/Component/Utility/Timer.php",
  2891. "lib/Drupal/Component/Utility/Unicode.php",
  2892. "lib/Drupal/Core/Cache/Cache.php",
  2893. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  2894. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  2895. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  2896. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  2897. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  2898. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  2899. "lib/Drupal/Core/Database/Connection.php",
  2900. "lib/Drupal/Core/Database/Database.php",
  2901. "lib/Drupal/Core/Database/StatementInterface.php",
  2902. "lib/Drupal/Core/DependencyInjection/Container.php",
  2903. "lib/Drupal/Core/DrupalKernel.php",
  2904. "lib/Drupal/Core/DrupalKernelInterface.php",
  2905. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  2906. "lib/Drupal/Core/Site/Settings.php"
  2907. ]
  2908. },
  2909. "notification-url": "https://packagist.org/downloads/",
  2910. "license": [
  2911. "GPL-2.0-or-later"
  2912. ],
  2913. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  2914. "support": {
  2915. "source": "https://github.com/drupal/core/tree/10.1.6"
  2916. },
  2917. "time": "2023-11-01T11:59:20+00:00"
  2918. },
  2919. {
  2920. "name": "drupal/core-composer-scaffold",
  2921. "version": "10.1.6",
  2922. "source": {
  2923. "type": "git",
  2924. "url": "https://github.com/drupal/core-composer-scaffold.git",
  2925. "reference": "1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51"
  2926. },
  2927. "dist": {
  2928. "type": "zip",
  2929. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51",
  2930. "reference": "1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51",
  2931. "shasum": ""
  2932. },
  2933. "require": {
  2934. "composer-plugin-api": "^2",
  2935. "php": ">=7.3.0"
  2936. },
  2937. "conflict": {
  2938. "drupal-composer/drupal-scaffold": "*"
  2939. },
  2940. "require-dev": {
  2941. "composer/composer": "^1.8@stable"
  2942. },
  2943. "type": "composer-plugin",
  2944. "extra": {
  2945. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  2946. "branch-alias": {
  2947. "dev-master": "1.0.x-dev"
  2948. }
  2949. },
  2950. "autoload": {
  2951. "psr-4": {
  2952. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  2953. }
  2954. },
  2955. "notification-url": "https://packagist.org/downloads/",
  2956. "license": [
  2957. "GPL-2.0-or-later"
  2958. ],
  2959. "description": "A flexible Composer project scaffold builder.",
  2960. "homepage": "https://www.drupal.org/project/drupal",
  2961. "keywords": [
  2962. "drupal"
  2963. ],
  2964. "support": {
  2965. "source": "https://github.com/drupal/core-composer-scaffold/tree/10.1.6"
  2966. },
  2967. "time": "2023-04-30T16:15:32+00:00"
  2968. },
  2969. {
  2970. "name": "drupal/core-project-message",
  2971. "version": "10.1.6",
  2972. "source": {
  2973. "type": "git",
  2974. "url": "https://github.com/drupal/core-project-message.git",
  2975. "reference": "59b4475f01debd9a0f173938a06189982c8ebffd"
  2976. },
  2977. "dist": {
  2978. "type": "zip",
  2979. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/59b4475f01debd9a0f173938a06189982c8ebffd",
  2980. "reference": "59b4475f01debd9a0f173938a06189982c8ebffd",
  2981. "shasum": ""
  2982. },
  2983. "require": {
  2984. "composer-plugin-api": "^2",
  2985. "php": ">=7.3.0"
  2986. },
  2987. "type": "composer-plugin",
  2988. "extra": {
  2989. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  2990. },
  2991. "autoload": {
  2992. "psr-4": {
  2993. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  2994. }
  2995. },
  2996. "notification-url": "https://packagist.org/downloads/",
  2997. "license": [
  2998. "GPL-2.0-or-later"
  2999. ],
  3000. "description": "Adds a message after Composer installation.",
  3001. "homepage": "https://www.drupal.org/project/drupal",
  3002. "keywords": [
  3003. "drupal"
  3004. ],
  3005. "support": {
  3006. "source": "https://github.com/drupal/core-project-message/tree/10.1.6"
  3007. },
  3008. "time": "2022-07-01T08:32:39+00:00"
  3009. },
  3010. {
  3011. "name": "drupal/core-recommended",
  3012. "version": "10.1.6",
  3013. "source": {
  3014. "type": "git",
  3015. "url": "https://github.com/drupal/core-recommended.git",
  3016. "reference": "13f5968854fe8bc02e659d8a4facc04a1a576ce5"
  3017. },
  3018. "dist": {
  3019. "type": "zip",
  3020. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/13f5968854fe8bc02e659d8a4facc04a1a576ce5",
  3021. "reference": "13f5968854fe8bc02e659d8a4facc04a1a576ce5",
  3022. "shasum": ""
  3023. },
  3024. "require": {
  3025. "asm89/stack-cors": "~v2.1.1",
  3026. "composer/semver": "~3.3.2",
  3027. "doctrine/annotations": "~1.14.3",
  3028. "doctrine/deprecations": "~v1.1.1",
  3029. "doctrine/lexer": "~2.1.0",
  3030. "drupal/core": "10.1.6",
  3031. "egulias/email-validator": "~4.0.1",
  3032. "guzzlehttp/guzzle": "~7.7.0",
  3033. "guzzlehttp/psr7": "~2.5.0",
  3034. "masterminds/html5": "~2.8.0",
  3035. "mck89/peast": "~v1.15.4",
  3036. "pear/archive_tar": "~1.4.14",
  3037. "pear/console_getopt": "~v1.4.3",
  3038. "pear/pear-core-minimal": "~v1.10.13",
  3039. "pear/pear_exception": "~v1.0.2",
  3040. "psr/cache": "~3.0.0",
  3041. "psr/container": "~2.0.2",
  3042. "psr/event-dispatcher": "~1.0.0",
  3043. "psr/http-client": "~1.0.2",
  3044. "psr/http-factory": "~1.0.2",
  3045. "psr/log": "~3.0.0",
  3046. "ralouphie/getallheaders": "~3.0.3",
  3047. "sebastian/diff": "~4.0.5",
  3048. "symfony/console": "~v6.3.0",
  3049. "symfony/dependency-injection": "~v6.3.0",
  3050. "symfony/deprecation-contracts": "~v3.3.0",
  3051. "symfony/error-handler": "~v6.3.0",
  3052. "symfony/event-dispatcher": "~v6.3.0",
  3053. "symfony/event-dispatcher-contracts": "~v3.3.0",
  3054. "symfony/http-foundation": "~v6.3.0",
  3055. "symfony/http-kernel": "~v6.3.0",
  3056. "symfony/mime": "~v6.3.0",
  3057. "symfony/polyfill-ctype": "~v1.27.0",
  3058. "symfony/polyfill-iconv": "~v1.27.0",
  3059. "symfony/polyfill-intl-grapheme": "~v1.27.0",
  3060. "symfony/polyfill-intl-idn": "~v1.27.0",
  3061. "symfony/polyfill-intl-normalizer": "~v1.27.0",
  3062. "symfony/polyfill-mbstring": "~v1.27.0",
  3063. "symfony/polyfill-php83": "~v1.27.0",
  3064. "symfony/process": "~v6.3.0",
  3065. "symfony/psr-http-message-bridge": "~v2.2.0",
  3066. "symfony/routing": "~v6.3.0",
  3067. "symfony/serializer": "~v6.3.0",
  3068. "symfony/service-contracts": "~v3.3.0",
  3069. "symfony/string": "~v6.3.0",
  3070. "symfony/translation-contracts": "~v3.3.0",
  3071. "symfony/validator": "~v6.3.0",
  3072. "symfony/var-dumper": "~v6.3.0",
  3073. "symfony/var-exporter": "~v6.3.0",
  3074. "symfony/yaml": "~v6.3.0",
  3075. "twig/twig": "~v3.6.0"
  3076. },
  3077. "conflict": {
  3078. "webflo/drupal-core-strict": "*"
  3079. },
  3080. "type": "metapackage",
  3081. "notification-url": "https://packagist.org/downloads/",
  3082. "license": [
  3083. "GPL-2.0-or-later"
  3084. ],
  3085. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  3086. "support": {
  3087. "source": "https://github.com/drupal/core-recommended/tree/10.1.6"
  3088. },
  3089. "time": "2023-11-01T11:59:20+00:00"
  3090. },
  3091. {
  3092. "name": "drupal/cshs",
  3093. "version": "4.0.0",
  3094. "source": {
  3095. "type": "git",
  3096. "url": "https://git.drupalcode.org/project/cshs.git",
  3097. "reference": "4.0.0"
  3098. },
  3099. "dist": {
  3100. "type": "zip",
  3101. "url": "https://ftp.drupal.org/files/projects/cshs-4.0.0.zip",
  3102. "reference": "4.0.0",
  3103. "shasum": "ebcd3932481aba4004f4e2078038cdc7293738b0"
  3104. },
  3105. "require": {
  3106. "drupal/core": "^9 || ^10",
  3107. "php": ">=8.0"
  3108. },
  3109. "type": "drupal-module",
  3110. "extra": {
  3111. "drupal": {
  3112. "version": "4.0.0",
  3113. "datestamp": "1668457722",
  3114. "security-coverage": {
  3115. "status": "covered",
  3116. "message": "Covered by Drupal's security advisory policy"
  3117. }
  3118. }
  3119. },
  3120. "notification-url": "https://packages.drupal.org/8/downloads",
  3121. "license": [
  3122. "GPL-2.0-or-later"
  3123. ],
  3124. "authors": [
  3125. {
  3126. "name": "Walter Jenner",
  3127. "homepage": "https://drupal.org/u/valderama"
  3128. },
  3129. {
  3130. "name": "Sergii Bondarenko",
  3131. "homepage": "https://drupal.org/u/BR0kEN",
  3132. "email": "sb@firstvector.org"
  3133. },
  3134. {
  3135. "name": "Daneel Cruz",
  3136. "homepage": "https://drupal.org/u/daneelcm"
  3137. },
  3138. {
  3139. "name": "Purushotam Rai",
  3140. "homepage": "https://drupal.org/u/purushotam.rai"
  3141. }
  3142. ],
  3143. "description": "A simple client-side hierarchical select widget for taxonomy terms.",
  3144. "homepage": "https://www.drupal.org/project/cshs",
  3145. "keywords": [
  3146. "client-side-select",
  3147. "hierarchical-select",
  3148. "module",
  3149. "select",
  3150. "taxonomy"
  3151. ],
  3152. "support": {
  3153. "source": "https://git.drupalcode.org/project/cshs",
  3154. "issues": "https://www.drupal.org/project/issues/cshs"
  3155. }
  3156. },
  3157. {
  3158. "name": "drupal/ctools",
  3159. "version": "4.0.4",
  3160. "source": {
  3161. "type": "git",
  3162. "url": "https://git.drupalcode.org/project/ctools.git",
  3163. "reference": "4.0.4"
  3164. },
  3165. "dist": {
  3166. "type": "zip",
  3167. "url": "https://ftp.drupal.org/files/projects/ctools-4.0.4.zip",
  3168. "reference": "4.0.4",
  3169. "shasum": "4a2474eb2fd525b2add2db0e855c135ba7f0fb70"
  3170. },
  3171. "require": {
  3172. "drupal/core": "^9.3 || ^10"
  3173. },
  3174. "type": "drupal-module",
  3175. "extra": {
  3176. "drupal": {
  3177. "version": "4.0.4",
  3178. "datestamp": "1684299878",
  3179. "security-coverage": {
  3180. "status": "covered",
  3181. "message": "Covered by Drupal's security advisory policy"
  3182. }
  3183. },
  3184. "branch-alias": {
  3185. "dev-8.x-3.x": "3.x-dev"
  3186. }
  3187. },
  3188. "notification-url": "https://packages.drupal.org/8/downloads",
  3189. "license": [
  3190. "GPL-2.0-or-later"
  3191. ],
  3192. "authors": [
  3193. {
  3194. "name": "Kris Vanderwater (EclipseGc)",
  3195. "homepage": "https://www.drupal.org/u/eclipsegc",
  3196. "role": "Maintainer"
  3197. },
  3198. {
  3199. "name": "Jakob Perry (japerry)",
  3200. "homepage": "https://www.drupal.org/u/japerry",
  3201. "role": "Maintainer"
  3202. },
  3203. {
  3204. "name": "Tim Plunkett (tim.plunkett)",
  3205. "homepage": "https://www.drupal.org/u/timplunkett",
  3206. "role": "Maintainer"
  3207. },
  3208. {
  3209. "name": "James Gilliland (neclimdul)",
  3210. "homepage": "https://www.drupal.org/u/neclimdul",
  3211. "role": "Maintainer"
  3212. },
  3213. {
  3214. "name": "Daniel Wehner (dawehner)",
  3215. "homepage": "https://www.drupal.org/u/dawehner",
  3216. "role": "Maintainer"
  3217. },
  3218. {
  3219. "name": "joelpittet",
  3220. "homepage": "https://www.drupal.org/user/160302"
  3221. },
  3222. {
  3223. "name": "merlinofchaos",
  3224. "homepage": "https://www.drupal.org/user/26979"
  3225. },
  3226. {
  3227. "name": "neclimdul",
  3228. "homepage": "https://www.drupal.org/user/48673"
  3229. },
  3230. {
  3231. "name": "sdboyer",
  3232. "homepage": "https://www.drupal.org/user/146719"
  3233. },
  3234. {
  3235. "name": "sun",
  3236. "homepage": "https://www.drupal.org/user/54136"
  3237. },
  3238. {
  3239. "name": "tim.plunkett",
  3240. "homepage": "https://www.drupal.org/user/241634"
  3241. }
  3242. ],
  3243. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3244. "homepage": "https://www.drupal.org/project/ctools",
  3245. "support": {
  3246. "source": "https://git.drupalcode.org/project/ctools",
  3247. "issues": "https://www.drupal.org/project/issues/ctools"
  3248. }
  3249. },
  3250. {
  3251. "name": "drupal/date_range_formatter",
  3252. "version": "dev-9.0.x",
  3253. "source": {
  3254. "type": "git",
  3255. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3256. "reference": "8808a9c324c781b4a7cae9ea5f16017a6b8f63f7"
  3257. },
  3258. "require": {
  3259. "drupal/core": "^8 || ^9 || ^10"
  3260. },
  3261. "type": "drupal-module",
  3262. "extra": {
  3263. "branch-alias": {
  3264. "dev-9.0.x": "9.0.x-dev"
  3265. },
  3266. "drupal": {
  3267. "version": "9.0.x-dev",
  3268. "datestamp": "1661511425",
  3269. "security-coverage": {
  3270. "status": "not-covered",
  3271. "message": "Dev releases are not covered by Drupal security advisories."
  3272. }
  3273. }
  3274. },
  3275. "notification-url": "https://packages.drupal.org/8/downloads",
  3276. "license": [
  3277. "GPL-2.0-or-later"
  3278. ],
  3279. "authors": [
  3280. {
  3281. "name": "maximpodorov",
  3282. "homepage": "https://www.drupal.org/user/515310"
  3283. },
  3284. {
  3285. "name": "sudishth",
  3286. "homepage": "https://www.drupal.org/user/1440562"
  3287. }
  3288. ],
  3289. "description": "Formats date ranges.",
  3290. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3291. "support": {
  3292. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3293. }
  3294. },
  3295. {
  3296. "name": "drupal/devel",
  3297. "version": "5.1.2",
  3298. "source": {
  3299. "type": "git",
  3300. "url": "https://git.drupalcode.org/project/devel.git",
  3301. "reference": "5.1.2"
  3302. },
  3303. "dist": {
  3304. "type": "zip",
  3305. "url": "https://ftp.drupal.org/files/projects/devel-5.1.2.zip",
  3306. "reference": "5.1.2",
  3307. "shasum": "9b35e38bf2043bf87f88585b3d9100f38da8f07f"
  3308. },
  3309. "require": {
  3310. "doctrine/common": "^2.7 || ^3.4",
  3311. "drupal/core": "^9 || ^10",
  3312. "php": ">=7.4",
  3313. "symfony/var-dumper": "^4 || ^5 || ^6"
  3314. },
  3315. "conflict": {
  3316. "kint-php/kint": "<3"
  3317. },
  3318. "require-dev": {
  3319. "drush/drush": "^11"
  3320. },
  3321. "suggest": {
  3322. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3323. },
  3324. "type": "drupal-module",
  3325. "extra": {
  3326. "drupal": {
  3327. "version": "5.1.2",
  3328. "datestamp": "1686161028",
  3329. "security-coverage": {
  3330. "status": "covered",
  3331. "message": "Covered by Drupal's security advisory policy"
  3332. }
  3333. },
  3334. "drush": {
  3335. "services": {
  3336. "drush.services.yml": "^9 || ^10 || ^11"
  3337. }
  3338. }
  3339. },
  3340. "notification-url": "https://packages.drupal.org/8/downloads",
  3341. "license": [
  3342. "GPL-2.0-or-later"
  3343. ],
  3344. "authors": [
  3345. {
  3346. "name": "drupalspoons",
  3347. "homepage": "https://www.drupal.org/user/3647684"
  3348. },
  3349. {
  3350. "name": "moshe weitzman",
  3351. "homepage": "https://www.drupal.org/user/23"
  3352. }
  3353. ],
  3354. "description": "Various blocks, pages, and functions for developers.",
  3355. "homepage": "https://www.drupal.org/project/devel",
  3356. "support": {
  3357. "source": "https://gitlab.com/drupalspoons/devel",
  3358. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3359. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3360. }
  3361. },
  3362. {
  3363. "name": "drupal/devel_kint_extras",
  3364. "version": "1.1.0",
  3365. "source": {
  3366. "type": "git",
  3367. "url": "https://git.drupalcode.org/project/devel_kint_extras.git",
  3368. "reference": "1.1.0"
  3369. },
  3370. "dist": {
  3371. "type": "zip",
  3372. "url": "https://ftp.drupal.org/files/projects/devel_kint_extras-1.1.0.zip",
  3373. "reference": "1.1.0",
  3374. "shasum": "c9f485f6f2562710d2bd2c62f0073aa0049f5c8c"
  3375. },
  3376. "require": {
  3377. "drupal/core": "^9 || ^10",
  3378. "drupal/devel": "^4.0 || ^5.0",
  3379. "kint-php/kint": "^3.3 || ^4.0"
  3380. },
  3381. "type": "drupal-module",
  3382. "extra": {
  3383. "drupal": {
  3384. "version": "1.1.0",
  3385. "datestamp": "1663760998",
  3386. "security-coverage": {
  3387. "status": "covered",
  3388. "message": "Covered by Drupal's security advisory policy"
  3389. }
  3390. }
  3391. },
  3392. "notification-url": "https://packages.drupal.org/8/downloads",
  3393. "license": [
  3394. "GPL-2.0-or-later"
  3395. ],
  3396. "authors": [
  3397. {
  3398. "name": "Jan Chojnacki",
  3399. "homepage": "https://www.drupal.org/u/janchojnacki"
  3400. },
  3401. {
  3402. "name": "Other contributors",
  3403. "homepage": "https://www.drupal.org/node/3164492/committers"
  3404. }
  3405. ],
  3406. "description": "Shows methods and statics available for an object when using Kint with Devel",
  3407. "homepage": "https://www.drupal.org/project/devel_kint_extras",
  3408. "support": {
  3409. "source": "http://git.drupal.org/project/devel_kint_extras.git",
  3410. "issues": "https://www.drupal.org/project/issues/devel_kint_extras",
  3411. "chat": "irc://irc.freenode.org/drupal-contribute"
  3412. }
  3413. },
  3414. {
  3415. "name": "drupal/email_registration",
  3416. "version": "1.4.0",
  3417. "source": {
  3418. "type": "git",
  3419. "url": "https://git.drupalcode.org/project/email_registration.git",
  3420. "reference": "8.x-1.4"
  3421. },
  3422. "dist": {
  3423. "type": "zip",
  3424. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.4.zip",
  3425. "reference": "8.x-1.4",
  3426. "shasum": "fe7a91b858a98533fc1d7550b0917fc80523f186"
  3427. },
  3428. "require": {
  3429. "drupal/core": "^9.1 || ^10"
  3430. },
  3431. "conflict": {
  3432. "drupal/commerce": "<2.12"
  3433. },
  3434. "require-dev": {
  3435. "drupal/commerce": "^2.0",
  3436. "drupal/token": "*"
  3437. },
  3438. "type": "drupal-module",
  3439. "extra": {
  3440. "drupal": {
  3441. "version": "8.x-1.4",
  3442. "datestamp": "1700548925",
  3443. "security-coverage": {
  3444. "status": "covered",
  3445. "message": "Covered by Drupal's security advisory policy"
  3446. }
  3447. }
  3448. },
  3449. "notification-url": "https://packages.drupal.org/8/downloads",
  3450. "license": [
  3451. "GPL-2.0-or-later"
  3452. ],
  3453. "authors": [
  3454. {
  3455. "name": "Greg Knaddison (greggles)",
  3456. "homepage": "https://www.drupal.org/u/greggles",
  3457. "role": "Maintainer"
  3458. },
  3459. {
  3460. "name": "Andrey Postnikov (andypost)",
  3461. "homepage": "https://www.drupal.org/u/andypost",
  3462. "role": "Maintainer"
  3463. },
  3464. {
  3465. "name": "Chris Herberte",
  3466. "homepage": "https://www.drupal.org/u/chris-herberte",
  3467. "role": "Maintainer"
  3468. },
  3469. {
  3470. "name": "Moshe Weitzman (moshe weitzman)",
  3471. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3472. "role": "Maintainer"
  3473. },
  3474. {
  3475. "name": "Grevil",
  3476. "homepage": "https://www.drupal.org/user/3668491"
  3477. },
  3478. {
  3479. "name": "moshe weitzman",
  3480. "homepage": "https://www.drupal.org/user/23"
  3481. }
  3482. ],
  3483. "description": "Allows users to register with an email address as their username.",
  3484. "homepage": "https://www.drupal.org/project/email_registration",
  3485. "support": {
  3486. "source": "https://git.drupalcode.org/project/email_registration",
  3487. "issues": "http://drupal.org/project/issues/email_registration"
  3488. }
  3489. },
  3490. {
  3491. "name": "drupal/embed",
  3492. "version": "1.7.0",
  3493. "source": {
  3494. "type": "git",
  3495. "url": "https://git.drupalcode.org/project/embed.git",
  3496. "reference": "8.x-1.7"
  3497. },
  3498. "dist": {
  3499. "type": "zip",
  3500. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.7.zip",
  3501. "reference": "8.x-1.7",
  3502. "shasum": "b7ca4264be51038f947d26b6725fc0446b224f60"
  3503. },
  3504. "require": {
  3505. "drupal/core": "^9.3 | ^10"
  3506. },
  3507. "require-dev": {
  3508. "drupal/ckeditor": "*"
  3509. },
  3510. "type": "drupal-module",
  3511. "extra": {
  3512. "drupal": {
  3513. "version": "8.x-1.7",
  3514. "datestamp": "1697642867",
  3515. "security-coverage": {
  3516. "status": "covered",
  3517. "message": "Covered by Drupal's security advisory policy"
  3518. }
  3519. }
  3520. },
  3521. "notification-url": "https://packages.drupal.org/8/downloads",
  3522. "license": [
  3523. "GPL-2.0-or-later"
  3524. ],
  3525. "authors": [
  3526. {
  3527. "name": "cs_shadow",
  3528. "homepage": "https://www.drupal.org/user/2828287"
  3529. },
  3530. {
  3531. "name": "Dave Reid",
  3532. "homepage": "https://www.drupal.org/user/53892"
  3533. },
  3534. {
  3535. "name": "Devin Carlson",
  3536. "homepage": "https://www.drupal.org/user/290182"
  3537. },
  3538. {
  3539. "name": "Drupal Media Team",
  3540. "homepage": "https://www.drupal.org/user/3260690"
  3541. },
  3542. {
  3543. "name": "phenaproxima",
  3544. "homepage": "https://www.drupal.org/user/205645"
  3545. },
  3546. {
  3547. "name": "slashrsm",
  3548. "homepage": "https://www.drupal.org/user/744628"
  3549. }
  3550. ],
  3551. "description": "Provides a framework for different types of embeds in text editors.",
  3552. "homepage": "https://www.drupal.org/project/embed",
  3553. "support": {
  3554. "source": "https://git.drupalcode.org/project/embed"
  3555. }
  3556. },
  3557. {
  3558. "name": "drupal/entity",
  3559. "version": "1.4.0",
  3560. "source": {
  3561. "type": "git",
  3562. "url": "https://git.drupalcode.org/project/entity.git",
  3563. "reference": "8.x-1.4"
  3564. },
  3565. "dist": {
  3566. "type": "zip",
  3567. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.4.zip",
  3568. "reference": "8.x-1.4",
  3569. "shasum": "1cf7712318fad144eab106a8fcfcd396aeb5676f"
  3570. },
  3571. "require": {
  3572. "drupal/core": "^9.2|^10.0"
  3573. },
  3574. "type": "drupal-module",
  3575. "extra": {
  3576. "drupal": {
  3577. "version": "8.x-1.4",
  3578. "datestamp": "1661898023",
  3579. "security-coverage": {
  3580. "status": "covered",
  3581. "message": "Covered by Drupal's security advisory policy"
  3582. }
  3583. }
  3584. },
  3585. "notification-url": "https://packages.drupal.org/8/downloads",
  3586. "license": [
  3587. "GPL-2.0-or-later"
  3588. ],
  3589. "authors": [
  3590. {
  3591. "name": "Berdir",
  3592. "homepage": "https://www.drupal.org/user/214652"
  3593. },
  3594. {
  3595. "name": "bojanz",
  3596. "homepage": "https://www.drupal.org/user/86106"
  3597. },
  3598. {
  3599. "name": "dawehner",
  3600. "homepage": "https://www.drupal.org/user/99340"
  3601. },
  3602. {
  3603. "name": "dixon_",
  3604. "homepage": "https://www.drupal.org/user/239911"
  3605. },
  3606. {
  3607. "name": "fago",
  3608. "homepage": "https://www.drupal.org/user/16747"
  3609. },
  3610. {
  3611. "name": "mglaman",
  3612. "homepage": "https://www.drupal.org/user/2416470"
  3613. },
  3614. {
  3615. "name": "TR",
  3616. "homepage": "https://www.drupal.org/user/202830"
  3617. }
  3618. ],
  3619. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3620. "homepage": "https://www.drupal.org/project/entity",
  3621. "support": {
  3622. "source": "https://git.drupalcode.org/project/entity",
  3623. "issues": "https://www.drupal.org/project/issues/entity"
  3624. }
  3625. },
  3626. {
  3627. "name": "drupal/entity_browser",
  3628. "version": "2.9.0",
  3629. "source": {
  3630. "type": "git",
  3631. "url": "https://git.drupalcode.org/project/entity_browser.git",
  3632. "reference": "8.x-2.9"
  3633. },
  3634. "dist": {
  3635. "type": "zip",
  3636. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.9.zip",
  3637. "reference": "8.x-2.9",
  3638. "shasum": "251afad80cde9fa547501a8d9de5d94b9f5bacff"
  3639. },
  3640. "require": {
  3641. "drupal/core": "^9.2 || ^10"
  3642. },
  3643. "require-dev": {
  3644. "drupal/embed": "~1.0",
  3645. "drupal/entity_embed": "1.x-dev",
  3646. "drupal/entity_reference_revisions": "1.x-dev",
  3647. "drupal/entityqueue": "1.x-dev",
  3648. "drupal/inline_entity_form": "1.x-dev",
  3649. "drupal/paragraphs": "1.x-dev",
  3650. "drupal/token": "1.x-dev"
  3651. },
  3652. "type": "drupal-module",
  3653. "extra": {
  3654. "drupal": {
  3655. "version": "8.x-2.9",
  3656. "datestamp": "1674070933",
  3657. "security-coverage": {
  3658. "status": "covered",
  3659. "message": "Covered by Drupal's security advisory policy"
  3660. }
  3661. }
  3662. },
  3663. "notification-url": "https://packages.drupal.org/8/downloads",
  3664. "license": [
  3665. "GPL-2.0+"
  3666. ],
  3667. "authors": [
  3668. {
  3669. "name": "Janez Urevc",
  3670. "homepage": "https://github.com/slashrsm",
  3671. "role": "Maintainer"
  3672. },
  3673. {
  3674. "name": "Primoz Hmeljak",
  3675. "homepage": "https://github.com/primsi",
  3676. "role": "Maintainer"
  3677. },
  3678. {
  3679. "name": "See other contributors",
  3680. "homepage": "https://www.drupal.org/node/1943336/committers",
  3681. "role": "contributor"
  3682. },
  3683. {
  3684. "name": "Drupal Media Team",
  3685. "homepage": "https://www.drupal.org/user/3260690"
  3686. },
  3687. {
  3688. "name": "marcingy",
  3689. "homepage": "https://www.drupal.org/user/77320"
  3690. },
  3691. {
  3692. "name": "oknate",
  3693. "homepage": "https://www.drupal.org/user/471638"
  3694. },
  3695. {
  3696. "name": "Primsi",
  3697. "homepage": "https://www.drupal.org/user/282629"
  3698. },
  3699. {
  3700. "name": "samuel.mortenson",
  3701. "homepage": "https://www.drupal.org/user/2582268"
  3702. },
  3703. {
  3704. "name": "slashrsm",
  3705. "homepage": "https://www.drupal.org/user/744628"
  3706. }
  3707. ],
  3708. "description": "Entity browsing and selecting component.",
  3709. "homepage": "http://drupal.org/project/entity_browser",
  3710. "support": {
  3711. "source": "https://git.drupalcode.org/project/entity_browser",
  3712. "issues": "https://www.drupal.org/project/issues/entity_browser",
  3713. "irc": "irc://irc.freenode.org/drupal-contribute"
  3714. }
  3715. },
  3716. {
  3717. "name": "drupal/entity_browser_enhanced",
  3718. "version": "2.0.0",
  3719. "source": {
  3720. "type": "git",
  3721. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  3722. "reference": "2.0.0"
  3723. },
  3724. "dist": {
  3725. "type": "zip",
  3726. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-2.0.0.zip",
  3727. "reference": "2.0.0",
  3728. "shasum": "2880829c847c1c4b06092ab5335adb6ea960317b"
  3729. },
  3730. "require": {
  3731. "drupal/core": "^9 || ^10",
  3732. "drupal/entity_browser": "~2.0"
  3733. },
  3734. "type": "drupal-module",
  3735. "extra": {
  3736. "drupal": {
  3737. "version": "2.0.0",
  3738. "datestamp": "1697211243",
  3739. "security-coverage": {
  3740. "status": "covered",
  3741. "message": "Covered by Drupal's security advisory policy"
  3742. }
  3743. }
  3744. },
  3745. "notification-url": "https://packages.drupal.org/8/downloads",
  3746. "license": [
  3747. "GPL-2.0-or-later"
  3748. ],
  3749. "authors": [
  3750. {
  3751. "name": "Vardot",
  3752. "homepage": "https://www.drupal.org/vardot",
  3753. "role": "Maintainer"
  3754. },
  3755. {
  3756. "name": "Rajab Natshah",
  3757. "homepage": "https://www.drupal.org/user/1414312"
  3758. }
  3759. ],
  3760. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  3761. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  3762. "support": {
  3763. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  3764. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  3765. }
  3766. },
  3767. {
  3768. "name": "drupal/entity_clone",
  3769. "version": "dev-2.x",
  3770. "source": {
  3771. "type": "git",
  3772. "url": "https://git.drupalcode.org/project/entity_clone.git",
  3773. "reference": "5cbfafdbc860cbda7bef91c89628aefca25efe7b"
  3774. },
  3775. "require": {
  3776. "drupal/core": "^8.8 || ^9 || ^10"
  3777. },
  3778. "require-dev": {
  3779. "drupal/entity_browser": "2.x-dev",
  3780. "drupal/entity_usage": "2.x-dev",
  3781. "drupal/paragraphs": "^1.0",
  3782. "drupal/search_api": "~1.0"
  3783. },
  3784. "type": "drupal-module",
  3785. "extra": {
  3786. "branch-alias": {
  3787. "dev-2.x": "2.x-dev"
  3788. },
  3789. "drupal": {
  3790. "version": "2.0.0-beta4+3-dev",
  3791. "datestamp": "1697545494",
  3792. "security-coverage": {
  3793. "status": "not-covered",
  3794. "message": "Dev releases are not covered by Drupal security advisories."
  3795. }
  3796. }
  3797. },
  3798. "notification-url": "https://packages.drupal.org/8/downloads",
  3799. "license": [
  3800. "GPL-2.0-or-later"
  3801. ],
  3802. "authors": [
  3803. {
  3804. "name": "colan",
  3805. "homepage": "https://www.drupal.org/user/58704"
  3806. },
  3807. {
  3808. "name": "joevagyok",
  3809. "homepage": "https://www.drupal.org/user/2876343"
  3810. },
  3811. {
  3812. "name": "NickDickinsonWilde",
  3813. "homepage": "https://www.drupal.org/user/3094661"
  3814. },
  3815. {
  3816. "name": "Rajeshreeputra",
  3817. "homepage": "https://www.drupal.org/user/3418561"
  3818. },
  3819. {
  3820. "name": "Upchuk",
  3821. "homepage": "https://www.drupal.org/user/1885838"
  3822. },
  3823. {
  3824. "name": "vpeltot",
  3825. "homepage": "https://www.drupal.org/user/1361586"
  3826. }
  3827. ],
  3828. "description": "Add a clone action for all entities.",
  3829. "homepage": "https://drupal.org/project/entity_clone",
  3830. "support": {
  3831. "source": "https://git.drupalcode.org/project/entity_clone"
  3832. }
  3833. },
  3834. {
  3835. "name": "drupal/extlink",
  3836. "version": "1.7.0",
  3837. "source": {
  3838. "type": "git",
  3839. "url": "https://git.drupalcode.org/project/extlink.git",
  3840. "reference": "8.x-1.7"
  3841. },
  3842. "dist": {
  3843. "type": "zip",
  3844. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.7.zip",
  3845. "reference": "8.x-1.7",
  3846. "shasum": "38650688b5a58496db59f40b2a7f36c4bedcbfb4"
  3847. },
  3848. "require": {
  3849. "drupal/core": "^8 || ^9 || ^10"
  3850. },
  3851. "type": "drupal-module",
  3852. "extra": {
  3853. "drupal": {
  3854. "version": "8.x-1.7",
  3855. "datestamp": "1665770295",
  3856. "security-coverage": {
  3857. "status": "covered",
  3858. "message": "Covered by Drupal's security advisory policy"
  3859. }
  3860. }
  3861. },
  3862. "notification-url": "https://packages.drupal.org/8/downloads",
  3863. "license": [
  3864. "GPL-2.0-or-later"
  3865. ],
  3866. "authors": [
  3867. {
  3868. "name": "Nate Lampton",
  3869. "homepage": "https://www.drupal.org/u/quicksketch",
  3870. "role": "Maintainer"
  3871. },
  3872. {
  3873. "name": "Lachlan Ennis",
  3874. "homepage": "https://www.drupal.org/u/elachlan",
  3875. "role": "Maintainer"
  3876. },
  3877. {
  3878. "name": "Neslee Canil Pinto",
  3879. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  3880. "role": "Maintainer"
  3881. }
  3882. ],
  3883. "description": "Modify behavior and appearance of external links.",
  3884. "homepage": "https://www.drupal.org/project/extlink",
  3885. "keywords": [
  3886. "Drupal",
  3887. "External Links"
  3888. ],
  3889. "support": {
  3890. "source": "https://git.drupalcode.org/project/extlink",
  3891. "issues": "https://www.drupal.org/project/issues/extlink"
  3892. }
  3893. },
  3894. {
  3895. "name": "drupal/field_group",
  3896. "version": "dev-3.x",
  3897. "source": {
  3898. "type": "git",
  3899. "url": "https://git.drupalcode.org/project/field_group.git",
  3900. "reference": "1211c8f4e06592418ca368afe88ef9aa237e900a"
  3901. },
  3902. "require": {
  3903. "drupal/core": "^9.2 || ^10"
  3904. },
  3905. "type": "drupal-module",
  3906. "extra": {
  3907. "branch-alias": {
  3908. "dev-3.x": "3.x-dev"
  3909. },
  3910. "drupal": {
  3911. "version": "8.x-3.4+4-dev",
  3912. "datestamp": "1696831482",
  3913. "security-coverage": {
  3914. "status": "not-covered",
  3915. "message": "Dev releases are not covered by Drupal security advisories."
  3916. }
  3917. }
  3918. },
  3919. "notification-url": "https://packages.drupal.org/8/downloads",
  3920. "license": [
  3921. "GPL-2.0-or-later"
  3922. ],
  3923. "authors": [
  3924. {
  3925. "name": "Anybody",
  3926. "homepage": "https://www.drupal.org/user/291091"
  3927. },
  3928. {
  3929. "name": "Hydra",
  3930. "homepage": "https://www.drupal.org/user/647364"
  3931. },
  3932. {
  3933. "name": "jyve",
  3934. "homepage": "https://www.drupal.org/user/591438"
  3935. },
  3936. {
  3937. "name": "nils.destoop",
  3938. "homepage": "https://www.drupal.org/user/361625"
  3939. },
  3940. {
  3941. "name": "Stalski",
  3942. "homepage": "https://www.drupal.org/user/322618"
  3943. },
  3944. {
  3945. "name": "swentel",
  3946. "homepage": "https://www.drupal.org/user/107403"
  3947. }
  3948. ],
  3949. "description": "Provides the field_group module.",
  3950. "homepage": "https://www.drupal.org/project/field_group",
  3951. "support": {
  3952. "source": "https://git.drupalcode.org/project/field_group",
  3953. "issues": "https://www.drupal.org/project/issues/field_group"
  3954. }
  3955. },
  3956. {
  3957. "name": "drupal/file_mdm",
  3958. "version": "2.6.0",
  3959. "source": {
  3960. "type": "git",
  3961. "url": "https://git.drupalcode.org/project/file_mdm.git",
  3962. "reference": "8.x-2.6"
  3963. },
  3964. "dist": {
  3965. "type": "zip",
  3966. "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-2.6.zip",
  3967. "reference": "8.x-2.6",
  3968. "shasum": "56c7c06107ce6e249b6d644136e6807573efb0e3"
  3969. },
  3970. "require": {
  3971. "drupal/core": "^9.3 | ^10",
  3972. "fileeye/pel": "^0.9.20",
  3973. "phenx/php-font-lib": "^0.5.4"
  3974. },
  3975. "require-dev": {
  3976. "drupal/vendor_stream_wrapper": "^2.0.2",
  3977. "fileeye/linuxlibertine-fonts": "^5.3"
  3978. },
  3979. "type": "drupal-module",
  3980. "extra": {
  3981. "drupal": {
  3982. "version": "8.x-2.6",
  3983. "datestamp": "1688489716",
  3984. "security-coverage": {
  3985. "status": "covered",
  3986. "message": "Covered by Drupal's security advisory policy"
  3987. }
  3988. }
  3989. },
  3990. "notification-url": "https://packages.drupal.org/8/downloads",
  3991. "license": [
  3992. "GPL-2.0-or-later"
  3993. ],
  3994. "authors": [
  3995. {
  3996. "name": "mondrake",
  3997. "homepage": "https://www.drupal.org/user/1307444"
  3998. }
  3999. ],
  4000. "description": "Provides a service to manage file metadata.",
  4001. "homepage": "https://www.drupal.org/project/file_mdm",
  4002. "support": {
  4003. "source": "https://git.drupalcode.org/project/file_mdm"
  4004. }
  4005. },
  4006. {
  4007. "name": "drupal/filter_perms",
  4008. "version": "dev-1.x",
  4009. "source": {
  4010. "type": "git",
  4011. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4012. "reference": "1ba486b620e0c0ea1c323cfcadb0f965d9022d1c"
  4013. },
  4014. "require": {
  4015. "drupal/core": "^9.0 || ^10.0"
  4016. },
  4017. "type": "drupal-module",
  4018. "extra": {
  4019. "branch-alias": {
  4020. "dev-1.x": "1.x-dev"
  4021. },
  4022. "drupal": {
  4023. "version": "8.x-1.0-alpha2+1-dev",
  4024. "datestamp": "1697635045",
  4025. "security-coverage": {
  4026. "status": "not-covered",
  4027. "message": "Dev releases are not covered by Drupal security advisories."
  4028. }
  4029. }
  4030. },
  4031. "notification-url": "https://packages.drupal.org/8/downloads",
  4032. "license": [
  4033. "GPL-2.0+"
  4034. ],
  4035. "authors": [
  4036. {
  4037. "name": "cYu",
  4038. "homepage": "https://www.drupal.org/user/202205"
  4039. },
  4040. {
  4041. "name": "deekayen",
  4042. "homepage": "https://www.drupal.org/user/972"
  4043. },
  4044. {
  4045. "name": "ivavictoria",
  4046. "homepage": "https://www.drupal.org/user/3061533"
  4047. },
  4048. {
  4049. "name": "justcaldwell",
  4050. "homepage": "https://www.drupal.org/user/290069"
  4051. },
  4052. {
  4053. "name": "mgbellaire",
  4054. "homepage": "https://www.drupal.org/user/1831932"
  4055. },
  4056. {
  4057. "name": "willzyx",
  4058. "homepage": "https://www.drupal.org/user/1043862"
  4059. }
  4060. ],
  4061. "description": "Provides role and module filters to simplify the user permissions page.",
  4062. "homepage": "https://www.drupal.org/project/filter_perms",
  4063. "support": {
  4064. "source": "http://cgit.drupalcode.org/filter_perms",
  4065. "issues": "https://www.drupal.org/project/issues/filter_perms?categories=All"
  4066. }
  4067. },
  4068. {
  4069. "name": "drupal/formatter_suite",
  4070. "version": "2.0.0",
  4071. "source": {
  4072. "type": "git",
  4073. "url": "https://git.drupalcode.org/project/formatter_suite.git",
  4074. "reference": "2.0.0"
  4075. },
  4076. "dist": {
  4077. "type": "zip",
  4078. "url": "https://ftp.drupal.org/files/projects/formatter_suite-2.0.0.zip",
  4079. "reference": "2.0.0",
  4080. "shasum": "1c6c0fc11d381c10a7b13c51ec2848ae91b40cec"
  4081. },
  4082. "require": {
  4083. "drupal/core": "^9 || ^10"
  4084. },
  4085. "type": "drupal-module",
  4086. "extra": {
  4087. "drupal": {
  4088. "version": "2.0.0",
  4089. "datestamp": "1694036572",
  4090. "security-coverage": {
  4091. "status": "covered",
  4092. "message": "Covered by Drupal's security advisory policy"
  4093. }
  4094. }
  4095. },
  4096. "notification-url": "https://packages.drupal.org/8/downloads",
  4097. "license": [
  4098. "GPL-2.0-or-later"
  4099. ],
  4100. "authors": [
  4101. {
  4102. "name": "thecooltechguy",
  4103. "homepage": "https://www.drupal.org/user/3674323"
  4104. },
  4105. {
  4106. "name": "toamit",
  4107. "homepage": "https://www.drupal.org/user/2820523"
  4108. }
  4109. ],
  4110. "description": "Field formaters to present numbers, text, links, etc.",
  4111. "homepage": "https://www.drupal.org/project/formatter_suite",
  4112. "keywords": [
  4113. "Drupal",
  4114. "Format"
  4115. ],
  4116. "support": {
  4117. "source": "http://cgit.drupalcode.org/formatter_suite",
  4118. "issues": "http://drupal.org/project/issues/formatter_suite"
  4119. }
  4120. },
  4121. {
  4122. "name": "drupal/honeypot",
  4123. "version": "2.1.3",
  4124. "source": {
  4125. "type": "git",
  4126. "url": "https://git.drupalcode.org/project/honeypot.git",
  4127. "reference": "2.1.3"
  4128. },
  4129. "dist": {
  4130. "type": "zip",
  4131. "url": "https://ftp.drupal.org/files/projects/honeypot-2.1.3.zip",
  4132. "reference": "2.1.3",
  4133. "shasum": "101105029a10a574ef6017824182500ab9905856"
  4134. },
  4135. "require": {
  4136. "drupal/core": "^9.2 || ^10"
  4137. },
  4138. "require-dev": {
  4139. "drupal/rules": "^3.0"
  4140. },
  4141. "type": "drupal-module",
  4142. "extra": {
  4143. "drupal": {
  4144. "version": "2.1.3",
  4145. "datestamp": "1695604754",
  4146. "security-coverage": {
  4147. "status": "covered",
  4148. "message": "Covered by Drupal's security advisory policy"
  4149. }
  4150. }
  4151. },
  4152. "notification-url": "https://packages.drupal.org/8/downloads",
  4153. "license": [
  4154. "GPL-2.0-or-later"
  4155. ],
  4156. "authors": [
  4157. {
  4158. "name": "Jeff Geerling",
  4159. "homepage": "https://www.drupal.org/user/389011",
  4160. "email": "geerlingguy@mac.com"
  4161. },
  4162. {
  4163. "name": "Manuel Garcia",
  4164. "homepage": "https://www.drupal.org/user/213194"
  4165. },
  4166. {
  4167. "name": "TR",
  4168. "homepage": "https://www.drupal.org/user/202830"
  4169. },
  4170. {
  4171. "name": "vijaycs85",
  4172. "homepage": "https://www.drupal.org/user/93488"
  4173. }
  4174. ],
  4175. "description": "Mitigates spam form submissions using the honeypot method.",
  4176. "homepage": "https://www.drupal.org/project/honeypot",
  4177. "keywords": [
  4178. "deterrent",
  4179. "form",
  4180. "honeypot",
  4181. "honeytrap",
  4182. "php",
  4183. "spam"
  4184. ],
  4185. "support": {
  4186. "source": "https://git.drupalcode.org/project/honeypot",
  4187. "issues": "https://www.drupal.org/project/issues/honeypot"
  4188. }
  4189. },
  4190. {
  4191. "name": "drupal/imagemagick",
  4192. "version": "3.4.0",
  4193. "source": {
  4194. "type": "git",
  4195. "url": "https://git.drupalcode.org/project/imagemagick.git",
  4196. "reference": "8.x-3.4"
  4197. },
  4198. "dist": {
  4199. "type": "zip",
  4200. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-3.4.zip",
  4201. "reference": "8.x-3.4",
  4202. "shasum": "9f07b7db4bba2cb0e4ff004629f8f78242bb7226"
  4203. },
  4204. "require": {
  4205. "drupal/core": "^9.3 || ^10",
  4206. "drupal/file_mdm": "^2.5",
  4207. "drupal/sophron": "^1.2 || ^2"
  4208. },
  4209. "type": "drupal-module",
  4210. "extra": {
  4211. "drupal": {
  4212. "version": "8.x-3.4",
  4213. "datestamp": "1663947784",
  4214. "security-coverage": {
  4215. "status": "covered",
  4216. "message": "Covered by Drupal's security advisory policy"
  4217. }
  4218. }
  4219. },
  4220. "notification-url": "https://packages.drupal.org/8/downloads",
  4221. "license": [
  4222. "GPL-2.0-or-later"
  4223. ],
  4224. "authors": [
  4225. {
  4226. "name": "Chris Charlton",
  4227. "homepage": "https://www.drupal.org/user/17089"
  4228. },
  4229. {
  4230. "name": "chx",
  4231. "homepage": "https://www.drupal.org/user/9446"
  4232. },
  4233. {
  4234. "name": "claudiu.cristea",
  4235. "homepage": "https://www.drupal.org/user/56348"
  4236. },
  4237. {
  4238. "name": "dman",
  4239. "homepage": "https://www.drupal.org/user/33240"
  4240. },
  4241. {
  4242. "name": "dopry",
  4243. "homepage": "https://www.drupal.org/user/22202"
  4244. },
  4245. {
  4246. "name": "drewish",
  4247. "homepage": "https://www.drupal.org/user/34869"
  4248. },
  4249. {
  4250. "name": "gdl",
  4251. "homepage": "https://www.drupal.org/user/507326"
  4252. },
  4253. {
  4254. "name": "mondrake",
  4255. "homepage": "https://www.drupal.org/user/1307444"
  4256. },
  4257. {
  4258. "name": "quicksketch",
  4259. "homepage": "https://www.drupal.org/user/35821"
  4260. },
  4261. {
  4262. "name": "sun",
  4263. "homepage": "https://www.drupal.org/user/54136"
  4264. },
  4265. {
  4266. "name": "walkah",
  4267. "homepage": "https://www.drupal.org/user/1531"
  4268. }
  4269. ],
  4270. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  4271. "homepage": "https://www.drupal.org/project/imagemagick",
  4272. "support": {
  4273. "source": "https://git.drupalcode.org/project/imagemagick"
  4274. }
  4275. },
  4276. {
  4277. "name": "drupal/inline_entity_form",
  4278. "version": "1.0.0-rc15",
  4279. "source": {
  4280. "type": "git",
  4281. "url": "https://git.drupalcode.org/project/inline_entity_form.git",
  4282. "reference": "8.x-1.0-rc15"
  4283. },
  4284. "dist": {
  4285. "type": "zip",
  4286. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc15.zip",
  4287. "reference": "8.x-1.0-rc15",
  4288. "shasum": "7702801f7e599956fc3d10cff8257809f53ac3ec"
  4289. },
  4290. "require": {
  4291. "drupal/core": "^8.8 || ^9 || ^10",
  4292. "php": ">=7.1"
  4293. },
  4294. "require-dev": {
  4295. "drupal/entity_reference_revisions": "^1.0"
  4296. },
  4297. "type": "drupal-module",
  4298. "extra": {
  4299. "drupal": {
  4300. "version": "8.x-1.0-rc15",
  4301. "datestamp": "1678126675",
  4302. "security-coverage": {
  4303. "status": "not-covered",
  4304. "message": "RC releases are not covered by Drupal security advisories."
  4305. }
  4306. }
  4307. },
  4308. "notification-url": "https://packages.drupal.org/8/downloads",
  4309. "license": [
  4310. "GPL-2.0-or-later"
  4311. ],
  4312. "authors": [
  4313. {
  4314. "name": "bojanz",
  4315. "homepage": "https://www.drupal.org/user/86106"
  4316. },
  4317. {
  4318. "name": "Centarro",
  4319. "homepage": "https://www.drupal.org/user/3661446"
  4320. },
  4321. {
  4322. "name": "dawehner",
  4323. "homepage": "https://www.drupal.org/user/99340"
  4324. },
  4325. {
  4326. "name": "geek-merlin",
  4327. "homepage": "https://www.drupal.org/user/229048"
  4328. },
  4329. {
  4330. "name": "joachim",
  4331. "homepage": "https://www.drupal.org/user/107701"
  4332. },
  4333. {
  4334. "name": "jsacksick",
  4335. "homepage": "https://www.drupal.org/user/972218"
  4336. },
  4337. {
  4338. "name": "oknate",
  4339. "homepage": "https://www.drupal.org/user/471638"
  4340. },
  4341. {
  4342. "name": "podarok",
  4343. "homepage": "https://www.drupal.org/user/116002"
  4344. },
  4345. {
  4346. "name": "ram4nd",
  4347. "homepage": "https://www.drupal.org/user/601534"
  4348. },
  4349. {
  4350. "name": "rszrama",
  4351. "homepage": "https://www.drupal.org/user/49344"
  4352. },
  4353. {
  4354. "name": "slashrsm",
  4355. "homepage": "https://www.drupal.org/user/744628"
  4356. },
  4357. {
  4358. "name": "webflo",
  4359. "homepage": "https://www.drupal.org/user/254778"
  4360. }
  4361. ],
  4362. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  4363. "homepage": "https://www.drupal.org/project/inline_entity_form",
  4364. "support": {
  4365. "source": "https://git.drupalcode.org/project/inline_entity_form"
  4366. }
  4367. },
  4368. {
  4369. "name": "drupal/jquery_ui",
  4370. "version": "1.6.0",
  4371. "source": {
  4372. "type": "git",
  4373. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  4374. "reference": "8.x-1.6"
  4375. },
  4376. "dist": {
  4377. "type": "zip",
  4378. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.6.zip",
  4379. "reference": "8.x-1.6",
  4380. "shasum": "0ddccdcf35a066de1843e1d9670677ee1a2faac0"
  4381. },
  4382. "require": {
  4383. "drupal/core": "^9.2 || ^10"
  4384. },
  4385. "type": "drupal-module",
  4386. "extra": {
  4387. "drupal": {
  4388. "version": "8.x-1.6",
  4389. "datestamp": "1668521197",
  4390. "security-coverage": {
  4391. "status": "covered",
  4392. "message": "Covered by Drupal's security advisory policy"
  4393. }
  4394. }
  4395. },
  4396. "notification-url": "https://packages.drupal.org/8/downloads",
  4397. "license": [
  4398. "GPL-2.0-or-later"
  4399. ],
  4400. "authors": [
  4401. {
  4402. "name": "bnjmnm",
  4403. "homepage": "https://www.drupal.org/user/2369194"
  4404. },
  4405. {
  4406. "name": "jjeff",
  4407. "homepage": "https://www.drupal.org/user/17190"
  4408. },
  4409. {
  4410. "name": "lauriii",
  4411. "homepage": "https://www.drupal.org/user/1078742"
  4412. },
  4413. {
  4414. "name": "litwol",
  4415. "homepage": "https://www.drupal.org/user/78134"
  4416. },
  4417. {
  4418. "name": "mfb",
  4419. "homepage": "https://www.drupal.org/user/12302"
  4420. },
  4421. {
  4422. "name": "mfer",
  4423. "homepage": "https://www.drupal.org/user/25701"
  4424. },
  4425. {
  4426. "name": "mikelutz",
  4427. "homepage": "https://www.drupal.org/user/2972409"
  4428. },
  4429. {
  4430. "name": "nod_",
  4431. "homepage": "https://www.drupal.org/user/598310"
  4432. },
  4433. {
  4434. "name": "phenaproxima",
  4435. "homepage": "https://www.drupal.org/user/205645"
  4436. },
  4437. {
  4438. "name": "RobLoach",
  4439. "homepage": "https://www.drupal.org/user/61114"
  4440. },
  4441. {
  4442. "name": "sun",
  4443. "homepage": "https://www.drupal.org/user/54136"
  4444. },
  4445. {
  4446. "name": "webchick",
  4447. "homepage": "https://www.drupal.org/user/24967"
  4448. },
  4449. {
  4450. "name": "Wim Leers",
  4451. "homepage": "https://www.drupal.org/user/99777"
  4452. },
  4453. {
  4454. "name": "zrpnr",
  4455. "homepage": "https://www.drupal.org/user/1448368"
  4456. }
  4457. ],
  4458. "description": "Provides jQuery UI library.",
  4459. "homepage": "https://www.drupal.org/project/jquery_ui",
  4460. "support": {
  4461. "source": "https://git.drupalcode.org/project/jquery_ui"
  4462. }
  4463. },
  4464. {
  4465. "name": "drupal/jquery_ui_datepicker",
  4466. "version": "2.0.0",
  4467. "source": {
  4468. "type": "git",
  4469. "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
  4470. "reference": "2.0.0"
  4471. },
  4472. "dist": {
  4473. "type": "zip",
  4474. "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-2.0.0.zip",
  4475. "reference": "2.0.0",
  4476. "shasum": "ce40cf8ab400866bffda1ac3f7e4a5ac20bb3ae5"
  4477. },
  4478. "require": {
  4479. "drupal/core": "^9.2 || ^10",
  4480. "drupal/jquery_ui": "^1.6"
  4481. },
  4482. "type": "drupal-module",
  4483. "extra": {
  4484. "drupal": {
  4485. "version": "2.0.0",
  4486. "datestamp": "1670871494",
  4487. "security-coverage": {
  4488. "status": "covered",
  4489. "message": "Covered by Drupal's security advisory policy"
  4490. }
  4491. }
  4492. },
  4493. "notification-url": "https://packages.drupal.org/8/downloads",
  4494. "license": [
  4495. "GPL-2.0-or-later"
  4496. ],
  4497. "authors": [
  4498. {
  4499. "name": "bnjmnm",
  4500. "homepage": "https://www.drupal.org/user/2369194"
  4501. },
  4502. {
  4503. "name": "jrockowitz",
  4504. "homepage": "https://www.drupal.org/user/371407"
  4505. },
  4506. {
  4507. "name": "lauriii",
  4508. "homepage": "https://www.drupal.org/user/1078742"
  4509. },
  4510. {
  4511. "name": "nod_",
  4512. "homepage": "https://www.drupal.org/user/598310"
  4513. },
  4514. {
  4515. "name": "phenaproxima",
  4516. "homepage": "https://www.drupal.org/user/205645"
  4517. },
  4518. {
  4519. "name": "zrpnr",
  4520. "homepage": "https://www.drupal.org/user/1448368"
  4521. }
  4522. ],
  4523. "description": "Provides jQuery UI Datepicker library.",
  4524. "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
  4525. "support": {
  4526. "source": "https://git.drupalcode.org/project/jquery_ui_datepicker"
  4527. }
  4528. },
  4529. {
  4530. "name": "drupal/jquery_ui_slider",
  4531. "version": "2.0.0",
  4532. "source": {
  4533. "type": "git",
  4534. "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
  4535. "reference": "2.0.0"
  4536. },
  4537. "dist": {
  4538. "type": "zip",
  4539. "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-2.0.0.zip",
  4540. "reference": "2.0.0",
  4541. "shasum": "86b7d71e91013cffafb8021dbf8047745ebc5fd6"
  4542. },
  4543. "require": {
  4544. "drupal/core": "^9.2 || ^10",
  4545. "drupal/jquery_ui": "^1.6"
  4546. },
  4547. "type": "drupal-module",
  4548. "extra": {
  4549. "drupal": {
  4550. "version": "2.0.0",
  4551. "datestamp": "1670871571",
  4552. "security-coverage": {
  4553. "status": "covered",
  4554. "message": "Covered by Drupal's security advisory policy"
  4555. }
  4556. }
  4557. },
  4558. "notification-url": "https://packages.drupal.org/8/downloads",
  4559. "license": [
  4560. "GPL-2.0-or-later"
  4561. ],
  4562. "authors": [
  4563. {
  4564. "name": "bnjmnm",
  4565. "homepage": "https://www.drupal.org/user/2369194"
  4566. },
  4567. {
  4568. "name": "lauriii",
  4569. "homepage": "https://www.drupal.org/user/1078742"
  4570. },
  4571. {
  4572. "name": "zrpnr",
  4573. "homepage": "https://www.drupal.org/user/1448368"
  4574. }
  4575. ],
  4576. "description": "Provides jQuery UI Slider library.",
  4577. "homepage": "https://www.drupal.org/project/jquery_ui_slider",
  4578. "support": {
  4579. "source": "https://git.drupalcode.org/project/jquery_ui_slider"
  4580. }
  4581. },
  4582. {
  4583. "name": "drupal/jquery_ui_touch_punch",
  4584. "version": "1.1.0",
  4585. "source": {
  4586. "type": "git",
  4587. "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
  4588. "reference": "1.1.0"
  4589. },
  4590. "dist": {
  4591. "type": "zip",
  4592. "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.1.0.zip",
  4593. "reference": "1.1.0",
  4594. "shasum": "4b7e50a98246dfa6ef48e5b12c70277873902824"
  4595. },
  4596. "require": {
  4597. "drupal/core": "^8 || ^9 || ^10",
  4598. "drupal/jquery_ui": "^1.0",
  4599. "politsin/jquery-ui-touch-punch": "^1.0"
  4600. },
  4601. "type": "drupal-module",
  4602. "extra": {
  4603. "drupal": {
  4604. "version": "1.1.0",
  4605. "datestamp": "1662744607",
  4606. "security-coverage": {
  4607. "status": "covered",
  4608. "message": "Covered by Drupal's security advisory policy"
  4609. }
  4610. }
  4611. },
  4612. "notification-url": "https://packages.drupal.org/8/downloads",
  4613. "license": [
  4614. "GPL-2.0-or-later"
  4615. ],
  4616. "authors": [
  4617. {
  4618. "name": "Naveen Valecha",
  4619. "homepage": "https://drupal.org/u/naveenvalecha",
  4620. "role": "Maintainer"
  4621. },
  4622. {
  4623. "name": "naveenvalecha",
  4624. "homepage": "https://www.drupal.org/user/2665733"
  4625. }
  4626. ],
  4627. "description": "Provides jQuery UI Touch Punch library.",
  4628. "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
  4629. "keywords": [
  4630. "Drupal",
  4631. "jquery_ui_touch_punch"
  4632. ],
  4633. "support": {
  4634. "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
  4635. "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch"
  4636. }
  4637. },
  4638. {
  4639. "name": "drupal/link_attributes",
  4640. "version": "1.14.0",
  4641. "source": {
  4642. "type": "git",
  4643. "url": "https://git.drupalcode.org/project/link_attributes.git",
  4644. "reference": "8.x-1.14"
  4645. },
  4646. "dist": {
  4647. "type": "zip",
  4648. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.14.zip",
  4649. "reference": "8.x-1.14",
  4650. "shasum": "fa4f27ecaed7e6b3c58c0adc679918a9beb7ded5"
  4651. },
  4652. "require": {
  4653. "drupal/core": "^9 || ^10"
  4654. },
  4655. "type": "drupal-module",
  4656. "extra": {
  4657. "drupal": {
  4658. "version": "8.x-1.14",
  4659. "datestamp": "1687393687",
  4660. "security-coverage": {
  4661. "status": "covered",
  4662. "message": "Covered by Drupal's security advisory policy"
  4663. }
  4664. }
  4665. },
  4666. "notification-url": "https://packages.drupal.org/8/downloads",
  4667. "license": [
  4668. "GPL-2.0-or-later"
  4669. ],
  4670. "authors": [
  4671. {
  4672. "name": "larowlan",
  4673. "homepage": "https://www.drupal.org/user/395439"
  4674. }
  4675. ],
  4676. "description": "Provides a widget to allow settings of link attributes for menu links.",
  4677. "homepage": "https://www.drupal.org/project/link_attributes",
  4678. "keywords": [
  4679. "Drupal"
  4680. ],
  4681. "support": {
  4682. "source": "https://git.drupalcode.org/project/link_attributes",
  4683. "issues": "https://www.drupal.org/project/issues/link_attributes"
  4684. }
  4685. },
  4686. {
  4687. "name": "drupal/linkit",
  4688. "version": "6.1.2",
  4689. "source": {
  4690. "type": "git",
  4691. "url": "https://git.drupalcode.org/project/linkit.git",
  4692. "reference": "6.1.2"
  4693. },
  4694. "dist": {
  4695. "type": "zip",
  4696. "url": "https://ftp.drupal.org/files/projects/linkit-6.1.2.zip",
  4697. "reference": "6.1.2",
  4698. "shasum": "63fb311d2b78df81a9a588330429b640ec7da0e8"
  4699. },
  4700. "require": {
  4701. "drupal/core": "^10.1"
  4702. },
  4703. "require-dev": {
  4704. "drupal/ckeditor": "*",
  4705. "drupal/imce": "*"
  4706. },
  4707. "type": "drupal-module",
  4708. "extra": {
  4709. "drupal": {
  4710. "version": "6.1.2",
  4711. "datestamp": "1696865478",
  4712. "security-coverage": {
  4713. "status": "covered",
  4714. "message": "Covered by Drupal's security advisory policy"
  4715. }
  4716. }
  4717. },
  4718. "notification-url": "https://packages.drupal.org/8/downloads",
  4719. "license": [
  4720. "GPL-2.0-or-later"
  4721. ],
  4722. "authors": [
  4723. {
  4724. "name": "Emil Stjerneman",
  4725. "homepage": "https://stjerneman.com",
  4726. "email": "emil@stjerneman.com",
  4727. "role": "Maintainer"
  4728. },
  4729. {
  4730. "name": "johnwebdev",
  4731. "homepage": "https://www.drupal.org/user/3331569"
  4732. },
  4733. {
  4734. "name": "mark_fullmer",
  4735. "homepage": "https://www.drupal.org/user/2612816"
  4736. }
  4737. ],
  4738. "description": "Linkit - Enriched linking experience",
  4739. "homepage": "http://drupal.org/project/linkit",
  4740. "support": {
  4741. "source": "http://cgit.drupalcode.org/linkit",
  4742. "issues": "http://drupal.org/project/linkit"
  4743. }
  4744. },
  4745. {
  4746. "name": "drupal/login_destination",
  4747. "version": "dev-2.x",
  4748. "source": {
  4749. "type": "git",
  4750. "url": "https://git.drupalcode.org/project/login_destination.git",
  4751. "reference": "5ba35c477e9b902b08c70c60e1d28eff11cc8e9f"
  4752. },
  4753. "require": {
  4754. "drupal/core": "^8.7.10 || ^9 || ^10"
  4755. },
  4756. "require-dev": {
  4757. "drupal/admin_toolbar": "^1.23",
  4758. "drupal/admin_toolbar_tools": "*"
  4759. },
  4760. "type": "drupal-module",
  4761. "extra": {
  4762. "branch-alias": {
  4763. "dev-2.x": "2.x-dev"
  4764. },
  4765. "drupal": {
  4766. "version": "8.x-2.0-beta5+3-dev",
  4767. "datestamp": "1680181961",
  4768. "security-coverage": {
  4769. "status": "not-covered",
  4770. "message": "Dev releases are not covered by Drupal security advisories."
  4771. }
  4772. }
  4773. },
  4774. "notification-url": "https://packages.drupal.org/8/downloads",
  4775. "license": [
  4776. "GPL-2.0-or-later"
  4777. ],
  4778. "authors": [
  4779. {
  4780. "name": "rsvelko",
  4781. "homepage": "https://www.drupal.org/u/rsvelko",
  4782. "role": "Creator, Maintainer"
  4783. },
  4784. {
  4785. "name": "Other Contributors",
  4786. "homepage": "https://www.drupal.org/node/69051/committers",
  4787. "role": "Contributors"
  4788. },
  4789. {
  4790. "name": "ddrozdik",
  4791. "homepage": "https://www.drupal.org/user/574124"
  4792. },
  4793. {
  4794. "name": "jng12",
  4795. "homepage": "https://www.drupal.org/user/204316"
  4796. },
  4797. {
  4798. "name": "marcp",
  4799. "homepage": "https://www.drupal.org/user/20885"
  4800. },
  4801. {
  4802. "name": "mithy",
  4803. "homepage": "https://www.drupal.org/user/258911"
  4804. },
  4805. {
  4806. "name": "moshe weitzman",
  4807. "homepage": "https://www.drupal.org/user/23"
  4808. },
  4809. {
  4810. "name": "Oliver Huynh",
  4811. "homepage": "https://www.drupal.org/user/243730"
  4812. },
  4813. {
  4814. "name": "perennial.sky",
  4815. "homepage": "https://www.drupal.org/user/2622667"
  4816. },
  4817. {
  4818. "name": "rsvelko",
  4819. "homepage": "https://www.drupal.org/user/337401"
  4820. }
  4821. ],
  4822. "description": "Customizes the destination the user is redirected to after login/logout/registration/one-time login.",
  4823. "homepage": "https://drupal.org/project/login_destination",
  4824. "support": {
  4825. "source": "https://git.drupalcode.org/project/login_destination",
  4826. "issues": "https://drupal.org/project/issues/login_destination"
  4827. }
  4828. },
  4829. {
  4830. "name": "drupal/maillog",
  4831. "version": "dev-1.x",
  4832. "source": {
  4833. "type": "git",
  4834. "url": "https://git.drupalcode.org/project/maillog.git",
  4835. "reference": "baa5d6ca739e6aecfdf28461d54911a2f6a038a4"
  4836. },
  4837. "require": {
  4838. "drupal/core": "^9 || ^10"
  4839. },
  4840. "type": "drupal-module",
  4841. "extra": {
  4842. "branch-alias": {
  4843. "dev-1.x": "1.x-dev"
  4844. },
  4845. "drupal": {
  4846. "version": "8.x-1.1+2-dev",
  4847. "datestamp": "1686405787",
  4848. "security-coverage": {
  4849. "status": "not-covered",
  4850. "message": "Dev releases are not covered by Drupal security advisories."
  4851. }
  4852. }
  4853. },
  4854. "notification-url": "https://packages.drupal.org/8/downloads",
  4855. "license": [
  4856. "GPL-2.0-or-later"
  4857. ],
  4858. "authors": [
  4859. {
  4860. "name": "Berdir",
  4861. "homepage": "https://www.drupal.org/user/214652"
  4862. },
  4863. {
  4864. "name": "DamienMcKenna",
  4865. "homepage": "https://www.drupal.org/user/108450"
  4866. },
  4867. {
  4868. "name": "miro_dietiker",
  4869. "homepage": "https://www.drupal.org/user/227761"
  4870. },
  4871. {
  4872. "name": "pluess",
  4873. "homepage": "https://www.drupal.org/user/84659"
  4874. }
  4875. ],
  4876. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4877. "homepage": "https://www.drupal.org/project/maillog",
  4878. "support": {
  4879. "source": "https://git.drupalcode.org/project/maillog"
  4880. }
  4881. },
  4882. {
  4883. "name": "drupal/matomo",
  4884. "version": "1.22.0",
  4885. "source": {
  4886. "type": "git",
  4887. "url": "https://git.drupalcode.org/project/matomo.git",
  4888. "reference": "8.x-1.22"
  4889. },
  4890. "dist": {
  4891. "type": "zip",
  4892. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.22.zip",
  4893. "reference": "8.x-1.22",
  4894. "shasum": "b41bb83d9c0c6f8c27f72f6b1b62f691dab65a5d"
  4895. },
  4896. "require": {
  4897. "drupal/core": "^9.0 || ^10"
  4898. },
  4899. "conflict": {
  4900. "drupal/csp": "<1.12"
  4901. },
  4902. "require-dev": {
  4903. "drupal/csp": "~1.12",
  4904. "drupal/php": "~1.1",
  4905. "drupal/token": "~1.9"
  4906. },
  4907. "type": "drupal-module",
  4908. "extra": {
  4909. "drupal": {
  4910. "version": "8.x-1.22",
  4911. "datestamp": "1691004328",
  4912. "security-coverage": {
  4913. "status": "covered",
  4914. "message": "Covered by Drupal's security advisory policy"
  4915. }
  4916. }
  4917. },
  4918. "notification-url": "https://packages.drupal.org/8/downloads",
  4919. "license": [
  4920. "GPL-2.0-or-later"
  4921. ],
  4922. "authors": [
  4923. {
  4924. "name": "C-Logemann",
  4925. "homepage": "https://www.drupal.org/user/218368"
  4926. },
  4927. {
  4928. "name": "Grimreaper",
  4929. "homepage": "https://www.drupal.org/user/2388214"
  4930. },
  4931. {
  4932. "name": "hass",
  4933. "homepage": "https://www.drupal.org/user/85918"
  4934. },
  4935. {
  4936. "name": "shelane",
  4937. "homepage": "https://www.drupal.org/user/2674989"
  4938. }
  4939. ],
  4940. "description": "Adds Matomo javascript tracking code to all your site's pages.",
  4941. "homepage": "https://www.drupal.org/project/matomo",
  4942. "support": {
  4943. "source": "https://git.drupalcode.org/project/matomo"
  4944. }
  4945. },
  4946. {
  4947. "name": "drupal/maxlength",
  4948. "version": "2.1.2",
  4949. "source": {
  4950. "type": "git",
  4951. "url": "https://git.drupalcode.org/project/maxlength.git",
  4952. "reference": "2.1.2"
  4953. },
  4954. "dist": {
  4955. "type": "zip",
  4956. "url": "https://ftp.drupal.org/files/projects/maxlength-2.1.2.zip",
  4957. "reference": "2.1.2",
  4958. "shasum": "97015e4d1065770a92953c9f37fef5d55b360cf6"
  4959. },
  4960. "require": {
  4961. "drupal/core": "^9.2 || ^10"
  4962. },
  4963. "type": "drupal-module",
  4964. "extra": {
  4965. "drupal": {
  4966. "version": "2.1.2",
  4967. "datestamp": "1689974531",
  4968. "security-coverage": {
  4969. "status": "covered",
  4970. "message": "Covered by Drupal's security advisory policy"
  4971. }
  4972. }
  4973. },
  4974. "notification-url": "https://packages.drupal.org/8/downloads",
  4975. "license": [
  4976. "GPL-2.0-or-later"
  4977. ],
  4978. "authors": [
  4979. {
  4980. "name": "Marius Scurtescu (mariuss)",
  4981. "homepage": "https://www.drupal.org/u/mariuss",
  4982. "role": "Maintainer"
  4983. },
  4984. {
  4985. "name": "Clayton Dewey (cedewey)",
  4986. "homepage": "https://www.drupal.org/u/cedewey",
  4987. "role": "Maintainer"
  4988. },
  4989. {
  4990. "name": "Daniel Wehner (dawehner)",
  4991. "homepage": "https://www.drupal.org/u/dawehner",
  4992. "role": "Maintainer"
  4993. },
  4994. {
  4995. "name": "Paulino Michelazzo (pmichelazzo)",
  4996. "homepage": "https://www.drupal.org/u/pmichelazzo",
  4997. "role": "Maintainer"
  4998. },
  4999. {
  5000. "name": "Jeff Hipp (hipp2bsquare)",
  5001. "homepage": "https://www.drupal.org/u/hipp2bsquare",
  5002. "role": "Maintainer"
  5003. },
  5004. {
  5005. "name": "Steven DuBois (srdtwc)",
  5006. "homepage": "https://www.drupal.org/u/srdtwc",
  5007. "role": "Maintainer"
  5008. },
  5009. {
  5010. "name": "srdtwc",
  5011. "homepage": "https://www.drupal.org/user/3422763"
  5012. }
  5013. ],
  5014. "description": "MaxLength allows a soft or hard character limit to be set on titles, text fields and link fields.",
  5015. "homepage": "https://www.drupal.org/project/maxlength",
  5016. "support": {
  5017. "source": "https://git.drupalcode.org/project/maxlength",
  5018. "issues": "https://www.drupal.org/project/issues/maxlength"
  5019. }
  5020. },
  5021. {
  5022. "name": "drupal/menu_admin_per_menu",
  5023. "version": "1.5.0",
  5024. "source": {
  5025. "type": "git",
  5026. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  5027. "reference": "8.x-1.5"
  5028. },
  5029. "dist": {
  5030. "type": "zip",
  5031. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.5.zip",
  5032. "reference": "8.x-1.5",
  5033. "shasum": "ec8c7a4a064aa285dfb722dad264da9936fc81b6"
  5034. },
  5035. "require": {
  5036. "drupal/core": "^9 || ^10"
  5037. },
  5038. "type": "drupal-module",
  5039. "extra": {
  5040. "drupal": {
  5041. "version": "8.x-1.5",
  5042. "datestamp": "1660918821",
  5043. "security-coverage": {
  5044. "status": "covered",
  5045. "message": "Covered by Drupal's security advisory policy"
  5046. }
  5047. }
  5048. },
  5049. "notification-url": "https://packages.drupal.org/8/downloads",
  5050. "license": [
  5051. "GPL-2.0-or-later"
  5052. ],
  5053. "authors": [
  5054. {
  5055. "name": "anrikun",
  5056. "homepage": "https://www.drupal.org/user/410199"
  5057. },
  5058. {
  5059. "name": "JeroenT",
  5060. "homepage": "https://www.drupal.org/user/2228934"
  5061. },
  5062. {
  5063. "name": "jonas139",
  5064. "homepage": "https://www.drupal.org/user/2873401"
  5065. },
  5066. {
  5067. "name": "mkdok",
  5068. "homepage": "https://www.drupal.org/user/3308753"
  5069. }
  5070. ],
  5071. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  5072. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  5073. "support": {
  5074. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  5075. }
  5076. },
  5077. {
  5078. "name": "drupal/menu_block",
  5079. "version": "dev-1.x",
  5080. "source": {
  5081. "type": "git",
  5082. "url": "https://git.drupalcode.org/project/menu_block.git",
  5083. "reference": "aafb3953b765e93d4de49c4fb6130a49304e6f2a"
  5084. },
  5085. "require": {
  5086. "drupal/core": "^9.1 || ^10"
  5087. },
  5088. "type": "drupal-module",
  5089. "extra": {
  5090. "branch-alias": {
  5091. "dev-1.x": "1.x-dev"
  5092. },
  5093. "drupal": {
  5094. "version": "8.x-1.9+1-dev",
  5095. "datestamp": "1667434044",
  5096. "security-coverage": {
  5097. "status": "not-covered",
  5098. "message": "Dev releases are not covered by Drupal security advisories."
  5099. }
  5100. }
  5101. },
  5102. "notification-url": "https://packages.drupal.org/8/downloads",
  5103. "license": [
  5104. "GPL-2.0-or-later"
  5105. ],
  5106. "authors": [
  5107. {
  5108. "name": "Dave Reid",
  5109. "homepage": "https://www.drupal.org/user/53892"
  5110. },
  5111. {
  5112. "name": "joelpittet",
  5113. "homepage": "https://www.drupal.org/user/160302"
  5114. },
  5115. {
  5116. "name": "JohnAlbin",
  5117. "homepage": "https://www.drupal.org/user/32095"
  5118. },
  5119. {
  5120. "name": "kim.pepper",
  5121. "homepage": "https://www.drupal.org/user/370574"
  5122. },
  5123. {
  5124. "name": "RenatoG",
  5125. "homepage": "https://www.drupal.org/user/3326031"
  5126. },
  5127. {
  5128. "name": "rrrob",
  5129. "homepage": "https://www.drupal.org/user/273533"
  5130. }
  5131. ],
  5132. "description": "Provides configurable blocks of menu links.",
  5133. "homepage": "https://www.drupal.org/project/menu_block",
  5134. "support": {
  5135. "source": "https://git.drupalcode.org/project/menu_block"
  5136. }
  5137. },
  5138. {
  5139. "name": "drupal/menu_position",
  5140. "version": "dev-1.x",
  5141. "source": {
  5142. "type": "git",
  5143. "url": "https://git.drupalcode.org/project/menu_position.git",
  5144. "reference": "f88cef07a70af63337a82652b9224a9c0b08b5b2"
  5145. },
  5146. "require": {
  5147. "drupal/core": "^8 || ^9 || ^10"
  5148. },
  5149. "type": "drupal-module",
  5150. "extra": {
  5151. "branch-alias": {
  5152. "dev-1.x": "1.x-dev"
  5153. },
  5154. "drupal": {
  5155. "version": "8.x-1.0+6-dev",
  5156. "datestamp": "1685505680",
  5157. "security-coverage": {
  5158. "status": "not-covered",
  5159. "message": "Dev releases are not covered by Drupal security advisories."
  5160. }
  5161. }
  5162. },
  5163. "notification-url": "https://packages.drupal.org/8/downloads",
  5164. "license": [
  5165. "GPL-2.0-or-later"
  5166. ],
  5167. "authors": [
  5168. {
  5169. "name": "BarisW",
  5170. "homepage": "https://www.drupal.org/user/107229"
  5171. },
  5172. {
  5173. "name": "joelpittet",
  5174. "homepage": "https://www.drupal.org/user/160302"
  5175. },
  5176. {
  5177. "name": "JohnAlbin",
  5178. "homepage": "https://www.drupal.org/user/32095"
  5179. },
  5180. {
  5181. "name": "lbainbridge",
  5182. "homepage": "https://www.drupal.org/user/2406996"
  5183. },
  5184. {
  5185. "name": "Rajab Natshah",
  5186. "homepage": "https://www.drupal.org/user/1414312"
  5187. },
  5188. {
  5189. "name": "Sutharsan",
  5190. "homepage": "https://www.drupal.org/user/73854"
  5191. }
  5192. ],
  5193. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  5194. "homepage": "https://www.drupal.org/project/menu_position",
  5195. "support": {
  5196. "source": "https://git.drupalcode.org/project/menu_position",
  5197. "issues": "https://www.drupal.org/project/issues/menu_position"
  5198. }
  5199. },
  5200. {
  5201. "name": "drupal/pagerer",
  5202. "version": "3.1.0",
  5203. "source": {
  5204. "type": "git",
  5205. "url": "https://git.drupalcode.org/project/pagerer.git",
  5206. "reference": "3.1.0"
  5207. },
  5208. "dist": {
  5209. "type": "zip",
  5210. "url": "https://ftp.drupal.org/files/projects/pagerer-3.1.0.zip",
  5211. "reference": "3.1.0",
  5212. "shasum": "9235b72643c010395e61ac7c236f83d993cff8df"
  5213. },
  5214. "require": {
  5215. "drupal/core": "^10"
  5216. },
  5217. "type": "drupal-module",
  5218. "extra": {
  5219. "drupal": {
  5220. "version": "3.1.0",
  5221. "datestamp": "1701205158",
  5222. "security-coverage": {
  5223. "status": "covered",
  5224. "message": "Covered by Drupal's security advisory policy"
  5225. }
  5226. }
  5227. },
  5228. "notification-url": "https://packages.drupal.org/8/downloads",
  5229. "license": [
  5230. "GPL-2.0-or-later"
  5231. ],
  5232. "authors": [
  5233. {
  5234. "name": "mondrake",
  5235. "homepage": "https://www.drupal.org/user/1307444"
  5236. }
  5237. ],
  5238. "description": "Configurable pager styles.",
  5239. "homepage": "https://www.drupal.org/project/pagerer",
  5240. "support": {
  5241. "source": "https://git.drupalcode.org/project/pagerer"
  5242. }
  5243. },
  5244. {
  5245. "name": "drupal/path_alias_xt",
  5246. "version": "dev-1.x",
  5247. "source": {
  5248. "type": "git",
  5249. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  5250. "reference": "0573ad218a2f7143544626165418eaeec03e1157"
  5251. },
  5252. "require": {
  5253. "drupal/core": "^9.3 || ^10"
  5254. },
  5255. "type": "drupal-module",
  5256. "extra": {
  5257. "branch-alias": {
  5258. "dev-1.x": "1.x-dev"
  5259. },
  5260. "drupal": {
  5261. "version": "8.x-1.x-dev",
  5262. "datestamp": "1658166545",
  5263. "security-coverage": {
  5264. "status": "not-covered",
  5265. "message": "Dev releases are not covered by Drupal security advisories."
  5266. }
  5267. }
  5268. },
  5269. "notification-url": "https://packages.drupal.org/8/downloads",
  5270. "license": [
  5271. "GPL-2.0-or-later"
  5272. ],
  5273. "authors": [
  5274. {
  5275. "name": "adriancid",
  5276. "homepage": "https://www.drupal.org/user/1962106"
  5277. },
  5278. {
  5279. "name": "RdeBoer",
  5280. "homepage": "https://www.drupal.org/user/404007"
  5281. },
  5282. {
  5283. "name": "sdstyles",
  5284. "homepage": "https://www.drupal.org/user/1420228"
  5285. }
  5286. ],
  5287. "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.",
  5288. "homepage": "https://www.drupal.org/project/path_alias_xt",
  5289. "support": {
  5290. "source": "https://git.drupalcode.org/project/path_alias_xt"
  5291. }
  5292. },
  5293. {
  5294. "name": "drupal/pathauto",
  5295. "version": "1.12.0",
  5296. "source": {
  5297. "type": "git",
  5298. "url": "https://git.drupalcode.org/project/pathauto.git",
  5299. "reference": "8.x-1.12"
  5300. },
  5301. "dist": {
  5302. "type": "zip",
  5303. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.12.zip",
  5304. "reference": "8.x-1.12",
  5305. "shasum": "b7b6432e315e38e59a7c6cc117134326c580de4c"
  5306. },
  5307. "require": {
  5308. "drupal/core": "^9.3 || ^10",
  5309. "drupal/ctools": "*",
  5310. "drupal/token": "*"
  5311. },
  5312. "suggest": {
  5313. "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."
  5314. },
  5315. "type": "drupal-module",
  5316. "extra": {
  5317. "drupal": {
  5318. "version": "8.x-1.12",
  5319. "datestamp": "1696776683",
  5320. "security-coverage": {
  5321. "status": "covered",
  5322. "message": "Covered by Drupal's security advisory policy"
  5323. }
  5324. },
  5325. "drush": {
  5326. "services": {
  5327. "drush.services.yml": "^9 || ^10"
  5328. }
  5329. }
  5330. },
  5331. "notification-url": "https://packages.drupal.org/8/downloads",
  5332. "license": [
  5333. "GPL-2.0-or-later"
  5334. ],
  5335. "authors": [
  5336. {
  5337. "name": "Berdir",
  5338. "homepage": "https://www.drupal.org/user/214652"
  5339. },
  5340. {
  5341. "name": "Dave Reid",
  5342. "homepage": "https://www.drupal.org/user/53892"
  5343. },
  5344. {
  5345. "name": "Freso",
  5346. "homepage": "https://www.drupal.org/user/27504"
  5347. },
  5348. {
  5349. "name": "greggles",
  5350. "homepage": "https://www.drupal.org/user/36762"
  5351. }
  5352. ],
  5353. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  5354. "homepage": "https://www.drupal.org/project/pathauto",
  5355. "support": {
  5356. "source": "https://cgit.drupalcode.org/pathauto",
  5357. "issues": "https://www.drupal.org/project/issues/pathauto",
  5358. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  5359. }
  5360. },
  5361. {
  5362. "name": "drupal/pathologic",
  5363. "version": "2.0.0-alpha1",
  5364. "source": {
  5365. "type": "git",
  5366. "url": "https://git.drupalcode.org/project/pathologic.git",
  5367. "reference": "2.0.0-alpha1"
  5368. },
  5369. "dist": {
  5370. "type": "zip",
  5371. "url": "https://ftp.drupal.org/files/projects/pathologic-2.0.0-alpha1.zip",
  5372. "reference": "2.0.0-alpha1",
  5373. "shasum": "be911b098ece7d1ffa55cf0d5f33d38ea40acda4"
  5374. },
  5375. "require": {
  5376. "drupal/core": "^9 || ^10"
  5377. },
  5378. "type": "drupal-module",
  5379. "extra": {
  5380. "drupal": {
  5381. "version": "2.0.0-alpha1",
  5382. "datestamp": "1681263978",
  5383. "security-coverage": {
  5384. "status": "not-covered",
  5385. "message": "Alpha releases are not covered by Drupal security advisories."
  5386. }
  5387. }
  5388. },
  5389. "notification-url": "https://packages.drupal.org/8/downloads",
  5390. "license": [
  5391. "GPL-2.0+"
  5392. ],
  5393. "authors": [
  5394. {
  5395. "name": "Berdir",
  5396. "homepage": "https://www.drupal.org/user/214652"
  5397. },
  5398. {
  5399. "name": "dww",
  5400. "homepage": "https://www.drupal.org/user/46549"
  5401. },
  5402. {
  5403. "name": "Garrett Albright",
  5404. "homepage": "https://www.drupal.org/user/191212"
  5405. },
  5406. {
  5407. "name": "mark_fullmer",
  5408. "homepage": "https://www.drupal.org/user/2612816"
  5409. }
  5410. ],
  5411. "description": "Helps avoid broken links and incorrect paths in content.",
  5412. "homepage": "https://www.drupal.org/project/pathologic",
  5413. "support": {
  5414. "source": "https://git.drupalcode.org/project/pathologic"
  5415. }
  5416. },
  5417. {
  5418. "name": "drupal/persistent_login",
  5419. "version": "1.6.0",
  5420. "source": {
  5421. "type": "git",
  5422. "url": "https://git.drupalcode.org/project/persistent_login.git",
  5423. "reference": "8.x-1.6"
  5424. },
  5425. "dist": {
  5426. "type": "zip",
  5427. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.6.zip",
  5428. "reference": "8.x-1.6",
  5429. "shasum": "87bc87ae8c4035efbdf8d6cae17c489c4fdd0aa3"
  5430. },
  5431. "require": {
  5432. "drupal/core": "^9.2 || ^10"
  5433. },
  5434. "type": "drupal-module",
  5435. "extra": {
  5436. "drupal": {
  5437. "version": "8.x-1.6",
  5438. "datestamp": "1679547817",
  5439. "security-coverage": {
  5440. "status": "covered",
  5441. "message": "Covered by Drupal's security advisory policy"
  5442. }
  5443. }
  5444. },
  5445. "notification-url": "https://packages.drupal.org/8/downloads",
  5446. "license": [
  5447. "GPL-2.0-or-later"
  5448. ],
  5449. "authors": [
  5450. {
  5451. "name": "gapple",
  5452. "homepage": "https://www.drupal.org/user/490940"
  5453. }
  5454. ],
  5455. "description": "Provides a \"Remember Me\" feature on the login form.",
  5456. "homepage": "https://www.drupal.org/project/persistent_login",
  5457. "keywords": [
  5458. "Drupal"
  5459. ],
  5460. "support": {
  5461. "source": "https://git.drupalcode.org/project/persistent_login",
  5462. "issues": "https://www.drupal.org/project/issues/persistent_login"
  5463. }
  5464. },
  5465. {
  5466. "name": "drupal/profile",
  5467. "version": "1.7.0",
  5468. "source": {
  5469. "type": "git",
  5470. "url": "https://git.drupalcode.org/project/profile.git",
  5471. "reference": "8.x-1.7"
  5472. },
  5473. "dist": {
  5474. "type": "zip",
  5475. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.7.zip",
  5476. "reference": "8.x-1.7",
  5477. "shasum": "f0236acff507aff2a1e2e11cb9c873a0b608ec1c"
  5478. },
  5479. "require": {
  5480. "drupal/core": "^9 || ^10",
  5481. "drupal/entity": "^1.0"
  5482. },
  5483. "require-dev": {
  5484. "drupal/token": "^1.7"
  5485. },
  5486. "type": "drupal-module",
  5487. "extra": {
  5488. "drupal": {
  5489. "version": "8.x-1.7",
  5490. "datestamp": "1665131792",
  5491. "security-coverage": {
  5492. "status": "covered",
  5493. "message": "Covered by Drupal's security advisory policy"
  5494. }
  5495. }
  5496. },
  5497. "notification-url": "https://packages.drupal.org/8/downloads",
  5498. "license": [
  5499. "GPL-2.0-or-later"
  5500. ],
  5501. "authors": [
  5502. {
  5503. "name": "bojanz",
  5504. "homepage": "https://www.drupal.org/user/86106"
  5505. },
  5506. {
  5507. "name": "daggerhart",
  5508. "homepage": "https://www.drupal.org/user/167806"
  5509. },
  5510. {
  5511. "name": "fago",
  5512. "homepage": "https://www.drupal.org/user/16747"
  5513. },
  5514. {
  5515. "name": "jsacksick",
  5516. "homepage": "https://www.drupal.org/user/972218"
  5517. },
  5518. {
  5519. "name": "mglaman",
  5520. "homepage": "https://www.drupal.org/user/2416470"
  5521. },
  5522. {
  5523. "name": "pcambra",
  5524. "homepage": "https://www.drupal.org/user/122101"
  5525. }
  5526. ],
  5527. "description": "Provides configurable user profiles.",
  5528. "homepage": "https://drupal.org/project/profile",
  5529. "support": {
  5530. "source": "https://git.drupalcode.org/project/profile"
  5531. }
  5532. },
  5533. {
  5534. "name": "drupal/redirect",
  5535. "version": "1.9.0",
  5536. "source": {
  5537. "type": "git",
  5538. "url": "https://git.drupalcode.org/project/redirect.git",
  5539. "reference": "8.x-1.9"
  5540. },
  5541. "dist": {
  5542. "type": "zip",
  5543. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.9.zip",
  5544. "reference": "8.x-1.9",
  5545. "shasum": "2987de20f509e9f7cec8a0f81d3a6774f9b0ba3e"
  5546. },
  5547. "require": {
  5548. "drupal/core": "^9.2 || ^10"
  5549. },
  5550. "type": "drupal-module",
  5551. "extra": {
  5552. "drupal": {
  5553. "version": "8.x-1.9",
  5554. "datestamp": "1693393506",
  5555. "security-coverage": {
  5556. "status": "covered",
  5557. "message": "Covered by Drupal's security advisory policy"
  5558. }
  5559. }
  5560. },
  5561. "notification-url": "https://packages.drupal.org/8/downloads",
  5562. "license": [
  5563. "GPL-2.0-or-later"
  5564. ],
  5565. "authors": [
  5566. {
  5567. "name": "Berdir",
  5568. "homepage": "https://www.drupal.org/user/214652"
  5569. },
  5570. {
  5571. "name": "Dave Reid",
  5572. "homepage": "https://www.drupal.org/user/53892"
  5573. },
  5574. {
  5575. "name": "Kristen Pol",
  5576. "homepage": "https://www.drupal.org/user/8389"
  5577. },
  5578. {
  5579. "name": "pifagor",
  5580. "homepage": "https://www.drupal.org/user/2375692"
  5581. }
  5582. ],
  5583. "description": "Allows users to redirect from old URLs to new URLs.",
  5584. "homepage": "https://www.drupal.org/project/redirect",
  5585. "support": {
  5586. "source": "https://git.drupalcode.org/project/redirect"
  5587. }
  5588. },
  5589. {
  5590. "name": "drupal/redis",
  5591. "version": "1.7.0",
  5592. "source": {
  5593. "type": "git",
  5594. "url": "https://git.drupalcode.org/project/redis.git",
  5595. "reference": "8.x-1.7"
  5596. },
  5597. "dist": {
  5598. "type": "zip",
  5599. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.7.zip",
  5600. "reference": "8.x-1.7",
  5601. "shasum": "602043bdad62ff047321121edcfde8abf3638c7c"
  5602. },
  5603. "require": {
  5604. "drupal/core": "^9.3 || ^10"
  5605. },
  5606. "suggest": {
  5607. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  5608. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  5609. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  5610. },
  5611. "type": "drupal-module",
  5612. "extra": {
  5613. "drupal": {
  5614. "version": "8.x-1.7",
  5615. "datestamp": "1686175620",
  5616. "security-coverage": {
  5617. "status": "covered",
  5618. "message": "Covered by Drupal's security advisory policy"
  5619. }
  5620. }
  5621. },
  5622. "autoload": {
  5623. "psr-4": {
  5624. "Drupal\\redis\\": "src"
  5625. }
  5626. },
  5627. "notification-url": "https://packages.drupal.org/8/downloads",
  5628. "license": [
  5629. "GPL-2.0-or-later"
  5630. ],
  5631. "authors": [
  5632. {
  5633. "name": "Berdir",
  5634. "homepage": "https://www.drupal.org/user/214652"
  5635. },
  5636. {
  5637. "name": "greg.1.anderson",
  5638. "homepage": "https://www.drupal.org/user/438598"
  5639. },
  5640. {
  5641. "name": "kporras07",
  5642. "homepage": "https://www.drupal.org/user/1349780"
  5643. },
  5644. {
  5645. "name": "pounard",
  5646. "homepage": "https://www.drupal.org/user/240164"
  5647. }
  5648. ],
  5649. "description": "Integration of Drupal with the Redis key-value store.",
  5650. "homepage": "https://www.drupal.org/project/redis",
  5651. "support": {
  5652. "source": "https://git.drupalcode.org/project/redis"
  5653. }
  5654. },
  5655. {
  5656. "name": "drupal/search_api",
  5657. "version": "1.31.0",
  5658. "source": {
  5659. "type": "git",
  5660. "url": "https://git.drupalcode.org/project/search_api.git",
  5661. "reference": "8.x-1.31"
  5662. },
  5663. "dist": {
  5664. "type": "zip",
  5665. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.31.zip",
  5666. "reference": "8.x-1.31",
  5667. "shasum": "ec8436744c34de2ede6370d4dd26875489e761bc"
  5668. },
  5669. "require": {
  5670. "drupal/core": "^10.0"
  5671. },
  5672. "conflict": {
  5673. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  5674. },
  5675. "require-dev": {
  5676. "drupal/language_fallback_fix": "@dev",
  5677. "drupal/search_api_autocomplete": "@dev",
  5678. "drupal/search_api_db": "*"
  5679. },
  5680. "suggest": {
  5681. "drupal/facets": "Adds the ability to create faceted searches.",
  5682. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  5683. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  5684. },
  5685. "type": "drupal-module",
  5686. "extra": {
  5687. "drupal": {
  5688. "version": "8.x-1.31",
  5689. "datestamp": "1700926323",
  5690. "security-coverage": {
  5691. "status": "covered",
  5692. "message": "Covered by Drupal's security advisory policy"
  5693. }
  5694. },
  5695. "drush": {
  5696. "services": {
  5697. "drush.services.yml": "^9 || ^10 || ^11"
  5698. }
  5699. }
  5700. },
  5701. "notification-url": "https://packages.drupal.org/8/downloads",
  5702. "license": [
  5703. "GPL-2.0-or-later"
  5704. ],
  5705. "authors": [
  5706. {
  5707. "name": "Thomas Seidl",
  5708. "homepage": "https://www.drupal.org/u/drunken-monkey"
  5709. },
  5710. {
  5711. "name": "Nick Veenhof",
  5712. "homepage": "https://www.drupal.org/u/nick_vh"
  5713. },
  5714. {
  5715. "name": "See other contributors",
  5716. "homepage": "https://www.drupal.org/node/790418/committers"
  5717. }
  5718. ],
  5719. "description": "Provides a generic framework for modules offering search capabilities.",
  5720. "homepage": "https://www.drupal.org/project/search_api",
  5721. "support": {
  5722. "source": "https://git.drupalcode.org/project/search_api",
  5723. "issues": "https://www.drupal.org/project/issues/search_api",
  5724. "irc": "irc://irc.freenode.org/drupal-search-api"
  5725. }
  5726. },
  5727. {
  5728. "name": "drupal/search_api_db",
  5729. "version": "1.30.0",
  5730. "require": {
  5731. "drupal/core": "^9.2 || ^10.0",
  5732. "drupal/search_api": "*"
  5733. },
  5734. "type": "metapackage",
  5735. "extra": {
  5736. "drupal": {
  5737. "version": "8.x-1.30",
  5738. "datestamp": "1697366291",
  5739. "security-coverage": {
  5740. "status": "covered",
  5741. "message": "Covered by Drupal's security advisory policy"
  5742. }
  5743. }
  5744. },
  5745. "notification-url": "https://packages.drupal.org/8/downloads",
  5746. "license": [
  5747. "GPL-2.0-or-later"
  5748. ],
  5749. "authors": [
  5750. {
  5751. "name": "borisson_",
  5752. "homepage": "https://www.drupal.org/user/2393360"
  5753. },
  5754. {
  5755. "name": "drunken monkey",
  5756. "homepage": "https://www.drupal.org/user/205582"
  5757. },
  5758. {
  5759. "name": "Nick_vh",
  5760. "homepage": "https://www.drupal.org/user/122682"
  5761. }
  5762. ],
  5763. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  5764. "homepage": "https://www.drupal.org/project/search_api",
  5765. "support": {
  5766. "source": "https://git.drupalcode.org/project/search_api"
  5767. }
  5768. },
  5769. {
  5770. "name": "drupal/seven",
  5771. "version": "1.0.0",
  5772. "source": {
  5773. "type": "git",
  5774. "url": "https://git.drupalcode.org/project/seven.git",
  5775. "reference": "1.0.0"
  5776. },
  5777. "dist": {
  5778. "type": "zip",
  5779. "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip",
  5780. "reference": "1.0.0",
  5781. "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd"
  5782. },
  5783. "require": {
  5784. "drupal/core": "^9 || ^10"
  5785. },
  5786. "type": "drupal-theme",
  5787. "extra": {
  5788. "drupal": {
  5789. "version": "1.0.0",
  5790. "datestamp": "1683652106",
  5791. "security-coverage": {
  5792. "status": "covered",
  5793. "message": "Covered by Drupal's security advisory policy"
  5794. }
  5795. }
  5796. },
  5797. "notification-url": "https://packages.drupal.org/8/downloads",
  5798. "license": [
  5799. "GPL-2.0-or-later"
  5800. ],
  5801. "authors": [
  5802. {
  5803. "name": "bnjmnm",
  5804. "homepage": "https://www.drupal.org/user/2369194"
  5805. },
  5806. {
  5807. "name": "lauriii",
  5808. "homepage": "https://www.drupal.org/user/1078742"
  5809. },
  5810. {
  5811. "name": "mcrittenden",
  5812. "homepage": "https://www.drupal.org/user/420631"
  5813. },
  5814. {
  5815. "name": "mrfelton",
  5816. "homepage": "https://www.drupal.org/user/305669"
  5817. },
  5818. {
  5819. "name": "TravisCarden",
  5820. "homepage": "https://www.drupal.org/user/236758"
  5821. }
  5822. ],
  5823. "description": "The Seven theme from Drupal 8/9 moved to contrib",
  5824. "homepage": "https://www.drupal.org/project/seven",
  5825. "support": {
  5826. "source": "https://git.drupalcode.org/project/seven"
  5827. }
  5828. },
  5829. {
  5830. "name": "drupal/smart_trim",
  5831. "version": "2.1.0",
  5832. "source": {
  5833. "type": "git",
  5834. "url": "https://git.drupalcode.org/project/smart_trim.git",
  5835. "reference": "2.1.0"
  5836. },
  5837. "dist": {
  5838. "type": "zip",
  5839. "url": "https://ftp.drupal.org/files/projects/smart_trim-2.1.0.zip",
  5840. "reference": "2.1.0",
  5841. "shasum": "874b4cbddc4833f1b9adc76a8398377903fd73ee"
  5842. },
  5843. "require": {
  5844. "drupal/core": "^8 || ^9 || ^10",
  5845. "drupal/token": "^1.0",
  5846. "php": ">=7.4.0"
  5847. },
  5848. "require-dev": {
  5849. "drupal/token_filter": "^2.0"
  5850. },
  5851. "type": "drupal-module",
  5852. "extra": {
  5853. "drupal": {
  5854. "version": "2.1.0",
  5855. "datestamp": "1686152417",
  5856. "security-coverage": {
  5857. "status": "covered",
  5858. "message": "Covered by Drupal's security advisory policy"
  5859. }
  5860. }
  5861. },
  5862. "notification-url": "https://packages.drupal.org/8/downloads",
  5863. "license": [
  5864. "GPL-2.0-or-later"
  5865. ],
  5866. "authors": [
  5867. {
  5868. "name": "Mark Casias (markie)",
  5869. "homepage": "https://www.drupal.org/u/markie",
  5870. "role": "Maintainer"
  5871. },
  5872. {
  5873. "name": "AmyJune Hineline (volkswagenchick)",
  5874. "homepage": "https://www.drupal.org/u/volkswagenchick",
  5875. "role": "Maintainer"
  5876. },
  5877. {
  5878. "name": "Michael Anello (ultimike)",
  5879. "homepage": "https://www.drupal.org/u/ultimike",
  5880. "role": "Maintainer"
  5881. }
  5882. ],
  5883. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  5884. "homepage": "https://drupal.org/project/smart_trim",
  5885. "support": {
  5886. "source": "https://git.drupalcode.org/project/smart_trim",
  5887. "issues": "https://drupal.org/project/issues/smart_trim"
  5888. }
  5889. },
  5890. {
  5891. "name": "drupal/smtp",
  5892. "version": "1.2.0",
  5893. "source": {
  5894. "type": "git",
  5895. "url": "https://git.drupalcode.org/project/smtp.git",
  5896. "reference": "8.x-1.2"
  5897. },
  5898. "dist": {
  5899. "type": "zip",
  5900. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.2.zip",
  5901. "reference": "8.x-1.2",
  5902. "shasum": "10d302d4a90521d674bdd078da8aed886fa5ec41"
  5903. },
  5904. "require": {
  5905. "drupal/core": ">=8.9 <11",
  5906. "phpmailer/phpmailer": "^6.1.7"
  5907. },
  5908. "suggest": {
  5909. "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
  5910. },
  5911. "type": "drupal-module",
  5912. "extra": {
  5913. "drupal": {
  5914. "version": "8.x-1.2",
  5915. "datestamp": "1667416337",
  5916. "security-coverage": {
  5917. "status": "covered",
  5918. "message": "Covered by Drupal's security advisory policy"
  5919. }
  5920. },
  5921. "branch-alias": {
  5922. "dev-8.x-1.x": "1.x-dev"
  5923. }
  5924. },
  5925. "notification-url": "https://packages.drupal.org/8/downloads",
  5926. "license": [
  5927. "GPL-2.0-or-later"
  5928. ],
  5929. "authors": [
  5930. {
  5931. "name": "japerry",
  5932. "homepage": "https://www.drupal.org/user/45640"
  5933. },
  5934. {
  5935. "name": "joseph.olstad",
  5936. "homepage": "https://www.drupal.org/user/1321830"
  5937. },
  5938. {
  5939. "name": "josesanmartin",
  5940. "homepage": "https://www.drupal.org/user/72012"
  5941. },
  5942. {
  5943. "name": "LukeLast",
  5944. "homepage": "https://www.drupal.org/user/30151"
  5945. },
  5946. {
  5947. "name": "oadaeh",
  5948. "homepage": "https://www.drupal.org/user/4649"
  5949. },
  5950. {
  5951. "name": "sadashiv",
  5952. "homepage": "https://www.drupal.org/user/1773304"
  5953. },
  5954. {
  5955. "name": "wundo",
  5956. "homepage": "https://www.drupal.org/user/25523"
  5957. },
  5958. {
  5959. "name": "yettyn",
  5960. "homepage": "https://www.drupal.org/user/93281"
  5961. }
  5962. ],
  5963. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  5964. "homepage": "https://www.drupal.org/project/smtp",
  5965. "support": {
  5966. "source": "https://git.drupalcode.org/project/smtp",
  5967. "issues": "https://www.drupal.org/project/issues/smtp"
  5968. }
  5969. },
  5970. {
  5971. "name": "drupal/sophron",
  5972. "version": "2.0.1",
  5973. "source": {
  5974. "type": "git",
  5975. "url": "https://git.drupalcode.org/project/sophron.git",
  5976. "reference": "2.0.1"
  5977. },
  5978. "dist": {
  5979. "type": "zip",
  5980. "url": "https://ftp.drupal.org/files/projects/sophron-2.0.1.zip",
  5981. "reference": "2.0.1",
  5982. "shasum": "eb9b22e843400392ba7fa35dc99c644d2cf08982"
  5983. },
  5984. "require": {
  5985. "drupal/core": "^10",
  5986. "fileeye/mimemap": "^2.0.1"
  5987. },
  5988. "type": "drupal-module",
  5989. "extra": {
  5990. "drupal": {
  5991. "version": "2.0.1",
  5992. "datestamp": "1676319965",
  5993. "security-coverage": {
  5994. "status": "covered",
  5995. "message": "Covered by Drupal's security advisory policy"
  5996. }
  5997. }
  5998. },
  5999. "autoload": {
  6000. "psr-4": {
  6001. "Drupal\\sophron\\": "src/"
  6002. }
  6003. },
  6004. "notification-url": "https://packages.drupal.org/8/downloads",
  6005. "license": [
  6006. "GPL-2.0-or-later"
  6007. ],
  6008. "authors": [
  6009. {
  6010. "name": "mondrake",
  6011. "homepage": "https://www.drupal.org/user/1307444"
  6012. }
  6013. ],
  6014. "description": "Provides an extensive MIME types management API",
  6015. "homepage": "https://www.drupal.org/project/sophron",
  6016. "support": {
  6017. "source": "https://git.drupalcode.org/project/sophron"
  6018. }
  6019. },
  6020. {
  6021. "name": "drupal/synonyms",
  6022. "version": "2.1.3",
  6023. "source": {
  6024. "type": "git",
  6025. "url": "https://git.drupalcode.org/project/synonyms.git",
  6026. "reference": "2.1.3"
  6027. },
  6028. "dist": {
  6029. "type": "zip",
  6030. "url": "https://ftp.drupal.org/files/projects/synonyms-2.1.3.zip",
  6031. "reference": "2.1.3",
  6032. "shasum": "179da26bf2a54e96e0e6aff587cce5c7153c3381"
  6033. },
  6034. "require": {
  6035. "drupal/core": "^9 || ^10"
  6036. },
  6037. "require-dev": {
  6038. "drupal/synonyms_list_field": "*"
  6039. },
  6040. "type": "drupal-module",
  6041. "extra": {
  6042. "drupal": {
  6043. "version": "2.1.3",
  6044. "datestamp": "1700132482",
  6045. "security-coverage": {
  6046. "status": "covered",
  6047. "message": "Covered by Drupal's security advisory policy"
  6048. }
  6049. }
  6050. },
  6051. "notification-url": "https://packages.drupal.org/8/downloads",
  6052. "license": [
  6053. "GPL-2.0-or-later"
  6054. ],
  6055. "authors": [
  6056. {
  6057. "name": "Bojan Zivanovic",
  6058. "homepage": "https://www.drupal.org/u/bojanz",
  6059. "role": "Author and D5, D6 and D7 versions developer."
  6060. },
  6061. {
  6062. "name": "Alex Trosenko",
  6063. "homepage": "https://www.drupal.org/u/bucefal91",
  6064. "role": "D7 and D8 versions developer."
  6065. },
  6066. {
  6067. "name": "Duro Arezina",
  6068. "homepage": "https://www.drupal.org/u/devad",
  6069. "role": "D8, D9 and D10 versions maintenance"
  6070. },
  6071. {
  6072. "name": "See other contributors",
  6073. "homepage": "https://www.drupal.org/node/148775/committers"
  6074. }
  6075. ],
  6076. "description": "Provides synonyms feature for all entities.",
  6077. "homepage": "https://www.drupal.org/project/synonyms",
  6078. "support": {
  6079. "source": "https://git.drupalcode.org/project/synonyms",
  6080. "issues": "https://www.drupal.org/project/issues/synonyms"
  6081. }
  6082. },
  6083. {
  6084. "name": "drupal/token",
  6085. "version": "1.13.0",
  6086. "source": {
  6087. "type": "git",
  6088. "url": "https://git.drupalcode.org/project/token.git",
  6089. "reference": "8.x-1.13"
  6090. },
  6091. "dist": {
  6092. "type": "zip",
  6093. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.13.zip",
  6094. "reference": "8.x-1.13",
  6095. "shasum": "f2a074b51726de3727c1d900237d6d471806a4d2"
  6096. },
  6097. "require": {
  6098. "drupal/core": "^9.2 || ^10"
  6099. },
  6100. "type": "drupal-module",
  6101. "extra": {
  6102. "drupal": {
  6103. "version": "8.x-1.13",
  6104. "datestamp": "1697885927",
  6105. "security-coverage": {
  6106. "status": "covered",
  6107. "message": "Covered by Drupal's security advisory policy"
  6108. }
  6109. },
  6110. "drush": {
  6111. "services": {
  6112. "drush.services.yml": ">=9"
  6113. }
  6114. }
  6115. },
  6116. "notification-url": "https://packages.drupal.org/8/downloads",
  6117. "license": [
  6118. "GPL-2.0-or-later"
  6119. ],
  6120. "authors": [
  6121. {
  6122. "name": "Berdir",
  6123. "homepage": "https://www.drupal.org/user/214652"
  6124. },
  6125. {
  6126. "name": "Dave Reid",
  6127. "homepage": "https://www.drupal.org/user/53892"
  6128. },
  6129. {
  6130. "name": "eaton",
  6131. "homepage": "https://www.drupal.org/user/16496"
  6132. },
  6133. {
  6134. "name": "fago",
  6135. "homepage": "https://www.drupal.org/user/16747"
  6136. },
  6137. {
  6138. "name": "greggles",
  6139. "homepage": "https://www.drupal.org/user/36762"
  6140. },
  6141. {
  6142. "name": "mikeryan",
  6143. "homepage": "https://www.drupal.org/user/4420"
  6144. }
  6145. ],
  6146. "description": "Provides a user interface for the Token API, some missing core tokens.",
  6147. "homepage": "https://www.drupal.org/project/token",
  6148. "support": {
  6149. "source": "https://git.drupalcode.org/project/token"
  6150. }
  6151. },
  6152. {
  6153. "name": "drupal/translation_views",
  6154. "version": "1.0.0-alpha11",
  6155. "source": {
  6156. "type": "git",
  6157. "url": "https://git.drupalcode.org/project/translation_views.git",
  6158. "reference": "8.x-1.0-alpha11"
  6159. },
  6160. "dist": {
  6161. "type": "zip",
  6162. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  6163. "reference": "8.x-1.0-alpha11",
  6164. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  6165. },
  6166. "require": {
  6167. "drupal/core": "^8.8 || ^9 || ^10"
  6168. },
  6169. "require-dev": {
  6170. "drupal/translators_content": "^1.0@alpha"
  6171. },
  6172. "type": "drupal-module",
  6173. "extra": {
  6174. "drupal": {
  6175. "version": "8.x-1.0-alpha11",
  6176. "datestamp": "1679660668",
  6177. "security-coverage": {
  6178. "status": "not-covered",
  6179. "message": "Project has not opted into security advisory coverage!"
  6180. }
  6181. }
  6182. },
  6183. "notification-url": "https://packages.drupal.org/8/downloads",
  6184. "license": [
  6185. "GPL-2.0-or-later"
  6186. ],
  6187. "authors": [
  6188. {
  6189. "name": "matsbla",
  6190. "homepage": "https://www.drupal.org/user/2325394"
  6191. },
  6192. {
  6193. "name": "vlad.dancer",
  6194. "homepage": "https://www.drupal.org/user/903844"
  6195. }
  6196. ],
  6197. "description": "Create customized lists and queries of translations from your database.",
  6198. "homepage": "https://www.drupal.org/project/translation_views",
  6199. "support": {
  6200. "source": "https://git.drupalcode.org/project/translation_views"
  6201. }
  6202. },
  6203. {
  6204. "name": "drupal/ultimate_cron",
  6205. "version": "2.0.0-alpha6",
  6206. "source": {
  6207. "type": "git",
  6208. "url": "https://git.drupalcode.org/project/ultimate_cron.git",
  6209. "reference": "8.x-2.0-alpha6"
  6210. },
  6211. "dist": {
  6212. "type": "zip",
  6213. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha6.zip",
  6214. "reference": "8.x-2.0-alpha6",
  6215. "shasum": "42ab6df8e94a9b3772876a378062534552a32826"
  6216. },
  6217. "require": {
  6218. "drupal/core": "^9 || ^10"
  6219. },
  6220. "type": "drupal-module",
  6221. "extra": {
  6222. "drupal": {
  6223. "version": "8.x-2.0-alpha6",
  6224. "datestamp": "1666471448",
  6225. "security-coverage": {
  6226. "status": "not-covered",
  6227. "message": "Alpha releases are not covered by Drupal security advisories."
  6228. }
  6229. },
  6230. "drush": {
  6231. "services": {
  6232. "drush.services.yml": "^9 || ^10 || ^11"
  6233. }
  6234. }
  6235. },
  6236. "notification-url": "https://packages.drupal.org/8/downloads",
  6237. "license": [
  6238. "GPL-2.0+"
  6239. ],
  6240. "authors": [
  6241. {
  6242. "name": "arnested",
  6243. "homepage": "https://www.drupal.org/user/245635"
  6244. },
  6245. {
  6246. "name": "Berdir",
  6247. "homepage": "https://www.drupal.org/user/214652"
  6248. },
  6249. {
  6250. "name": "Dane Powell",
  6251. "homepage": "https://www.drupal.org/user/339326"
  6252. },
  6253. {
  6254. "name": "gielfeldt",
  6255. "homepage": "https://www.drupal.org/user/366993"
  6256. },
  6257. {
  6258. "name": "miro_dietiker",
  6259. "homepage": "https://www.drupal.org/user/227761"
  6260. },
  6261. {
  6262. "name": "Primsi",
  6263. "homepage": "https://www.drupal.org/user/282629"
  6264. }
  6265. ],
  6266. "description": "Ultimate cron",
  6267. "homepage": "https://www.drupal.org/project/ultimate_cron",
  6268. "support": {
  6269. "source": "https://git.drupalcode.org/project/ultimate_cron"
  6270. }
  6271. },
  6272. {
  6273. "name": "drupal/video_embed_field",
  6274. "version": "2.5.0",
  6275. "source": {
  6276. "type": "git",
  6277. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  6278. "reference": "8.x-2.5"
  6279. },
  6280. "dist": {
  6281. "type": "zip",
  6282. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.5.zip",
  6283. "reference": "8.x-2.5",
  6284. "shasum": "997ed67b6873e822fe628f87f65bd6da67e7350c"
  6285. },
  6286. "require": {
  6287. "drupal/core": "^9.2 || ^10"
  6288. },
  6289. "require-dev": {
  6290. "drupal/ckeditor": "^1",
  6291. "drupal/colorbox": "^2",
  6292. "drupal/video_embed_media": "*"
  6293. },
  6294. "type": "drupal-module",
  6295. "extra": {
  6296. "drupal": {
  6297. "version": "8.x-2.5",
  6298. "datestamp": "1671413311",
  6299. "security-coverage": {
  6300. "status": "covered",
  6301. "message": "Covered by Drupal's security advisory policy"
  6302. }
  6303. }
  6304. },
  6305. "notification-url": "https://packages.drupal.org/8/downloads",
  6306. "license": [
  6307. "GPL-2.0-or-later"
  6308. ],
  6309. "authors": [
  6310. {
  6311. "name": "abhinesh",
  6312. "homepage": "https://www.drupal.org/user/3645979"
  6313. },
  6314. {
  6315. "name": "jec006",
  6316. "homepage": "https://www.drupal.org/user/855980"
  6317. },
  6318. {
  6319. "name": "plopesc",
  6320. "homepage": "https://www.drupal.org/user/282415"
  6321. },
  6322. {
  6323. "name": "Sam152",
  6324. "homepage": "https://www.drupal.org/user/1485048"
  6325. }
  6326. ],
  6327. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  6328. "homepage": "https://www.drupal.org/project/video_embed_field",
  6329. "support": {
  6330. "source": "https://git.drupalcode.org/project/video_embed_field"
  6331. }
  6332. },
  6333. {
  6334. "name": "drupal/views_bulk_edit",
  6335. "version": "2.9.0",
  6336. "source": {
  6337. "type": "git",
  6338. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  6339. "reference": "8.x-2.9"
  6340. },
  6341. "dist": {
  6342. "type": "zip",
  6343. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.9.zip",
  6344. "reference": "8.x-2.9",
  6345. "shasum": "db45a8cc9ac629859374b24974eafcef257e4387"
  6346. },
  6347. "require": {
  6348. "drupal/core": "^9.4 || ^10"
  6349. },
  6350. "require-dev": {
  6351. "drupal/views_bulk_operations": "~4.2.4"
  6352. },
  6353. "suggest": {
  6354. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  6355. },
  6356. "type": "drupal-module",
  6357. "extra": {
  6358. "drupal": {
  6359. "version": "8.x-2.9",
  6360. "datestamp": "1690222256",
  6361. "security-coverage": {
  6362. "status": "covered",
  6363. "message": "Covered by Drupal's security advisory policy"
  6364. }
  6365. }
  6366. },
  6367. "notification-url": "https://packages.drupal.org/8/downloads",
  6368. "license": [
  6369. "GPL-2.0+"
  6370. ],
  6371. "authors": [
  6372. {
  6373. "name": "Marcin Grabias",
  6374. "homepage": "https://www.drupal.org/u/graber"
  6375. },
  6376. {
  6377. "name": "Graber",
  6378. "homepage": "https://www.drupal.org/user/1599440"
  6379. },
  6380. {
  6381. "name": "joseph.olstad",
  6382. "homepage": "https://www.drupal.org/user/1321830"
  6383. }
  6384. ],
  6385. "description": "Allows bulk edition of entity field values.",
  6386. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  6387. "support": {
  6388. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  6389. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  6390. }
  6391. },
  6392. {
  6393. "name": "drupal/views_bulk_operations",
  6394. "version": "4.2.5",
  6395. "source": {
  6396. "type": "git",
  6397. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  6398. "reference": "4.2.5"
  6399. },
  6400. "dist": {
  6401. "type": "zip",
  6402. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.2.5.zip",
  6403. "reference": "4.2.5",
  6404. "shasum": "220479c5187b1619d5703f64c6f8c272afecf897"
  6405. },
  6406. "require": {
  6407. "drupal/core": "^9.4 || ^10",
  6408. "php": ">=7.4.0"
  6409. },
  6410. "require-dev": {
  6411. "drush/drush": "^11"
  6412. },
  6413. "suggest": {
  6414. "drush/drush": "^10 || ^11"
  6415. },
  6416. "type": "drupal-module",
  6417. "extra": {
  6418. "drupal": {
  6419. "version": "4.2.5",
  6420. "datestamp": "1691066184",
  6421. "security-coverage": {
  6422. "status": "covered",
  6423. "message": "Covered by Drupal's security advisory policy"
  6424. }
  6425. },
  6426. "drush": {
  6427. "services": {
  6428. "drush.services.yml": "^10 || ^11"
  6429. }
  6430. }
  6431. },
  6432. "notification-url": "https://packages.drupal.org/8/downloads",
  6433. "license": [
  6434. "GPL-2.0-or-later"
  6435. ],
  6436. "authors": [
  6437. {
  6438. "name": "Marcin Grabias",
  6439. "homepage": "https://www.drupal.org/u/graber"
  6440. },
  6441. {
  6442. "name": "Graber",
  6443. "homepage": "https://www.drupal.org/user/1599440"
  6444. },
  6445. {
  6446. "name": "joelpittet",
  6447. "homepage": "https://www.drupal.org/user/160302"
  6448. }
  6449. ],
  6450. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  6451. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  6452. "support": {
  6453. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  6454. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  6455. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  6456. }
  6457. },
  6458. {
  6459. "name": "drush/drush",
  6460. "version": "11.6.0",
  6461. "source": {
  6462. "type": "git",
  6463. "url": "https://github.com/drush-ops/drush.git",
  6464. "reference": "f301df5dec8d2aacb03d3e01e0ffc6d98e10ae78"
  6465. },
  6466. "dist": {
  6467. "type": "zip",
  6468. "url": "https://api.github.com/repos/drush-ops/drush/zipball/f301df5dec8d2aacb03d3e01e0ffc6d98e10ae78",
  6469. "reference": "f301df5dec8d2aacb03d3e01e0ffc6d98e10ae78",
  6470. "shasum": ""
  6471. },
  6472. "require": {
  6473. "chi-teck/drupal-code-generator": "^2.4",
  6474. "composer/semver": "^1.4 || ^3",
  6475. "consolidation/annotated-command": "^4.8.2",
  6476. "consolidation/config": "^2",
  6477. "consolidation/filter-via-dot-access-data": "^2",
  6478. "consolidation/robo": "^3.0.9 || ^4.0.1",
  6479. "consolidation/site-alias": "^3.1.6 || ^4",
  6480. "consolidation/site-process": "^4.1.3 || ^5",
  6481. "enlightn/security-checker": "^1",
  6482. "ext-dom": "*",
  6483. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  6484. "league/container": "^3.4 || ^4",
  6485. "php": ">=7.4",
  6486. "psy/psysh": "~0.11",
  6487. "symfony/event-dispatcher": "^4.0 || ^5.0 || ^6.0",
  6488. "symfony/filesystem": "^4.4 || ^5.4 || ^6.1",
  6489. "symfony/finder": "^4.0 || ^5 || ^6",
  6490. "symfony/polyfill-php80": "^1.23",
  6491. "symfony/var-dumper": "^4.0 || ^5.0 || ^6.0",
  6492. "symfony/yaml": "^4.0 || ^5.0 || ^6.0",
  6493. "webflo/drupal-finder": "^1.2"
  6494. },
  6495. "conflict": {
  6496. "drupal/core": "< 9.2",
  6497. "drupal/migrate_run": "*",
  6498. "drupal/migrate_tools": "<= 5"
  6499. },
  6500. "require-dev": {
  6501. "composer/installers": "^1.7",
  6502. "cweagans/composer-patches": "~1.0",
  6503. "david-garcia/phpwhois": "4.3.0",
  6504. "drupal/core-recommended": "^9 || ^10",
  6505. "drupal/semver_example": "2.3.0",
  6506. "phpunit/phpunit": ">=7.5.20",
  6507. "rector/rector": "^0.12",
  6508. "squizlabs/php_codesniffer": "^3.6",
  6509. "vlucas/phpdotenv": "^2.4",
  6510. "yoast/phpunit-polyfills": "^0.2.0"
  6511. },
  6512. "bin": [
  6513. "drush"
  6514. ],
  6515. "type": "library",
  6516. "extra": {
  6517. "installer-paths": {
  6518. "sut/core": [
  6519. "type:drupal-core"
  6520. ],
  6521. "sut/libraries/{$name}": [
  6522. "type:drupal-library"
  6523. ],
  6524. "sut/modules/unish/{$name}": [
  6525. "drupal/devel"
  6526. ],
  6527. "sut/themes/unish/{$name}": [
  6528. "drupal/empty_theme"
  6529. ],
  6530. "sut/modules/contrib/{$name}": [
  6531. "type:drupal-module"
  6532. ],
  6533. "sut/profiles/contrib/{$name}": [
  6534. "type:drupal-profile"
  6535. ],
  6536. "sut/themes/contrib/{$name}": [
  6537. "type:drupal-theme"
  6538. ],
  6539. "sut/drush/contrib/{$name}": [
  6540. "type:drupal-drush"
  6541. ]
  6542. }
  6543. },
  6544. "autoload": {
  6545. "psr-4": {
  6546. "Drush\\": "src/"
  6547. }
  6548. },
  6549. "notification-url": "https://packagist.org/downloads/",
  6550. "license": [
  6551. "GPL-2.0-or-later"
  6552. ],
  6553. "authors": [
  6554. {
  6555. "name": "Moshe Weitzman",
  6556. "email": "weitzman@tejasa.com"
  6557. },
  6558. {
  6559. "name": "Owen Barton",
  6560. "email": "drupal@owenbarton.com"
  6561. },
  6562. {
  6563. "name": "Greg Anderson",
  6564. "email": "greg.1.anderson@greenknowe.org"
  6565. },
  6566. {
  6567. "name": "Jonathan Araña Cruz",
  6568. "email": "jonhattan@faita.net"
  6569. },
  6570. {
  6571. "name": "Jonathan Hedstrom",
  6572. "email": "jhedstrom@gmail.com"
  6573. },
  6574. {
  6575. "name": "Christopher Gervais",
  6576. "email": "chris@ergonlogic.com"
  6577. },
  6578. {
  6579. "name": "Dave Reid",
  6580. "email": "dave@davereid.net"
  6581. },
  6582. {
  6583. "name": "Damian Lee",
  6584. "email": "damiankloip@googlemail.com"
  6585. }
  6586. ],
  6587. "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.",
  6588. "homepage": "http://www.drush.org",
  6589. "support": {
  6590. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  6591. "issues": "https://github.com/drush-ops/drush/issues",
  6592. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  6593. "source": "https://github.com/drush-ops/drush/tree/11.6.0"
  6594. },
  6595. "funding": [
  6596. {
  6597. "url": "https://github.com/weitzman",
  6598. "type": "github"
  6599. }
  6600. ],
  6601. "time": "2023-06-06T18:46:18+00:00"
  6602. },
  6603. {
  6604. "name": "egulias/email-validator",
  6605. "version": "4.0.2",
  6606. "source": {
  6607. "type": "git",
  6608. "url": "https://github.com/egulias/EmailValidator.git",
  6609. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  6610. },
  6611. "dist": {
  6612. "type": "zip",
  6613. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  6614. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  6615. "shasum": ""
  6616. },
  6617. "require": {
  6618. "doctrine/lexer": "^2.0 || ^3.0",
  6619. "php": ">=8.1",
  6620. "symfony/polyfill-intl-idn": "^1.26"
  6621. },
  6622. "require-dev": {
  6623. "phpunit/phpunit": "^10.2",
  6624. "vimeo/psalm": "^5.12"
  6625. },
  6626. "suggest": {
  6627. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  6628. },
  6629. "type": "library",
  6630. "extra": {
  6631. "branch-alias": {
  6632. "dev-master": "4.0.x-dev"
  6633. }
  6634. },
  6635. "autoload": {
  6636. "psr-4": {
  6637. "Egulias\\EmailValidator\\": "src"
  6638. }
  6639. },
  6640. "notification-url": "https://packagist.org/downloads/",
  6641. "license": [
  6642. "MIT"
  6643. ],
  6644. "authors": [
  6645. {
  6646. "name": "Eduardo Gulias Davis"
  6647. }
  6648. ],
  6649. "description": "A library for validating emails against several RFCs",
  6650. "homepage": "https://github.com/egulias/EmailValidator",
  6651. "keywords": [
  6652. "email",
  6653. "emailvalidation",
  6654. "emailvalidator",
  6655. "validation",
  6656. "validator"
  6657. ],
  6658. "support": {
  6659. "issues": "https://github.com/egulias/EmailValidator/issues",
  6660. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  6661. },
  6662. "funding": [
  6663. {
  6664. "url": "https://github.com/egulias",
  6665. "type": "github"
  6666. }
  6667. ],
  6668. "time": "2023-10-06T06:47:41+00:00"
  6669. },
  6670. {
  6671. "name": "enlightn/security-checker",
  6672. "version": "v1.10.0",
  6673. "source": {
  6674. "type": "git",
  6675. "url": "https://github.com/enlightn/security-checker.git",
  6676. "reference": "196bacc76e7a72a63d0e1220926dbb190272db97"
  6677. },
  6678. "dist": {
  6679. "type": "zip",
  6680. "url": "https://api.github.com/repos/enlightn/security-checker/zipball/196bacc76e7a72a63d0e1220926dbb190272db97",
  6681. "reference": "196bacc76e7a72a63d0e1220926dbb190272db97",
  6682. "shasum": ""
  6683. },
  6684. "require": {
  6685. "ext-json": "*",
  6686. "guzzlehttp/guzzle": "^6.3|^7.0",
  6687. "php": ">=5.6",
  6688. "symfony/console": "^3.4|^4|^5|^6",
  6689. "symfony/finder": "^3|^4|^5|^6",
  6690. "symfony/process": "^3.4|^4|^5|^6",
  6691. "symfony/yaml": "^3.4|^4|^5|^6"
  6692. },
  6693. "require-dev": {
  6694. "ext-zip": "*",
  6695. "friendsofphp/php-cs-fixer": "^2.18|^3.0",
  6696. "phpunit/phpunit": "^5.5|^6|^7|^8|^9"
  6697. },
  6698. "bin": [
  6699. "security-checker"
  6700. ],
  6701. "type": "library",
  6702. "autoload": {
  6703. "psr-4": {
  6704. "Enlightn\\SecurityChecker\\": "src"
  6705. }
  6706. },
  6707. "notification-url": "https://packagist.org/downloads/",
  6708. "license": [
  6709. "MIT"
  6710. ],
  6711. "authors": [
  6712. {
  6713. "name": "Paras Malhotra",
  6714. "email": "paras@laravel-enlightn.com"
  6715. },
  6716. {
  6717. "name": "Miguel Piedrafita",
  6718. "email": "soy@miguelpiedrafita.com"
  6719. }
  6720. ],
  6721. "description": "A PHP dependency vulnerabilities scanner based on the Security Advisories Database.",
  6722. "keywords": [
  6723. "package",
  6724. "php",
  6725. "scanner",
  6726. "security",
  6727. "security advisories",
  6728. "vulnerability scanner"
  6729. ],
  6730. "support": {
  6731. "issues": "https://github.com/enlightn/security-checker/issues",
  6732. "source": "https://github.com/enlightn/security-checker/tree/v1.10.0"
  6733. },
  6734. "time": "2022-02-21T22:40:16+00:00"
  6735. },
  6736. {
  6737. "name": "fileeye/mimemap",
  6738. "version": "2.0.2",
  6739. "source": {
  6740. "type": "git",
  6741. "url": "https://github.com/FileEye/MimeMap.git",
  6742. "reference": "befb9f1ee77dbf6b74a2c578874e128c9a5c1a2d"
  6743. },
  6744. "dist": {
  6745. "type": "zip",
  6746. "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/befb9f1ee77dbf6b74a2c578874e128c9a5c1a2d",
  6747. "reference": "befb9f1ee77dbf6b74a2c578874e128c9a5c1a2d",
  6748. "shasum": ""
  6749. },
  6750. "require": {
  6751. "php": ">=7.3"
  6752. },
  6753. "require-dev": {
  6754. "composer-runtime-api": "^2.0.0",
  6755. "phpstan/phpstan": "^1.2",
  6756. "phpunit/phpunit": "^9 | ^10",
  6757. "sebastian/comparator": ">=4",
  6758. "sebastian/diff": ">=4",
  6759. "squizlabs/php_codesniffer": ">=3.6",
  6760. "symfony/console": ">=5.4",
  6761. "symfony/filesystem": ">=5.4",
  6762. "symfony/var-dumper": ">=5.4",
  6763. "symfony/yaml": ">=5.4",
  6764. "vimeo/psalm": "^4.23 | ^5"
  6765. },
  6766. "bin": [
  6767. "bin/fileeye-mimemap"
  6768. ],
  6769. "type": "library",
  6770. "extra": {
  6771. "branch-alias": {
  6772. "dev-master": "2.x-dev"
  6773. }
  6774. },
  6775. "autoload": {
  6776. "psr-4": {
  6777. "FileEye\\MimeMap\\": "src/"
  6778. }
  6779. },
  6780. "notification-url": "https://packagist.org/downloads/",
  6781. "license": [
  6782. "LGPL-3.0-or-later"
  6783. ],
  6784. "description": "A PHP library to handle MIME Content-Type fields and their related file extensions.",
  6785. "homepage": "https://github.com/FileEye/MimeMap",
  6786. "keywords": [
  6787. "mime",
  6788. "mime-database",
  6789. "mime-parser",
  6790. "mime-type"
  6791. ],
  6792. "support": {
  6793. "issues": "https://github.com/FileEye/MimeMap/issues",
  6794. "source": "https://github.com/FileEye/MimeMap/tree/2.0.2"
  6795. },
  6796. "time": "2023-08-29T16:20:26+00:00"
  6797. },
  6798. {
  6799. "name": "fileeye/pel",
  6800. "version": "0.9.20",
  6801. "source": {
  6802. "type": "git",
  6803. "url": "https://github.com/FileEye/pel.git",
  6804. "reference": "1675cbd44e89ff8f01b9576cf32ec1b4a4a67ede"
  6805. },
  6806. "dist": {
  6807. "type": "zip",
  6808. "url": "https://api.github.com/repos/FileEye/pel/zipball/1675cbd44e89ff8f01b9576cf32ec1b4a4a67ede",
  6809. "reference": "1675cbd44e89ff8f01b9576cf32ec1b4a4a67ede",
  6810. "shasum": ""
  6811. },
  6812. "require": {
  6813. "php": ">=7.1.0"
  6814. },
  6815. "require-dev": {
  6816. "ext-exif": "*",
  6817. "ext-gd": "*",
  6818. "php-coveralls/php-coveralls": ">2.4",
  6819. "phpstan/phpstan": "^1.4",
  6820. "squizlabs/php_codesniffer": ">3.5",
  6821. "symfony/phpunit-bridge": "^4 || ^5 || ^6"
  6822. },
  6823. "type": "library",
  6824. "autoload": {
  6825. "psr-4": {
  6826. "lsolesen\\pel\\": "src/"
  6827. }
  6828. },
  6829. "notification-url": "https://packagist.org/downloads/",
  6830. "license": [
  6831. "GPL-2.0"
  6832. ],
  6833. "authors": [
  6834. {
  6835. "name": "Lars Olesen",
  6836. "email": "lars@intraface.dk",
  6837. "homepage": "http://intraface.dk",
  6838. "role": "Developer"
  6839. },
  6840. {
  6841. "name": "Martin Geisler",
  6842. "email": "martin@geisler.net",
  6843. "homepage": "http://geisler.net",
  6844. "role": "Developer"
  6845. }
  6846. ],
  6847. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  6848. "homepage": "https://github.com/FileEye/pel",
  6849. "keywords": [
  6850. "exif",
  6851. "image"
  6852. ],
  6853. "support": {
  6854. "issues": "https://github.com/FileEye/pel/issues",
  6855. "source": "https://github.com/FileEye/pel/tree/0.9.20"
  6856. },
  6857. "time": "2023-06-20T07:10:35+00:00"
  6858. },
  6859. {
  6860. "name": "grasmash/expander",
  6861. "version": "3.0.0",
  6862. "source": {
  6863. "type": "git",
  6864. "url": "https://github.com/grasmash/expander.git",
  6865. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82"
  6866. },
  6867. "dist": {
  6868. "type": "zip",
  6869. "url": "https://api.github.com/repos/grasmash/expander/zipball/bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  6870. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  6871. "shasum": ""
  6872. },
  6873. "require": {
  6874. "dflydev/dot-access-data": "^3.0.0",
  6875. "php": ">=8.0",
  6876. "psr/log": "^2 | ^3"
  6877. },
  6878. "require-dev": {
  6879. "greg-1-anderson/composer-test-scenarios": "^1",
  6880. "php-coveralls/php-coveralls": "^2.5",
  6881. "phpunit/phpunit": "^9",
  6882. "squizlabs/php_codesniffer": "^3.3"
  6883. },
  6884. "type": "library",
  6885. "extra": {
  6886. "branch-alias": {
  6887. "dev-master": "1.x-dev"
  6888. }
  6889. },
  6890. "autoload": {
  6891. "psr-4": {
  6892. "Grasmash\\Expander\\": "src/"
  6893. }
  6894. },
  6895. "notification-url": "https://packagist.org/downloads/",
  6896. "license": [
  6897. "MIT"
  6898. ],
  6899. "authors": [
  6900. {
  6901. "name": "Matthew Grasmick"
  6902. }
  6903. ],
  6904. "description": "Expands internal property references in PHP arrays file.",
  6905. "support": {
  6906. "issues": "https://github.com/grasmash/expander/issues",
  6907. "source": "https://github.com/grasmash/expander/tree/3.0.0"
  6908. },
  6909. "time": "2022-05-10T13:14:49+00:00"
  6910. },
  6911. {
  6912. "name": "guzzlehttp/guzzle",
  6913. "version": "7.7.1",
  6914. "source": {
  6915. "type": "git",
  6916. "url": "https://github.com/guzzle/guzzle.git",
  6917. "reference": "085b026db54d4b5012f727c80c9958e8b8cbc454"
  6918. },
  6919. "dist": {
  6920. "type": "zip",
  6921. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/085b026db54d4b5012f727c80c9958e8b8cbc454",
  6922. "reference": "085b026db54d4b5012f727c80c9958e8b8cbc454",
  6923. "shasum": ""
  6924. },
  6925. "require": {
  6926. "ext-json": "*",
  6927. "guzzlehttp/promises": "^1.5.3 || ^2.0",
  6928. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  6929. "php": "^7.2.5 || ^8.0",
  6930. "psr/http-client": "^1.0",
  6931. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  6932. },
  6933. "provide": {
  6934. "psr/http-client-implementation": "1.0"
  6935. },
  6936. "require-dev": {
  6937. "bamarni/composer-bin-plugin": "^1.8.1",
  6938. "ext-curl": "*",
  6939. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  6940. "php-http/message-factory": "^1.1",
  6941. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  6942. "psr/log": "^1.1 || ^2.0 || ^3.0"
  6943. },
  6944. "suggest": {
  6945. "ext-curl": "Required for CURL handler support",
  6946. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  6947. "psr/log": "Required for using the Log middleware"
  6948. },
  6949. "type": "library",
  6950. "extra": {
  6951. "bamarni-bin": {
  6952. "bin-links": true,
  6953. "forward-command": false
  6954. }
  6955. },
  6956. "autoload": {
  6957. "files": [
  6958. "src/functions_include.php"
  6959. ],
  6960. "psr-4": {
  6961. "GuzzleHttp\\": "src/"
  6962. }
  6963. },
  6964. "notification-url": "https://packagist.org/downloads/",
  6965. "license": [
  6966. "MIT"
  6967. ],
  6968. "authors": [
  6969. {
  6970. "name": "Graham Campbell",
  6971. "email": "hello@gjcampbell.co.uk",
  6972. "homepage": "https://github.com/GrahamCampbell"
  6973. },
  6974. {
  6975. "name": "Michael Dowling",
  6976. "email": "mtdowling@gmail.com",
  6977. "homepage": "https://github.com/mtdowling"
  6978. },
  6979. {
  6980. "name": "Jeremy Lindblom",
  6981. "email": "jeremeamia@gmail.com",
  6982. "homepage": "https://github.com/jeremeamia"
  6983. },
  6984. {
  6985. "name": "George Mponos",
  6986. "email": "gmponos@gmail.com",
  6987. "homepage": "https://github.com/gmponos"
  6988. },
  6989. {
  6990. "name": "Tobias Nyholm",
  6991. "email": "tobias.nyholm@gmail.com",
  6992. "homepage": "https://github.com/Nyholm"
  6993. },
  6994. {
  6995. "name": "Márk Sági-Kazár",
  6996. "email": "mark.sagikazar@gmail.com",
  6997. "homepage": "https://github.com/sagikazarmark"
  6998. },
  6999. {
  7000. "name": "Tobias Schultze",
  7001. "email": "webmaster@tubo-world.de",
  7002. "homepage": "https://github.com/Tobion"
  7003. }
  7004. ],
  7005. "description": "Guzzle is a PHP HTTP client library",
  7006. "keywords": [
  7007. "client",
  7008. "curl",
  7009. "framework",
  7010. "http",
  7011. "http client",
  7012. "psr-18",
  7013. "psr-7",
  7014. "rest",
  7015. "web service"
  7016. ],
  7017. "support": {
  7018. "issues": "https://github.com/guzzle/guzzle/issues",
  7019. "source": "https://github.com/guzzle/guzzle/tree/7.7.1"
  7020. },
  7021. "funding": [
  7022. {
  7023. "url": "https://github.com/GrahamCampbell",
  7024. "type": "github"
  7025. },
  7026. {
  7027. "url": "https://github.com/Nyholm",
  7028. "type": "github"
  7029. },
  7030. {
  7031. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  7032. "type": "tidelift"
  7033. }
  7034. ],
  7035. "time": "2023-08-27T10:02:06+00:00"
  7036. },
  7037. {
  7038. "name": "guzzlehttp/promises",
  7039. "version": "2.0.1",
  7040. "source": {
  7041. "type": "git",
  7042. "url": "https://github.com/guzzle/promises.git",
  7043. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d"
  7044. },
  7045. "dist": {
  7046. "type": "zip",
  7047. "url": "https://api.github.com/repos/guzzle/promises/zipball/111166291a0f8130081195ac4556a5587d7f1b5d",
  7048. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d",
  7049. "shasum": ""
  7050. },
  7051. "require": {
  7052. "php": "^7.2.5 || ^8.0"
  7053. },
  7054. "require-dev": {
  7055. "bamarni/composer-bin-plugin": "^1.8.1",
  7056. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  7057. },
  7058. "type": "library",
  7059. "extra": {
  7060. "bamarni-bin": {
  7061. "bin-links": true,
  7062. "forward-command": false
  7063. }
  7064. },
  7065. "autoload": {
  7066. "psr-4": {
  7067. "GuzzleHttp\\Promise\\": "src/"
  7068. }
  7069. },
  7070. "notification-url": "https://packagist.org/downloads/",
  7071. "license": [
  7072. "MIT"
  7073. ],
  7074. "authors": [
  7075. {
  7076. "name": "Graham Campbell",
  7077. "email": "hello@gjcampbell.co.uk",
  7078. "homepage": "https://github.com/GrahamCampbell"
  7079. },
  7080. {
  7081. "name": "Michael Dowling",
  7082. "email": "mtdowling@gmail.com",
  7083. "homepage": "https://github.com/mtdowling"
  7084. },
  7085. {
  7086. "name": "Tobias Nyholm",
  7087. "email": "tobias.nyholm@gmail.com",
  7088. "homepage": "https://github.com/Nyholm"
  7089. },
  7090. {
  7091. "name": "Tobias Schultze",
  7092. "email": "webmaster@tubo-world.de",
  7093. "homepage": "https://github.com/Tobion"
  7094. }
  7095. ],
  7096. "description": "Guzzle promises library",
  7097. "keywords": [
  7098. "promise"
  7099. ],
  7100. "support": {
  7101. "issues": "https://github.com/guzzle/promises/issues",
  7102. "source": "https://github.com/guzzle/promises/tree/2.0.1"
  7103. },
  7104. "funding": [
  7105. {
  7106. "url": "https://github.com/GrahamCampbell",
  7107. "type": "github"
  7108. },
  7109. {
  7110. "url": "https://github.com/Nyholm",
  7111. "type": "github"
  7112. },
  7113. {
  7114. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  7115. "type": "tidelift"
  7116. }
  7117. ],
  7118. "time": "2023-08-03T15:11:55+00:00"
  7119. },
  7120. {
  7121. "name": "guzzlehttp/psr7",
  7122. "version": "2.5.1",
  7123. "source": {
  7124. "type": "git",
  7125. "url": "https://github.com/guzzle/psr7.git",
  7126. "reference": "a0b3a03e8e8005257fbc408ce5f0fd0a8274dc7f"
  7127. },
  7128. "dist": {
  7129. "type": "zip",
  7130. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a0b3a03e8e8005257fbc408ce5f0fd0a8274dc7f",
  7131. "reference": "a0b3a03e8e8005257fbc408ce5f0fd0a8274dc7f",
  7132. "shasum": ""
  7133. },
  7134. "require": {
  7135. "php": "^7.2.5 || ^8.0",
  7136. "psr/http-factory": "^1.0",
  7137. "psr/http-message": "^1.1 || ^2.0",
  7138. "ralouphie/getallheaders": "^3.0"
  7139. },
  7140. "provide": {
  7141. "psr/http-factory-implementation": "1.0",
  7142. "psr/http-message-implementation": "1.0"
  7143. },
  7144. "require-dev": {
  7145. "bamarni/composer-bin-plugin": "^1.8.1",
  7146. "http-interop/http-factory-tests": "^0.9",
  7147. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  7148. },
  7149. "suggest": {
  7150. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  7151. },
  7152. "type": "library",
  7153. "extra": {
  7154. "bamarni-bin": {
  7155. "bin-links": true,
  7156. "forward-command": false
  7157. }
  7158. },
  7159. "autoload": {
  7160. "psr-4": {
  7161. "GuzzleHttp\\Psr7\\": "src/"
  7162. }
  7163. },
  7164. "notification-url": "https://packagist.org/downloads/",
  7165. "license": [
  7166. "MIT"
  7167. ],
  7168. "authors": [
  7169. {
  7170. "name": "Graham Campbell",
  7171. "email": "hello@gjcampbell.co.uk",
  7172. "homepage": "https://github.com/GrahamCampbell"
  7173. },
  7174. {
  7175. "name": "Michael Dowling",
  7176. "email": "mtdowling@gmail.com",
  7177. "homepage": "https://github.com/mtdowling"
  7178. },
  7179. {
  7180. "name": "George Mponos",
  7181. "email": "gmponos@gmail.com",
  7182. "homepage": "https://github.com/gmponos"
  7183. },
  7184. {
  7185. "name": "Tobias Nyholm",
  7186. "email": "tobias.nyholm@gmail.com",
  7187. "homepage": "https://github.com/Nyholm"
  7188. },
  7189. {
  7190. "name": "Márk Sági-Kazár",
  7191. "email": "mark.sagikazar@gmail.com",
  7192. "homepage": "https://github.com/sagikazarmark"
  7193. },
  7194. {
  7195. "name": "Tobias Schultze",
  7196. "email": "webmaster@tubo-world.de",
  7197. "homepage": "https://github.com/Tobion"
  7198. },
  7199. {
  7200. "name": "Márk Sági-Kazár",
  7201. "email": "mark.sagikazar@gmail.com",
  7202. "homepage": "https://sagikazarmark.hu"
  7203. }
  7204. ],
  7205. "description": "PSR-7 message implementation that also provides common utility methods",
  7206. "keywords": [
  7207. "http",
  7208. "message",
  7209. "psr-7",
  7210. "request",
  7211. "response",
  7212. "stream",
  7213. "uri",
  7214. "url"
  7215. ],
  7216. "support": {
  7217. "issues": "https://github.com/guzzle/psr7/issues",
  7218. "source": "https://github.com/guzzle/psr7/tree/2.5.1"
  7219. },
  7220. "funding": [
  7221. {
  7222. "url": "https://github.com/GrahamCampbell",
  7223. "type": "github"
  7224. },
  7225. {
  7226. "url": "https://github.com/Nyholm",
  7227. "type": "github"
  7228. },
  7229. {
  7230. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  7231. "type": "tidelift"
  7232. }
  7233. ],
  7234. "time": "2023-08-03T15:02:42+00:00"
  7235. },
  7236. {
  7237. "name": "kint-php/kint",
  7238. "version": "3.3",
  7239. "source": {
  7240. "type": "git",
  7241. "url": "https://github.com/kint-php/kint.git",
  7242. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b"
  7243. },
  7244. "dist": {
  7245. "type": "zip",
  7246. "url": "https://api.github.com/repos/kint-php/kint/zipball/335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  7247. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  7248. "shasum": ""
  7249. },
  7250. "require": {
  7251. "php": ">=5.3.6"
  7252. },
  7253. "require-dev": {
  7254. "friendsofphp/php-cs-fixer": "^2.0",
  7255. "phpunit/phpunit": "^4.0",
  7256. "seld/phar-utils": "^1.0",
  7257. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  7258. "vimeo/psalm": "^3.0"
  7259. },
  7260. "suggest": {
  7261. "ext-ctype": "Simple data type tests",
  7262. "ext-iconv": "Provides fallback detection for ambiguous legacy string encodings such as the Windows and ISO 8859 code pages",
  7263. "ext-mbstring": "Provides string encoding detection",
  7264. "kint-php/kint-js": "Provides a simplified dump to console.log()",
  7265. "kint-php/kint-twig": "Provides d() and s() functions in twig templates",
  7266. "symfony/polyfill-ctype": "Replacement for ext-ctype if missing",
  7267. "symfony/polyfill-iconv": "Replacement for ext-iconv if missing",
  7268. "symfony/polyfill-mbstring": "Replacement for ext-mbstring if missing"
  7269. },
  7270. "type": "library",
  7271. "autoload": {
  7272. "files": [
  7273. "init.php"
  7274. ],
  7275. "psr-4": {
  7276. "Kint\\": "src/"
  7277. }
  7278. },
  7279. "notification-url": "https://packagist.org/downloads/",
  7280. "license": [
  7281. "MIT"
  7282. ],
  7283. "authors": [
  7284. {
  7285. "name": "Jonathan Vollebregt",
  7286. "homepage": "https://github.com/jnvsor"
  7287. },
  7288. {
  7289. "name": "Rokas Šleinius",
  7290. "homepage": "https://github.com/raveren"
  7291. },
  7292. {
  7293. "name": "Contributors",
  7294. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  7295. }
  7296. ],
  7297. "description": "Kint - debugging tool for PHP developers",
  7298. "homepage": "https://kint-php.github.io/kint/",
  7299. "keywords": [
  7300. "debug",
  7301. "kint",
  7302. "php"
  7303. ],
  7304. "support": {
  7305. "issues": "https://github.com/kint-php/kint/issues",
  7306. "source": "https://github.com/kint-php/kint/tree/master"
  7307. },
  7308. "time": "2019-10-17T18:05:24+00:00"
  7309. },
  7310. {
  7311. "name": "league/container",
  7312. "version": "4.2.0",
  7313. "source": {
  7314. "type": "git",
  7315. "url": "https://github.com/thephpleague/container.git",
  7316. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab"
  7317. },
  7318. "dist": {
  7319. "type": "zip",
  7320. "url": "https://api.github.com/repos/thephpleague/container/zipball/375d13cb828649599ef5d48a339c4af7a26cd0ab",
  7321. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab",
  7322. "shasum": ""
  7323. },
  7324. "require": {
  7325. "php": "^7.2 || ^8.0",
  7326. "psr/container": "^1.1 || ^2.0"
  7327. },
  7328. "provide": {
  7329. "psr/container-implementation": "^1.0"
  7330. },
  7331. "replace": {
  7332. "orno/di": "~2.0"
  7333. },
  7334. "require-dev": {
  7335. "nette/php-generator": "^3.4",
  7336. "nikic/php-parser": "^4.10",
  7337. "phpstan/phpstan": "^0.12.47",
  7338. "phpunit/phpunit": "^8.5.17",
  7339. "roave/security-advisories": "dev-latest",
  7340. "scrutinizer/ocular": "^1.8",
  7341. "squizlabs/php_codesniffer": "^3.6"
  7342. },
  7343. "type": "library",
  7344. "extra": {
  7345. "branch-alias": {
  7346. "dev-master": "4.x-dev",
  7347. "dev-4.x": "4.x-dev",
  7348. "dev-3.x": "3.x-dev",
  7349. "dev-2.x": "2.x-dev",
  7350. "dev-1.x": "1.x-dev"
  7351. }
  7352. },
  7353. "autoload": {
  7354. "psr-4": {
  7355. "League\\Container\\": "src"
  7356. }
  7357. },
  7358. "notification-url": "https://packagist.org/downloads/",
  7359. "license": [
  7360. "MIT"
  7361. ],
  7362. "authors": [
  7363. {
  7364. "name": "Phil Bennett",
  7365. "email": "mail@philbennett.co.uk",
  7366. "role": "Developer"
  7367. }
  7368. ],
  7369. "description": "A fast and intuitive dependency injection container.",
  7370. "homepage": "https://github.com/thephpleague/container",
  7371. "keywords": [
  7372. "container",
  7373. "dependency",
  7374. "di",
  7375. "injection",
  7376. "league",
  7377. "provider",
  7378. "service"
  7379. ],
  7380. "support": {
  7381. "issues": "https://github.com/thephpleague/container/issues",
  7382. "source": "https://github.com/thephpleague/container/tree/4.2.0"
  7383. },
  7384. "funding": [
  7385. {
  7386. "url": "https://github.com/philipobenito",
  7387. "type": "github"
  7388. }
  7389. ],
  7390. "time": "2021-11-16T10:29:06+00:00"
  7391. },
  7392. {
  7393. "name": "masterminds/html5",
  7394. "version": "2.8.1",
  7395. "source": {
  7396. "type": "git",
  7397. "url": "https://github.com/Masterminds/html5-php.git",
  7398. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf"
  7399. },
  7400. "dist": {
  7401. "type": "zip",
  7402. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f47dcf3c70c584de14f21143c55d9939631bc6cf",
  7403. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf",
  7404. "shasum": ""
  7405. },
  7406. "require": {
  7407. "ext-dom": "*",
  7408. "php": ">=5.3.0"
  7409. },
  7410. "require-dev": {
  7411. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8"
  7412. },
  7413. "type": "library",
  7414. "extra": {
  7415. "branch-alias": {
  7416. "dev-master": "2.7-dev"
  7417. }
  7418. },
  7419. "autoload": {
  7420. "psr-4": {
  7421. "Masterminds\\": "src"
  7422. }
  7423. },
  7424. "notification-url": "https://packagist.org/downloads/",
  7425. "license": [
  7426. "MIT"
  7427. ],
  7428. "authors": [
  7429. {
  7430. "name": "Matt Butcher",
  7431. "email": "technosophos@gmail.com"
  7432. },
  7433. {
  7434. "name": "Matt Farina",
  7435. "email": "matt@mattfarina.com"
  7436. },
  7437. {
  7438. "name": "Asmir Mustafic",
  7439. "email": "goetas@gmail.com"
  7440. }
  7441. ],
  7442. "description": "An HTML5 parser and serializer.",
  7443. "homepage": "http://masterminds.github.io/html5-php",
  7444. "keywords": [
  7445. "HTML5",
  7446. "dom",
  7447. "html",
  7448. "parser",
  7449. "querypath",
  7450. "serializer",
  7451. "xml"
  7452. ],
  7453. "support": {
  7454. "issues": "https://github.com/Masterminds/html5-php/issues",
  7455. "source": "https://github.com/Masterminds/html5-php/tree/2.8.1"
  7456. },
  7457. "time": "2023-05-10T11:58:31+00:00"
  7458. },
  7459. {
  7460. "name": "mck89/peast",
  7461. "version": "v1.15.4",
  7462. "source": {
  7463. "type": "git",
  7464. "url": "https://github.com/mck89/peast.git",
  7465. "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18"
  7466. },
  7467. "dist": {
  7468. "type": "zip",
  7469. "url": "https://api.github.com/repos/mck89/peast/zipball/1df4dc28a6b5bb7ab117ab073c1712256e954e18",
  7470. "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18",
  7471. "shasum": ""
  7472. },
  7473. "require": {
  7474. "ext-mbstring": "*",
  7475. "php": ">=5.4.0"
  7476. },
  7477. "require-dev": {
  7478. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  7479. },
  7480. "type": "library",
  7481. "extra": {
  7482. "branch-alias": {
  7483. "dev-master": "1.15.4-dev"
  7484. }
  7485. },
  7486. "autoload": {
  7487. "psr-4": {
  7488. "Peast\\": "lib/Peast/"
  7489. }
  7490. },
  7491. "notification-url": "https://packagist.org/downloads/",
  7492. "license": [
  7493. "BSD-3-Clause"
  7494. ],
  7495. "authors": [
  7496. {
  7497. "name": "Marco Marchiò",
  7498. "email": "marco.mm89@gmail.com"
  7499. }
  7500. ],
  7501. "description": "Peast is PHP library that generates AST for JavaScript code",
  7502. "support": {
  7503. "issues": "https://github.com/mck89/peast/issues",
  7504. "source": "https://github.com/mck89/peast/tree/v1.15.4"
  7505. },
  7506. "time": "2023-08-12T08:29:29+00:00"
  7507. },
  7508. {
  7509. "name": "nikic/php-parser",
  7510. "version": "v4.17.1",
  7511. "source": {
  7512. "type": "git",
  7513. "url": "https://github.com/nikic/PHP-Parser.git",
  7514. "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d"
  7515. },
  7516. "dist": {
  7517. "type": "zip",
  7518. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
  7519. "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
  7520. "shasum": ""
  7521. },
  7522. "require": {
  7523. "ext-tokenizer": "*",
  7524. "php": ">=7.0"
  7525. },
  7526. "require-dev": {
  7527. "ircmaxell/php-yacc": "^0.0.7",
  7528. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  7529. },
  7530. "bin": [
  7531. "bin/php-parse"
  7532. ],
  7533. "type": "library",
  7534. "extra": {
  7535. "branch-alias": {
  7536. "dev-master": "4.9-dev"
  7537. }
  7538. },
  7539. "autoload": {
  7540. "psr-4": {
  7541. "PhpParser\\": "lib/PhpParser"
  7542. }
  7543. },
  7544. "notification-url": "https://packagist.org/downloads/",
  7545. "license": [
  7546. "BSD-3-Clause"
  7547. ],
  7548. "authors": [
  7549. {
  7550. "name": "Nikita Popov"
  7551. }
  7552. ],
  7553. "description": "A PHP parser written in PHP",
  7554. "keywords": [
  7555. "parser",
  7556. "php"
  7557. ],
  7558. "support": {
  7559. "issues": "https://github.com/nikic/PHP-Parser/issues",
  7560. "source": "https://github.com/nikic/PHP-Parser/tree/v4.17.1"
  7561. },
  7562. "time": "2023-08-13T19:53:39+00:00"
  7563. },
  7564. {
  7565. "name": "pear/archive_tar",
  7566. "version": "1.4.14",
  7567. "source": {
  7568. "type": "git",
  7569. "url": "https://github.com/pear/Archive_Tar.git",
  7570. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  7571. },
  7572. "dist": {
  7573. "type": "zip",
  7574. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  7575. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  7576. "shasum": ""
  7577. },
  7578. "require": {
  7579. "pear/pear-core-minimal": "^1.10.0alpha2",
  7580. "php": ">=5.2.0"
  7581. },
  7582. "require-dev": {
  7583. "phpunit/phpunit": "*"
  7584. },
  7585. "suggest": {
  7586. "ext-bz2": "Bz2 compression support.",
  7587. "ext-xz": "Lzma2 compression support.",
  7588. "ext-zlib": "Gzip compression support."
  7589. },
  7590. "type": "library",
  7591. "extra": {
  7592. "branch-alias": {
  7593. "dev-master": "1.4.x-dev"
  7594. }
  7595. },
  7596. "autoload": {
  7597. "psr-0": {
  7598. "Archive_Tar": ""
  7599. }
  7600. },
  7601. "notification-url": "https://packagist.org/downloads/",
  7602. "include-path": [
  7603. "./"
  7604. ],
  7605. "license": [
  7606. "BSD-3-Clause"
  7607. ],
  7608. "authors": [
  7609. {
  7610. "name": "Vincent Blavet",
  7611. "email": "vincent@phpconcept.net"
  7612. },
  7613. {
  7614. "name": "Greg Beaver",
  7615. "email": "greg@chiaraquartet.net"
  7616. },
  7617. {
  7618. "name": "Michiel Rook",
  7619. "email": "mrook@php.net"
  7620. }
  7621. ],
  7622. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  7623. "homepage": "https://github.com/pear/Archive_Tar",
  7624. "keywords": [
  7625. "archive",
  7626. "tar"
  7627. ],
  7628. "support": {
  7629. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  7630. "source": "https://github.com/pear/Archive_Tar"
  7631. },
  7632. "funding": [
  7633. {
  7634. "url": "https://github.com/mrook",
  7635. "type": "github"
  7636. },
  7637. {
  7638. "url": "https://www.patreon.com/michielrook",
  7639. "type": "patreon"
  7640. }
  7641. ],
  7642. "time": "2021-07-20T13:53:39+00:00"
  7643. },
  7644. {
  7645. "name": "pear/console_getopt",
  7646. "version": "v1.4.3",
  7647. "source": {
  7648. "type": "git",
  7649. "url": "https://github.com/pear/Console_Getopt.git",
  7650. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  7651. },
  7652. "dist": {
  7653. "type": "zip",
  7654. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7655. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7656. "shasum": ""
  7657. },
  7658. "type": "library",
  7659. "autoload": {
  7660. "psr-0": {
  7661. "Console": "./"
  7662. }
  7663. },
  7664. "notification-url": "https://packagist.org/downloads/",
  7665. "include-path": [
  7666. "./"
  7667. ],
  7668. "license": [
  7669. "BSD-2-Clause"
  7670. ],
  7671. "authors": [
  7672. {
  7673. "name": "Andrei Zmievski",
  7674. "email": "andrei@php.net",
  7675. "role": "Lead"
  7676. },
  7677. {
  7678. "name": "Stig Bakken",
  7679. "email": "stig@php.net",
  7680. "role": "Developer"
  7681. },
  7682. {
  7683. "name": "Greg Beaver",
  7684. "email": "cellog@php.net",
  7685. "role": "Helper"
  7686. }
  7687. ],
  7688. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  7689. "support": {
  7690. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  7691. "source": "https://github.com/pear/Console_Getopt"
  7692. },
  7693. "time": "2019-11-20T18:27:48+00:00"
  7694. },
  7695. {
  7696. "name": "pear/pear-core-minimal",
  7697. "version": "v1.10.14",
  7698. "source": {
  7699. "type": "git",
  7700. "url": "https://github.com/pear/pear-core-minimal.git",
  7701. "reference": "a86fc145edb5caedbf96527214ce3cadc9de4a32"
  7702. },
  7703. "dist": {
  7704. "type": "zip",
  7705. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/a86fc145edb5caedbf96527214ce3cadc9de4a32",
  7706. "reference": "a86fc145edb5caedbf96527214ce3cadc9de4a32",
  7707. "shasum": ""
  7708. },
  7709. "require": {
  7710. "pear/console_getopt": "~1.4",
  7711. "pear/pear_exception": "~1.0",
  7712. "php": ">=5.4"
  7713. },
  7714. "replace": {
  7715. "rsky/pear-core-min": "self.version"
  7716. },
  7717. "type": "library",
  7718. "autoload": {
  7719. "psr-0": {
  7720. "": "src/"
  7721. }
  7722. },
  7723. "notification-url": "https://packagist.org/downloads/",
  7724. "include-path": [
  7725. "src/"
  7726. ],
  7727. "license": [
  7728. "BSD-3-Clause"
  7729. ],
  7730. "authors": [
  7731. {
  7732. "name": "Christian Weiske",
  7733. "email": "cweiske@php.net",
  7734. "role": "Lead"
  7735. }
  7736. ],
  7737. "description": "Minimal set of PEAR core files to be used as composer dependency",
  7738. "support": {
  7739. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  7740. "source": "https://github.com/pear/pear-core-minimal"
  7741. },
  7742. "time": "2023-11-26T16:15:38+00:00"
  7743. },
  7744. {
  7745. "name": "pear/pear_exception",
  7746. "version": "v1.0.2",
  7747. "source": {
  7748. "type": "git",
  7749. "url": "https://github.com/pear/PEAR_Exception.git",
  7750. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  7751. },
  7752. "dist": {
  7753. "type": "zip",
  7754. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  7755. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  7756. "shasum": ""
  7757. },
  7758. "require": {
  7759. "php": ">=5.2.0"
  7760. },
  7761. "require-dev": {
  7762. "phpunit/phpunit": "<9"
  7763. },
  7764. "type": "class",
  7765. "extra": {
  7766. "branch-alias": {
  7767. "dev-master": "1.0.x-dev"
  7768. }
  7769. },
  7770. "autoload": {
  7771. "classmap": [
  7772. "PEAR/"
  7773. ]
  7774. },
  7775. "notification-url": "https://packagist.org/downloads/",
  7776. "include-path": [
  7777. "."
  7778. ],
  7779. "license": [
  7780. "BSD-2-Clause"
  7781. ],
  7782. "authors": [
  7783. {
  7784. "name": "Helgi Thormar",
  7785. "email": "dufuz@php.net"
  7786. },
  7787. {
  7788. "name": "Greg Beaver",
  7789. "email": "cellog@php.net"
  7790. }
  7791. ],
  7792. "description": "The PEAR Exception base class.",
  7793. "homepage": "https://github.com/pear/PEAR_Exception",
  7794. "keywords": [
  7795. "exception"
  7796. ],
  7797. "support": {
  7798. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  7799. "source": "https://github.com/pear/PEAR_Exception"
  7800. },
  7801. "time": "2021-03-21T15:43:46+00:00"
  7802. },
  7803. {
  7804. "name": "phenx/php-font-lib",
  7805. "version": "0.5.4",
  7806. "source": {
  7807. "type": "git",
  7808. "url": "https://github.com/dompdf/php-font-lib.git",
  7809. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4"
  7810. },
  7811. "dist": {
  7812. "type": "zip",
  7813. "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/dd448ad1ce34c63d09baccd05415e361300c35b4",
  7814. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4",
  7815. "shasum": ""
  7816. },
  7817. "require": {
  7818. "ext-mbstring": "*"
  7819. },
  7820. "require-dev": {
  7821. "symfony/phpunit-bridge": "^3 || ^4 || ^5"
  7822. },
  7823. "type": "library",
  7824. "autoload": {
  7825. "psr-4": {
  7826. "FontLib\\": "src/FontLib"
  7827. }
  7828. },
  7829. "notification-url": "https://packagist.org/downloads/",
  7830. "license": [
  7831. "LGPL-3.0"
  7832. ],
  7833. "authors": [
  7834. {
  7835. "name": "Fabien Ménager",
  7836. "email": "fabien.menager@gmail.com"
  7837. }
  7838. ],
  7839. "description": "A library to read, parse, export and make subsets of different types of font files.",
  7840. "homepage": "https://github.com/PhenX/php-font-lib",
  7841. "support": {
  7842. "issues": "https://github.com/dompdf/php-font-lib/issues",
  7843. "source": "https://github.com/dompdf/php-font-lib/tree/0.5.4"
  7844. },
  7845. "time": "2021-12-17T19:44:54+00:00"
  7846. },
  7847. {
  7848. "name": "phootwork/collection",
  7849. "version": "v3.2.2",
  7850. "source": {
  7851. "type": "git",
  7852. "url": "https://github.com/phootwork/collection.git",
  7853. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
  7854. },
  7855. "dist": {
  7856. "type": "zip",
  7857. "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
  7858. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
  7859. "shasum": ""
  7860. },
  7861. "require": {
  7862. "phootwork/lang": "^3.0",
  7863. "php": ">=8.0"
  7864. },
  7865. "type": "library",
  7866. "autoload": {
  7867. "psr-4": {
  7868. "phootwork\\collection\\": ""
  7869. }
  7870. },
  7871. "notification-url": "https://packagist.org/downloads/",
  7872. "license": [
  7873. "MIT"
  7874. ],
  7875. "authors": [
  7876. {
  7877. "name": "Thomas Gossmann",
  7878. "homepage": "http://gos.si"
  7879. }
  7880. ],
  7881. "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
  7882. "homepage": "https://phootwork.github.io/collection/",
  7883. "keywords": [
  7884. "Array object",
  7885. "Text object",
  7886. "collection",
  7887. "collections",
  7888. "json",
  7889. "list",
  7890. "map",
  7891. "queue",
  7892. "set",
  7893. "stack",
  7894. "xml"
  7895. ],
  7896. "support": {
  7897. "issues": "https://github.com/phootwork/phootwork/issues",
  7898. "source": "https://github.com/phootwork/collection/tree/v3.2.2"
  7899. },
  7900. "time": "2022-08-27T12:51:24+00:00"
  7901. },
  7902. {
  7903. "name": "phootwork/lang",
  7904. "version": "v3.2.2",
  7905. "source": {
  7906. "type": "git",
  7907. "url": "https://github.com/phootwork/lang.git",
  7908. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597"
  7909. },
  7910. "dist": {
  7911. "type": "zip",
  7912. "url": "https://api.github.com/repos/phootwork/lang/zipball/baaf154ae7d521ebeee5e89105f5b12b0f234597",
  7913. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597",
  7914. "shasum": ""
  7915. },
  7916. "require": {
  7917. "php": ">=8.0",
  7918. "symfony/polyfill-mbstring": "^1.12",
  7919. "symfony/polyfill-php81": "^1.22"
  7920. },
  7921. "type": "library",
  7922. "autoload": {
  7923. "psr-4": {
  7924. "phootwork\\lang\\": ""
  7925. }
  7926. },
  7927. "notification-url": "https://packagist.org/downloads/",
  7928. "license": [
  7929. "MIT"
  7930. ],
  7931. "authors": [
  7932. {
  7933. "name": "Thomas Gossmann",
  7934. "homepage": "http://gos.si"
  7935. }
  7936. ],
  7937. "description": "Missing PHP language constructs",
  7938. "homepage": "https://phootwork.github.io/lang/",
  7939. "keywords": [
  7940. "array",
  7941. "comparator",
  7942. "comparison",
  7943. "string"
  7944. ],
  7945. "support": {
  7946. "issues": "https://github.com/phootwork/phootwork/issues",
  7947. "source": "https://github.com/phootwork/lang/tree/v3.2.2"
  7948. },
  7949. "time": "2023-05-26T05:37:59+00:00"
  7950. },
  7951. {
  7952. "name": "phpmailer/phpmailer",
  7953. "version": "v6.8.1",
  7954. "source": {
  7955. "type": "git",
  7956. "url": "https://github.com/PHPMailer/PHPMailer.git",
  7957. "reference": "e88da8d679acc3824ff231fdc553565b802ac016"
  7958. },
  7959. "dist": {
  7960. "type": "zip",
  7961. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/e88da8d679acc3824ff231fdc553565b802ac016",
  7962. "reference": "e88da8d679acc3824ff231fdc553565b802ac016",
  7963. "shasum": ""
  7964. },
  7965. "require": {
  7966. "ext-ctype": "*",
  7967. "ext-filter": "*",
  7968. "ext-hash": "*",
  7969. "php": ">=5.5.0"
  7970. },
  7971. "require-dev": {
  7972. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  7973. "doctrine/annotations": "^1.2.6 || ^1.13.3",
  7974. "php-parallel-lint/php-console-highlighter": "^1.0.0",
  7975. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  7976. "phpcompatibility/php-compatibility": "^9.3.5",
  7977. "roave/security-advisories": "dev-latest",
  7978. "squizlabs/php_codesniffer": "^3.7.2",
  7979. "yoast/phpunit-polyfills": "^1.0.4"
  7980. },
  7981. "suggest": {
  7982. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  7983. "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
  7984. "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
  7985. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  7986. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  7987. "psr/log": "For optional PSR-3 debug logging",
  7988. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
  7989. "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
  7990. },
  7991. "type": "library",
  7992. "autoload": {
  7993. "psr-4": {
  7994. "PHPMailer\\PHPMailer\\": "src/"
  7995. }
  7996. },
  7997. "notification-url": "https://packagist.org/downloads/",
  7998. "license": [
  7999. "LGPL-2.1-only"
  8000. ],
  8001. "authors": [
  8002. {
  8003. "name": "Marcus Bointon",
  8004. "email": "phpmailer@synchromedia.co.uk"
  8005. },
  8006. {
  8007. "name": "Jim Jagielski",
  8008. "email": "jimjag@gmail.com"
  8009. },
  8010. {
  8011. "name": "Andy Prevost",
  8012. "email": "codeworxtech@users.sourceforge.net"
  8013. },
  8014. {
  8015. "name": "Brent R. Matzelle"
  8016. }
  8017. ],
  8018. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  8019. "support": {
  8020. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  8021. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.8.1"
  8022. },
  8023. "funding": [
  8024. {
  8025. "url": "https://github.com/Synchro",
  8026. "type": "github"
  8027. }
  8028. ],
  8029. "time": "2023-08-29T08:26:30+00:00"
  8030. },
  8031. {
  8032. "name": "phpowermove/docblock",
  8033. "version": "v4.0",
  8034. "source": {
  8035. "type": "git",
  8036. "url": "https://github.com/phpowermove/docblock.git",
  8037. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
  8038. },
  8039. "dist": {
  8040. "type": "zip",
  8041. "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  8042. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  8043. "shasum": ""
  8044. },
  8045. "require": {
  8046. "phootwork/collection": "^3.0",
  8047. "phootwork/lang": "^3.0",
  8048. "php": ">=8.0"
  8049. },
  8050. "require-dev": {
  8051. "phootwork/php-cs-fixer-config": "^0.4",
  8052. "phpunit/phpunit": "^9.0",
  8053. "psalm/phar": "^4.3"
  8054. },
  8055. "type": "library",
  8056. "autoload": {
  8057. "psr-4": {
  8058. "phpowermove\\docblock\\": "src/"
  8059. }
  8060. },
  8061. "notification-url": "https://packagist.org/downloads/",
  8062. "license": [
  8063. "MIT"
  8064. ],
  8065. "authors": [
  8066. {
  8067. "name": "Thomas Gossmann",
  8068. "homepage": "http://gos.si"
  8069. }
  8070. ],
  8071. "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
  8072. "keywords": [
  8073. "docblock",
  8074. "generator",
  8075. "parser"
  8076. ],
  8077. "support": {
  8078. "issues": "https://github.com/phpowermove/docblock/issues",
  8079. "source": "https://github.com/phpowermove/docblock/tree/v4.0"
  8080. },
  8081. "time": "2021-09-22T16:57:06+00:00"
  8082. },
  8083. {
  8084. "name": "politsin/jquery-ui-touch-punch",
  8085. "version": "1.0",
  8086. "source": {
  8087. "type": "git",
  8088. "url": "https://github.com/politsin/jquery-ui-touch-punch.git",
  8089. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd"
  8090. },
  8091. "dist": {
  8092. "type": "zip",
  8093. "url": "https://api.github.com/repos/politsin/jquery-ui-touch-punch/zipball/2fe375e05821e267f0f3c0e063197f5c406896dd",
  8094. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd",
  8095. "shasum": ""
  8096. },
  8097. "type": "drupal-library",
  8098. "notification-url": "https://packagist.org/downloads/",
  8099. "license": [
  8100. "MIT"
  8101. ],
  8102. "authors": [
  8103. {
  8104. "name": "Dave Furfero",
  8105. "email": "furf@furf.com"
  8106. }
  8107. ],
  8108. "description": "Extension to jQuery UI for mobile touch event support.",
  8109. "homepage": "http://touchpunch.furf.com/",
  8110. "keywords": [
  8111. "gestures",
  8112. "mobile",
  8113. "touch"
  8114. ],
  8115. "support": {
  8116. "issues": "https://github.com/politsin/jquery-ui-touch-punch/issues",
  8117. "source": "https://github.com/politsin/jquery-ui-touch-punch/tree/1.0"
  8118. },
  8119. "time": "2020-12-15T10:26:18+00:00"
  8120. },
  8121. {
  8122. "name": "psr/cache",
  8123. "version": "3.0.0",
  8124. "source": {
  8125. "type": "git",
  8126. "url": "https://github.com/php-fig/cache.git",
  8127. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  8128. },
  8129. "dist": {
  8130. "type": "zip",
  8131. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  8132. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  8133. "shasum": ""
  8134. },
  8135. "require": {
  8136. "php": ">=8.0.0"
  8137. },
  8138. "type": "library",
  8139. "extra": {
  8140. "branch-alias": {
  8141. "dev-master": "1.0.x-dev"
  8142. }
  8143. },
  8144. "autoload": {
  8145. "psr-4": {
  8146. "Psr\\Cache\\": "src/"
  8147. }
  8148. },
  8149. "notification-url": "https://packagist.org/downloads/",
  8150. "license": [
  8151. "MIT"
  8152. ],
  8153. "authors": [
  8154. {
  8155. "name": "PHP-FIG",
  8156. "homepage": "https://www.php-fig.org/"
  8157. }
  8158. ],
  8159. "description": "Common interface for caching libraries",
  8160. "keywords": [
  8161. "cache",
  8162. "psr",
  8163. "psr-6"
  8164. ],
  8165. "support": {
  8166. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  8167. },
  8168. "time": "2021-02-03T23:26:27+00:00"
  8169. },
  8170. {
  8171. "name": "psr/container",
  8172. "version": "2.0.2",
  8173. "source": {
  8174. "type": "git",
  8175. "url": "https://github.com/php-fig/container.git",
  8176. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  8177. },
  8178. "dist": {
  8179. "type": "zip",
  8180. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  8181. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  8182. "shasum": ""
  8183. },
  8184. "require": {
  8185. "php": ">=7.4.0"
  8186. },
  8187. "type": "library",
  8188. "extra": {
  8189. "branch-alias": {
  8190. "dev-master": "2.0.x-dev"
  8191. }
  8192. },
  8193. "autoload": {
  8194. "psr-4": {
  8195. "Psr\\Container\\": "src/"
  8196. }
  8197. },
  8198. "notification-url": "https://packagist.org/downloads/",
  8199. "license": [
  8200. "MIT"
  8201. ],
  8202. "authors": [
  8203. {
  8204. "name": "PHP-FIG",
  8205. "homepage": "https://www.php-fig.org/"
  8206. }
  8207. ],
  8208. "description": "Common Container Interface (PHP FIG PSR-11)",
  8209. "homepage": "https://github.com/php-fig/container",
  8210. "keywords": [
  8211. "PSR-11",
  8212. "container",
  8213. "container-interface",
  8214. "container-interop",
  8215. "psr"
  8216. ],
  8217. "support": {
  8218. "issues": "https://github.com/php-fig/container/issues",
  8219. "source": "https://github.com/php-fig/container/tree/2.0.2"
  8220. },
  8221. "time": "2021-11-05T16:47:00+00:00"
  8222. },
  8223. {
  8224. "name": "psr/event-dispatcher",
  8225. "version": "1.0.0",
  8226. "source": {
  8227. "type": "git",
  8228. "url": "https://github.com/php-fig/event-dispatcher.git",
  8229. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  8230. },
  8231. "dist": {
  8232. "type": "zip",
  8233. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  8234. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  8235. "shasum": ""
  8236. },
  8237. "require": {
  8238. "php": ">=7.2.0"
  8239. },
  8240. "type": "library",
  8241. "extra": {
  8242. "branch-alias": {
  8243. "dev-master": "1.0.x-dev"
  8244. }
  8245. },
  8246. "autoload": {
  8247. "psr-4": {
  8248. "Psr\\EventDispatcher\\": "src/"
  8249. }
  8250. },
  8251. "notification-url": "https://packagist.org/downloads/",
  8252. "license": [
  8253. "MIT"
  8254. ],
  8255. "authors": [
  8256. {
  8257. "name": "PHP-FIG",
  8258. "homepage": "http://www.php-fig.org/"
  8259. }
  8260. ],
  8261. "description": "Standard interfaces for event handling.",
  8262. "keywords": [
  8263. "events",
  8264. "psr",
  8265. "psr-14"
  8266. ],
  8267. "support": {
  8268. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  8269. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  8270. },
  8271. "time": "2019-01-08T18:20:26+00:00"
  8272. },
  8273. {
  8274. "name": "psr/http-client",
  8275. "version": "1.0.3",
  8276. "source": {
  8277. "type": "git",
  8278. "url": "https://github.com/php-fig/http-client.git",
  8279. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  8280. },
  8281. "dist": {
  8282. "type": "zip",
  8283. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  8284. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  8285. "shasum": ""
  8286. },
  8287. "require": {
  8288. "php": "^7.0 || ^8.0",
  8289. "psr/http-message": "^1.0 || ^2.0"
  8290. },
  8291. "type": "library",
  8292. "extra": {
  8293. "branch-alias": {
  8294. "dev-master": "1.0.x-dev"
  8295. }
  8296. },
  8297. "autoload": {
  8298. "psr-4": {
  8299. "Psr\\Http\\Client\\": "src/"
  8300. }
  8301. },
  8302. "notification-url": "https://packagist.org/downloads/",
  8303. "license": [
  8304. "MIT"
  8305. ],
  8306. "authors": [
  8307. {
  8308. "name": "PHP-FIG",
  8309. "homepage": "https://www.php-fig.org/"
  8310. }
  8311. ],
  8312. "description": "Common interface for HTTP clients",
  8313. "homepage": "https://github.com/php-fig/http-client",
  8314. "keywords": [
  8315. "http",
  8316. "http-client",
  8317. "psr",
  8318. "psr-18"
  8319. ],
  8320. "support": {
  8321. "source": "https://github.com/php-fig/http-client"
  8322. },
  8323. "time": "2023-09-23T14:17:50+00:00"
  8324. },
  8325. {
  8326. "name": "psr/http-factory",
  8327. "version": "1.0.2",
  8328. "source": {
  8329. "type": "git",
  8330. "url": "https://github.com/php-fig/http-factory.git",
  8331. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  8332. },
  8333. "dist": {
  8334. "type": "zip",
  8335. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  8336. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  8337. "shasum": ""
  8338. },
  8339. "require": {
  8340. "php": ">=7.0.0",
  8341. "psr/http-message": "^1.0 || ^2.0"
  8342. },
  8343. "type": "library",
  8344. "extra": {
  8345. "branch-alias": {
  8346. "dev-master": "1.0.x-dev"
  8347. }
  8348. },
  8349. "autoload": {
  8350. "psr-4": {
  8351. "Psr\\Http\\Message\\": "src/"
  8352. }
  8353. },
  8354. "notification-url": "https://packagist.org/downloads/",
  8355. "license": [
  8356. "MIT"
  8357. ],
  8358. "authors": [
  8359. {
  8360. "name": "PHP-FIG",
  8361. "homepage": "https://www.php-fig.org/"
  8362. }
  8363. ],
  8364. "description": "Common interfaces for PSR-7 HTTP message factories",
  8365. "keywords": [
  8366. "factory",
  8367. "http",
  8368. "message",
  8369. "psr",
  8370. "psr-17",
  8371. "psr-7",
  8372. "request",
  8373. "response"
  8374. ],
  8375. "support": {
  8376. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  8377. },
  8378. "time": "2023-04-10T20:10:41+00:00"
  8379. },
  8380. {
  8381. "name": "psr/http-message",
  8382. "version": "2.0",
  8383. "source": {
  8384. "type": "git",
  8385. "url": "https://github.com/php-fig/http-message.git",
  8386. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  8387. },
  8388. "dist": {
  8389. "type": "zip",
  8390. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  8391. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  8392. "shasum": ""
  8393. },
  8394. "require": {
  8395. "php": "^7.2 || ^8.0"
  8396. },
  8397. "type": "library",
  8398. "extra": {
  8399. "branch-alias": {
  8400. "dev-master": "2.0.x-dev"
  8401. }
  8402. },
  8403. "autoload": {
  8404. "psr-4": {
  8405. "Psr\\Http\\Message\\": "src/"
  8406. }
  8407. },
  8408. "notification-url": "https://packagist.org/downloads/",
  8409. "license": [
  8410. "MIT"
  8411. ],
  8412. "authors": [
  8413. {
  8414. "name": "PHP-FIG",
  8415. "homepage": "https://www.php-fig.org/"
  8416. }
  8417. ],
  8418. "description": "Common interface for HTTP messages",
  8419. "homepage": "https://github.com/php-fig/http-message",
  8420. "keywords": [
  8421. "http",
  8422. "http-message",
  8423. "psr",
  8424. "psr-7",
  8425. "request",
  8426. "response"
  8427. ],
  8428. "support": {
  8429. "source": "https://github.com/php-fig/http-message/tree/2.0"
  8430. },
  8431. "time": "2023-04-04T09:54:51+00:00"
  8432. },
  8433. {
  8434. "name": "psr/log",
  8435. "version": "3.0.0",
  8436. "source": {
  8437. "type": "git",
  8438. "url": "https://github.com/php-fig/log.git",
  8439. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  8440. },
  8441. "dist": {
  8442. "type": "zip",
  8443. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  8444. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  8445. "shasum": ""
  8446. },
  8447. "require": {
  8448. "php": ">=8.0.0"
  8449. },
  8450. "type": "library",
  8451. "extra": {
  8452. "branch-alias": {
  8453. "dev-master": "3.x-dev"
  8454. }
  8455. },
  8456. "autoload": {
  8457. "psr-4": {
  8458. "Psr\\Log\\": "src"
  8459. }
  8460. },
  8461. "notification-url": "https://packagist.org/downloads/",
  8462. "license": [
  8463. "MIT"
  8464. ],
  8465. "authors": [
  8466. {
  8467. "name": "PHP-FIG",
  8468. "homepage": "https://www.php-fig.org/"
  8469. }
  8470. ],
  8471. "description": "Common interface for logging libraries",
  8472. "homepage": "https://github.com/php-fig/log",
  8473. "keywords": [
  8474. "log",
  8475. "psr",
  8476. "psr-3"
  8477. ],
  8478. "support": {
  8479. "source": "https://github.com/php-fig/log/tree/3.0.0"
  8480. },
  8481. "time": "2021-07-14T16:46:02+00:00"
  8482. },
  8483. {
  8484. "name": "psy/psysh",
  8485. "version": "v0.11.22",
  8486. "source": {
  8487. "type": "git",
  8488. "url": "https://github.com/bobthecow/psysh.git",
  8489. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b"
  8490. },
  8491. "dist": {
  8492. "type": "zip",
  8493. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/128fa1b608be651999ed9789c95e6e2a31b5802b",
  8494. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b",
  8495. "shasum": ""
  8496. },
  8497. "require": {
  8498. "ext-json": "*",
  8499. "ext-tokenizer": "*",
  8500. "nikic/php-parser": "^4.0 || ^3.1",
  8501. "php": "^8.0 || ^7.0.8",
  8502. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  8503. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  8504. },
  8505. "conflict": {
  8506. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  8507. },
  8508. "require-dev": {
  8509. "bamarni/composer-bin-plugin": "^1.2"
  8510. },
  8511. "suggest": {
  8512. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  8513. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  8514. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  8515. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  8516. },
  8517. "bin": [
  8518. "bin/psysh"
  8519. ],
  8520. "type": "library",
  8521. "extra": {
  8522. "branch-alias": {
  8523. "dev-0.11": "0.11.x-dev"
  8524. },
  8525. "bamarni-bin": {
  8526. "bin-links": false,
  8527. "forward-command": false
  8528. }
  8529. },
  8530. "autoload": {
  8531. "files": [
  8532. "src/functions.php"
  8533. ],
  8534. "psr-4": {
  8535. "Psy\\": "src/"
  8536. }
  8537. },
  8538. "notification-url": "https://packagist.org/downloads/",
  8539. "license": [
  8540. "MIT"
  8541. ],
  8542. "authors": [
  8543. {
  8544. "name": "Justin Hileman",
  8545. "email": "justin@justinhileman.info",
  8546. "homepage": "http://justinhileman.com"
  8547. }
  8548. ],
  8549. "description": "An interactive shell for modern PHP.",
  8550. "homepage": "http://psysh.org",
  8551. "keywords": [
  8552. "REPL",
  8553. "console",
  8554. "interactive",
  8555. "shell"
  8556. ],
  8557. "support": {
  8558. "issues": "https://github.com/bobthecow/psysh/issues",
  8559. "source": "https://github.com/bobthecow/psysh/tree/v0.11.22"
  8560. },
  8561. "time": "2023-10-14T21:56:36+00:00"
  8562. },
  8563. {
  8564. "name": "ralouphie/getallheaders",
  8565. "version": "3.0.3",
  8566. "source": {
  8567. "type": "git",
  8568. "url": "https://github.com/ralouphie/getallheaders.git",
  8569. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  8570. },
  8571. "dist": {
  8572. "type": "zip",
  8573. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  8574. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  8575. "shasum": ""
  8576. },
  8577. "require": {
  8578. "php": ">=5.6"
  8579. },
  8580. "require-dev": {
  8581. "php-coveralls/php-coveralls": "^2.1",
  8582. "phpunit/phpunit": "^5 || ^6.5"
  8583. },
  8584. "type": "library",
  8585. "autoload": {
  8586. "files": [
  8587. "src/getallheaders.php"
  8588. ]
  8589. },
  8590. "notification-url": "https://packagist.org/downloads/",
  8591. "license": [
  8592. "MIT"
  8593. ],
  8594. "authors": [
  8595. {
  8596. "name": "Ralph Khattar",
  8597. "email": "ralph.khattar@gmail.com"
  8598. }
  8599. ],
  8600. "description": "A polyfill for getallheaders.",
  8601. "support": {
  8602. "issues": "https://github.com/ralouphie/getallheaders/issues",
  8603. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  8604. },
  8605. "time": "2019-03-08T08:55:37+00:00"
  8606. },
  8607. {
  8608. "name": "sebastian/diff",
  8609. "version": "4.0.5",
  8610. "source": {
  8611. "type": "git",
  8612. "url": "https://github.com/sebastianbergmann/diff.git",
  8613. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  8614. },
  8615. "dist": {
  8616. "type": "zip",
  8617. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  8618. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  8619. "shasum": ""
  8620. },
  8621. "require": {
  8622. "php": ">=7.3"
  8623. },
  8624. "require-dev": {
  8625. "phpunit/phpunit": "^9.3",
  8626. "symfony/process": "^4.2 || ^5"
  8627. },
  8628. "type": "library",
  8629. "extra": {
  8630. "branch-alias": {
  8631. "dev-master": "4.0-dev"
  8632. }
  8633. },
  8634. "autoload": {
  8635. "classmap": [
  8636. "src/"
  8637. ]
  8638. },
  8639. "notification-url": "https://packagist.org/downloads/",
  8640. "license": [
  8641. "BSD-3-Clause"
  8642. ],
  8643. "authors": [
  8644. {
  8645. "name": "Sebastian Bergmann",
  8646. "email": "sebastian@phpunit.de"
  8647. },
  8648. {
  8649. "name": "Kore Nordmann",
  8650. "email": "mail@kore-nordmann.de"
  8651. }
  8652. ],
  8653. "description": "Diff implementation",
  8654. "homepage": "https://github.com/sebastianbergmann/diff",
  8655. "keywords": [
  8656. "diff",
  8657. "udiff",
  8658. "unidiff",
  8659. "unified diff"
  8660. ],
  8661. "support": {
  8662. "issues": "https://github.com/sebastianbergmann/diff/issues",
  8663. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  8664. },
  8665. "funding": [
  8666. {
  8667. "url": "https://github.com/sebastianbergmann",
  8668. "type": "github"
  8669. }
  8670. ],
  8671. "time": "2023-05-07T05:35:17+00:00"
  8672. },
  8673. {
  8674. "name": "symfony/console",
  8675. "version": "v6.3.9",
  8676. "source": {
  8677. "type": "git",
  8678. "url": "https://github.com/symfony/console.git",
  8679. "reference": "0566dbd051f8648d980592c7849f5d90d2c7c60c"
  8680. },
  8681. "dist": {
  8682. "type": "zip",
  8683. "url": "https://api.github.com/repos/symfony/console/zipball/0566dbd051f8648d980592c7849f5d90d2c7c60c",
  8684. "reference": "0566dbd051f8648d980592c7849f5d90d2c7c60c",
  8685. "shasum": ""
  8686. },
  8687. "require": {
  8688. "php": ">=8.1",
  8689. "symfony/deprecation-contracts": "^2.5|^3",
  8690. "symfony/polyfill-mbstring": "~1.0",
  8691. "symfony/service-contracts": "^2.5|^3",
  8692. "symfony/string": "^5.4|^6.0"
  8693. },
  8694. "conflict": {
  8695. "symfony/dependency-injection": "<5.4",
  8696. "symfony/dotenv": "<5.4",
  8697. "symfony/event-dispatcher": "<5.4",
  8698. "symfony/lock": "<5.4",
  8699. "symfony/process": "<5.4"
  8700. },
  8701. "provide": {
  8702. "psr/log-implementation": "1.0|2.0|3.0"
  8703. },
  8704. "require-dev": {
  8705. "psr/log": "^1|^2|^3",
  8706. "symfony/config": "^5.4|^6.0",
  8707. "symfony/dependency-injection": "^5.4|^6.0",
  8708. "symfony/event-dispatcher": "^5.4|^6.0",
  8709. "symfony/lock": "^5.4|^6.0",
  8710. "symfony/process": "^5.4|^6.0",
  8711. "symfony/var-dumper": "^5.4|^6.0"
  8712. },
  8713. "type": "library",
  8714. "autoload": {
  8715. "psr-4": {
  8716. "Symfony\\Component\\Console\\": ""
  8717. },
  8718. "exclude-from-classmap": [
  8719. "/Tests/"
  8720. ]
  8721. },
  8722. "notification-url": "https://packagist.org/downloads/",
  8723. "license": [
  8724. "MIT"
  8725. ],
  8726. "authors": [
  8727. {
  8728. "name": "Fabien Potencier",
  8729. "email": "fabien@symfony.com"
  8730. },
  8731. {
  8732. "name": "Symfony Community",
  8733. "homepage": "https://symfony.com/contributors"
  8734. }
  8735. ],
  8736. "description": "Eases the creation of beautiful and testable command line interfaces",
  8737. "homepage": "https://symfony.com",
  8738. "keywords": [
  8739. "cli",
  8740. "command-line",
  8741. "console",
  8742. "terminal"
  8743. ],
  8744. "support": {
  8745. "source": "https://github.com/symfony/console/tree/v6.3.9"
  8746. },
  8747. "funding": [
  8748. {
  8749. "url": "https://symfony.com/sponsor",
  8750. "type": "custom"
  8751. },
  8752. {
  8753. "url": "https://github.com/fabpot",
  8754. "type": "github"
  8755. },
  8756. {
  8757. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8758. "type": "tidelift"
  8759. }
  8760. ],
  8761. "time": "2023-11-20T16:36:29+00:00"
  8762. },
  8763. {
  8764. "name": "symfony/dependency-injection",
  8765. "version": "v6.3.8",
  8766. "source": {
  8767. "type": "git",
  8768. "url": "https://github.com/symfony/dependency-injection.git",
  8769. "reference": "1f30f545c4151f611148fc19e28d54d39e0a00bc"
  8770. },
  8771. "dist": {
  8772. "type": "zip",
  8773. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/1f30f545c4151f611148fc19e28d54d39e0a00bc",
  8774. "reference": "1f30f545c4151f611148fc19e28d54d39e0a00bc",
  8775. "shasum": ""
  8776. },
  8777. "require": {
  8778. "php": ">=8.1",
  8779. "psr/container": "^1.1|^2.0",
  8780. "symfony/deprecation-contracts": "^2.5|^3",
  8781. "symfony/service-contracts": "^2.5|^3.0",
  8782. "symfony/var-exporter": "^6.2.10"
  8783. },
  8784. "conflict": {
  8785. "ext-psr": "<1.1|>=2",
  8786. "symfony/config": "<6.1",
  8787. "symfony/finder": "<5.4",
  8788. "symfony/proxy-manager-bridge": "<6.3",
  8789. "symfony/yaml": "<5.4"
  8790. },
  8791. "provide": {
  8792. "psr/container-implementation": "1.1|2.0",
  8793. "symfony/service-implementation": "1.1|2.0|3.0"
  8794. },
  8795. "require-dev": {
  8796. "symfony/config": "^6.1",
  8797. "symfony/expression-language": "^5.4|^6.0",
  8798. "symfony/yaml": "^5.4|^6.0"
  8799. },
  8800. "type": "library",
  8801. "autoload": {
  8802. "psr-4": {
  8803. "Symfony\\Component\\DependencyInjection\\": ""
  8804. },
  8805. "exclude-from-classmap": [
  8806. "/Tests/"
  8807. ]
  8808. },
  8809. "notification-url": "https://packagist.org/downloads/",
  8810. "license": [
  8811. "MIT"
  8812. ],
  8813. "authors": [
  8814. {
  8815. "name": "Fabien Potencier",
  8816. "email": "fabien@symfony.com"
  8817. },
  8818. {
  8819. "name": "Symfony Community",
  8820. "homepage": "https://symfony.com/contributors"
  8821. }
  8822. ],
  8823. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  8824. "homepage": "https://symfony.com",
  8825. "support": {
  8826. "source": "https://github.com/symfony/dependency-injection/tree/v6.3.8"
  8827. },
  8828. "funding": [
  8829. {
  8830. "url": "https://symfony.com/sponsor",
  8831. "type": "custom"
  8832. },
  8833. {
  8834. "url": "https://github.com/fabpot",
  8835. "type": "github"
  8836. },
  8837. {
  8838. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8839. "type": "tidelift"
  8840. }
  8841. ],
  8842. "time": "2023-10-31T08:07:48+00:00"
  8843. },
  8844. {
  8845. "name": "symfony/deprecation-contracts",
  8846. "version": "v3.3.0",
  8847. "source": {
  8848. "type": "git",
  8849. "url": "https://github.com/symfony/deprecation-contracts.git",
  8850. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  8851. },
  8852. "dist": {
  8853. "type": "zip",
  8854. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  8855. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  8856. "shasum": ""
  8857. },
  8858. "require": {
  8859. "php": ">=8.1"
  8860. },
  8861. "type": "library",
  8862. "extra": {
  8863. "branch-alias": {
  8864. "dev-main": "3.4-dev"
  8865. },
  8866. "thanks": {
  8867. "name": "symfony/contracts",
  8868. "url": "https://github.com/symfony/contracts"
  8869. }
  8870. },
  8871. "autoload": {
  8872. "files": [
  8873. "function.php"
  8874. ]
  8875. },
  8876. "notification-url": "https://packagist.org/downloads/",
  8877. "license": [
  8878. "MIT"
  8879. ],
  8880. "authors": [
  8881. {
  8882. "name": "Nicolas Grekas",
  8883. "email": "p@tchwork.com"
  8884. },
  8885. {
  8886. "name": "Symfony Community",
  8887. "homepage": "https://symfony.com/contributors"
  8888. }
  8889. ],
  8890. "description": "A generic function and convention to trigger deprecation notices",
  8891. "homepage": "https://symfony.com",
  8892. "support": {
  8893. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.3.0"
  8894. },
  8895. "funding": [
  8896. {
  8897. "url": "https://symfony.com/sponsor",
  8898. "type": "custom"
  8899. },
  8900. {
  8901. "url": "https://github.com/fabpot",
  8902. "type": "github"
  8903. },
  8904. {
  8905. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8906. "type": "tidelift"
  8907. }
  8908. ],
  8909. "time": "2023-05-23T14:45:45+00:00"
  8910. },
  8911. {
  8912. "name": "symfony/error-handler",
  8913. "version": "v6.3.5",
  8914. "source": {
  8915. "type": "git",
  8916. "url": "https://github.com/symfony/error-handler.git",
  8917. "reference": "1f69476b64fb47105c06beef757766c376b548c4"
  8918. },
  8919. "dist": {
  8920. "type": "zip",
  8921. "url": "https://api.github.com/repos/symfony/error-handler/zipball/1f69476b64fb47105c06beef757766c376b548c4",
  8922. "reference": "1f69476b64fb47105c06beef757766c376b548c4",
  8923. "shasum": ""
  8924. },
  8925. "require": {
  8926. "php": ">=8.1",
  8927. "psr/log": "^1|^2|^3",
  8928. "symfony/var-dumper": "^5.4|^6.0"
  8929. },
  8930. "conflict": {
  8931. "symfony/deprecation-contracts": "<2.5"
  8932. },
  8933. "require-dev": {
  8934. "symfony/deprecation-contracts": "^2.5|^3",
  8935. "symfony/http-kernel": "^5.4|^6.0",
  8936. "symfony/serializer": "^5.4|^6.0"
  8937. },
  8938. "bin": [
  8939. "Resources/bin/patch-type-declarations"
  8940. ],
  8941. "type": "library",
  8942. "autoload": {
  8943. "psr-4": {
  8944. "Symfony\\Component\\ErrorHandler\\": ""
  8945. },
  8946. "exclude-from-classmap": [
  8947. "/Tests/"
  8948. ]
  8949. },
  8950. "notification-url": "https://packagist.org/downloads/",
  8951. "license": [
  8952. "MIT"
  8953. ],
  8954. "authors": [
  8955. {
  8956. "name": "Fabien Potencier",
  8957. "email": "fabien@symfony.com"
  8958. },
  8959. {
  8960. "name": "Symfony Community",
  8961. "homepage": "https://symfony.com/contributors"
  8962. }
  8963. ],
  8964. "description": "Provides tools to manage errors and ease debugging PHP code",
  8965. "homepage": "https://symfony.com",
  8966. "support": {
  8967. "source": "https://github.com/symfony/error-handler/tree/v6.3.5"
  8968. },
  8969. "funding": [
  8970. {
  8971. "url": "https://symfony.com/sponsor",
  8972. "type": "custom"
  8973. },
  8974. {
  8975. "url": "https://github.com/fabpot",
  8976. "type": "github"
  8977. },
  8978. {
  8979. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8980. "type": "tidelift"
  8981. }
  8982. ],
  8983. "time": "2023-09-12T06:57:20+00:00"
  8984. },
  8985. {
  8986. "name": "symfony/event-dispatcher",
  8987. "version": "v6.3.2",
  8988. "source": {
  8989. "type": "git",
  8990. "url": "https://github.com/symfony/event-dispatcher.git",
  8991. "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e"
  8992. },
  8993. "dist": {
  8994. "type": "zip",
  8995. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/adb01fe097a4ee930db9258a3cc906b5beb5cf2e",
  8996. "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e",
  8997. "shasum": ""
  8998. },
  8999. "require": {
  9000. "php": ">=8.1",
  9001. "symfony/event-dispatcher-contracts": "^2.5|^3"
  9002. },
  9003. "conflict": {
  9004. "symfony/dependency-injection": "<5.4",
  9005. "symfony/service-contracts": "<2.5"
  9006. },
  9007. "provide": {
  9008. "psr/event-dispatcher-implementation": "1.0",
  9009. "symfony/event-dispatcher-implementation": "2.0|3.0"
  9010. },
  9011. "require-dev": {
  9012. "psr/log": "^1|^2|^3",
  9013. "symfony/config": "^5.4|^6.0",
  9014. "symfony/dependency-injection": "^5.4|^6.0",
  9015. "symfony/error-handler": "^5.4|^6.0",
  9016. "symfony/expression-language": "^5.4|^6.0",
  9017. "symfony/http-foundation": "^5.4|^6.0",
  9018. "symfony/service-contracts": "^2.5|^3",
  9019. "symfony/stopwatch": "^5.4|^6.0"
  9020. },
  9021. "type": "library",
  9022. "autoload": {
  9023. "psr-4": {
  9024. "Symfony\\Component\\EventDispatcher\\": ""
  9025. },
  9026. "exclude-from-classmap": [
  9027. "/Tests/"
  9028. ]
  9029. },
  9030. "notification-url": "https://packagist.org/downloads/",
  9031. "license": [
  9032. "MIT"
  9033. ],
  9034. "authors": [
  9035. {
  9036. "name": "Fabien Potencier",
  9037. "email": "fabien@symfony.com"
  9038. },
  9039. {
  9040. "name": "Symfony Community",
  9041. "homepage": "https://symfony.com/contributors"
  9042. }
  9043. ],
  9044. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  9045. "homepage": "https://symfony.com",
  9046. "support": {
  9047. "source": "https://github.com/symfony/event-dispatcher/tree/v6.3.2"
  9048. },
  9049. "funding": [
  9050. {
  9051. "url": "https://symfony.com/sponsor",
  9052. "type": "custom"
  9053. },
  9054. {
  9055. "url": "https://github.com/fabpot",
  9056. "type": "github"
  9057. },
  9058. {
  9059. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9060. "type": "tidelift"
  9061. }
  9062. ],
  9063. "time": "2023-07-06T06:56:43+00:00"
  9064. },
  9065. {
  9066. "name": "symfony/event-dispatcher-contracts",
  9067. "version": "v3.3.0",
  9068. "source": {
  9069. "type": "git",
  9070. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  9071. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  9072. },
  9073. "dist": {
  9074. "type": "zip",
  9075. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  9076. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  9077. "shasum": ""
  9078. },
  9079. "require": {
  9080. "php": ">=8.1",
  9081. "psr/event-dispatcher": "^1"
  9082. },
  9083. "type": "library",
  9084. "extra": {
  9085. "branch-alias": {
  9086. "dev-main": "3.4-dev"
  9087. },
  9088. "thanks": {
  9089. "name": "symfony/contracts",
  9090. "url": "https://github.com/symfony/contracts"
  9091. }
  9092. },
  9093. "autoload": {
  9094. "psr-4": {
  9095. "Symfony\\Contracts\\EventDispatcher\\": ""
  9096. }
  9097. },
  9098. "notification-url": "https://packagist.org/downloads/",
  9099. "license": [
  9100. "MIT"
  9101. ],
  9102. "authors": [
  9103. {
  9104. "name": "Nicolas Grekas",
  9105. "email": "p@tchwork.com"
  9106. },
  9107. {
  9108. "name": "Symfony Community",
  9109. "homepage": "https://symfony.com/contributors"
  9110. }
  9111. ],
  9112. "description": "Generic abstractions related to dispatching event",
  9113. "homepage": "https://symfony.com",
  9114. "keywords": [
  9115. "abstractions",
  9116. "contracts",
  9117. "decoupling",
  9118. "interfaces",
  9119. "interoperability",
  9120. "standards"
  9121. ],
  9122. "support": {
  9123. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.3.0"
  9124. },
  9125. "funding": [
  9126. {
  9127. "url": "https://symfony.com/sponsor",
  9128. "type": "custom"
  9129. },
  9130. {
  9131. "url": "https://github.com/fabpot",
  9132. "type": "github"
  9133. },
  9134. {
  9135. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9136. "type": "tidelift"
  9137. }
  9138. ],
  9139. "time": "2023-05-23T14:45:45+00:00"
  9140. },
  9141. {
  9142. "name": "symfony/filesystem",
  9143. "version": "v6.3.1",
  9144. "source": {
  9145. "type": "git",
  9146. "url": "https://github.com/symfony/filesystem.git",
  9147. "reference": "edd36776956f2a6fcf577edb5b05eb0e3bdc52ae"
  9148. },
  9149. "dist": {
  9150. "type": "zip",
  9151. "url": "https://api.github.com/repos/symfony/filesystem/zipball/edd36776956f2a6fcf577edb5b05eb0e3bdc52ae",
  9152. "reference": "edd36776956f2a6fcf577edb5b05eb0e3bdc52ae",
  9153. "shasum": ""
  9154. },
  9155. "require": {
  9156. "php": ">=8.1",
  9157. "symfony/polyfill-ctype": "~1.8",
  9158. "symfony/polyfill-mbstring": "~1.8"
  9159. },
  9160. "type": "library",
  9161. "autoload": {
  9162. "psr-4": {
  9163. "Symfony\\Component\\Filesystem\\": ""
  9164. },
  9165. "exclude-from-classmap": [
  9166. "/Tests/"
  9167. ]
  9168. },
  9169. "notification-url": "https://packagist.org/downloads/",
  9170. "license": [
  9171. "MIT"
  9172. ],
  9173. "authors": [
  9174. {
  9175. "name": "Fabien Potencier",
  9176. "email": "fabien@symfony.com"
  9177. },
  9178. {
  9179. "name": "Symfony Community",
  9180. "homepage": "https://symfony.com/contributors"
  9181. }
  9182. ],
  9183. "description": "Provides basic utilities for the filesystem",
  9184. "homepage": "https://symfony.com",
  9185. "support": {
  9186. "source": "https://github.com/symfony/filesystem/tree/v6.3.1"
  9187. },
  9188. "funding": [
  9189. {
  9190. "url": "https://symfony.com/sponsor",
  9191. "type": "custom"
  9192. },
  9193. {
  9194. "url": "https://github.com/fabpot",
  9195. "type": "github"
  9196. },
  9197. {
  9198. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9199. "type": "tidelift"
  9200. }
  9201. ],
  9202. "time": "2023-06-01T08:30:39+00:00"
  9203. },
  9204. {
  9205. "name": "symfony/finder",
  9206. "version": "v6.3.5",
  9207. "source": {
  9208. "type": "git",
  9209. "url": "https://github.com/symfony/finder.git",
  9210. "reference": "a1b31d88c0e998168ca7792f222cbecee47428c4"
  9211. },
  9212. "dist": {
  9213. "type": "zip",
  9214. "url": "https://api.github.com/repos/symfony/finder/zipball/a1b31d88c0e998168ca7792f222cbecee47428c4",
  9215. "reference": "a1b31d88c0e998168ca7792f222cbecee47428c4",
  9216. "shasum": ""
  9217. },
  9218. "require": {
  9219. "php": ">=8.1"
  9220. },
  9221. "require-dev": {
  9222. "symfony/filesystem": "^6.0"
  9223. },
  9224. "type": "library",
  9225. "autoload": {
  9226. "psr-4": {
  9227. "Symfony\\Component\\Finder\\": ""
  9228. },
  9229. "exclude-from-classmap": [
  9230. "/Tests/"
  9231. ]
  9232. },
  9233. "notification-url": "https://packagist.org/downloads/",
  9234. "license": [
  9235. "MIT"
  9236. ],
  9237. "authors": [
  9238. {
  9239. "name": "Fabien Potencier",
  9240. "email": "fabien@symfony.com"
  9241. },
  9242. {
  9243. "name": "Symfony Community",
  9244. "homepage": "https://symfony.com/contributors"
  9245. }
  9246. ],
  9247. "description": "Finds files and directories via an intuitive fluent interface",
  9248. "homepage": "https://symfony.com",
  9249. "support": {
  9250. "source": "https://github.com/symfony/finder/tree/v6.3.5"
  9251. },
  9252. "funding": [
  9253. {
  9254. "url": "https://symfony.com/sponsor",
  9255. "type": "custom"
  9256. },
  9257. {
  9258. "url": "https://github.com/fabpot",
  9259. "type": "github"
  9260. },
  9261. {
  9262. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9263. "type": "tidelift"
  9264. }
  9265. ],
  9266. "time": "2023-09-26T12:56:25+00:00"
  9267. },
  9268. {
  9269. "name": "symfony/http-foundation",
  9270. "version": "v6.3.9",
  9271. "source": {
  9272. "type": "git",
  9273. "url": "https://github.com/symfony/http-foundation.git",
  9274. "reference": "49a04fd3a21edc9ce503ab78e9f342805fefe780"
  9275. },
  9276. "dist": {
  9277. "type": "zip",
  9278. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/49a04fd3a21edc9ce503ab78e9f342805fefe780",
  9279. "reference": "49a04fd3a21edc9ce503ab78e9f342805fefe780",
  9280. "shasum": ""
  9281. },
  9282. "require": {
  9283. "php": ">=8.1",
  9284. "symfony/deprecation-contracts": "^2.5|^3",
  9285. "symfony/polyfill-mbstring": "~1.1",
  9286. "symfony/polyfill-php83": "^1.27"
  9287. },
  9288. "conflict": {
  9289. "symfony/cache": "<6.3"
  9290. },
  9291. "require-dev": {
  9292. "doctrine/dbal": "^2.13.1|^3|^4",
  9293. "predis/predis": "^1.1|^2.0",
  9294. "symfony/cache": "^6.3",
  9295. "symfony/dependency-injection": "^5.4|^6.0",
  9296. "symfony/expression-language": "^5.4|^6.0",
  9297. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  9298. "symfony/mime": "^5.4|^6.0",
  9299. "symfony/rate-limiter": "^5.2|^6.0"
  9300. },
  9301. "type": "library",
  9302. "autoload": {
  9303. "psr-4": {
  9304. "Symfony\\Component\\HttpFoundation\\": ""
  9305. },
  9306. "exclude-from-classmap": [
  9307. "/Tests/"
  9308. ]
  9309. },
  9310. "notification-url": "https://packagist.org/downloads/",
  9311. "license": [
  9312. "MIT"
  9313. ],
  9314. "authors": [
  9315. {
  9316. "name": "Fabien Potencier",
  9317. "email": "fabien@symfony.com"
  9318. },
  9319. {
  9320. "name": "Symfony Community",
  9321. "homepage": "https://symfony.com/contributors"
  9322. }
  9323. ],
  9324. "description": "Defines an object-oriented layer for the HTTP specification",
  9325. "homepage": "https://symfony.com",
  9326. "support": {
  9327. "source": "https://github.com/symfony/http-foundation/tree/v6.3.9"
  9328. },
  9329. "funding": [
  9330. {
  9331. "url": "https://symfony.com/sponsor",
  9332. "type": "custom"
  9333. },
  9334. {
  9335. "url": "https://github.com/fabpot",
  9336. "type": "github"
  9337. },
  9338. {
  9339. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9340. "type": "tidelift"
  9341. }
  9342. ],
  9343. "time": "2023-11-20T16:36:29+00:00"
  9344. },
  9345. {
  9346. "name": "symfony/http-kernel",
  9347. "version": "v6.3.9",
  9348. "source": {
  9349. "type": "git",
  9350. "url": "https://github.com/symfony/http-kernel.git",
  9351. "reference": "d63fe6b1e3ad2f037f6f000a6fc867fa8934f35c"
  9352. },
  9353. "dist": {
  9354. "type": "zip",
  9355. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/d63fe6b1e3ad2f037f6f000a6fc867fa8934f35c",
  9356. "reference": "d63fe6b1e3ad2f037f6f000a6fc867fa8934f35c",
  9357. "shasum": ""
  9358. },
  9359. "require": {
  9360. "php": ">=8.1",
  9361. "psr/log": "^1|^2|^3",
  9362. "symfony/deprecation-contracts": "^2.5|^3",
  9363. "symfony/error-handler": "^6.3",
  9364. "symfony/event-dispatcher": "^5.4|^6.0",
  9365. "symfony/http-foundation": "^6.3.4",
  9366. "symfony/polyfill-ctype": "^1.8"
  9367. },
  9368. "conflict": {
  9369. "symfony/browser-kit": "<5.4",
  9370. "symfony/cache": "<5.4",
  9371. "symfony/config": "<6.1",
  9372. "symfony/console": "<5.4",
  9373. "symfony/dependency-injection": "<6.3.4",
  9374. "symfony/doctrine-bridge": "<5.4",
  9375. "symfony/form": "<5.4",
  9376. "symfony/http-client": "<5.4",
  9377. "symfony/http-client-contracts": "<2.5",
  9378. "symfony/mailer": "<5.4",
  9379. "symfony/messenger": "<5.4",
  9380. "symfony/translation": "<5.4",
  9381. "symfony/translation-contracts": "<2.5",
  9382. "symfony/twig-bridge": "<5.4",
  9383. "symfony/validator": "<5.4",
  9384. "symfony/var-dumper": "<6.3",
  9385. "twig/twig": "<2.13"
  9386. },
  9387. "provide": {
  9388. "psr/log-implementation": "1.0|2.0|3.0"
  9389. },
  9390. "require-dev": {
  9391. "psr/cache": "^1.0|^2.0|^3.0",
  9392. "symfony/browser-kit": "^5.4|^6.0",
  9393. "symfony/clock": "^6.2",
  9394. "symfony/config": "^6.1",
  9395. "symfony/console": "^5.4|^6.0",
  9396. "symfony/css-selector": "^5.4|^6.0",
  9397. "symfony/dependency-injection": "^6.3.4",
  9398. "symfony/dom-crawler": "^5.4|^6.0",
  9399. "symfony/expression-language": "^5.4|^6.0",
  9400. "symfony/finder": "^5.4|^6.0",
  9401. "symfony/http-client-contracts": "^2.5|^3",
  9402. "symfony/process": "^5.4|^6.0",
  9403. "symfony/property-access": "^5.4.5|^6.0.5",
  9404. "symfony/routing": "^5.4|^6.0",
  9405. "symfony/serializer": "^6.3",
  9406. "symfony/stopwatch": "^5.4|^6.0",
  9407. "symfony/translation": "^5.4|^6.0",
  9408. "symfony/translation-contracts": "^2.5|^3",
  9409. "symfony/uid": "^5.4|^6.0",
  9410. "symfony/validator": "^6.3",
  9411. "symfony/var-exporter": "^6.2",
  9412. "twig/twig": "^2.13|^3.0.4"
  9413. },
  9414. "type": "library",
  9415. "autoload": {
  9416. "psr-4": {
  9417. "Symfony\\Component\\HttpKernel\\": ""
  9418. },
  9419. "exclude-from-classmap": [
  9420. "/Tests/"
  9421. ]
  9422. },
  9423. "notification-url": "https://packagist.org/downloads/",
  9424. "license": [
  9425. "MIT"
  9426. ],
  9427. "authors": [
  9428. {
  9429. "name": "Fabien Potencier",
  9430. "email": "fabien@symfony.com"
  9431. },
  9432. {
  9433. "name": "Symfony Community",
  9434. "homepage": "https://symfony.com/contributors"
  9435. }
  9436. ],
  9437. "description": "Provides a structured process for converting a Request into a Response",
  9438. "homepage": "https://symfony.com",
  9439. "support": {
  9440. "source": "https://github.com/symfony/http-kernel/tree/v6.3.9"
  9441. },
  9442. "funding": [
  9443. {
  9444. "url": "https://symfony.com/sponsor",
  9445. "type": "custom"
  9446. },
  9447. {
  9448. "url": "https://github.com/fabpot",
  9449. "type": "github"
  9450. },
  9451. {
  9452. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9453. "type": "tidelift"
  9454. }
  9455. ],
  9456. "time": "2023-11-29T10:24:27+00:00"
  9457. },
  9458. {
  9459. "name": "symfony/mime",
  9460. "version": "v6.3.5",
  9461. "source": {
  9462. "type": "git",
  9463. "url": "https://github.com/symfony/mime.git",
  9464. "reference": "d5179eedf1cb2946dbd760475ebf05c251ef6a6e"
  9465. },
  9466. "dist": {
  9467. "type": "zip",
  9468. "url": "https://api.github.com/repos/symfony/mime/zipball/d5179eedf1cb2946dbd760475ebf05c251ef6a6e",
  9469. "reference": "d5179eedf1cb2946dbd760475ebf05c251ef6a6e",
  9470. "shasum": ""
  9471. },
  9472. "require": {
  9473. "php": ">=8.1",
  9474. "symfony/deprecation-contracts": "^2.5|^3",
  9475. "symfony/polyfill-intl-idn": "^1.10",
  9476. "symfony/polyfill-mbstring": "^1.0"
  9477. },
  9478. "conflict": {
  9479. "egulias/email-validator": "~3.0.0",
  9480. "phpdocumentor/reflection-docblock": "<3.2.2",
  9481. "phpdocumentor/type-resolver": "<1.4.0",
  9482. "symfony/mailer": "<5.4",
  9483. "symfony/serializer": "<6.2.13|>=6.3,<6.3.2"
  9484. },
  9485. "require-dev": {
  9486. "egulias/email-validator": "^2.1.10|^3.1|^4",
  9487. "league/html-to-markdown": "^5.0",
  9488. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  9489. "symfony/dependency-injection": "^5.4|^6.0",
  9490. "symfony/property-access": "^5.4|^6.0",
  9491. "symfony/property-info": "^5.4|^6.0",
  9492. "symfony/serializer": "~6.2.13|^6.3.2"
  9493. },
  9494. "type": "library",
  9495. "autoload": {
  9496. "psr-4": {
  9497. "Symfony\\Component\\Mime\\": ""
  9498. },
  9499. "exclude-from-classmap": [
  9500. "/Tests/"
  9501. ]
  9502. },
  9503. "notification-url": "https://packagist.org/downloads/",
  9504. "license": [
  9505. "MIT"
  9506. ],
  9507. "authors": [
  9508. {
  9509. "name": "Fabien Potencier",
  9510. "email": "fabien@symfony.com"
  9511. },
  9512. {
  9513. "name": "Symfony Community",
  9514. "homepage": "https://symfony.com/contributors"
  9515. }
  9516. ],
  9517. "description": "Allows manipulating MIME messages",
  9518. "homepage": "https://symfony.com",
  9519. "keywords": [
  9520. "mime",
  9521. "mime-type"
  9522. ],
  9523. "support": {
  9524. "source": "https://github.com/symfony/mime/tree/v6.3.5"
  9525. },
  9526. "funding": [
  9527. {
  9528. "url": "https://symfony.com/sponsor",
  9529. "type": "custom"
  9530. },
  9531. {
  9532. "url": "https://github.com/fabpot",
  9533. "type": "github"
  9534. },
  9535. {
  9536. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9537. "type": "tidelift"
  9538. }
  9539. ],
  9540. "time": "2023-09-29T06:59:36+00:00"
  9541. },
  9542. {
  9543. "name": "symfony/polyfill-ctype",
  9544. "version": "v1.27.0",
  9545. "source": {
  9546. "type": "git",
  9547. "url": "https://github.com/symfony/polyfill-ctype.git",
  9548. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  9549. },
  9550. "dist": {
  9551. "type": "zip",
  9552. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  9553. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  9554. "shasum": ""
  9555. },
  9556. "require": {
  9557. "php": ">=7.1"
  9558. },
  9559. "provide": {
  9560. "ext-ctype": "*"
  9561. },
  9562. "suggest": {
  9563. "ext-ctype": "For best performance"
  9564. },
  9565. "type": "library",
  9566. "extra": {
  9567. "branch-alias": {
  9568. "dev-main": "1.27-dev"
  9569. },
  9570. "thanks": {
  9571. "name": "symfony/polyfill",
  9572. "url": "https://github.com/symfony/polyfill"
  9573. }
  9574. },
  9575. "autoload": {
  9576. "files": [
  9577. "bootstrap.php"
  9578. ],
  9579. "psr-4": {
  9580. "Symfony\\Polyfill\\Ctype\\": ""
  9581. }
  9582. },
  9583. "notification-url": "https://packagist.org/downloads/",
  9584. "license": [
  9585. "MIT"
  9586. ],
  9587. "authors": [
  9588. {
  9589. "name": "Gert de Pagter",
  9590. "email": "BackEndTea@gmail.com"
  9591. },
  9592. {
  9593. "name": "Symfony Community",
  9594. "homepage": "https://symfony.com/contributors"
  9595. }
  9596. ],
  9597. "description": "Symfony polyfill for ctype functions",
  9598. "homepage": "https://symfony.com",
  9599. "keywords": [
  9600. "compatibility",
  9601. "ctype",
  9602. "polyfill",
  9603. "portable"
  9604. ],
  9605. "support": {
  9606. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  9607. },
  9608. "funding": [
  9609. {
  9610. "url": "https://symfony.com/sponsor",
  9611. "type": "custom"
  9612. },
  9613. {
  9614. "url": "https://github.com/fabpot",
  9615. "type": "github"
  9616. },
  9617. {
  9618. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9619. "type": "tidelift"
  9620. }
  9621. ],
  9622. "time": "2022-11-03T14:55:06+00:00"
  9623. },
  9624. {
  9625. "name": "symfony/polyfill-iconv",
  9626. "version": "v1.27.0",
  9627. "source": {
  9628. "type": "git",
  9629. "url": "https://github.com/symfony/polyfill-iconv.git",
  9630. "reference": "927013f3aac555983a5059aada98e1907d842695"
  9631. },
  9632. "dist": {
  9633. "type": "zip",
  9634. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695",
  9635. "reference": "927013f3aac555983a5059aada98e1907d842695",
  9636. "shasum": ""
  9637. },
  9638. "require": {
  9639. "php": ">=7.1"
  9640. },
  9641. "provide": {
  9642. "ext-iconv": "*"
  9643. },
  9644. "suggest": {
  9645. "ext-iconv": "For best performance"
  9646. },
  9647. "type": "library",
  9648. "extra": {
  9649. "branch-alias": {
  9650. "dev-main": "1.27-dev"
  9651. },
  9652. "thanks": {
  9653. "name": "symfony/polyfill",
  9654. "url": "https://github.com/symfony/polyfill"
  9655. }
  9656. },
  9657. "autoload": {
  9658. "files": [
  9659. "bootstrap.php"
  9660. ],
  9661. "psr-4": {
  9662. "Symfony\\Polyfill\\Iconv\\": ""
  9663. }
  9664. },
  9665. "notification-url": "https://packagist.org/downloads/",
  9666. "license": [
  9667. "MIT"
  9668. ],
  9669. "authors": [
  9670. {
  9671. "name": "Nicolas Grekas",
  9672. "email": "p@tchwork.com"
  9673. },
  9674. {
  9675. "name": "Symfony Community",
  9676. "homepage": "https://symfony.com/contributors"
  9677. }
  9678. ],
  9679. "description": "Symfony polyfill for the Iconv extension",
  9680. "homepage": "https://symfony.com",
  9681. "keywords": [
  9682. "compatibility",
  9683. "iconv",
  9684. "polyfill",
  9685. "portable",
  9686. "shim"
  9687. ],
  9688. "support": {
  9689. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0"
  9690. },
  9691. "funding": [
  9692. {
  9693. "url": "https://symfony.com/sponsor",
  9694. "type": "custom"
  9695. },
  9696. {
  9697. "url": "https://github.com/fabpot",
  9698. "type": "github"
  9699. },
  9700. {
  9701. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9702. "type": "tidelift"
  9703. }
  9704. ],
  9705. "time": "2022-11-03T14:55:06+00:00"
  9706. },
  9707. {
  9708. "name": "symfony/polyfill-intl-grapheme",
  9709. "version": "v1.27.0",
  9710. "source": {
  9711. "type": "git",
  9712. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  9713. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  9714. },
  9715. "dist": {
  9716. "type": "zip",
  9717. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  9718. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  9719. "shasum": ""
  9720. },
  9721. "require": {
  9722. "php": ">=7.1"
  9723. },
  9724. "suggest": {
  9725. "ext-intl": "For best performance"
  9726. },
  9727. "type": "library",
  9728. "extra": {
  9729. "branch-alias": {
  9730. "dev-main": "1.27-dev"
  9731. },
  9732. "thanks": {
  9733. "name": "symfony/polyfill",
  9734. "url": "https://github.com/symfony/polyfill"
  9735. }
  9736. },
  9737. "autoload": {
  9738. "files": [
  9739. "bootstrap.php"
  9740. ],
  9741. "psr-4": {
  9742. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  9743. }
  9744. },
  9745. "notification-url": "https://packagist.org/downloads/",
  9746. "license": [
  9747. "MIT"
  9748. ],
  9749. "authors": [
  9750. {
  9751. "name": "Nicolas Grekas",
  9752. "email": "p@tchwork.com"
  9753. },
  9754. {
  9755. "name": "Symfony Community",
  9756. "homepage": "https://symfony.com/contributors"
  9757. }
  9758. ],
  9759. "description": "Symfony polyfill for intl's grapheme_* functions",
  9760. "homepage": "https://symfony.com",
  9761. "keywords": [
  9762. "compatibility",
  9763. "grapheme",
  9764. "intl",
  9765. "polyfill",
  9766. "portable",
  9767. "shim"
  9768. ],
  9769. "support": {
  9770. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  9771. },
  9772. "funding": [
  9773. {
  9774. "url": "https://symfony.com/sponsor",
  9775. "type": "custom"
  9776. },
  9777. {
  9778. "url": "https://github.com/fabpot",
  9779. "type": "github"
  9780. },
  9781. {
  9782. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9783. "type": "tidelift"
  9784. }
  9785. ],
  9786. "time": "2022-11-03T14:55:06+00:00"
  9787. },
  9788. {
  9789. "name": "symfony/polyfill-intl-idn",
  9790. "version": "v1.27.0",
  9791. "source": {
  9792. "type": "git",
  9793. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  9794. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  9795. },
  9796. "dist": {
  9797. "type": "zip",
  9798. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  9799. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  9800. "shasum": ""
  9801. },
  9802. "require": {
  9803. "php": ">=7.1",
  9804. "symfony/polyfill-intl-normalizer": "^1.10",
  9805. "symfony/polyfill-php72": "^1.10"
  9806. },
  9807. "suggest": {
  9808. "ext-intl": "For best performance"
  9809. },
  9810. "type": "library",
  9811. "extra": {
  9812. "branch-alias": {
  9813. "dev-main": "1.27-dev"
  9814. },
  9815. "thanks": {
  9816. "name": "symfony/polyfill",
  9817. "url": "https://github.com/symfony/polyfill"
  9818. }
  9819. },
  9820. "autoload": {
  9821. "files": [
  9822. "bootstrap.php"
  9823. ],
  9824. "psr-4": {
  9825. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  9826. }
  9827. },
  9828. "notification-url": "https://packagist.org/downloads/",
  9829. "license": [
  9830. "MIT"
  9831. ],
  9832. "authors": [
  9833. {
  9834. "name": "Laurent Bassin",
  9835. "email": "laurent@bassin.info"
  9836. },
  9837. {
  9838. "name": "Trevor Rowbotham",
  9839. "email": "trevor.rowbotham@pm.me"
  9840. },
  9841. {
  9842. "name": "Symfony Community",
  9843. "homepage": "https://symfony.com/contributors"
  9844. }
  9845. ],
  9846. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  9847. "homepage": "https://symfony.com",
  9848. "keywords": [
  9849. "compatibility",
  9850. "idn",
  9851. "intl",
  9852. "polyfill",
  9853. "portable",
  9854. "shim"
  9855. ],
  9856. "support": {
  9857. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  9858. },
  9859. "funding": [
  9860. {
  9861. "url": "https://symfony.com/sponsor",
  9862. "type": "custom"
  9863. },
  9864. {
  9865. "url": "https://github.com/fabpot",
  9866. "type": "github"
  9867. },
  9868. {
  9869. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9870. "type": "tidelift"
  9871. }
  9872. ],
  9873. "time": "2022-11-03T14:55:06+00:00"
  9874. },
  9875. {
  9876. "name": "symfony/polyfill-intl-normalizer",
  9877. "version": "v1.27.0",
  9878. "source": {
  9879. "type": "git",
  9880. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  9881. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  9882. },
  9883. "dist": {
  9884. "type": "zip",
  9885. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  9886. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  9887. "shasum": ""
  9888. },
  9889. "require": {
  9890. "php": ">=7.1"
  9891. },
  9892. "suggest": {
  9893. "ext-intl": "For best performance"
  9894. },
  9895. "type": "library",
  9896. "extra": {
  9897. "branch-alias": {
  9898. "dev-main": "1.27-dev"
  9899. },
  9900. "thanks": {
  9901. "name": "symfony/polyfill",
  9902. "url": "https://github.com/symfony/polyfill"
  9903. }
  9904. },
  9905. "autoload": {
  9906. "files": [
  9907. "bootstrap.php"
  9908. ],
  9909. "psr-4": {
  9910. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  9911. },
  9912. "classmap": [
  9913. "Resources/stubs"
  9914. ]
  9915. },
  9916. "notification-url": "https://packagist.org/downloads/",
  9917. "license": [
  9918. "MIT"
  9919. ],
  9920. "authors": [
  9921. {
  9922. "name": "Nicolas Grekas",
  9923. "email": "p@tchwork.com"
  9924. },
  9925. {
  9926. "name": "Symfony Community",
  9927. "homepage": "https://symfony.com/contributors"
  9928. }
  9929. ],
  9930. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  9931. "homepage": "https://symfony.com",
  9932. "keywords": [
  9933. "compatibility",
  9934. "intl",
  9935. "normalizer",
  9936. "polyfill",
  9937. "portable",
  9938. "shim"
  9939. ],
  9940. "support": {
  9941. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  9942. },
  9943. "funding": [
  9944. {
  9945. "url": "https://symfony.com/sponsor",
  9946. "type": "custom"
  9947. },
  9948. {
  9949. "url": "https://github.com/fabpot",
  9950. "type": "github"
  9951. },
  9952. {
  9953. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9954. "type": "tidelift"
  9955. }
  9956. ],
  9957. "time": "2022-11-03T14:55:06+00:00"
  9958. },
  9959. {
  9960. "name": "symfony/polyfill-mbstring",
  9961. "version": "v1.27.0",
  9962. "source": {
  9963. "type": "git",
  9964. "url": "https://github.com/symfony/polyfill-mbstring.git",
  9965. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  9966. },
  9967. "dist": {
  9968. "type": "zip",
  9969. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  9970. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  9971. "shasum": ""
  9972. },
  9973. "require": {
  9974. "php": ">=7.1"
  9975. },
  9976. "provide": {
  9977. "ext-mbstring": "*"
  9978. },
  9979. "suggest": {
  9980. "ext-mbstring": "For best performance"
  9981. },
  9982. "type": "library",
  9983. "extra": {
  9984. "branch-alias": {
  9985. "dev-main": "1.27-dev"
  9986. },
  9987. "thanks": {
  9988. "name": "symfony/polyfill",
  9989. "url": "https://github.com/symfony/polyfill"
  9990. }
  9991. },
  9992. "autoload": {
  9993. "files": [
  9994. "bootstrap.php"
  9995. ],
  9996. "psr-4": {
  9997. "Symfony\\Polyfill\\Mbstring\\": ""
  9998. }
  9999. },
  10000. "notification-url": "https://packagist.org/downloads/",
  10001. "license": [
  10002. "MIT"
  10003. ],
  10004. "authors": [
  10005. {
  10006. "name": "Nicolas Grekas",
  10007. "email": "p@tchwork.com"
  10008. },
  10009. {
  10010. "name": "Symfony Community",
  10011. "homepage": "https://symfony.com/contributors"
  10012. }
  10013. ],
  10014. "description": "Symfony polyfill for the Mbstring extension",
  10015. "homepage": "https://symfony.com",
  10016. "keywords": [
  10017. "compatibility",
  10018. "mbstring",
  10019. "polyfill",
  10020. "portable",
  10021. "shim"
  10022. ],
  10023. "support": {
  10024. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  10025. },
  10026. "funding": [
  10027. {
  10028. "url": "https://symfony.com/sponsor",
  10029. "type": "custom"
  10030. },
  10031. {
  10032. "url": "https://github.com/fabpot",
  10033. "type": "github"
  10034. },
  10035. {
  10036. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10037. "type": "tidelift"
  10038. }
  10039. ],
  10040. "time": "2022-11-03T14:55:06+00:00"
  10041. },
  10042. {
  10043. "name": "symfony/polyfill-php72",
  10044. "version": "v1.28.0",
  10045. "source": {
  10046. "type": "git",
  10047. "url": "https://github.com/symfony/polyfill-php72.git",
  10048. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179"
  10049. },
  10050. "dist": {
  10051. "type": "zip",
  10052. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179",
  10053. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179",
  10054. "shasum": ""
  10055. },
  10056. "require": {
  10057. "php": ">=7.1"
  10058. },
  10059. "type": "library",
  10060. "extra": {
  10061. "branch-alias": {
  10062. "dev-main": "1.28-dev"
  10063. },
  10064. "thanks": {
  10065. "name": "symfony/polyfill",
  10066. "url": "https://github.com/symfony/polyfill"
  10067. }
  10068. },
  10069. "autoload": {
  10070. "files": [
  10071. "bootstrap.php"
  10072. ],
  10073. "psr-4": {
  10074. "Symfony\\Polyfill\\Php72\\": ""
  10075. }
  10076. },
  10077. "notification-url": "https://packagist.org/downloads/",
  10078. "license": [
  10079. "MIT"
  10080. ],
  10081. "authors": [
  10082. {
  10083. "name": "Nicolas Grekas",
  10084. "email": "p@tchwork.com"
  10085. },
  10086. {
  10087. "name": "Symfony Community",
  10088. "homepage": "https://symfony.com/contributors"
  10089. }
  10090. ],
  10091. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  10092. "homepage": "https://symfony.com",
  10093. "keywords": [
  10094. "compatibility",
  10095. "polyfill",
  10096. "portable",
  10097. "shim"
  10098. ],
  10099. "support": {
  10100. "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0"
  10101. },
  10102. "funding": [
  10103. {
  10104. "url": "https://symfony.com/sponsor",
  10105. "type": "custom"
  10106. },
  10107. {
  10108. "url": "https://github.com/fabpot",
  10109. "type": "github"
  10110. },
  10111. {
  10112. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10113. "type": "tidelift"
  10114. }
  10115. ],
  10116. "time": "2023-01-26T09:26:14+00:00"
  10117. },
  10118. {
  10119. "name": "symfony/polyfill-php80",
  10120. "version": "v1.28.0",
  10121. "source": {
  10122. "type": "git",
  10123. "url": "https://github.com/symfony/polyfill-php80.git",
  10124. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
  10125. },
  10126. "dist": {
  10127. "type": "zip",
  10128. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  10129. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  10130. "shasum": ""
  10131. },
  10132. "require": {
  10133. "php": ">=7.1"
  10134. },
  10135. "type": "library",
  10136. "extra": {
  10137. "branch-alias": {
  10138. "dev-main": "1.28-dev"
  10139. },
  10140. "thanks": {
  10141. "name": "symfony/polyfill",
  10142. "url": "https://github.com/symfony/polyfill"
  10143. }
  10144. },
  10145. "autoload": {
  10146. "files": [
  10147. "bootstrap.php"
  10148. ],
  10149. "psr-4": {
  10150. "Symfony\\Polyfill\\Php80\\": ""
  10151. },
  10152. "classmap": [
  10153. "Resources/stubs"
  10154. ]
  10155. },
  10156. "notification-url": "https://packagist.org/downloads/",
  10157. "license": [
  10158. "MIT"
  10159. ],
  10160. "authors": [
  10161. {
  10162. "name": "Ion Bazan",
  10163. "email": "ion.bazan@gmail.com"
  10164. },
  10165. {
  10166. "name": "Nicolas Grekas",
  10167. "email": "p@tchwork.com"
  10168. },
  10169. {
  10170. "name": "Symfony Community",
  10171. "homepage": "https://symfony.com/contributors"
  10172. }
  10173. ],
  10174. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  10175. "homepage": "https://symfony.com",
  10176. "keywords": [
  10177. "compatibility",
  10178. "polyfill",
  10179. "portable",
  10180. "shim"
  10181. ],
  10182. "support": {
  10183. "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
  10184. },
  10185. "funding": [
  10186. {
  10187. "url": "https://symfony.com/sponsor",
  10188. "type": "custom"
  10189. },
  10190. {
  10191. "url": "https://github.com/fabpot",
  10192. "type": "github"
  10193. },
  10194. {
  10195. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10196. "type": "tidelift"
  10197. }
  10198. ],
  10199. "time": "2023-01-26T09:26:14+00:00"
  10200. },
  10201. {
  10202. "name": "symfony/polyfill-php81",
  10203. "version": "v1.28.0",
  10204. "source": {
  10205. "type": "git",
  10206. "url": "https://github.com/symfony/polyfill-php81.git",
  10207. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b"
  10208. },
  10209. "dist": {
  10210. "type": "zip",
  10211. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/7581cd600fa9fd681b797d00b02f068e2f13263b",
  10212. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b",
  10213. "shasum": ""
  10214. },
  10215. "require": {
  10216. "php": ">=7.1"
  10217. },
  10218. "type": "library",
  10219. "extra": {
  10220. "branch-alias": {
  10221. "dev-main": "1.28-dev"
  10222. },
  10223. "thanks": {
  10224. "name": "symfony/polyfill",
  10225. "url": "https://github.com/symfony/polyfill"
  10226. }
  10227. },
  10228. "autoload": {
  10229. "files": [
  10230. "bootstrap.php"
  10231. ],
  10232. "psr-4": {
  10233. "Symfony\\Polyfill\\Php81\\": ""
  10234. },
  10235. "classmap": [
  10236. "Resources/stubs"
  10237. ]
  10238. },
  10239. "notification-url": "https://packagist.org/downloads/",
  10240. "license": [
  10241. "MIT"
  10242. ],
  10243. "authors": [
  10244. {
  10245. "name": "Nicolas Grekas",
  10246. "email": "p@tchwork.com"
  10247. },
  10248. {
  10249. "name": "Symfony Community",
  10250. "homepage": "https://symfony.com/contributors"
  10251. }
  10252. ],
  10253. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  10254. "homepage": "https://symfony.com",
  10255. "keywords": [
  10256. "compatibility",
  10257. "polyfill",
  10258. "portable",
  10259. "shim"
  10260. ],
  10261. "support": {
  10262. "source": "https://github.com/symfony/polyfill-php81/tree/v1.28.0"
  10263. },
  10264. "funding": [
  10265. {
  10266. "url": "https://symfony.com/sponsor",
  10267. "type": "custom"
  10268. },
  10269. {
  10270. "url": "https://github.com/fabpot",
  10271. "type": "github"
  10272. },
  10273. {
  10274. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10275. "type": "tidelift"
  10276. }
  10277. ],
  10278. "time": "2023-01-26T09:26:14+00:00"
  10279. },
  10280. {
  10281. "name": "symfony/polyfill-php83",
  10282. "version": "v1.27.0",
  10283. "source": {
  10284. "type": "git",
  10285. "url": "https://github.com/symfony/polyfill-php83.git",
  10286. "reference": "508c652ba3ccf69f8c97f251534f229791b52a57"
  10287. },
  10288. "dist": {
  10289. "type": "zip",
  10290. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/508c652ba3ccf69f8c97f251534f229791b52a57",
  10291. "reference": "508c652ba3ccf69f8c97f251534f229791b52a57",
  10292. "shasum": ""
  10293. },
  10294. "require": {
  10295. "php": ">=7.1",
  10296. "symfony/polyfill-php80": "^1.14"
  10297. },
  10298. "type": "library",
  10299. "extra": {
  10300. "branch-alias": {
  10301. "dev-main": "1.27-dev"
  10302. },
  10303. "thanks": {
  10304. "name": "symfony/polyfill",
  10305. "url": "https://github.com/symfony/polyfill"
  10306. }
  10307. },
  10308. "autoload": {
  10309. "files": [
  10310. "bootstrap.php"
  10311. ],
  10312. "psr-4": {
  10313. "Symfony\\Polyfill\\Php83\\": ""
  10314. }
  10315. },
  10316. "notification-url": "https://packagist.org/downloads/",
  10317. "license": [
  10318. "MIT"
  10319. ],
  10320. "authors": [
  10321. {
  10322. "name": "Nicolas Grekas",
  10323. "email": "p@tchwork.com"
  10324. },
  10325. {
  10326. "name": "Symfony Community",
  10327. "homepage": "https://symfony.com/contributors"
  10328. }
  10329. ],
  10330. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  10331. "homepage": "https://symfony.com",
  10332. "keywords": [
  10333. "compatibility",
  10334. "polyfill",
  10335. "portable",
  10336. "shim"
  10337. ],
  10338. "support": {
  10339. "source": "https://github.com/symfony/polyfill-php83/tree/v1.27.0"
  10340. },
  10341. "funding": [
  10342. {
  10343. "url": "https://symfony.com/sponsor",
  10344. "type": "custom"
  10345. },
  10346. {
  10347. "url": "https://github.com/fabpot",
  10348. "type": "github"
  10349. },
  10350. {
  10351. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10352. "type": "tidelift"
  10353. }
  10354. ],
  10355. "time": "2022-11-03T14:55:06+00:00"
  10356. },
  10357. {
  10358. "name": "symfony/process",
  10359. "version": "v6.3.4",
  10360. "source": {
  10361. "type": "git",
  10362. "url": "https://github.com/symfony/process.git",
  10363. "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54"
  10364. },
  10365. "dist": {
  10366. "type": "zip",
  10367. "url": "https://api.github.com/repos/symfony/process/zipball/0b5c29118f2e980d455d2e34a5659f4579847c54",
  10368. "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54",
  10369. "shasum": ""
  10370. },
  10371. "require": {
  10372. "php": ">=8.1"
  10373. },
  10374. "type": "library",
  10375. "autoload": {
  10376. "psr-4": {
  10377. "Symfony\\Component\\Process\\": ""
  10378. },
  10379. "exclude-from-classmap": [
  10380. "/Tests/"
  10381. ]
  10382. },
  10383. "notification-url": "https://packagist.org/downloads/",
  10384. "license": [
  10385. "MIT"
  10386. ],
  10387. "authors": [
  10388. {
  10389. "name": "Fabien Potencier",
  10390. "email": "fabien@symfony.com"
  10391. },
  10392. {
  10393. "name": "Symfony Community",
  10394. "homepage": "https://symfony.com/contributors"
  10395. }
  10396. ],
  10397. "description": "Executes commands in sub-processes",
  10398. "homepage": "https://symfony.com",
  10399. "support": {
  10400. "source": "https://github.com/symfony/process/tree/v6.3.4"
  10401. },
  10402. "funding": [
  10403. {
  10404. "url": "https://symfony.com/sponsor",
  10405. "type": "custom"
  10406. },
  10407. {
  10408. "url": "https://github.com/fabpot",
  10409. "type": "github"
  10410. },
  10411. {
  10412. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10413. "type": "tidelift"
  10414. }
  10415. ],
  10416. "time": "2023-08-07T10:39:22+00:00"
  10417. },
  10418. {
  10419. "name": "symfony/psr-http-message-bridge",
  10420. "version": "v2.2.0",
  10421. "source": {
  10422. "type": "git",
  10423. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  10424. "reference": "28a732c05bbad801304ad5a5c674cf2970508993"
  10425. },
  10426. "dist": {
  10427. "type": "zip",
  10428. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/28a732c05bbad801304ad5a5c674cf2970508993",
  10429. "reference": "28a732c05bbad801304ad5a5c674cf2970508993",
  10430. "shasum": ""
  10431. },
  10432. "require": {
  10433. "php": ">=7.2.5",
  10434. "psr/http-message": "^1.0 || ^2.0",
  10435. "symfony/http-foundation": "^5.4 || ^6.0"
  10436. },
  10437. "require-dev": {
  10438. "nyholm/psr7": "^1.1",
  10439. "psr/log": "^1.1 || ^2 || ^3",
  10440. "symfony/browser-kit": "^5.4 || ^6.0",
  10441. "symfony/config": "^5.4 || ^6.0",
  10442. "symfony/event-dispatcher": "^5.4 || ^6.0",
  10443. "symfony/framework-bundle": "^5.4 || ^6.0",
  10444. "symfony/http-kernel": "^5.4 || ^6.0",
  10445. "symfony/phpunit-bridge": "^6.2"
  10446. },
  10447. "suggest": {
  10448. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  10449. },
  10450. "type": "symfony-bridge",
  10451. "extra": {
  10452. "branch-alias": {
  10453. "dev-main": "2.2-dev"
  10454. }
  10455. },
  10456. "autoload": {
  10457. "psr-4": {
  10458. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  10459. },
  10460. "exclude-from-classmap": [
  10461. "/Tests/"
  10462. ]
  10463. },
  10464. "notification-url": "https://packagist.org/downloads/",
  10465. "license": [
  10466. "MIT"
  10467. ],
  10468. "authors": [
  10469. {
  10470. "name": "Fabien Potencier",
  10471. "email": "fabien@symfony.com"
  10472. },
  10473. {
  10474. "name": "Symfony Community",
  10475. "homepage": "http://symfony.com/contributors"
  10476. }
  10477. ],
  10478. "description": "PSR HTTP message bridge",
  10479. "homepage": "http://symfony.com",
  10480. "keywords": [
  10481. "http",
  10482. "http-message",
  10483. "psr-17",
  10484. "psr-7"
  10485. ],
  10486. "support": {
  10487. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  10488. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.2.0"
  10489. },
  10490. "funding": [
  10491. {
  10492. "url": "https://symfony.com/sponsor",
  10493. "type": "custom"
  10494. },
  10495. {
  10496. "url": "https://github.com/fabpot",
  10497. "type": "github"
  10498. },
  10499. {
  10500. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10501. "type": "tidelift"
  10502. }
  10503. ],
  10504. "time": "2023-04-21T08:40:19+00:00"
  10505. },
  10506. {
  10507. "name": "symfony/routing",
  10508. "version": "v6.3.5",
  10509. "source": {
  10510. "type": "git",
  10511. "url": "https://github.com/symfony/routing.git",
  10512. "reference": "82616e59acd3e3d9c916bba798326cb7796d7d31"
  10513. },
  10514. "dist": {
  10515. "type": "zip",
  10516. "url": "https://api.github.com/repos/symfony/routing/zipball/82616e59acd3e3d9c916bba798326cb7796d7d31",
  10517. "reference": "82616e59acd3e3d9c916bba798326cb7796d7d31",
  10518. "shasum": ""
  10519. },
  10520. "require": {
  10521. "php": ">=8.1",
  10522. "symfony/deprecation-contracts": "^2.5|^3"
  10523. },
  10524. "conflict": {
  10525. "doctrine/annotations": "<1.12",
  10526. "symfony/config": "<6.2",
  10527. "symfony/dependency-injection": "<5.4",
  10528. "symfony/yaml": "<5.4"
  10529. },
  10530. "require-dev": {
  10531. "doctrine/annotations": "^1.12|^2",
  10532. "psr/log": "^1|^2|^3",
  10533. "symfony/config": "^6.2",
  10534. "symfony/dependency-injection": "^5.4|^6.0",
  10535. "symfony/expression-language": "^5.4|^6.0",
  10536. "symfony/http-foundation": "^5.4|^6.0",
  10537. "symfony/yaml": "^5.4|^6.0"
  10538. },
  10539. "type": "library",
  10540. "autoload": {
  10541. "psr-4": {
  10542. "Symfony\\Component\\Routing\\": ""
  10543. },
  10544. "exclude-from-classmap": [
  10545. "/Tests/"
  10546. ]
  10547. },
  10548. "notification-url": "https://packagist.org/downloads/",
  10549. "license": [
  10550. "MIT"
  10551. ],
  10552. "authors": [
  10553. {
  10554. "name": "Fabien Potencier",
  10555. "email": "fabien@symfony.com"
  10556. },
  10557. {
  10558. "name": "Symfony Community",
  10559. "homepage": "https://symfony.com/contributors"
  10560. }
  10561. ],
  10562. "description": "Maps an HTTP request to a set of configuration variables",
  10563. "homepage": "https://symfony.com",
  10564. "keywords": [
  10565. "router",
  10566. "routing",
  10567. "uri",
  10568. "url"
  10569. ],
  10570. "support": {
  10571. "source": "https://github.com/symfony/routing/tree/v6.3.5"
  10572. },
  10573. "funding": [
  10574. {
  10575. "url": "https://symfony.com/sponsor",
  10576. "type": "custom"
  10577. },
  10578. {
  10579. "url": "https://github.com/fabpot",
  10580. "type": "github"
  10581. },
  10582. {
  10583. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10584. "type": "tidelift"
  10585. }
  10586. ],
  10587. "time": "2023-09-20T16:05:51+00:00"
  10588. },
  10589. {
  10590. "name": "symfony/serializer",
  10591. "version": "v6.3.9",
  10592. "source": {
  10593. "type": "git",
  10594. "url": "https://github.com/symfony/serializer.git",
  10595. "reference": "87faafcc88ace143b30fdc34b240d9a3603bc95e"
  10596. },
  10597. "dist": {
  10598. "type": "zip",
  10599. "url": "https://api.github.com/repos/symfony/serializer/zipball/87faafcc88ace143b30fdc34b240d9a3603bc95e",
  10600. "reference": "87faafcc88ace143b30fdc34b240d9a3603bc95e",
  10601. "shasum": ""
  10602. },
  10603. "require": {
  10604. "php": ">=8.1",
  10605. "symfony/deprecation-contracts": "^2.5|^3",
  10606. "symfony/polyfill-ctype": "~1.8"
  10607. },
  10608. "conflict": {
  10609. "doctrine/annotations": "<1.12",
  10610. "phpdocumentor/reflection-docblock": "<3.2.2",
  10611. "phpdocumentor/type-resolver": "<1.4.0",
  10612. "symfony/dependency-injection": "<5.4",
  10613. "symfony/property-access": "<5.4",
  10614. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  10615. "symfony/uid": "<5.4",
  10616. "symfony/yaml": "<5.4"
  10617. },
  10618. "require-dev": {
  10619. "doctrine/annotations": "^1.12|^2",
  10620. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  10621. "symfony/cache": "^5.4|^6.0",
  10622. "symfony/config": "^5.4|^6.0",
  10623. "symfony/console": "^5.4|^6.0",
  10624. "symfony/dependency-injection": "^5.4|^6.0",
  10625. "symfony/error-handler": "^5.4|^6.0",
  10626. "symfony/filesystem": "^5.4|^6.0",
  10627. "symfony/form": "^5.4|^6.0",
  10628. "symfony/http-foundation": "^5.4|^6.0",
  10629. "symfony/http-kernel": "^5.4|^6.0",
  10630. "symfony/mime": "^5.4|^6.0",
  10631. "symfony/property-access": "^5.4|^6.0",
  10632. "symfony/property-info": "^5.4.24|^6.2.11",
  10633. "symfony/uid": "^5.4|^6.0",
  10634. "symfony/validator": "^5.4|^6.0",
  10635. "symfony/var-dumper": "^5.4|^6.0",
  10636. "symfony/var-exporter": "^5.4|^6.0",
  10637. "symfony/yaml": "^5.4|^6.0"
  10638. },
  10639. "type": "library",
  10640. "autoload": {
  10641. "psr-4": {
  10642. "Symfony\\Component\\Serializer\\": ""
  10643. },
  10644. "exclude-from-classmap": [
  10645. "/Tests/"
  10646. ]
  10647. },
  10648. "notification-url": "https://packagist.org/downloads/",
  10649. "license": [
  10650. "MIT"
  10651. ],
  10652. "authors": [
  10653. {
  10654. "name": "Fabien Potencier",
  10655. "email": "fabien@symfony.com"
  10656. },
  10657. {
  10658. "name": "Symfony Community",
  10659. "homepage": "https://symfony.com/contributors"
  10660. }
  10661. ],
  10662. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  10663. "homepage": "https://symfony.com",
  10664. "support": {
  10665. "source": "https://github.com/symfony/serializer/tree/v6.3.9"
  10666. },
  10667. "funding": [
  10668. {
  10669. "url": "https://symfony.com/sponsor",
  10670. "type": "custom"
  10671. },
  10672. {
  10673. "url": "https://github.com/fabpot",
  10674. "type": "github"
  10675. },
  10676. {
  10677. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10678. "type": "tidelift"
  10679. }
  10680. ],
  10681. "time": "2023-11-29T10:00:30+00:00"
  10682. },
  10683. {
  10684. "name": "symfony/service-contracts",
  10685. "version": "v3.3.0",
  10686. "source": {
  10687. "type": "git",
  10688. "url": "https://github.com/symfony/service-contracts.git",
  10689. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4"
  10690. },
  10691. "dist": {
  10692. "type": "zip",
  10693. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  10694. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  10695. "shasum": ""
  10696. },
  10697. "require": {
  10698. "php": ">=8.1",
  10699. "psr/container": "^2.0"
  10700. },
  10701. "conflict": {
  10702. "ext-psr": "<1.1|>=2"
  10703. },
  10704. "type": "library",
  10705. "extra": {
  10706. "branch-alias": {
  10707. "dev-main": "3.4-dev"
  10708. },
  10709. "thanks": {
  10710. "name": "symfony/contracts",
  10711. "url": "https://github.com/symfony/contracts"
  10712. }
  10713. },
  10714. "autoload": {
  10715. "psr-4": {
  10716. "Symfony\\Contracts\\Service\\": ""
  10717. },
  10718. "exclude-from-classmap": [
  10719. "/Test/"
  10720. ]
  10721. },
  10722. "notification-url": "https://packagist.org/downloads/",
  10723. "license": [
  10724. "MIT"
  10725. ],
  10726. "authors": [
  10727. {
  10728. "name": "Nicolas Grekas",
  10729. "email": "p@tchwork.com"
  10730. },
  10731. {
  10732. "name": "Symfony Community",
  10733. "homepage": "https://symfony.com/contributors"
  10734. }
  10735. ],
  10736. "description": "Generic abstractions related to writing services",
  10737. "homepage": "https://symfony.com",
  10738. "keywords": [
  10739. "abstractions",
  10740. "contracts",
  10741. "decoupling",
  10742. "interfaces",
  10743. "interoperability",
  10744. "standards"
  10745. ],
  10746. "support": {
  10747. "source": "https://github.com/symfony/service-contracts/tree/v3.3.0"
  10748. },
  10749. "funding": [
  10750. {
  10751. "url": "https://symfony.com/sponsor",
  10752. "type": "custom"
  10753. },
  10754. {
  10755. "url": "https://github.com/fabpot",
  10756. "type": "github"
  10757. },
  10758. {
  10759. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10760. "type": "tidelift"
  10761. }
  10762. ],
  10763. "time": "2023-05-23T14:45:45+00:00"
  10764. },
  10765. {
  10766. "name": "symfony/string",
  10767. "version": "v6.3.9",
  10768. "source": {
  10769. "type": "git",
  10770. "url": "https://github.com/symfony/string.git",
  10771. "reference": "56427887aeaf540e9bbd121ad6c43f14ad3ce136"
  10772. },
  10773. "dist": {
  10774. "type": "zip",
  10775. "url": "https://api.github.com/repos/symfony/string/zipball/56427887aeaf540e9bbd121ad6c43f14ad3ce136",
  10776. "reference": "56427887aeaf540e9bbd121ad6c43f14ad3ce136",
  10777. "shasum": ""
  10778. },
  10779. "require": {
  10780. "php": ">=8.1",
  10781. "symfony/polyfill-ctype": "~1.8",
  10782. "symfony/polyfill-intl-grapheme": "~1.0",
  10783. "symfony/polyfill-intl-normalizer": "~1.0",
  10784. "symfony/polyfill-mbstring": "~1.0"
  10785. },
  10786. "conflict": {
  10787. "symfony/translation-contracts": "<2.5"
  10788. },
  10789. "require-dev": {
  10790. "symfony/error-handler": "^5.4|^6.0",
  10791. "symfony/http-client": "^5.4|^6.0",
  10792. "symfony/intl": "^6.2",
  10793. "symfony/translation-contracts": "^2.5|^3.0",
  10794. "symfony/var-exporter": "^5.4|^6.0"
  10795. },
  10796. "type": "library",
  10797. "autoload": {
  10798. "files": [
  10799. "Resources/functions.php"
  10800. ],
  10801. "psr-4": {
  10802. "Symfony\\Component\\String\\": ""
  10803. },
  10804. "exclude-from-classmap": [
  10805. "/Tests/"
  10806. ]
  10807. },
  10808. "notification-url": "https://packagist.org/downloads/",
  10809. "license": [
  10810. "MIT"
  10811. ],
  10812. "authors": [
  10813. {
  10814. "name": "Nicolas Grekas",
  10815. "email": "p@tchwork.com"
  10816. },
  10817. {
  10818. "name": "Symfony Community",
  10819. "homepage": "https://symfony.com/contributors"
  10820. }
  10821. ],
  10822. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  10823. "homepage": "https://symfony.com",
  10824. "keywords": [
  10825. "grapheme",
  10826. "i18n",
  10827. "string",
  10828. "unicode",
  10829. "utf-8",
  10830. "utf8"
  10831. ],
  10832. "support": {
  10833. "source": "https://github.com/symfony/string/tree/v6.3.9"
  10834. },
  10835. "funding": [
  10836. {
  10837. "url": "https://symfony.com/sponsor",
  10838. "type": "custom"
  10839. },
  10840. {
  10841. "url": "https://github.com/fabpot",
  10842. "type": "github"
  10843. },
  10844. {
  10845. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10846. "type": "tidelift"
  10847. }
  10848. ],
  10849. "time": "2023-11-28T20:40:29+00:00"
  10850. },
  10851. {
  10852. "name": "symfony/translation-contracts",
  10853. "version": "v3.3.0",
  10854. "source": {
  10855. "type": "git",
  10856. "url": "https://github.com/symfony/translation-contracts.git",
  10857. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86"
  10858. },
  10859. "dist": {
  10860. "type": "zip",
  10861. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/02c24deb352fb0d79db5486c0c79905a85e37e86",
  10862. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86",
  10863. "shasum": ""
  10864. },
  10865. "require": {
  10866. "php": ">=8.1"
  10867. },
  10868. "type": "library",
  10869. "extra": {
  10870. "branch-alias": {
  10871. "dev-main": "3.4-dev"
  10872. },
  10873. "thanks": {
  10874. "name": "symfony/contracts",
  10875. "url": "https://github.com/symfony/contracts"
  10876. }
  10877. },
  10878. "autoload": {
  10879. "psr-4": {
  10880. "Symfony\\Contracts\\Translation\\": ""
  10881. },
  10882. "exclude-from-classmap": [
  10883. "/Test/"
  10884. ]
  10885. },
  10886. "notification-url": "https://packagist.org/downloads/",
  10887. "license": [
  10888. "MIT"
  10889. ],
  10890. "authors": [
  10891. {
  10892. "name": "Nicolas Grekas",
  10893. "email": "p@tchwork.com"
  10894. },
  10895. {
  10896. "name": "Symfony Community",
  10897. "homepage": "https://symfony.com/contributors"
  10898. }
  10899. ],
  10900. "description": "Generic abstractions related to translation",
  10901. "homepage": "https://symfony.com",
  10902. "keywords": [
  10903. "abstractions",
  10904. "contracts",
  10905. "decoupling",
  10906. "interfaces",
  10907. "interoperability",
  10908. "standards"
  10909. ],
  10910. "support": {
  10911. "source": "https://github.com/symfony/translation-contracts/tree/v3.3.0"
  10912. },
  10913. "funding": [
  10914. {
  10915. "url": "https://symfony.com/sponsor",
  10916. "type": "custom"
  10917. },
  10918. {
  10919. "url": "https://github.com/fabpot",
  10920. "type": "github"
  10921. },
  10922. {
  10923. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10924. "type": "tidelift"
  10925. }
  10926. ],
  10927. "time": "2023-05-30T17:17:10+00:00"
  10928. },
  10929. {
  10930. "name": "symfony/validator",
  10931. "version": "v6.3.9",
  10932. "source": {
  10933. "type": "git",
  10934. "url": "https://github.com/symfony/validator.git",
  10935. "reference": "c118889931856af47b0732b609f3ac2ddccd1da6"
  10936. },
  10937. "dist": {
  10938. "type": "zip",
  10939. "url": "https://api.github.com/repos/symfony/validator/zipball/c118889931856af47b0732b609f3ac2ddccd1da6",
  10940. "reference": "c118889931856af47b0732b609f3ac2ddccd1da6",
  10941. "shasum": ""
  10942. },
  10943. "require": {
  10944. "php": ">=8.1",
  10945. "symfony/deprecation-contracts": "^2.5|^3",
  10946. "symfony/polyfill-ctype": "~1.8",
  10947. "symfony/polyfill-mbstring": "~1.0",
  10948. "symfony/polyfill-php83": "^1.27",
  10949. "symfony/translation-contracts": "^2.5|^3"
  10950. },
  10951. "conflict": {
  10952. "doctrine/annotations": "<1.13",
  10953. "doctrine/lexer": "<1.1",
  10954. "symfony/dependency-injection": "<5.4",
  10955. "symfony/expression-language": "<5.4",
  10956. "symfony/http-kernel": "<5.4",
  10957. "symfony/intl": "<5.4",
  10958. "symfony/property-info": "<5.4",
  10959. "symfony/translation": "<5.4",
  10960. "symfony/yaml": "<5.4"
  10961. },
  10962. "require-dev": {
  10963. "doctrine/annotations": "^1.13|^2",
  10964. "egulias/email-validator": "^2.1.10|^3|^4",
  10965. "symfony/cache": "^5.4|^6.0",
  10966. "symfony/config": "^5.4|^6.0",
  10967. "symfony/console": "^5.4|^6.0",
  10968. "symfony/dependency-injection": "^5.4|^6.0",
  10969. "symfony/expression-language": "^5.4|^6.0",
  10970. "symfony/finder": "^5.4|^6.0",
  10971. "symfony/http-client": "^5.4|^6.0",
  10972. "symfony/http-foundation": "^5.4|^6.0",
  10973. "symfony/http-kernel": "^5.4|^6.0",
  10974. "symfony/intl": "^5.4|^6.0",
  10975. "symfony/mime": "^5.4|^6.0",
  10976. "symfony/property-access": "^5.4|^6.0",
  10977. "symfony/property-info": "^5.4|^6.0",
  10978. "symfony/translation": "^5.4|^6.0",
  10979. "symfony/yaml": "^5.4|^6.0"
  10980. },
  10981. "type": "library",
  10982. "autoload": {
  10983. "psr-4": {
  10984. "Symfony\\Component\\Validator\\": ""
  10985. },
  10986. "exclude-from-classmap": [
  10987. "/Tests/"
  10988. ]
  10989. },
  10990. "notification-url": "https://packagist.org/downloads/",
  10991. "license": [
  10992. "MIT"
  10993. ],
  10994. "authors": [
  10995. {
  10996. "name": "Fabien Potencier",
  10997. "email": "fabien@symfony.com"
  10998. },
  10999. {
  11000. "name": "Symfony Community",
  11001. "homepage": "https://symfony.com/contributors"
  11002. }
  11003. ],
  11004. "description": "Provides tools to validate values",
  11005. "homepage": "https://symfony.com",
  11006. "support": {
  11007. "source": "https://github.com/symfony/validator/tree/v6.3.9"
  11008. },
  11009. "funding": [
  11010. {
  11011. "url": "https://symfony.com/sponsor",
  11012. "type": "custom"
  11013. },
  11014. {
  11015. "url": "https://github.com/fabpot",
  11016. "type": "github"
  11017. },
  11018. {
  11019. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11020. "type": "tidelift"
  11021. }
  11022. ],
  11023. "time": "2023-11-29T07:44:47+00:00"
  11024. },
  11025. {
  11026. "name": "symfony/var-dumper",
  11027. "version": "v6.3.8",
  11028. "source": {
  11029. "type": "git",
  11030. "url": "https://github.com/symfony/var-dumper.git",
  11031. "reference": "81acabba9046550e89634876ca64bfcd3c06aa0a"
  11032. },
  11033. "dist": {
  11034. "type": "zip",
  11035. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/81acabba9046550e89634876ca64bfcd3c06aa0a",
  11036. "reference": "81acabba9046550e89634876ca64bfcd3c06aa0a",
  11037. "shasum": ""
  11038. },
  11039. "require": {
  11040. "php": ">=8.1",
  11041. "symfony/deprecation-contracts": "^2.5|^3",
  11042. "symfony/polyfill-mbstring": "~1.0"
  11043. },
  11044. "conflict": {
  11045. "symfony/console": "<5.4"
  11046. },
  11047. "require-dev": {
  11048. "ext-iconv": "*",
  11049. "symfony/console": "^5.4|^6.0",
  11050. "symfony/http-kernel": "^5.4|^6.0",
  11051. "symfony/process": "^5.4|^6.0",
  11052. "symfony/uid": "^5.4|^6.0",
  11053. "twig/twig": "^2.13|^3.0.4"
  11054. },
  11055. "bin": [
  11056. "Resources/bin/var-dump-server"
  11057. ],
  11058. "type": "library",
  11059. "autoload": {
  11060. "files": [
  11061. "Resources/functions/dump.php"
  11062. ],
  11063. "psr-4": {
  11064. "Symfony\\Component\\VarDumper\\": ""
  11065. },
  11066. "exclude-from-classmap": [
  11067. "/Tests/"
  11068. ]
  11069. },
  11070. "notification-url": "https://packagist.org/downloads/",
  11071. "license": [
  11072. "MIT"
  11073. ],
  11074. "authors": [
  11075. {
  11076. "name": "Nicolas Grekas",
  11077. "email": "p@tchwork.com"
  11078. },
  11079. {
  11080. "name": "Symfony Community",
  11081. "homepage": "https://symfony.com/contributors"
  11082. }
  11083. ],
  11084. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  11085. "homepage": "https://symfony.com",
  11086. "keywords": [
  11087. "debug",
  11088. "dump"
  11089. ],
  11090. "support": {
  11091. "source": "https://github.com/symfony/var-dumper/tree/v6.3.8"
  11092. },
  11093. "funding": [
  11094. {
  11095. "url": "https://symfony.com/sponsor",
  11096. "type": "custom"
  11097. },
  11098. {
  11099. "url": "https://github.com/fabpot",
  11100. "type": "github"
  11101. },
  11102. {
  11103. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11104. "type": "tidelift"
  11105. }
  11106. ],
  11107. "time": "2023-11-08T10:42:36+00:00"
  11108. },
  11109. {
  11110. "name": "symfony/var-exporter",
  11111. "version": "v6.3.9",
  11112. "source": {
  11113. "type": "git",
  11114. "url": "https://github.com/symfony/var-exporter.git",
  11115. "reference": "a00fd2d47af5c95e95e8e371a74be2e79b95dfae"
  11116. },
  11117. "dist": {
  11118. "type": "zip",
  11119. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/a00fd2d47af5c95e95e8e371a74be2e79b95dfae",
  11120. "reference": "a00fd2d47af5c95e95e8e371a74be2e79b95dfae",
  11121. "shasum": ""
  11122. },
  11123. "require": {
  11124. "php": ">=8.1"
  11125. },
  11126. "require-dev": {
  11127. "symfony/var-dumper": "^5.4|^6.0"
  11128. },
  11129. "type": "library",
  11130. "autoload": {
  11131. "psr-4": {
  11132. "Symfony\\Component\\VarExporter\\": ""
  11133. },
  11134. "exclude-from-classmap": [
  11135. "/Tests/"
  11136. ]
  11137. },
  11138. "notification-url": "https://packagist.org/downloads/",
  11139. "license": [
  11140. "MIT"
  11141. ],
  11142. "authors": [
  11143. {
  11144. "name": "Nicolas Grekas",
  11145. "email": "p@tchwork.com"
  11146. },
  11147. {
  11148. "name": "Symfony Community",
  11149. "homepage": "https://symfony.com/contributors"
  11150. }
  11151. ],
  11152. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  11153. "homepage": "https://symfony.com",
  11154. "keywords": [
  11155. "clone",
  11156. "construct",
  11157. "export",
  11158. "hydrate",
  11159. "instantiate",
  11160. "lazy-loading",
  11161. "proxy",
  11162. "serialize"
  11163. ],
  11164. "support": {
  11165. "source": "https://github.com/symfony/var-exporter/tree/v6.3.9"
  11166. },
  11167. "funding": [
  11168. {
  11169. "url": "https://symfony.com/sponsor",
  11170. "type": "custom"
  11171. },
  11172. {
  11173. "url": "https://github.com/fabpot",
  11174. "type": "github"
  11175. },
  11176. {
  11177. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11178. "type": "tidelift"
  11179. }
  11180. ],
  11181. "time": "2023-11-28T20:34:48+00:00"
  11182. },
  11183. {
  11184. "name": "symfony/yaml",
  11185. "version": "v6.3.8",
  11186. "source": {
  11187. "type": "git",
  11188. "url": "https://github.com/symfony/yaml.git",
  11189. "reference": "3493af8a8dad7fa91c77fa473ba23ecd95334a92"
  11190. },
  11191. "dist": {
  11192. "type": "zip",
  11193. "url": "https://api.github.com/repos/symfony/yaml/zipball/3493af8a8dad7fa91c77fa473ba23ecd95334a92",
  11194. "reference": "3493af8a8dad7fa91c77fa473ba23ecd95334a92",
  11195. "shasum": ""
  11196. },
  11197. "require": {
  11198. "php": ">=8.1",
  11199. "symfony/deprecation-contracts": "^2.5|^3",
  11200. "symfony/polyfill-ctype": "^1.8"
  11201. },
  11202. "conflict": {
  11203. "symfony/console": "<5.4"
  11204. },
  11205. "require-dev": {
  11206. "symfony/console": "^5.4|^6.0"
  11207. },
  11208. "bin": [
  11209. "Resources/bin/yaml-lint"
  11210. ],
  11211. "type": "library",
  11212. "autoload": {
  11213. "psr-4": {
  11214. "Symfony\\Component\\Yaml\\": ""
  11215. },
  11216. "exclude-from-classmap": [
  11217. "/Tests/"
  11218. ]
  11219. },
  11220. "notification-url": "https://packagist.org/downloads/",
  11221. "license": [
  11222. "MIT"
  11223. ],
  11224. "authors": [
  11225. {
  11226. "name": "Fabien Potencier",
  11227. "email": "fabien@symfony.com"
  11228. },
  11229. {
  11230. "name": "Symfony Community",
  11231. "homepage": "https://symfony.com/contributors"
  11232. }
  11233. ],
  11234. "description": "Loads and dumps YAML files",
  11235. "homepage": "https://symfony.com",
  11236. "support": {
  11237. "source": "https://github.com/symfony/yaml/tree/v6.3.8"
  11238. },
  11239. "funding": [
  11240. {
  11241. "url": "https://symfony.com/sponsor",
  11242. "type": "custom"
  11243. },
  11244. {
  11245. "url": "https://github.com/fabpot",
  11246. "type": "github"
  11247. },
  11248. {
  11249. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11250. "type": "tidelift"
  11251. }
  11252. ],
  11253. "time": "2023-11-06T10:58:05+00:00"
  11254. },
  11255. {
  11256. "name": "twig/twig",
  11257. "version": "v3.6.1",
  11258. "source": {
  11259. "type": "git",
  11260. "url": "https://github.com/twigphp/Twig.git",
  11261. "reference": "7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd"
  11262. },
  11263. "dist": {
  11264. "type": "zip",
  11265. "url": "https://api.github.com/repos/twigphp/Twig/zipball/7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd",
  11266. "reference": "7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd",
  11267. "shasum": ""
  11268. },
  11269. "require": {
  11270. "php": ">=7.2.5",
  11271. "symfony/polyfill-ctype": "^1.8",
  11272. "symfony/polyfill-mbstring": "^1.3"
  11273. },
  11274. "require-dev": {
  11275. "psr/container": "^1.0|^2.0",
  11276. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  11277. },
  11278. "type": "library",
  11279. "autoload": {
  11280. "psr-4": {
  11281. "Twig\\": "src/"
  11282. }
  11283. },
  11284. "notification-url": "https://packagist.org/downloads/",
  11285. "license": [
  11286. "BSD-3-Clause"
  11287. ],
  11288. "authors": [
  11289. {
  11290. "name": "Fabien Potencier",
  11291. "email": "fabien@symfony.com",
  11292. "homepage": "http://fabien.potencier.org",
  11293. "role": "Lead Developer"
  11294. },
  11295. {
  11296. "name": "Twig Team",
  11297. "role": "Contributors"
  11298. },
  11299. {
  11300. "name": "Armin Ronacher",
  11301. "email": "armin.ronacher@active-4.com",
  11302. "role": "Project Founder"
  11303. }
  11304. ],
  11305. "description": "Twig, the flexible, fast, and secure template language for PHP",
  11306. "homepage": "https://twig.symfony.com",
  11307. "keywords": [
  11308. "templating"
  11309. ],
  11310. "support": {
  11311. "issues": "https://github.com/twigphp/Twig/issues",
  11312. "source": "https://github.com/twigphp/Twig/tree/v3.6.1"
  11313. },
  11314. "funding": [
  11315. {
  11316. "url": "https://github.com/fabpot",
  11317. "type": "github"
  11318. },
  11319. {
  11320. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  11321. "type": "tidelift"
  11322. }
  11323. ],
  11324. "time": "2023-06-08T12:52:13+00:00"
  11325. },
  11326. {
  11327. "name": "webflo/drupal-finder",
  11328. "version": "1.2.2",
  11329. "source": {
  11330. "type": "git",
  11331. "url": "https://github.com/webflo/drupal-finder.git",
  11332. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  11333. },
  11334. "dist": {
  11335. "type": "zip",
  11336. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  11337. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  11338. "shasum": ""
  11339. },
  11340. "require": {
  11341. "ext-json": "*"
  11342. },
  11343. "require-dev": {
  11344. "mikey179/vfsstream": "^1.6",
  11345. "phpunit/phpunit": "^4.8"
  11346. },
  11347. "type": "library",
  11348. "autoload": {
  11349. "classmap": [
  11350. "src/DrupalFinder.php"
  11351. ]
  11352. },
  11353. "notification-url": "https://packagist.org/downloads/",
  11354. "license": [
  11355. "GPL-2.0-or-later"
  11356. ],
  11357. "authors": [
  11358. {
  11359. "name": "Florian Weber",
  11360. "email": "florian@webflo.org"
  11361. }
  11362. ],
  11363. "description": "Helper class to locate a Drupal installation from a given path.",
  11364. "support": {
  11365. "issues": "https://github.com/webflo/drupal-finder/issues",
  11366. "source": "https://github.com/webflo/drupal-finder/tree/1.2.2"
  11367. },
  11368. "time": "2020-10-27T09:42:17+00:00"
  11369. },
  11370. {
  11371. "name": "wikimedia/composer-merge-plugin",
  11372. "version": "v2.1.0",
  11373. "source": {
  11374. "type": "git",
  11375. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  11376. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc"
  11377. },
  11378. "dist": {
  11379. "type": "zip",
  11380. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  11381. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  11382. "shasum": ""
  11383. },
  11384. "require": {
  11385. "composer-plugin-api": "^1.1||^2.0",
  11386. "php": ">=7.2.0"
  11387. },
  11388. "require-dev": {
  11389. "composer/composer": "^1.1||^2.0",
  11390. "ext-json": "*",
  11391. "mediawiki/mediawiki-phan-config": "0.11.1",
  11392. "php-parallel-lint/php-parallel-lint": "~1.3.1",
  11393. "phpspec/prophecy": "~1.15.0",
  11394. "phpunit/phpunit": "^8.5||^9.0",
  11395. "squizlabs/php_codesniffer": "~3.7.1"
  11396. },
  11397. "type": "composer-plugin",
  11398. "extra": {
  11399. "branch-alias": {
  11400. "dev-master": "2.x-dev"
  11401. },
  11402. "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin"
  11403. },
  11404. "autoload": {
  11405. "psr-4": {
  11406. "Wikimedia\\Composer\\Merge\\V2\\": "src/"
  11407. }
  11408. },
  11409. "notification-url": "https://packagist.org/downloads/",
  11410. "license": [
  11411. "MIT"
  11412. ],
  11413. "authors": [
  11414. {
  11415. "name": "Bryan Davis",
  11416. "email": "bd808@wikimedia.org"
  11417. }
  11418. ],
  11419. "description": "Composer plugin to merge multiple composer.json files",
  11420. "support": {
  11421. "issues": "https://github.com/wikimedia/composer-merge-plugin/issues",
  11422. "source": "https://github.com/wikimedia/composer-merge-plugin/tree/v2.1.0"
  11423. },
  11424. "time": "2023-04-15T19:07:00+00:00"
  11425. }
  11426. ],
  11427. "packages-dev": [],
  11428. "aliases": [],
  11429. "minimum-stability": "stable",
  11430. "stability-flags": {
  11431. "drupal/advanced_text_formatter": 5,
  11432. "drupal/bulkdelete": 20,
  11433. "drupal/config_ignore": 5,
  11434. "drupal/config_devel": 20,
  11435. "drupal/config_update": 15,
  11436. "drupal/context": 5,
  11437. "drupal/date_range_formatter": 20,
  11438. "drupal/email_registration": 5,
  11439. "drupal/entity_clone": 20,
  11440. "drupal/field_group": 20,
  11441. "drupal/filter_perms": 20,
  11442. "drupal/inline_entity_form": 5,
  11443. "drupal/linkit": 10,
  11444. "drupal/login_destination": 20,
  11445. "drupal/maillog": 20,
  11446. "drupal/maxlength": 10,
  11447. "drupal/menu_block": 20,
  11448. "drupal/menu_position": 20,
  11449. "drupal/path_alias_xt": 20,
  11450. "drupal/pathologic": 15,
  11451. "drupal/profile": 5,
  11452. "drupal/smtp": 10,
  11453. "drupal/synonyms": 10,
  11454. "drupal/translation_views": 15,
  11455. "drupal/ultimate_cron": 15
  11456. },
  11457. "prefer-stable": true,
  11458. "prefer-lowest": false,
  11459. "platform": [],
  11460. "platform-dev": [],
  11461. "plugin-api-version": "2.6.0"
  11462. }