composer.lock 381 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475
  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": "cf17b0231912cb1671d3ab2e573342e4",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/50f57105bad3d97a43ec4a485eb57daf347eafea",
  20. "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.3|^8.0",
  25. "symfony/http-foundation": "^5.3|^6|^7",
  26. "symfony/http-kernel": "^5.3|^6|^7"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^9",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.2-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/asm89/stack-cors/issues",
  61. "source": "https://github.com/asm89/stack-cors/tree/v2.2.0"
  62. },
  63. "time": "2023-11-14T13:51:46+00:00"
  64. },
  65. {
  66. "name": "chi-teck/drupal-code-generator",
  67. "version": "3.6.1",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  71. "reference": "2dbd8d231945681a398862a3282ade3cf0ea23ab"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/2dbd8d231945681a398862a3282ade3cf0ea23ab",
  76. "reference": "2dbd8d231945681a398862a3282ade3cf0ea23ab",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "ext-json": "*",
  81. "php": ">=8.1.0",
  82. "psr/event-dispatcher": "^1.0",
  83. "psr/log": "^3.0",
  84. "symfony/console": "^6.3",
  85. "symfony/dependency-injection": "^6.3.2",
  86. "symfony/filesystem": "^6.3",
  87. "symfony/string": "^6.3",
  88. "twig/twig": "^3.4"
  89. },
  90. "conflict": {
  91. "squizlabs/php_codesniffer": "<3.6"
  92. },
  93. "require-dev": {
  94. "chi-teck/drupal-coder-extension": "^2.0.0-beta3",
  95. "drupal/coder": "8.3.23",
  96. "drupal/core": "10.3.x-dev",
  97. "ext-simplexml": "*",
  98. "phpspec/prophecy-phpunit": "^2.2",
  99. "phpunit/phpunit": "^9.6",
  100. "squizlabs/php_codesniffer": "^3.9",
  101. "symfony/var-dumper": "^6.4",
  102. "symfony/yaml": "^6.3",
  103. "vimeo/psalm": "^5.22.2"
  104. },
  105. "bin": [
  106. "bin/dcg"
  107. ],
  108. "type": "library",
  109. "autoload": {
  110. "psr-4": {
  111. "DrupalCodeGenerator\\": "src"
  112. }
  113. },
  114. "notification-url": "https://packagist.org/downloads/",
  115. "license": [
  116. "GPL-2.0-or-later"
  117. ],
  118. "description": "Drupal code generator",
  119. "support": {
  120. "issues": "https://github.com/Chi-teck/drupal-code-generator/issues",
  121. "source": "https://github.com/Chi-teck/drupal-code-generator/tree/3.6.1"
  122. },
  123. "time": "2024-06-06T17:36:37+00:00"
  124. },
  125. {
  126. "name": "composer/installers",
  127. "version": "v1.12.0",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/composer/installers.git",
  131. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/composer/installers/zipball/d20a64ed3c94748397ff5973488761b22f6d3f19",
  136. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "composer-plugin-api": "^1.0 || ^2.0"
  141. },
  142. "replace": {
  143. "roundcube/plugin-installer": "*",
  144. "shama/baton": "*"
  145. },
  146. "require-dev": {
  147. "composer/composer": "1.6.* || ^2.0",
  148. "composer/semver": "^1 || ^3",
  149. "phpstan/phpstan": "^0.12.55",
  150. "phpstan/phpstan-phpunit": "^0.12.16",
  151. "symfony/phpunit-bridge": "^4.2 || ^5",
  152. "symfony/process": "^2.3"
  153. },
  154. "type": "composer-plugin",
  155. "extra": {
  156. "class": "Composer\\Installers\\Plugin",
  157. "branch-alias": {
  158. "dev-main": "1.x-dev"
  159. }
  160. },
  161. "autoload": {
  162. "psr-4": {
  163. "Composer\\Installers\\": "src/Composer/Installers"
  164. }
  165. },
  166. "notification-url": "https://packagist.org/downloads/",
  167. "license": [
  168. "MIT"
  169. ],
  170. "authors": [
  171. {
  172. "name": "Kyle Robinson Young",
  173. "email": "kyle@dontkry.com",
  174. "homepage": "https://github.com/shama"
  175. }
  176. ],
  177. "description": "A multi-framework Composer library installer",
  178. "homepage": "https://composer.github.io/installers/",
  179. "keywords": [
  180. "Craft",
  181. "Dolibarr",
  182. "Eliasis",
  183. "Hurad",
  184. "ImageCMS",
  185. "Kanboard",
  186. "Lan Management System",
  187. "MODX Evo",
  188. "MantisBT",
  189. "Mautic",
  190. "Maya",
  191. "OXID",
  192. "Plentymarkets",
  193. "Porto",
  194. "RadPHP",
  195. "SMF",
  196. "Starbug",
  197. "Thelia",
  198. "Whmcs",
  199. "WolfCMS",
  200. "agl",
  201. "aimeos",
  202. "annotatecms",
  203. "attogram",
  204. "bitrix",
  205. "cakephp",
  206. "chef",
  207. "cockpit",
  208. "codeigniter",
  209. "concrete5",
  210. "croogo",
  211. "dokuwiki",
  212. "drupal",
  213. "eZ Platform",
  214. "elgg",
  215. "expressionengine",
  216. "fuelphp",
  217. "grav",
  218. "installer",
  219. "itop",
  220. "joomla",
  221. "known",
  222. "kohana",
  223. "laravel",
  224. "lavalite",
  225. "lithium",
  226. "magento",
  227. "majima",
  228. "mako",
  229. "mediawiki",
  230. "miaoxing",
  231. "modulework",
  232. "modx",
  233. "moodle",
  234. "osclass",
  235. "pantheon",
  236. "phpbb",
  237. "piwik",
  238. "ppi",
  239. "processwire",
  240. "puppet",
  241. "pxcms",
  242. "reindex",
  243. "roundcube",
  244. "shopware",
  245. "silverstripe",
  246. "sydes",
  247. "sylius",
  248. "symfony",
  249. "tastyigniter",
  250. "typo3",
  251. "wordpress",
  252. "yawik",
  253. "zend",
  254. "zikula"
  255. ],
  256. "support": {
  257. "issues": "https://github.com/composer/installers/issues",
  258. "source": "https://github.com/composer/installers/tree/v1.12.0"
  259. },
  260. "funding": [
  261. {
  262. "url": "https://packagist.com",
  263. "type": "custom"
  264. },
  265. {
  266. "url": "https://github.com/composer",
  267. "type": "github"
  268. },
  269. {
  270. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  271. "type": "tidelift"
  272. }
  273. ],
  274. "time": "2021-09-13T08:19:44+00:00"
  275. },
  276. {
  277. "name": "composer/semver",
  278. "version": "3.4.3",
  279. "source": {
  280. "type": "git",
  281. "url": "https://github.com/composer/semver.git",
  282. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  283. },
  284. "dist": {
  285. "type": "zip",
  286. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  287. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  288. "shasum": ""
  289. },
  290. "require": {
  291. "php": "^5.3.2 || ^7.0 || ^8.0"
  292. },
  293. "require-dev": {
  294. "phpstan/phpstan": "^1.11",
  295. "symfony/phpunit-bridge": "^3 || ^7"
  296. },
  297. "type": "library",
  298. "extra": {
  299. "branch-alias": {
  300. "dev-main": "3.x-dev"
  301. }
  302. },
  303. "autoload": {
  304. "psr-4": {
  305. "Composer\\Semver\\": "src"
  306. }
  307. },
  308. "notification-url": "https://packagist.org/downloads/",
  309. "license": [
  310. "MIT"
  311. ],
  312. "authors": [
  313. {
  314. "name": "Nils Adermann",
  315. "email": "naderman@naderman.de",
  316. "homepage": "http://www.naderman.de"
  317. },
  318. {
  319. "name": "Jordi Boggiano",
  320. "email": "j.boggiano@seld.be",
  321. "homepage": "http://seld.be"
  322. },
  323. {
  324. "name": "Rob Bast",
  325. "email": "rob.bast@gmail.com",
  326. "homepage": "http://robbast.nl"
  327. }
  328. ],
  329. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  330. "keywords": [
  331. "semantic",
  332. "semver",
  333. "validation",
  334. "versioning"
  335. ],
  336. "support": {
  337. "irc": "ircs://irc.libera.chat:6697/composer",
  338. "issues": "https://github.com/composer/semver/issues",
  339. "source": "https://github.com/composer/semver/tree/3.4.3"
  340. },
  341. "funding": [
  342. {
  343. "url": "https://packagist.com",
  344. "type": "custom"
  345. },
  346. {
  347. "url": "https://github.com/composer",
  348. "type": "github"
  349. },
  350. {
  351. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  352. "type": "tidelift"
  353. }
  354. ],
  355. "time": "2024-09-19T14:15:21+00:00"
  356. },
  357. {
  358. "name": "consolidation/annotated-command",
  359. "version": "4.10.0",
  360. "source": {
  361. "type": "git",
  362. "url": "https://github.com/consolidation/annotated-command.git",
  363. "reference": "1e830ba908c9ffb1ba7ca056203531b27188812c"
  364. },
  365. "dist": {
  366. "type": "zip",
  367. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/1e830ba908c9ffb1ba7ca056203531b27188812c",
  368. "reference": "1e830ba908c9ffb1ba7ca056203531b27188812c",
  369. "shasum": ""
  370. },
  371. "require": {
  372. "consolidation/output-formatters": "^4.3.1",
  373. "php": ">=7.1.3",
  374. "psr/log": "^1 || ^2 || ^3",
  375. "symfony/console": "^4.4.8 || ^5 || ^6 || ^7",
  376. "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6 || ^7",
  377. "symfony/finder": "^4.4.8 || ^5 || ^6 || ^7"
  378. },
  379. "require-dev": {
  380. "composer-runtime-api": "^2.0",
  381. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  382. "squizlabs/php_codesniffer": "^3",
  383. "yoast/phpunit-polyfills": "^0.2.0"
  384. },
  385. "type": "library",
  386. "extra": {
  387. "branch-alias": {
  388. "dev-main": "4.x-dev"
  389. }
  390. },
  391. "autoload": {
  392. "psr-4": {
  393. "Consolidation\\AnnotatedCommand\\": "src"
  394. }
  395. },
  396. "notification-url": "https://packagist.org/downloads/",
  397. "license": [
  398. "MIT"
  399. ],
  400. "authors": [
  401. {
  402. "name": "Greg Anderson",
  403. "email": "greg.1.anderson@greenknowe.org"
  404. }
  405. ],
  406. "description": "Initialize Symfony Console commands from annotated command class methods.",
  407. "support": {
  408. "issues": "https://github.com/consolidation/annotated-command/issues",
  409. "source": "https://github.com/consolidation/annotated-command/tree/4.10.0"
  410. },
  411. "time": "2024-04-05T21:05:39+00:00"
  412. },
  413. {
  414. "name": "consolidation/config",
  415. "version": "2.1.2",
  416. "source": {
  417. "type": "git",
  418. "url": "https://github.com/consolidation/config.git",
  419. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae"
  420. },
  421. "dist": {
  422. "type": "zip",
  423. "url": "https://api.github.com/repos/consolidation/config/zipball/597f8d7fbeef801736250ec10c3e190569b1b0ae",
  424. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae",
  425. "shasum": ""
  426. },
  427. "require": {
  428. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  429. "grasmash/expander": "^2.0.1 || ^3",
  430. "php": ">=7.1.3",
  431. "symfony/event-dispatcher": "^4 || ^5 || ^6"
  432. },
  433. "require-dev": {
  434. "ext-json": "*",
  435. "phpunit/phpunit": ">=7.5.20",
  436. "squizlabs/php_codesniffer": "^3",
  437. "symfony/console": "^4 || ^5 || ^6",
  438. "symfony/yaml": "^4 || ^5 || ^6",
  439. "yoast/phpunit-polyfills": "^1"
  440. },
  441. "suggest": {
  442. "symfony/event-dispatcher": "Required to inject configuration into Command options",
  443. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  444. },
  445. "type": "library",
  446. "extra": {
  447. "branch-alias": {
  448. "dev-main": "2.x-dev"
  449. }
  450. },
  451. "autoload": {
  452. "psr-4": {
  453. "Consolidation\\Config\\": "src"
  454. }
  455. },
  456. "notification-url": "https://packagist.org/downloads/",
  457. "license": [
  458. "MIT"
  459. ],
  460. "authors": [
  461. {
  462. "name": "Greg Anderson",
  463. "email": "greg.1.anderson@greenknowe.org"
  464. }
  465. ],
  466. "description": "Provide configuration services for a commandline tool.",
  467. "support": {
  468. "issues": "https://github.com/consolidation/config/issues",
  469. "source": "https://github.com/consolidation/config/tree/2.1.2"
  470. },
  471. "time": "2022-10-06T17:48:03+00:00"
  472. },
  473. {
  474. "name": "consolidation/filter-via-dot-access-data",
  475. "version": "2.0.2",
  476. "source": {
  477. "type": "git",
  478. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  479. "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b"
  480. },
  481. "dist": {
  482. "type": "zip",
  483. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
  484. "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
  485. "shasum": ""
  486. },
  487. "require": {
  488. "dflydev/dot-access-data": "^1.1.0 || ^2.0.0 || ^3.0.0",
  489. "php": ">=7.1.3"
  490. },
  491. "require-dev": {
  492. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  493. "squizlabs/php_codesniffer": "^3",
  494. "yoast/phpunit-polyfills": "^0.2.0"
  495. },
  496. "type": "library",
  497. "extra": {
  498. "branch-alias": {
  499. "dev-main": "2.x-dev"
  500. }
  501. },
  502. "autoload": {
  503. "psr-4": {
  504. "Consolidation\\Filter\\": "src"
  505. }
  506. },
  507. "notification-url": "https://packagist.org/downloads/",
  508. "license": [
  509. "MIT"
  510. ],
  511. "authors": [
  512. {
  513. "name": "Greg Anderson",
  514. "email": "greg.1.anderson@greenknowe.org"
  515. }
  516. ],
  517. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  518. "support": {
  519. "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/2.0.2"
  520. },
  521. "time": "2021-12-30T03:56:08+00:00"
  522. },
  523. {
  524. "name": "consolidation/log",
  525. "version": "3.1.0",
  526. "source": {
  527. "type": "git",
  528. "url": "https://github.com/consolidation/log.git",
  529. "reference": "c27a3beb36137c141ccbce0d89f64befb243c015"
  530. },
  531. "dist": {
  532. "type": "zip",
  533. "url": "https://api.github.com/repos/consolidation/log/zipball/c27a3beb36137c141ccbce0d89f64befb243c015",
  534. "reference": "c27a3beb36137c141ccbce0d89f64befb243c015",
  535. "shasum": ""
  536. },
  537. "require": {
  538. "php": ">=8.0.0",
  539. "psr/log": "^3",
  540. "symfony/console": "^5 || ^6 || ^7"
  541. },
  542. "require-dev": {
  543. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  544. "squizlabs/php_codesniffer": "^3",
  545. "yoast/phpunit-polyfills": "^0.2.0"
  546. },
  547. "type": "library",
  548. "extra": {
  549. "platform": {
  550. "php": "8.2.17"
  551. }
  552. },
  553. "autoload": {
  554. "psr-4": {
  555. "Consolidation\\Log\\": "src"
  556. }
  557. },
  558. "notification-url": "https://packagist.org/downloads/",
  559. "license": [
  560. "MIT"
  561. ],
  562. "authors": [
  563. {
  564. "name": "Greg Anderson",
  565. "email": "greg.1.anderson@greenknowe.org"
  566. }
  567. ],
  568. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  569. "support": {
  570. "issues": "https://github.com/consolidation/log/issues",
  571. "source": "https://github.com/consolidation/log/tree/3.1.0"
  572. },
  573. "time": "2024-04-04T23:50:25+00:00"
  574. },
  575. {
  576. "name": "consolidation/output-formatters",
  577. "version": "4.5.0",
  578. "source": {
  579. "type": "git",
  580. "url": "https://github.com/consolidation/output-formatters.git",
  581. "reference": "7a611b01eb48eb19cd54672339fc08c0985bf540"
  582. },
  583. "dist": {
  584. "type": "zip",
  585. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/7a611b01eb48eb19cd54672339fc08c0985bf540",
  586. "reference": "7a611b01eb48eb19cd54672339fc08c0985bf540",
  587. "shasum": ""
  588. },
  589. "require": {
  590. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  591. "php": ">=7.1.3",
  592. "symfony/console": "^4 || ^5 || ^6 || ^7",
  593. "symfony/finder": "^4 || ^5 || ^6 || ^7"
  594. },
  595. "require-dev": {
  596. "php-coveralls/php-coveralls": "^2.4.2",
  597. "phpunit/phpunit": "^7 || ^8 || ^9",
  598. "squizlabs/php_codesniffer": "^3",
  599. "symfony/var-dumper": "^4 || ^5 || ^6 || ^7",
  600. "symfony/yaml": "^4 || ^5 || ^6 || ^7",
  601. "yoast/phpunit-polyfills": "^1"
  602. },
  603. "suggest": {
  604. "symfony/var-dumper": "For using the var_dump formatter"
  605. },
  606. "type": "library",
  607. "autoload": {
  608. "psr-4": {
  609. "Consolidation\\OutputFormatters\\": "src"
  610. }
  611. },
  612. "notification-url": "https://packagist.org/downloads/",
  613. "license": [
  614. "MIT"
  615. ],
  616. "authors": [
  617. {
  618. "name": "Greg Anderson",
  619. "email": "greg.1.anderson@greenknowe.org"
  620. }
  621. ],
  622. "description": "Format text by applying transformations provided by plug-in formatters.",
  623. "support": {
  624. "issues": "https://github.com/consolidation/output-formatters/issues",
  625. "source": "https://github.com/consolidation/output-formatters/tree/4.5.0"
  626. },
  627. "time": "2024-04-02T15:18:52+00:00"
  628. },
  629. {
  630. "name": "consolidation/robo",
  631. "version": "4.0.6",
  632. "source": {
  633. "type": "git",
  634. "url": "https://github.com/consolidation/robo.git",
  635. "reference": "55a272370940607649e5c46eb173c5c54f7c166d"
  636. },
  637. "dist": {
  638. "type": "zip",
  639. "url": "https://api.github.com/repos/consolidation/robo/zipball/55a272370940607649e5c46eb173c5c54f7c166d",
  640. "reference": "55a272370940607649e5c46eb173c5c54f7c166d",
  641. "shasum": ""
  642. },
  643. "require": {
  644. "consolidation/annotated-command": "^4.8.1",
  645. "consolidation/config": "^2.0.1",
  646. "consolidation/log": "^2.0.2 || ^3",
  647. "consolidation/output-formatters": "^4.1.2",
  648. "consolidation/self-update": "^2.0",
  649. "league/container": "^3.3.1 || ^4.0",
  650. "php": ">=8.0",
  651. "phpowermove/docblock": "^4.0",
  652. "symfony/console": "^6",
  653. "symfony/event-dispatcher": "^6",
  654. "symfony/filesystem": "^6",
  655. "symfony/finder": "^6",
  656. "symfony/process": "^6",
  657. "symfony/yaml": "^6"
  658. },
  659. "conflict": {
  660. "codegyre/robo": "*"
  661. },
  662. "require-dev": {
  663. "natxet/cssmin": "3.0.4",
  664. "patchwork/jsqueeze": "^2",
  665. "pear/archive_tar": "^1.4.4",
  666. "phpunit/phpunit": "^7.5.20 || ^8",
  667. "squizlabs/php_codesniffer": "^3.6",
  668. "yoast/phpunit-polyfills": "^0.2.0"
  669. },
  670. "suggest": {
  671. "natxet/cssmin": "For minifying CSS files in taskMinify",
  672. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  673. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.",
  674. "totten/lurkerlite": "For monitoring filesystem changes in taskWatch"
  675. },
  676. "bin": [
  677. "robo"
  678. ],
  679. "type": "library",
  680. "autoload": {
  681. "psr-4": {
  682. "Robo\\": "src"
  683. }
  684. },
  685. "notification-url": "https://packagist.org/downloads/",
  686. "license": [
  687. "MIT"
  688. ],
  689. "authors": [
  690. {
  691. "name": "Davert",
  692. "email": "davert.php@resend.cc"
  693. }
  694. ],
  695. "description": "Modern task runner",
  696. "support": {
  697. "issues": "https://github.com/consolidation/robo/issues",
  698. "source": "https://github.com/consolidation/robo/tree/4.0.6"
  699. },
  700. "time": "2023-04-30T21:49:04+00:00"
  701. },
  702. {
  703. "name": "consolidation/self-update",
  704. "version": "2.2.0",
  705. "source": {
  706. "type": "git",
  707. "url": "https://github.com/consolidation/self-update.git",
  708. "reference": "972a1016761c9b63314e040836a12795dff6953a"
  709. },
  710. "dist": {
  711. "type": "zip",
  712. "url": "https://api.github.com/repos/consolidation/self-update/zipball/972a1016761c9b63314e040836a12795dff6953a",
  713. "reference": "972a1016761c9b63314e040836a12795dff6953a",
  714. "shasum": ""
  715. },
  716. "require": {
  717. "composer/semver": "^3.2",
  718. "php": ">=5.5.0",
  719. "symfony/console": "^2.8 || ^3 || ^4 || ^5 || ^6",
  720. "symfony/filesystem": "^2.5 || ^3 || ^4 || ^5 || ^6"
  721. },
  722. "bin": [
  723. "scripts/release"
  724. ],
  725. "type": "library",
  726. "extra": {
  727. "branch-alias": {
  728. "dev-main": "2.x-dev"
  729. }
  730. },
  731. "autoload": {
  732. "psr-4": {
  733. "SelfUpdate\\": "src"
  734. }
  735. },
  736. "notification-url": "https://packagist.org/downloads/",
  737. "license": [
  738. "MIT"
  739. ],
  740. "authors": [
  741. {
  742. "name": "Alexander Menk",
  743. "email": "menk@mestrona.net"
  744. },
  745. {
  746. "name": "Greg Anderson",
  747. "email": "greg.1.anderson@greenknowe.org"
  748. }
  749. ],
  750. "description": "Provides a self:update command for Symfony Console applications.",
  751. "support": {
  752. "issues": "https://github.com/consolidation/self-update/issues",
  753. "source": "https://github.com/consolidation/self-update/tree/2.2.0"
  754. },
  755. "time": "2023-03-18T01:37:41+00:00"
  756. },
  757. {
  758. "name": "consolidation/site-alias",
  759. "version": "4.1.0",
  760. "source": {
  761. "type": "git",
  762. "url": "https://github.com/consolidation/site-alias.git",
  763. "reference": "1056ceb93f6aafe6f7600d7bbe1b62b8488abccf"
  764. },
  765. "dist": {
  766. "type": "zip",
  767. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/1056ceb93f6aafe6f7600d7bbe1b62b8488abccf",
  768. "reference": "1056ceb93f6aafe6f7600d7bbe1b62b8488abccf",
  769. "shasum": ""
  770. },
  771. "require": {
  772. "consolidation/config": "^1.2.1 || ^2 || ^3",
  773. "php": ">=7.4",
  774. "symfony/filesystem": "^5.4 || ^6 || ^7",
  775. "symfony/finder": "^5 || ^6 || ^7"
  776. },
  777. "require-dev": {
  778. "php-coveralls/php-coveralls": "^2.4.2",
  779. "phpunit/phpunit": ">=7",
  780. "squizlabs/php_codesniffer": "^3",
  781. "symfony/var-dumper": "^4",
  782. "yoast/phpunit-polyfills": "^0.2.0"
  783. },
  784. "type": "library",
  785. "extra": {
  786. "branch-alias": {
  787. "dev-main": "4.x-dev"
  788. }
  789. },
  790. "autoload": {
  791. "psr-4": {
  792. "Consolidation\\SiteAlias\\": "src"
  793. }
  794. },
  795. "notification-url": "https://packagist.org/downloads/",
  796. "license": [
  797. "MIT"
  798. ],
  799. "authors": [
  800. {
  801. "name": "Greg Anderson",
  802. "email": "greg.1.anderson@greenknowe.org"
  803. },
  804. {
  805. "name": "Moshe Weitzman",
  806. "email": "weitzman@tejasa.com"
  807. }
  808. ],
  809. "description": "Manage alias records for local and remote sites.",
  810. "support": {
  811. "issues": "https://github.com/consolidation/site-alias/issues",
  812. "source": "https://github.com/consolidation/site-alias/tree/4.1.0"
  813. },
  814. "time": "2024-04-05T15:58:04+00:00"
  815. },
  816. {
  817. "name": "consolidation/site-process",
  818. "version": "5.4.0",
  819. "source": {
  820. "type": "git",
  821. "url": "https://github.com/consolidation/site-process.git",
  822. "reference": "7ab3ffe4195a89b8dc334ea22e7881abe79ffd9a"
  823. },
  824. "dist": {
  825. "type": "zip",
  826. "url": "https://api.github.com/repos/consolidation/site-process/zipball/7ab3ffe4195a89b8dc334ea22e7881abe79ffd9a",
  827. "reference": "7ab3ffe4195a89b8dc334ea22e7881abe79ffd9a",
  828. "shasum": ""
  829. },
  830. "require": {
  831. "consolidation/config": "^2 || ^3",
  832. "consolidation/site-alias": "^3 || ^4",
  833. "php": ">=8.0.14",
  834. "symfony/console": "^5.4 || ^6 || ^7",
  835. "symfony/process": "^6 || ^7"
  836. },
  837. "require-dev": {
  838. "phpunit/phpunit": "^9",
  839. "squizlabs/php_codesniffer": "^3"
  840. },
  841. "type": "library",
  842. "extra": {
  843. "branch-alias": {
  844. "dev-main": "5.x-dev"
  845. }
  846. },
  847. "autoload": {
  848. "psr-4": {
  849. "Consolidation\\SiteProcess\\": "src"
  850. }
  851. },
  852. "notification-url": "https://packagist.org/downloads/",
  853. "license": [
  854. "MIT"
  855. ],
  856. "authors": [
  857. {
  858. "name": "Greg Anderson",
  859. "email": "greg.1.anderson@greenknowe.org"
  860. },
  861. {
  862. "name": "Moshe Weitzman",
  863. "email": "weitzman@tejasa.com"
  864. }
  865. ],
  866. "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.",
  867. "support": {
  868. "issues": "https://github.com/consolidation/site-process/issues",
  869. "source": "https://github.com/consolidation/site-process/tree/5.4.0"
  870. },
  871. "time": "2024-04-06T00:00:28+00:00"
  872. },
  873. {
  874. "name": "cweagans/composer-patches",
  875. "version": "1.7.3",
  876. "source": {
  877. "type": "git",
  878. "url": "https://github.com/cweagans/composer-patches.git",
  879. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db"
  880. },
  881. "dist": {
  882. "type": "zip",
  883. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  884. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  885. "shasum": ""
  886. },
  887. "require": {
  888. "composer-plugin-api": "^1.0 || ^2.0",
  889. "php": ">=5.3.0"
  890. },
  891. "require-dev": {
  892. "composer/composer": "~1.0 || ~2.0",
  893. "phpunit/phpunit": "~4.6"
  894. },
  895. "type": "composer-plugin",
  896. "extra": {
  897. "class": "cweagans\\Composer\\Patches"
  898. },
  899. "autoload": {
  900. "psr-4": {
  901. "cweagans\\Composer\\": "src"
  902. }
  903. },
  904. "notification-url": "https://packagist.org/downloads/",
  905. "license": [
  906. "BSD-3-Clause"
  907. ],
  908. "authors": [
  909. {
  910. "name": "Cameron Eagans",
  911. "email": "me@cweagans.net"
  912. }
  913. ],
  914. "description": "Provides a way to patch Composer packages.",
  915. "support": {
  916. "issues": "https://github.com/cweagans/composer-patches/issues",
  917. "source": "https://github.com/cweagans/composer-patches/tree/1.7.3"
  918. },
  919. "time": "2022-12-20T22:53:13+00:00"
  920. },
  921. {
  922. "name": "dekor/php-array-table",
  923. "version": "2.0",
  924. "source": {
  925. "type": "git",
  926. "url": "https://github.com/deniskoronets/php-array-table.git",
  927. "reference": "ca40b21ba84eee6a9658a33fc5f897d76baaf8e5"
  928. },
  929. "dist": {
  930. "type": "zip",
  931. "url": "https://api.github.com/repos/deniskoronets/php-array-table/zipball/ca40b21ba84eee6a9658a33fc5f897d76baaf8e5",
  932. "reference": "ca40b21ba84eee6a9658a33fc5f897d76baaf8e5",
  933. "shasum": ""
  934. },
  935. "require": {
  936. "ext-mbstring": "*",
  937. "php": ">=5.6.0"
  938. },
  939. "require-dev": {
  940. "phpunit/phpunit": "^10"
  941. },
  942. "type": "library",
  943. "autoload": {
  944. "psr-4": {
  945. "dekor\\": "src"
  946. }
  947. },
  948. "notification-url": "https://packagist.org/downloads/",
  949. "license": [
  950. "BSD-3-Clause"
  951. ],
  952. "authors": [
  953. {
  954. "name": "Denis Koronets",
  955. "email": "deniskoronets@woo.zp.ua",
  956. "homepage": "https://woo.zp.ua/"
  957. }
  958. ],
  959. "description": "PHP Library for printing associative arrays as text table (similar to mysql terminal console)",
  960. "keywords": [
  961. "library",
  962. "php"
  963. ],
  964. "support": {
  965. "issues": "https://github.com/deniskoronets/php-array-table/issues",
  966. "source": "https://github.com/deniskoronets/php-array-table/tree/2.0"
  967. },
  968. "time": "2023-02-10T10:13:42+00:00"
  969. },
  970. {
  971. "name": "dflydev/dot-access-data",
  972. "version": "v3.0.3",
  973. "source": {
  974. "type": "git",
  975. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  976. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  977. },
  978. "dist": {
  979. "type": "zip",
  980. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  981. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  982. "shasum": ""
  983. },
  984. "require": {
  985. "php": "^7.1 || ^8.0"
  986. },
  987. "require-dev": {
  988. "phpstan/phpstan": "^0.12.42",
  989. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  990. "scrutinizer/ocular": "1.6.0",
  991. "squizlabs/php_codesniffer": "^3.5",
  992. "vimeo/psalm": "^4.0.0"
  993. },
  994. "type": "library",
  995. "extra": {
  996. "branch-alias": {
  997. "dev-main": "3.x-dev"
  998. }
  999. },
  1000. "autoload": {
  1001. "psr-4": {
  1002. "Dflydev\\DotAccessData\\": "src/"
  1003. }
  1004. },
  1005. "notification-url": "https://packagist.org/downloads/",
  1006. "license": [
  1007. "MIT"
  1008. ],
  1009. "authors": [
  1010. {
  1011. "name": "Dragonfly Development Inc.",
  1012. "email": "info@dflydev.com",
  1013. "homepage": "http://dflydev.com"
  1014. },
  1015. {
  1016. "name": "Beau Simensen",
  1017. "email": "beau@dflydev.com",
  1018. "homepage": "http://beausimensen.com"
  1019. },
  1020. {
  1021. "name": "Carlos Frutos",
  1022. "email": "carlos@kiwing.it",
  1023. "homepage": "https://github.com/cfrutos"
  1024. },
  1025. {
  1026. "name": "Colin O'Dell",
  1027. "email": "colinodell@gmail.com",
  1028. "homepage": "https://www.colinodell.com"
  1029. }
  1030. ],
  1031. "description": "Given a deep data structure, access data by dot notation.",
  1032. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1033. "keywords": [
  1034. "access",
  1035. "data",
  1036. "dot",
  1037. "notation"
  1038. ],
  1039. "support": {
  1040. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1041. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  1042. },
  1043. "time": "2024-07-08T12:26:09+00:00"
  1044. },
  1045. {
  1046. "name": "doctrine/annotations",
  1047. "version": "1.14.4",
  1048. "source": {
  1049. "type": "git",
  1050. "url": "https://github.com/doctrine/annotations.git",
  1051. "reference": "253dca476f70808a5aeed3a47cc2cc88c5cab915"
  1052. },
  1053. "dist": {
  1054. "type": "zip",
  1055. "url": "https://api.github.com/repos/doctrine/annotations/zipball/253dca476f70808a5aeed3a47cc2cc88c5cab915",
  1056. "reference": "253dca476f70808a5aeed3a47cc2cc88c5cab915",
  1057. "shasum": ""
  1058. },
  1059. "require": {
  1060. "doctrine/lexer": "^1 || ^2",
  1061. "ext-tokenizer": "*",
  1062. "php": "^7.1 || ^8.0",
  1063. "psr/cache": "^1 || ^2 || ^3"
  1064. },
  1065. "require-dev": {
  1066. "doctrine/cache": "^1.11 || ^2.0",
  1067. "doctrine/coding-standard": "^9 || ^12",
  1068. "phpstan/phpstan": "~1.4.10 || ^1.10.28",
  1069. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1070. "symfony/cache": "^4.4 || ^5.4 || ^6.4 || ^7",
  1071. "vimeo/psalm": "^4.30 || ^5.14"
  1072. },
  1073. "suggest": {
  1074. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  1075. },
  1076. "type": "library",
  1077. "autoload": {
  1078. "psr-4": {
  1079. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1080. }
  1081. },
  1082. "notification-url": "https://packagist.org/downloads/",
  1083. "license": [
  1084. "MIT"
  1085. ],
  1086. "authors": [
  1087. {
  1088. "name": "Guilherme Blanco",
  1089. "email": "guilhermeblanco@gmail.com"
  1090. },
  1091. {
  1092. "name": "Roman Borschel",
  1093. "email": "roman@code-factory.org"
  1094. },
  1095. {
  1096. "name": "Benjamin Eberlei",
  1097. "email": "kontakt@beberlei.de"
  1098. },
  1099. {
  1100. "name": "Jonathan Wage",
  1101. "email": "jonwage@gmail.com"
  1102. },
  1103. {
  1104. "name": "Johannes Schmitt",
  1105. "email": "schmittjoh@gmail.com"
  1106. }
  1107. ],
  1108. "description": "Docblock Annotations Parser",
  1109. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1110. "keywords": [
  1111. "annotations",
  1112. "docblock",
  1113. "parser"
  1114. ],
  1115. "support": {
  1116. "issues": "https://github.com/doctrine/annotations/issues",
  1117. "source": "https://github.com/doctrine/annotations/tree/1.14.4"
  1118. },
  1119. "time": "2024-09-05T10:15:52+00:00"
  1120. },
  1121. {
  1122. "name": "doctrine/common",
  1123. "version": "3.4.5",
  1124. "source": {
  1125. "type": "git",
  1126. "url": "https://github.com/doctrine/common.git",
  1127. "reference": "6c8fef961f67b8bc802ce3e32e3ebd1022907286"
  1128. },
  1129. "dist": {
  1130. "type": "zip",
  1131. "url": "https://api.github.com/repos/doctrine/common/zipball/6c8fef961f67b8bc802ce3e32e3ebd1022907286",
  1132. "reference": "6c8fef961f67b8bc802ce3e32e3ebd1022907286",
  1133. "shasum": ""
  1134. },
  1135. "require": {
  1136. "doctrine/persistence": "^2.0 || ^3.0",
  1137. "php": "^7.1 || ^8.0"
  1138. },
  1139. "require-dev": {
  1140. "doctrine/coding-standard": "^9.0 || ^10.0",
  1141. "doctrine/collections": "^1",
  1142. "phpstan/phpstan": "^1.4.1",
  1143. "phpstan/phpstan-phpunit": "^1",
  1144. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  1145. "squizlabs/php_codesniffer": "^3.0",
  1146. "symfony/phpunit-bridge": "^6.1",
  1147. "vimeo/psalm": "^4.4"
  1148. },
  1149. "type": "library",
  1150. "autoload": {
  1151. "psr-4": {
  1152. "Doctrine\\Common\\": "src"
  1153. }
  1154. },
  1155. "notification-url": "https://packagist.org/downloads/",
  1156. "license": [
  1157. "MIT"
  1158. ],
  1159. "authors": [
  1160. {
  1161. "name": "Guilherme Blanco",
  1162. "email": "guilhermeblanco@gmail.com"
  1163. },
  1164. {
  1165. "name": "Roman Borschel",
  1166. "email": "roman@code-factory.org"
  1167. },
  1168. {
  1169. "name": "Benjamin Eberlei",
  1170. "email": "kontakt@beberlei.de"
  1171. },
  1172. {
  1173. "name": "Jonathan Wage",
  1174. "email": "jonwage@gmail.com"
  1175. },
  1176. {
  1177. "name": "Johannes Schmitt",
  1178. "email": "schmittjoh@gmail.com"
  1179. },
  1180. {
  1181. "name": "Marco Pivetta",
  1182. "email": "ocramius@gmail.com"
  1183. }
  1184. ],
  1185. "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.",
  1186. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1187. "keywords": [
  1188. "common",
  1189. "doctrine",
  1190. "php"
  1191. ],
  1192. "support": {
  1193. "issues": "https://github.com/doctrine/common/issues",
  1194. "source": "https://github.com/doctrine/common/tree/3.4.5"
  1195. },
  1196. "funding": [
  1197. {
  1198. "url": "https://www.doctrine-project.org/sponsorship.html",
  1199. "type": "custom"
  1200. },
  1201. {
  1202. "url": "https://www.patreon.com/phpdoctrine",
  1203. "type": "patreon"
  1204. },
  1205. {
  1206. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1207. "type": "tidelift"
  1208. }
  1209. ],
  1210. "time": "2024-10-08T15:53:43+00:00"
  1211. },
  1212. {
  1213. "name": "doctrine/deprecations",
  1214. "version": "1.1.3",
  1215. "source": {
  1216. "type": "git",
  1217. "url": "https://github.com/doctrine/deprecations.git",
  1218. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  1219. },
  1220. "dist": {
  1221. "type": "zip",
  1222. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  1223. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  1224. "shasum": ""
  1225. },
  1226. "require": {
  1227. "php": "^7.1 || ^8.0"
  1228. },
  1229. "require-dev": {
  1230. "doctrine/coding-standard": "^9",
  1231. "phpstan/phpstan": "1.4.10 || 1.10.15",
  1232. "phpstan/phpstan-phpunit": "^1.0",
  1233. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1234. "psalm/plugin-phpunit": "0.18.4",
  1235. "psr/log": "^1 || ^2 || ^3",
  1236. "vimeo/psalm": "4.30.0 || 5.12.0"
  1237. },
  1238. "suggest": {
  1239. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1240. },
  1241. "type": "library",
  1242. "autoload": {
  1243. "psr-4": {
  1244. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1245. }
  1246. },
  1247. "notification-url": "https://packagist.org/downloads/",
  1248. "license": [
  1249. "MIT"
  1250. ],
  1251. "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.",
  1252. "homepage": "https://www.doctrine-project.org/",
  1253. "support": {
  1254. "issues": "https://github.com/doctrine/deprecations/issues",
  1255. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  1256. },
  1257. "time": "2024-01-30T19:34:25+00:00"
  1258. },
  1259. {
  1260. "name": "doctrine/event-manager",
  1261. "version": "2.0.1",
  1262. "source": {
  1263. "type": "git",
  1264. "url": "https://github.com/doctrine/event-manager.git",
  1265. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  1266. },
  1267. "dist": {
  1268. "type": "zip",
  1269. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  1270. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  1271. "shasum": ""
  1272. },
  1273. "require": {
  1274. "php": "^8.1"
  1275. },
  1276. "conflict": {
  1277. "doctrine/common": "<2.9"
  1278. },
  1279. "require-dev": {
  1280. "doctrine/coding-standard": "^12",
  1281. "phpstan/phpstan": "^1.8.8",
  1282. "phpunit/phpunit": "^10.5",
  1283. "vimeo/psalm": "^5.24"
  1284. },
  1285. "type": "library",
  1286. "autoload": {
  1287. "psr-4": {
  1288. "Doctrine\\Common\\": "src"
  1289. }
  1290. },
  1291. "notification-url": "https://packagist.org/downloads/",
  1292. "license": [
  1293. "MIT"
  1294. ],
  1295. "authors": [
  1296. {
  1297. "name": "Guilherme Blanco",
  1298. "email": "guilhermeblanco@gmail.com"
  1299. },
  1300. {
  1301. "name": "Roman Borschel",
  1302. "email": "roman@code-factory.org"
  1303. },
  1304. {
  1305. "name": "Benjamin Eberlei",
  1306. "email": "kontakt@beberlei.de"
  1307. },
  1308. {
  1309. "name": "Jonathan Wage",
  1310. "email": "jonwage@gmail.com"
  1311. },
  1312. {
  1313. "name": "Johannes Schmitt",
  1314. "email": "schmittjoh@gmail.com"
  1315. },
  1316. {
  1317. "name": "Marco Pivetta",
  1318. "email": "ocramius@gmail.com"
  1319. }
  1320. ],
  1321. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1322. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1323. "keywords": [
  1324. "event",
  1325. "event dispatcher",
  1326. "event manager",
  1327. "event system",
  1328. "events"
  1329. ],
  1330. "support": {
  1331. "issues": "https://github.com/doctrine/event-manager/issues",
  1332. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  1333. },
  1334. "funding": [
  1335. {
  1336. "url": "https://www.doctrine-project.org/sponsorship.html",
  1337. "type": "custom"
  1338. },
  1339. {
  1340. "url": "https://www.patreon.com/phpdoctrine",
  1341. "type": "patreon"
  1342. },
  1343. {
  1344. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1345. "type": "tidelift"
  1346. }
  1347. ],
  1348. "time": "2024-05-22T20:47:39+00:00"
  1349. },
  1350. {
  1351. "name": "doctrine/lexer",
  1352. "version": "2.1.1",
  1353. "source": {
  1354. "type": "git",
  1355. "url": "https://github.com/doctrine/lexer.git",
  1356. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  1357. },
  1358. "dist": {
  1359. "type": "zip",
  1360. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1361. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1362. "shasum": ""
  1363. },
  1364. "require": {
  1365. "doctrine/deprecations": "^1.0",
  1366. "php": "^7.1 || ^8.0"
  1367. },
  1368. "require-dev": {
  1369. "doctrine/coding-standard": "^9 || ^12",
  1370. "phpstan/phpstan": "^1.3",
  1371. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  1372. "psalm/plugin-phpunit": "^0.18.3",
  1373. "vimeo/psalm": "^4.11 || ^5.21"
  1374. },
  1375. "type": "library",
  1376. "autoload": {
  1377. "psr-4": {
  1378. "Doctrine\\Common\\Lexer\\": "src"
  1379. }
  1380. },
  1381. "notification-url": "https://packagist.org/downloads/",
  1382. "license": [
  1383. "MIT"
  1384. ],
  1385. "authors": [
  1386. {
  1387. "name": "Guilherme Blanco",
  1388. "email": "guilhermeblanco@gmail.com"
  1389. },
  1390. {
  1391. "name": "Roman Borschel",
  1392. "email": "roman@code-factory.org"
  1393. },
  1394. {
  1395. "name": "Johannes Schmitt",
  1396. "email": "schmittjoh@gmail.com"
  1397. }
  1398. ],
  1399. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1400. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1401. "keywords": [
  1402. "annotations",
  1403. "docblock",
  1404. "lexer",
  1405. "parser",
  1406. "php"
  1407. ],
  1408. "support": {
  1409. "issues": "https://github.com/doctrine/lexer/issues",
  1410. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  1411. },
  1412. "funding": [
  1413. {
  1414. "url": "https://www.doctrine-project.org/sponsorship.html",
  1415. "type": "custom"
  1416. },
  1417. {
  1418. "url": "https://www.patreon.com/phpdoctrine",
  1419. "type": "patreon"
  1420. },
  1421. {
  1422. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1423. "type": "tidelift"
  1424. }
  1425. ],
  1426. "time": "2024-02-05T11:35:39+00:00"
  1427. },
  1428. {
  1429. "name": "doctrine/persistence",
  1430. "version": "3.3.3",
  1431. "source": {
  1432. "type": "git",
  1433. "url": "https://github.com/doctrine/persistence.git",
  1434. "reference": "b337726451f5d530df338fc7f68dee8781b49779"
  1435. },
  1436. "dist": {
  1437. "type": "zip",
  1438. "url": "https://api.github.com/repos/doctrine/persistence/zipball/b337726451f5d530df338fc7f68dee8781b49779",
  1439. "reference": "b337726451f5d530df338fc7f68dee8781b49779",
  1440. "shasum": ""
  1441. },
  1442. "require": {
  1443. "doctrine/event-manager": "^1 || ^2",
  1444. "php": "^7.2 || ^8.0",
  1445. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1446. },
  1447. "conflict": {
  1448. "doctrine/common": "<2.10"
  1449. },
  1450. "require-dev": {
  1451. "doctrine/coding-standard": "^12",
  1452. "doctrine/common": "^3.0",
  1453. "phpstan/phpstan": "1.11.1",
  1454. "phpstan/phpstan-phpunit": "^1",
  1455. "phpstan/phpstan-strict-rules": "^1.1",
  1456. "phpunit/phpunit": "^8.5 || ^9.5",
  1457. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1458. "vimeo/psalm": "4.30.0 || 5.24.0"
  1459. },
  1460. "type": "library",
  1461. "autoload": {
  1462. "psr-4": {
  1463. "Doctrine\\Persistence\\": "src/Persistence"
  1464. }
  1465. },
  1466. "notification-url": "https://packagist.org/downloads/",
  1467. "license": [
  1468. "MIT"
  1469. ],
  1470. "authors": [
  1471. {
  1472. "name": "Guilherme Blanco",
  1473. "email": "guilhermeblanco@gmail.com"
  1474. },
  1475. {
  1476. "name": "Roman Borschel",
  1477. "email": "roman@code-factory.org"
  1478. },
  1479. {
  1480. "name": "Benjamin Eberlei",
  1481. "email": "kontakt@beberlei.de"
  1482. },
  1483. {
  1484. "name": "Jonathan Wage",
  1485. "email": "jonwage@gmail.com"
  1486. },
  1487. {
  1488. "name": "Johannes Schmitt",
  1489. "email": "schmittjoh@gmail.com"
  1490. },
  1491. {
  1492. "name": "Marco Pivetta",
  1493. "email": "ocramius@gmail.com"
  1494. }
  1495. ],
  1496. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1497. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1498. "keywords": [
  1499. "mapper",
  1500. "object",
  1501. "odm",
  1502. "orm",
  1503. "persistence"
  1504. ],
  1505. "support": {
  1506. "issues": "https://github.com/doctrine/persistence/issues",
  1507. "source": "https://github.com/doctrine/persistence/tree/3.3.3"
  1508. },
  1509. "funding": [
  1510. {
  1511. "url": "https://www.doctrine-project.org/sponsorship.html",
  1512. "type": "custom"
  1513. },
  1514. {
  1515. "url": "https://www.patreon.com/phpdoctrine",
  1516. "type": "patreon"
  1517. },
  1518. {
  1519. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1520. "type": "tidelift"
  1521. }
  1522. ],
  1523. "time": "2024-06-20T10:14:30+00:00"
  1524. },
  1525. {
  1526. "name": "drupal/addtoany",
  1527. "version": "2.0.5",
  1528. "source": {
  1529. "type": "git",
  1530. "url": "https://git.drupalcode.org/project/addtoany.git",
  1531. "reference": "2.0.5"
  1532. },
  1533. "dist": {
  1534. "type": "zip",
  1535. "url": "https://ftp.drupal.org/files/projects/addtoany-2.0.5.zip",
  1536. "reference": "2.0.5",
  1537. "shasum": "b3b26968548c1605a641b12ff25d03edc8497df6"
  1538. },
  1539. "require": {
  1540. "drupal/core": "^9.4 || ^10.0"
  1541. },
  1542. "type": "drupal-module",
  1543. "extra": {
  1544. "drupal": {
  1545. "version": "2.0.5",
  1546. "datestamp": "1698825601",
  1547. "security-coverage": {
  1548. "status": "covered",
  1549. "message": "Covered by Drupal's security advisory policy"
  1550. }
  1551. }
  1552. },
  1553. "notification-url": "https://packages.drupal.org/8/downloads",
  1554. "license": [
  1555. "GPL-2.0-or-later"
  1556. ],
  1557. "authors": [
  1558. {
  1559. "name": "AddToAny",
  1560. "homepage": "https://www.drupal.org/user/2640913"
  1561. },
  1562. {
  1563. "name": "micropat",
  1564. "homepage": "https://www.drupal.org/user/260224"
  1565. }
  1566. ],
  1567. "description": "Share buttons for Drupal including the AddToAny universal share button, Facebook, Mastodon, Pinterest, WhatsApp and many more.",
  1568. "homepage": "https://www.drupal.org/project/addtoany",
  1569. "keywords": [
  1570. "Drupal"
  1571. ],
  1572. "support": {
  1573. "source": "https://git.drupalcode.org/project/addtoany",
  1574. "issues": "https://www.drupal.org/project/issues/addtoany"
  1575. }
  1576. },
  1577. {
  1578. "name": "drupal/admin_toolbar",
  1579. "version": "3.5.0",
  1580. "source": {
  1581. "type": "git",
  1582. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1583. "reference": "3.5.0"
  1584. },
  1585. "dist": {
  1586. "type": "zip",
  1587. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.5.0.zip",
  1588. "reference": "3.5.0",
  1589. "shasum": "099e8d4dc98e1d551b4f9cffdc39599eb8ad04e8"
  1590. },
  1591. "require": {
  1592. "drupal/core": "^9.5 || ^10 || ^11"
  1593. },
  1594. "require-dev": {
  1595. "drupal/admin_toolbar_tools": "*"
  1596. },
  1597. "type": "drupal-module",
  1598. "extra": {
  1599. "drupal": {
  1600. "version": "3.5.0",
  1601. "datestamp": "1722639094",
  1602. "security-coverage": {
  1603. "status": "covered",
  1604. "message": "Covered by Drupal's security advisory policy"
  1605. }
  1606. }
  1607. },
  1608. "notification-url": "https://packages.drupal.org/8/downloads",
  1609. "license": [
  1610. "GPL-2.0-or-later"
  1611. ],
  1612. "authors": [
  1613. {
  1614. "name": "Wilfrid Roze (eme)",
  1615. "homepage": "https://www.drupal.org/u/eme",
  1616. "role": "Maintainer"
  1617. },
  1618. {
  1619. "name": "Romain Jarraud (romainj)",
  1620. "homepage": "https://www.drupal.org/u/romainj",
  1621. "role": "Maintainer"
  1622. },
  1623. {
  1624. "name": "Adrian Cid Almaguer (adriancid)",
  1625. "homepage": "https://www.drupal.org/u/adriancid",
  1626. "email": "adriancid@gmail.com",
  1627. "role": "Maintainer"
  1628. },
  1629. {
  1630. "name": "Mohamed Anis Taktak (matio89)",
  1631. "homepage": "https://www.drupal.org/u/matio89",
  1632. "role": "Maintainer"
  1633. },
  1634. {
  1635. "name": "japerry",
  1636. "homepage": "https://www.drupal.org/user/45640"
  1637. },
  1638. {
  1639. "name": "matio89",
  1640. "homepage": "https://www.drupal.org/user/2320090"
  1641. },
  1642. {
  1643. "name": "musa.thomas",
  1644. "homepage": "https://www.drupal.org/user/1213824"
  1645. },
  1646. {
  1647. "name": "romainj",
  1648. "homepage": "https://www.drupal.org/user/370706"
  1649. }
  1650. ],
  1651. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1652. "homepage": "http://drupal.org/project/admin_toolbar",
  1653. "keywords": [
  1654. "Drupal",
  1655. "Toolbar"
  1656. ],
  1657. "support": {
  1658. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1659. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1660. }
  1661. },
  1662. {
  1663. "name": "drupal/adminimal_theme",
  1664. "version": "1.7.0",
  1665. "source": {
  1666. "type": "git",
  1667. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1668. "reference": "8.x-1.7"
  1669. },
  1670. "dist": {
  1671. "type": "zip",
  1672. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.7.zip",
  1673. "reference": "8.x-1.7",
  1674. "shasum": "0fe020fecab6a1f6d877f2e622fb9f916ada52bb"
  1675. },
  1676. "require": {
  1677. "drupal/core": "^9.3 || ^10",
  1678. "drupal/seven": "~1.0"
  1679. },
  1680. "type": "drupal-theme",
  1681. "extra": {
  1682. "drupal": {
  1683. "version": "8.x-1.7",
  1684. "datestamp": "1691504486",
  1685. "security-coverage": {
  1686. "status": "covered",
  1687. "message": "Covered by Drupal's security advisory policy"
  1688. }
  1689. }
  1690. },
  1691. "notification-url": "https://packages.drupal.org/8/downloads",
  1692. "license": [
  1693. "GPL-2.0+"
  1694. ],
  1695. "authors": [
  1696. {
  1697. "name": "ANDiTKO",
  1698. "homepage": "https://www.drupal.org/user/1428124"
  1699. },
  1700. {
  1701. "name": "andrey.troeglazov",
  1702. "homepage": "https://www.drupal.org/user/3145389"
  1703. },
  1704. {
  1705. "name": "realityloop",
  1706. "homepage": "https://www.drupal.org/user/139189"
  1707. },
  1708. {
  1709. "name": "rjjakes",
  1710. "homepage": "https://www.drupal.org/user/3457245"
  1711. }
  1712. ],
  1713. "description": "Drupal administration theme with modern minimalist design.",
  1714. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1715. "support": {
  1716. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1717. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1718. }
  1719. },
  1720. {
  1721. "name": "drupal/audiofield",
  1722. "version": "1.13.0",
  1723. "source": {
  1724. "type": "git",
  1725. "url": "https://git.drupalcode.org/project/audiofield.git",
  1726. "reference": "8.x-1.13"
  1727. },
  1728. "dist": {
  1729. "type": "zip",
  1730. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  1731. "reference": "8.x-1.13",
  1732. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  1733. },
  1734. "require": {
  1735. "drupal/core": "^8 || ^9 || ^10"
  1736. },
  1737. "type": "drupal-module",
  1738. "extra": {
  1739. "drupal": {
  1740. "version": "8.x-1.13",
  1741. "datestamp": "1681143245",
  1742. "security-coverage": {
  1743. "status": "covered",
  1744. "message": "Covered by Drupal's security advisory policy"
  1745. }
  1746. },
  1747. "drush": {
  1748. "services": {
  1749. "drush.services.yml": "^9"
  1750. }
  1751. }
  1752. },
  1753. "notification-url": "https://packages.drupal.org/8/downloads",
  1754. "license": [
  1755. "GPL-2.0-or-later"
  1756. ],
  1757. "authors": [
  1758. {
  1759. "name": "Daniel Moberly",
  1760. "homepage": "https://www.drupal.org/u/danielmoberly",
  1761. "role": "Maintainer"
  1762. },
  1763. {
  1764. "name": "tamerzg",
  1765. "homepage": "https://www.drupal.org/user/464564"
  1766. }
  1767. ],
  1768. "description": "AudioField Module",
  1769. "homepage": "https://www.drupal.org/project/audiofield",
  1770. "support": {
  1771. "source": "https://git.drupalcode.org/project/audiofield",
  1772. "issues": "https://www.drupal.org/project/issues/audiofield"
  1773. }
  1774. },
  1775. {
  1776. "name": "drupal/autologout",
  1777. "version": "2.0.0",
  1778. "source": {
  1779. "type": "git",
  1780. "url": "https://git.drupalcode.org/project/autologout.git",
  1781. "reference": "2.0.0"
  1782. },
  1783. "dist": {
  1784. "type": "zip",
  1785. "url": "https://ftp.drupal.org/files/projects/autologout-2.0.0.zip",
  1786. "reference": "2.0.0",
  1787. "shasum": "e9a1d4846cc323eef2eb54a0276023b1f0ff8bd2"
  1788. },
  1789. "require": {
  1790. "drupal/core": "^9.2 || ^10 || ^11",
  1791. "drupal/js_cookie": "^1.0"
  1792. },
  1793. "type": "drupal-module",
  1794. "extra": {
  1795. "drupal": {
  1796. "version": "2.0.0",
  1797. "datestamp": "1716413762",
  1798. "security-coverage": {
  1799. "status": "covered",
  1800. "message": "Covered by Drupal's security advisory policy"
  1801. }
  1802. }
  1803. },
  1804. "notification-url": "https://packages.drupal.org/8/downloads",
  1805. "license": [
  1806. "GPL-2.0-or-later"
  1807. ],
  1808. "authors": [
  1809. {
  1810. "name": "ajits",
  1811. "homepage": "https://www.drupal.org/user/981944"
  1812. },
  1813. {
  1814. "name": "AjK",
  1815. "homepage": "https://www.drupal.org/user/39030"
  1816. },
  1817. {
  1818. "name": "boshtian",
  1819. "homepage": "https://www.drupal.org/user/1773456"
  1820. },
  1821. {
  1822. "name": "dandrews",
  1823. "homepage": "https://www.drupal.org/user/2014490"
  1824. },
  1825. {
  1826. "name": "darksnow",
  1827. "homepage": "https://www.drupal.org/user/391915"
  1828. },
  1829. {
  1830. "name": "japerry",
  1831. "homepage": "https://www.drupal.org/user/45640"
  1832. },
  1833. {
  1834. "name": "johnennew",
  1835. "homepage": "https://www.drupal.org/user/1150042"
  1836. },
  1837. {
  1838. "name": "jrglasgow",
  1839. "homepage": "https://www.drupal.org/user/36590"
  1840. },
  1841. {
  1842. "name": "kmasood",
  1843. "homepage": "https://www.drupal.org/user/1262860"
  1844. },
  1845. {
  1846. "name": "levelos",
  1847. "homepage": "https://www.drupal.org/user/54135"
  1848. },
  1849. {
  1850. "name": "prabeen.giri",
  1851. "homepage": "https://www.drupal.org/user/913078"
  1852. },
  1853. {
  1854. "name": "scott_earnest",
  1855. "homepage": "https://www.drupal.org/user/416158"
  1856. },
  1857. {
  1858. "name": "str8",
  1859. "homepage": "https://www.drupal.org/user/2865063"
  1860. }
  1861. ],
  1862. "description": "Adds automated timed logout.",
  1863. "homepage": "http://drupal.org/project/autologout",
  1864. "support": {
  1865. "source": "https://git.drupalcode.org/project/autologout",
  1866. "issues": "https://www.drupal.org/project/issues/autologout"
  1867. }
  1868. },
  1869. {
  1870. "name": "drupal/basic",
  1871. "version": "3.0.0-alpha2",
  1872. "source": {
  1873. "type": "git",
  1874. "url": "https://git.drupalcode.org/project/basic.git",
  1875. "reference": "3.0.0-alpha2"
  1876. },
  1877. "dist": {
  1878. "type": "zip",
  1879. "url": "https://ftp.drupal.org/files/projects/basic-3.0.0-alpha2.zip",
  1880. "reference": "3.0.0-alpha2",
  1881. "shasum": "830bca3d506e15847440b3696dcba8859bf74aab"
  1882. },
  1883. "require": {
  1884. "drupal/core": "^9.3 || ^10"
  1885. },
  1886. "type": "drupal-theme",
  1887. "extra": {
  1888. "drupal": {
  1889. "version": "3.0.0-alpha2",
  1890. "datestamp": "1674980765",
  1891. "security-coverage": {
  1892. "status": "not-covered",
  1893. "message": "Alpha releases are not covered by Drupal security advisories."
  1894. }
  1895. }
  1896. },
  1897. "notification-url": "https://packages.drupal.org/8/downloads",
  1898. "license": [
  1899. "GPL-2.0+"
  1900. ],
  1901. "authors": [
  1902. {
  1903. "name": "Steve Krueger",
  1904. "homepage": "http://thejibe.com",
  1905. "email": "steve@thejibe.com",
  1906. "role": "Maintainer"
  1907. },
  1908. {
  1909. "name": "Joël Pittet",
  1910. "homepage": "https://www.drupal.org/u/joelpittet",
  1911. "email": "joel@pittet.ca",
  1912. "role": "Maintainer"
  1913. },
  1914. {
  1915. "name": "Leah Wagner",
  1916. "homepage": "http://thejibe.com",
  1917. "email": "leah@thejibe.com",
  1918. "role": "Maintainer"
  1919. },
  1920. {
  1921. "name": "Catherine Winters",
  1922. "homepage": "http://www.catherinewinters.com",
  1923. "email": "catherine@catherinewinters.com",
  1924. "role": "Maintainer"
  1925. },
  1926. {
  1927. "name": "Johannes Schmidt",
  1928. "homepage": "http://2tabs.com",
  1929. "email": "mail@2tabs.com",
  1930. "role": "Maintainer"
  1931. },
  1932. {
  1933. "name": "Chuck Kosman",
  1934. "homepage": "http://thejibe.com",
  1935. "email": "chuck@thejibe.com",
  1936. "role": "Maintainer"
  1937. },
  1938. {
  1939. "name": "SteveK",
  1940. "homepage": "https://www.drupal.org/user/111656"
  1941. }
  1942. ],
  1943. "description": "HTML5, SASS, Responsive grid starter theme.",
  1944. "homepage": "http://drupal.org/project/basic",
  1945. "support": {
  1946. "source": "http://cgit.drupalcode.org/basic",
  1947. "issues": "https://www.drupal.org/project/issues/basic",
  1948. "irc": "irc://irc.freenode.org/drupal-contribute"
  1949. }
  1950. },
  1951. {
  1952. "name": "drupal/bulkdelete",
  1953. "version": "dev-1.x",
  1954. "source": {
  1955. "type": "git",
  1956. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  1957. "reference": "95a7ff49f152021be88ba562c247347ff36392c7"
  1958. },
  1959. "require": {
  1960. "drupal/core": "^8.7.7 || ^9 || ^10"
  1961. },
  1962. "type": "drupal-module",
  1963. "extra": {
  1964. "branch-alias": {
  1965. "dev-1.x": "1.x-dev"
  1966. },
  1967. "drupal": {
  1968. "version": "8.x-1.x-dev",
  1969. "datestamp": "1655322426",
  1970. "security-coverage": {
  1971. "status": "not-covered",
  1972. "message": "Dev releases are not covered by Drupal security advisories."
  1973. }
  1974. }
  1975. },
  1976. "notification-url": "https://packages.drupal.org/8/downloads",
  1977. "license": [
  1978. "GPL-2.0-or-later"
  1979. ],
  1980. "authors": [
  1981. {
  1982. "name": "Kars-T",
  1983. "homepage": "https://www.drupal.org/user/224499"
  1984. },
  1985. {
  1986. "name": "Rahul Seth",
  1987. "homepage": "https://www.drupal.org/user/2694359"
  1988. },
  1989. {
  1990. "name": "adriancid",
  1991. "homepage": "https://www.drupal.org/user/1962106"
  1992. },
  1993. {
  1994. "name": "robertDouglass",
  1995. "homepage": "https://www.drupal.org/user/5449"
  1996. }
  1997. ],
  1998. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  1999. "homepage": "https://www.drupal.org/project/bulkdelete",
  2000. "support": {
  2001. "source": "https://git.drupalcode.org/project/bulkdelete"
  2002. }
  2003. },
  2004. {
  2005. "name": "drupal/classy",
  2006. "version": "1.0.2",
  2007. "source": {
  2008. "type": "git",
  2009. "url": "https://git.drupalcode.org/project/classy.git",
  2010. "reference": "1.0.2"
  2011. },
  2012. "dist": {
  2013. "type": "zip",
  2014. "url": "https://ftp.drupal.org/files/projects/classy-1.0.2.zip",
  2015. "reference": "1.0.2",
  2016. "shasum": "c2f4fbfd9ae7d4e0cbd952d96247d00a0759da06"
  2017. },
  2018. "require": {
  2019. "drupal/core": "^9 || ^10",
  2020. "drupal/stable": "^2.0.0"
  2021. },
  2022. "type": "drupal-theme",
  2023. "extra": {
  2024. "drupal": {
  2025. "version": "1.0.2",
  2026. "datestamp": "1663949784",
  2027. "security-coverage": {
  2028. "status": "covered",
  2029. "message": "Covered by Drupal's security advisory policy"
  2030. }
  2031. }
  2032. },
  2033. "notification-url": "https://packages.drupal.org/8/downloads",
  2034. "license": [
  2035. "GPL-2.0-or-later"
  2036. ],
  2037. "authors": [
  2038. {
  2039. "name": "bnjmnm",
  2040. "homepage": "https://www.drupal.org/user/2369194"
  2041. },
  2042. {
  2043. "name": "davidhernandez",
  2044. "homepage": "https://www.drupal.org/user/274559"
  2045. },
  2046. {
  2047. "name": "lauriii",
  2048. "homepage": "https://www.drupal.org/user/1078742"
  2049. }
  2050. ],
  2051. "description": "The Classy base theme from Drupal 8/9 moved to contrib",
  2052. "homepage": "https://drupal.org/project/classy",
  2053. "support": {
  2054. "source": "https://git.drupalcode.org/project/classy",
  2055. "issues": "https://drupal.org/project/issues/classy"
  2056. }
  2057. },
  2058. {
  2059. "name": "drupal/color_field",
  2060. "version": "3.0.1",
  2061. "source": {
  2062. "type": "git",
  2063. "url": "https://git.drupalcode.org/project/color_field.git",
  2064. "reference": "3.0.1"
  2065. },
  2066. "dist": {
  2067. "type": "zip",
  2068. "url": "https://ftp.drupal.org/files/projects/color_field-3.0.1.zip",
  2069. "reference": "3.0.1",
  2070. "shasum": "fd2f75db74063f817d81a537221fa1c8398e4d8f"
  2071. },
  2072. "require": {
  2073. "drupal/core": "^9 || ^10 || ^11"
  2074. },
  2075. "require-dev": {
  2076. "drupal/core-recommended": "^9 || ^10",
  2077. "drupal/feeds": "^3.0@beta",
  2078. "drupal/token": "~1.3"
  2079. },
  2080. "suggest": {
  2081. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  2082. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  2083. },
  2084. "type": "drupal-module",
  2085. "extra": {
  2086. "drupal": {
  2087. "version": "3.0.1",
  2088. "datestamp": "1717506868",
  2089. "security-coverage": {
  2090. "status": "covered",
  2091. "message": "Covered by Drupal's security advisory policy"
  2092. }
  2093. }
  2094. },
  2095. "notification-url": "https://packages.drupal.org/8/downloads",
  2096. "license": [
  2097. "GPL-2.0-or-later"
  2098. ],
  2099. "authors": [
  2100. {
  2101. "name": "targoo",
  2102. "homepage": "https://www.drupal.org/user/431910",
  2103. "role": "Maintainer"
  2104. },
  2105. {
  2106. "name": "Nick Wilde",
  2107. "homepage": "https://www.drupal.org/user/nickwilde",
  2108. "role": "Maintainer"
  2109. },
  2110. {
  2111. "name": "targoo",
  2112. "homepage": "https://www.drupal.org/user/431910"
  2113. }
  2114. ],
  2115. "description": "Provides a color field type to store the color value and opacity",
  2116. "homepage": "https://www.drupal.org/project/color_field",
  2117. "support": {
  2118. "source": "https://git.drupalcode.org/project/color_field",
  2119. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2120. }
  2121. },
  2122. {
  2123. "name": "drupal/composer_deploy",
  2124. "version": "1.8.0",
  2125. "source": {
  2126. "type": "git",
  2127. "url": "https://git.drupalcode.org/project/composer_deploy.git",
  2128. "reference": "8.x-1.8"
  2129. },
  2130. "dist": {
  2131. "type": "zip",
  2132. "url": "https://ftp.drupal.org/files/projects/composer_deploy-8.x-1.8.zip",
  2133. "reference": "8.x-1.8",
  2134. "shasum": "10889488b0ecbdeed41f6d0c847030eddf0b56b3"
  2135. },
  2136. "require": {
  2137. "drupal/core": "^9 || ^10 || ^11",
  2138. "php": ">=8.1",
  2139. "webflo/drupal-finder": "^1.3",
  2140. "webmozart/path-util": "^2.1.0"
  2141. },
  2142. "type": "drupal-module",
  2143. "extra": {
  2144. "drupal": {
  2145. "version": "8.x-1.8",
  2146. "datestamp": "1728568570",
  2147. "security-coverage": {
  2148. "status": "covered",
  2149. "message": "Covered by Drupal's security advisory policy"
  2150. }
  2151. }
  2152. },
  2153. "notification-url": "https://packages.drupal.org/8/downloads",
  2154. "license": [
  2155. "GPL-2.0+"
  2156. ],
  2157. "authors": [
  2158. {
  2159. "name": "jhedstrom",
  2160. "homepage": "https://www.drupal.org/user/208732"
  2161. },
  2162. {
  2163. "name": "joelpittet",
  2164. "homepage": "https://www.drupal.org/user/160302"
  2165. },
  2166. {
  2167. "name": "nerdstein",
  2168. "homepage": "https://www.drupal.org/user/1557710"
  2169. },
  2170. {
  2171. "name": "webflo",
  2172. "homepage": "https://www.drupal.org/user/254778"
  2173. }
  2174. ],
  2175. "description": "Provide version number from composers lockfile.",
  2176. "homepage": "https://www.drupal.org/project/composer_deploy",
  2177. "support": {
  2178. "source": "https://git.drupalcode.org/project/composer_deploy"
  2179. }
  2180. },
  2181. {
  2182. "name": "drupal/config_devel",
  2183. "version": "1.10.0",
  2184. "source": {
  2185. "type": "git",
  2186. "url": "https://git.drupalcode.org/project/config_devel.git",
  2187. "reference": "8.x-1.10"
  2188. },
  2189. "dist": {
  2190. "type": "zip",
  2191. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.10.zip",
  2192. "reference": "8.x-1.10",
  2193. "shasum": "d47415b4be32180f27fcd58e86107a9a7b1351f3"
  2194. },
  2195. "require": {
  2196. "drupal/core": "^9.3 || ^10 || ^11"
  2197. },
  2198. "type": "drupal-module",
  2199. "extra": {
  2200. "drupal": {
  2201. "version": "8.x-1.10",
  2202. "datestamp": "1727184343",
  2203. "security-coverage": {
  2204. "status": "covered",
  2205. "message": "Covered by Drupal's security advisory policy"
  2206. }
  2207. }
  2208. },
  2209. "notification-url": "https://packages.drupal.org/8/downloads",
  2210. "license": [
  2211. "GPL-2.0+"
  2212. ],
  2213. "authors": [
  2214. {
  2215. "name": "alexpott",
  2216. "homepage": "https://www.drupal.org/user/157725"
  2217. },
  2218. {
  2219. "name": "benjy",
  2220. "homepage": "https://www.drupal.org/user/1852732"
  2221. },
  2222. {
  2223. "name": "chx",
  2224. "homepage": "https://www.drupal.org/user/9446"
  2225. },
  2226. {
  2227. "name": "joachim",
  2228. "homepage": "https://www.drupal.org/user/107701"
  2229. },
  2230. {
  2231. "name": "vijaycs85",
  2232. "homepage": "https://www.drupal.org/user/93488"
  2233. }
  2234. ],
  2235. "description": "Helps developers work with configuration.",
  2236. "homepage": "https://www.drupal.org/project/config_devel",
  2237. "support": {
  2238. "source": "https://git.drupalcode.org/project/config_devel"
  2239. }
  2240. },
  2241. {
  2242. "name": "drupal/config_filter",
  2243. "version": "2.7.0",
  2244. "source": {
  2245. "type": "git",
  2246. "url": "https://git.drupalcode.org/project/config_filter.git",
  2247. "reference": "8.x-2.7"
  2248. },
  2249. "dist": {
  2250. "type": "zip",
  2251. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.7.zip",
  2252. "reference": "8.x-2.7",
  2253. "shasum": "7fe7161b93c7e24c6db135f1cf82d144bef66e50"
  2254. },
  2255. "require": {
  2256. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2257. },
  2258. "conflict": {
  2259. "drush/drush": "<10"
  2260. },
  2261. "suggest": {
  2262. "drupal/config_split": "Split site configuration for different environments."
  2263. },
  2264. "type": "drupal-module",
  2265. "extra": {
  2266. "drupal": {
  2267. "version": "8.x-2.7",
  2268. "datestamp": "1727472458",
  2269. "security-coverage": {
  2270. "status": "covered",
  2271. "message": "Covered by Drupal's security advisory policy"
  2272. }
  2273. }
  2274. },
  2275. "notification-url": "https://packages.drupal.org/8/downloads",
  2276. "license": [
  2277. "GPL-2.0-or-later"
  2278. ],
  2279. "authors": [
  2280. {
  2281. "name": "Fabian Bircher",
  2282. "homepage": "https://www.drupal.org/u/bircher",
  2283. "email": "opensource@fabianbircher.com",
  2284. "role": "Maintainer"
  2285. },
  2286. {
  2287. "name": "Nuvole Web",
  2288. "homepage": "http://nuvole.org",
  2289. "email": "info@nuvole.org",
  2290. "role": "Maintainer"
  2291. },
  2292. {
  2293. "name": "pescetti",
  2294. "homepage": "https://www.drupal.org/user/436244"
  2295. }
  2296. ],
  2297. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2298. "homepage": "https://www.drupal.org/project/config_filter",
  2299. "keywords": [
  2300. "Drupal",
  2301. "configuration",
  2302. "configuration management"
  2303. ],
  2304. "support": {
  2305. "source": "https://git.drupalcode.org/project/config_filter",
  2306. "issues": "https://www.drupal.org/project/issues/config_filter",
  2307. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2308. }
  2309. },
  2310. {
  2311. "name": "drupal/config_ignore",
  2312. "version": "3.3.0",
  2313. "source": {
  2314. "type": "git",
  2315. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2316. "reference": "8.x-3.3"
  2317. },
  2318. "dist": {
  2319. "type": "zip",
  2320. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-3.3.zip",
  2321. "reference": "8.x-3.3",
  2322. "shasum": "4446811ecb023820a57c227d35c034e0d4363a70"
  2323. },
  2324. "require": {
  2325. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2326. },
  2327. "require-dev": {
  2328. "drupal/config_filter": "^1.8||^2.2",
  2329. "drush/drush": "^10 || ^11 || ^12"
  2330. },
  2331. "type": "drupal-module",
  2332. "extra": {
  2333. "drupal": {
  2334. "version": "8.x-3.3",
  2335. "datestamp": "1713299496",
  2336. "security-coverage": {
  2337. "status": "covered",
  2338. "message": "Covered by Drupal's security advisory policy"
  2339. }
  2340. }
  2341. },
  2342. "notification-url": "https://packages.drupal.org/8/downloads",
  2343. "license": [
  2344. "GPL-2.0-or-later"
  2345. ],
  2346. "authors": [
  2347. {
  2348. "name": "Tommy Lynge Jørgensen",
  2349. "homepage": "https://www.drupal.org/u/tlyngej",
  2350. "email": "tlyngej@gmail.com",
  2351. "role": "Maintainer"
  2352. },
  2353. {
  2354. "name": "Fabian Bircher",
  2355. "homepage": "https://www.drupal.org/u/bircher",
  2356. "role": "Maintainer"
  2357. },
  2358. {
  2359. "name": "tlyngej",
  2360. "homepage": "https://www.drupal.org/user/413139"
  2361. }
  2362. ],
  2363. "description": "Ignore certain configuration during import and export.",
  2364. "homepage": "http://drupal.org/project/config_ignore",
  2365. "support": {
  2366. "source": "https://git.drupalcode.org/project/config_ignore",
  2367. "issues": "http://drupal.org/project/config_ignore"
  2368. }
  2369. },
  2370. {
  2371. "name": "drupal/config_update",
  2372. "version": "2.0.0-alpha4",
  2373. "source": {
  2374. "type": "git",
  2375. "url": "https://git.drupalcode.org/project/config_update.git",
  2376. "reference": "2.0.0-alpha4"
  2377. },
  2378. "dist": {
  2379. "type": "zip",
  2380. "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha4.zip",
  2381. "reference": "2.0.0-alpha4",
  2382. "shasum": "d8ea528b0b3e24918356bb72bef61408f650aa8e"
  2383. },
  2384. "require": {
  2385. "drupal/core": "^9.4 || ^10 || ^11"
  2386. },
  2387. "type": "drupal-module",
  2388. "extra": {
  2389. "drupal": {
  2390. "version": "2.0.0-alpha4",
  2391. "datestamp": "1724596931",
  2392. "security-coverage": {
  2393. "status": "not-covered",
  2394. "message": "Alpha releases are not covered by Drupal security advisories."
  2395. }
  2396. }
  2397. },
  2398. "notification-url": "https://packages.drupal.org/8/downloads",
  2399. "license": [
  2400. "GPL-2.0-or-later"
  2401. ],
  2402. "authors": [
  2403. {
  2404. "name": "codebymikey",
  2405. "homepage": "https://www.drupal.org/user/3573206"
  2406. },
  2407. {
  2408. "name": "pasqualle",
  2409. "homepage": "https://www.drupal.org/user/80733"
  2410. },
  2411. {
  2412. "name": "vishalkhode",
  2413. "homepage": "https://www.drupal.org/user/2439156"
  2414. }
  2415. ],
  2416. "description": "Provides basic revert and update functionality for other modules.",
  2417. "homepage": "https://www.drupal.org/project/config_update",
  2418. "support": {
  2419. "source": "https://git.drupalcode.org/project/config_update"
  2420. }
  2421. },
  2422. {
  2423. "name": "drupal/context",
  2424. "version": "5.0.0-rc1",
  2425. "source": {
  2426. "type": "git",
  2427. "url": "https://git.drupalcode.org/project/context.git",
  2428. "reference": "5.0.0-rc1"
  2429. },
  2430. "dist": {
  2431. "type": "zip",
  2432. "url": "https://ftp.drupal.org/files/projects/context-5.0.0-rc1.zip",
  2433. "reference": "5.0.0-rc1",
  2434. "shasum": "ae1549bc5e5c75c0c6799b7b737d7391cfc5be73"
  2435. },
  2436. "require": {
  2437. "drupal/core": "^9.3 || ^10"
  2438. },
  2439. "type": "drupal-module",
  2440. "extra": {
  2441. "drupal": {
  2442. "version": "5.0.0-rc1",
  2443. "datestamp": "1677054769",
  2444. "security-coverage": {
  2445. "status": "not-covered",
  2446. "message": "RC releases are not covered by Drupal security advisories."
  2447. }
  2448. }
  2449. },
  2450. "notification-url": "https://packages.drupal.org/8/downloads",
  2451. "license": [
  2452. "MIT"
  2453. ],
  2454. "authors": [
  2455. {
  2456. "name": "Christoffer Palm",
  2457. "homepage": "http://www.oddhill.se/",
  2458. "email": "christoffer.palm@oddhill.se",
  2459. "role": "Developer"
  2460. },
  2461. {
  2462. "name": "boshtian",
  2463. "homepage": "https://www.drupal.org/user/1773456"
  2464. },
  2465. {
  2466. "name": "colan",
  2467. "homepage": "https://www.drupal.org/user/58704"
  2468. },
  2469. {
  2470. "name": "emanaton",
  2471. "homepage": "https://www.drupal.org/user/120853"
  2472. },
  2473. {
  2474. "name": "febbraro",
  2475. "homepage": "https://www.drupal.org/user/43670"
  2476. },
  2477. {
  2478. "name": "fizk",
  2479. "homepage": "https://www.drupal.org/user/473174"
  2480. },
  2481. {
  2482. "name": "hass",
  2483. "homepage": "https://www.drupal.org/user/85918"
  2484. },
  2485. {
  2486. "name": "hefox",
  2487. "homepage": "https://www.drupal.org/user/426416"
  2488. },
  2489. {
  2490. "name": "jmiccolis",
  2491. "homepage": "https://www.drupal.org/user/31731"
  2492. },
  2493. {
  2494. "name": "Kristen Pol",
  2495. "homepage": "https://www.drupal.org/user/8389"
  2496. },
  2497. {
  2498. "name": "nedjo",
  2499. "homepage": "https://www.drupal.org/user/4481"
  2500. },
  2501. {
  2502. "name": "NormySan",
  2503. "homepage": "https://www.drupal.org/user/112352"
  2504. },
  2505. {
  2506. "name": "patricksettle",
  2507. "homepage": "https://www.drupal.org/user/26618"
  2508. },
  2509. {
  2510. "name": "paulocs",
  2511. "homepage": "https://www.drupal.org/user/3640109"
  2512. },
  2513. {
  2514. "name": "Steven Jones",
  2515. "homepage": "https://www.drupal.org/user/99644"
  2516. },
  2517. {
  2518. "name": "tekante",
  2519. "homepage": "https://www.drupal.org/user/640024"
  2520. },
  2521. {
  2522. "name": "yhahn",
  2523. "homepage": "https://www.drupal.org/user/264833"
  2524. }
  2525. ],
  2526. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2527. "homepage": "https://github.com/oddhill/context",
  2528. "keywords": [
  2529. "Drupal",
  2530. "block",
  2531. "conditions",
  2532. "context",
  2533. "visibility"
  2534. ],
  2535. "support": {
  2536. "source": "https://github.com/oddhill/context",
  2537. "issues": "https://github.com/oddhill/context/issues",
  2538. "docs": "https://github.com/oddhill/context"
  2539. }
  2540. },
  2541. {
  2542. "name": "drupal/core",
  2543. "version": "10.3.6",
  2544. "source": {
  2545. "type": "git",
  2546. "url": "https://github.com/drupal/core.git",
  2547. "reference": "168ec99f2012aeb4e93c6c7dd4a90dc919ae96c6"
  2548. },
  2549. "dist": {
  2550. "type": "zip",
  2551. "url": "https://api.github.com/repos/drupal/core/zipball/168ec99f2012aeb4e93c6c7dd4a90dc919ae96c6",
  2552. "reference": "168ec99f2012aeb4e93c6c7dd4a90dc919ae96c6",
  2553. "shasum": ""
  2554. },
  2555. "require": {
  2556. "asm89/stack-cors": "^2.1",
  2557. "composer-runtime-api": "^2.1",
  2558. "composer/semver": "^3.3",
  2559. "doctrine/annotations": "^1.14",
  2560. "egulias/email-validator": "^3.2.1|^4.0",
  2561. "ext-date": "*",
  2562. "ext-dom": "*",
  2563. "ext-filter": "*",
  2564. "ext-gd": "*",
  2565. "ext-hash": "*",
  2566. "ext-json": "*",
  2567. "ext-pcre": "*",
  2568. "ext-pdo": "*",
  2569. "ext-session": "*",
  2570. "ext-simplexml": "*",
  2571. "ext-spl": "*",
  2572. "ext-tokenizer": "*",
  2573. "ext-xml": "*",
  2574. "guzzlehttp/guzzle": "^7.5",
  2575. "guzzlehttp/psr7": "^2.4.5",
  2576. "masterminds/html5": "^2.7",
  2577. "mck89/peast": "^1.14",
  2578. "pear/archive_tar": "^1.4.14",
  2579. "php": ">=8.1.0",
  2580. "psr/log": "^3.0",
  2581. "sebastian/diff": "^4",
  2582. "symfony/console": "^6.4",
  2583. "symfony/dependency-injection": "^6.4",
  2584. "symfony/event-dispatcher": "^6.4",
  2585. "symfony/filesystem": "^6.4",
  2586. "symfony/finder": "^6.4",
  2587. "symfony/http-foundation": "^6.4",
  2588. "symfony/http-kernel": "^6.4",
  2589. "symfony/mailer": "^6.4",
  2590. "symfony/mime": "^6.4",
  2591. "symfony/polyfill-iconv": "^1.26",
  2592. "symfony/process": "^6.4",
  2593. "symfony/psr-http-message-bridge": "^2.1|^6.4",
  2594. "symfony/routing": "^6.4",
  2595. "symfony/serializer": "^6.4",
  2596. "symfony/validator": "^6.4",
  2597. "symfony/yaml": "^6.4",
  2598. "twig/twig": "^3.14.0"
  2599. },
  2600. "conflict": {
  2601. "drush/drush": "<12.4.3"
  2602. },
  2603. "replace": {
  2604. "drupal/core-annotation": "self.version",
  2605. "drupal/core-assertion": "self.version",
  2606. "drupal/core-class-finder": "self.version",
  2607. "drupal/core-datetime": "self.version",
  2608. "drupal/core-dependency-injection": "self.version",
  2609. "drupal/core-diff": "self.version",
  2610. "drupal/core-discovery": "self.version",
  2611. "drupal/core-event-dispatcher": "self.version",
  2612. "drupal/core-file-cache": "self.version",
  2613. "drupal/core-file-security": "self.version",
  2614. "drupal/core-filesystem": "self.version",
  2615. "drupal/core-front-matter": "self.version",
  2616. "drupal/core-gettext": "self.version",
  2617. "drupal/core-graph": "self.version",
  2618. "drupal/core-http-foundation": "self.version",
  2619. "drupal/core-php-storage": "self.version",
  2620. "drupal/core-plugin": "self.version",
  2621. "drupal/core-proxy-builder": "self.version",
  2622. "drupal/core-render": "self.version",
  2623. "drupal/core-serialization": "self.version",
  2624. "drupal/core-transliteration": "self.version",
  2625. "drupal/core-utility": "self.version",
  2626. "drupal/core-uuid": "self.version",
  2627. "drupal/core-version": "self.version"
  2628. },
  2629. "suggest": {
  2630. "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format."
  2631. },
  2632. "type": "drupal-core",
  2633. "extra": {
  2634. "drupal-scaffold": {
  2635. "file-mapping": {
  2636. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  2637. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  2638. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  2639. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  2640. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  2641. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  2642. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  2643. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  2644. "[web-root]/index.php": "assets/scaffold/files/index.php",
  2645. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  2646. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  2647. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  2648. "[web-root]/update.php": "assets/scaffold/files/update.php",
  2649. "[web-root]/web.config": "assets/scaffold/files/web.config",
  2650. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  2651. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  2652. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  2653. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  2654. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  2655. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  2656. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  2657. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  2658. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  2659. }
  2660. }
  2661. },
  2662. "autoload": {
  2663. "files": [
  2664. "includes/bootstrap.inc"
  2665. ],
  2666. "psr-4": {
  2667. "Drupal\\Core\\": "lib/Drupal/Core",
  2668. "Drupal\\Component\\": "lib/Drupal/Component"
  2669. },
  2670. "classmap": [
  2671. "lib/Drupal.php",
  2672. "lib/Drupal/Component/DependencyInjection/Container.php",
  2673. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  2674. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  2675. "lib/Drupal/Component/Utility/Timer.php",
  2676. "lib/Drupal/Component/Utility/Unicode.php",
  2677. "lib/Drupal/Core/Cache/Cache.php",
  2678. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  2679. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  2680. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  2681. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  2682. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  2683. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  2684. "lib/Drupal/Core/Database/Connection.php",
  2685. "lib/Drupal/Core/Database/Database.php",
  2686. "lib/Drupal/Core/Database/StatementInterface.php",
  2687. "lib/Drupal/Core/DependencyInjection/Container.php",
  2688. "lib/Drupal/Core/DrupalKernel.php",
  2689. "lib/Drupal/Core/DrupalKernelInterface.php",
  2690. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  2691. "lib/Drupal/Core/Site/Settings.php",
  2692. "lib/Drupal/Component/Datetime/Time.php"
  2693. ]
  2694. },
  2695. "notification-url": "https://packagist.org/downloads/",
  2696. "license": [
  2697. "GPL-2.0-or-later"
  2698. ],
  2699. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  2700. "support": {
  2701. "source": "https://github.com/drupal/core/tree/10.3.6"
  2702. },
  2703. "time": "2024-10-03T08:58:13+00:00"
  2704. },
  2705. {
  2706. "name": "drupal/core-composer-scaffold",
  2707. "version": "10.3.6",
  2708. "source": {
  2709. "type": "git",
  2710. "url": "https://github.com/drupal/core-composer-scaffold.git",
  2711. "reference": "f58ab5c0d02d275c5aa226c4505b457e41b161cc"
  2712. },
  2713. "dist": {
  2714. "type": "zip",
  2715. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/f58ab5c0d02d275c5aa226c4505b457e41b161cc",
  2716. "reference": "f58ab5c0d02d275c5aa226c4505b457e41b161cc",
  2717. "shasum": ""
  2718. },
  2719. "require": {
  2720. "composer-plugin-api": "^2",
  2721. "php": ">=7.3.0"
  2722. },
  2723. "conflict": {
  2724. "drupal-composer/drupal-scaffold": "*"
  2725. },
  2726. "require-dev": {
  2727. "composer/composer": "^1.8@stable"
  2728. },
  2729. "type": "composer-plugin",
  2730. "extra": {
  2731. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  2732. "branch-alias": {
  2733. "dev-master": "1.0.x-dev"
  2734. }
  2735. },
  2736. "autoload": {
  2737. "psr-4": {
  2738. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  2739. }
  2740. },
  2741. "notification-url": "https://packagist.org/downloads/",
  2742. "license": [
  2743. "GPL-2.0-or-later"
  2744. ],
  2745. "description": "A flexible Composer project scaffold builder.",
  2746. "homepage": "https://www.drupal.org/project/drupal",
  2747. "keywords": [
  2748. "drupal"
  2749. ],
  2750. "support": {
  2751. "source": "https://github.com/drupal/core-composer-scaffold/tree/10.3.6"
  2752. },
  2753. "time": "2024-08-22T14:31:34+00:00"
  2754. },
  2755. {
  2756. "name": "drupal/core-project-message",
  2757. "version": "10.3.6",
  2758. "source": {
  2759. "type": "git",
  2760. "url": "https://github.com/drupal/core-project-message.git",
  2761. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8"
  2762. },
  2763. "dist": {
  2764. "type": "zip",
  2765. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  2766. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  2767. "shasum": ""
  2768. },
  2769. "require": {
  2770. "composer-plugin-api": "^2",
  2771. "php": ">=7.3.0"
  2772. },
  2773. "type": "composer-plugin",
  2774. "extra": {
  2775. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  2776. },
  2777. "autoload": {
  2778. "psr-4": {
  2779. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  2780. }
  2781. },
  2782. "notification-url": "https://packagist.org/downloads/",
  2783. "license": [
  2784. "GPL-2.0-or-later"
  2785. ],
  2786. "description": "Adds a message after Composer installation.",
  2787. "homepage": "https://www.drupal.org/project/drupal",
  2788. "keywords": [
  2789. "drupal"
  2790. ],
  2791. "support": {
  2792. "source": "https://github.com/drupal/core-project-message/tree/11.0.5"
  2793. },
  2794. "time": "2023-07-24T07:55:25+00:00"
  2795. },
  2796. {
  2797. "name": "drupal/core-recommended",
  2798. "version": "10.3.6",
  2799. "source": {
  2800. "type": "git",
  2801. "url": "https://github.com/drupal/core-recommended.git",
  2802. "reference": "5ddec63138dc10869dea5d1cd4e72c977bb9b538"
  2803. },
  2804. "dist": {
  2805. "type": "zip",
  2806. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/5ddec63138dc10869dea5d1cd4e72c977bb9b538",
  2807. "reference": "5ddec63138dc10869dea5d1cd4e72c977bb9b538",
  2808. "shasum": ""
  2809. },
  2810. "require": {
  2811. "asm89/stack-cors": "~v2.2.0",
  2812. "composer/semver": "~3.4.0",
  2813. "doctrine/annotations": "~1.14.3",
  2814. "doctrine/deprecations": "~1.1.3",
  2815. "doctrine/lexer": "~2.1.1",
  2816. "drupal/core": "10.3.6",
  2817. "egulias/email-validator": "~4.0.2",
  2818. "guzzlehttp/guzzle": "~7.8.1",
  2819. "guzzlehttp/promises": "~2.0.2",
  2820. "guzzlehttp/psr7": "~2.6.2",
  2821. "masterminds/html5": "~2.9.0",
  2822. "mck89/peast": "~v1.16.2",
  2823. "pear/archive_tar": "~1.5.0",
  2824. "pear/console_getopt": "~v1.4.3",
  2825. "pear/pear-core-minimal": "~v1.10.15",
  2826. "pear/pear_exception": "~v1.0.2",
  2827. "psr/cache": "~3.0.0",
  2828. "psr/container": "~2.0.2",
  2829. "psr/event-dispatcher": "~1.0.0",
  2830. "psr/http-client": "~1.0.3",
  2831. "psr/http-factory": "~1.1.0",
  2832. "psr/log": "~3.0.0",
  2833. "ralouphie/getallheaders": "~3.0.3",
  2834. "sebastian/diff": "~4.0.6",
  2835. "symfony/console": "~v6.4.8",
  2836. "symfony/dependency-injection": "~v6.4.7",
  2837. "symfony/deprecation-contracts": "~v3.5.0",
  2838. "symfony/error-handler": "~v6.4.7",
  2839. "symfony/event-dispatcher": "~v6.4.7",
  2840. "symfony/event-dispatcher-contracts": "~v3.5.0",
  2841. "symfony/filesystem": "~v6.4.8",
  2842. "symfony/finder": "~v6.4.8",
  2843. "symfony/http-foundation": "~v6.4.7",
  2844. "symfony/http-kernel": "~v6.4.7",
  2845. "symfony/mailer": "~v6.4.7",
  2846. "symfony/mime": "~v6.4.7",
  2847. "symfony/polyfill-ctype": "~v1.29.0",
  2848. "symfony/polyfill-iconv": "~v1.29.0",
  2849. "symfony/polyfill-intl-grapheme": "~v1.29.0",
  2850. "symfony/polyfill-intl-idn": "~v1.29.0",
  2851. "symfony/polyfill-intl-normalizer": "~v1.29.0",
  2852. "symfony/polyfill-mbstring": "~v1.29.0",
  2853. "symfony/polyfill-php83": "~v1.29.0",
  2854. "symfony/process": "~v6.4.8",
  2855. "symfony/psr-http-message-bridge": "~v6.4.7",
  2856. "symfony/routing": "~v6.4.7",
  2857. "symfony/serializer": "~v6.4.7",
  2858. "symfony/service-contracts": "~v3.5.0",
  2859. "symfony/string": "~v6.4.8",
  2860. "symfony/translation-contracts": "~v3.5.0",
  2861. "symfony/validator": "~v6.4.7",
  2862. "symfony/var-dumper": "~v6.4.7",
  2863. "symfony/var-exporter": "~v6.4.7",
  2864. "symfony/yaml": "~v6.4.7",
  2865. "twig/twig": "~v3.14.0"
  2866. },
  2867. "conflict": {
  2868. "webflo/drupal-core-strict": "*"
  2869. },
  2870. "type": "metapackage",
  2871. "notification-url": "https://packagist.org/downloads/",
  2872. "license": [
  2873. "GPL-2.0-or-later"
  2874. ],
  2875. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  2876. "support": {
  2877. "source": "https://github.com/drupal/core-recommended/tree/10.3.6"
  2878. },
  2879. "time": "2024-10-03T08:58:13+00:00"
  2880. },
  2881. {
  2882. "name": "drupal/ctools",
  2883. "version": "4.1.0",
  2884. "source": {
  2885. "type": "git",
  2886. "url": "https://git.drupalcode.org/project/ctools.git",
  2887. "reference": "4.1.0"
  2888. },
  2889. "dist": {
  2890. "type": "zip",
  2891. "url": "https://ftp.drupal.org/files/projects/ctools-4.1.0.zip",
  2892. "reference": "4.1.0",
  2893. "shasum": "69f5889cf557df9e55519390e6a95cfa31b67874"
  2894. },
  2895. "require": {
  2896. "drupal/core": "^9.5 || ^10 || ^11"
  2897. },
  2898. "type": "drupal-module",
  2899. "extra": {
  2900. "drupal": {
  2901. "version": "4.1.0",
  2902. "datestamp": "1718144949",
  2903. "security-coverage": {
  2904. "status": "covered",
  2905. "message": "Covered by Drupal's security advisory policy"
  2906. }
  2907. },
  2908. "branch-alias": {
  2909. "dev-8.x-3.x": "3.x-dev"
  2910. }
  2911. },
  2912. "notification-url": "https://packages.drupal.org/8/downloads",
  2913. "license": [
  2914. "GPL-2.0-or-later"
  2915. ],
  2916. "authors": [
  2917. {
  2918. "name": "Kris Vanderwater (EclipseGc)",
  2919. "homepage": "https://www.drupal.org/u/eclipsegc",
  2920. "role": "Maintainer"
  2921. },
  2922. {
  2923. "name": "Jakob Perry (japerry)",
  2924. "homepage": "https://www.drupal.org/u/japerry",
  2925. "role": "Maintainer"
  2926. },
  2927. {
  2928. "name": "Tim Plunkett (tim.plunkett)",
  2929. "homepage": "https://www.drupal.org/u/timplunkett",
  2930. "role": "Maintainer"
  2931. },
  2932. {
  2933. "name": "James Gilliland (neclimdul)",
  2934. "homepage": "https://www.drupal.org/u/neclimdul",
  2935. "role": "Maintainer"
  2936. },
  2937. {
  2938. "name": "Daniel Wehner (dawehner)",
  2939. "homepage": "https://www.drupal.org/u/dawehner",
  2940. "role": "Maintainer"
  2941. },
  2942. {
  2943. "name": "joelpittet",
  2944. "homepage": "https://www.drupal.org/user/160302"
  2945. },
  2946. {
  2947. "name": "merlinofchaos",
  2948. "homepage": "https://www.drupal.org/user/26979"
  2949. },
  2950. {
  2951. "name": "neclimdul",
  2952. "homepage": "https://www.drupal.org/user/48673"
  2953. },
  2954. {
  2955. "name": "sdboyer",
  2956. "homepage": "https://www.drupal.org/user/146719"
  2957. },
  2958. {
  2959. "name": "sun",
  2960. "homepage": "https://www.drupal.org/user/54136"
  2961. },
  2962. {
  2963. "name": "tim.plunkett",
  2964. "homepage": "https://www.drupal.org/user/241634"
  2965. }
  2966. ],
  2967. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  2968. "homepage": "https://www.drupal.org/project/ctools",
  2969. "support": {
  2970. "source": "https://git.drupalcode.org/project/ctools",
  2971. "issues": "https://www.drupal.org/project/issues/ctools"
  2972. }
  2973. },
  2974. {
  2975. "name": "drupal/date_range_formatter",
  2976. "version": "4.0.2",
  2977. "source": {
  2978. "type": "git",
  2979. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  2980. "reference": "4.0.2"
  2981. },
  2982. "dist": {
  2983. "type": "zip",
  2984. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-4.0.2.zip",
  2985. "reference": "4.0.2",
  2986. "shasum": "0d953912148e384aed6a6cee64115faf170319c0"
  2987. },
  2988. "require": {
  2989. "drupal/core": "^8 || ^9 || ^10"
  2990. },
  2991. "type": "drupal-module",
  2992. "extra": {
  2993. "drupal": {
  2994. "version": "4.0.2",
  2995. "datestamp": "1703156621",
  2996. "security-coverage": {
  2997. "status": "covered",
  2998. "message": "Covered by Drupal's security advisory policy"
  2999. }
  3000. }
  3001. },
  3002. "notification-url": "https://packages.drupal.org/8/downloads",
  3003. "license": [
  3004. "GPL-2.0-or-later"
  3005. ],
  3006. "authors": [
  3007. {
  3008. "name": "maximpodorov",
  3009. "homepage": "https://www.drupal.org/user/515310"
  3010. },
  3011. {
  3012. "name": "sudishth",
  3013. "homepage": "https://www.drupal.org/user/1440562"
  3014. }
  3015. ],
  3016. "description": "Formats date ranges.",
  3017. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3018. "support": {
  3019. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3020. }
  3021. },
  3022. {
  3023. "name": "drupal/devel",
  3024. "version": "5.3.1",
  3025. "source": {
  3026. "type": "git",
  3027. "url": "https://git.drupalcode.org/project/devel.git",
  3028. "reference": "5.3.1"
  3029. },
  3030. "dist": {
  3031. "type": "zip",
  3032. "url": "https://ftp.drupal.org/files/projects/devel-5.3.1.zip",
  3033. "reference": "5.3.1",
  3034. "shasum": "6a5f13bdf93dc5f7f194b6af847589ae15e37b63"
  3035. },
  3036. "require": {
  3037. "doctrine/common": "^2.7 || ^3.4",
  3038. "drupal/core": "^10.3 || ^11 || ^12",
  3039. "php": ">=8.1",
  3040. "symfony/var-dumper": "^4 || ^5 || ^6 || ^7"
  3041. },
  3042. "conflict": {
  3043. "drupal/core": "<10.3",
  3044. "drush/drush": "<12.5.1",
  3045. "kint-php/kint": "<3"
  3046. },
  3047. "require-dev": {
  3048. "drush/drush": "^13",
  3049. "firephp/firephp-core": "^0.5.3",
  3050. "kint-php/kint": "^5.1"
  3051. },
  3052. "suggest": {
  3053. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3054. },
  3055. "type": "drupal-module",
  3056. "extra": {
  3057. "drupal": {
  3058. "version": "5.3.1",
  3059. "datestamp": "1723258446",
  3060. "security-coverage": {
  3061. "status": "covered",
  3062. "message": "Covered by Drupal's security advisory policy"
  3063. }
  3064. }
  3065. },
  3066. "notification-url": "https://packages.drupal.org/8/downloads",
  3067. "license": [
  3068. "GPL-2.0-or-later"
  3069. ],
  3070. "authors": [
  3071. {
  3072. "name": "moshe weitzman",
  3073. "homepage": "https://www.drupal.org/user/23"
  3074. }
  3075. ],
  3076. "description": "Various blocks, pages, and functions for developers.",
  3077. "homepage": "https://www.drupal.org/project/devel",
  3078. "support": {
  3079. "source": "https://gitlab.com/drupalspoons/devel",
  3080. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3081. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3082. }
  3083. },
  3084. {
  3085. "name": "drupal/domain",
  3086. "version": "2.0.0-beta1",
  3087. "source": {
  3088. "type": "git",
  3089. "url": "https://git.drupalcode.org/project/domain.git",
  3090. "reference": "2.0.0-beta1"
  3091. },
  3092. "dist": {
  3093. "type": "zip",
  3094. "url": "https://ftp.drupal.org/files/projects/domain-2.0.0-beta1.zip",
  3095. "reference": "2.0.0-beta1",
  3096. "shasum": "0edbc9d6c79cb0a61c08c656e9258c2450710664"
  3097. },
  3098. "require": {
  3099. "drupal/core": "^9 || ^10"
  3100. },
  3101. "require-dev": {
  3102. "drupal/domain_access": "*",
  3103. "drupal/domain_config": "*"
  3104. },
  3105. "type": "drupal-module",
  3106. "extra": {
  3107. "drupal": {
  3108. "version": "2.0.0-beta1",
  3109. "datestamp": "1686067462",
  3110. "security-coverage": {
  3111. "status": "not-covered",
  3112. "message": "Beta releases are not covered by Drupal security advisories."
  3113. }
  3114. }
  3115. },
  3116. "notification-url": "https://packages.drupal.org/8/downloads",
  3117. "license": [
  3118. "GPL-2.0-or-later"
  3119. ],
  3120. "authors": [
  3121. {
  3122. "name": "agentrickard",
  3123. "homepage": "https://www.drupal.org/user/20975"
  3124. },
  3125. {
  3126. "name": "nonsie",
  3127. "homepage": "https://www.drupal.org/user/29899"
  3128. },
  3129. {
  3130. "name": "webflo",
  3131. "homepage": "https://www.drupal.org/user/254778"
  3132. }
  3133. ],
  3134. "description": "Creates domain records within a Drupal installation.",
  3135. "homepage": "https://www.drupal.org/project/domain",
  3136. "support": {
  3137. "source": "https://git.drupalcode.org/project/domain"
  3138. }
  3139. },
  3140. {
  3141. "name": "drupal/domain_access",
  3142. "version": "2.0.0-beta1",
  3143. "require": {
  3144. "drupal/core": "^9 || ^10",
  3145. "drupal/domain": "*"
  3146. },
  3147. "type": "metapackage",
  3148. "extra": {
  3149. "drupal": {
  3150. "version": "2.0.0-beta1",
  3151. "datestamp": "1686067462",
  3152. "security-coverage": {
  3153. "status": "not-covered",
  3154. "message": "Beta releases are not covered by Drupal security advisories."
  3155. }
  3156. }
  3157. },
  3158. "notification-url": "https://packages.drupal.org/8/downloads",
  3159. "license": [
  3160. "GPL-2.0-or-later"
  3161. ],
  3162. "authors": [
  3163. {
  3164. "name": "agentrickard",
  3165. "homepage": "https://www.drupal.org/user/20975"
  3166. },
  3167. {
  3168. "name": "nonsie",
  3169. "homepage": "https://www.drupal.org/user/29899"
  3170. },
  3171. {
  3172. "name": "webflo",
  3173. "homepage": "https://www.drupal.org/user/254778"
  3174. }
  3175. ],
  3176. "description": "Domain-based access control for content.",
  3177. "homepage": "https://www.drupal.org/project/domain",
  3178. "support": {
  3179. "source": "https://git.drupalcode.org/project/domain"
  3180. }
  3181. },
  3182. {
  3183. "name": "drupal/domain_config",
  3184. "version": "2.0.0-beta1",
  3185. "require": {
  3186. "drupal/core": "^9 || ^10",
  3187. "drupal/domain": "*"
  3188. },
  3189. "type": "metapackage",
  3190. "extra": {
  3191. "drupal": {
  3192. "version": "2.0.0-beta1",
  3193. "datestamp": "1686067462",
  3194. "security-coverage": {
  3195. "status": "not-covered",
  3196. "message": "Beta releases are not covered by Drupal security advisories."
  3197. }
  3198. }
  3199. },
  3200. "notification-url": "https://packages.drupal.org/8/downloads",
  3201. "license": [
  3202. "GPL-2.0-or-later"
  3203. ],
  3204. "authors": [
  3205. {
  3206. "name": "agentrickard",
  3207. "homepage": "https://www.drupal.org/user/20975"
  3208. },
  3209. {
  3210. "name": "nonsie",
  3211. "homepage": "https://www.drupal.org/user/29899"
  3212. },
  3213. {
  3214. "name": "webflo",
  3215. "homepage": "https://www.drupal.org/user/254778"
  3216. }
  3217. ],
  3218. "description": "Allows domain specific configuration.",
  3219. "homepage": "https://www.drupal.org/project/domain",
  3220. "support": {
  3221. "source": "https://git.drupalcode.org/project/domain"
  3222. }
  3223. },
  3224. {
  3225. "name": "drupal/domain_menu_access",
  3226. "version": "2.0.0",
  3227. "source": {
  3228. "type": "git",
  3229. "url": "https://git.drupalcode.org/project/domain_menu_access.git",
  3230. "reference": "2.0.0"
  3231. },
  3232. "dist": {
  3233. "type": "zip",
  3234. "url": "https://ftp.drupal.org/files/projects/domain_menu_access-2.0.0.zip",
  3235. "reference": "2.0.0",
  3236. "shasum": "b362fbadb1b45cd6c3eb6af8275ad94dc4257045"
  3237. },
  3238. "require": {
  3239. "drupal/core": "^9 || ^10 || ^11",
  3240. "drupal/domain": "^1.0 || ^2.0",
  3241. "drupal/domain_access": "*"
  3242. },
  3243. "require-dev": {
  3244. "drupal/menu_block": "^1.0",
  3245. "phpstan/phpstan-deprecation-rules": "^1.1",
  3246. "phpstan/phpstan-strict-rules": "^1.5"
  3247. },
  3248. "suggest": {
  3249. "drupal/menu_block": "Provides configurable blocks of menu links and is needed to allow to install the submodule domain_menu_access_menu_block"
  3250. },
  3251. "type": "drupal-module",
  3252. "extra": {
  3253. "drupal": {
  3254. "version": "2.0.0",
  3255. "datestamp": "1713375017",
  3256. "security-coverage": {
  3257. "status": "covered",
  3258. "message": "Covered by Drupal's security advisory policy"
  3259. }
  3260. }
  3261. },
  3262. "notification-url": "https://packages.drupal.org/8/downloads",
  3263. "license": [
  3264. "GPL-2.0-or-later"
  3265. ],
  3266. "authors": [
  3267. {
  3268. "name": "maciej.zgadzaj",
  3269. "homepage": "https://www.drupal.org/u/maciejzgadzaj",
  3270. "role": "Maintainer"
  3271. },
  3272. {
  3273. "name": "Oleksandr Dekhteruk (pifagor)",
  3274. "homepage": "https://www.drupal.org/u/pifagor",
  3275. "role": "Co-maintainer"
  3276. },
  3277. {
  3278. "name": "Sebastien MALOT (Sebastien M.)",
  3279. "homepage": "https://www.drupal.org/u/sebastien-m",
  3280. "role": "Co-maintainer"
  3281. },
  3282. {
  3283. "name": "Tim Diels (tim-diels)",
  3284. "homepage": "https://www.drupal.org/u/tim-diels",
  3285. "role": "Co-maintainer"
  3286. }
  3287. ],
  3288. "description": "Domain-based access control for menu link.",
  3289. "homepage": "https://www.drupal.org/project/domain_menu_access",
  3290. "support": {
  3291. "source": "https://git.drupalcode.org/project/domain_menu_access",
  3292. "issues": "https://drupal.org/project/issues/domain_menu_access"
  3293. }
  3294. },
  3295. {
  3296. "name": "drupal/domain_site_settings",
  3297. "version": "1.6.0",
  3298. "source": {
  3299. "type": "git",
  3300. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  3301. "reference": "8.x-1.6"
  3302. },
  3303. "dist": {
  3304. "type": "zip",
  3305. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.6.zip",
  3306. "reference": "8.x-1.6",
  3307. "shasum": "d0f89411c5dd934a63a1a5991fbc0f76c1515cb2"
  3308. },
  3309. "require": {
  3310. "drupal/core": "^8.8 || ^9 || ^10 || ^11",
  3311. "drupal/domain": "^1.0 || ^2.0",
  3312. "drupal/domain_config": "*"
  3313. },
  3314. "type": "drupal-module",
  3315. "extra": {
  3316. "drupal": {
  3317. "version": "8.x-1.6",
  3318. "datestamp": "1726238712",
  3319. "security-coverage": {
  3320. "status": "covered",
  3321. "message": "Covered by Drupal's security advisory policy"
  3322. }
  3323. }
  3324. },
  3325. "notification-url": "https://packages.drupal.org/8/downloads",
  3326. "license": [
  3327. "GPL-2.0+"
  3328. ],
  3329. "authors": [
  3330. {
  3331. "name": "aloknarwaria",
  3332. "homepage": "https://www.drupal.org/user/906640"
  3333. },
  3334. {
  3335. "name": "jeroent",
  3336. "homepage": "https://www.drupal.org/user/2228934"
  3337. },
  3338. {
  3339. "name": "malaynayak",
  3340. "homepage": "https://www.drupal.org/user/3529755"
  3341. }
  3342. ],
  3343. "description": "Basic Site Setting for Domains.",
  3344. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3345. "keywords": [
  3346. "Drupal"
  3347. ],
  3348. "support": {
  3349. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3350. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3351. }
  3352. },
  3353. {
  3354. "name": "drupal/email_registration",
  3355. "version": "1.4.0",
  3356. "source": {
  3357. "type": "git",
  3358. "url": "https://git.drupalcode.org/project/email_registration.git",
  3359. "reference": "8.x-1.4"
  3360. },
  3361. "dist": {
  3362. "type": "zip",
  3363. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.4.zip",
  3364. "reference": "8.x-1.4",
  3365. "shasum": "fe7a91b858a98533fc1d7550b0917fc80523f186"
  3366. },
  3367. "require": {
  3368. "drupal/core": "^9.1 || ^10"
  3369. },
  3370. "conflict": {
  3371. "drupal/commerce": "<2.12"
  3372. },
  3373. "require-dev": {
  3374. "drupal/commerce": "^2.0",
  3375. "drupal/token": "*"
  3376. },
  3377. "type": "drupal-module",
  3378. "extra": {
  3379. "drupal": {
  3380. "version": "8.x-1.4",
  3381. "datestamp": "1700548925",
  3382. "security-coverage": {
  3383. "status": "covered",
  3384. "message": "Covered by Drupal's security advisory policy"
  3385. }
  3386. }
  3387. },
  3388. "notification-url": "https://packages.drupal.org/8/downloads",
  3389. "license": [
  3390. "GPL-2.0-or-later"
  3391. ],
  3392. "authors": [
  3393. {
  3394. "name": "Greg Knaddison (greggles)",
  3395. "homepage": "https://www.drupal.org/u/greggles",
  3396. "role": "Maintainer"
  3397. },
  3398. {
  3399. "name": "Andrey Postnikov (andypost)",
  3400. "homepage": "https://www.drupal.org/u/andypost",
  3401. "role": "Maintainer"
  3402. },
  3403. {
  3404. "name": "Chris Herberte",
  3405. "homepage": "https://www.drupal.org/u/chris-herberte",
  3406. "role": "Maintainer"
  3407. },
  3408. {
  3409. "name": "Moshe Weitzman (moshe weitzman)",
  3410. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3411. "role": "Maintainer"
  3412. },
  3413. {
  3414. "name": "Grevil",
  3415. "homepage": "https://www.drupal.org/user/3668491"
  3416. },
  3417. {
  3418. "name": "moshe weitzman",
  3419. "homepage": "https://www.drupal.org/user/23"
  3420. }
  3421. ],
  3422. "description": "Allows users to register with an email address as their username.",
  3423. "homepage": "https://www.drupal.org/project/email_registration",
  3424. "support": {
  3425. "source": "https://git.drupalcode.org/project/email_registration",
  3426. "issues": "http://drupal.org/project/issues/email_registration"
  3427. }
  3428. },
  3429. {
  3430. "name": "drupal/entity",
  3431. "version": "1.5.0",
  3432. "source": {
  3433. "type": "git",
  3434. "url": "https://git.drupalcode.org/project/entity.git",
  3435. "reference": "8.x-1.5"
  3436. },
  3437. "dist": {
  3438. "type": "zip",
  3439. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.5.zip",
  3440. "reference": "8.x-1.5",
  3441. "shasum": "86c0b75c173144aaedde3e3258dc0d3ce11d1a22"
  3442. },
  3443. "require": {
  3444. "drupal/core": "^10.1 || ^11"
  3445. },
  3446. "type": "drupal-module",
  3447. "extra": {
  3448. "drupal": {
  3449. "version": "8.x-1.5",
  3450. "datestamp": "1723380062",
  3451. "security-coverage": {
  3452. "status": "covered",
  3453. "message": "Covered by Drupal's security advisory policy"
  3454. }
  3455. }
  3456. },
  3457. "notification-url": "https://packages.drupal.org/8/downloads",
  3458. "license": [
  3459. "GPL-2.0-or-later"
  3460. ],
  3461. "authors": [
  3462. {
  3463. "name": "berdir",
  3464. "homepage": "https://www.drupal.org/user/214652"
  3465. },
  3466. {
  3467. "name": "bojanz",
  3468. "homepage": "https://www.drupal.org/user/86106"
  3469. },
  3470. {
  3471. "name": "dawehner",
  3472. "homepage": "https://www.drupal.org/user/99340"
  3473. },
  3474. {
  3475. "name": "dixon_",
  3476. "homepage": "https://www.drupal.org/user/239911"
  3477. },
  3478. {
  3479. "name": "fago",
  3480. "homepage": "https://www.drupal.org/user/16747"
  3481. },
  3482. {
  3483. "name": "mglaman",
  3484. "homepage": "https://www.drupal.org/user/2416470"
  3485. },
  3486. {
  3487. "name": "TR",
  3488. "homepage": "https://www.drupal.org/user/202830"
  3489. }
  3490. ],
  3491. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3492. "homepage": "https://www.drupal.org/project/entity",
  3493. "support": {
  3494. "source": "https://git.drupalcode.org/project/entity",
  3495. "issues": "https://www.drupal.org/project/issues/entity"
  3496. }
  3497. },
  3498. {
  3499. "name": "drupal/field_group",
  3500. "version": "3.6.0",
  3501. "source": {
  3502. "type": "git",
  3503. "url": "https://git.drupalcode.org/project/field_group.git",
  3504. "reference": "8.x-3.6"
  3505. },
  3506. "dist": {
  3507. "type": "zip",
  3508. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.6.zip",
  3509. "reference": "8.x-3.6",
  3510. "shasum": "427c0a65dc1936e69e60c120776056cfe5b43e86"
  3511. },
  3512. "require": {
  3513. "drupal/core": "^9.2 || ^10 || ^11"
  3514. },
  3515. "require-dev": {
  3516. "drupal/jquery_ui_accordion": "*"
  3517. },
  3518. "type": "drupal-module",
  3519. "extra": {
  3520. "drupal": {
  3521. "version": "8.x-3.6",
  3522. "datestamp": "1722672510",
  3523. "security-coverage": {
  3524. "status": "covered",
  3525. "message": "Covered by Drupal's security advisory policy"
  3526. }
  3527. }
  3528. },
  3529. "notification-url": "https://packages.drupal.org/8/downloads",
  3530. "license": [
  3531. "GPL-2.0-or-later"
  3532. ],
  3533. "authors": [
  3534. {
  3535. "name": "anybody",
  3536. "homepage": "https://www.drupal.org/user/291091"
  3537. },
  3538. {
  3539. "name": "grevil",
  3540. "homepage": "https://www.drupal.org/user/3668491"
  3541. },
  3542. {
  3543. "name": "hydra",
  3544. "homepage": "https://www.drupal.org/user/647364"
  3545. },
  3546. {
  3547. "name": "joevagyok",
  3548. "homepage": "https://www.drupal.org/user/2876343"
  3549. },
  3550. {
  3551. "name": "jyve",
  3552. "homepage": "https://www.drupal.org/user/591438"
  3553. },
  3554. {
  3555. "name": "nils.destoop",
  3556. "homepage": "https://www.drupal.org/user/361625"
  3557. },
  3558. {
  3559. "name": "Stalski",
  3560. "homepage": "https://www.drupal.org/user/322618"
  3561. },
  3562. {
  3563. "name": "swentel",
  3564. "homepage": "https://www.drupal.org/user/107403"
  3565. }
  3566. ],
  3567. "description": "Provides the field_group module.",
  3568. "homepage": "https://www.drupal.org/project/field_group",
  3569. "support": {
  3570. "source": "https://git.drupalcode.org/project/field_group",
  3571. "issues": "https://www.drupal.org/project/issues/field_group"
  3572. }
  3573. },
  3574. {
  3575. "name": "drupal/filefield_sources",
  3576. "version": "dev-2.0.x",
  3577. "source": {
  3578. "type": "git",
  3579. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  3580. "reference": "3905bb005c2f96f7391abcd91004a81f13e83477"
  3581. },
  3582. "require": {
  3583. "drupal/core": "^9.2.0 | ^10"
  3584. },
  3585. "require-dev": {
  3586. "drupal/imce": "^3.0"
  3587. },
  3588. "type": "drupal-module",
  3589. "extra": {
  3590. "branch-alias": {
  3591. "dev-2.0.x": "2.0.x-dev"
  3592. },
  3593. "drupal": {
  3594. "version": "2.0.x-dev",
  3595. "datestamp": "1714083250",
  3596. "security-coverage": {
  3597. "status": "not-covered",
  3598. "message": "Dev releases are not covered by Drupal security advisories."
  3599. }
  3600. }
  3601. },
  3602. "notification-url": "https://packages.drupal.org/8/downloads",
  3603. "license": [
  3604. "GPL-2.0-or-later"
  3605. ],
  3606. "authors": [
  3607. {
  3608. "name": "Nate Lampton (quicksketch)",
  3609. "homepage": "https://www.drupal.org/u/quicksketch",
  3610. "role": "Maintainer"
  3611. },
  3612. {
  3613. "name": "Andrey Khromyshev (profak)",
  3614. "homepage": "https://www.drupal.org/u/profak",
  3615. "role": "Maintainer"
  3616. },
  3617. {
  3618. "name": "David Valdez (gnuget)",
  3619. "homepage": "https://www.drupal.org/u/gnuget",
  3620. "role": "Maintainer"
  3621. },
  3622. {
  3623. "name": "quicksketch",
  3624. "homepage": "https://www.drupal.org/user/35821"
  3625. }
  3626. ],
  3627. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  3628. "homepage": "https://www.drupal.org/project/filefield_sources",
  3629. "support": {
  3630. "source": "https://git.drupalcode.org/project/filefield_sources",
  3631. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  3632. "irc": "irc://irc.freenode.org/drupal-contribute"
  3633. }
  3634. },
  3635. {
  3636. "name": "drupal/filter_perms",
  3637. "version": "2.0.1",
  3638. "source": {
  3639. "type": "git",
  3640. "url": "https://git.drupalcode.org/project/filter_perms.git",
  3641. "reference": "2.0.1"
  3642. },
  3643. "dist": {
  3644. "type": "zip",
  3645. "url": "https://ftp.drupal.org/files/projects/filter_perms-2.0.1.zip",
  3646. "reference": "2.0.1",
  3647. "shasum": "76949486b0a730c1fdfd9a8d773a3a96d2e0de7b"
  3648. },
  3649. "require": {
  3650. "drupal/core": "^9.0 || ^10.0 || ^11"
  3651. },
  3652. "type": "drupal-module",
  3653. "extra": {
  3654. "drupal": {
  3655. "version": "2.0.1",
  3656. "datestamp": "1722444219",
  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": "cYu",
  3670. "homepage": "https://www.drupal.org/user/202205"
  3671. },
  3672. {
  3673. "name": "deekayen",
  3674. "homepage": "https://www.drupal.org/user/972"
  3675. },
  3676. {
  3677. "name": "ivavictoria",
  3678. "homepage": "https://www.drupal.org/user/3061533"
  3679. },
  3680. {
  3681. "name": "justcaldwell",
  3682. "homepage": "https://www.drupal.org/user/290069"
  3683. },
  3684. {
  3685. "name": "mgbellaire",
  3686. "homepage": "https://www.drupal.org/user/1831932"
  3687. },
  3688. {
  3689. "name": "willzyx",
  3690. "homepage": "https://www.drupal.org/user/1043862"
  3691. }
  3692. ],
  3693. "description": "Provides role and module filters to simplify the user permissions page.",
  3694. "homepage": "https://www.drupal.org/project/filter_perms",
  3695. "support": {
  3696. "source": "http://cgit.drupalcode.org/filter_perms",
  3697. "issues": "https://www.drupal.org/project/issues/filter_perms?categories=All"
  3698. }
  3699. },
  3700. {
  3701. "name": "drupal/honeypot",
  3702. "version": "2.2.0",
  3703. "source": {
  3704. "type": "git",
  3705. "url": "https://git.drupalcode.org/project/honeypot.git",
  3706. "reference": "2.2.0"
  3707. },
  3708. "dist": {
  3709. "type": "zip",
  3710. "url": "https://ftp.drupal.org/files/projects/honeypot-2.2.0.zip",
  3711. "reference": "2.2.0",
  3712. "shasum": "56397c3779ebac1526cce9ecd39385017ee9a837"
  3713. },
  3714. "require": {
  3715. "drupal/core": "^10.3 || ^11"
  3716. },
  3717. "require-dev": {
  3718. "drupal/rules": "^4.0"
  3719. },
  3720. "type": "drupal-module",
  3721. "extra": {
  3722. "drupal": {
  3723. "version": "2.2.0",
  3724. "datestamp": "1723761042",
  3725. "security-coverage": {
  3726. "status": "covered",
  3727. "message": "Covered by Drupal's security advisory policy"
  3728. }
  3729. }
  3730. },
  3731. "notification-url": "https://packages.drupal.org/8/downloads",
  3732. "license": [
  3733. "GPL-2.0-or-later"
  3734. ],
  3735. "authors": [
  3736. {
  3737. "name": "Jeff Geerling",
  3738. "homepage": "https://www.drupal.org/user/389011",
  3739. "email": "geerlingguy@mac.com"
  3740. },
  3741. {
  3742. "name": "Manuel Garcia",
  3743. "homepage": "https://www.drupal.org/user/213194"
  3744. },
  3745. {
  3746. "name": "tr",
  3747. "homepage": "https://www.drupal.org/user/202830"
  3748. },
  3749. {
  3750. "name": "vijaycs85",
  3751. "homepage": "https://www.drupal.org/user/93488"
  3752. }
  3753. ],
  3754. "description": "Mitigates spam form submissions using the honeypot method.",
  3755. "homepage": "https://www.drupal.org/project/honeypot",
  3756. "keywords": [
  3757. "deterrent",
  3758. "form",
  3759. "honeypot",
  3760. "honeytrap",
  3761. "php",
  3762. "spam"
  3763. ],
  3764. "support": {
  3765. "source": "https://git.drupalcode.org/project/honeypot",
  3766. "issues": "https://www.drupal.org/project/issues/honeypot"
  3767. }
  3768. },
  3769. {
  3770. "name": "drupal/jquery_ui",
  3771. "version": "1.7.0",
  3772. "source": {
  3773. "type": "git",
  3774. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  3775. "reference": "8.x-1.7"
  3776. },
  3777. "dist": {
  3778. "type": "zip",
  3779. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.7.zip",
  3780. "reference": "8.x-1.7",
  3781. "shasum": "3f893843ec30fed18fa1b0cb326e51880b0cb686"
  3782. },
  3783. "require": {
  3784. "drupal/core": "^9.2 || ^10 || ^11"
  3785. },
  3786. "type": "drupal-module",
  3787. "extra": {
  3788. "drupal": {
  3789. "version": "8.x-1.7",
  3790. "datestamp": "1717002098",
  3791. "security-coverage": {
  3792. "status": "covered",
  3793. "message": "Covered by Drupal's security advisory policy"
  3794. }
  3795. }
  3796. },
  3797. "notification-url": "https://packages.drupal.org/8/downloads",
  3798. "license": [
  3799. "GPL-2.0-or-later"
  3800. ],
  3801. "authors": [
  3802. {
  3803. "name": "bnjmnm",
  3804. "homepage": "https://www.drupal.org/user/2369194"
  3805. },
  3806. {
  3807. "name": "jjeff",
  3808. "homepage": "https://www.drupal.org/user/17190"
  3809. },
  3810. {
  3811. "name": "lauriii",
  3812. "homepage": "https://www.drupal.org/user/1078742"
  3813. },
  3814. {
  3815. "name": "litwol",
  3816. "homepage": "https://www.drupal.org/user/78134"
  3817. },
  3818. {
  3819. "name": "mfb",
  3820. "homepage": "https://www.drupal.org/user/12302"
  3821. },
  3822. {
  3823. "name": "mfer",
  3824. "homepage": "https://www.drupal.org/user/25701"
  3825. },
  3826. {
  3827. "name": "mikelutz",
  3828. "homepage": "https://www.drupal.org/user/2972409"
  3829. },
  3830. {
  3831. "name": "nod_",
  3832. "homepage": "https://www.drupal.org/user/598310"
  3833. },
  3834. {
  3835. "name": "phenaproxima",
  3836. "homepage": "https://www.drupal.org/user/205645"
  3837. },
  3838. {
  3839. "name": "RobLoach",
  3840. "homepage": "https://www.drupal.org/user/61114"
  3841. },
  3842. {
  3843. "name": "sun",
  3844. "homepage": "https://www.drupal.org/user/54136"
  3845. },
  3846. {
  3847. "name": "webchick",
  3848. "homepage": "https://www.drupal.org/user/24967"
  3849. },
  3850. {
  3851. "name": "Wim Leers",
  3852. "homepage": "https://www.drupal.org/user/99777"
  3853. },
  3854. {
  3855. "name": "zrpnr",
  3856. "homepage": "https://www.drupal.org/user/1448368"
  3857. }
  3858. ],
  3859. "description": "Provides jQuery UI library.",
  3860. "homepage": "https://www.drupal.org/project/jquery_ui",
  3861. "support": {
  3862. "source": "https://git.drupalcode.org/project/jquery_ui"
  3863. }
  3864. },
  3865. {
  3866. "name": "drupal/jquery_ui_draggable",
  3867. "version": "2.1.0",
  3868. "source": {
  3869. "type": "git",
  3870. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  3871. "reference": "2.1.0"
  3872. },
  3873. "dist": {
  3874. "type": "zip",
  3875. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.1.0.zip",
  3876. "reference": "2.1.0",
  3877. "shasum": "0d014cfff20993d8051efb8f6c9093a4fe5136f3"
  3878. },
  3879. "require": {
  3880. "drupal/core": "^9.2 || ^10 || ^11",
  3881. "drupal/jquery_ui": "^1.7"
  3882. },
  3883. "type": "drupal-module",
  3884. "extra": {
  3885. "drupal": {
  3886. "version": "2.1.0",
  3887. "datestamp": "1717015492",
  3888. "security-coverage": {
  3889. "status": "covered",
  3890. "message": "Covered by Drupal's security advisory policy"
  3891. }
  3892. }
  3893. },
  3894. "notification-url": "https://packages.drupal.org/8/downloads",
  3895. "license": [
  3896. "GPL-2.0-or-later"
  3897. ],
  3898. "authors": [
  3899. {
  3900. "name": "bnjmnm",
  3901. "homepage": "https://www.drupal.org/user/2369194"
  3902. },
  3903. {
  3904. "name": "lauriii",
  3905. "homepage": "https://www.drupal.org/user/1078742"
  3906. },
  3907. {
  3908. "name": "zrpnr",
  3909. "homepage": "https://www.drupal.org/user/1448368"
  3910. }
  3911. ],
  3912. "description": "Provides jQuery UI Draggable library.",
  3913. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  3914. "support": {
  3915. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  3916. }
  3917. },
  3918. {
  3919. "name": "drupal/jquery_ui_droppable",
  3920. "version": "2.1.0",
  3921. "source": {
  3922. "type": "git",
  3923. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  3924. "reference": "2.1.0"
  3925. },
  3926. "dist": {
  3927. "type": "zip",
  3928. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-2.1.0.zip",
  3929. "reference": "2.1.0",
  3930. "shasum": "4a254056d13d7f4208929142d1a37464404c0870"
  3931. },
  3932. "require": {
  3933. "drupal/core": "^9.2 || ^10 || ^11",
  3934. "drupal/jquery_ui": "^1.7",
  3935. "drupal/jquery_ui_draggable": "^2.1"
  3936. },
  3937. "type": "drupal-module",
  3938. "extra": {
  3939. "drupal": {
  3940. "version": "2.1.0",
  3941. "datestamp": "1717031391",
  3942. "security-coverage": {
  3943. "status": "covered",
  3944. "message": "Covered by Drupal's security advisory policy"
  3945. }
  3946. }
  3947. },
  3948. "notification-url": "https://packages.drupal.org/8/downloads",
  3949. "license": [
  3950. "GPL-2.0-or-later"
  3951. ],
  3952. "authors": [
  3953. {
  3954. "name": "bnjmnm",
  3955. "homepage": "https://www.drupal.org/user/2369194"
  3956. },
  3957. {
  3958. "name": "lauriii",
  3959. "homepage": "https://www.drupal.org/user/1078742"
  3960. },
  3961. {
  3962. "name": "zrpnr",
  3963. "homepage": "https://www.drupal.org/user/1448368"
  3964. }
  3965. ],
  3966. "description": "Provides jQuery UI Droppable library.",
  3967. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  3968. "support": {
  3969. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  3970. }
  3971. },
  3972. {
  3973. "name": "drupal/jquery_ui_sortable",
  3974. "version": "2.0.1",
  3975. "source": {
  3976. "type": "git",
  3977. "url": "https://git.drupalcode.org/project/jquery_ui_sortable.git",
  3978. "reference": "2.0.1"
  3979. },
  3980. "dist": {
  3981. "type": "zip",
  3982. "url": "https://ftp.drupal.org/files/projects/jquery_ui_sortable-2.0.1.zip",
  3983. "reference": "2.0.1",
  3984. "shasum": "4e244c03b2b8324193f685677da8847aa3609522"
  3985. },
  3986. "require": {
  3987. "drupal/core": "^9.2 || ^10",
  3988. "drupal/jquery_ui": "^1.5"
  3989. },
  3990. "type": "drupal-module",
  3991. "extra": {
  3992. "drupal": {
  3993. "version": "2.0.1",
  3994. "datestamp": "1694604335",
  3995. "security-coverage": {
  3996. "status": "covered",
  3997. "message": "Covered by Drupal's security advisory policy"
  3998. }
  3999. }
  4000. },
  4001. "notification-url": "https://packages.drupal.org/8/downloads",
  4002. "license": [
  4003. "GPL-2.0-or-later"
  4004. ],
  4005. "authors": [
  4006. {
  4007. "name": "bnjmnm",
  4008. "homepage": "https://www.drupal.org/user/2369194"
  4009. },
  4010. {
  4011. "name": "lauriii",
  4012. "homepage": "https://www.drupal.org/user/1078742"
  4013. },
  4014. {
  4015. "name": "zrpnr",
  4016. "homepage": "https://www.drupal.org/user/1448368"
  4017. }
  4018. ],
  4019. "description": "Provides jQuery UI Sortable library.",
  4020. "homepage": "https://www.drupal.org/project/jquery_ui_sortable",
  4021. "support": {
  4022. "source": "https://git.drupalcode.org/project/jquery_ui_sortable"
  4023. }
  4024. },
  4025. {
  4026. "name": "drupal/js_cookie",
  4027. "version": "1.0.1",
  4028. "source": {
  4029. "type": "git",
  4030. "url": "https://git.drupalcode.org/project/js_cookie.git",
  4031. "reference": "1.0.1"
  4032. },
  4033. "dist": {
  4034. "type": "zip",
  4035. "url": "https://ftp.drupal.org/files/projects/js_cookie-1.0.1.zip",
  4036. "reference": "1.0.1",
  4037. "shasum": "e010b3de64a0d57eef9c1773c4dd7e3d9bd9118c"
  4038. },
  4039. "require": {
  4040. "drupal/core": "^9 || ^10 || ^11"
  4041. },
  4042. "type": "drupal-module",
  4043. "extra": {
  4044. "drupal": {
  4045. "version": "1.0.1",
  4046. "datestamp": "1693951097",
  4047. "security-coverage": {
  4048. "status": "covered",
  4049. "message": "Covered by Drupal's security advisory policy"
  4050. }
  4051. }
  4052. },
  4053. "notification-url": "https://packages.drupal.org/8/downloads",
  4054. "license": [
  4055. "GPL-2.0-or-later"
  4056. ],
  4057. "authors": [
  4058. {
  4059. "name": "Dave Reid",
  4060. "homepage": "https://www.drupal.org/user/53892"
  4061. }
  4062. ],
  4063. "description": "Provides the js-cookie library as a dependency.",
  4064. "homepage": "https://www.drupal.org/project/js_cookie",
  4065. "support": {
  4066. "source": "https://git.drupalcode.org/project/js_cookie"
  4067. }
  4068. },
  4069. {
  4070. "name": "drupal/linkit",
  4071. "version": "6.1.4",
  4072. "source": {
  4073. "type": "git",
  4074. "url": "https://git.drupalcode.org/project/linkit.git",
  4075. "reference": "6.1.4"
  4076. },
  4077. "dist": {
  4078. "type": "zip",
  4079. "url": "https://ftp.drupal.org/files/projects/linkit-6.1.4.zip",
  4080. "reference": "6.1.4",
  4081. "shasum": "f5544a39d691af5efd1532bd5403862a7153f60b"
  4082. },
  4083. "require": {
  4084. "drupal/core": "^10.1"
  4085. },
  4086. "require-dev": {
  4087. "drupal/ckeditor": "*",
  4088. "drupal/imce": "*"
  4089. },
  4090. "type": "drupal-module",
  4091. "extra": {
  4092. "drupal": {
  4093. "version": "6.1.4",
  4094. "datestamp": "1715203830",
  4095. "security-coverage": {
  4096. "status": "covered",
  4097. "message": "Covered by Drupal's security advisory policy"
  4098. }
  4099. }
  4100. },
  4101. "notification-url": "https://packages.drupal.org/8/downloads",
  4102. "license": [
  4103. "GPL-2.0-or-later"
  4104. ],
  4105. "authors": [
  4106. {
  4107. "name": "Emil Stjerneman",
  4108. "homepage": "https://stjerneman.com",
  4109. "email": "emil@stjerneman.com",
  4110. "role": "Maintainer"
  4111. },
  4112. {
  4113. "name": "johnwebdev",
  4114. "homepage": "https://www.drupal.org/user/3331569"
  4115. },
  4116. {
  4117. "name": "mark_fullmer",
  4118. "homepage": "https://www.drupal.org/user/2612816"
  4119. }
  4120. ],
  4121. "description": "Linkit - Enriched linking experience",
  4122. "homepage": "http://drupal.org/project/linkit",
  4123. "support": {
  4124. "source": "http://cgit.drupalcode.org/linkit",
  4125. "issues": "http://drupal.org/project/linkit"
  4126. }
  4127. },
  4128. {
  4129. "name": "drupal/login_emailusername",
  4130. "version": "2.1.0",
  4131. "source": {
  4132. "type": "git",
  4133. "url": "https://git.drupalcode.org/project/login_emailusername.git",
  4134. "reference": "2.1.0"
  4135. },
  4136. "dist": {
  4137. "type": "zip",
  4138. "url": "https://ftp.drupal.org/files/projects/login_emailusername-2.1.0.zip",
  4139. "reference": "2.1.0",
  4140. "shasum": "5a3858d06e7d67110a6cd8eda38cbfeb350f115c"
  4141. },
  4142. "require": {
  4143. "drupal/core": "^8.8 || ^9 || ^10"
  4144. },
  4145. "type": "drupal-module",
  4146. "extra": {
  4147. "drupal": {
  4148. "version": "2.1.0",
  4149. "datestamp": "1677072401",
  4150. "security-coverage": {
  4151. "status": "covered",
  4152. "message": "Covered by Drupal's security advisory policy"
  4153. }
  4154. },
  4155. "branch-alias": {
  4156. "dev-8.x-1.x": "8.1.x-dev"
  4157. }
  4158. },
  4159. "notification-url": "https://packages.drupal.org/8/downloads",
  4160. "license": [
  4161. "GPL-2.0-or-later"
  4162. ],
  4163. "authors": [
  4164. {
  4165. "name": "See contributors",
  4166. "homepage": "https://www.drupal.org/node/2820429/committers",
  4167. "role": "contributor"
  4168. },
  4169. {
  4170. "name": "rjjakes",
  4171. "homepage": "https://www.drupal.org/user/3457245"
  4172. },
  4173. {
  4174. "name": "VladimirAus",
  4175. "homepage": "https://www.drupal.org/user/673120"
  4176. }
  4177. ],
  4178. "description": "Login with the email as username.",
  4179. "homepage": "https://drupal.org/project/login_emailusername",
  4180. "support": {
  4181. "source": "https://git.drupalcode.org/project/login_emailusername",
  4182. "issues": "https://drupal.org/project/issues/login_emailusername"
  4183. }
  4184. },
  4185. {
  4186. "name": "drupal/maillog",
  4187. "version": "1.1.0",
  4188. "source": {
  4189. "type": "git",
  4190. "url": "https://git.drupalcode.org/project/maillog.git",
  4191. "reference": "8.x-1.1"
  4192. },
  4193. "dist": {
  4194. "type": "zip",
  4195. "url": "https://ftp.drupal.org/files/projects/maillog-8.x-1.1.zip",
  4196. "reference": "8.x-1.1",
  4197. "shasum": "50199b2b37325f4a167a82ec2d1de366cda6f898"
  4198. },
  4199. "require": {
  4200. "drupal/core": "^9 || ^10"
  4201. },
  4202. "type": "drupal-module",
  4203. "extra": {
  4204. "drupal": {
  4205. "version": "8.x-1.1",
  4206. "datestamp": "1685616898",
  4207. "security-coverage": {
  4208. "status": "covered",
  4209. "message": "Covered by Drupal's security advisory policy"
  4210. }
  4211. }
  4212. },
  4213. "notification-url": "https://packages.drupal.org/8/downloads",
  4214. "license": [
  4215. "GPL-2.0-or-later"
  4216. ],
  4217. "authors": [
  4218. {
  4219. "name": "berdir",
  4220. "homepage": "https://www.drupal.org/user/214652"
  4221. },
  4222. {
  4223. "name": "damienmckenna",
  4224. "homepage": "https://www.drupal.org/user/108450"
  4225. },
  4226. {
  4227. "name": "miro_dietiker",
  4228. "homepage": "https://www.drupal.org/user/227761"
  4229. },
  4230. {
  4231. "name": "pluess",
  4232. "homepage": "https://www.drupal.org/user/84659"
  4233. }
  4234. ],
  4235. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4236. "homepage": "https://www.drupal.org/project/maillog",
  4237. "support": {
  4238. "source": "https://git.drupalcode.org/project/maillog"
  4239. }
  4240. },
  4241. {
  4242. "name": "drupal/menu_admin_per_menu",
  4243. "version": "1.6.0",
  4244. "source": {
  4245. "type": "git",
  4246. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4247. "reference": "8.x-1.6"
  4248. },
  4249. "dist": {
  4250. "type": "zip",
  4251. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.6.zip",
  4252. "reference": "8.x-1.6",
  4253. "shasum": "8ebbab26f0dad2b1f79d7aa185295ca033eece7a"
  4254. },
  4255. "require": {
  4256. "drupal/core": "^10.2 || ^11.0"
  4257. },
  4258. "type": "drupal-module",
  4259. "extra": {
  4260. "drupal": {
  4261. "version": "8.x-1.6",
  4262. "datestamp": "1726150514",
  4263. "security-coverage": {
  4264. "status": "covered",
  4265. "message": "Covered by Drupal's security advisory policy"
  4266. }
  4267. }
  4268. },
  4269. "notification-url": "https://packages.drupal.org/8/downloads",
  4270. "license": [
  4271. "GPL-2.0-or-later"
  4272. ],
  4273. "authors": [
  4274. {
  4275. "name": "anrikun",
  4276. "homepage": "https://www.drupal.org/user/410199"
  4277. },
  4278. {
  4279. "name": "jeroent",
  4280. "homepage": "https://www.drupal.org/user/2228934"
  4281. },
  4282. {
  4283. "name": "jonas139",
  4284. "homepage": "https://www.drupal.org/user/2873401"
  4285. },
  4286. {
  4287. "name": "mkdok",
  4288. "homepage": "https://www.drupal.org/user/3308753"
  4289. }
  4290. ],
  4291. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4292. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4293. "keywords": [
  4294. "Drupal"
  4295. ],
  4296. "support": {
  4297. "source": "https://git.drupalcode.org/project/menu_admin_per_menu",
  4298. "issues": "https://drupal.org/project/issues/menu_admin_per_menu"
  4299. }
  4300. },
  4301. {
  4302. "name": "drupal/metatag",
  4303. "version": "2.0.2",
  4304. "source": {
  4305. "type": "git",
  4306. "url": "https://git.drupalcode.org/project/metatag.git",
  4307. "reference": "2.0.2"
  4308. },
  4309. "dist": {
  4310. "type": "zip",
  4311. "url": "https://ftp.drupal.org/files/projects/metatag-2.0.2.zip",
  4312. "reference": "2.0.2",
  4313. "shasum": "748013c50a0ed5e10359413bb3481392a0bf0d3f"
  4314. },
  4315. "require": {
  4316. "drupal/core": "^9.4 || ^10 || ^11",
  4317. "drupal/token": "^1.0",
  4318. "php": ">=8.0"
  4319. },
  4320. "require-dev": {
  4321. "drupal/hal": "^1 || ^2 || ^9",
  4322. "drupal/metatag_dc": "*",
  4323. "drupal/metatag_open_graph": "*",
  4324. "drupal/page_manager": "^4.0",
  4325. "drupal/redirect": "^1.0",
  4326. "ergebnis/composer-normalize": "*",
  4327. "mpyw/phpunit-patch-serializable-comparison": "*"
  4328. },
  4329. "type": "drupal-module",
  4330. "extra": {
  4331. "drupal": {
  4332. "version": "2.0.2",
  4333. "datestamp": "1722869772",
  4334. "security-coverage": {
  4335. "status": "covered",
  4336. "message": "Covered by Drupal's security advisory policy"
  4337. }
  4338. },
  4339. "composer-normalize": {
  4340. "indent-size": 2,
  4341. "indent-style": "space"
  4342. }
  4343. },
  4344. "notification-url": "https://packages.drupal.org/8/downloads",
  4345. "license": [
  4346. "GPL-2.0-or-later"
  4347. ],
  4348. "authors": [
  4349. {
  4350. "name": "See contributors",
  4351. "homepage": "https://www.drupal.org/node/640498/committers",
  4352. "role": "Developer"
  4353. },
  4354. {
  4355. "name": "dave reid",
  4356. "homepage": "https://www.drupal.org/user/53892"
  4357. }
  4358. ],
  4359. "description": "Manage meta tags for all entities.",
  4360. "homepage": "https://www.drupal.org/project/metatag",
  4361. "keywords": [
  4362. "Drupal",
  4363. "seo"
  4364. ],
  4365. "support": {
  4366. "source": "https://git.drupalcode.org/project/metatag",
  4367. "issues": "https://www.drupal.org/project/issues/metatag",
  4368. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  4369. }
  4370. },
  4371. {
  4372. "name": "drupal/pathauto",
  4373. "version": "1.13.0",
  4374. "source": {
  4375. "type": "git",
  4376. "url": "https://git.drupalcode.org/project/pathauto.git",
  4377. "reference": "8.x-1.13"
  4378. },
  4379. "dist": {
  4380. "type": "zip",
  4381. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.13.zip",
  4382. "reference": "8.x-1.13",
  4383. "shasum": "e64b5a82cf1b8ab48bce400b21ae6fc99c8078fd"
  4384. },
  4385. "require": {
  4386. "drupal/core": "^9.4 || ^10 || ^11",
  4387. "drupal/ctools": "*",
  4388. "drupal/token": "*"
  4389. },
  4390. "require-dev": {
  4391. "drupal/forum": "*"
  4392. },
  4393. "suggest": {
  4394. "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."
  4395. },
  4396. "type": "drupal-module",
  4397. "extra": {
  4398. "drupal": {
  4399. "version": "8.x-1.13",
  4400. "datestamp": "1722507672",
  4401. "security-coverage": {
  4402. "status": "covered",
  4403. "message": "Covered by Drupal's security advisory policy"
  4404. }
  4405. },
  4406. "drush": {
  4407. "services": {
  4408. "drush.services.yml": "^9 || ^10"
  4409. }
  4410. }
  4411. },
  4412. "notification-url": "https://packages.drupal.org/8/downloads",
  4413. "license": [
  4414. "GPL-2.0-or-later"
  4415. ],
  4416. "authors": [
  4417. {
  4418. "name": "Berdir",
  4419. "homepage": "https://www.drupal.org/user/214652"
  4420. },
  4421. {
  4422. "name": "Dave Reid",
  4423. "homepage": "https://www.drupal.org/user/53892"
  4424. },
  4425. {
  4426. "name": "Freso",
  4427. "homepage": "https://www.drupal.org/user/27504"
  4428. },
  4429. {
  4430. "name": "greggles",
  4431. "homepage": "https://www.drupal.org/user/36762"
  4432. }
  4433. ],
  4434. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4435. "homepage": "https://www.drupal.org/project/pathauto",
  4436. "support": {
  4437. "source": "https://cgit.drupalcode.org/pathauto",
  4438. "issues": "https://www.drupal.org/project/issues/pathauto",
  4439. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  4440. }
  4441. },
  4442. {
  4443. "name": "drupal/profile",
  4444. "version": "1.11.0",
  4445. "source": {
  4446. "type": "git",
  4447. "url": "https://git.drupalcode.org/project/profile.git",
  4448. "reference": "8.x-1.11"
  4449. },
  4450. "dist": {
  4451. "type": "zip",
  4452. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.11.zip",
  4453. "reference": "8.x-1.11",
  4454. "shasum": "cdb6c7180be1f0a2d8a03c1a933d939f3d878cfb"
  4455. },
  4456. "require": {
  4457. "drupal/core": "^9 || ^10 || ^11",
  4458. "drupal/entity": "^1.0",
  4459. "php": "^7.4 || ^8.0"
  4460. },
  4461. "require-dev": {
  4462. "drupal/search_api": "~1.30",
  4463. "drupal/token": "^1.7"
  4464. },
  4465. "type": "drupal-module",
  4466. "extra": {
  4467. "drupal": {
  4468. "version": "8.x-1.11",
  4469. "datestamp": "1721735588",
  4470. "security-coverage": {
  4471. "status": "covered",
  4472. "message": "Covered by Drupal's security advisory policy"
  4473. }
  4474. }
  4475. },
  4476. "notification-url": "https://packages.drupal.org/8/downloads",
  4477. "license": [
  4478. "GPL-2.0-or-later"
  4479. ],
  4480. "authors": [
  4481. {
  4482. "name": "bojanz",
  4483. "homepage": "https://www.drupal.org/user/86106"
  4484. },
  4485. {
  4486. "name": "daggerhart",
  4487. "homepage": "https://www.drupal.org/user/167806"
  4488. },
  4489. {
  4490. "name": "fago",
  4491. "homepage": "https://www.drupal.org/user/16747"
  4492. },
  4493. {
  4494. "name": "jsacksick",
  4495. "homepage": "https://www.drupal.org/user/972218"
  4496. },
  4497. {
  4498. "name": "mglaman",
  4499. "homepage": "https://www.drupal.org/user/2416470"
  4500. },
  4501. {
  4502. "name": "pcambra",
  4503. "homepage": "https://www.drupal.org/user/122101"
  4504. }
  4505. ],
  4506. "description": "Provides configurable user profiles.",
  4507. "homepage": "https://drupal.org/project/profile",
  4508. "support": {
  4509. "source": "https://git.drupalcode.org/project/profile"
  4510. }
  4511. },
  4512. {
  4513. "name": "drupal/redirect",
  4514. "version": "1.10.0",
  4515. "source": {
  4516. "type": "git",
  4517. "url": "https://git.drupalcode.org/project/redirect.git",
  4518. "reference": "8.x-1.10"
  4519. },
  4520. "dist": {
  4521. "type": "zip",
  4522. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.10.zip",
  4523. "reference": "8.x-1.10",
  4524. "shasum": "9d72d7e0717dbdea3ab3306c5d6840da5bd3024c"
  4525. },
  4526. "require": {
  4527. "drupal/core": "^9.2 || ^10 || ^11"
  4528. },
  4529. "type": "drupal-module",
  4530. "extra": {
  4531. "drupal": {
  4532. "version": "8.x-1.10",
  4533. "datestamp": "1723277641",
  4534. "security-coverage": {
  4535. "status": "covered",
  4536. "message": "Covered by Drupal's security advisory policy"
  4537. }
  4538. }
  4539. },
  4540. "notification-url": "https://packages.drupal.org/8/downloads",
  4541. "license": [
  4542. "GPL-2.0-or-later"
  4543. ],
  4544. "authors": [
  4545. {
  4546. "name": "Berdir",
  4547. "homepage": "https://www.drupal.org/user/214652"
  4548. },
  4549. {
  4550. "name": "dave reid",
  4551. "homepage": "https://www.drupal.org/user/53892"
  4552. },
  4553. {
  4554. "name": "Kristen Pol",
  4555. "homepage": "https://www.drupal.org/user/8389"
  4556. },
  4557. {
  4558. "name": "pifagor",
  4559. "homepage": "https://www.drupal.org/user/2375692"
  4560. }
  4561. ],
  4562. "description": "Allows users to redirect from old URLs to new URLs.",
  4563. "homepage": "https://www.drupal.org/project/redirect",
  4564. "support": {
  4565. "source": "https://git.drupalcode.org/project/redirect"
  4566. }
  4567. },
  4568. {
  4569. "name": "drupal/redis",
  4570. "version": "1.8.0",
  4571. "source": {
  4572. "type": "git",
  4573. "url": "https://git.drupalcode.org/project/redis.git",
  4574. "reference": "8.x-1.8"
  4575. },
  4576. "dist": {
  4577. "type": "zip",
  4578. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.8.zip",
  4579. "reference": "8.x-1.8",
  4580. "shasum": "6de73086d29de3b041594bae97c74401cbf05c3d"
  4581. },
  4582. "require": {
  4583. "drupal/core": "^9.3 || ^10 || ^11"
  4584. },
  4585. "suggest": {
  4586. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  4587. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  4588. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  4589. },
  4590. "type": "drupal-module",
  4591. "extra": {
  4592. "drupal": {
  4593. "version": "8.x-1.8",
  4594. "datestamp": "1723934771",
  4595. "security-coverage": {
  4596. "status": "covered",
  4597. "message": "Covered by Drupal's security advisory policy"
  4598. }
  4599. }
  4600. },
  4601. "autoload": {
  4602. "psr-4": {
  4603. "Drupal\\redis\\": "src"
  4604. }
  4605. },
  4606. "notification-url": "https://packages.drupal.org/8/downloads",
  4607. "license": [
  4608. "GPL-2.0-or-later"
  4609. ],
  4610. "authors": [
  4611. {
  4612. "name": "berdir",
  4613. "homepage": "https://www.drupal.org/user/214652"
  4614. },
  4615. {
  4616. "name": "greg.1.anderson",
  4617. "homepage": "https://www.drupal.org/user/438598"
  4618. },
  4619. {
  4620. "name": "kporras07",
  4621. "homepage": "https://www.drupal.org/user/1349780"
  4622. },
  4623. {
  4624. "name": "pounard",
  4625. "homepage": "https://www.drupal.org/user/240164"
  4626. }
  4627. ],
  4628. "description": "Integration of Drupal with the Redis key-value store.",
  4629. "homepage": "https://www.drupal.org/project/redis",
  4630. "support": {
  4631. "source": "https://git.drupalcode.org/project/redis"
  4632. }
  4633. },
  4634. {
  4635. "name": "drupal/restui",
  4636. "version": "1.22.0",
  4637. "source": {
  4638. "type": "git",
  4639. "url": "https://git.drupalcode.org/project/restui.git",
  4640. "reference": "8.x-1.22"
  4641. },
  4642. "dist": {
  4643. "type": "zip",
  4644. "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.22.zip",
  4645. "reference": "8.x-1.22",
  4646. "shasum": "7c9fb14c574f8a4090b77b1bcbc5be141409a383"
  4647. },
  4648. "require": {
  4649. "drupal/core": "^9.5 || ^10 || ^11"
  4650. },
  4651. "type": "drupal-module",
  4652. "extra": {
  4653. "drupal": {
  4654. "version": "8.x-1.22",
  4655. "datestamp": "1721134189",
  4656. "security-coverage": {
  4657. "status": "covered",
  4658. "message": "Covered by Drupal's security advisory policy"
  4659. }
  4660. }
  4661. },
  4662. "notification-url": "https://packages.drupal.org/8/downloads",
  4663. "license": [
  4664. "GPL-2.0-or-later"
  4665. ],
  4666. "authors": [
  4667. {
  4668. "name": "-enzo-",
  4669. "homepage": "https://www.drupal.org/user/294937"
  4670. },
  4671. {
  4672. "name": "clemens.tolboom",
  4673. "homepage": "https://www.drupal.org/user/125814"
  4674. },
  4675. {
  4676. "name": "juampynr",
  4677. "homepage": "https://www.drupal.org/user/682736"
  4678. },
  4679. {
  4680. "name": "kamkejj",
  4681. "homepage": "https://www.drupal.org/user/81043"
  4682. },
  4683. {
  4684. "name": "vipin.mittal18",
  4685. "homepage": "https://www.drupal.org/user/319716"
  4686. }
  4687. ],
  4688. "description": "Provides a user interface to manage REST resources.",
  4689. "homepage": "https://www.drupal.org/project/restui",
  4690. "support": {
  4691. "source": "https://git.drupalcode.org/project/restui"
  4692. }
  4693. },
  4694. {
  4695. "name": "drupal/search_api",
  4696. "version": "1.35.0",
  4697. "source": {
  4698. "type": "git",
  4699. "url": "https://git.drupalcode.org/project/search_api.git",
  4700. "reference": "8.x-1.35"
  4701. },
  4702. "dist": {
  4703. "type": "zip",
  4704. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.35.zip",
  4705. "reference": "8.x-1.35",
  4706. "shasum": "d119726e870f793c6470d2a4fa9286662c5eb45d"
  4707. },
  4708. "require": {
  4709. "drupal/core": "^10.1 || ^11"
  4710. },
  4711. "conflict": {
  4712. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  4713. },
  4714. "require-dev": {
  4715. "drupal/language_fallback_fix": "@dev",
  4716. "drupal/search_api_autocomplete": "@dev",
  4717. "drupal/search_api_db": "*"
  4718. },
  4719. "suggest": {
  4720. "drupal/facets": "Adds the ability to create faceted searches.",
  4721. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  4722. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  4723. },
  4724. "type": "drupal-module",
  4725. "extra": {
  4726. "drupal": {
  4727. "version": "8.x-1.35",
  4728. "datestamp": "1718551025",
  4729. "security-coverage": {
  4730. "status": "covered",
  4731. "message": "Covered by Drupal's security advisory policy"
  4732. }
  4733. },
  4734. "drush": {
  4735. "services": {
  4736. "drush.services.yml": "^9 || ^10 || ^11"
  4737. }
  4738. }
  4739. },
  4740. "notification-url": "https://packages.drupal.org/8/downloads",
  4741. "license": [
  4742. "GPL-2.0-or-later"
  4743. ],
  4744. "authors": [
  4745. {
  4746. "name": "Thomas Seidl",
  4747. "homepage": "https://www.drupal.org/u/drunken-monkey"
  4748. },
  4749. {
  4750. "name": "Nick Veenhof",
  4751. "homepage": "https://www.drupal.org/u/nick_vh"
  4752. },
  4753. {
  4754. "name": "See other contributors",
  4755. "homepage": "https://www.drupal.org/node/790418/committers"
  4756. }
  4757. ],
  4758. "description": "Provides a generic framework for modules offering search capabilities.",
  4759. "homepage": "https://www.drupal.org/project/search_api",
  4760. "support": {
  4761. "source": "https://git.drupalcode.org/project/search_api",
  4762. "issues": "https://www.drupal.org/project/issues/search_api",
  4763. "irc": "irc://irc.freenode.org/drupal-search-api"
  4764. }
  4765. },
  4766. {
  4767. "name": "drupal/seven",
  4768. "version": "1.0.0",
  4769. "source": {
  4770. "type": "git",
  4771. "url": "https://git.drupalcode.org/project/seven.git",
  4772. "reference": "1.0.0"
  4773. },
  4774. "dist": {
  4775. "type": "zip",
  4776. "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip",
  4777. "reference": "1.0.0",
  4778. "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd"
  4779. },
  4780. "require": {
  4781. "drupal/core": "^9 || ^10"
  4782. },
  4783. "type": "drupal-theme",
  4784. "extra": {
  4785. "drupal": {
  4786. "version": "1.0.0",
  4787. "datestamp": "1683652106",
  4788. "security-coverage": {
  4789. "status": "covered",
  4790. "message": "Covered by Drupal's security advisory policy"
  4791. }
  4792. }
  4793. },
  4794. "notification-url": "https://packages.drupal.org/8/downloads",
  4795. "license": [
  4796. "GPL-2.0-or-later"
  4797. ],
  4798. "authors": [
  4799. {
  4800. "name": "bnjmnm",
  4801. "homepage": "https://www.drupal.org/user/2369194"
  4802. },
  4803. {
  4804. "name": "lauriii",
  4805. "homepage": "https://www.drupal.org/user/1078742"
  4806. },
  4807. {
  4808. "name": "mcrittenden",
  4809. "homepage": "https://www.drupal.org/user/420631"
  4810. },
  4811. {
  4812. "name": "mrfelton",
  4813. "homepage": "https://www.drupal.org/user/305669"
  4814. },
  4815. {
  4816. "name": "TravisCarden",
  4817. "homepage": "https://www.drupal.org/user/236758"
  4818. }
  4819. ],
  4820. "description": "The Seven theme from Drupal 8/9 moved to contrib",
  4821. "homepage": "https://www.drupal.org/project/seven",
  4822. "support": {
  4823. "source": "https://git.drupalcode.org/project/seven"
  4824. }
  4825. },
  4826. {
  4827. "name": "drupal/simple_sitemap",
  4828. "version": "4.2.1",
  4829. "source": {
  4830. "type": "git",
  4831. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  4832. "reference": "4.2.1"
  4833. },
  4834. "dist": {
  4835. "type": "zip",
  4836. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-4.2.1.zip",
  4837. "reference": "4.2.1",
  4838. "shasum": "d96b481571ca2fecdb305e87d2557f9338116864"
  4839. },
  4840. "require": {
  4841. "drupal/core": "^10.2 || ^11",
  4842. "ext-xmlwriter": "*"
  4843. },
  4844. "type": "drupal-module",
  4845. "extra": {
  4846. "drupal": {
  4847. "version": "4.2.1",
  4848. "datestamp": "1723802052",
  4849. "security-coverage": {
  4850. "status": "covered",
  4851. "message": "Covered by Drupal's security advisory policy"
  4852. }
  4853. },
  4854. "drush": {
  4855. "services": {
  4856. "drush.services.yml": ">=9"
  4857. }
  4858. }
  4859. },
  4860. "notification-url": "https://packages.drupal.org/8/downloads",
  4861. "license": [
  4862. "GPL-2.0-or-later"
  4863. ],
  4864. "authors": [
  4865. {
  4866. "name": "Pawel Ginalski (gbyte)",
  4867. "homepage": "https://www.drupal.org/u/gbyte",
  4868. "email": "contact@gbyte.dev",
  4869. "role": "Maintainer"
  4870. },
  4871. {
  4872. "name": "walkingdexter",
  4873. "homepage": "https://www.drupal.org/user/3251330"
  4874. }
  4875. ],
  4876. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  4877. "homepage": "https://drupal.org/project/simple_sitemap",
  4878. "support": {
  4879. "source": "https://cgit.drupalcode.org/simple_sitemap",
  4880. "issues": "https://drupal.org/project/issues/simple_sitemap"
  4881. }
  4882. },
  4883. {
  4884. "name": "drupal/stable",
  4885. "version": "2.1.0",
  4886. "source": {
  4887. "type": "git",
  4888. "url": "https://git.drupalcode.org/project/stable.git",
  4889. "reference": "2.1.0"
  4890. },
  4891. "dist": {
  4892. "type": "zip",
  4893. "url": "https://ftp.drupal.org/files/projects/stable-2.1.0.zip",
  4894. "reference": "2.1.0",
  4895. "shasum": "fb2b010190e492e976e1db9692a8a46d5b7d15bb"
  4896. },
  4897. "require": {
  4898. "drupal/core": "^10.3 || ^11"
  4899. },
  4900. "type": "drupal-theme",
  4901. "extra": {
  4902. "drupal": {
  4903. "version": "2.1.0",
  4904. "datestamp": "1721202956",
  4905. "security-coverage": {
  4906. "status": "covered",
  4907. "message": "Covered by Drupal's security advisory policy"
  4908. }
  4909. }
  4910. },
  4911. "notification-url": "https://packages.drupal.org/8/downloads",
  4912. "license": [
  4913. "GPL-2.0-or-later"
  4914. ],
  4915. "authors": [
  4916. {
  4917. "name": "bnjmnm",
  4918. "homepage": "https://www.drupal.org/user/2369194"
  4919. },
  4920. {
  4921. "name": "lauriii",
  4922. "homepage": "https://www.drupal.org/user/1078742"
  4923. },
  4924. {
  4925. "name": "Rajeshreeputra",
  4926. "homepage": "https://www.drupal.org/user/3418561"
  4927. },
  4928. {
  4929. "name": "star-szr",
  4930. "homepage": "https://www.drupal.org/user/1167326"
  4931. }
  4932. ],
  4933. "description": "A base theme using Drupal core markup and CSS.",
  4934. "homepage": "https://www.drupal.org/project/stable",
  4935. "support": {
  4936. "source": "https://git.drupalcode.org/project/stable"
  4937. }
  4938. },
  4939. {
  4940. "name": "drupal/synonyms",
  4941. "version": "2.1.4",
  4942. "source": {
  4943. "type": "git",
  4944. "url": "https://git.drupalcode.org/project/synonyms.git",
  4945. "reference": "2.1.4"
  4946. },
  4947. "dist": {
  4948. "type": "zip",
  4949. "url": "https://ftp.drupal.org/files/projects/synonyms-2.1.4.zip",
  4950. "reference": "2.1.4",
  4951. "shasum": "ee0f1a7e0d1f565c35cafeb437b59366b76684b3"
  4952. },
  4953. "require": {
  4954. "drupal/core": "^9 || ^10 || ^11"
  4955. },
  4956. "require-dev": {
  4957. "drupal/synonyms_list_field": "*"
  4958. },
  4959. "type": "drupal-module",
  4960. "extra": {
  4961. "drupal": {
  4962. "version": "2.1.4",
  4963. "datestamp": "1723069842",
  4964. "security-coverage": {
  4965. "status": "covered",
  4966. "message": "Covered by Drupal's security advisory policy"
  4967. }
  4968. }
  4969. },
  4970. "notification-url": "https://packages.drupal.org/8/downloads",
  4971. "license": [
  4972. "GPL-2.0-or-later"
  4973. ],
  4974. "authors": [
  4975. {
  4976. "name": "Bojan Zivanovic",
  4977. "homepage": "https://www.drupal.org/u/bojanz",
  4978. "role": "Author and D5, D6 and D7 versions developer."
  4979. },
  4980. {
  4981. "name": "Alex Trosenko",
  4982. "homepage": "https://www.drupal.org/u/bucefal91",
  4983. "role": "D7 and D8 versions developer."
  4984. },
  4985. {
  4986. "name": "Duro Arezina",
  4987. "homepage": "https://www.drupal.org/u/devad",
  4988. "role": "D8+ versions maintenance"
  4989. },
  4990. {
  4991. "name": "See other contributors",
  4992. "homepage": "https://www.drupal.org/node/148775/committers"
  4993. }
  4994. ],
  4995. "description": "Provides synonyms feature for all entities.",
  4996. "homepage": "https://www.drupal.org/project/synonyms",
  4997. "support": {
  4998. "source": "https://git.drupalcode.org/project/synonyms",
  4999. "issues": "https://www.drupal.org/project/issues/synonyms"
  5000. }
  5001. },
  5002. {
  5003. "name": "drupal/token",
  5004. "version": "1.15.0",
  5005. "source": {
  5006. "type": "git",
  5007. "url": "https://git.drupalcode.org/project/token.git",
  5008. "reference": "8.x-1.15"
  5009. },
  5010. "dist": {
  5011. "type": "zip",
  5012. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.15.zip",
  5013. "reference": "8.x-1.15",
  5014. "shasum": "5916fbccc86458a5f51e71f832ac70ff4c84ebdf"
  5015. },
  5016. "require": {
  5017. "drupal/core": "^9.2 || ^10 || ^11"
  5018. },
  5019. "require-dev": {
  5020. "drupal/book": "*"
  5021. },
  5022. "type": "drupal-module",
  5023. "extra": {
  5024. "drupal": {
  5025. "version": "8.x-1.15",
  5026. "datestamp": "1722206211",
  5027. "security-coverage": {
  5028. "status": "covered",
  5029. "message": "Covered by Drupal's security advisory policy"
  5030. }
  5031. },
  5032. "drush": {
  5033. "services": {
  5034. "drush.services.yml": ">=9"
  5035. }
  5036. }
  5037. },
  5038. "notification-url": "https://packages.drupal.org/8/downloads",
  5039. "license": [
  5040. "GPL-2.0-or-later"
  5041. ],
  5042. "authors": [
  5043. {
  5044. "name": "Berdir",
  5045. "homepage": "https://www.drupal.org/user/214652"
  5046. },
  5047. {
  5048. "name": "Dave Reid",
  5049. "homepage": "https://www.drupal.org/user/53892"
  5050. },
  5051. {
  5052. "name": "eaton",
  5053. "homepage": "https://www.drupal.org/user/16496"
  5054. },
  5055. {
  5056. "name": "fago",
  5057. "homepage": "https://www.drupal.org/user/16747"
  5058. },
  5059. {
  5060. "name": "greggles",
  5061. "homepage": "https://www.drupal.org/user/36762"
  5062. },
  5063. {
  5064. "name": "mikeryan",
  5065. "homepage": "https://www.drupal.org/user/4420"
  5066. }
  5067. ],
  5068. "description": "Provides a user interface for the Token API, some missing core tokens.",
  5069. "homepage": "https://www.drupal.org/project/token",
  5070. "support": {
  5071. "source": "https://git.drupalcode.org/project/token"
  5072. }
  5073. },
  5074. {
  5075. "name": "drupal/translation_views",
  5076. "version": "1.0.0-alpha11",
  5077. "source": {
  5078. "type": "git",
  5079. "url": "https://git.drupalcode.org/project/translation_views.git",
  5080. "reference": "8.x-1.0-alpha11"
  5081. },
  5082. "dist": {
  5083. "type": "zip",
  5084. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  5085. "reference": "8.x-1.0-alpha11",
  5086. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  5087. },
  5088. "require": {
  5089. "drupal/core": "^8.8 || ^9 || ^10"
  5090. },
  5091. "require-dev": {
  5092. "drupal/translators_content": "^1.0@alpha"
  5093. },
  5094. "type": "drupal-module",
  5095. "extra": {
  5096. "drupal": {
  5097. "version": "8.x-1.0-alpha11",
  5098. "datestamp": "1679660668",
  5099. "security-coverage": {
  5100. "status": "not-covered",
  5101. "message": "Project has not opted into security advisory coverage!"
  5102. }
  5103. }
  5104. },
  5105. "notification-url": "https://packages.drupal.org/8/downloads",
  5106. "license": [
  5107. "GPL-2.0-or-later"
  5108. ],
  5109. "authors": [
  5110. {
  5111. "name": "matsbla",
  5112. "homepage": "https://www.drupal.org/user/2325394"
  5113. },
  5114. {
  5115. "name": "vlad.dancer",
  5116. "homepage": "https://www.drupal.org/user/903844"
  5117. }
  5118. ],
  5119. "description": "Create customized lists and queries of translations from your database.",
  5120. "homepage": "https://www.drupal.org/project/translation_views",
  5121. "support": {
  5122. "source": "https://git.drupalcode.org/project/translation_views"
  5123. }
  5124. },
  5125. {
  5126. "name": "drupal/upgrade_status",
  5127. "version": "4.3.5",
  5128. "source": {
  5129. "type": "git",
  5130. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  5131. "reference": "4.3.5"
  5132. },
  5133. "dist": {
  5134. "type": "zip",
  5135. "url": "https://ftp.drupal.org/files/projects/upgrade_status-4.3.5.zip",
  5136. "reference": "4.3.5",
  5137. "shasum": "353c17f14c855f5ba0fe48c6a4f6486360c066a7"
  5138. },
  5139. "require": {
  5140. "dekor/php-array-table": "^2.0",
  5141. "drupal/core": "^9 || ^10 || ^11",
  5142. "mglaman/phpstan-drupal": "^1.2.11",
  5143. "nikic/php-parser": "^4.0.0|^5.0.0",
  5144. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  5145. "symfony/process": "^3.4|^4.0|^5.0|^6.0|^7.0",
  5146. "webflo/drupal-finder": "^1.2"
  5147. },
  5148. "require-dev": {
  5149. "drush/drush": "^11|^12|^13"
  5150. },
  5151. "type": "drupal-module",
  5152. "extra": {
  5153. "drupal": {
  5154. "version": "4.3.5",
  5155. "datestamp": "1723044184",
  5156. "security-coverage": {
  5157. "status": "covered",
  5158. "message": "Covered by Drupal's security advisory policy"
  5159. }
  5160. },
  5161. "drush": {
  5162. "services": {
  5163. "drush.services.yml": "^9 || ^10"
  5164. }
  5165. }
  5166. },
  5167. "notification-url": "https://packages.drupal.org/8/downloads",
  5168. "license": [
  5169. "GPL-2.0-or-later"
  5170. ],
  5171. "authors": [
  5172. {
  5173. "name": "Gábor Hojtsy",
  5174. "homepage": "https://www.drupal.org/user/4166"
  5175. }
  5176. ],
  5177. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  5178. "homepage": "http://drupal.org/project/upgrade_status",
  5179. "support": {
  5180. "source": "https://git.drupalcode.org/project/upgrade_status"
  5181. }
  5182. },
  5183. {
  5184. "name": "drupal/views_bulk_edit",
  5185. "version": "3.0.0",
  5186. "source": {
  5187. "type": "git",
  5188. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5189. "reference": "3.0.0"
  5190. },
  5191. "dist": {
  5192. "type": "zip",
  5193. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-3.0.0.zip",
  5194. "reference": "3.0.0",
  5195. "shasum": "3b16079aa95fb4834561fcfd1197cce73b7f4b88"
  5196. },
  5197. "require": {
  5198. "drupal/core": "^9.4 || ^10 || ^11",
  5199. "php": ">=8.1"
  5200. },
  5201. "require-dev": {
  5202. "drupal/views_bulk_operations": "~4.2.4"
  5203. },
  5204. "suggest": {
  5205. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  5206. },
  5207. "type": "drupal-module",
  5208. "extra": {
  5209. "drupal": {
  5210. "version": "3.0.0",
  5211. "datestamp": "1725358398",
  5212. "security-coverage": {
  5213. "status": "covered",
  5214. "message": "Covered by Drupal's security advisory policy"
  5215. }
  5216. }
  5217. },
  5218. "notification-url": "https://packages.drupal.org/8/downloads",
  5219. "license": [
  5220. "GPL-2.0+"
  5221. ],
  5222. "authors": [
  5223. {
  5224. "name": "Marcin Grabias",
  5225. "homepage": "https://www.drupal.org/u/graber"
  5226. },
  5227. {
  5228. "name": "benjy",
  5229. "homepage": "https://www.drupal.org/user/1852732"
  5230. },
  5231. {
  5232. "name": "graber",
  5233. "homepage": "https://www.drupal.org/user/1599440"
  5234. },
  5235. {
  5236. "name": "grevil",
  5237. "homepage": "https://www.drupal.org/user/3668491"
  5238. },
  5239. {
  5240. "name": "joseph.olstad",
  5241. "homepage": "https://www.drupal.org/user/1321830"
  5242. }
  5243. ],
  5244. "description": "Allows bulk edition of entity field values.",
  5245. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5246. "support": {
  5247. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5248. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5249. }
  5250. },
  5251. {
  5252. "name": "drupal/views_bulk_operations",
  5253. "version": "4.2.7",
  5254. "source": {
  5255. "type": "git",
  5256. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5257. "reference": "4.2.7"
  5258. },
  5259. "dist": {
  5260. "type": "zip",
  5261. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.2.7.zip",
  5262. "reference": "4.2.7",
  5263. "shasum": "25c9fa531ac49664a361fdd2202eec0a6e53bc61"
  5264. },
  5265. "require": {
  5266. "drupal/core": "^9.4 || ^10 || ^11",
  5267. "php": ">=7.4.0"
  5268. },
  5269. "require-dev": {
  5270. "drush/drush": "^12"
  5271. },
  5272. "suggest": {
  5273. "drush/drush": "^11 || ^12"
  5274. },
  5275. "type": "drupal-module",
  5276. "extra": {
  5277. "drupal": {
  5278. "version": "4.2.7",
  5279. "datestamp": "1717665214",
  5280. "security-coverage": {
  5281. "status": "covered",
  5282. "message": "Covered by Drupal's security advisory policy"
  5283. }
  5284. },
  5285. "drush": {
  5286. "services": {
  5287. "drush.services.yml": "^10 || ^11"
  5288. }
  5289. }
  5290. },
  5291. "notification-url": "https://packages.drupal.org/8/downloads",
  5292. "license": [
  5293. "GPL-2.0-or-later"
  5294. ],
  5295. "authors": [
  5296. {
  5297. "name": "Marcin Grabias",
  5298. "homepage": "https://www.drupal.org/u/graber"
  5299. },
  5300. {
  5301. "name": "graber",
  5302. "homepage": "https://www.drupal.org/user/1599440"
  5303. },
  5304. {
  5305. "name": "joelpittet",
  5306. "homepage": "https://www.drupal.org/user/160302"
  5307. }
  5308. ],
  5309. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5310. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5311. "support": {
  5312. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  5313. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5314. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5315. }
  5316. },
  5317. {
  5318. "name": "drupal/workflow",
  5319. "version": "1.8.0",
  5320. "source": {
  5321. "type": "git",
  5322. "url": "https://git.drupalcode.org/project/workflow.git",
  5323. "reference": "8.x-1.8"
  5324. },
  5325. "dist": {
  5326. "type": "zip",
  5327. "url": "https://ftp.drupal.org/files/projects/workflow-8.x-1.8.zip",
  5328. "reference": "8.x-1.8",
  5329. "shasum": "29ae25889eba4920a7e44df8b882a0a1f2e2b172"
  5330. },
  5331. "require": {
  5332. "drupal/core": ">=8.8"
  5333. },
  5334. "type": "drupal-module",
  5335. "extra": {
  5336. "drupal": {
  5337. "version": "8.x-1.8",
  5338. "datestamp": "1717579628",
  5339. "security-coverage": {
  5340. "status": "covered",
  5341. "message": "Covered by Drupal's security advisory policy"
  5342. }
  5343. }
  5344. },
  5345. "notification-url": "https://packages.drupal.org/8/downloads",
  5346. "license": [
  5347. "GPL-2.0-or-later"
  5348. ],
  5349. "authors": [
  5350. {
  5351. "name": "Bastlynn",
  5352. "homepage": "https://www.drupal.org/user/275249"
  5353. },
  5354. {
  5355. "name": "eaton",
  5356. "homepage": "https://www.drupal.org/user/16496"
  5357. },
  5358. {
  5359. "name": "Heine",
  5360. "homepage": "https://www.drupal.org/user/17943"
  5361. },
  5362. {
  5363. "name": "JacobSingh",
  5364. "homepage": "https://www.drupal.org/user/68912"
  5365. },
  5366. {
  5367. "name": "johnv",
  5368. "homepage": "https://www.drupal.org/user/591042"
  5369. },
  5370. {
  5371. "name": "jvandyk",
  5372. "homepage": "https://www.drupal.org/user/2375"
  5373. },
  5374. {
  5375. "name": "mfredrickson",
  5376. "homepage": "https://www.drupal.org/user/31994"
  5377. },
  5378. {
  5379. "name": "NancyDru",
  5380. "homepage": "https://www.drupal.org/user/101412"
  5381. },
  5382. {
  5383. "name": "q0rban",
  5384. "homepage": "https://www.drupal.org/user/31022"
  5385. }
  5386. ],
  5387. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5388. "homepage": "https://www.drupal.org/project/workflow",
  5389. "support": {
  5390. "source": "https://git.drupalcode.org/project/workflow"
  5391. }
  5392. },
  5393. {
  5394. "name": "drush/drush",
  5395. "version": "12.5.3",
  5396. "source": {
  5397. "type": "git",
  5398. "url": "https://github.com/drush-ops/drush.git",
  5399. "reference": "7fe0a492d5126c457c5fb184c4668a132b0aaac6"
  5400. },
  5401. "dist": {
  5402. "type": "zip",
  5403. "url": "https://api.github.com/repos/drush-ops/drush/zipball/7fe0a492d5126c457c5fb184c4668a132b0aaac6",
  5404. "reference": "7fe0a492d5126c457c5fb184c4668a132b0aaac6",
  5405. "shasum": ""
  5406. },
  5407. "require": {
  5408. "chi-teck/drupal-code-generator": "^3.0",
  5409. "composer-runtime-api": "^2.2",
  5410. "composer/semver": "^1.4 || ^3",
  5411. "consolidation/annotated-command": "^4.9.2",
  5412. "consolidation/config": "^2.1.2",
  5413. "consolidation/filter-via-dot-access-data": "^2.0.2",
  5414. "consolidation/output-formatters": "^4.3.2",
  5415. "consolidation/robo": "^4.0.6",
  5416. "consolidation/site-alias": "^4",
  5417. "consolidation/site-process": "^5.2.0",
  5418. "ext-dom": "*",
  5419. "grasmash/yaml-cli": "^3.1",
  5420. "guzzlehttp/guzzle": "^7.0",
  5421. "league/container": "^4",
  5422. "php": ">=8.1",
  5423. "psy/psysh": "~0.11",
  5424. "symfony/event-dispatcher": "^6",
  5425. "symfony/filesystem": "^6.1",
  5426. "symfony/finder": "^6",
  5427. "symfony/var-dumper": "^6.0",
  5428. "symfony/yaml": "^6.0",
  5429. "webflo/drupal-finder": "^1.2"
  5430. },
  5431. "conflict": {
  5432. "drupal/core": "< 10.0",
  5433. "drupal/migrate_run": "*",
  5434. "drupal/migrate_tools": "<= 5"
  5435. },
  5436. "require-dev": {
  5437. "composer/installers": "^2",
  5438. "cweagans/composer-patches": "~1.0",
  5439. "drupal/core-recommended": "^10",
  5440. "drupal/semver_example": "2.3.0",
  5441. "phpunit/phpunit": "^9",
  5442. "rector/rector": "^0.12",
  5443. "squizlabs/php_codesniffer": "^3.7"
  5444. },
  5445. "bin": [
  5446. "drush"
  5447. ],
  5448. "type": "library",
  5449. "extra": {
  5450. "installer-paths": {
  5451. "sut/core": [
  5452. "type:drupal-core"
  5453. ],
  5454. "sut/libraries/{$name}": [
  5455. "type:drupal-library"
  5456. ],
  5457. "sut/modules/unish/{$name}": [
  5458. "drupal/devel"
  5459. ],
  5460. "sut/themes/unish/{$name}": [
  5461. "drupal/empty_theme"
  5462. ],
  5463. "sut/modules/contrib/{$name}": [
  5464. "type:drupal-module"
  5465. ],
  5466. "sut/profiles/contrib/{$name}": [
  5467. "type:drupal-profile"
  5468. ],
  5469. "sut/themes/contrib/{$name}": [
  5470. "type:drupal-theme"
  5471. ],
  5472. "sut/drush/contrib/{$name}": [
  5473. "type:drupal-drush"
  5474. ]
  5475. }
  5476. },
  5477. "autoload": {
  5478. "psr-4": {
  5479. "Drush\\": "src/"
  5480. }
  5481. },
  5482. "notification-url": "https://packagist.org/downloads/",
  5483. "license": [
  5484. "GPL-2.0-or-later"
  5485. ],
  5486. "authors": [
  5487. {
  5488. "name": "Moshe Weitzman",
  5489. "email": "weitzman@tejasa.com"
  5490. },
  5491. {
  5492. "name": "Owen Barton",
  5493. "email": "drupal@owenbarton.com"
  5494. },
  5495. {
  5496. "name": "Greg Anderson",
  5497. "email": "greg.1.anderson@greenknowe.org"
  5498. },
  5499. {
  5500. "name": "Jonathan Araña Cruz",
  5501. "email": "jonhattan@faita.net"
  5502. },
  5503. {
  5504. "name": "Jonathan Hedstrom",
  5505. "email": "jhedstrom@gmail.com"
  5506. },
  5507. {
  5508. "name": "Christopher Gervais",
  5509. "email": "chris@ergonlogic.com"
  5510. },
  5511. {
  5512. "name": "Dave Reid",
  5513. "email": "dave@davereid.net"
  5514. },
  5515. {
  5516. "name": "Damian Lee",
  5517. "email": "damiankloip@googlemail.com"
  5518. }
  5519. ],
  5520. "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.",
  5521. "homepage": "http://www.drush.org",
  5522. "support": {
  5523. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  5524. "issues": "https://github.com/drush-ops/drush/issues",
  5525. "security": "https://github.com/drush-ops/drush/security/advisories",
  5526. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  5527. "source": "https://github.com/drush-ops/drush/tree/12.5.3"
  5528. },
  5529. "funding": [
  5530. {
  5531. "url": "https://github.com/weitzman",
  5532. "type": "github"
  5533. }
  5534. ],
  5535. "time": "2024-08-02T11:57:29+00:00"
  5536. },
  5537. {
  5538. "name": "egulias/email-validator",
  5539. "version": "4.0.2",
  5540. "source": {
  5541. "type": "git",
  5542. "url": "https://github.com/egulias/EmailValidator.git",
  5543. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  5544. },
  5545. "dist": {
  5546. "type": "zip",
  5547. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  5548. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  5549. "shasum": ""
  5550. },
  5551. "require": {
  5552. "doctrine/lexer": "^2.0 || ^3.0",
  5553. "php": ">=8.1",
  5554. "symfony/polyfill-intl-idn": "^1.26"
  5555. },
  5556. "require-dev": {
  5557. "phpunit/phpunit": "^10.2",
  5558. "vimeo/psalm": "^5.12"
  5559. },
  5560. "suggest": {
  5561. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  5562. },
  5563. "type": "library",
  5564. "extra": {
  5565. "branch-alias": {
  5566. "dev-master": "4.0.x-dev"
  5567. }
  5568. },
  5569. "autoload": {
  5570. "psr-4": {
  5571. "Egulias\\EmailValidator\\": "src"
  5572. }
  5573. },
  5574. "notification-url": "https://packagist.org/downloads/",
  5575. "license": [
  5576. "MIT"
  5577. ],
  5578. "authors": [
  5579. {
  5580. "name": "Eduardo Gulias Davis"
  5581. }
  5582. ],
  5583. "description": "A library for validating emails against several RFCs",
  5584. "homepage": "https://github.com/egulias/EmailValidator",
  5585. "keywords": [
  5586. "email",
  5587. "emailvalidation",
  5588. "emailvalidator",
  5589. "validation",
  5590. "validator"
  5591. ],
  5592. "support": {
  5593. "issues": "https://github.com/egulias/EmailValidator/issues",
  5594. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  5595. },
  5596. "funding": [
  5597. {
  5598. "url": "https://github.com/egulias",
  5599. "type": "github"
  5600. }
  5601. ],
  5602. "time": "2023-10-06T06:47:41+00:00"
  5603. },
  5604. {
  5605. "name": "grasmash/expander",
  5606. "version": "3.0.0",
  5607. "source": {
  5608. "type": "git",
  5609. "url": "https://github.com/grasmash/expander.git",
  5610. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82"
  5611. },
  5612. "dist": {
  5613. "type": "zip",
  5614. "url": "https://api.github.com/repos/grasmash/expander/zipball/bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  5615. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  5616. "shasum": ""
  5617. },
  5618. "require": {
  5619. "dflydev/dot-access-data": "^3.0.0",
  5620. "php": ">=8.0",
  5621. "psr/log": "^2 | ^3"
  5622. },
  5623. "require-dev": {
  5624. "greg-1-anderson/composer-test-scenarios": "^1",
  5625. "php-coveralls/php-coveralls": "^2.5",
  5626. "phpunit/phpunit": "^9",
  5627. "squizlabs/php_codesniffer": "^3.3"
  5628. },
  5629. "type": "library",
  5630. "extra": {
  5631. "branch-alias": {
  5632. "dev-master": "1.x-dev"
  5633. }
  5634. },
  5635. "autoload": {
  5636. "psr-4": {
  5637. "Grasmash\\Expander\\": "src/"
  5638. }
  5639. },
  5640. "notification-url": "https://packagist.org/downloads/",
  5641. "license": [
  5642. "MIT"
  5643. ],
  5644. "authors": [
  5645. {
  5646. "name": "Matthew Grasmick"
  5647. }
  5648. ],
  5649. "description": "Expands internal property references in PHP arrays file.",
  5650. "support": {
  5651. "issues": "https://github.com/grasmash/expander/issues",
  5652. "source": "https://github.com/grasmash/expander/tree/3.0.0"
  5653. },
  5654. "time": "2022-05-10T13:14:49+00:00"
  5655. },
  5656. {
  5657. "name": "grasmash/yaml-cli",
  5658. "version": "3.2.1",
  5659. "source": {
  5660. "type": "git",
  5661. "url": "https://github.com/grasmash/yaml-cli.git",
  5662. "reference": "09a8860566958a1576cc54bbe910a03477e54971"
  5663. },
  5664. "dist": {
  5665. "type": "zip",
  5666. "url": "https://api.github.com/repos/grasmash/yaml-cli/zipball/09a8860566958a1576cc54bbe910a03477e54971",
  5667. "reference": "09a8860566958a1576cc54bbe910a03477e54971",
  5668. "shasum": ""
  5669. },
  5670. "require": {
  5671. "dflydev/dot-access-data": "^3",
  5672. "php": ">=8.0",
  5673. "symfony/console": "^6 || ^7",
  5674. "symfony/filesystem": "^6 || ^7",
  5675. "symfony/yaml": "^6 || ^7"
  5676. },
  5677. "require-dev": {
  5678. "php-coveralls/php-coveralls": "^2",
  5679. "phpunit/phpunit": "^9",
  5680. "squizlabs/php_codesniffer": "^3.0"
  5681. },
  5682. "bin": [
  5683. "bin/yaml-cli"
  5684. ],
  5685. "type": "library",
  5686. "extra": {
  5687. "branch-alias": {
  5688. "dev-master": "3.x-dev"
  5689. }
  5690. },
  5691. "autoload": {
  5692. "psr-4": {
  5693. "Grasmash\\YamlCli\\": "src/"
  5694. }
  5695. },
  5696. "notification-url": "https://packagist.org/downloads/",
  5697. "license": [
  5698. "MIT"
  5699. ],
  5700. "authors": [
  5701. {
  5702. "name": "Matthew Grasmick"
  5703. }
  5704. ],
  5705. "description": "A command line tool for reading and manipulating yaml files.",
  5706. "support": {
  5707. "issues": "https://github.com/grasmash/yaml-cli/issues",
  5708. "source": "https://github.com/grasmash/yaml-cli/tree/3.2.1"
  5709. },
  5710. "time": "2024-04-23T02:10:57+00:00"
  5711. },
  5712. {
  5713. "name": "guzzlehttp/guzzle",
  5714. "version": "7.8.2",
  5715. "source": {
  5716. "type": "git",
  5717. "url": "https://github.com/guzzle/guzzle.git",
  5718. "reference": "f4152d9eb85c445fe1f992001d1748e8bec070d2"
  5719. },
  5720. "dist": {
  5721. "type": "zip",
  5722. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/f4152d9eb85c445fe1f992001d1748e8bec070d2",
  5723. "reference": "f4152d9eb85c445fe1f992001d1748e8bec070d2",
  5724. "shasum": ""
  5725. },
  5726. "require": {
  5727. "ext-json": "*",
  5728. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  5729. "guzzlehttp/psr7": "^1.9.1 || ^2.6.3",
  5730. "php": "^7.2.5 || ^8.0",
  5731. "psr/http-client": "^1.0",
  5732. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  5733. },
  5734. "provide": {
  5735. "psr/http-client-implementation": "1.0"
  5736. },
  5737. "require-dev": {
  5738. "bamarni/composer-bin-plugin": "^1.8.2",
  5739. "ext-curl": "*",
  5740. "guzzle/client-integration-tests": "3.0.2",
  5741. "php-http/message-factory": "^1.1",
  5742. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  5743. "psr/log": "^1.1 || ^2.0 || ^3.0"
  5744. },
  5745. "suggest": {
  5746. "ext-curl": "Required for CURL handler support",
  5747. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  5748. "psr/log": "Required for using the Log middleware"
  5749. },
  5750. "type": "library",
  5751. "extra": {
  5752. "bamarni-bin": {
  5753. "bin-links": true,
  5754. "forward-command": false
  5755. }
  5756. },
  5757. "autoload": {
  5758. "files": [
  5759. "src/functions_include.php"
  5760. ],
  5761. "psr-4": {
  5762. "GuzzleHttp\\": "src/"
  5763. }
  5764. },
  5765. "notification-url": "https://packagist.org/downloads/",
  5766. "license": [
  5767. "MIT"
  5768. ],
  5769. "authors": [
  5770. {
  5771. "name": "Graham Campbell",
  5772. "email": "hello@gjcampbell.co.uk",
  5773. "homepage": "https://github.com/GrahamCampbell"
  5774. },
  5775. {
  5776. "name": "Michael Dowling",
  5777. "email": "mtdowling@gmail.com",
  5778. "homepage": "https://github.com/mtdowling"
  5779. },
  5780. {
  5781. "name": "Jeremy Lindblom",
  5782. "email": "jeremeamia@gmail.com",
  5783. "homepage": "https://github.com/jeremeamia"
  5784. },
  5785. {
  5786. "name": "George Mponos",
  5787. "email": "gmponos@gmail.com",
  5788. "homepage": "https://github.com/gmponos"
  5789. },
  5790. {
  5791. "name": "Tobias Nyholm",
  5792. "email": "tobias.nyholm@gmail.com",
  5793. "homepage": "https://github.com/Nyholm"
  5794. },
  5795. {
  5796. "name": "Márk Sági-Kazár",
  5797. "email": "mark.sagikazar@gmail.com",
  5798. "homepage": "https://github.com/sagikazarmark"
  5799. },
  5800. {
  5801. "name": "Tobias Schultze",
  5802. "email": "webmaster@tubo-world.de",
  5803. "homepage": "https://github.com/Tobion"
  5804. }
  5805. ],
  5806. "description": "Guzzle is a PHP HTTP client library",
  5807. "keywords": [
  5808. "client",
  5809. "curl",
  5810. "framework",
  5811. "http",
  5812. "http client",
  5813. "psr-18",
  5814. "psr-7",
  5815. "rest",
  5816. "web service"
  5817. ],
  5818. "support": {
  5819. "issues": "https://github.com/guzzle/guzzle/issues",
  5820. "source": "https://github.com/guzzle/guzzle/tree/7.8.2"
  5821. },
  5822. "funding": [
  5823. {
  5824. "url": "https://github.com/GrahamCampbell",
  5825. "type": "github"
  5826. },
  5827. {
  5828. "url": "https://github.com/Nyholm",
  5829. "type": "github"
  5830. },
  5831. {
  5832. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  5833. "type": "tidelift"
  5834. }
  5835. ],
  5836. "time": "2024-07-18T11:12:18+00:00"
  5837. },
  5838. {
  5839. "name": "guzzlehttp/promises",
  5840. "version": "2.0.3",
  5841. "source": {
  5842. "type": "git",
  5843. "url": "https://github.com/guzzle/promises.git",
  5844. "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8"
  5845. },
  5846. "dist": {
  5847. "type": "zip",
  5848. "url": "https://api.github.com/repos/guzzle/promises/zipball/6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8",
  5849. "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8",
  5850. "shasum": ""
  5851. },
  5852. "require": {
  5853. "php": "^7.2.5 || ^8.0"
  5854. },
  5855. "require-dev": {
  5856. "bamarni/composer-bin-plugin": "^1.8.2",
  5857. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  5858. },
  5859. "type": "library",
  5860. "extra": {
  5861. "bamarni-bin": {
  5862. "bin-links": true,
  5863. "forward-command": false
  5864. }
  5865. },
  5866. "autoload": {
  5867. "psr-4": {
  5868. "GuzzleHttp\\Promise\\": "src/"
  5869. }
  5870. },
  5871. "notification-url": "https://packagist.org/downloads/",
  5872. "license": [
  5873. "MIT"
  5874. ],
  5875. "authors": [
  5876. {
  5877. "name": "Graham Campbell",
  5878. "email": "hello@gjcampbell.co.uk",
  5879. "homepage": "https://github.com/GrahamCampbell"
  5880. },
  5881. {
  5882. "name": "Michael Dowling",
  5883. "email": "mtdowling@gmail.com",
  5884. "homepage": "https://github.com/mtdowling"
  5885. },
  5886. {
  5887. "name": "Tobias Nyholm",
  5888. "email": "tobias.nyholm@gmail.com",
  5889. "homepage": "https://github.com/Nyholm"
  5890. },
  5891. {
  5892. "name": "Tobias Schultze",
  5893. "email": "webmaster@tubo-world.de",
  5894. "homepage": "https://github.com/Tobion"
  5895. }
  5896. ],
  5897. "description": "Guzzle promises library",
  5898. "keywords": [
  5899. "promise"
  5900. ],
  5901. "support": {
  5902. "issues": "https://github.com/guzzle/promises/issues",
  5903. "source": "https://github.com/guzzle/promises/tree/2.0.3"
  5904. },
  5905. "funding": [
  5906. {
  5907. "url": "https://github.com/GrahamCampbell",
  5908. "type": "github"
  5909. },
  5910. {
  5911. "url": "https://github.com/Nyholm",
  5912. "type": "github"
  5913. },
  5914. {
  5915. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  5916. "type": "tidelift"
  5917. }
  5918. ],
  5919. "time": "2024-07-18T10:29:17+00:00"
  5920. },
  5921. {
  5922. "name": "guzzlehttp/psr7",
  5923. "version": "2.6.3",
  5924. "source": {
  5925. "type": "git",
  5926. "url": "https://github.com/guzzle/psr7.git",
  5927. "reference": "6de29867b18790c0d2c846af4c13a24cc3ad56f3"
  5928. },
  5929. "dist": {
  5930. "type": "zip",
  5931. "url": "https://api.github.com/repos/guzzle/psr7/zipball/6de29867b18790c0d2c846af4c13a24cc3ad56f3",
  5932. "reference": "6de29867b18790c0d2c846af4c13a24cc3ad56f3",
  5933. "shasum": ""
  5934. },
  5935. "require": {
  5936. "php": "^7.2.5 || ^8.0",
  5937. "psr/http-factory": "^1.0",
  5938. "psr/http-message": "^1.1 || ^2.0",
  5939. "ralouphie/getallheaders": "^3.0"
  5940. },
  5941. "provide": {
  5942. "psr/http-factory-implementation": "1.0",
  5943. "psr/http-message-implementation": "1.0"
  5944. },
  5945. "require-dev": {
  5946. "bamarni/composer-bin-plugin": "^1.8.2",
  5947. "http-interop/http-factory-tests": "0.9.0",
  5948. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  5949. },
  5950. "suggest": {
  5951. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  5952. },
  5953. "type": "library",
  5954. "extra": {
  5955. "bamarni-bin": {
  5956. "bin-links": true,
  5957. "forward-command": false
  5958. }
  5959. },
  5960. "autoload": {
  5961. "psr-4": {
  5962. "GuzzleHttp\\Psr7\\": "src/"
  5963. }
  5964. },
  5965. "notification-url": "https://packagist.org/downloads/",
  5966. "license": [
  5967. "MIT"
  5968. ],
  5969. "authors": [
  5970. {
  5971. "name": "Graham Campbell",
  5972. "email": "hello@gjcampbell.co.uk",
  5973. "homepage": "https://github.com/GrahamCampbell"
  5974. },
  5975. {
  5976. "name": "Michael Dowling",
  5977. "email": "mtdowling@gmail.com",
  5978. "homepage": "https://github.com/mtdowling"
  5979. },
  5980. {
  5981. "name": "George Mponos",
  5982. "email": "gmponos@gmail.com",
  5983. "homepage": "https://github.com/gmponos"
  5984. },
  5985. {
  5986. "name": "Tobias Nyholm",
  5987. "email": "tobias.nyholm@gmail.com",
  5988. "homepage": "https://github.com/Nyholm"
  5989. },
  5990. {
  5991. "name": "Márk Sági-Kazár",
  5992. "email": "mark.sagikazar@gmail.com",
  5993. "homepage": "https://github.com/sagikazarmark"
  5994. },
  5995. {
  5996. "name": "Tobias Schultze",
  5997. "email": "webmaster@tubo-world.de",
  5998. "homepage": "https://github.com/Tobion"
  5999. },
  6000. {
  6001. "name": "Márk Sági-Kazár",
  6002. "email": "mark.sagikazar@gmail.com",
  6003. "homepage": "https://sagikazarmark.hu"
  6004. }
  6005. ],
  6006. "description": "PSR-7 message implementation that also provides common utility methods",
  6007. "keywords": [
  6008. "http",
  6009. "message",
  6010. "psr-7",
  6011. "request",
  6012. "response",
  6013. "stream",
  6014. "uri",
  6015. "url"
  6016. ],
  6017. "support": {
  6018. "issues": "https://github.com/guzzle/psr7/issues",
  6019. "source": "https://github.com/guzzle/psr7/tree/2.6.3"
  6020. },
  6021. "funding": [
  6022. {
  6023. "url": "https://github.com/GrahamCampbell",
  6024. "type": "github"
  6025. },
  6026. {
  6027. "url": "https://github.com/Nyholm",
  6028. "type": "github"
  6029. },
  6030. {
  6031. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  6032. "type": "tidelift"
  6033. }
  6034. ],
  6035. "time": "2024-07-18T09:59:12+00:00"
  6036. },
  6037. {
  6038. "name": "kint-php/kint",
  6039. "version": "5.1.1",
  6040. "source": {
  6041. "type": "git",
  6042. "url": "https://github.com/kint-php/kint.git",
  6043. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b"
  6044. },
  6045. "dist": {
  6046. "type": "zip",
  6047. "url": "https://api.github.com/repos/kint-php/kint/zipball/8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  6048. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  6049. "shasum": ""
  6050. },
  6051. "require": {
  6052. "php": ">=7.1"
  6053. },
  6054. "require-dev": {
  6055. "friendsofphp/php-cs-fixer": "^3",
  6056. "phpspec/prophecy-phpunit": "^2",
  6057. "phpunit/phpunit": "^9",
  6058. "seld/phar-utils": "^1",
  6059. "symfony/finder": ">=4.0",
  6060. "vimeo/psalm": "^5"
  6061. },
  6062. "suggest": {
  6063. "kint-php/kint-helpers": "Provides extra helper functions",
  6064. "kint-php/kint-twig": "Provides d() and s() functions in twig templates"
  6065. },
  6066. "type": "library",
  6067. "autoload": {
  6068. "files": [
  6069. "init.php"
  6070. ],
  6071. "psr-4": {
  6072. "Kint\\": "src/"
  6073. }
  6074. },
  6075. "notification-url": "https://packagist.org/downloads/",
  6076. "license": [
  6077. "MIT"
  6078. ],
  6079. "authors": [
  6080. {
  6081. "name": "Jonathan Vollebregt",
  6082. "homepage": "https://github.com/jnvsor"
  6083. },
  6084. {
  6085. "name": "Contributors",
  6086. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  6087. }
  6088. ],
  6089. "description": "Kint - debugging tool for PHP developers",
  6090. "homepage": "https://kint-php.github.io/kint/",
  6091. "keywords": [
  6092. "debug",
  6093. "kint",
  6094. "php"
  6095. ],
  6096. "support": {
  6097. "issues": "https://github.com/kint-php/kint/issues",
  6098. "source": "https://github.com/kint-php/kint/tree/5.1.1"
  6099. },
  6100. "time": "2024-04-26T14:20:09+00:00"
  6101. },
  6102. {
  6103. "name": "league/container",
  6104. "version": "4.2.2",
  6105. "source": {
  6106. "type": "git",
  6107. "url": "https://github.com/thephpleague/container.git",
  6108. "reference": "ff346319ca1ff0e78277dc2311a42107cc1aab88"
  6109. },
  6110. "dist": {
  6111. "type": "zip",
  6112. "url": "https://api.github.com/repos/thephpleague/container/zipball/ff346319ca1ff0e78277dc2311a42107cc1aab88",
  6113. "reference": "ff346319ca1ff0e78277dc2311a42107cc1aab88",
  6114. "shasum": ""
  6115. },
  6116. "require": {
  6117. "php": "^7.2 || ^8.0",
  6118. "psr/container": "^1.1 || ^2.0"
  6119. },
  6120. "provide": {
  6121. "psr/container-implementation": "^1.0"
  6122. },
  6123. "replace": {
  6124. "orno/di": "~2.0"
  6125. },
  6126. "require-dev": {
  6127. "nette/php-generator": "^3.4",
  6128. "nikic/php-parser": "^4.10",
  6129. "phpstan/phpstan": "^0.12.47",
  6130. "phpunit/phpunit": "^8.5.17",
  6131. "roave/security-advisories": "dev-latest",
  6132. "scrutinizer/ocular": "^1.8",
  6133. "squizlabs/php_codesniffer": "^3.6"
  6134. },
  6135. "type": "library",
  6136. "extra": {
  6137. "branch-alias": {
  6138. "dev-master": "4.x-dev",
  6139. "dev-4.x": "4.x-dev",
  6140. "dev-3.x": "3.x-dev",
  6141. "dev-2.x": "2.x-dev",
  6142. "dev-1.x": "1.x-dev"
  6143. }
  6144. },
  6145. "autoload": {
  6146. "psr-4": {
  6147. "League\\Container\\": "src"
  6148. }
  6149. },
  6150. "notification-url": "https://packagist.org/downloads/",
  6151. "license": [
  6152. "MIT"
  6153. ],
  6154. "authors": [
  6155. {
  6156. "name": "Phil Bennett",
  6157. "email": "mail@philbennett.co.uk",
  6158. "role": "Developer"
  6159. }
  6160. ],
  6161. "description": "A fast and intuitive dependency injection container.",
  6162. "homepage": "https://github.com/thephpleague/container",
  6163. "keywords": [
  6164. "container",
  6165. "dependency",
  6166. "di",
  6167. "injection",
  6168. "league",
  6169. "provider",
  6170. "service"
  6171. ],
  6172. "support": {
  6173. "issues": "https://github.com/thephpleague/container/issues",
  6174. "source": "https://github.com/thephpleague/container/tree/4.2.2"
  6175. },
  6176. "funding": [
  6177. {
  6178. "url": "https://github.com/philipobenito",
  6179. "type": "github"
  6180. }
  6181. ],
  6182. "time": "2024-03-13T13:12:53+00:00"
  6183. },
  6184. {
  6185. "name": "masterminds/html5",
  6186. "version": "2.9.0",
  6187. "source": {
  6188. "type": "git",
  6189. "url": "https://github.com/Masterminds/html5-php.git",
  6190. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  6191. },
  6192. "dist": {
  6193. "type": "zip",
  6194. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  6195. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  6196. "shasum": ""
  6197. },
  6198. "require": {
  6199. "ext-dom": "*",
  6200. "php": ">=5.3.0"
  6201. },
  6202. "require-dev": {
  6203. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  6204. },
  6205. "type": "library",
  6206. "extra": {
  6207. "branch-alias": {
  6208. "dev-master": "2.7-dev"
  6209. }
  6210. },
  6211. "autoload": {
  6212. "psr-4": {
  6213. "Masterminds\\": "src"
  6214. }
  6215. },
  6216. "notification-url": "https://packagist.org/downloads/",
  6217. "license": [
  6218. "MIT"
  6219. ],
  6220. "authors": [
  6221. {
  6222. "name": "Matt Butcher",
  6223. "email": "technosophos@gmail.com"
  6224. },
  6225. {
  6226. "name": "Matt Farina",
  6227. "email": "matt@mattfarina.com"
  6228. },
  6229. {
  6230. "name": "Asmir Mustafic",
  6231. "email": "goetas@gmail.com"
  6232. }
  6233. ],
  6234. "description": "An HTML5 parser and serializer.",
  6235. "homepage": "http://masterminds.github.io/html5-php",
  6236. "keywords": [
  6237. "HTML5",
  6238. "dom",
  6239. "html",
  6240. "parser",
  6241. "querypath",
  6242. "serializer",
  6243. "xml"
  6244. ],
  6245. "support": {
  6246. "issues": "https://github.com/Masterminds/html5-php/issues",
  6247. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  6248. },
  6249. "time": "2024-03-31T07:05:07+00:00"
  6250. },
  6251. {
  6252. "name": "mck89/peast",
  6253. "version": "v1.16.3",
  6254. "source": {
  6255. "type": "git",
  6256. "url": "https://github.com/mck89/peast.git",
  6257. "reference": "645ec21b650bc2aced18285c85f220d22afc1430"
  6258. },
  6259. "dist": {
  6260. "type": "zip",
  6261. "url": "https://api.github.com/repos/mck89/peast/zipball/645ec21b650bc2aced18285c85f220d22afc1430",
  6262. "reference": "645ec21b650bc2aced18285c85f220d22afc1430",
  6263. "shasum": ""
  6264. },
  6265. "require": {
  6266. "ext-mbstring": "*",
  6267. "php": ">=5.4.0"
  6268. },
  6269. "require-dev": {
  6270. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  6271. },
  6272. "type": "library",
  6273. "extra": {
  6274. "branch-alias": {
  6275. "dev-master": "1.16.3-dev"
  6276. }
  6277. },
  6278. "autoload": {
  6279. "psr-4": {
  6280. "Peast\\": "lib/Peast/"
  6281. }
  6282. },
  6283. "notification-url": "https://packagist.org/downloads/",
  6284. "license": [
  6285. "BSD-3-Clause"
  6286. ],
  6287. "authors": [
  6288. {
  6289. "name": "Marco Marchiò",
  6290. "email": "marco.mm89@gmail.com"
  6291. }
  6292. ],
  6293. "description": "Peast is PHP library that generates AST for JavaScript code",
  6294. "support": {
  6295. "issues": "https://github.com/mck89/peast/issues",
  6296. "source": "https://github.com/mck89/peast/tree/v1.16.3"
  6297. },
  6298. "time": "2024-07-23T14:00:32+00:00"
  6299. },
  6300. {
  6301. "name": "mglaman/phpstan-drupal",
  6302. "version": "1.2.12",
  6303. "source": {
  6304. "type": "git",
  6305. "url": "https://github.com/mglaman/phpstan-drupal.git",
  6306. "reference": "346bdddda169a56b6ebb7dc17893f0ac8f33a4f1"
  6307. },
  6308. "dist": {
  6309. "type": "zip",
  6310. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/346bdddda169a56b6ebb7dc17893f0ac8f33a4f1",
  6311. "reference": "346bdddda169a56b6ebb7dc17893f0ac8f33a4f1",
  6312. "shasum": ""
  6313. },
  6314. "require": {
  6315. "php": "^8.1",
  6316. "phpstan/phpstan": "^1.10.56",
  6317. "phpstan/phpstan-deprecation-rules": "^1.1.4",
  6318. "symfony/finder": "^4.2 || ^5.0 || ^6.0 || ^7.0",
  6319. "symfony/yaml": "^4.2|| ^5.0 || ^6.0 || ^7.0",
  6320. "webflo/drupal-finder": "^1.2"
  6321. },
  6322. "require-dev": {
  6323. "behat/mink": "^1.8",
  6324. "composer/installers": "^1.9",
  6325. "drupal/core-recommended": "^10",
  6326. "drush/drush": "^10.0 || ^11 || ^12 || ^13@beta",
  6327. "phpstan/extension-installer": "^1.1",
  6328. "phpstan/phpstan-strict-rules": "^1.0",
  6329. "phpunit/phpunit": "^8.5 || ^9 || ^10 || ^11",
  6330. "slevomat/coding-standard": "^7.1",
  6331. "squizlabs/php_codesniffer": "^3.3",
  6332. "symfony/phpunit-bridge": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  6333. },
  6334. "suggest": {
  6335. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  6336. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  6337. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  6338. },
  6339. "type": "phpstan-extension",
  6340. "extra": {
  6341. "branch-alias": {
  6342. "dev-main": "1.0-dev"
  6343. },
  6344. "installer-paths": {
  6345. "tests/fixtures/drupal/core": [
  6346. "type:drupal-core"
  6347. ],
  6348. "tests/fixtures/drupal/libraries/{$name}": [
  6349. "type:drupal-library"
  6350. ],
  6351. "tests/fixtures/drupal/modules/contrib/{$name}": [
  6352. "type:drupal-module"
  6353. ],
  6354. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  6355. "type:drupal-profile"
  6356. ],
  6357. "tests/fixtures/drupal/themes/contrib/{$name}": [
  6358. "type:drupal-theme"
  6359. ]
  6360. },
  6361. "phpstan": {
  6362. "includes": [
  6363. "extension.neon",
  6364. "rules.neon"
  6365. ]
  6366. }
  6367. },
  6368. "autoload": {
  6369. "psr-4": {
  6370. "mglaman\\PHPStanDrupal\\": "src/"
  6371. }
  6372. },
  6373. "notification-url": "https://packagist.org/downloads/",
  6374. "license": [
  6375. "MIT"
  6376. ],
  6377. "authors": [
  6378. {
  6379. "name": "Matt Glaman",
  6380. "email": "nmd.matt@gmail.com"
  6381. }
  6382. ],
  6383. "description": "Drupal extension and rules for PHPStan",
  6384. "support": {
  6385. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  6386. "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.12"
  6387. },
  6388. "funding": [
  6389. {
  6390. "url": "https://github.com/mglaman",
  6391. "type": "github"
  6392. },
  6393. {
  6394. "url": "https://opencollective.com/phpstan-drupal",
  6395. "type": "open_collective"
  6396. },
  6397. {
  6398. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  6399. "type": "tidelift"
  6400. }
  6401. ],
  6402. "time": "2024-08-07T21:15:21+00:00"
  6403. },
  6404. {
  6405. "name": "nikic/php-parser",
  6406. "version": "v5.2.0",
  6407. "source": {
  6408. "type": "git",
  6409. "url": "https://github.com/nikic/PHP-Parser.git",
  6410. "reference": "23c79fbbfb725fb92af9bcf41065c8e9a0d49ddb"
  6411. },
  6412. "dist": {
  6413. "type": "zip",
  6414. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/23c79fbbfb725fb92af9bcf41065c8e9a0d49ddb",
  6415. "reference": "23c79fbbfb725fb92af9bcf41065c8e9a0d49ddb",
  6416. "shasum": ""
  6417. },
  6418. "require": {
  6419. "ext-ctype": "*",
  6420. "ext-json": "*",
  6421. "ext-tokenizer": "*",
  6422. "php": ">=7.4"
  6423. },
  6424. "require-dev": {
  6425. "ircmaxell/php-yacc": "^0.0.7",
  6426. "phpunit/phpunit": "^9.0"
  6427. },
  6428. "bin": [
  6429. "bin/php-parse"
  6430. ],
  6431. "type": "library",
  6432. "extra": {
  6433. "branch-alias": {
  6434. "dev-master": "5.0-dev"
  6435. }
  6436. },
  6437. "autoload": {
  6438. "psr-4": {
  6439. "PhpParser\\": "lib/PhpParser"
  6440. }
  6441. },
  6442. "notification-url": "https://packagist.org/downloads/",
  6443. "license": [
  6444. "BSD-3-Clause"
  6445. ],
  6446. "authors": [
  6447. {
  6448. "name": "Nikita Popov"
  6449. }
  6450. ],
  6451. "description": "A PHP parser written in PHP",
  6452. "keywords": [
  6453. "parser",
  6454. "php"
  6455. ],
  6456. "support": {
  6457. "issues": "https://github.com/nikic/PHP-Parser/issues",
  6458. "source": "https://github.com/nikic/PHP-Parser/tree/v5.2.0"
  6459. },
  6460. "time": "2024-09-15T16:40:33+00:00"
  6461. },
  6462. {
  6463. "name": "pear/archive_tar",
  6464. "version": "1.5.0",
  6465. "source": {
  6466. "type": "git",
  6467. "url": "https://github.com/pear/Archive_Tar.git",
  6468. "reference": "b439c859564f5cbb0f64ad6002d0afe84a889602"
  6469. },
  6470. "dist": {
  6471. "type": "zip",
  6472. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/b439c859564f5cbb0f64ad6002d0afe84a889602",
  6473. "reference": "b439c859564f5cbb0f64ad6002d0afe84a889602",
  6474. "shasum": ""
  6475. },
  6476. "require": {
  6477. "pear/pear-core-minimal": "^1.10.0alpha2",
  6478. "php": ">=5.2.0"
  6479. },
  6480. "require-dev": {
  6481. "phpunit/phpunit": "*"
  6482. },
  6483. "suggest": {
  6484. "ext-bz2": "Bz2 compression support.",
  6485. "ext-xz": "Lzma2 compression support.",
  6486. "ext-zlib": "Gzip compression support."
  6487. },
  6488. "type": "library",
  6489. "extra": {
  6490. "branch-alias": {
  6491. "dev-master": "1.4.x-dev"
  6492. }
  6493. },
  6494. "autoload": {
  6495. "psr-0": {
  6496. "Archive_Tar": ""
  6497. }
  6498. },
  6499. "notification-url": "https://packagist.org/downloads/",
  6500. "include-path": [
  6501. "./"
  6502. ],
  6503. "license": [
  6504. "BSD-2-Clause"
  6505. ],
  6506. "authors": [
  6507. {
  6508. "name": "Vincent Blavet",
  6509. "email": "vincent@phpconcept.net"
  6510. },
  6511. {
  6512. "name": "Greg Beaver",
  6513. "email": "greg@chiaraquartet.net"
  6514. },
  6515. {
  6516. "name": "Michiel Rook",
  6517. "email": "mrook@php.net"
  6518. }
  6519. ],
  6520. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  6521. "homepage": "https://github.com/pear/Archive_Tar",
  6522. "keywords": [
  6523. "archive",
  6524. "tar"
  6525. ],
  6526. "support": {
  6527. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  6528. "source": "https://github.com/pear/Archive_Tar"
  6529. },
  6530. "time": "2024-03-16T16:21:40+00:00"
  6531. },
  6532. {
  6533. "name": "pear/console_getopt",
  6534. "version": "v1.4.3",
  6535. "source": {
  6536. "type": "git",
  6537. "url": "https://github.com/pear/Console_Getopt.git",
  6538. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  6539. },
  6540. "dist": {
  6541. "type": "zip",
  6542. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6543. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6544. "shasum": ""
  6545. },
  6546. "type": "library",
  6547. "autoload": {
  6548. "psr-0": {
  6549. "Console": "./"
  6550. }
  6551. },
  6552. "notification-url": "https://packagist.org/downloads/",
  6553. "include-path": [
  6554. "./"
  6555. ],
  6556. "license": [
  6557. "BSD-2-Clause"
  6558. ],
  6559. "authors": [
  6560. {
  6561. "name": "Andrei Zmievski",
  6562. "email": "andrei@php.net",
  6563. "role": "Lead"
  6564. },
  6565. {
  6566. "name": "Stig Bakken",
  6567. "email": "stig@php.net",
  6568. "role": "Developer"
  6569. },
  6570. {
  6571. "name": "Greg Beaver",
  6572. "email": "cellog@php.net",
  6573. "role": "Helper"
  6574. }
  6575. ],
  6576. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  6577. "support": {
  6578. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  6579. "source": "https://github.com/pear/Console_Getopt"
  6580. },
  6581. "time": "2019-11-20T18:27:48+00:00"
  6582. },
  6583. {
  6584. "name": "pear/pear-core-minimal",
  6585. "version": "v1.10.15",
  6586. "source": {
  6587. "type": "git",
  6588. "url": "https://github.com/pear/pear-core-minimal.git",
  6589. "reference": "ce0adade8b97561656ace07cdaac4751c271ea8c"
  6590. },
  6591. "dist": {
  6592. "type": "zip",
  6593. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/ce0adade8b97561656ace07cdaac4751c271ea8c",
  6594. "reference": "ce0adade8b97561656ace07cdaac4751c271ea8c",
  6595. "shasum": ""
  6596. },
  6597. "require": {
  6598. "pear/console_getopt": "~1.4",
  6599. "pear/pear_exception": "~1.0",
  6600. "php": ">=5.4"
  6601. },
  6602. "replace": {
  6603. "rsky/pear-core-min": "self.version"
  6604. },
  6605. "type": "library",
  6606. "autoload": {
  6607. "classmap": [
  6608. "src/"
  6609. ]
  6610. },
  6611. "notification-url": "https://packagist.org/downloads/",
  6612. "include-path": [
  6613. "src/"
  6614. ],
  6615. "license": [
  6616. "BSD-3-Clause"
  6617. ],
  6618. "authors": [
  6619. {
  6620. "name": "Christian Weiske",
  6621. "email": "cweiske@php.net",
  6622. "role": "Lead"
  6623. }
  6624. ],
  6625. "description": "Minimal set of PEAR core files to be used as composer dependency",
  6626. "support": {
  6627. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  6628. "source": "https://github.com/pear/pear-core-minimal"
  6629. },
  6630. "time": "2024-03-16T18:41:45+00:00"
  6631. },
  6632. {
  6633. "name": "pear/pear_exception",
  6634. "version": "v1.0.2",
  6635. "source": {
  6636. "type": "git",
  6637. "url": "https://github.com/pear/PEAR_Exception.git",
  6638. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  6639. },
  6640. "dist": {
  6641. "type": "zip",
  6642. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  6643. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  6644. "shasum": ""
  6645. },
  6646. "require": {
  6647. "php": ">=5.2.0"
  6648. },
  6649. "require-dev": {
  6650. "phpunit/phpunit": "<9"
  6651. },
  6652. "type": "class",
  6653. "extra": {
  6654. "branch-alias": {
  6655. "dev-master": "1.0.x-dev"
  6656. }
  6657. },
  6658. "autoload": {
  6659. "classmap": [
  6660. "PEAR/"
  6661. ]
  6662. },
  6663. "notification-url": "https://packagist.org/downloads/",
  6664. "include-path": [
  6665. "."
  6666. ],
  6667. "license": [
  6668. "BSD-2-Clause"
  6669. ],
  6670. "authors": [
  6671. {
  6672. "name": "Helgi Thormar",
  6673. "email": "dufuz@php.net"
  6674. },
  6675. {
  6676. "name": "Greg Beaver",
  6677. "email": "cellog@php.net"
  6678. }
  6679. ],
  6680. "description": "The PEAR Exception base class.",
  6681. "homepage": "https://github.com/pear/PEAR_Exception",
  6682. "keywords": [
  6683. "exception"
  6684. ],
  6685. "support": {
  6686. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  6687. "source": "https://github.com/pear/PEAR_Exception"
  6688. },
  6689. "time": "2021-03-21T15:43:46+00:00"
  6690. },
  6691. {
  6692. "name": "phootwork/collection",
  6693. "version": "v3.2.2",
  6694. "source": {
  6695. "type": "git",
  6696. "url": "https://github.com/phootwork/collection.git",
  6697. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
  6698. },
  6699. "dist": {
  6700. "type": "zip",
  6701. "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
  6702. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
  6703. "shasum": ""
  6704. },
  6705. "require": {
  6706. "phootwork/lang": "^3.0",
  6707. "php": ">=8.0"
  6708. },
  6709. "type": "library",
  6710. "autoload": {
  6711. "psr-4": {
  6712. "phootwork\\collection\\": ""
  6713. }
  6714. },
  6715. "notification-url": "https://packagist.org/downloads/",
  6716. "license": [
  6717. "MIT"
  6718. ],
  6719. "authors": [
  6720. {
  6721. "name": "Thomas Gossmann",
  6722. "homepage": "http://gos.si"
  6723. }
  6724. ],
  6725. "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
  6726. "homepage": "https://phootwork.github.io/collection/",
  6727. "keywords": [
  6728. "Array object",
  6729. "Text object",
  6730. "collection",
  6731. "collections",
  6732. "json",
  6733. "list",
  6734. "map",
  6735. "queue",
  6736. "set",
  6737. "stack",
  6738. "xml"
  6739. ],
  6740. "support": {
  6741. "issues": "https://github.com/phootwork/phootwork/issues",
  6742. "source": "https://github.com/phootwork/collection/tree/v3.2.2"
  6743. },
  6744. "time": "2022-08-27T12:51:24+00:00"
  6745. },
  6746. {
  6747. "name": "phootwork/lang",
  6748. "version": "v3.2.2",
  6749. "source": {
  6750. "type": "git",
  6751. "url": "https://github.com/phootwork/lang.git",
  6752. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597"
  6753. },
  6754. "dist": {
  6755. "type": "zip",
  6756. "url": "https://api.github.com/repos/phootwork/lang/zipball/baaf154ae7d521ebeee5e89105f5b12b0f234597",
  6757. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597",
  6758. "shasum": ""
  6759. },
  6760. "require": {
  6761. "php": ">=8.0",
  6762. "symfony/polyfill-mbstring": "^1.12",
  6763. "symfony/polyfill-php81": "^1.22"
  6764. },
  6765. "type": "library",
  6766. "autoload": {
  6767. "psr-4": {
  6768. "phootwork\\lang\\": ""
  6769. }
  6770. },
  6771. "notification-url": "https://packagist.org/downloads/",
  6772. "license": [
  6773. "MIT"
  6774. ],
  6775. "authors": [
  6776. {
  6777. "name": "Thomas Gossmann",
  6778. "homepage": "http://gos.si"
  6779. }
  6780. ],
  6781. "description": "Missing PHP language constructs",
  6782. "homepage": "https://phootwork.github.io/lang/",
  6783. "keywords": [
  6784. "array",
  6785. "comparator",
  6786. "comparison",
  6787. "string"
  6788. ],
  6789. "support": {
  6790. "issues": "https://github.com/phootwork/phootwork/issues",
  6791. "source": "https://github.com/phootwork/lang/tree/v3.2.2"
  6792. },
  6793. "time": "2023-05-26T05:37:59+00:00"
  6794. },
  6795. {
  6796. "name": "phpowermove/docblock",
  6797. "version": "v4.0",
  6798. "source": {
  6799. "type": "git",
  6800. "url": "https://github.com/phpowermove/docblock.git",
  6801. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
  6802. },
  6803. "dist": {
  6804. "type": "zip",
  6805. "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  6806. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  6807. "shasum": ""
  6808. },
  6809. "require": {
  6810. "phootwork/collection": "^3.0",
  6811. "phootwork/lang": "^3.0",
  6812. "php": ">=8.0"
  6813. },
  6814. "require-dev": {
  6815. "phootwork/php-cs-fixer-config": "^0.4",
  6816. "phpunit/phpunit": "^9.0",
  6817. "psalm/phar": "^4.3"
  6818. },
  6819. "type": "library",
  6820. "autoload": {
  6821. "psr-4": {
  6822. "phpowermove\\docblock\\": "src/"
  6823. }
  6824. },
  6825. "notification-url": "https://packagist.org/downloads/",
  6826. "license": [
  6827. "MIT"
  6828. ],
  6829. "authors": [
  6830. {
  6831. "name": "Thomas Gossmann",
  6832. "homepage": "http://gos.si"
  6833. }
  6834. ],
  6835. "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
  6836. "keywords": [
  6837. "docblock",
  6838. "generator",
  6839. "parser"
  6840. ],
  6841. "support": {
  6842. "issues": "https://github.com/phpowermove/docblock/issues",
  6843. "source": "https://github.com/phpowermove/docblock/tree/v4.0"
  6844. },
  6845. "time": "2021-09-22T16:57:06+00:00"
  6846. },
  6847. {
  6848. "name": "phpstan/phpstan",
  6849. "version": "1.12.3",
  6850. "source": {
  6851. "type": "git",
  6852. "url": "https://github.com/phpstan/phpstan.git",
  6853. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009"
  6854. },
  6855. "dist": {
  6856. "type": "zip",
  6857. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0fcbf194ab63d8159bb70d9aa3e1350051632009",
  6858. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009",
  6859. "shasum": ""
  6860. },
  6861. "require": {
  6862. "php": "^7.2|^8.0"
  6863. },
  6864. "conflict": {
  6865. "phpstan/phpstan-shim": "*"
  6866. },
  6867. "bin": [
  6868. "phpstan",
  6869. "phpstan.phar"
  6870. ],
  6871. "type": "library",
  6872. "autoload": {
  6873. "files": [
  6874. "bootstrap.php"
  6875. ]
  6876. },
  6877. "notification-url": "https://packagist.org/downloads/",
  6878. "license": [
  6879. "MIT"
  6880. ],
  6881. "description": "PHPStan - PHP Static Analysis Tool",
  6882. "keywords": [
  6883. "dev",
  6884. "static analysis"
  6885. ],
  6886. "support": {
  6887. "docs": "https://phpstan.org/user-guide/getting-started",
  6888. "forum": "https://github.com/phpstan/phpstan/discussions",
  6889. "issues": "https://github.com/phpstan/phpstan/issues",
  6890. "security": "https://github.com/phpstan/phpstan/security/policy",
  6891. "source": "https://github.com/phpstan/phpstan-src"
  6892. },
  6893. "funding": [
  6894. {
  6895. "url": "https://github.com/ondrejmirtes",
  6896. "type": "github"
  6897. },
  6898. {
  6899. "url": "https://github.com/phpstan",
  6900. "type": "github"
  6901. }
  6902. ],
  6903. "time": "2024-09-09T08:10:35+00:00"
  6904. },
  6905. {
  6906. "name": "phpstan/phpstan-deprecation-rules",
  6907. "version": "1.2.1",
  6908. "source": {
  6909. "type": "git",
  6910. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  6911. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82"
  6912. },
  6913. "dist": {
  6914. "type": "zip",
  6915. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  6916. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  6917. "shasum": ""
  6918. },
  6919. "require": {
  6920. "php": "^7.2 || ^8.0",
  6921. "phpstan/phpstan": "^1.12"
  6922. },
  6923. "require-dev": {
  6924. "php-parallel-lint/php-parallel-lint": "^1.2",
  6925. "phpstan/phpstan-phpunit": "^1.0",
  6926. "phpunit/phpunit": "^9.5"
  6927. },
  6928. "type": "phpstan-extension",
  6929. "extra": {
  6930. "phpstan": {
  6931. "includes": [
  6932. "rules.neon"
  6933. ]
  6934. }
  6935. },
  6936. "autoload": {
  6937. "psr-4": {
  6938. "PHPStan\\": "src/"
  6939. }
  6940. },
  6941. "notification-url": "https://packagist.org/downloads/",
  6942. "license": [
  6943. "MIT"
  6944. ],
  6945. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  6946. "support": {
  6947. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  6948. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.2.1"
  6949. },
  6950. "time": "2024-09-11T15:52:35+00:00"
  6951. },
  6952. {
  6953. "name": "psr/cache",
  6954. "version": "3.0.0",
  6955. "source": {
  6956. "type": "git",
  6957. "url": "https://github.com/php-fig/cache.git",
  6958. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  6959. },
  6960. "dist": {
  6961. "type": "zip",
  6962. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6963. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6964. "shasum": ""
  6965. },
  6966. "require": {
  6967. "php": ">=8.0.0"
  6968. },
  6969. "type": "library",
  6970. "extra": {
  6971. "branch-alias": {
  6972. "dev-master": "1.0.x-dev"
  6973. }
  6974. },
  6975. "autoload": {
  6976. "psr-4": {
  6977. "Psr\\Cache\\": "src/"
  6978. }
  6979. },
  6980. "notification-url": "https://packagist.org/downloads/",
  6981. "license": [
  6982. "MIT"
  6983. ],
  6984. "authors": [
  6985. {
  6986. "name": "PHP-FIG",
  6987. "homepage": "https://www.php-fig.org/"
  6988. }
  6989. ],
  6990. "description": "Common interface for caching libraries",
  6991. "keywords": [
  6992. "cache",
  6993. "psr",
  6994. "psr-6"
  6995. ],
  6996. "support": {
  6997. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  6998. },
  6999. "time": "2021-02-03T23:26:27+00:00"
  7000. },
  7001. {
  7002. "name": "psr/container",
  7003. "version": "2.0.2",
  7004. "source": {
  7005. "type": "git",
  7006. "url": "https://github.com/php-fig/container.git",
  7007. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  7008. },
  7009. "dist": {
  7010. "type": "zip",
  7011. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  7012. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  7013. "shasum": ""
  7014. },
  7015. "require": {
  7016. "php": ">=7.4.0"
  7017. },
  7018. "type": "library",
  7019. "extra": {
  7020. "branch-alias": {
  7021. "dev-master": "2.0.x-dev"
  7022. }
  7023. },
  7024. "autoload": {
  7025. "psr-4": {
  7026. "Psr\\Container\\": "src/"
  7027. }
  7028. },
  7029. "notification-url": "https://packagist.org/downloads/",
  7030. "license": [
  7031. "MIT"
  7032. ],
  7033. "authors": [
  7034. {
  7035. "name": "PHP-FIG",
  7036. "homepage": "https://www.php-fig.org/"
  7037. }
  7038. ],
  7039. "description": "Common Container Interface (PHP FIG PSR-11)",
  7040. "homepage": "https://github.com/php-fig/container",
  7041. "keywords": [
  7042. "PSR-11",
  7043. "container",
  7044. "container-interface",
  7045. "container-interop",
  7046. "psr"
  7047. ],
  7048. "support": {
  7049. "issues": "https://github.com/php-fig/container/issues",
  7050. "source": "https://github.com/php-fig/container/tree/2.0.2"
  7051. },
  7052. "time": "2021-11-05T16:47:00+00:00"
  7053. },
  7054. {
  7055. "name": "psr/event-dispatcher",
  7056. "version": "1.0.0",
  7057. "source": {
  7058. "type": "git",
  7059. "url": "https://github.com/php-fig/event-dispatcher.git",
  7060. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  7061. },
  7062. "dist": {
  7063. "type": "zip",
  7064. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  7065. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  7066. "shasum": ""
  7067. },
  7068. "require": {
  7069. "php": ">=7.2.0"
  7070. },
  7071. "type": "library",
  7072. "extra": {
  7073. "branch-alias": {
  7074. "dev-master": "1.0.x-dev"
  7075. }
  7076. },
  7077. "autoload": {
  7078. "psr-4": {
  7079. "Psr\\EventDispatcher\\": "src/"
  7080. }
  7081. },
  7082. "notification-url": "https://packagist.org/downloads/",
  7083. "license": [
  7084. "MIT"
  7085. ],
  7086. "authors": [
  7087. {
  7088. "name": "PHP-FIG",
  7089. "homepage": "http://www.php-fig.org/"
  7090. }
  7091. ],
  7092. "description": "Standard interfaces for event handling.",
  7093. "keywords": [
  7094. "events",
  7095. "psr",
  7096. "psr-14"
  7097. ],
  7098. "support": {
  7099. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  7100. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  7101. },
  7102. "time": "2019-01-08T18:20:26+00:00"
  7103. },
  7104. {
  7105. "name": "psr/http-client",
  7106. "version": "1.0.3",
  7107. "source": {
  7108. "type": "git",
  7109. "url": "https://github.com/php-fig/http-client.git",
  7110. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  7111. },
  7112. "dist": {
  7113. "type": "zip",
  7114. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  7115. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  7116. "shasum": ""
  7117. },
  7118. "require": {
  7119. "php": "^7.0 || ^8.0",
  7120. "psr/http-message": "^1.0 || ^2.0"
  7121. },
  7122. "type": "library",
  7123. "extra": {
  7124. "branch-alias": {
  7125. "dev-master": "1.0.x-dev"
  7126. }
  7127. },
  7128. "autoload": {
  7129. "psr-4": {
  7130. "Psr\\Http\\Client\\": "src/"
  7131. }
  7132. },
  7133. "notification-url": "https://packagist.org/downloads/",
  7134. "license": [
  7135. "MIT"
  7136. ],
  7137. "authors": [
  7138. {
  7139. "name": "PHP-FIG",
  7140. "homepage": "https://www.php-fig.org/"
  7141. }
  7142. ],
  7143. "description": "Common interface for HTTP clients",
  7144. "homepage": "https://github.com/php-fig/http-client",
  7145. "keywords": [
  7146. "http",
  7147. "http-client",
  7148. "psr",
  7149. "psr-18"
  7150. ],
  7151. "support": {
  7152. "source": "https://github.com/php-fig/http-client"
  7153. },
  7154. "time": "2023-09-23T14:17:50+00:00"
  7155. },
  7156. {
  7157. "name": "psr/http-factory",
  7158. "version": "1.1.0",
  7159. "source": {
  7160. "type": "git",
  7161. "url": "https://github.com/php-fig/http-factory.git",
  7162. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  7163. },
  7164. "dist": {
  7165. "type": "zip",
  7166. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  7167. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  7168. "shasum": ""
  7169. },
  7170. "require": {
  7171. "php": ">=7.1",
  7172. "psr/http-message": "^1.0 || ^2.0"
  7173. },
  7174. "type": "library",
  7175. "extra": {
  7176. "branch-alias": {
  7177. "dev-master": "1.0.x-dev"
  7178. }
  7179. },
  7180. "autoload": {
  7181. "psr-4": {
  7182. "Psr\\Http\\Message\\": "src/"
  7183. }
  7184. },
  7185. "notification-url": "https://packagist.org/downloads/",
  7186. "license": [
  7187. "MIT"
  7188. ],
  7189. "authors": [
  7190. {
  7191. "name": "PHP-FIG",
  7192. "homepage": "https://www.php-fig.org/"
  7193. }
  7194. ],
  7195. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  7196. "keywords": [
  7197. "factory",
  7198. "http",
  7199. "message",
  7200. "psr",
  7201. "psr-17",
  7202. "psr-7",
  7203. "request",
  7204. "response"
  7205. ],
  7206. "support": {
  7207. "source": "https://github.com/php-fig/http-factory"
  7208. },
  7209. "time": "2024-04-15T12:06:14+00:00"
  7210. },
  7211. {
  7212. "name": "psr/http-message",
  7213. "version": "2.0",
  7214. "source": {
  7215. "type": "git",
  7216. "url": "https://github.com/php-fig/http-message.git",
  7217. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  7218. },
  7219. "dist": {
  7220. "type": "zip",
  7221. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  7222. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  7223. "shasum": ""
  7224. },
  7225. "require": {
  7226. "php": "^7.2 || ^8.0"
  7227. },
  7228. "type": "library",
  7229. "extra": {
  7230. "branch-alias": {
  7231. "dev-master": "2.0.x-dev"
  7232. }
  7233. },
  7234. "autoload": {
  7235. "psr-4": {
  7236. "Psr\\Http\\Message\\": "src/"
  7237. }
  7238. },
  7239. "notification-url": "https://packagist.org/downloads/",
  7240. "license": [
  7241. "MIT"
  7242. ],
  7243. "authors": [
  7244. {
  7245. "name": "PHP-FIG",
  7246. "homepage": "https://www.php-fig.org/"
  7247. }
  7248. ],
  7249. "description": "Common interface for HTTP messages",
  7250. "homepage": "https://github.com/php-fig/http-message",
  7251. "keywords": [
  7252. "http",
  7253. "http-message",
  7254. "psr",
  7255. "psr-7",
  7256. "request",
  7257. "response"
  7258. ],
  7259. "support": {
  7260. "source": "https://github.com/php-fig/http-message/tree/2.0"
  7261. },
  7262. "time": "2023-04-04T09:54:51+00:00"
  7263. },
  7264. {
  7265. "name": "psr/log",
  7266. "version": "3.0.2",
  7267. "source": {
  7268. "type": "git",
  7269. "url": "https://github.com/php-fig/log.git",
  7270. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  7271. },
  7272. "dist": {
  7273. "type": "zip",
  7274. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  7275. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  7276. "shasum": ""
  7277. },
  7278. "require": {
  7279. "php": ">=8.0.0"
  7280. },
  7281. "type": "library",
  7282. "extra": {
  7283. "branch-alias": {
  7284. "dev-master": "3.x-dev"
  7285. }
  7286. },
  7287. "autoload": {
  7288. "psr-4": {
  7289. "Psr\\Log\\": "src"
  7290. }
  7291. },
  7292. "notification-url": "https://packagist.org/downloads/",
  7293. "license": [
  7294. "MIT"
  7295. ],
  7296. "authors": [
  7297. {
  7298. "name": "PHP-FIG",
  7299. "homepage": "https://www.php-fig.org/"
  7300. }
  7301. ],
  7302. "description": "Common interface for logging libraries",
  7303. "homepage": "https://github.com/php-fig/log",
  7304. "keywords": [
  7305. "log",
  7306. "psr",
  7307. "psr-3"
  7308. ],
  7309. "support": {
  7310. "source": "https://github.com/php-fig/log/tree/3.0.2"
  7311. },
  7312. "time": "2024-09-11T13:17:53+00:00"
  7313. },
  7314. {
  7315. "name": "psy/psysh",
  7316. "version": "v0.12.4",
  7317. "source": {
  7318. "type": "git",
  7319. "url": "https://github.com/bobthecow/psysh.git",
  7320. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818"
  7321. },
  7322. "dist": {
  7323. "type": "zip",
  7324. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/2fd717afa05341b4f8152547f142cd2f130f6818",
  7325. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818",
  7326. "shasum": ""
  7327. },
  7328. "require": {
  7329. "ext-json": "*",
  7330. "ext-tokenizer": "*",
  7331. "nikic/php-parser": "^5.0 || ^4.0",
  7332. "php": "^8.0 || ^7.4",
  7333. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  7334. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  7335. },
  7336. "conflict": {
  7337. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  7338. },
  7339. "require-dev": {
  7340. "bamarni/composer-bin-plugin": "^1.2"
  7341. },
  7342. "suggest": {
  7343. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7344. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  7345. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  7346. },
  7347. "bin": [
  7348. "bin/psysh"
  7349. ],
  7350. "type": "library",
  7351. "extra": {
  7352. "branch-alias": {
  7353. "dev-main": "0.12.x-dev"
  7354. },
  7355. "bamarni-bin": {
  7356. "bin-links": false,
  7357. "forward-command": false
  7358. }
  7359. },
  7360. "autoload": {
  7361. "files": [
  7362. "src/functions.php"
  7363. ],
  7364. "psr-4": {
  7365. "Psy\\": "src/"
  7366. }
  7367. },
  7368. "notification-url": "https://packagist.org/downloads/",
  7369. "license": [
  7370. "MIT"
  7371. ],
  7372. "authors": [
  7373. {
  7374. "name": "Justin Hileman",
  7375. "email": "justin@justinhileman.info",
  7376. "homepage": "http://justinhileman.com"
  7377. }
  7378. ],
  7379. "description": "An interactive shell for modern PHP.",
  7380. "homepage": "http://psysh.org",
  7381. "keywords": [
  7382. "REPL",
  7383. "console",
  7384. "interactive",
  7385. "shell"
  7386. ],
  7387. "support": {
  7388. "issues": "https://github.com/bobthecow/psysh/issues",
  7389. "source": "https://github.com/bobthecow/psysh/tree/v0.12.4"
  7390. },
  7391. "time": "2024-06-10T01:18:23+00:00"
  7392. },
  7393. {
  7394. "name": "ralouphie/getallheaders",
  7395. "version": "3.0.3",
  7396. "source": {
  7397. "type": "git",
  7398. "url": "https://github.com/ralouphie/getallheaders.git",
  7399. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7400. },
  7401. "dist": {
  7402. "type": "zip",
  7403. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7404. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7405. "shasum": ""
  7406. },
  7407. "require": {
  7408. "php": ">=5.6"
  7409. },
  7410. "require-dev": {
  7411. "php-coveralls/php-coveralls": "^2.1",
  7412. "phpunit/phpunit": "^5 || ^6.5"
  7413. },
  7414. "type": "library",
  7415. "autoload": {
  7416. "files": [
  7417. "src/getallheaders.php"
  7418. ]
  7419. },
  7420. "notification-url": "https://packagist.org/downloads/",
  7421. "license": [
  7422. "MIT"
  7423. ],
  7424. "authors": [
  7425. {
  7426. "name": "Ralph Khattar",
  7427. "email": "ralph.khattar@gmail.com"
  7428. }
  7429. ],
  7430. "description": "A polyfill for getallheaders.",
  7431. "support": {
  7432. "issues": "https://github.com/ralouphie/getallheaders/issues",
  7433. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  7434. },
  7435. "time": "2019-03-08T08:55:37+00:00"
  7436. },
  7437. {
  7438. "name": "sebastian/diff",
  7439. "version": "4.0.6",
  7440. "source": {
  7441. "type": "git",
  7442. "url": "https://github.com/sebastianbergmann/diff.git",
  7443. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  7444. },
  7445. "dist": {
  7446. "type": "zip",
  7447. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  7448. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  7449. "shasum": ""
  7450. },
  7451. "require": {
  7452. "php": ">=7.3"
  7453. },
  7454. "require-dev": {
  7455. "phpunit/phpunit": "^9.3",
  7456. "symfony/process": "^4.2 || ^5"
  7457. },
  7458. "type": "library",
  7459. "extra": {
  7460. "branch-alias": {
  7461. "dev-master": "4.0-dev"
  7462. }
  7463. },
  7464. "autoload": {
  7465. "classmap": [
  7466. "src/"
  7467. ]
  7468. },
  7469. "notification-url": "https://packagist.org/downloads/",
  7470. "license": [
  7471. "BSD-3-Clause"
  7472. ],
  7473. "authors": [
  7474. {
  7475. "name": "Sebastian Bergmann",
  7476. "email": "sebastian@phpunit.de"
  7477. },
  7478. {
  7479. "name": "Kore Nordmann",
  7480. "email": "mail@kore-nordmann.de"
  7481. }
  7482. ],
  7483. "description": "Diff implementation",
  7484. "homepage": "https://github.com/sebastianbergmann/diff",
  7485. "keywords": [
  7486. "diff",
  7487. "udiff",
  7488. "unidiff",
  7489. "unified diff"
  7490. ],
  7491. "support": {
  7492. "issues": "https://github.com/sebastianbergmann/diff/issues",
  7493. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  7494. },
  7495. "funding": [
  7496. {
  7497. "url": "https://github.com/sebastianbergmann",
  7498. "type": "github"
  7499. }
  7500. ],
  7501. "time": "2024-03-02T06:30:58+00:00"
  7502. },
  7503. {
  7504. "name": "symfony/console",
  7505. "version": "v6.4.12",
  7506. "source": {
  7507. "type": "git",
  7508. "url": "https://github.com/symfony/console.git",
  7509. "reference": "72d080eb9edf80e36c19be61f72c98ed8273b765"
  7510. },
  7511. "dist": {
  7512. "type": "zip",
  7513. "url": "https://api.github.com/repos/symfony/console/zipball/72d080eb9edf80e36c19be61f72c98ed8273b765",
  7514. "reference": "72d080eb9edf80e36c19be61f72c98ed8273b765",
  7515. "shasum": ""
  7516. },
  7517. "require": {
  7518. "php": ">=8.1",
  7519. "symfony/deprecation-contracts": "^2.5|^3",
  7520. "symfony/polyfill-mbstring": "~1.0",
  7521. "symfony/service-contracts": "^2.5|^3",
  7522. "symfony/string": "^5.4|^6.0|^7.0"
  7523. },
  7524. "conflict": {
  7525. "symfony/dependency-injection": "<5.4",
  7526. "symfony/dotenv": "<5.4",
  7527. "symfony/event-dispatcher": "<5.4",
  7528. "symfony/lock": "<5.4",
  7529. "symfony/process": "<5.4"
  7530. },
  7531. "provide": {
  7532. "psr/log-implementation": "1.0|2.0|3.0"
  7533. },
  7534. "require-dev": {
  7535. "psr/log": "^1|^2|^3",
  7536. "symfony/config": "^5.4|^6.0|^7.0",
  7537. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7538. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  7539. "symfony/http-foundation": "^6.4|^7.0",
  7540. "symfony/http-kernel": "^6.4|^7.0",
  7541. "symfony/lock": "^5.4|^6.0|^7.0",
  7542. "symfony/messenger": "^5.4|^6.0|^7.0",
  7543. "symfony/process": "^5.4|^6.0|^7.0",
  7544. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  7545. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7546. },
  7547. "type": "library",
  7548. "autoload": {
  7549. "psr-4": {
  7550. "Symfony\\Component\\Console\\": ""
  7551. },
  7552. "exclude-from-classmap": [
  7553. "/Tests/"
  7554. ]
  7555. },
  7556. "notification-url": "https://packagist.org/downloads/",
  7557. "license": [
  7558. "MIT"
  7559. ],
  7560. "authors": [
  7561. {
  7562. "name": "Fabien Potencier",
  7563. "email": "fabien@symfony.com"
  7564. },
  7565. {
  7566. "name": "Symfony Community",
  7567. "homepage": "https://symfony.com/contributors"
  7568. }
  7569. ],
  7570. "description": "Eases the creation of beautiful and testable command line interfaces",
  7571. "homepage": "https://symfony.com",
  7572. "keywords": [
  7573. "cli",
  7574. "command-line",
  7575. "console",
  7576. "terminal"
  7577. ],
  7578. "support": {
  7579. "source": "https://github.com/symfony/console/tree/v6.4.12"
  7580. },
  7581. "funding": [
  7582. {
  7583. "url": "https://symfony.com/sponsor",
  7584. "type": "custom"
  7585. },
  7586. {
  7587. "url": "https://github.com/fabpot",
  7588. "type": "github"
  7589. },
  7590. {
  7591. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7592. "type": "tidelift"
  7593. }
  7594. ],
  7595. "time": "2024-09-20T08:15:52+00:00"
  7596. },
  7597. {
  7598. "name": "symfony/dependency-injection",
  7599. "version": "v6.4.12",
  7600. "source": {
  7601. "type": "git",
  7602. "url": "https://github.com/symfony/dependency-injection.git",
  7603. "reference": "cfb9d34a1cdd4911bc737a5358fd1cf8ebfb536e"
  7604. },
  7605. "dist": {
  7606. "type": "zip",
  7607. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/cfb9d34a1cdd4911bc737a5358fd1cf8ebfb536e",
  7608. "reference": "cfb9d34a1cdd4911bc737a5358fd1cf8ebfb536e",
  7609. "shasum": ""
  7610. },
  7611. "require": {
  7612. "php": ">=8.1",
  7613. "psr/container": "^1.1|^2.0",
  7614. "symfony/deprecation-contracts": "^2.5|^3",
  7615. "symfony/service-contracts": "^2.5|^3.0",
  7616. "symfony/var-exporter": "^6.2.10|^7.0"
  7617. },
  7618. "conflict": {
  7619. "ext-psr": "<1.1|>=2",
  7620. "symfony/config": "<6.1",
  7621. "symfony/finder": "<5.4",
  7622. "symfony/proxy-manager-bridge": "<6.3",
  7623. "symfony/yaml": "<5.4"
  7624. },
  7625. "provide": {
  7626. "psr/container-implementation": "1.1|2.0",
  7627. "symfony/service-implementation": "1.1|2.0|3.0"
  7628. },
  7629. "require-dev": {
  7630. "symfony/config": "^6.1|^7.0",
  7631. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7632. "symfony/yaml": "^5.4|^6.0|^7.0"
  7633. },
  7634. "type": "library",
  7635. "autoload": {
  7636. "psr-4": {
  7637. "Symfony\\Component\\DependencyInjection\\": ""
  7638. },
  7639. "exclude-from-classmap": [
  7640. "/Tests/"
  7641. ]
  7642. },
  7643. "notification-url": "https://packagist.org/downloads/",
  7644. "license": [
  7645. "MIT"
  7646. ],
  7647. "authors": [
  7648. {
  7649. "name": "Fabien Potencier",
  7650. "email": "fabien@symfony.com"
  7651. },
  7652. {
  7653. "name": "Symfony Community",
  7654. "homepage": "https://symfony.com/contributors"
  7655. }
  7656. ],
  7657. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  7658. "homepage": "https://symfony.com",
  7659. "support": {
  7660. "source": "https://github.com/symfony/dependency-injection/tree/v6.4.12"
  7661. },
  7662. "funding": [
  7663. {
  7664. "url": "https://symfony.com/sponsor",
  7665. "type": "custom"
  7666. },
  7667. {
  7668. "url": "https://github.com/fabpot",
  7669. "type": "github"
  7670. },
  7671. {
  7672. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7673. "type": "tidelift"
  7674. }
  7675. ],
  7676. "time": "2024-09-20T08:18:25+00:00"
  7677. },
  7678. {
  7679. "name": "symfony/deprecation-contracts",
  7680. "version": "v3.5.0",
  7681. "source": {
  7682. "type": "git",
  7683. "url": "https://github.com/symfony/deprecation-contracts.git",
  7684. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  7685. },
  7686. "dist": {
  7687. "type": "zip",
  7688. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  7689. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  7690. "shasum": ""
  7691. },
  7692. "require": {
  7693. "php": ">=8.1"
  7694. },
  7695. "type": "library",
  7696. "extra": {
  7697. "branch-alias": {
  7698. "dev-main": "3.5-dev"
  7699. },
  7700. "thanks": {
  7701. "name": "symfony/contracts",
  7702. "url": "https://github.com/symfony/contracts"
  7703. }
  7704. },
  7705. "autoload": {
  7706. "files": [
  7707. "function.php"
  7708. ]
  7709. },
  7710. "notification-url": "https://packagist.org/downloads/",
  7711. "license": [
  7712. "MIT"
  7713. ],
  7714. "authors": [
  7715. {
  7716. "name": "Nicolas Grekas",
  7717. "email": "p@tchwork.com"
  7718. },
  7719. {
  7720. "name": "Symfony Community",
  7721. "homepage": "https://symfony.com/contributors"
  7722. }
  7723. ],
  7724. "description": "A generic function and convention to trigger deprecation notices",
  7725. "homepage": "https://symfony.com",
  7726. "support": {
  7727. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  7728. },
  7729. "funding": [
  7730. {
  7731. "url": "https://symfony.com/sponsor",
  7732. "type": "custom"
  7733. },
  7734. {
  7735. "url": "https://github.com/fabpot",
  7736. "type": "github"
  7737. },
  7738. {
  7739. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7740. "type": "tidelift"
  7741. }
  7742. ],
  7743. "time": "2024-04-18T09:32:20+00:00"
  7744. },
  7745. {
  7746. "name": "symfony/error-handler",
  7747. "version": "v6.4.10",
  7748. "source": {
  7749. "type": "git",
  7750. "url": "https://github.com/symfony/error-handler.git",
  7751. "reference": "231f1b2ee80f72daa1972f7340297d67439224f0"
  7752. },
  7753. "dist": {
  7754. "type": "zip",
  7755. "url": "https://api.github.com/repos/symfony/error-handler/zipball/231f1b2ee80f72daa1972f7340297d67439224f0",
  7756. "reference": "231f1b2ee80f72daa1972f7340297d67439224f0",
  7757. "shasum": ""
  7758. },
  7759. "require": {
  7760. "php": ">=8.1",
  7761. "psr/log": "^1|^2|^3",
  7762. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7763. },
  7764. "conflict": {
  7765. "symfony/deprecation-contracts": "<2.5",
  7766. "symfony/http-kernel": "<6.4"
  7767. },
  7768. "require-dev": {
  7769. "symfony/deprecation-contracts": "^2.5|^3",
  7770. "symfony/http-kernel": "^6.4|^7.0",
  7771. "symfony/serializer": "^5.4|^6.0|^7.0"
  7772. },
  7773. "bin": [
  7774. "Resources/bin/patch-type-declarations"
  7775. ],
  7776. "type": "library",
  7777. "autoload": {
  7778. "psr-4": {
  7779. "Symfony\\Component\\ErrorHandler\\": ""
  7780. },
  7781. "exclude-from-classmap": [
  7782. "/Tests/"
  7783. ]
  7784. },
  7785. "notification-url": "https://packagist.org/downloads/",
  7786. "license": [
  7787. "MIT"
  7788. ],
  7789. "authors": [
  7790. {
  7791. "name": "Fabien Potencier",
  7792. "email": "fabien@symfony.com"
  7793. },
  7794. {
  7795. "name": "Symfony Community",
  7796. "homepage": "https://symfony.com/contributors"
  7797. }
  7798. ],
  7799. "description": "Provides tools to manage errors and ease debugging PHP code",
  7800. "homepage": "https://symfony.com",
  7801. "support": {
  7802. "source": "https://github.com/symfony/error-handler/tree/v6.4.10"
  7803. },
  7804. "funding": [
  7805. {
  7806. "url": "https://symfony.com/sponsor",
  7807. "type": "custom"
  7808. },
  7809. {
  7810. "url": "https://github.com/fabpot",
  7811. "type": "github"
  7812. },
  7813. {
  7814. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7815. "type": "tidelift"
  7816. }
  7817. ],
  7818. "time": "2024-07-26T12:30:32+00:00"
  7819. },
  7820. {
  7821. "name": "symfony/event-dispatcher",
  7822. "version": "v6.4.8",
  7823. "source": {
  7824. "type": "git",
  7825. "url": "https://github.com/symfony/event-dispatcher.git",
  7826. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b"
  7827. },
  7828. "dist": {
  7829. "type": "zip",
  7830. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8d7507f02b06e06815e56bb39aa0128e3806208b",
  7831. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b",
  7832. "shasum": ""
  7833. },
  7834. "require": {
  7835. "php": ">=8.1",
  7836. "symfony/event-dispatcher-contracts": "^2.5|^3"
  7837. },
  7838. "conflict": {
  7839. "symfony/dependency-injection": "<5.4",
  7840. "symfony/service-contracts": "<2.5"
  7841. },
  7842. "provide": {
  7843. "psr/event-dispatcher-implementation": "1.0",
  7844. "symfony/event-dispatcher-implementation": "2.0|3.0"
  7845. },
  7846. "require-dev": {
  7847. "psr/log": "^1|^2|^3",
  7848. "symfony/config": "^5.4|^6.0|^7.0",
  7849. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7850. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7851. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7852. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  7853. "symfony/service-contracts": "^2.5|^3",
  7854. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  7855. },
  7856. "type": "library",
  7857. "autoload": {
  7858. "psr-4": {
  7859. "Symfony\\Component\\EventDispatcher\\": ""
  7860. },
  7861. "exclude-from-classmap": [
  7862. "/Tests/"
  7863. ]
  7864. },
  7865. "notification-url": "https://packagist.org/downloads/",
  7866. "license": [
  7867. "MIT"
  7868. ],
  7869. "authors": [
  7870. {
  7871. "name": "Fabien Potencier",
  7872. "email": "fabien@symfony.com"
  7873. },
  7874. {
  7875. "name": "Symfony Community",
  7876. "homepage": "https://symfony.com/contributors"
  7877. }
  7878. ],
  7879. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  7880. "homepage": "https://symfony.com",
  7881. "support": {
  7882. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.8"
  7883. },
  7884. "funding": [
  7885. {
  7886. "url": "https://symfony.com/sponsor",
  7887. "type": "custom"
  7888. },
  7889. {
  7890. "url": "https://github.com/fabpot",
  7891. "type": "github"
  7892. },
  7893. {
  7894. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7895. "type": "tidelift"
  7896. }
  7897. ],
  7898. "time": "2024-05-31T14:49:08+00:00"
  7899. },
  7900. {
  7901. "name": "symfony/event-dispatcher-contracts",
  7902. "version": "v3.5.0",
  7903. "source": {
  7904. "type": "git",
  7905. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  7906. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  7907. },
  7908. "dist": {
  7909. "type": "zip",
  7910. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  7911. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  7912. "shasum": ""
  7913. },
  7914. "require": {
  7915. "php": ">=8.1",
  7916. "psr/event-dispatcher": "^1"
  7917. },
  7918. "type": "library",
  7919. "extra": {
  7920. "branch-alias": {
  7921. "dev-main": "3.5-dev"
  7922. },
  7923. "thanks": {
  7924. "name": "symfony/contracts",
  7925. "url": "https://github.com/symfony/contracts"
  7926. }
  7927. },
  7928. "autoload": {
  7929. "psr-4": {
  7930. "Symfony\\Contracts\\EventDispatcher\\": ""
  7931. }
  7932. },
  7933. "notification-url": "https://packagist.org/downloads/",
  7934. "license": [
  7935. "MIT"
  7936. ],
  7937. "authors": [
  7938. {
  7939. "name": "Nicolas Grekas",
  7940. "email": "p@tchwork.com"
  7941. },
  7942. {
  7943. "name": "Symfony Community",
  7944. "homepage": "https://symfony.com/contributors"
  7945. }
  7946. ],
  7947. "description": "Generic abstractions related to dispatching event",
  7948. "homepage": "https://symfony.com",
  7949. "keywords": [
  7950. "abstractions",
  7951. "contracts",
  7952. "decoupling",
  7953. "interfaces",
  7954. "interoperability",
  7955. "standards"
  7956. ],
  7957. "support": {
  7958. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  7959. },
  7960. "funding": [
  7961. {
  7962. "url": "https://symfony.com/sponsor",
  7963. "type": "custom"
  7964. },
  7965. {
  7966. "url": "https://github.com/fabpot",
  7967. "type": "github"
  7968. },
  7969. {
  7970. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7971. "type": "tidelift"
  7972. }
  7973. ],
  7974. "time": "2024-04-18T09:32:20+00:00"
  7975. },
  7976. {
  7977. "name": "symfony/filesystem",
  7978. "version": "v6.4.12",
  7979. "source": {
  7980. "type": "git",
  7981. "url": "https://github.com/symfony/filesystem.git",
  7982. "reference": "f810e3cbdf7fdc35983968523d09f349fa9ada12"
  7983. },
  7984. "dist": {
  7985. "type": "zip",
  7986. "url": "https://api.github.com/repos/symfony/filesystem/zipball/f810e3cbdf7fdc35983968523d09f349fa9ada12",
  7987. "reference": "f810e3cbdf7fdc35983968523d09f349fa9ada12",
  7988. "shasum": ""
  7989. },
  7990. "require": {
  7991. "php": ">=8.1",
  7992. "symfony/polyfill-ctype": "~1.8",
  7993. "symfony/polyfill-mbstring": "~1.8"
  7994. },
  7995. "require-dev": {
  7996. "symfony/process": "^5.4|^6.4|^7.0"
  7997. },
  7998. "type": "library",
  7999. "autoload": {
  8000. "psr-4": {
  8001. "Symfony\\Component\\Filesystem\\": ""
  8002. },
  8003. "exclude-from-classmap": [
  8004. "/Tests/"
  8005. ]
  8006. },
  8007. "notification-url": "https://packagist.org/downloads/",
  8008. "license": [
  8009. "MIT"
  8010. ],
  8011. "authors": [
  8012. {
  8013. "name": "Fabien Potencier",
  8014. "email": "fabien@symfony.com"
  8015. },
  8016. {
  8017. "name": "Symfony Community",
  8018. "homepage": "https://symfony.com/contributors"
  8019. }
  8020. ],
  8021. "description": "Provides basic utilities for the filesystem",
  8022. "homepage": "https://symfony.com",
  8023. "support": {
  8024. "source": "https://github.com/symfony/filesystem/tree/v6.4.12"
  8025. },
  8026. "funding": [
  8027. {
  8028. "url": "https://symfony.com/sponsor",
  8029. "type": "custom"
  8030. },
  8031. {
  8032. "url": "https://github.com/fabpot",
  8033. "type": "github"
  8034. },
  8035. {
  8036. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8037. "type": "tidelift"
  8038. }
  8039. ],
  8040. "time": "2024-09-16T16:01:33+00:00"
  8041. },
  8042. {
  8043. "name": "symfony/finder",
  8044. "version": "v6.4.11",
  8045. "source": {
  8046. "type": "git",
  8047. "url": "https://github.com/symfony/finder.git",
  8048. "reference": "d7eb6daf8cd7e9ac4976e9576b32042ef7253453"
  8049. },
  8050. "dist": {
  8051. "type": "zip",
  8052. "url": "https://api.github.com/repos/symfony/finder/zipball/d7eb6daf8cd7e9ac4976e9576b32042ef7253453",
  8053. "reference": "d7eb6daf8cd7e9ac4976e9576b32042ef7253453",
  8054. "shasum": ""
  8055. },
  8056. "require": {
  8057. "php": ">=8.1"
  8058. },
  8059. "require-dev": {
  8060. "symfony/filesystem": "^6.0|^7.0"
  8061. },
  8062. "type": "library",
  8063. "autoload": {
  8064. "psr-4": {
  8065. "Symfony\\Component\\Finder\\": ""
  8066. },
  8067. "exclude-from-classmap": [
  8068. "/Tests/"
  8069. ]
  8070. },
  8071. "notification-url": "https://packagist.org/downloads/",
  8072. "license": [
  8073. "MIT"
  8074. ],
  8075. "authors": [
  8076. {
  8077. "name": "Fabien Potencier",
  8078. "email": "fabien@symfony.com"
  8079. },
  8080. {
  8081. "name": "Symfony Community",
  8082. "homepage": "https://symfony.com/contributors"
  8083. }
  8084. ],
  8085. "description": "Finds files and directories via an intuitive fluent interface",
  8086. "homepage": "https://symfony.com",
  8087. "support": {
  8088. "source": "https://github.com/symfony/finder/tree/v6.4.11"
  8089. },
  8090. "funding": [
  8091. {
  8092. "url": "https://symfony.com/sponsor",
  8093. "type": "custom"
  8094. },
  8095. {
  8096. "url": "https://github.com/fabpot",
  8097. "type": "github"
  8098. },
  8099. {
  8100. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8101. "type": "tidelift"
  8102. }
  8103. ],
  8104. "time": "2024-08-13T14:27:37+00:00"
  8105. },
  8106. {
  8107. "name": "symfony/http-foundation",
  8108. "version": "v6.4.12",
  8109. "source": {
  8110. "type": "git",
  8111. "url": "https://github.com/symfony/http-foundation.git",
  8112. "reference": "133ac043875f59c26c55e79cf074562127cce4d2"
  8113. },
  8114. "dist": {
  8115. "type": "zip",
  8116. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/133ac043875f59c26c55e79cf074562127cce4d2",
  8117. "reference": "133ac043875f59c26c55e79cf074562127cce4d2",
  8118. "shasum": ""
  8119. },
  8120. "require": {
  8121. "php": ">=8.1",
  8122. "symfony/deprecation-contracts": "^2.5|^3",
  8123. "symfony/polyfill-mbstring": "~1.1",
  8124. "symfony/polyfill-php83": "^1.27"
  8125. },
  8126. "conflict": {
  8127. "symfony/cache": "<6.3"
  8128. },
  8129. "require-dev": {
  8130. "doctrine/dbal": "^2.13.1|^3|^4",
  8131. "predis/predis": "^1.1|^2.0",
  8132. "symfony/cache": "^6.3|^7.0",
  8133. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8134. "symfony/expression-language": "^5.4|^6.0|^7.0",
  8135. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  8136. "symfony/mime": "^5.4|^6.0|^7.0",
  8137. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  8138. },
  8139. "type": "library",
  8140. "autoload": {
  8141. "psr-4": {
  8142. "Symfony\\Component\\HttpFoundation\\": ""
  8143. },
  8144. "exclude-from-classmap": [
  8145. "/Tests/"
  8146. ]
  8147. },
  8148. "notification-url": "https://packagist.org/downloads/",
  8149. "license": [
  8150. "MIT"
  8151. ],
  8152. "authors": [
  8153. {
  8154. "name": "Fabien Potencier",
  8155. "email": "fabien@symfony.com"
  8156. },
  8157. {
  8158. "name": "Symfony Community",
  8159. "homepage": "https://symfony.com/contributors"
  8160. }
  8161. ],
  8162. "description": "Defines an object-oriented layer for the HTTP specification",
  8163. "homepage": "https://symfony.com",
  8164. "support": {
  8165. "source": "https://github.com/symfony/http-foundation/tree/v6.4.12"
  8166. },
  8167. "funding": [
  8168. {
  8169. "url": "https://symfony.com/sponsor",
  8170. "type": "custom"
  8171. },
  8172. {
  8173. "url": "https://github.com/fabpot",
  8174. "type": "github"
  8175. },
  8176. {
  8177. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8178. "type": "tidelift"
  8179. }
  8180. ],
  8181. "time": "2024-09-20T08:18:25+00:00"
  8182. },
  8183. {
  8184. "name": "symfony/http-kernel",
  8185. "version": "v6.4.12",
  8186. "source": {
  8187. "type": "git",
  8188. "url": "https://github.com/symfony/http-kernel.git",
  8189. "reference": "96df83d51b5f78804f70c093b97310794fd6257b"
  8190. },
  8191. "dist": {
  8192. "type": "zip",
  8193. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/96df83d51b5f78804f70c093b97310794fd6257b",
  8194. "reference": "96df83d51b5f78804f70c093b97310794fd6257b",
  8195. "shasum": ""
  8196. },
  8197. "require": {
  8198. "php": ">=8.1",
  8199. "psr/log": "^1|^2|^3",
  8200. "symfony/deprecation-contracts": "^2.5|^3",
  8201. "symfony/error-handler": "^6.4|^7.0",
  8202. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  8203. "symfony/http-foundation": "^6.4|^7.0",
  8204. "symfony/polyfill-ctype": "^1.8"
  8205. },
  8206. "conflict": {
  8207. "symfony/browser-kit": "<5.4",
  8208. "symfony/cache": "<5.4",
  8209. "symfony/config": "<6.1",
  8210. "symfony/console": "<5.4",
  8211. "symfony/dependency-injection": "<6.4",
  8212. "symfony/doctrine-bridge": "<5.4",
  8213. "symfony/form": "<5.4",
  8214. "symfony/http-client": "<5.4",
  8215. "symfony/http-client-contracts": "<2.5",
  8216. "symfony/mailer": "<5.4",
  8217. "symfony/messenger": "<5.4",
  8218. "symfony/translation": "<5.4",
  8219. "symfony/translation-contracts": "<2.5",
  8220. "symfony/twig-bridge": "<5.4",
  8221. "symfony/validator": "<6.4",
  8222. "symfony/var-dumper": "<6.3",
  8223. "twig/twig": "<2.13"
  8224. },
  8225. "provide": {
  8226. "psr/log-implementation": "1.0|2.0|3.0"
  8227. },
  8228. "require-dev": {
  8229. "psr/cache": "^1.0|^2.0|^3.0",
  8230. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  8231. "symfony/clock": "^6.2|^7.0",
  8232. "symfony/config": "^6.1|^7.0",
  8233. "symfony/console": "^5.4|^6.0|^7.0",
  8234. "symfony/css-selector": "^5.4|^6.0|^7.0",
  8235. "symfony/dependency-injection": "^6.4|^7.0",
  8236. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  8237. "symfony/expression-language": "^5.4|^6.0|^7.0",
  8238. "symfony/finder": "^5.4|^6.0|^7.0",
  8239. "symfony/http-client-contracts": "^2.5|^3",
  8240. "symfony/process": "^5.4|^6.0|^7.0",
  8241. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  8242. "symfony/routing": "^5.4|^6.0|^7.0",
  8243. "symfony/serializer": "^6.4.4|^7.0.4",
  8244. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  8245. "symfony/translation": "^5.4|^6.0|^7.0",
  8246. "symfony/translation-contracts": "^2.5|^3",
  8247. "symfony/uid": "^5.4|^6.0|^7.0",
  8248. "symfony/validator": "^6.4|^7.0",
  8249. "symfony/var-dumper": "^5.4|^6.4|^7.0",
  8250. "symfony/var-exporter": "^6.2|^7.0",
  8251. "twig/twig": "^2.13|^3.0.4"
  8252. },
  8253. "type": "library",
  8254. "autoload": {
  8255. "psr-4": {
  8256. "Symfony\\Component\\HttpKernel\\": ""
  8257. },
  8258. "exclude-from-classmap": [
  8259. "/Tests/"
  8260. ]
  8261. },
  8262. "notification-url": "https://packagist.org/downloads/",
  8263. "license": [
  8264. "MIT"
  8265. ],
  8266. "authors": [
  8267. {
  8268. "name": "Fabien Potencier",
  8269. "email": "fabien@symfony.com"
  8270. },
  8271. {
  8272. "name": "Symfony Community",
  8273. "homepage": "https://symfony.com/contributors"
  8274. }
  8275. ],
  8276. "description": "Provides a structured process for converting a Request into a Response",
  8277. "homepage": "https://symfony.com",
  8278. "support": {
  8279. "source": "https://github.com/symfony/http-kernel/tree/v6.4.12"
  8280. },
  8281. "funding": [
  8282. {
  8283. "url": "https://symfony.com/sponsor",
  8284. "type": "custom"
  8285. },
  8286. {
  8287. "url": "https://github.com/fabpot",
  8288. "type": "github"
  8289. },
  8290. {
  8291. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8292. "type": "tidelift"
  8293. }
  8294. ],
  8295. "time": "2024-09-21T06:02:57+00:00"
  8296. },
  8297. {
  8298. "name": "symfony/mailer",
  8299. "version": "v6.4.12",
  8300. "source": {
  8301. "type": "git",
  8302. "url": "https://github.com/symfony/mailer.git",
  8303. "reference": "b6a25408c569ae2366b3f663a4edad19420a9c26"
  8304. },
  8305. "dist": {
  8306. "type": "zip",
  8307. "url": "https://api.github.com/repos/symfony/mailer/zipball/b6a25408c569ae2366b3f663a4edad19420a9c26",
  8308. "reference": "b6a25408c569ae2366b3f663a4edad19420a9c26",
  8309. "shasum": ""
  8310. },
  8311. "require": {
  8312. "egulias/email-validator": "^2.1.10|^3|^4",
  8313. "php": ">=8.1",
  8314. "psr/event-dispatcher": "^1",
  8315. "psr/log": "^1|^2|^3",
  8316. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  8317. "symfony/mime": "^6.2|^7.0",
  8318. "symfony/service-contracts": "^2.5|^3"
  8319. },
  8320. "conflict": {
  8321. "symfony/http-client-contracts": "<2.5",
  8322. "symfony/http-kernel": "<5.4",
  8323. "symfony/messenger": "<6.2",
  8324. "symfony/mime": "<6.2",
  8325. "symfony/twig-bridge": "<6.2.1"
  8326. },
  8327. "require-dev": {
  8328. "symfony/console": "^5.4|^6.0|^7.0",
  8329. "symfony/http-client": "^5.4|^6.0|^7.0",
  8330. "symfony/messenger": "^6.2|^7.0",
  8331. "symfony/twig-bridge": "^6.2|^7.0"
  8332. },
  8333. "type": "library",
  8334. "autoload": {
  8335. "psr-4": {
  8336. "Symfony\\Component\\Mailer\\": ""
  8337. },
  8338. "exclude-from-classmap": [
  8339. "/Tests/"
  8340. ]
  8341. },
  8342. "notification-url": "https://packagist.org/downloads/",
  8343. "license": [
  8344. "MIT"
  8345. ],
  8346. "authors": [
  8347. {
  8348. "name": "Fabien Potencier",
  8349. "email": "fabien@symfony.com"
  8350. },
  8351. {
  8352. "name": "Symfony Community",
  8353. "homepage": "https://symfony.com/contributors"
  8354. }
  8355. ],
  8356. "description": "Helps sending emails",
  8357. "homepage": "https://symfony.com",
  8358. "support": {
  8359. "source": "https://github.com/symfony/mailer/tree/v6.4.12"
  8360. },
  8361. "funding": [
  8362. {
  8363. "url": "https://symfony.com/sponsor",
  8364. "type": "custom"
  8365. },
  8366. {
  8367. "url": "https://github.com/fabpot",
  8368. "type": "github"
  8369. },
  8370. {
  8371. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8372. "type": "tidelift"
  8373. }
  8374. ],
  8375. "time": "2024-09-08T12:30:05+00:00"
  8376. },
  8377. {
  8378. "name": "symfony/mime",
  8379. "version": "v6.4.12",
  8380. "source": {
  8381. "type": "git",
  8382. "url": "https://github.com/symfony/mime.git",
  8383. "reference": "abe16ee7790b16aa525877419deb0f113953f0e1"
  8384. },
  8385. "dist": {
  8386. "type": "zip",
  8387. "url": "https://api.github.com/repos/symfony/mime/zipball/abe16ee7790b16aa525877419deb0f113953f0e1",
  8388. "reference": "abe16ee7790b16aa525877419deb0f113953f0e1",
  8389. "shasum": ""
  8390. },
  8391. "require": {
  8392. "php": ">=8.1",
  8393. "symfony/deprecation-contracts": "^2.5|^3",
  8394. "symfony/polyfill-intl-idn": "^1.10",
  8395. "symfony/polyfill-mbstring": "^1.0"
  8396. },
  8397. "conflict": {
  8398. "egulias/email-validator": "~3.0.0",
  8399. "phpdocumentor/reflection-docblock": "<3.2.2",
  8400. "phpdocumentor/type-resolver": "<1.4.0",
  8401. "symfony/mailer": "<5.4",
  8402. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  8403. },
  8404. "require-dev": {
  8405. "egulias/email-validator": "^2.1.10|^3.1|^4",
  8406. "league/html-to-markdown": "^5.0",
  8407. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  8408. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8409. "symfony/process": "^5.4|^6.4|^7.0",
  8410. "symfony/property-access": "^5.4|^6.0|^7.0",
  8411. "symfony/property-info": "^5.4|^6.0|^7.0",
  8412. "symfony/serializer": "^6.4.3|^7.0.3"
  8413. },
  8414. "type": "library",
  8415. "autoload": {
  8416. "psr-4": {
  8417. "Symfony\\Component\\Mime\\": ""
  8418. },
  8419. "exclude-from-classmap": [
  8420. "/Tests/"
  8421. ]
  8422. },
  8423. "notification-url": "https://packagist.org/downloads/",
  8424. "license": [
  8425. "MIT"
  8426. ],
  8427. "authors": [
  8428. {
  8429. "name": "Fabien Potencier",
  8430. "email": "fabien@symfony.com"
  8431. },
  8432. {
  8433. "name": "Symfony Community",
  8434. "homepage": "https://symfony.com/contributors"
  8435. }
  8436. ],
  8437. "description": "Allows manipulating MIME messages",
  8438. "homepage": "https://symfony.com",
  8439. "keywords": [
  8440. "mime",
  8441. "mime-type"
  8442. ],
  8443. "support": {
  8444. "source": "https://github.com/symfony/mime/tree/v6.4.12"
  8445. },
  8446. "funding": [
  8447. {
  8448. "url": "https://symfony.com/sponsor",
  8449. "type": "custom"
  8450. },
  8451. {
  8452. "url": "https://github.com/fabpot",
  8453. "type": "github"
  8454. },
  8455. {
  8456. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8457. "type": "tidelift"
  8458. }
  8459. ],
  8460. "time": "2024-09-20T08:18:25+00:00"
  8461. },
  8462. {
  8463. "name": "symfony/polyfill-ctype",
  8464. "version": "v1.29.0",
  8465. "source": {
  8466. "type": "git",
  8467. "url": "https://github.com/symfony/polyfill-ctype.git",
  8468. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
  8469. },
  8470. "dist": {
  8471. "type": "zip",
  8472. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
  8473. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
  8474. "shasum": ""
  8475. },
  8476. "require": {
  8477. "php": ">=7.1"
  8478. },
  8479. "provide": {
  8480. "ext-ctype": "*"
  8481. },
  8482. "suggest": {
  8483. "ext-ctype": "For best performance"
  8484. },
  8485. "type": "library",
  8486. "extra": {
  8487. "thanks": {
  8488. "name": "symfony/polyfill",
  8489. "url": "https://github.com/symfony/polyfill"
  8490. }
  8491. },
  8492. "autoload": {
  8493. "files": [
  8494. "bootstrap.php"
  8495. ],
  8496. "psr-4": {
  8497. "Symfony\\Polyfill\\Ctype\\": ""
  8498. }
  8499. },
  8500. "notification-url": "https://packagist.org/downloads/",
  8501. "license": [
  8502. "MIT"
  8503. ],
  8504. "authors": [
  8505. {
  8506. "name": "Gert de Pagter",
  8507. "email": "BackEndTea@gmail.com"
  8508. },
  8509. {
  8510. "name": "Symfony Community",
  8511. "homepage": "https://symfony.com/contributors"
  8512. }
  8513. ],
  8514. "description": "Symfony polyfill for ctype functions",
  8515. "homepage": "https://symfony.com",
  8516. "keywords": [
  8517. "compatibility",
  8518. "ctype",
  8519. "polyfill",
  8520. "portable"
  8521. ],
  8522. "support": {
  8523. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
  8524. },
  8525. "funding": [
  8526. {
  8527. "url": "https://symfony.com/sponsor",
  8528. "type": "custom"
  8529. },
  8530. {
  8531. "url": "https://github.com/fabpot",
  8532. "type": "github"
  8533. },
  8534. {
  8535. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8536. "type": "tidelift"
  8537. }
  8538. ],
  8539. "time": "2024-01-29T20:11:03+00:00"
  8540. },
  8541. {
  8542. "name": "symfony/polyfill-iconv",
  8543. "version": "v1.29.0",
  8544. "source": {
  8545. "type": "git",
  8546. "url": "https://github.com/symfony/polyfill-iconv.git",
  8547. "reference": "cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f"
  8548. },
  8549. "dist": {
  8550. "type": "zip",
  8551. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f",
  8552. "reference": "cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f",
  8553. "shasum": ""
  8554. },
  8555. "require": {
  8556. "php": ">=7.1"
  8557. },
  8558. "provide": {
  8559. "ext-iconv": "*"
  8560. },
  8561. "suggest": {
  8562. "ext-iconv": "For best performance"
  8563. },
  8564. "type": "library",
  8565. "extra": {
  8566. "thanks": {
  8567. "name": "symfony/polyfill",
  8568. "url": "https://github.com/symfony/polyfill"
  8569. }
  8570. },
  8571. "autoload": {
  8572. "files": [
  8573. "bootstrap.php"
  8574. ],
  8575. "psr-4": {
  8576. "Symfony\\Polyfill\\Iconv\\": ""
  8577. }
  8578. },
  8579. "notification-url": "https://packagist.org/downloads/",
  8580. "license": [
  8581. "MIT"
  8582. ],
  8583. "authors": [
  8584. {
  8585. "name": "Nicolas Grekas",
  8586. "email": "p@tchwork.com"
  8587. },
  8588. {
  8589. "name": "Symfony Community",
  8590. "homepage": "https://symfony.com/contributors"
  8591. }
  8592. ],
  8593. "description": "Symfony polyfill for the Iconv extension",
  8594. "homepage": "https://symfony.com",
  8595. "keywords": [
  8596. "compatibility",
  8597. "iconv",
  8598. "polyfill",
  8599. "portable",
  8600. "shim"
  8601. ],
  8602. "support": {
  8603. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.29.0"
  8604. },
  8605. "funding": [
  8606. {
  8607. "url": "https://symfony.com/sponsor",
  8608. "type": "custom"
  8609. },
  8610. {
  8611. "url": "https://github.com/fabpot",
  8612. "type": "github"
  8613. },
  8614. {
  8615. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8616. "type": "tidelift"
  8617. }
  8618. ],
  8619. "time": "2024-01-29T20:11:03+00:00"
  8620. },
  8621. {
  8622. "name": "symfony/polyfill-intl-grapheme",
  8623. "version": "v1.29.0",
  8624. "source": {
  8625. "type": "git",
  8626. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  8627. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  8628. },
  8629. "dist": {
  8630. "type": "zip",
  8631. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  8632. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  8633. "shasum": ""
  8634. },
  8635. "require": {
  8636. "php": ">=7.1"
  8637. },
  8638. "suggest": {
  8639. "ext-intl": "For best performance"
  8640. },
  8641. "type": "library",
  8642. "extra": {
  8643. "thanks": {
  8644. "name": "symfony/polyfill",
  8645. "url": "https://github.com/symfony/polyfill"
  8646. }
  8647. },
  8648. "autoload": {
  8649. "files": [
  8650. "bootstrap.php"
  8651. ],
  8652. "psr-4": {
  8653. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  8654. }
  8655. },
  8656. "notification-url": "https://packagist.org/downloads/",
  8657. "license": [
  8658. "MIT"
  8659. ],
  8660. "authors": [
  8661. {
  8662. "name": "Nicolas Grekas",
  8663. "email": "p@tchwork.com"
  8664. },
  8665. {
  8666. "name": "Symfony Community",
  8667. "homepage": "https://symfony.com/contributors"
  8668. }
  8669. ],
  8670. "description": "Symfony polyfill for intl's grapheme_* functions",
  8671. "homepage": "https://symfony.com",
  8672. "keywords": [
  8673. "compatibility",
  8674. "grapheme",
  8675. "intl",
  8676. "polyfill",
  8677. "portable",
  8678. "shim"
  8679. ],
  8680. "support": {
  8681. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  8682. },
  8683. "funding": [
  8684. {
  8685. "url": "https://symfony.com/sponsor",
  8686. "type": "custom"
  8687. },
  8688. {
  8689. "url": "https://github.com/fabpot",
  8690. "type": "github"
  8691. },
  8692. {
  8693. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8694. "type": "tidelift"
  8695. }
  8696. ],
  8697. "time": "2024-01-29T20:11:03+00:00"
  8698. },
  8699. {
  8700. "name": "symfony/polyfill-intl-idn",
  8701. "version": "v1.29.0",
  8702. "source": {
  8703. "type": "git",
  8704. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8705. "reference": "a287ed7475f85bf6f61890146edbc932c0fff919"
  8706. },
  8707. "dist": {
  8708. "type": "zip",
  8709. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a287ed7475f85bf6f61890146edbc932c0fff919",
  8710. "reference": "a287ed7475f85bf6f61890146edbc932c0fff919",
  8711. "shasum": ""
  8712. },
  8713. "require": {
  8714. "php": ">=7.1",
  8715. "symfony/polyfill-intl-normalizer": "^1.10",
  8716. "symfony/polyfill-php72": "^1.10"
  8717. },
  8718. "suggest": {
  8719. "ext-intl": "For best performance"
  8720. },
  8721. "type": "library",
  8722. "extra": {
  8723. "thanks": {
  8724. "name": "symfony/polyfill",
  8725. "url": "https://github.com/symfony/polyfill"
  8726. }
  8727. },
  8728. "autoload": {
  8729. "files": [
  8730. "bootstrap.php"
  8731. ],
  8732. "psr-4": {
  8733. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8734. }
  8735. },
  8736. "notification-url": "https://packagist.org/downloads/",
  8737. "license": [
  8738. "MIT"
  8739. ],
  8740. "authors": [
  8741. {
  8742. "name": "Laurent Bassin",
  8743. "email": "laurent@bassin.info"
  8744. },
  8745. {
  8746. "name": "Trevor Rowbotham",
  8747. "email": "trevor.rowbotham@pm.me"
  8748. },
  8749. {
  8750. "name": "Symfony Community",
  8751. "homepage": "https://symfony.com/contributors"
  8752. }
  8753. ],
  8754. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8755. "homepage": "https://symfony.com",
  8756. "keywords": [
  8757. "compatibility",
  8758. "idn",
  8759. "intl",
  8760. "polyfill",
  8761. "portable",
  8762. "shim"
  8763. ],
  8764. "support": {
  8765. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.29.0"
  8766. },
  8767. "funding": [
  8768. {
  8769. "url": "https://symfony.com/sponsor",
  8770. "type": "custom"
  8771. },
  8772. {
  8773. "url": "https://github.com/fabpot",
  8774. "type": "github"
  8775. },
  8776. {
  8777. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8778. "type": "tidelift"
  8779. }
  8780. ],
  8781. "time": "2024-01-29T20:11:03+00:00"
  8782. },
  8783. {
  8784. "name": "symfony/polyfill-intl-normalizer",
  8785. "version": "v1.29.0",
  8786. "source": {
  8787. "type": "git",
  8788. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  8789. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
  8790. },
  8791. "dist": {
  8792. "type": "zip",
  8793. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
  8794. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
  8795. "shasum": ""
  8796. },
  8797. "require": {
  8798. "php": ">=7.1"
  8799. },
  8800. "suggest": {
  8801. "ext-intl": "For best performance"
  8802. },
  8803. "type": "library",
  8804. "extra": {
  8805. "thanks": {
  8806. "name": "symfony/polyfill",
  8807. "url": "https://github.com/symfony/polyfill"
  8808. }
  8809. },
  8810. "autoload": {
  8811. "files": [
  8812. "bootstrap.php"
  8813. ],
  8814. "psr-4": {
  8815. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  8816. },
  8817. "classmap": [
  8818. "Resources/stubs"
  8819. ]
  8820. },
  8821. "notification-url": "https://packagist.org/downloads/",
  8822. "license": [
  8823. "MIT"
  8824. ],
  8825. "authors": [
  8826. {
  8827. "name": "Nicolas Grekas",
  8828. "email": "p@tchwork.com"
  8829. },
  8830. {
  8831. "name": "Symfony Community",
  8832. "homepage": "https://symfony.com/contributors"
  8833. }
  8834. ],
  8835. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  8836. "homepage": "https://symfony.com",
  8837. "keywords": [
  8838. "compatibility",
  8839. "intl",
  8840. "normalizer",
  8841. "polyfill",
  8842. "portable",
  8843. "shim"
  8844. ],
  8845. "support": {
  8846. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
  8847. },
  8848. "funding": [
  8849. {
  8850. "url": "https://symfony.com/sponsor",
  8851. "type": "custom"
  8852. },
  8853. {
  8854. "url": "https://github.com/fabpot",
  8855. "type": "github"
  8856. },
  8857. {
  8858. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8859. "type": "tidelift"
  8860. }
  8861. ],
  8862. "time": "2024-01-29T20:11:03+00:00"
  8863. },
  8864. {
  8865. "name": "symfony/polyfill-mbstring",
  8866. "version": "v1.29.0",
  8867. "source": {
  8868. "type": "git",
  8869. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8870. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  8871. },
  8872. "dist": {
  8873. "type": "zip",
  8874. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  8875. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  8876. "shasum": ""
  8877. },
  8878. "require": {
  8879. "php": ">=7.1"
  8880. },
  8881. "provide": {
  8882. "ext-mbstring": "*"
  8883. },
  8884. "suggest": {
  8885. "ext-mbstring": "For best performance"
  8886. },
  8887. "type": "library",
  8888. "extra": {
  8889. "thanks": {
  8890. "name": "symfony/polyfill",
  8891. "url": "https://github.com/symfony/polyfill"
  8892. }
  8893. },
  8894. "autoload": {
  8895. "files": [
  8896. "bootstrap.php"
  8897. ],
  8898. "psr-4": {
  8899. "Symfony\\Polyfill\\Mbstring\\": ""
  8900. }
  8901. },
  8902. "notification-url": "https://packagist.org/downloads/",
  8903. "license": [
  8904. "MIT"
  8905. ],
  8906. "authors": [
  8907. {
  8908. "name": "Nicolas Grekas",
  8909. "email": "p@tchwork.com"
  8910. },
  8911. {
  8912. "name": "Symfony Community",
  8913. "homepage": "https://symfony.com/contributors"
  8914. }
  8915. ],
  8916. "description": "Symfony polyfill for the Mbstring extension",
  8917. "homepage": "https://symfony.com",
  8918. "keywords": [
  8919. "compatibility",
  8920. "mbstring",
  8921. "polyfill",
  8922. "portable",
  8923. "shim"
  8924. ],
  8925. "support": {
  8926. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  8927. },
  8928. "funding": [
  8929. {
  8930. "url": "https://symfony.com/sponsor",
  8931. "type": "custom"
  8932. },
  8933. {
  8934. "url": "https://github.com/fabpot",
  8935. "type": "github"
  8936. },
  8937. {
  8938. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8939. "type": "tidelift"
  8940. }
  8941. ],
  8942. "time": "2024-01-29T20:11:03+00:00"
  8943. },
  8944. {
  8945. "name": "symfony/polyfill-php72",
  8946. "version": "v1.31.0",
  8947. "source": {
  8948. "type": "git",
  8949. "url": "https://github.com/symfony/polyfill-php72.git",
  8950. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce"
  8951. },
  8952. "dist": {
  8953. "type": "zip",
  8954. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  8955. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  8956. "shasum": ""
  8957. },
  8958. "require": {
  8959. "php": ">=7.2"
  8960. },
  8961. "type": "metapackage",
  8962. "extra": {
  8963. "thanks": {
  8964. "name": "symfony/polyfill",
  8965. "url": "https://github.com/symfony/polyfill"
  8966. }
  8967. },
  8968. "notification-url": "https://packagist.org/downloads/",
  8969. "license": [
  8970. "MIT"
  8971. ],
  8972. "authors": [
  8973. {
  8974. "name": "Nicolas Grekas",
  8975. "email": "p@tchwork.com"
  8976. },
  8977. {
  8978. "name": "Symfony Community",
  8979. "homepage": "https://symfony.com/contributors"
  8980. }
  8981. ],
  8982. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  8983. "homepage": "https://symfony.com",
  8984. "keywords": [
  8985. "compatibility",
  8986. "polyfill",
  8987. "portable",
  8988. "shim"
  8989. ],
  8990. "support": {
  8991. "source": "https://github.com/symfony/polyfill-php72/tree/v1.31.0"
  8992. },
  8993. "funding": [
  8994. {
  8995. "url": "https://symfony.com/sponsor",
  8996. "type": "custom"
  8997. },
  8998. {
  8999. "url": "https://github.com/fabpot",
  9000. "type": "github"
  9001. },
  9002. {
  9003. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9004. "type": "tidelift"
  9005. }
  9006. ],
  9007. "time": "2024-09-09T11:45:10+00:00"
  9008. },
  9009. {
  9010. "name": "symfony/polyfill-php80",
  9011. "version": "v1.31.0",
  9012. "source": {
  9013. "type": "git",
  9014. "url": "https://github.com/symfony/polyfill-php80.git",
  9015. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  9016. },
  9017. "dist": {
  9018. "type": "zip",
  9019. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  9020. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  9021. "shasum": ""
  9022. },
  9023. "require": {
  9024. "php": ">=7.2"
  9025. },
  9026. "type": "library",
  9027. "extra": {
  9028. "thanks": {
  9029. "name": "symfony/polyfill",
  9030. "url": "https://github.com/symfony/polyfill"
  9031. }
  9032. },
  9033. "autoload": {
  9034. "files": [
  9035. "bootstrap.php"
  9036. ],
  9037. "psr-4": {
  9038. "Symfony\\Polyfill\\Php80\\": ""
  9039. },
  9040. "classmap": [
  9041. "Resources/stubs"
  9042. ]
  9043. },
  9044. "notification-url": "https://packagist.org/downloads/",
  9045. "license": [
  9046. "MIT"
  9047. ],
  9048. "authors": [
  9049. {
  9050. "name": "Ion Bazan",
  9051. "email": "ion.bazan@gmail.com"
  9052. },
  9053. {
  9054. "name": "Nicolas Grekas",
  9055. "email": "p@tchwork.com"
  9056. },
  9057. {
  9058. "name": "Symfony Community",
  9059. "homepage": "https://symfony.com/contributors"
  9060. }
  9061. ],
  9062. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  9063. "homepage": "https://symfony.com",
  9064. "keywords": [
  9065. "compatibility",
  9066. "polyfill",
  9067. "portable",
  9068. "shim"
  9069. ],
  9070. "support": {
  9071. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  9072. },
  9073. "funding": [
  9074. {
  9075. "url": "https://symfony.com/sponsor",
  9076. "type": "custom"
  9077. },
  9078. {
  9079. "url": "https://github.com/fabpot",
  9080. "type": "github"
  9081. },
  9082. {
  9083. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9084. "type": "tidelift"
  9085. }
  9086. ],
  9087. "time": "2024-09-09T11:45:10+00:00"
  9088. },
  9089. {
  9090. "name": "symfony/polyfill-php81",
  9091. "version": "v1.31.0",
  9092. "source": {
  9093. "type": "git",
  9094. "url": "https://github.com/symfony/polyfill-php81.git",
  9095. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  9096. },
  9097. "dist": {
  9098. "type": "zip",
  9099. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  9100. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  9101. "shasum": ""
  9102. },
  9103. "require": {
  9104. "php": ">=7.2"
  9105. },
  9106. "type": "library",
  9107. "extra": {
  9108. "thanks": {
  9109. "name": "symfony/polyfill",
  9110. "url": "https://github.com/symfony/polyfill"
  9111. }
  9112. },
  9113. "autoload": {
  9114. "files": [
  9115. "bootstrap.php"
  9116. ],
  9117. "psr-4": {
  9118. "Symfony\\Polyfill\\Php81\\": ""
  9119. },
  9120. "classmap": [
  9121. "Resources/stubs"
  9122. ]
  9123. },
  9124. "notification-url": "https://packagist.org/downloads/",
  9125. "license": [
  9126. "MIT"
  9127. ],
  9128. "authors": [
  9129. {
  9130. "name": "Nicolas Grekas",
  9131. "email": "p@tchwork.com"
  9132. },
  9133. {
  9134. "name": "Symfony Community",
  9135. "homepage": "https://symfony.com/contributors"
  9136. }
  9137. ],
  9138. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  9139. "homepage": "https://symfony.com",
  9140. "keywords": [
  9141. "compatibility",
  9142. "polyfill",
  9143. "portable",
  9144. "shim"
  9145. ],
  9146. "support": {
  9147. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  9148. },
  9149. "funding": [
  9150. {
  9151. "url": "https://symfony.com/sponsor",
  9152. "type": "custom"
  9153. },
  9154. {
  9155. "url": "https://github.com/fabpot",
  9156. "type": "github"
  9157. },
  9158. {
  9159. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9160. "type": "tidelift"
  9161. }
  9162. ],
  9163. "time": "2024-09-09T11:45:10+00:00"
  9164. },
  9165. {
  9166. "name": "symfony/polyfill-php83",
  9167. "version": "v1.29.0",
  9168. "source": {
  9169. "type": "git",
  9170. "url": "https://github.com/symfony/polyfill-php83.git",
  9171. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff"
  9172. },
  9173. "dist": {
  9174. "type": "zip",
  9175. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff",
  9176. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff",
  9177. "shasum": ""
  9178. },
  9179. "require": {
  9180. "php": ">=7.1",
  9181. "symfony/polyfill-php80": "^1.14"
  9182. },
  9183. "type": "library",
  9184. "extra": {
  9185. "thanks": {
  9186. "name": "symfony/polyfill",
  9187. "url": "https://github.com/symfony/polyfill"
  9188. }
  9189. },
  9190. "autoload": {
  9191. "files": [
  9192. "bootstrap.php"
  9193. ],
  9194. "psr-4": {
  9195. "Symfony\\Polyfill\\Php83\\": ""
  9196. },
  9197. "classmap": [
  9198. "Resources/stubs"
  9199. ]
  9200. },
  9201. "notification-url": "https://packagist.org/downloads/",
  9202. "license": [
  9203. "MIT"
  9204. ],
  9205. "authors": [
  9206. {
  9207. "name": "Nicolas Grekas",
  9208. "email": "p@tchwork.com"
  9209. },
  9210. {
  9211. "name": "Symfony Community",
  9212. "homepage": "https://symfony.com/contributors"
  9213. }
  9214. ],
  9215. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  9216. "homepage": "https://symfony.com",
  9217. "keywords": [
  9218. "compatibility",
  9219. "polyfill",
  9220. "portable",
  9221. "shim"
  9222. ],
  9223. "support": {
  9224. "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0"
  9225. },
  9226. "funding": [
  9227. {
  9228. "url": "https://symfony.com/sponsor",
  9229. "type": "custom"
  9230. },
  9231. {
  9232. "url": "https://github.com/fabpot",
  9233. "type": "github"
  9234. },
  9235. {
  9236. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9237. "type": "tidelift"
  9238. }
  9239. ],
  9240. "time": "2024-01-29T20:11:03+00:00"
  9241. },
  9242. {
  9243. "name": "symfony/process",
  9244. "version": "v6.4.12",
  9245. "source": {
  9246. "type": "git",
  9247. "url": "https://github.com/symfony/process.git",
  9248. "reference": "3f94e5f13ff58df371a7ead461b6e8068900fbb3"
  9249. },
  9250. "dist": {
  9251. "type": "zip",
  9252. "url": "https://api.github.com/repos/symfony/process/zipball/3f94e5f13ff58df371a7ead461b6e8068900fbb3",
  9253. "reference": "3f94e5f13ff58df371a7ead461b6e8068900fbb3",
  9254. "shasum": ""
  9255. },
  9256. "require": {
  9257. "php": ">=8.1"
  9258. },
  9259. "type": "library",
  9260. "autoload": {
  9261. "psr-4": {
  9262. "Symfony\\Component\\Process\\": ""
  9263. },
  9264. "exclude-from-classmap": [
  9265. "/Tests/"
  9266. ]
  9267. },
  9268. "notification-url": "https://packagist.org/downloads/",
  9269. "license": [
  9270. "MIT"
  9271. ],
  9272. "authors": [
  9273. {
  9274. "name": "Fabien Potencier",
  9275. "email": "fabien@symfony.com"
  9276. },
  9277. {
  9278. "name": "Symfony Community",
  9279. "homepage": "https://symfony.com/contributors"
  9280. }
  9281. ],
  9282. "description": "Executes commands in sub-processes",
  9283. "homepage": "https://symfony.com",
  9284. "support": {
  9285. "source": "https://github.com/symfony/process/tree/v6.4.12"
  9286. },
  9287. "funding": [
  9288. {
  9289. "url": "https://symfony.com/sponsor",
  9290. "type": "custom"
  9291. },
  9292. {
  9293. "url": "https://github.com/fabpot",
  9294. "type": "github"
  9295. },
  9296. {
  9297. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9298. "type": "tidelift"
  9299. }
  9300. ],
  9301. "time": "2024-09-17T12:47:12+00:00"
  9302. },
  9303. {
  9304. "name": "symfony/psr-http-message-bridge",
  9305. "version": "v6.4.11",
  9306. "source": {
  9307. "type": "git",
  9308. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9309. "reference": "74835ba54eca99a38f374f7a6d932fa510124773"
  9310. },
  9311. "dist": {
  9312. "type": "zip",
  9313. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/74835ba54eca99a38f374f7a6d932fa510124773",
  9314. "reference": "74835ba54eca99a38f374f7a6d932fa510124773",
  9315. "shasum": ""
  9316. },
  9317. "require": {
  9318. "php": ">=8.1",
  9319. "psr/http-message": "^1.0|^2.0",
  9320. "symfony/http-foundation": "^5.4|^6.0|^7.0"
  9321. },
  9322. "conflict": {
  9323. "php-http/discovery": "<1.15",
  9324. "symfony/http-kernel": "<6.2"
  9325. },
  9326. "require-dev": {
  9327. "nyholm/psr7": "^1.1",
  9328. "php-http/discovery": "^1.15",
  9329. "psr/log": "^1.1.4|^2|^3",
  9330. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  9331. "symfony/config": "^5.4|^6.0|^7.0",
  9332. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  9333. "symfony/framework-bundle": "^6.2|^7.0",
  9334. "symfony/http-kernel": "^6.2|^7.0"
  9335. },
  9336. "type": "symfony-bridge",
  9337. "autoload": {
  9338. "psr-4": {
  9339. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9340. },
  9341. "exclude-from-classmap": [
  9342. "/Tests/"
  9343. ]
  9344. },
  9345. "notification-url": "https://packagist.org/downloads/",
  9346. "license": [
  9347. "MIT"
  9348. ],
  9349. "authors": [
  9350. {
  9351. "name": "Fabien Potencier",
  9352. "email": "fabien@symfony.com"
  9353. },
  9354. {
  9355. "name": "Symfony Community",
  9356. "homepage": "https://symfony.com/contributors"
  9357. }
  9358. ],
  9359. "description": "PSR HTTP message bridge",
  9360. "homepage": "https://symfony.com",
  9361. "keywords": [
  9362. "http",
  9363. "http-message",
  9364. "psr-17",
  9365. "psr-7"
  9366. ],
  9367. "support": {
  9368. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v6.4.11"
  9369. },
  9370. "funding": [
  9371. {
  9372. "url": "https://symfony.com/sponsor",
  9373. "type": "custom"
  9374. },
  9375. {
  9376. "url": "https://github.com/fabpot",
  9377. "type": "github"
  9378. },
  9379. {
  9380. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9381. "type": "tidelift"
  9382. }
  9383. ],
  9384. "time": "2024-08-14T13:55:58+00:00"
  9385. },
  9386. {
  9387. "name": "symfony/routing",
  9388. "version": "v6.4.12",
  9389. "source": {
  9390. "type": "git",
  9391. "url": "https://github.com/symfony/routing.git",
  9392. "reference": "a7c8036bd159486228dc9be3e846a00a0dda9f9f"
  9393. },
  9394. "dist": {
  9395. "type": "zip",
  9396. "url": "https://api.github.com/repos/symfony/routing/zipball/a7c8036bd159486228dc9be3e846a00a0dda9f9f",
  9397. "reference": "a7c8036bd159486228dc9be3e846a00a0dda9f9f",
  9398. "shasum": ""
  9399. },
  9400. "require": {
  9401. "php": ">=8.1",
  9402. "symfony/deprecation-contracts": "^2.5|^3"
  9403. },
  9404. "conflict": {
  9405. "doctrine/annotations": "<1.12",
  9406. "symfony/config": "<6.2",
  9407. "symfony/dependency-injection": "<5.4",
  9408. "symfony/yaml": "<5.4"
  9409. },
  9410. "require-dev": {
  9411. "doctrine/annotations": "^1.12|^2",
  9412. "psr/log": "^1|^2|^3",
  9413. "symfony/config": "^6.2|^7.0",
  9414. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9415. "symfony/expression-language": "^5.4|^6.0|^7.0",
  9416. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  9417. "symfony/yaml": "^5.4|^6.0|^7.0"
  9418. },
  9419. "type": "library",
  9420. "autoload": {
  9421. "psr-4": {
  9422. "Symfony\\Component\\Routing\\": ""
  9423. },
  9424. "exclude-from-classmap": [
  9425. "/Tests/"
  9426. ]
  9427. },
  9428. "notification-url": "https://packagist.org/downloads/",
  9429. "license": [
  9430. "MIT"
  9431. ],
  9432. "authors": [
  9433. {
  9434. "name": "Fabien Potencier",
  9435. "email": "fabien@symfony.com"
  9436. },
  9437. {
  9438. "name": "Symfony Community",
  9439. "homepage": "https://symfony.com/contributors"
  9440. }
  9441. ],
  9442. "description": "Maps an HTTP request to a set of configuration variables",
  9443. "homepage": "https://symfony.com",
  9444. "keywords": [
  9445. "router",
  9446. "routing",
  9447. "uri",
  9448. "url"
  9449. ],
  9450. "support": {
  9451. "source": "https://github.com/symfony/routing/tree/v6.4.12"
  9452. },
  9453. "funding": [
  9454. {
  9455. "url": "https://symfony.com/sponsor",
  9456. "type": "custom"
  9457. },
  9458. {
  9459. "url": "https://github.com/fabpot",
  9460. "type": "github"
  9461. },
  9462. {
  9463. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9464. "type": "tidelift"
  9465. }
  9466. ],
  9467. "time": "2024-09-20T08:32:26+00:00"
  9468. },
  9469. {
  9470. "name": "symfony/serializer",
  9471. "version": "v6.4.12",
  9472. "source": {
  9473. "type": "git",
  9474. "url": "https://github.com/symfony/serializer.git",
  9475. "reference": "10ae9c1b90f4809ccb7277cc8fe8d80b3af4412c"
  9476. },
  9477. "dist": {
  9478. "type": "zip",
  9479. "url": "https://api.github.com/repos/symfony/serializer/zipball/10ae9c1b90f4809ccb7277cc8fe8d80b3af4412c",
  9480. "reference": "10ae9c1b90f4809ccb7277cc8fe8d80b3af4412c",
  9481. "shasum": ""
  9482. },
  9483. "require": {
  9484. "php": ">=8.1",
  9485. "symfony/deprecation-contracts": "^2.5|^3",
  9486. "symfony/polyfill-ctype": "~1.8"
  9487. },
  9488. "conflict": {
  9489. "doctrine/annotations": "<1.12",
  9490. "phpdocumentor/reflection-docblock": "<3.2.2",
  9491. "phpdocumentor/type-resolver": "<1.4.0",
  9492. "symfony/dependency-injection": "<5.4",
  9493. "symfony/property-access": "<5.4",
  9494. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  9495. "symfony/uid": "<5.4",
  9496. "symfony/validator": "<6.4",
  9497. "symfony/yaml": "<5.4"
  9498. },
  9499. "require-dev": {
  9500. "doctrine/annotations": "^1.12|^2",
  9501. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  9502. "seld/jsonlint": "^1.10",
  9503. "symfony/cache": "^5.4|^6.0|^7.0",
  9504. "symfony/config": "^5.4|^6.0|^7.0",
  9505. "symfony/console": "^5.4|^6.0|^7.0",
  9506. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9507. "symfony/error-handler": "^5.4|^6.0|^7.0",
  9508. "symfony/filesystem": "^5.4|^6.0|^7.0",
  9509. "symfony/form": "^5.4|^6.0|^7.0",
  9510. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  9511. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  9512. "symfony/messenger": "^5.4|^6.0|^7.0",
  9513. "symfony/mime": "^5.4|^6.0|^7.0",
  9514. "symfony/property-access": "^5.4.26|^6.3|^7.0",
  9515. "symfony/property-info": "^5.4.24|^6.2.11|^7.0",
  9516. "symfony/translation-contracts": "^2.5|^3",
  9517. "symfony/uid": "^5.4|^6.0|^7.0",
  9518. "symfony/validator": "^6.4|^7.0",
  9519. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  9520. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  9521. "symfony/yaml": "^5.4|^6.0|^7.0"
  9522. },
  9523. "type": "library",
  9524. "autoload": {
  9525. "psr-4": {
  9526. "Symfony\\Component\\Serializer\\": ""
  9527. },
  9528. "exclude-from-classmap": [
  9529. "/Tests/"
  9530. ]
  9531. },
  9532. "notification-url": "https://packagist.org/downloads/",
  9533. "license": [
  9534. "MIT"
  9535. ],
  9536. "authors": [
  9537. {
  9538. "name": "Fabien Potencier",
  9539. "email": "fabien@symfony.com"
  9540. },
  9541. {
  9542. "name": "Symfony Community",
  9543. "homepage": "https://symfony.com/contributors"
  9544. }
  9545. ],
  9546. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  9547. "homepage": "https://symfony.com",
  9548. "support": {
  9549. "source": "https://github.com/symfony/serializer/tree/v6.4.12"
  9550. },
  9551. "funding": [
  9552. {
  9553. "url": "https://symfony.com/sponsor",
  9554. "type": "custom"
  9555. },
  9556. {
  9557. "url": "https://github.com/fabpot",
  9558. "type": "github"
  9559. },
  9560. {
  9561. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9562. "type": "tidelift"
  9563. }
  9564. ],
  9565. "time": "2024-09-20T08:15:52+00:00"
  9566. },
  9567. {
  9568. "name": "symfony/service-contracts",
  9569. "version": "v3.5.0",
  9570. "source": {
  9571. "type": "git",
  9572. "url": "https://github.com/symfony/service-contracts.git",
  9573. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  9574. },
  9575. "dist": {
  9576. "type": "zip",
  9577. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  9578. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  9579. "shasum": ""
  9580. },
  9581. "require": {
  9582. "php": ">=8.1",
  9583. "psr/container": "^1.1|^2.0",
  9584. "symfony/deprecation-contracts": "^2.5|^3"
  9585. },
  9586. "conflict": {
  9587. "ext-psr": "<1.1|>=2"
  9588. },
  9589. "type": "library",
  9590. "extra": {
  9591. "branch-alias": {
  9592. "dev-main": "3.5-dev"
  9593. },
  9594. "thanks": {
  9595. "name": "symfony/contracts",
  9596. "url": "https://github.com/symfony/contracts"
  9597. }
  9598. },
  9599. "autoload": {
  9600. "psr-4": {
  9601. "Symfony\\Contracts\\Service\\": ""
  9602. },
  9603. "exclude-from-classmap": [
  9604. "/Test/"
  9605. ]
  9606. },
  9607. "notification-url": "https://packagist.org/downloads/",
  9608. "license": [
  9609. "MIT"
  9610. ],
  9611. "authors": [
  9612. {
  9613. "name": "Nicolas Grekas",
  9614. "email": "p@tchwork.com"
  9615. },
  9616. {
  9617. "name": "Symfony Community",
  9618. "homepage": "https://symfony.com/contributors"
  9619. }
  9620. ],
  9621. "description": "Generic abstractions related to writing services",
  9622. "homepage": "https://symfony.com",
  9623. "keywords": [
  9624. "abstractions",
  9625. "contracts",
  9626. "decoupling",
  9627. "interfaces",
  9628. "interoperability",
  9629. "standards"
  9630. ],
  9631. "support": {
  9632. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  9633. },
  9634. "funding": [
  9635. {
  9636. "url": "https://symfony.com/sponsor",
  9637. "type": "custom"
  9638. },
  9639. {
  9640. "url": "https://github.com/fabpot",
  9641. "type": "github"
  9642. },
  9643. {
  9644. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9645. "type": "tidelift"
  9646. }
  9647. ],
  9648. "time": "2024-04-18T09:32:20+00:00"
  9649. },
  9650. {
  9651. "name": "symfony/string",
  9652. "version": "v6.4.12",
  9653. "source": {
  9654. "type": "git",
  9655. "url": "https://github.com/symfony/string.git",
  9656. "reference": "f8a1ccebd0997e16112dfecfd74220b78e5b284b"
  9657. },
  9658. "dist": {
  9659. "type": "zip",
  9660. "url": "https://api.github.com/repos/symfony/string/zipball/f8a1ccebd0997e16112dfecfd74220b78e5b284b",
  9661. "reference": "f8a1ccebd0997e16112dfecfd74220b78e5b284b",
  9662. "shasum": ""
  9663. },
  9664. "require": {
  9665. "php": ">=8.1",
  9666. "symfony/polyfill-ctype": "~1.8",
  9667. "symfony/polyfill-intl-grapheme": "~1.0",
  9668. "symfony/polyfill-intl-normalizer": "~1.0",
  9669. "symfony/polyfill-mbstring": "~1.0"
  9670. },
  9671. "conflict": {
  9672. "symfony/translation-contracts": "<2.5"
  9673. },
  9674. "require-dev": {
  9675. "symfony/error-handler": "^5.4|^6.0|^7.0",
  9676. "symfony/http-client": "^5.4|^6.0|^7.0",
  9677. "symfony/intl": "^6.2|^7.0",
  9678. "symfony/translation-contracts": "^2.5|^3.0",
  9679. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  9680. },
  9681. "type": "library",
  9682. "autoload": {
  9683. "files": [
  9684. "Resources/functions.php"
  9685. ],
  9686. "psr-4": {
  9687. "Symfony\\Component\\String\\": ""
  9688. },
  9689. "exclude-from-classmap": [
  9690. "/Tests/"
  9691. ]
  9692. },
  9693. "notification-url": "https://packagist.org/downloads/",
  9694. "license": [
  9695. "MIT"
  9696. ],
  9697. "authors": [
  9698. {
  9699. "name": "Nicolas Grekas",
  9700. "email": "p@tchwork.com"
  9701. },
  9702. {
  9703. "name": "Symfony Community",
  9704. "homepage": "https://symfony.com/contributors"
  9705. }
  9706. ],
  9707. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  9708. "homepage": "https://symfony.com",
  9709. "keywords": [
  9710. "grapheme",
  9711. "i18n",
  9712. "string",
  9713. "unicode",
  9714. "utf-8",
  9715. "utf8"
  9716. ],
  9717. "support": {
  9718. "source": "https://github.com/symfony/string/tree/v6.4.12"
  9719. },
  9720. "funding": [
  9721. {
  9722. "url": "https://symfony.com/sponsor",
  9723. "type": "custom"
  9724. },
  9725. {
  9726. "url": "https://github.com/fabpot",
  9727. "type": "github"
  9728. },
  9729. {
  9730. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9731. "type": "tidelift"
  9732. }
  9733. ],
  9734. "time": "2024-09-20T08:15:52+00:00"
  9735. },
  9736. {
  9737. "name": "symfony/translation-contracts",
  9738. "version": "v3.5.0",
  9739. "source": {
  9740. "type": "git",
  9741. "url": "https://github.com/symfony/translation-contracts.git",
  9742. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  9743. },
  9744. "dist": {
  9745. "type": "zip",
  9746. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  9747. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  9748. "shasum": ""
  9749. },
  9750. "require": {
  9751. "php": ">=8.1"
  9752. },
  9753. "type": "library",
  9754. "extra": {
  9755. "branch-alias": {
  9756. "dev-main": "3.5-dev"
  9757. },
  9758. "thanks": {
  9759. "name": "symfony/contracts",
  9760. "url": "https://github.com/symfony/contracts"
  9761. }
  9762. },
  9763. "autoload": {
  9764. "psr-4": {
  9765. "Symfony\\Contracts\\Translation\\": ""
  9766. },
  9767. "exclude-from-classmap": [
  9768. "/Test/"
  9769. ]
  9770. },
  9771. "notification-url": "https://packagist.org/downloads/",
  9772. "license": [
  9773. "MIT"
  9774. ],
  9775. "authors": [
  9776. {
  9777. "name": "Nicolas Grekas",
  9778. "email": "p@tchwork.com"
  9779. },
  9780. {
  9781. "name": "Symfony Community",
  9782. "homepage": "https://symfony.com/contributors"
  9783. }
  9784. ],
  9785. "description": "Generic abstractions related to translation",
  9786. "homepage": "https://symfony.com",
  9787. "keywords": [
  9788. "abstractions",
  9789. "contracts",
  9790. "decoupling",
  9791. "interfaces",
  9792. "interoperability",
  9793. "standards"
  9794. ],
  9795. "support": {
  9796. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  9797. },
  9798. "funding": [
  9799. {
  9800. "url": "https://symfony.com/sponsor",
  9801. "type": "custom"
  9802. },
  9803. {
  9804. "url": "https://github.com/fabpot",
  9805. "type": "github"
  9806. },
  9807. {
  9808. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9809. "type": "tidelift"
  9810. }
  9811. ],
  9812. "time": "2024-04-18T09:32:20+00:00"
  9813. },
  9814. {
  9815. "name": "symfony/validator",
  9816. "version": "v6.4.12",
  9817. "source": {
  9818. "type": "git",
  9819. "url": "https://github.com/symfony/validator.git",
  9820. "reference": "6da1f0a1ee73d060a411d832cbe0539cfe9bbaa0"
  9821. },
  9822. "dist": {
  9823. "type": "zip",
  9824. "url": "https://api.github.com/repos/symfony/validator/zipball/6da1f0a1ee73d060a411d832cbe0539cfe9bbaa0",
  9825. "reference": "6da1f0a1ee73d060a411d832cbe0539cfe9bbaa0",
  9826. "shasum": ""
  9827. },
  9828. "require": {
  9829. "php": ">=8.1",
  9830. "symfony/deprecation-contracts": "^2.5|^3",
  9831. "symfony/polyfill-ctype": "~1.8",
  9832. "symfony/polyfill-mbstring": "~1.0",
  9833. "symfony/polyfill-php83": "^1.27",
  9834. "symfony/translation-contracts": "^2.5|^3"
  9835. },
  9836. "conflict": {
  9837. "doctrine/annotations": "<1.13",
  9838. "doctrine/lexer": "<1.1",
  9839. "symfony/dependency-injection": "<5.4",
  9840. "symfony/expression-language": "<5.4",
  9841. "symfony/http-kernel": "<5.4",
  9842. "symfony/intl": "<5.4",
  9843. "symfony/property-info": "<5.4",
  9844. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  9845. "symfony/yaml": "<5.4"
  9846. },
  9847. "require-dev": {
  9848. "doctrine/annotations": "^1.13|^2",
  9849. "egulias/email-validator": "^2.1.10|^3|^4",
  9850. "symfony/cache": "^5.4|^6.0|^7.0",
  9851. "symfony/config": "^5.4|^6.0|^7.0",
  9852. "symfony/console": "^5.4|^6.0|^7.0",
  9853. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9854. "symfony/expression-language": "^5.4|^6.0|^7.0",
  9855. "symfony/finder": "^5.4|^6.0|^7.0",
  9856. "symfony/http-client": "^5.4|^6.0|^7.0",
  9857. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  9858. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  9859. "symfony/intl": "^5.4|^6.0|^7.0",
  9860. "symfony/mime": "^5.4|^6.0|^7.0",
  9861. "symfony/property-access": "^5.4|^6.0|^7.0",
  9862. "symfony/property-info": "^5.4|^6.0|^7.0",
  9863. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  9864. "symfony/yaml": "^5.4|^6.0|^7.0"
  9865. },
  9866. "type": "library",
  9867. "autoload": {
  9868. "psr-4": {
  9869. "Symfony\\Component\\Validator\\": ""
  9870. },
  9871. "exclude-from-classmap": [
  9872. "/Tests/",
  9873. "/Resources/bin/"
  9874. ]
  9875. },
  9876. "notification-url": "https://packagist.org/downloads/",
  9877. "license": [
  9878. "MIT"
  9879. ],
  9880. "authors": [
  9881. {
  9882. "name": "Fabien Potencier",
  9883. "email": "fabien@symfony.com"
  9884. },
  9885. {
  9886. "name": "Symfony Community",
  9887. "homepage": "https://symfony.com/contributors"
  9888. }
  9889. ],
  9890. "description": "Provides tools to validate values",
  9891. "homepage": "https://symfony.com",
  9892. "support": {
  9893. "source": "https://github.com/symfony/validator/tree/v6.4.12"
  9894. },
  9895. "funding": [
  9896. {
  9897. "url": "https://symfony.com/sponsor",
  9898. "type": "custom"
  9899. },
  9900. {
  9901. "url": "https://github.com/fabpot",
  9902. "type": "github"
  9903. },
  9904. {
  9905. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9906. "type": "tidelift"
  9907. }
  9908. ],
  9909. "time": "2024-09-20T08:18:25+00:00"
  9910. },
  9911. {
  9912. "name": "symfony/var-dumper",
  9913. "version": "v6.4.11",
  9914. "source": {
  9915. "type": "git",
  9916. "url": "https://github.com/symfony/var-dumper.git",
  9917. "reference": "ee14c8254a480913268b1e3b1cba8045ed122694"
  9918. },
  9919. "dist": {
  9920. "type": "zip",
  9921. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ee14c8254a480913268b1e3b1cba8045ed122694",
  9922. "reference": "ee14c8254a480913268b1e3b1cba8045ed122694",
  9923. "shasum": ""
  9924. },
  9925. "require": {
  9926. "php": ">=8.1",
  9927. "symfony/deprecation-contracts": "^2.5|^3",
  9928. "symfony/polyfill-mbstring": "~1.0"
  9929. },
  9930. "conflict": {
  9931. "symfony/console": "<5.4"
  9932. },
  9933. "require-dev": {
  9934. "ext-iconv": "*",
  9935. "symfony/console": "^5.4|^6.0|^7.0",
  9936. "symfony/error-handler": "^6.3|^7.0",
  9937. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  9938. "symfony/process": "^5.4|^6.0|^7.0",
  9939. "symfony/uid": "^5.4|^6.0|^7.0",
  9940. "twig/twig": "^2.13|^3.0.4"
  9941. },
  9942. "bin": [
  9943. "Resources/bin/var-dump-server"
  9944. ],
  9945. "type": "library",
  9946. "autoload": {
  9947. "files": [
  9948. "Resources/functions/dump.php"
  9949. ],
  9950. "psr-4": {
  9951. "Symfony\\Component\\VarDumper\\": ""
  9952. },
  9953. "exclude-from-classmap": [
  9954. "/Tests/"
  9955. ]
  9956. },
  9957. "notification-url": "https://packagist.org/downloads/",
  9958. "license": [
  9959. "MIT"
  9960. ],
  9961. "authors": [
  9962. {
  9963. "name": "Nicolas Grekas",
  9964. "email": "p@tchwork.com"
  9965. },
  9966. {
  9967. "name": "Symfony Community",
  9968. "homepage": "https://symfony.com/contributors"
  9969. }
  9970. ],
  9971. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9972. "homepage": "https://symfony.com",
  9973. "keywords": [
  9974. "debug",
  9975. "dump"
  9976. ],
  9977. "support": {
  9978. "source": "https://github.com/symfony/var-dumper/tree/v6.4.11"
  9979. },
  9980. "funding": [
  9981. {
  9982. "url": "https://symfony.com/sponsor",
  9983. "type": "custom"
  9984. },
  9985. {
  9986. "url": "https://github.com/fabpot",
  9987. "type": "github"
  9988. },
  9989. {
  9990. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9991. "type": "tidelift"
  9992. }
  9993. ],
  9994. "time": "2024-08-30T16:03:21+00:00"
  9995. },
  9996. {
  9997. "name": "symfony/var-exporter",
  9998. "version": "v6.4.9",
  9999. "source": {
  10000. "type": "git",
  10001. "url": "https://github.com/symfony/var-exporter.git",
  10002. "reference": "f9a060622e0d93777b7f8687ec4860191e16802e"
  10003. },
  10004. "dist": {
  10005. "type": "zip",
  10006. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/f9a060622e0d93777b7f8687ec4860191e16802e",
  10007. "reference": "f9a060622e0d93777b7f8687ec4860191e16802e",
  10008. "shasum": ""
  10009. },
  10010. "require": {
  10011. "php": ">=8.1",
  10012. "symfony/deprecation-contracts": "^2.5|^3"
  10013. },
  10014. "require-dev": {
  10015. "symfony/property-access": "^6.4|^7.0",
  10016. "symfony/serializer": "^6.4|^7.0",
  10017. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  10018. },
  10019. "type": "library",
  10020. "autoload": {
  10021. "psr-4": {
  10022. "Symfony\\Component\\VarExporter\\": ""
  10023. },
  10024. "exclude-from-classmap": [
  10025. "/Tests/"
  10026. ]
  10027. },
  10028. "notification-url": "https://packagist.org/downloads/",
  10029. "license": [
  10030. "MIT"
  10031. ],
  10032. "authors": [
  10033. {
  10034. "name": "Nicolas Grekas",
  10035. "email": "p@tchwork.com"
  10036. },
  10037. {
  10038. "name": "Symfony Community",
  10039. "homepage": "https://symfony.com/contributors"
  10040. }
  10041. ],
  10042. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  10043. "homepage": "https://symfony.com",
  10044. "keywords": [
  10045. "clone",
  10046. "construct",
  10047. "export",
  10048. "hydrate",
  10049. "instantiate",
  10050. "lazy-loading",
  10051. "proxy",
  10052. "serialize"
  10053. ],
  10054. "support": {
  10055. "source": "https://github.com/symfony/var-exporter/tree/v6.4.9"
  10056. },
  10057. "funding": [
  10058. {
  10059. "url": "https://symfony.com/sponsor",
  10060. "type": "custom"
  10061. },
  10062. {
  10063. "url": "https://github.com/fabpot",
  10064. "type": "github"
  10065. },
  10066. {
  10067. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10068. "type": "tidelift"
  10069. }
  10070. ],
  10071. "time": "2024-06-24T15:53:56+00:00"
  10072. },
  10073. {
  10074. "name": "symfony/yaml",
  10075. "version": "v6.4.12",
  10076. "source": {
  10077. "type": "git",
  10078. "url": "https://github.com/symfony/yaml.git",
  10079. "reference": "762ee56b2649659380e0ef4d592d807bc17b7971"
  10080. },
  10081. "dist": {
  10082. "type": "zip",
  10083. "url": "https://api.github.com/repos/symfony/yaml/zipball/762ee56b2649659380e0ef4d592d807bc17b7971",
  10084. "reference": "762ee56b2649659380e0ef4d592d807bc17b7971",
  10085. "shasum": ""
  10086. },
  10087. "require": {
  10088. "php": ">=8.1",
  10089. "symfony/deprecation-contracts": "^2.5|^3",
  10090. "symfony/polyfill-ctype": "^1.8"
  10091. },
  10092. "conflict": {
  10093. "symfony/console": "<5.4"
  10094. },
  10095. "require-dev": {
  10096. "symfony/console": "^5.4|^6.0|^7.0"
  10097. },
  10098. "bin": [
  10099. "Resources/bin/yaml-lint"
  10100. ],
  10101. "type": "library",
  10102. "autoload": {
  10103. "psr-4": {
  10104. "Symfony\\Component\\Yaml\\": ""
  10105. },
  10106. "exclude-from-classmap": [
  10107. "/Tests/"
  10108. ]
  10109. },
  10110. "notification-url": "https://packagist.org/downloads/",
  10111. "license": [
  10112. "MIT"
  10113. ],
  10114. "authors": [
  10115. {
  10116. "name": "Fabien Potencier",
  10117. "email": "fabien@symfony.com"
  10118. },
  10119. {
  10120. "name": "Symfony Community",
  10121. "homepage": "https://symfony.com/contributors"
  10122. }
  10123. ],
  10124. "description": "Loads and dumps YAML files",
  10125. "homepage": "https://symfony.com",
  10126. "support": {
  10127. "source": "https://github.com/symfony/yaml/tree/v6.4.12"
  10128. },
  10129. "funding": [
  10130. {
  10131. "url": "https://symfony.com/sponsor",
  10132. "type": "custom"
  10133. },
  10134. {
  10135. "url": "https://github.com/fabpot",
  10136. "type": "github"
  10137. },
  10138. {
  10139. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10140. "type": "tidelift"
  10141. }
  10142. ],
  10143. "time": "2024-09-17T12:47:12+00:00"
  10144. },
  10145. {
  10146. "name": "twig/twig",
  10147. "version": "v3.14.0",
  10148. "source": {
  10149. "type": "git",
  10150. "url": "https://github.com/twigphp/Twig.git",
  10151. "reference": "126b2c97818dbff0cdf3fbfc881aedb3d40aae72"
  10152. },
  10153. "dist": {
  10154. "type": "zip",
  10155. "url": "https://api.github.com/repos/twigphp/Twig/zipball/126b2c97818dbff0cdf3fbfc881aedb3d40aae72",
  10156. "reference": "126b2c97818dbff0cdf3fbfc881aedb3d40aae72",
  10157. "shasum": ""
  10158. },
  10159. "require": {
  10160. "php": ">=8.0.2",
  10161. "symfony/deprecation-contracts": "^2.5|^3",
  10162. "symfony/polyfill-ctype": "^1.8",
  10163. "symfony/polyfill-mbstring": "^1.3",
  10164. "symfony/polyfill-php81": "^1.29"
  10165. },
  10166. "require-dev": {
  10167. "psr/container": "^1.0|^2.0",
  10168. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  10169. },
  10170. "type": "library",
  10171. "autoload": {
  10172. "files": [
  10173. "src/Resources/core.php",
  10174. "src/Resources/debug.php",
  10175. "src/Resources/escaper.php",
  10176. "src/Resources/string_loader.php"
  10177. ],
  10178. "psr-4": {
  10179. "Twig\\": "src/"
  10180. }
  10181. },
  10182. "notification-url": "https://packagist.org/downloads/",
  10183. "license": [
  10184. "BSD-3-Clause"
  10185. ],
  10186. "authors": [
  10187. {
  10188. "name": "Fabien Potencier",
  10189. "email": "fabien@symfony.com",
  10190. "homepage": "http://fabien.potencier.org",
  10191. "role": "Lead Developer"
  10192. },
  10193. {
  10194. "name": "Twig Team",
  10195. "role": "Contributors"
  10196. },
  10197. {
  10198. "name": "Armin Ronacher",
  10199. "email": "armin.ronacher@active-4.com",
  10200. "role": "Project Founder"
  10201. }
  10202. ],
  10203. "description": "Twig, the flexible, fast, and secure template language for PHP",
  10204. "homepage": "https://twig.symfony.com",
  10205. "keywords": [
  10206. "templating"
  10207. ],
  10208. "support": {
  10209. "issues": "https://github.com/twigphp/Twig/issues",
  10210. "source": "https://github.com/twigphp/Twig/tree/v3.14.0"
  10211. },
  10212. "funding": [
  10213. {
  10214. "url": "https://github.com/fabpot",
  10215. "type": "github"
  10216. },
  10217. {
  10218. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  10219. "type": "tidelift"
  10220. }
  10221. ],
  10222. "time": "2024-09-09T17:55:12+00:00"
  10223. },
  10224. {
  10225. "name": "vlucas/phpdotenv",
  10226. "version": "v2.6.9",
  10227. "source": {
  10228. "type": "git",
  10229. "url": "https://github.com/vlucas/phpdotenv.git",
  10230. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141"
  10231. },
  10232. "dist": {
  10233. "type": "zip",
  10234. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  10235. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  10236. "shasum": ""
  10237. },
  10238. "require": {
  10239. "php": "^5.3.9 || ^7.0 || ^8.0",
  10240. "symfony/polyfill-ctype": "^1.17"
  10241. },
  10242. "require-dev": {
  10243. "ext-filter": "*",
  10244. "ext-pcre": "*",
  10245. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21"
  10246. },
  10247. "suggest": {
  10248. "ext-filter": "Required to use the boolean validator.",
  10249. "ext-pcre": "Required to use most of the library."
  10250. },
  10251. "type": "library",
  10252. "extra": {
  10253. "branch-alias": {
  10254. "dev-master": "2.6-dev"
  10255. }
  10256. },
  10257. "autoload": {
  10258. "psr-4": {
  10259. "Dotenv\\": "src/"
  10260. }
  10261. },
  10262. "notification-url": "https://packagist.org/downloads/",
  10263. "license": [
  10264. "BSD-3-Clause"
  10265. ],
  10266. "authors": [
  10267. {
  10268. "name": "Graham Campbell",
  10269. "email": "hello@gjcampbell.co.uk",
  10270. "homepage": "https://github.com/GrahamCampbell"
  10271. },
  10272. {
  10273. "name": "Vance Lucas",
  10274. "email": "vance@vancelucas.com",
  10275. "homepage": "https://github.com/vlucas"
  10276. }
  10277. ],
  10278. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10279. "keywords": [
  10280. "dotenv",
  10281. "env",
  10282. "environment"
  10283. ],
  10284. "support": {
  10285. "issues": "https://github.com/vlucas/phpdotenv/issues",
  10286. "source": "https://github.com/vlucas/phpdotenv/tree/v2.6.9"
  10287. },
  10288. "funding": [
  10289. {
  10290. "url": "https://github.com/GrahamCampbell",
  10291. "type": "github"
  10292. },
  10293. {
  10294. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  10295. "type": "tidelift"
  10296. }
  10297. ],
  10298. "time": "2021-12-12T22:59:22+00:00"
  10299. },
  10300. {
  10301. "name": "webflo/drupal-finder",
  10302. "version": "1.3.1",
  10303. "source": {
  10304. "type": "git",
  10305. "url": "https://github.com/webflo/drupal-finder.git",
  10306. "reference": "73045060b0894c77962a10cff047f72872d8810c"
  10307. },
  10308. "dist": {
  10309. "type": "zip",
  10310. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/73045060b0894c77962a10cff047f72872d8810c",
  10311. "reference": "73045060b0894c77962a10cff047f72872d8810c",
  10312. "shasum": ""
  10313. },
  10314. "require": {
  10315. "composer-runtime-api": "^2.2",
  10316. "php": ">=8.1"
  10317. },
  10318. "require-dev": {
  10319. "mikey179/vfsstream": "^1.6",
  10320. "phpunit/phpunit": "^10.4",
  10321. "symfony/process": "^6.4"
  10322. },
  10323. "type": "library",
  10324. "autoload": {
  10325. "psr-4": {
  10326. "DrupalFinder\\": "src/"
  10327. }
  10328. },
  10329. "notification-url": "https://packagist.org/downloads/",
  10330. "license": [
  10331. "GPL-2.0-or-later"
  10332. ],
  10333. "authors": [
  10334. {
  10335. "name": "Florian Weber",
  10336. "email": "florian@webflo.org"
  10337. }
  10338. ],
  10339. "description": "Helper class to locate a Drupal installation.",
  10340. "support": {
  10341. "issues": "https://github.com/webflo/drupal-finder/issues",
  10342. "source": "https://github.com/webflo/drupal-finder/tree/1.3.1"
  10343. },
  10344. "time": "2024-06-28T13:45:36+00:00"
  10345. },
  10346. {
  10347. "name": "webmozart/assert",
  10348. "version": "1.11.0",
  10349. "source": {
  10350. "type": "git",
  10351. "url": "https://github.com/webmozarts/assert.git",
  10352. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  10353. },
  10354. "dist": {
  10355. "type": "zip",
  10356. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10357. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10358. "shasum": ""
  10359. },
  10360. "require": {
  10361. "ext-ctype": "*",
  10362. "php": "^7.2 || ^8.0"
  10363. },
  10364. "conflict": {
  10365. "phpstan/phpstan": "<0.12.20",
  10366. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10367. },
  10368. "require-dev": {
  10369. "phpunit/phpunit": "^8.5.13"
  10370. },
  10371. "type": "library",
  10372. "extra": {
  10373. "branch-alias": {
  10374. "dev-master": "1.10-dev"
  10375. }
  10376. },
  10377. "autoload": {
  10378. "psr-4": {
  10379. "Webmozart\\Assert\\": "src/"
  10380. }
  10381. },
  10382. "notification-url": "https://packagist.org/downloads/",
  10383. "license": [
  10384. "MIT"
  10385. ],
  10386. "authors": [
  10387. {
  10388. "name": "Bernhard Schussek",
  10389. "email": "bschussek@gmail.com"
  10390. }
  10391. ],
  10392. "description": "Assertions to validate method input/output with nice error messages.",
  10393. "keywords": [
  10394. "assert",
  10395. "check",
  10396. "validate"
  10397. ],
  10398. "support": {
  10399. "issues": "https://github.com/webmozarts/assert/issues",
  10400. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  10401. },
  10402. "time": "2022-06-03T18:03:27+00:00"
  10403. },
  10404. {
  10405. "name": "webmozart/path-util",
  10406. "version": "2.3.0",
  10407. "source": {
  10408. "type": "git",
  10409. "url": "https://github.com/webmozart/path-util.git",
  10410. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  10411. },
  10412. "dist": {
  10413. "type": "zip",
  10414. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10415. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10416. "shasum": ""
  10417. },
  10418. "require": {
  10419. "php": ">=5.3.3",
  10420. "webmozart/assert": "~1.0"
  10421. },
  10422. "require-dev": {
  10423. "phpunit/phpunit": "^4.6",
  10424. "sebastian/version": "^1.0.1"
  10425. },
  10426. "type": "library",
  10427. "extra": {
  10428. "branch-alias": {
  10429. "dev-master": "2.3-dev"
  10430. }
  10431. },
  10432. "autoload": {
  10433. "psr-4": {
  10434. "Webmozart\\PathUtil\\": "src/"
  10435. }
  10436. },
  10437. "notification-url": "https://packagist.org/downloads/",
  10438. "license": [
  10439. "MIT"
  10440. ],
  10441. "authors": [
  10442. {
  10443. "name": "Bernhard Schussek",
  10444. "email": "bschussek@gmail.com"
  10445. }
  10446. ],
  10447. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  10448. "support": {
  10449. "issues": "https://github.com/webmozart/path-util/issues",
  10450. "source": "https://github.com/webmozart/path-util/tree/2.3.0"
  10451. },
  10452. "abandoned": "symfony/filesystem",
  10453. "time": "2015-12-17T08:42:14+00:00"
  10454. }
  10455. ],
  10456. "packages-dev": [],
  10457. "aliases": [],
  10458. "minimum-stability": "dev",
  10459. "stability-flags": {
  10460. "drupal/basic": 15,
  10461. "drupal/bulkdelete": 20,
  10462. "drupal/config_update": 15,
  10463. "drupal/context": 5,
  10464. "drupal/domain": 10,
  10465. "drupal/filefield_sources": 20,
  10466. "drupal/linkit": 10
  10467. },
  10468. "prefer-stable": true,
  10469. "prefer-lowest": false,
  10470. "platform": {
  10471. "php": ">=5.6"
  10472. },
  10473. "platform-dev": [],
  10474. "plugin-api-version": "2.6.0"
  10475. }