composer.lock 338 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304
  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": "1f73e40884c66485ac6ab05b1cdd4729",
  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.3.0",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  71. "reference": "56da9209b24a5a5b5d27bec9e523f02bdd101770"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/56da9209b24a5a5b5d27bec9e523f02bdd101770",
  76. "reference": "56da9209b24a5a5b5d27bec9e523f02bdd101770",
  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-alpha4",
  95. "drupal/coder": "8.3.22",
  96. "drupal/core": "10.1.x-dev",
  97. "ext-simplexml": "*",
  98. "phpspec/prophecy-phpunit": "^2.0",
  99. "phpunit/phpunit": "^9.5",
  100. "squizlabs/php_codesniffer": "^3.7",
  101. "symfony/var-dumper": "^6.3",
  102. "symfony/yaml": "^6.3",
  103. "vimeo/psalm": "^5.14.0"
  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.3.0"
  122. },
  123. "time": "2023-10-21T12:57:05+00:00"
  124. },
  125. {
  126. "name": "commerceguys/addressing",
  127. "version": "v2.2.0",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/commerceguys/addressing.git",
  131. "reference": "a5af40bd4b6edee5101e182085e67b7ff5d4a89b"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/a5af40bd4b6edee5101e182085e67b7ff5d4a89b",
  136. "reference": "a5af40bd4b6edee5101e182085e67b7ff5d4a89b",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "doctrine/collections": "^1.6 || ^2.0",
  141. "php": ">=8.0"
  142. },
  143. "require-dev": {
  144. "ext-json": "*",
  145. "mikey179/vfsstream": "^1.6.11",
  146. "phpunit/phpunit": "^9.6",
  147. "squizlabs/php_codesniffer": "^3.7",
  148. "symfony/validator": "^5.4 || ^6.3 || ^7.0"
  149. },
  150. "suggest": {
  151. "symfony/validator": "to validate addresses"
  152. },
  153. "type": "library",
  154. "extra": {
  155. "branch-alias": {
  156. "dev-master": "2.x-dev"
  157. }
  158. },
  159. "autoload": {
  160. "psr-4": {
  161. "CommerceGuys\\Addressing\\": "src"
  162. }
  163. },
  164. "notification-url": "https://packagist.org/downloads/",
  165. "license": [
  166. "MIT"
  167. ],
  168. "authors": [
  169. {
  170. "name": "Bojan Zivanovic"
  171. },
  172. {
  173. "name": "Damien Tournoud"
  174. }
  175. ],
  176. "description": "Addressing library powered by CLDR and Google's address data.",
  177. "keywords": [
  178. "address",
  179. "internationalization",
  180. "localization",
  181. "postal"
  182. ],
  183. "support": {
  184. "issues": "https://github.com/commerceguys/addressing/issues",
  185. "source": "https://github.com/commerceguys/addressing/tree/v2.2.0"
  186. },
  187. "time": "2024-02-25T11:22:16+00:00"
  188. },
  189. {
  190. "name": "composer/installers",
  191. "version": "v1.12.0",
  192. "source": {
  193. "type": "git",
  194. "url": "https://github.com/composer/installers.git",
  195. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19"
  196. },
  197. "dist": {
  198. "type": "zip",
  199. "url": "https://api.github.com/repos/composer/installers/zipball/d20a64ed3c94748397ff5973488761b22f6d3f19",
  200. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19",
  201. "shasum": ""
  202. },
  203. "require": {
  204. "composer-plugin-api": "^1.0 || ^2.0"
  205. },
  206. "replace": {
  207. "roundcube/plugin-installer": "*",
  208. "shama/baton": "*"
  209. },
  210. "require-dev": {
  211. "composer/composer": "1.6.* || ^2.0",
  212. "composer/semver": "^1 || ^3",
  213. "phpstan/phpstan": "^0.12.55",
  214. "phpstan/phpstan-phpunit": "^0.12.16",
  215. "symfony/phpunit-bridge": "^4.2 || ^5",
  216. "symfony/process": "^2.3"
  217. },
  218. "type": "composer-plugin",
  219. "extra": {
  220. "class": "Composer\\Installers\\Plugin",
  221. "branch-alias": {
  222. "dev-main": "1.x-dev"
  223. }
  224. },
  225. "autoload": {
  226. "psr-4": {
  227. "Composer\\Installers\\": "src/Composer/Installers"
  228. }
  229. },
  230. "notification-url": "https://packagist.org/downloads/",
  231. "license": [
  232. "MIT"
  233. ],
  234. "authors": [
  235. {
  236. "name": "Kyle Robinson Young",
  237. "email": "kyle@dontkry.com",
  238. "homepage": "https://github.com/shama"
  239. }
  240. ],
  241. "description": "A multi-framework Composer library installer",
  242. "homepage": "https://composer.github.io/installers/",
  243. "keywords": [
  244. "Craft",
  245. "Dolibarr",
  246. "Eliasis",
  247. "Hurad",
  248. "ImageCMS",
  249. "Kanboard",
  250. "Lan Management System",
  251. "MODX Evo",
  252. "MantisBT",
  253. "Mautic",
  254. "Maya",
  255. "OXID",
  256. "Plentymarkets",
  257. "Porto",
  258. "RadPHP",
  259. "SMF",
  260. "Starbug",
  261. "Thelia",
  262. "Whmcs",
  263. "WolfCMS",
  264. "agl",
  265. "aimeos",
  266. "annotatecms",
  267. "attogram",
  268. "bitrix",
  269. "cakephp",
  270. "chef",
  271. "cockpit",
  272. "codeigniter",
  273. "concrete5",
  274. "croogo",
  275. "dokuwiki",
  276. "drupal",
  277. "eZ Platform",
  278. "elgg",
  279. "expressionengine",
  280. "fuelphp",
  281. "grav",
  282. "installer",
  283. "itop",
  284. "joomla",
  285. "known",
  286. "kohana",
  287. "laravel",
  288. "lavalite",
  289. "lithium",
  290. "magento",
  291. "majima",
  292. "mako",
  293. "mediawiki",
  294. "miaoxing",
  295. "modulework",
  296. "modx",
  297. "moodle",
  298. "osclass",
  299. "pantheon",
  300. "phpbb",
  301. "piwik",
  302. "ppi",
  303. "processwire",
  304. "puppet",
  305. "pxcms",
  306. "reindex",
  307. "roundcube",
  308. "shopware",
  309. "silverstripe",
  310. "sydes",
  311. "sylius",
  312. "symfony",
  313. "tastyigniter",
  314. "typo3",
  315. "wordpress",
  316. "yawik",
  317. "zend",
  318. "zikula"
  319. ],
  320. "support": {
  321. "issues": "https://github.com/composer/installers/issues",
  322. "source": "https://github.com/composer/installers/tree/v1.12.0"
  323. },
  324. "funding": [
  325. {
  326. "url": "https://packagist.com",
  327. "type": "custom"
  328. },
  329. {
  330. "url": "https://github.com/composer",
  331. "type": "github"
  332. },
  333. {
  334. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  335. "type": "tidelift"
  336. }
  337. ],
  338. "time": "2021-09-13T08:19:44+00:00"
  339. },
  340. {
  341. "name": "composer/semver",
  342. "version": "3.4.0",
  343. "source": {
  344. "type": "git",
  345. "url": "https://github.com/composer/semver.git",
  346. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  347. },
  348. "dist": {
  349. "type": "zip",
  350. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  351. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  352. "shasum": ""
  353. },
  354. "require": {
  355. "php": "^5.3.2 || ^7.0 || ^8.0"
  356. },
  357. "require-dev": {
  358. "phpstan/phpstan": "^1.4",
  359. "symfony/phpunit-bridge": "^4.2 || ^5"
  360. },
  361. "type": "library",
  362. "extra": {
  363. "branch-alias": {
  364. "dev-main": "3.x-dev"
  365. }
  366. },
  367. "autoload": {
  368. "psr-4": {
  369. "Composer\\Semver\\": "src"
  370. }
  371. },
  372. "notification-url": "https://packagist.org/downloads/",
  373. "license": [
  374. "MIT"
  375. ],
  376. "authors": [
  377. {
  378. "name": "Nils Adermann",
  379. "email": "naderman@naderman.de",
  380. "homepage": "http://www.naderman.de"
  381. },
  382. {
  383. "name": "Jordi Boggiano",
  384. "email": "j.boggiano@seld.be",
  385. "homepage": "http://seld.be"
  386. },
  387. {
  388. "name": "Rob Bast",
  389. "email": "rob.bast@gmail.com",
  390. "homepage": "http://robbast.nl"
  391. }
  392. ],
  393. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  394. "keywords": [
  395. "semantic",
  396. "semver",
  397. "validation",
  398. "versioning"
  399. ],
  400. "support": {
  401. "irc": "ircs://irc.libera.chat:6697/composer",
  402. "issues": "https://github.com/composer/semver/issues",
  403. "source": "https://github.com/composer/semver/tree/3.4.0"
  404. },
  405. "funding": [
  406. {
  407. "url": "https://packagist.com",
  408. "type": "custom"
  409. },
  410. {
  411. "url": "https://github.com/composer",
  412. "type": "github"
  413. },
  414. {
  415. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  416. "type": "tidelift"
  417. }
  418. ],
  419. "time": "2023-08-31T09:50:34+00:00"
  420. },
  421. {
  422. "name": "consolidation/annotated-command",
  423. "version": "4.9.2",
  424. "source": {
  425. "type": "git",
  426. "url": "https://github.com/consolidation/annotated-command.git",
  427. "reference": "b5255dcbee1de95036185062a103dabc622224de"
  428. },
  429. "dist": {
  430. "type": "zip",
  431. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/b5255dcbee1de95036185062a103dabc622224de",
  432. "reference": "b5255dcbee1de95036185062a103dabc622224de",
  433. "shasum": ""
  434. },
  435. "require": {
  436. "consolidation/output-formatters": "^4.3.1",
  437. "php": ">=7.1.3",
  438. "psr/log": "^1 || ^2 || ^3",
  439. "symfony/console": "^4.4.8 || ^5 || ^6",
  440. "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6",
  441. "symfony/finder": "^4.4.8 || ^5 || ^6"
  442. },
  443. "require-dev": {
  444. "composer-runtime-api": "^2.0",
  445. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  446. "squizlabs/php_codesniffer": "^3",
  447. "yoast/phpunit-polyfills": "^0.2.0"
  448. },
  449. "type": "library",
  450. "extra": {
  451. "branch-alias": {
  452. "dev-main": "4.x-dev"
  453. }
  454. },
  455. "autoload": {
  456. "psr-4": {
  457. "Consolidation\\AnnotatedCommand\\": "src"
  458. }
  459. },
  460. "notification-url": "https://packagist.org/downloads/",
  461. "license": [
  462. "MIT"
  463. ],
  464. "authors": [
  465. {
  466. "name": "Greg Anderson",
  467. "email": "greg.1.anderson@greenknowe.org"
  468. }
  469. ],
  470. "description": "Initialize Symfony Console commands from annotated command class methods.",
  471. "support": {
  472. "issues": "https://github.com/consolidation/annotated-command/issues",
  473. "source": "https://github.com/consolidation/annotated-command/tree/4.9.2"
  474. },
  475. "time": "2023-12-26T14:30:50+00:00"
  476. },
  477. {
  478. "name": "consolidation/config",
  479. "version": "2.1.2",
  480. "source": {
  481. "type": "git",
  482. "url": "https://github.com/consolidation/config.git",
  483. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae"
  484. },
  485. "dist": {
  486. "type": "zip",
  487. "url": "https://api.github.com/repos/consolidation/config/zipball/597f8d7fbeef801736250ec10c3e190569b1b0ae",
  488. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae",
  489. "shasum": ""
  490. },
  491. "require": {
  492. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  493. "grasmash/expander": "^2.0.1 || ^3",
  494. "php": ">=7.1.3",
  495. "symfony/event-dispatcher": "^4 || ^5 || ^6"
  496. },
  497. "require-dev": {
  498. "ext-json": "*",
  499. "phpunit/phpunit": ">=7.5.20",
  500. "squizlabs/php_codesniffer": "^3",
  501. "symfony/console": "^4 || ^5 || ^6",
  502. "symfony/yaml": "^4 || ^5 || ^6",
  503. "yoast/phpunit-polyfills": "^1"
  504. },
  505. "suggest": {
  506. "symfony/event-dispatcher": "Required to inject configuration into Command options",
  507. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  508. },
  509. "type": "library",
  510. "extra": {
  511. "branch-alias": {
  512. "dev-main": "2.x-dev"
  513. }
  514. },
  515. "autoload": {
  516. "psr-4": {
  517. "Consolidation\\Config\\": "src"
  518. }
  519. },
  520. "notification-url": "https://packagist.org/downloads/",
  521. "license": [
  522. "MIT"
  523. ],
  524. "authors": [
  525. {
  526. "name": "Greg Anderson",
  527. "email": "greg.1.anderson@greenknowe.org"
  528. }
  529. ],
  530. "description": "Provide configuration services for a commandline tool.",
  531. "support": {
  532. "issues": "https://github.com/consolidation/config/issues",
  533. "source": "https://github.com/consolidation/config/tree/2.1.2"
  534. },
  535. "time": "2022-10-06T17:48:03+00:00"
  536. },
  537. {
  538. "name": "consolidation/filter-via-dot-access-data",
  539. "version": "2.0.2",
  540. "source": {
  541. "type": "git",
  542. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  543. "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b"
  544. },
  545. "dist": {
  546. "type": "zip",
  547. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
  548. "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
  549. "shasum": ""
  550. },
  551. "require": {
  552. "dflydev/dot-access-data": "^1.1.0 || ^2.0.0 || ^3.0.0",
  553. "php": ">=7.1.3"
  554. },
  555. "require-dev": {
  556. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  557. "squizlabs/php_codesniffer": "^3",
  558. "yoast/phpunit-polyfills": "^0.2.0"
  559. },
  560. "type": "library",
  561. "extra": {
  562. "branch-alias": {
  563. "dev-main": "2.x-dev"
  564. }
  565. },
  566. "autoload": {
  567. "psr-4": {
  568. "Consolidation\\Filter\\": "src"
  569. }
  570. },
  571. "notification-url": "https://packagist.org/downloads/",
  572. "license": [
  573. "MIT"
  574. ],
  575. "authors": [
  576. {
  577. "name": "Greg Anderson",
  578. "email": "greg.1.anderson@greenknowe.org"
  579. }
  580. ],
  581. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  582. "support": {
  583. "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/2.0.2"
  584. },
  585. "time": "2021-12-30T03:56:08+00:00"
  586. },
  587. {
  588. "name": "consolidation/log",
  589. "version": "3.0.0",
  590. "source": {
  591. "type": "git",
  592. "url": "https://github.com/consolidation/log.git",
  593. "reference": "caaad9d70dae54eb49002666f000e3c607066878"
  594. },
  595. "dist": {
  596. "type": "zip",
  597. "url": "https://api.github.com/repos/consolidation/log/zipball/caaad9d70dae54eb49002666f000e3c607066878",
  598. "reference": "caaad9d70dae54eb49002666f000e3c607066878",
  599. "shasum": ""
  600. },
  601. "require": {
  602. "php": ">=8.0.0",
  603. "psr/log": "^3",
  604. "symfony/console": "^5 || ^6"
  605. },
  606. "require-dev": {
  607. "phpunit/phpunit": ">=7.5.20",
  608. "squizlabs/php_codesniffer": "^3",
  609. "yoast/phpunit-polyfills": "^0.2.0"
  610. },
  611. "type": "library",
  612. "extra": {
  613. "branch-alias": {
  614. "dev-main": "2.x-dev"
  615. }
  616. },
  617. "autoload": {
  618. "psr-4": {
  619. "Consolidation\\Log\\": "src"
  620. }
  621. },
  622. "notification-url": "https://packagist.org/downloads/",
  623. "license": [
  624. "MIT"
  625. ],
  626. "authors": [
  627. {
  628. "name": "Greg Anderson",
  629. "email": "greg.1.anderson@greenknowe.org"
  630. }
  631. ],
  632. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  633. "support": {
  634. "issues": "https://github.com/consolidation/log/issues",
  635. "source": "https://github.com/consolidation/log/tree/3.0.0"
  636. },
  637. "time": "2022-04-05T16:53:32+00:00"
  638. },
  639. {
  640. "name": "consolidation/output-formatters",
  641. "version": "4.3.2",
  642. "source": {
  643. "type": "git",
  644. "url": "https://github.com/consolidation/output-formatters.git",
  645. "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58"
  646. },
  647. "dist": {
  648. "type": "zip",
  649. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/06711568b4cd169700ff7e8075db0a9a341ceb58",
  650. "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58",
  651. "shasum": ""
  652. },
  653. "require": {
  654. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  655. "php": ">=7.1.3",
  656. "symfony/console": "^4 || ^5 || ^6",
  657. "symfony/finder": "^4 || ^5 || ^6"
  658. },
  659. "require-dev": {
  660. "php-coveralls/php-coveralls": "^2.4.2",
  661. "phpunit/phpunit": "^7 || ^8 || ^9",
  662. "squizlabs/php_codesniffer": "^3",
  663. "symfony/var-dumper": "^4 || ^5 || ^6",
  664. "symfony/yaml": "^4 || ^5 || ^6",
  665. "yoast/phpunit-polyfills": "^1"
  666. },
  667. "suggest": {
  668. "symfony/var-dumper": "For using the var_dump formatter"
  669. },
  670. "type": "library",
  671. "autoload": {
  672. "psr-4": {
  673. "Consolidation\\OutputFormatters\\": "src"
  674. }
  675. },
  676. "notification-url": "https://packagist.org/downloads/",
  677. "license": [
  678. "MIT"
  679. ],
  680. "authors": [
  681. {
  682. "name": "Greg Anderson",
  683. "email": "greg.1.anderson@greenknowe.org"
  684. }
  685. ],
  686. "description": "Format text by applying transformations provided by plug-in formatters.",
  687. "support": {
  688. "issues": "https://github.com/consolidation/output-formatters/issues",
  689. "source": "https://github.com/consolidation/output-formatters/tree/4.3.2"
  690. },
  691. "time": "2023-07-06T04:45:41+00:00"
  692. },
  693. {
  694. "name": "consolidation/robo",
  695. "version": "4.0.6",
  696. "source": {
  697. "type": "git",
  698. "url": "https://github.com/consolidation/robo.git",
  699. "reference": "55a272370940607649e5c46eb173c5c54f7c166d"
  700. },
  701. "dist": {
  702. "type": "zip",
  703. "url": "https://api.github.com/repos/consolidation/robo/zipball/55a272370940607649e5c46eb173c5c54f7c166d",
  704. "reference": "55a272370940607649e5c46eb173c5c54f7c166d",
  705. "shasum": ""
  706. },
  707. "require": {
  708. "consolidation/annotated-command": "^4.8.1",
  709. "consolidation/config": "^2.0.1",
  710. "consolidation/log": "^2.0.2 || ^3",
  711. "consolidation/output-formatters": "^4.1.2",
  712. "consolidation/self-update": "^2.0",
  713. "league/container": "^3.3.1 || ^4.0",
  714. "php": ">=8.0",
  715. "phpowermove/docblock": "^4.0",
  716. "symfony/console": "^6",
  717. "symfony/event-dispatcher": "^6",
  718. "symfony/filesystem": "^6",
  719. "symfony/finder": "^6",
  720. "symfony/process": "^6",
  721. "symfony/yaml": "^6"
  722. },
  723. "conflict": {
  724. "codegyre/robo": "*"
  725. },
  726. "require-dev": {
  727. "natxet/cssmin": "3.0.4",
  728. "patchwork/jsqueeze": "^2",
  729. "pear/archive_tar": "^1.4.4",
  730. "phpunit/phpunit": "^7.5.20 || ^8",
  731. "squizlabs/php_codesniffer": "^3.6",
  732. "yoast/phpunit-polyfills": "^0.2.0"
  733. },
  734. "suggest": {
  735. "natxet/cssmin": "For minifying CSS files in taskMinify",
  736. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  737. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.",
  738. "totten/lurkerlite": "For monitoring filesystem changes in taskWatch"
  739. },
  740. "bin": [
  741. "robo"
  742. ],
  743. "type": "library",
  744. "autoload": {
  745. "psr-4": {
  746. "Robo\\": "src"
  747. }
  748. },
  749. "notification-url": "https://packagist.org/downloads/",
  750. "license": [
  751. "MIT"
  752. ],
  753. "authors": [
  754. {
  755. "name": "Davert",
  756. "email": "davert.php@resend.cc"
  757. }
  758. ],
  759. "description": "Modern task runner",
  760. "support": {
  761. "issues": "https://github.com/consolidation/robo/issues",
  762. "source": "https://github.com/consolidation/robo/tree/4.0.6"
  763. },
  764. "time": "2023-04-30T21:49:04+00:00"
  765. },
  766. {
  767. "name": "consolidation/self-update",
  768. "version": "2.2.0",
  769. "source": {
  770. "type": "git",
  771. "url": "https://github.com/consolidation/self-update.git",
  772. "reference": "972a1016761c9b63314e040836a12795dff6953a"
  773. },
  774. "dist": {
  775. "type": "zip",
  776. "url": "https://api.github.com/repos/consolidation/self-update/zipball/972a1016761c9b63314e040836a12795dff6953a",
  777. "reference": "972a1016761c9b63314e040836a12795dff6953a",
  778. "shasum": ""
  779. },
  780. "require": {
  781. "composer/semver": "^3.2",
  782. "php": ">=5.5.0",
  783. "symfony/console": "^2.8 || ^3 || ^4 || ^5 || ^6",
  784. "symfony/filesystem": "^2.5 || ^3 || ^4 || ^5 || ^6"
  785. },
  786. "bin": [
  787. "scripts/release"
  788. ],
  789. "type": "library",
  790. "extra": {
  791. "branch-alias": {
  792. "dev-main": "2.x-dev"
  793. }
  794. },
  795. "autoload": {
  796. "psr-4": {
  797. "SelfUpdate\\": "src"
  798. }
  799. },
  800. "notification-url": "https://packagist.org/downloads/",
  801. "license": [
  802. "MIT"
  803. ],
  804. "authors": [
  805. {
  806. "name": "Alexander Menk",
  807. "email": "menk@mestrona.net"
  808. },
  809. {
  810. "name": "Greg Anderson",
  811. "email": "greg.1.anderson@greenknowe.org"
  812. }
  813. ],
  814. "description": "Provides a self:update command for Symfony Console applications.",
  815. "support": {
  816. "issues": "https://github.com/consolidation/self-update/issues",
  817. "source": "https://github.com/consolidation/self-update/tree/2.2.0"
  818. },
  819. "time": "2023-03-18T01:37:41+00:00"
  820. },
  821. {
  822. "name": "consolidation/site-alias",
  823. "version": "4.0.1",
  824. "source": {
  825. "type": "git",
  826. "url": "https://github.com/consolidation/site-alias.git",
  827. "reference": "b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5"
  828. },
  829. "dist": {
  830. "type": "zip",
  831. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5",
  832. "reference": "b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5",
  833. "shasum": ""
  834. },
  835. "require": {
  836. "consolidation/config": "^1.2.1 || ^2",
  837. "php": ">=7.4",
  838. "symfony/filesystem": "^5.4 || ^6",
  839. "symfony/finder": "^5 || ^6"
  840. },
  841. "require-dev": {
  842. "php-coveralls/php-coveralls": "^2.4.2",
  843. "phpunit/phpunit": ">=7",
  844. "squizlabs/php_codesniffer": "^3",
  845. "symfony/var-dumper": "^4",
  846. "yoast/phpunit-polyfills": "^0.2.0"
  847. },
  848. "type": "library",
  849. "extra": {
  850. "branch-alias": {
  851. "dev-main": "4.x-dev"
  852. }
  853. },
  854. "autoload": {
  855. "psr-4": {
  856. "Consolidation\\SiteAlias\\": "src"
  857. }
  858. },
  859. "notification-url": "https://packagist.org/downloads/",
  860. "license": [
  861. "MIT"
  862. ],
  863. "authors": [
  864. {
  865. "name": "Greg Anderson",
  866. "email": "greg.1.anderson@greenknowe.org"
  867. },
  868. {
  869. "name": "Moshe Weitzman",
  870. "email": "weitzman@tejasa.com"
  871. }
  872. ],
  873. "description": "Manage alias records for local and remote sites.",
  874. "support": {
  875. "issues": "https://github.com/consolidation/site-alias/issues",
  876. "source": "https://github.com/consolidation/site-alias/tree/4.0.1"
  877. },
  878. "time": "2023-04-29T17:18:10+00:00"
  879. },
  880. {
  881. "name": "consolidation/site-process",
  882. "version": "5.2.0",
  883. "source": {
  884. "type": "git",
  885. "url": "https://github.com/consolidation/site-process.git",
  886. "reference": "6c44638d7af8a8b4abe12c3180701243f480539d"
  887. },
  888. "dist": {
  889. "type": "zip",
  890. "url": "https://api.github.com/repos/consolidation/site-process/zipball/6c44638d7af8a8b4abe12c3180701243f480539d",
  891. "reference": "6c44638d7af8a8b4abe12c3180701243f480539d",
  892. "shasum": ""
  893. },
  894. "require": {
  895. "consolidation/config": "^2",
  896. "consolidation/site-alias": "^3 || ^4",
  897. "php": ">=8.0.14",
  898. "symfony/console": "^5.4 || ^6",
  899. "symfony/process": "^6"
  900. },
  901. "require-dev": {
  902. "phpunit/phpunit": "^9",
  903. "squizlabs/php_codesniffer": "^3"
  904. },
  905. "type": "library",
  906. "extra": {
  907. "branch-alias": {
  908. "dev-main": "5.x-dev"
  909. }
  910. },
  911. "autoload": {
  912. "psr-4": {
  913. "Consolidation\\SiteProcess\\": "src"
  914. }
  915. },
  916. "notification-url": "https://packagist.org/downloads/",
  917. "license": [
  918. "MIT"
  919. ],
  920. "authors": [
  921. {
  922. "name": "Greg Anderson",
  923. "email": "greg.1.anderson@greenknowe.org"
  924. },
  925. {
  926. "name": "Moshe Weitzman",
  927. "email": "weitzman@tejasa.com"
  928. }
  929. ],
  930. "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.",
  931. "support": {
  932. "issues": "https://github.com/consolidation/site-process/issues",
  933. "source": "https://github.com/consolidation/site-process/tree/5.2.0"
  934. },
  935. "time": "2022-12-06T17:57:16+00:00"
  936. },
  937. {
  938. "name": "cweagans/composer-patches",
  939. "version": "1.7.3",
  940. "source": {
  941. "type": "git",
  942. "url": "https://github.com/cweagans/composer-patches.git",
  943. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db"
  944. },
  945. "dist": {
  946. "type": "zip",
  947. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  948. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  949. "shasum": ""
  950. },
  951. "require": {
  952. "composer-plugin-api": "^1.0 || ^2.0",
  953. "php": ">=5.3.0"
  954. },
  955. "require-dev": {
  956. "composer/composer": "~1.0 || ~2.0",
  957. "phpunit/phpunit": "~4.6"
  958. },
  959. "type": "composer-plugin",
  960. "extra": {
  961. "class": "cweagans\\Composer\\Patches"
  962. },
  963. "autoload": {
  964. "psr-4": {
  965. "cweagans\\Composer\\": "src"
  966. }
  967. },
  968. "notification-url": "https://packagist.org/downloads/",
  969. "license": [
  970. "BSD-3-Clause"
  971. ],
  972. "authors": [
  973. {
  974. "name": "Cameron Eagans",
  975. "email": "me@cweagans.net"
  976. }
  977. ],
  978. "description": "Provides a way to patch Composer packages.",
  979. "support": {
  980. "issues": "https://github.com/cweagans/composer-patches/issues",
  981. "source": "https://github.com/cweagans/composer-patches/tree/1.7.3"
  982. },
  983. "time": "2022-12-20T22:53:13+00:00"
  984. },
  985. {
  986. "name": "dflydev/dot-access-data",
  987. "version": "v3.0.2",
  988. "source": {
  989. "type": "git",
  990. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  991. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  992. },
  993. "dist": {
  994. "type": "zip",
  995. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  996. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  997. "shasum": ""
  998. },
  999. "require": {
  1000. "php": "^7.1 || ^8.0"
  1001. },
  1002. "require-dev": {
  1003. "phpstan/phpstan": "^0.12.42",
  1004. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1005. "scrutinizer/ocular": "1.6.0",
  1006. "squizlabs/php_codesniffer": "^3.5",
  1007. "vimeo/psalm": "^4.0.0"
  1008. },
  1009. "type": "library",
  1010. "extra": {
  1011. "branch-alias": {
  1012. "dev-main": "3.x-dev"
  1013. }
  1014. },
  1015. "autoload": {
  1016. "psr-4": {
  1017. "Dflydev\\DotAccessData\\": "src/"
  1018. }
  1019. },
  1020. "notification-url": "https://packagist.org/downloads/",
  1021. "license": [
  1022. "MIT"
  1023. ],
  1024. "authors": [
  1025. {
  1026. "name": "Dragonfly Development Inc.",
  1027. "email": "info@dflydev.com",
  1028. "homepage": "http://dflydev.com"
  1029. },
  1030. {
  1031. "name": "Beau Simensen",
  1032. "email": "beau@dflydev.com",
  1033. "homepage": "http://beausimensen.com"
  1034. },
  1035. {
  1036. "name": "Carlos Frutos",
  1037. "email": "carlos@kiwing.it",
  1038. "homepage": "https://github.com/cfrutos"
  1039. },
  1040. {
  1041. "name": "Colin O'Dell",
  1042. "email": "colinodell@gmail.com",
  1043. "homepage": "https://www.colinodell.com"
  1044. }
  1045. ],
  1046. "description": "Given a deep data structure, access data by dot notation.",
  1047. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1048. "keywords": [
  1049. "access",
  1050. "data",
  1051. "dot",
  1052. "notation"
  1053. ],
  1054. "support": {
  1055. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1056. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  1057. },
  1058. "time": "2022-10-27T11:44:00+00:00"
  1059. },
  1060. {
  1061. "name": "doctrine/annotations",
  1062. "version": "1.14.3",
  1063. "source": {
  1064. "type": "git",
  1065. "url": "https://github.com/doctrine/annotations.git",
  1066. "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af"
  1067. },
  1068. "dist": {
  1069. "type": "zip",
  1070. "url": "https://api.github.com/repos/doctrine/annotations/zipball/fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af",
  1071. "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af",
  1072. "shasum": ""
  1073. },
  1074. "require": {
  1075. "doctrine/lexer": "^1 || ^2",
  1076. "ext-tokenizer": "*",
  1077. "php": "^7.1 || ^8.0",
  1078. "psr/cache": "^1 || ^2 || ^3"
  1079. },
  1080. "require-dev": {
  1081. "doctrine/cache": "^1.11 || ^2.0",
  1082. "doctrine/coding-standard": "^9 || ^10",
  1083. "phpstan/phpstan": "~1.4.10 || ^1.8.0",
  1084. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1085. "symfony/cache": "^4.4 || ^5.4 || ^6",
  1086. "vimeo/psalm": "^4.10"
  1087. },
  1088. "suggest": {
  1089. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  1090. },
  1091. "type": "library",
  1092. "autoload": {
  1093. "psr-4": {
  1094. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1095. }
  1096. },
  1097. "notification-url": "https://packagist.org/downloads/",
  1098. "license": [
  1099. "MIT"
  1100. ],
  1101. "authors": [
  1102. {
  1103. "name": "Guilherme Blanco",
  1104. "email": "guilhermeblanco@gmail.com"
  1105. },
  1106. {
  1107. "name": "Roman Borschel",
  1108. "email": "roman@code-factory.org"
  1109. },
  1110. {
  1111. "name": "Benjamin Eberlei",
  1112. "email": "kontakt@beberlei.de"
  1113. },
  1114. {
  1115. "name": "Jonathan Wage",
  1116. "email": "jonwage@gmail.com"
  1117. },
  1118. {
  1119. "name": "Johannes Schmitt",
  1120. "email": "schmittjoh@gmail.com"
  1121. }
  1122. ],
  1123. "description": "Docblock Annotations Parser",
  1124. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1125. "keywords": [
  1126. "annotations",
  1127. "docblock",
  1128. "parser"
  1129. ],
  1130. "support": {
  1131. "issues": "https://github.com/doctrine/annotations/issues",
  1132. "source": "https://github.com/doctrine/annotations/tree/1.14.3"
  1133. },
  1134. "time": "2023-02-01T09:20:38+00:00"
  1135. },
  1136. {
  1137. "name": "doctrine/collections",
  1138. "version": "2.2.0",
  1139. "source": {
  1140. "type": "git",
  1141. "url": "https://github.com/doctrine/collections.git",
  1142. "reference": "07e16cd7b80a2cffed99e36b541876af172f0257"
  1143. },
  1144. "dist": {
  1145. "type": "zip",
  1146. "url": "https://api.github.com/repos/doctrine/collections/zipball/07e16cd7b80a2cffed99e36b541876af172f0257",
  1147. "reference": "07e16cd7b80a2cffed99e36b541876af172f0257",
  1148. "shasum": ""
  1149. },
  1150. "require": {
  1151. "doctrine/deprecations": "^1",
  1152. "php": "^8.1"
  1153. },
  1154. "require-dev": {
  1155. "doctrine/coding-standard": "^12",
  1156. "ext-json": "*",
  1157. "phpstan/phpstan": "^1.8",
  1158. "phpstan/phpstan-phpunit": "^1.0",
  1159. "phpunit/phpunit": "^10.5",
  1160. "vimeo/psalm": "^5.11"
  1161. },
  1162. "type": "library",
  1163. "autoload": {
  1164. "psr-4": {
  1165. "Doctrine\\Common\\Collections\\": "src"
  1166. }
  1167. },
  1168. "notification-url": "https://packagist.org/downloads/",
  1169. "license": [
  1170. "MIT"
  1171. ],
  1172. "authors": [
  1173. {
  1174. "name": "Guilherme Blanco",
  1175. "email": "guilhermeblanco@gmail.com"
  1176. },
  1177. {
  1178. "name": "Roman Borschel",
  1179. "email": "roman@code-factory.org"
  1180. },
  1181. {
  1182. "name": "Benjamin Eberlei",
  1183. "email": "kontakt@beberlei.de"
  1184. },
  1185. {
  1186. "name": "Jonathan Wage",
  1187. "email": "jonwage@gmail.com"
  1188. },
  1189. {
  1190. "name": "Johannes Schmitt",
  1191. "email": "schmittjoh@gmail.com"
  1192. }
  1193. ],
  1194. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  1195. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  1196. "keywords": [
  1197. "array",
  1198. "collections",
  1199. "iterators",
  1200. "php"
  1201. ],
  1202. "support": {
  1203. "issues": "https://github.com/doctrine/collections/issues",
  1204. "source": "https://github.com/doctrine/collections/tree/2.2.0"
  1205. },
  1206. "funding": [
  1207. {
  1208. "url": "https://www.doctrine-project.org/sponsorship.html",
  1209. "type": "custom"
  1210. },
  1211. {
  1212. "url": "https://www.patreon.com/phpdoctrine",
  1213. "type": "patreon"
  1214. },
  1215. {
  1216. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  1217. "type": "tidelift"
  1218. }
  1219. ],
  1220. "time": "2024-02-25T22:55:36+00:00"
  1221. },
  1222. {
  1223. "name": "doctrine/deprecations",
  1224. "version": "1.1.3",
  1225. "source": {
  1226. "type": "git",
  1227. "url": "https://github.com/doctrine/deprecations.git",
  1228. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  1229. },
  1230. "dist": {
  1231. "type": "zip",
  1232. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  1233. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  1234. "shasum": ""
  1235. },
  1236. "require": {
  1237. "php": "^7.1 || ^8.0"
  1238. },
  1239. "require-dev": {
  1240. "doctrine/coding-standard": "^9",
  1241. "phpstan/phpstan": "1.4.10 || 1.10.15",
  1242. "phpstan/phpstan-phpunit": "^1.0",
  1243. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1244. "psalm/plugin-phpunit": "0.18.4",
  1245. "psr/log": "^1 || ^2 || ^3",
  1246. "vimeo/psalm": "4.30.0 || 5.12.0"
  1247. },
  1248. "suggest": {
  1249. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1250. },
  1251. "type": "library",
  1252. "autoload": {
  1253. "psr-4": {
  1254. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1255. }
  1256. },
  1257. "notification-url": "https://packagist.org/downloads/",
  1258. "license": [
  1259. "MIT"
  1260. ],
  1261. "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.",
  1262. "homepage": "https://www.doctrine-project.org/",
  1263. "support": {
  1264. "issues": "https://github.com/doctrine/deprecations/issues",
  1265. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  1266. },
  1267. "time": "2024-01-30T19:34:25+00:00"
  1268. },
  1269. {
  1270. "name": "doctrine/lexer",
  1271. "version": "2.1.1",
  1272. "source": {
  1273. "type": "git",
  1274. "url": "https://github.com/doctrine/lexer.git",
  1275. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  1276. },
  1277. "dist": {
  1278. "type": "zip",
  1279. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1280. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1281. "shasum": ""
  1282. },
  1283. "require": {
  1284. "doctrine/deprecations": "^1.0",
  1285. "php": "^7.1 || ^8.0"
  1286. },
  1287. "require-dev": {
  1288. "doctrine/coding-standard": "^9 || ^12",
  1289. "phpstan/phpstan": "^1.3",
  1290. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  1291. "psalm/plugin-phpunit": "^0.18.3",
  1292. "vimeo/psalm": "^4.11 || ^5.21"
  1293. },
  1294. "type": "library",
  1295. "autoload": {
  1296. "psr-4": {
  1297. "Doctrine\\Common\\Lexer\\": "src"
  1298. }
  1299. },
  1300. "notification-url": "https://packagist.org/downloads/",
  1301. "license": [
  1302. "MIT"
  1303. ],
  1304. "authors": [
  1305. {
  1306. "name": "Guilherme Blanco",
  1307. "email": "guilhermeblanco@gmail.com"
  1308. },
  1309. {
  1310. "name": "Roman Borschel",
  1311. "email": "roman@code-factory.org"
  1312. },
  1313. {
  1314. "name": "Johannes Schmitt",
  1315. "email": "schmittjoh@gmail.com"
  1316. }
  1317. ],
  1318. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1319. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1320. "keywords": [
  1321. "annotations",
  1322. "docblock",
  1323. "lexer",
  1324. "parser",
  1325. "php"
  1326. ],
  1327. "support": {
  1328. "issues": "https://github.com/doctrine/lexer/issues",
  1329. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  1330. },
  1331. "funding": [
  1332. {
  1333. "url": "https://www.doctrine-project.org/sponsorship.html",
  1334. "type": "custom"
  1335. },
  1336. {
  1337. "url": "https://www.patreon.com/phpdoctrine",
  1338. "type": "patreon"
  1339. },
  1340. {
  1341. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1342. "type": "tidelift"
  1343. }
  1344. ],
  1345. "time": "2024-02-05T11:35:39+00:00"
  1346. },
  1347. {
  1348. "name": "drupal/address",
  1349. "version": "2.0.1",
  1350. "source": {
  1351. "type": "git",
  1352. "url": "https://git.drupalcode.org/project/address.git",
  1353. "reference": "2.0.1"
  1354. },
  1355. "dist": {
  1356. "type": "zip",
  1357. "url": "https://ftp.drupal.org/files/projects/address-2.0.1.zip",
  1358. "reference": "2.0.1",
  1359. "shasum": "47e166dc46b1a2e17470738e8321bc20fa9e8e24"
  1360. },
  1361. "require": {
  1362. "commerceguys/addressing": "^2.1.1",
  1363. "drupal/core": "^9.5 || ^10",
  1364. "php": "^8.0"
  1365. },
  1366. "require-dev": {
  1367. "drupal/diff": "^1",
  1368. "drupal/feeds": "^3",
  1369. "drupal/token": "^1"
  1370. },
  1371. "type": "drupal-module",
  1372. "extra": {
  1373. "drupal": {
  1374. "version": "2.0.1",
  1375. "datestamp": "1708373992",
  1376. "security-coverage": {
  1377. "status": "covered",
  1378. "message": "Covered by Drupal's security advisory policy"
  1379. }
  1380. }
  1381. },
  1382. "notification-url": "https://packages.drupal.org/8/downloads",
  1383. "license": [
  1384. "GPL-2.0-or-later"
  1385. ],
  1386. "authors": [
  1387. {
  1388. "name": "bojanz",
  1389. "homepage": "https://www.drupal.org/user/86106"
  1390. },
  1391. {
  1392. "name": "Centarro",
  1393. "homepage": "https://www.drupal.org/user/3661446"
  1394. },
  1395. {
  1396. "name": "dww",
  1397. "homepage": "https://www.drupal.org/user/46549"
  1398. },
  1399. {
  1400. "name": "jsacksick",
  1401. "homepage": "https://www.drupal.org/user/972218"
  1402. },
  1403. {
  1404. "name": "rszrama",
  1405. "homepage": "https://www.drupal.org/user/49344"
  1406. }
  1407. ],
  1408. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  1409. "homepage": "http://drupal.org/project/address",
  1410. "support": {
  1411. "source": "https://git.drupalcode.org/project/address"
  1412. }
  1413. },
  1414. {
  1415. "name": "drupal/address_map_link",
  1416. "version": "1.4.0",
  1417. "source": {
  1418. "type": "git",
  1419. "url": "https://git.drupalcode.org/project/address_map_link.git",
  1420. "reference": "8.x-1.4"
  1421. },
  1422. "dist": {
  1423. "type": "zip",
  1424. "url": "https://ftp.drupal.org/files/projects/address_map_link-8.x-1.4.zip",
  1425. "reference": "8.x-1.4",
  1426. "shasum": "854c86a4e4ac6ef492e502659acf8eed89e56058"
  1427. },
  1428. "require": {
  1429. "drupal/address": "^1.0 || ^2.0",
  1430. "drupal/core": "^9.2 || ^10",
  1431. "php": "^7.3 || ^8.0"
  1432. },
  1433. "type": "drupal-module",
  1434. "extra": {
  1435. "drupal": {
  1436. "version": "8.x-1.4",
  1437. "datestamp": "1708441555",
  1438. "security-coverage": {
  1439. "status": "covered",
  1440. "message": "Covered by Drupal's security advisory policy"
  1441. }
  1442. }
  1443. },
  1444. "notification-url": "https://packages.drupal.org/8/downloads",
  1445. "license": [
  1446. "GPL-2.0-or-later"
  1447. ],
  1448. "authors": [
  1449. {
  1450. "name": "Chris Snyder",
  1451. "homepage": "https://www.drupal.org/u/chrissnyder",
  1452. "email": "chris@chrissnyder.org",
  1453. "role": "Maintainer"
  1454. }
  1455. ],
  1456. "description": "Provides a link to an external mapping site for an address field.",
  1457. "homepage": "https://www.drupal.org/project/address_map_link",
  1458. "keywords": [
  1459. "Drupal"
  1460. ],
  1461. "support": {
  1462. "source": "https://cgit.drupalcode.org/address_map_link",
  1463. "issues": "https://www.drupal.org/project/issues/address_map_link"
  1464. }
  1465. },
  1466. {
  1467. "name": "drupal/admin_toolbar",
  1468. "version": "3.4.2",
  1469. "source": {
  1470. "type": "git",
  1471. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1472. "reference": "3.4.2"
  1473. },
  1474. "dist": {
  1475. "type": "zip",
  1476. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.4.2.zip",
  1477. "reference": "3.4.2",
  1478. "shasum": "f5a008e5c73f5a11c6c8067c0ea6ebb76aa33854"
  1479. },
  1480. "require": {
  1481. "drupal/core": "^9.2 || ^10"
  1482. },
  1483. "require-dev": {
  1484. "drupal/admin_toolbar_tools": "*"
  1485. },
  1486. "type": "drupal-module",
  1487. "extra": {
  1488. "drupal": {
  1489. "version": "3.4.2",
  1490. "datestamp": "1696006195",
  1491. "security-coverage": {
  1492. "status": "covered",
  1493. "message": "Covered by Drupal's security advisory policy"
  1494. }
  1495. }
  1496. },
  1497. "notification-url": "https://packages.drupal.org/8/downloads",
  1498. "license": [
  1499. "GPL-2.0-or-later"
  1500. ],
  1501. "authors": [
  1502. {
  1503. "name": "Wilfrid Roze (eme)",
  1504. "homepage": "https://www.drupal.org/u/eme",
  1505. "role": "Maintainer"
  1506. },
  1507. {
  1508. "name": "Romain Jarraud (romainj)",
  1509. "homepage": "https://www.drupal.org/u/romainj",
  1510. "role": "Maintainer"
  1511. },
  1512. {
  1513. "name": "Adrian Cid Almaguer (adriancid)",
  1514. "homepage": "https://www.drupal.org/u/adriancid",
  1515. "email": "adriancid@gmail.com",
  1516. "role": "Maintainer"
  1517. },
  1518. {
  1519. "name": "Mohamed Anis Taktak (matio89)",
  1520. "homepage": "https://www.drupal.org/u/matio89",
  1521. "role": "Maintainer"
  1522. },
  1523. {
  1524. "name": "matio89",
  1525. "homepage": "https://www.drupal.org/user/2320090"
  1526. },
  1527. {
  1528. "name": "Musa.thomas",
  1529. "homepage": "https://www.drupal.org/user/1213824"
  1530. },
  1531. {
  1532. "name": "romainj",
  1533. "homepage": "https://www.drupal.org/user/370706"
  1534. }
  1535. ],
  1536. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1537. "homepage": "http://drupal.org/project/admin_toolbar",
  1538. "keywords": [
  1539. "Drupal",
  1540. "Toolbar"
  1541. ],
  1542. "support": {
  1543. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1544. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1545. }
  1546. },
  1547. {
  1548. "name": "drupal/adminimal_theme",
  1549. "version": "1.7.0",
  1550. "source": {
  1551. "type": "git",
  1552. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1553. "reference": "8.x-1.7"
  1554. },
  1555. "dist": {
  1556. "type": "zip",
  1557. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.7.zip",
  1558. "reference": "8.x-1.7",
  1559. "shasum": "0fe020fecab6a1f6d877f2e622fb9f916ada52bb"
  1560. },
  1561. "require": {
  1562. "drupal/core": "^9.3 || ^10",
  1563. "drupal/seven": "~1.0"
  1564. },
  1565. "type": "drupal-theme",
  1566. "extra": {
  1567. "drupal": {
  1568. "version": "8.x-1.7",
  1569. "datestamp": "1691504486",
  1570. "security-coverage": {
  1571. "status": "covered",
  1572. "message": "Covered by Drupal's security advisory policy"
  1573. }
  1574. }
  1575. },
  1576. "notification-url": "https://packages.drupal.org/8/downloads",
  1577. "license": [
  1578. "GPL-2.0+"
  1579. ],
  1580. "authors": [
  1581. {
  1582. "name": "ANDiTKO",
  1583. "homepage": "https://www.drupal.org/user/1428124"
  1584. },
  1585. {
  1586. "name": "andrey.troeglazov",
  1587. "homepage": "https://www.drupal.org/user/3145389"
  1588. },
  1589. {
  1590. "name": "realityloop",
  1591. "homepage": "https://www.drupal.org/user/139189"
  1592. },
  1593. {
  1594. "name": "rjjakes",
  1595. "homepage": "https://www.drupal.org/user/3457245"
  1596. }
  1597. ],
  1598. "description": "Drupal administration theme with modern minimalist design.",
  1599. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1600. "support": {
  1601. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1602. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1603. }
  1604. },
  1605. {
  1606. "name": "drupal/audiofield",
  1607. "version": "1.13.0",
  1608. "source": {
  1609. "type": "git",
  1610. "url": "https://git.drupalcode.org/project/audiofield.git",
  1611. "reference": "8.x-1.13"
  1612. },
  1613. "dist": {
  1614. "type": "zip",
  1615. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  1616. "reference": "8.x-1.13",
  1617. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  1618. },
  1619. "require": {
  1620. "drupal/core": "^8 || ^9 || ^10"
  1621. },
  1622. "type": "drupal-module",
  1623. "extra": {
  1624. "drupal": {
  1625. "version": "8.x-1.13",
  1626. "datestamp": "1681143245",
  1627. "security-coverage": {
  1628. "status": "covered",
  1629. "message": "Covered by Drupal's security advisory policy"
  1630. }
  1631. },
  1632. "drush": {
  1633. "services": {
  1634. "drush.services.yml": "^9"
  1635. }
  1636. }
  1637. },
  1638. "notification-url": "https://packages.drupal.org/8/downloads",
  1639. "license": [
  1640. "GPL-2.0-or-later"
  1641. ],
  1642. "authors": [
  1643. {
  1644. "name": "Daniel Moberly",
  1645. "homepage": "https://www.drupal.org/u/danielmoberly",
  1646. "role": "Maintainer"
  1647. },
  1648. {
  1649. "name": "tamerzg",
  1650. "homepage": "https://www.drupal.org/user/464564"
  1651. }
  1652. ],
  1653. "description": "AudioField Module",
  1654. "homepage": "https://www.drupal.org/project/audiofield",
  1655. "support": {
  1656. "source": "https://git.drupalcode.org/project/audiofield",
  1657. "issues": "https://www.drupal.org/project/issues/audiofield"
  1658. }
  1659. },
  1660. {
  1661. "name": "drupal/backup_migrate",
  1662. "version": "5.0.3",
  1663. "source": {
  1664. "type": "git",
  1665. "url": "https://git.drupalcode.org/project/backup_migrate.git",
  1666. "reference": "5.0.3"
  1667. },
  1668. "dist": {
  1669. "type": "zip",
  1670. "url": "https://ftp.drupal.org/files/projects/backup_migrate-5.0.3.zip",
  1671. "reference": "5.0.3",
  1672. "shasum": "bc263f601f7a21248d4000a372d04a417df7e326"
  1673. },
  1674. "require": {
  1675. "drupal/core": "^9.3 || ^10"
  1676. },
  1677. "suggest": {
  1678. "defuse/php-encryption": "Optional encryption of saved backups."
  1679. },
  1680. "type": "drupal-module",
  1681. "extra": {
  1682. "drupal": {
  1683. "version": "5.0.3",
  1684. "datestamp": "1671366510",
  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-or-later"
  1694. ],
  1695. "authors": [
  1696. {
  1697. "name": "See contributors",
  1698. "homepage": "https://www.drupal.org/node/189065/committers",
  1699. "role": "Developer"
  1700. },
  1701. {
  1702. "name": "DamienMcKenna",
  1703. "homepage": "https://www.drupal.org/user/108450"
  1704. },
  1705. {
  1706. "name": "dgorton",
  1707. "homepage": "https://www.drupal.org/user/19044"
  1708. },
  1709. {
  1710. "name": "ikit-claw",
  1711. "homepage": "https://www.drupal.org/user/3285813"
  1712. },
  1713. {
  1714. "name": "ronan",
  1715. "homepage": "https://www.drupal.org/user/72815"
  1716. }
  1717. ],
  1718. "description": "Backup and Migrate Drupal Module",
  1719. "homepage": "https://www.drupal.org/project/backup_migrate",
  1720. "support": {
  1721. "source": "https://git.drupalcode.org/project/backup_migrate",
  1722. "issues": "https://www.drupal.org/project/issues/backup_migrate",
  1723. "slack": "https://drupal.slack.com/messages/C7C4M4QJV/details/"
  1724. }
  1725. },
  1726. {
  1727. "name": "drupal/charts",
  1728. "version": "5.0.11",
  1729. "source": {
  1730. "type": "git",
  1731. "url": "https://git.drupalcode.org/project/charts.git",
  1732. "reference": "5.0.11"
  1733. },
  1734. "dist": {
  1735. "type": "zip",
  1736. "url": "https://ftp.drupal.org/files/projects/charts-5.0.11.zip",
  1737. "reference": "5.0.11",
  1738. "shasum": "fcffd70c4bbaf74809528993ed42ad0fb6db2b75"
  1739. },
  1740. "require": {
  1741. "drupal/core": "^9.2 || ^10"
  1742. },
  1743. "type": "drupal-module",
  1744. "extra": {
  1745. "drupal": {
  1746. "version": "5.0.11",
  1747. "datestamp": "1706650372",
  1748. "security-coverage": {
  1749. "status": "covered",
  1750. "message": "Covered by Drupal's security advisory policy"
  1751. }
  1752. }
  1753. },
  1754. "notification-url": "https://packages.drupal.org/8/downloads",
  1755. "license": [
  1756. "GPL-2.0-or-later"
  1757. ],
  1758. "authors": [
  1759. {
  1760. "name": "andileco",
  1761. "homepage": "https://www.drupal.org/user/2054544"
  1762. },
  1763. {
  1764. "name": "nikathone",
  1765. "homepage": "https://www.drupal.org/user/2421800"
  1766. },
  1767. {
  1768. "name": "quicksketch",
  1769. "homepage": "https://www.drupal.org/user/35821"
  1770. }
  1771. ],
  1772. "description": "A charting API for Drupal that provides chart elements and integration with Views.",
  1773. "homepage": "https://www.drupal.org/project/charts",
  1774. "support": {
  1775. "source": "https://git.drupalcode.org/project/charts"
  1776. }
  1777. },
  1778. {
  1779. "name": "drupal/core",
  1780. "version": "10.2.3",
  1781. "source": {
  1782. "type": "git",
  1783. "url": "https://github.com/drupal/core.git",
  1784. "reference": "cc8c7952f7013795b735f5c15290e76937163bb7"
  1785. },
  1786. "dist": {
  1787. "type": "zip",
  1788. "url": "https://api.github.com/repos/drupal/core/zipball/cc8c7952f7013795b735f5c15290e76937163bb7",
  1789. "reference": "cc8c7952f7013795b735f5c15290e76937163bb7",
  1790. "shasum": ""
  1791. },
  1792. "require": {
  1793. "asm89/stack-cors": "^2.1",
  1794. "composer-runtime-api": "^2.1",
  1795. "composer/semver": "^3.3",
  1796. "doctrine/annotations": "^1.14",
  1797. "egulias/email-validator": "^3.2.1|^4.0",
  1798. "ext-date": "*",
  1799. "ext-dom": "*",
  1800. "ext-filter": "*",
  1801. "ext-gd": "*",
  1802. "ext-hash": "*",
  1803. "ext-json": "*",
  1804. "ext-pcre": "*",
  1805. "ext-pdo": "*",
  1806. "ext-session": "*",
  1807. "ext-simplexml": "*",
  1808. "ext-spl": "*",
  1809. "ext-tokenizer": "*",
  1810. "ext-xml": "*",
  1811. "guzzlehttp/guzzle": "^7.5",
  1812. "guzzlehttp/psr7": "^2.4.5",
  1813. "masterminds/html5": "^2.7",
  1814. "mck89/peast": "^1.14",
  1815. "pear/archive_tar": "^1.4.14",
  1816. "php": ">=8.1.0",
  1817. "psr/log": "^3.0",
  1818. "sebastian/diff": "^4",
  1819. "symfony/console": "^6.4",
  1820. "symfony/dependency-injection": "^6.4",
  1821. "symfony/event-dispatcher": "^6.4",
  1822. "symfony/filesystem": "^6.4",
  1823. "symfony/finder": "^6.4",
  1824. "symfony/http-foundation": "^6.4",
  1825. "symfony/http-kernel": "^6.4",
  1826. "symfony/mailer": "^6.4",
  1827. "symfony/mime": "^6.4",
  1828. "symfony/polyfill-iconv": "^1.26",
  1829. "symfony/process": "^6.4",
  1830. "symfony/psr-http-message-bridge": "^2.1|^6.4",
  1831. "symfony/routing": "^6.4",
  1832. "symfony/serializer": "^6.4",
  1833. "symfony/validator": "^6.4",
  1834. "symfony/yaml": "^6.4",
  1835. "twig/twig": "^3.5.0"
  1836. },
  1837. "conflict": {
  1838. "drush/drush": "<12.4.3"
  1839. },
  1840. "replace": {
  1841. "drupal/core-annotation": "self.version",
  1842. "drupal/core-assertion": "self.version",
  1843. "drupal/core-class-finder": "self.version",
  1844. "drupal/core-datetime": "self.version",
  1845. "drupal/core-dependency-injection": "self.version",
  1846. "drupal/core-diff": "self.version",
  1847. "drupal/core-discovery": "self.version",
  1848. "drupal/core-event-dispatcher": "self.version",
  1849. "drupal/core-file-cache": "self.version",
  1850. "drupal/core-file-security": "self.version",
  1851. "drupal/core-filesystem": "self.version",
  1852. "drupal/core-front-matter": "self.version",
  1853. "drupal/core-gettext": "self.version",
  1854. "drupal/core-graph": "self.version",
  1855. "drupal/core-http-foundation": "self.version",
  1856. "drupal/core-php-storage": "self.version",
  1857. "drupal/core-plugin": "self.version",
  1858. "drupal/core-proxy-builder": "self.version",
  1859. "drupal/core-render": "self.version",
  1860. "drupal/core-serialization": "self.version",
  1861. "drupal/core-transliteration": "self.version",
  1862. "drupal/core-utility": "self.version",
  1863. "drupal/core-uuid": "self.version",
  1864. "drupal/core-version": "self.version"
  1865. },
  1866. "suggest": {
  1867. "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format."
  1868. },
  1869. "type": "drupal-core",
  1870. "extra": {
  1871. "drupal-scaffold": {
  1872. "file-mapping": {
  1873. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  1874. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  1875. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  1876. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  1877. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  1878. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  1879. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  1880. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  1881. "[web-root]/index.php": "assets/scaffold/files/index.php",
  1882. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  1883. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  1884. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  1885. "[web-root]/update.php": "assets/scaffold/files/update.php",
  1886. "[web-root]/web.config": "assets/scaffold/files/web.config",
  1887. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  1888. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  1889. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  1890. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  1891. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  1892. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  1893. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  1894. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  1895. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  1896. }
  1897. }
  1898. },
  1899. "autoload": {
  1900. "files": [
  1901. "includes/bootstrap.inc"
  1902. ],
  1903. "psr-4": {
  1904. "Drupal\\Core\\": "lib/Drupal/Core",
  1905. "Drupal\\Component\\": "lib/Drupal/Component"
  1906. },
  1907. "classmap": [
  1908. "lib/Drupal.php",
  1909. "lib/Drupal/Component/DependencyInjection/Container.php",
  1910. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  1911. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  1912. "lib/Drupal/Component/Utility/Timer.php",
  1913. "lib/Drupal/Component/Utility/Unicode.php",
  1914. "lib/Drupal/Core/Cache/Cache.php",
  1915. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  1916. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  1917. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  1918. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  1919. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  1920. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  1921. "lib/Drupal/Core/Database/Connection.php",
  1922. "lib/Drupal/Core/Database/Database.php",
  1923. "lib/Drupal/Core/Database/StatementInterface.php",
  1924. "lib/Drupal/Core/DependencyInjection/Container.php",
  1925. "lib/Drupal/Core/DrupalKernel.php",
  1926. "lib/Drupal/Core/DrupalKernelInterface.php",
  1927. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  1928. "lib/Drupal/Core/Site/Settings.php"
  1929. ]
  1930. },
  1931. "notification-url": "https://packagist.org/downloads/",
  1932. "license": [
  1933. "GPL-2.0-or-later"
  1934. ],
  1935. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  1936. "support": {
  1937. "source": "https://github.com/drupal/core/tree/10.2.3"
  1938. },
  1939. "time": "2024-02-07T22:44:48+00:00"
  1940. },
  1941. {
  1942. "name": "drupal/core-composer-scaffold",
  1943. "version": "10.2.3",
  1944. "source": {
  1945. "type": "git",
  1946. "url": "https://github.com/drupal/core-composer-scaffold.git",
  1947. "reference": "63effa1bc644e80a269e8b4415e627491d26fd3f"
  1948. },
  1949. "dist": {
  1950. "type": "zip",
  1951. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/63effa1bc644e80a269e8b4415e627491d26fd3f",
  1952. "reference": "63effa1bc644e80a269e8b4415e627491d26fd3f",
  1953. "shasum": ""
  1954. },
  1955. "require": {
  1956. "composer-plugin-api": "^2",
  1957. "php": ">=7.3.0"
  1958. },
  1959. "conflict": {
  1960. "drupal-composer/drupal-scaffold": "*"
  1961. },
  1962. "require-dev": {
  1963. "composer/composer": "^1.8@stable"
  1964. },
  1965. "type": "composer-plugin",
  1966. "extra": {
  1967. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  1968. "branch-alias": {
  1969. "dev-master": "1.0.x-dev"
  1970. }
  1971. },
  1972. "autoload": {
  1973. "psr-4": {
  1974. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  1975. }
  1976. },
  1977. "notification-url": "https://packagist.org/downloads/",
  1978. "license": [
  1979. "GPL-2.0-or-later"
  1980. ],
  1981. "description": "A flexible Composer project scaffold builder.",
  1982. "homepage": "https://www.drupal.org/project/drupal",
  1983. "keywords": [
  1984. "drupal"
  1985. ],
  1986. "support": {
  1987. "source": "https://github.com/drupal/core-composer-scaffold/tree/10.2.3"
  1988. },
  1989. "time": "2024-01-26T14:59:30+00:00"
  1990. },
  1991. {
  1992. "name": "drupal/core-project-message",
  1993. "version": "10.2.3",
  1994. "source": {
  1995. "type": "git",
  1996. "url": "https://github.com/drupal/core-project-message.git",
  1997. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8"
  1998. },
  1999. "dist": {
  2000. "type": "zip",
  2001. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  2002. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  2003. "shasum": ""
  2004. },
  2005. "require": {
  2006. "composer-plugin-api": "^2",
  2007. "php": ">=7.3.0"
  2008. },
  2009. "type": "composer-plugin",
  2010. "extra": {
  2011. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  2012. },
  2013. "autoload": {
  2014. "psr-4": {
  2015. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  2016. }
  2017. },
  2018. "notification-url": "https://packagist.org/downloads/",
  2019. "license": [
  2020. "GPL-2.0-or-later"
  2021. ],
  2022. "description": "Adds a message after Composer installation.",
  2023. "homepage": "https://www.drupal.org/project/drupal",
  2024. "keywords": [
  2025. "drupal"
  2026. ],
  2027. "support": {
  2028. "source": "https://github.com/drupal/core-project-message/tree/10.2.3"
  2029. },
  2030. "time": "2023-07-24T07:55:25+00:00"
  2031. },
  2032. {
  2033. "name": "drupal/core-recommended",
  2034. "version": "10.2.3",
  2035. "source": {
  2036. "type": "git",
  2037. "url": "https://github.com/drupal/core-recommended.git",
  2038. "reference": "ee5d148455ca5792108a1fd007ae162ea2ffe859"
  2039. },
  2040. "dist": {
  2041. "type": "zip",
  2042. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/ee5d148455ca5792108a1fd007ae162ea2ffe859",
  2043. "reference": "ee5d148455ca5792108a1fd007ae162ea2ffe859",
  2044. "shasum": ""
  2045. },
  2046. "require": {
  2047. "asm89/stack-cors": "~v2.2.0",
  2048. "composer/semver": "~3.4.0",
  2049. "doctrine/annotations": "~1.14.3",
  2050. "doctrine/deprecations": "~1.1.2",
  2051. "doctrine/lexer": "~2.1.0",
  2052. "drupal/core": "10.2.3",
  2053. "egulias/email-validator": "~4.0.2",
  2054. "guzzlehttp/guzzle": "~7.8.1",
  2055. "guzzlehttp/promises": "~2.0.2",
  2056. "guzzlehttp/psr7": "~2.6.2",
  2057. "masterminds/html5": "~2.8.1",
  2058. "mck89/peast": "~v1.15.4",
  2059. "pear/archive_tar": "~1.4.14",
  2060. "pear/console_getopt": "~v1.4.3",
  2061. "pear/pear-core-minimal": "~v1.10.14",
  2062. "pear/pear_exception": "~v1.0.2",
  2063. "psr/cache": "~3.0.0",
  2064. "psr/container": "~2.0.2",
  2065. "psr/event-dispatcher": "~1.0.0",
  2066. "psr/http-client": "~1.0.3",
  2067. "psr/http-factory": "~1.0.2",
  2068. "psr/log": "~3.0.0",
  2069. "ralouphie/getallheaders": "~3.0.3",
  2070. "sebastian/diff": "~4.0.5",
  2071. "symfony/console": "~v6.4.1",
  2072. "symfony/dependency-injection": "~v6.4.1",
  2073. "symfony/deprecation-contracts": "~v3.4.0",
  2074. "symfony/error-handler": "~v6.4.0",
  2075. "symfony/event-dispatcher": "~v6.4.0",
  2076. "symfony/event-dispatcher-contracts": "~v3.4.0",
  2077. "symfony/filesystem": "~v6.4.0",
  2078. "symfony/finder": "~v6.4.0",
  2079. "symfony/http-foundation": "~v6.4.0",
  2080. "symfony/http-kernel": "~v6.4.1",
  2081. "symfony/mailer": "~v6.4.0",
  2082. "symfony/mime": "~v6.4.0",
  2083. "symfony/polyfill-ctype": "~v1.28.0",
  2084. "symfony/polyfill-iconv": "~v1.28.0",
  2085. "symfony/polyfill-intl-grapheme": "~v1.28.0",
  2086. "symfony/polyfill-intl-idn": "~v1.28.0",
  2087. "symfony/polyfill-intl-normalizer": "~v1.28.0",
  2088. "symfony/polyfill-mbstring": "~v1.28.0",
  2089. "symfony/polyfill-php83": "~v1.28.0",
  2090. "symfony/process": "~v6.4.0",
  2091. "symfony/psr-http-message-bridge": "~v6.4.0",
  2092. "symfony/routing": "~v6.4.1",
  2093. "symfony/serializer": "~v6.4.1",
  2094. "symfony/service-contracts": "~v3.4.0",
  2095. "symfony/string": "~v6.4.0",
  2096. "symfony/translation-contracts": "~v3.4.0",
  2097. "symfony/validator": "~v6.4.0",
  2098. "symfony/var-dumper": "~v6.4.0",
  2099. "symfony/var-exporter": "~v6.4.1",
  2100. "symfony/yaml": "~v6.4.0",
  2101. "twig/twig": "~v3.8.0"
  2102. },
  2103. "conflict": {
  2104. "webflo/drupal-core-strict": "*"
  2105. },
  2106. "type": "metapackage",
  2107. "notification-url": "https://packagist.org/downloads/",
  2108. "license": [
  2109. "GPL-2.0-or-later"
  2110. ],
  2111. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  2112. "support": {
  2113. "source": "https://github.com/drupal/core-recommended/tree/10.2.3"
  2114. },
  2115. "time": "2024-02-07T22:44:48+00:00"
  2116. },
  2117. {
  2118. "name": "drupal/ctools",
  2119. "version": "4.0.4",
  2120. "source": {
  2121. "type": "git",
  2122. "url": "https://git.drupalcode.org/project/ctools.git",
  2123. "reference": "4.0.4"
  2124. },
  2125. "dist": {
  2126. "type": "zip",
  2127. "url": "https://ftp.drupal.org/files/projects/ctools-4.0.4.zip",
  2128. "reference": "4.0.4",
  2129. "shasum": "4a2474eb2fd525b2add2db0e855c135ba7f0fb70"
  2130. },
  2131. "require": {
  2132. "drupal/core": "^9.3 || ^10"
  2133. },
  2134. "type": "drupal-module",
  2135. "extra": {
  2136. "drupal": {
  2137. "version": "4.0.4",
  2138. "datestamp": "1684299878",
  2139. "security-coverage": {
  2140. "status": "covered",
  2141. "message": "Covered by Drupal's security advisory policy"
  2142. }
  2143. },
  2144. "branch-alias": {
  2145. "dev-8.x-3.x": "3.x-dev"
  2146. }
  2147. },
  2148. "notification-url": "https://packages.drupal.org/8/downloads",
  2149. "license": [
  2150. "GPL-2.0-or-later"
  2151. ],
  2152. "authors": [
  2153. {
  2154. "name": "Kris Vanderwater (EclipseGc)",
  2155. "homepage": "https://www.drupal.org/u/eclipsegc",
  2156. "role": "Maintainer"
  2157. },
  2158. {
  2159. "name": "Jakob Perry (japerry)",
  2160. "homepage": "https://www.drupal.org/u/japerry",
  2161. "role": "Maintainer"
  2162. },
  2163. {
  2164. "name": "Tim Plunkett (tim.plunkett)",
  2165. "homepage": "https://www.drupal.org/u/timplunkett",
  2166. "role": "Maintainer"
  2167. },
  2168. {
  2169. "name": "James Gilliland (neclimdul)",
  2170. "homepage": "https://www.drupal.org/u/neclimdul",
  2171. "role": "Maintainer"
  2172. },
  2173. {
  2174. "name": "Daniel Wehner (dawehner)",
  2175. "homepage": "https://www.drupal.org/u/dawehner",
  2176. "role": "Maintainer"
  2177. },
  2178. {
  2179. "name": "joelpittet",
  2180. "homepage": "https://www.drupal.org/user/160302"
  2181. },
  2182. {
  2183. "name": "merlinofchaos",
  2184. "homepage": "https://www.drupal.org/user/26979"
  2185. },
  2186. {
  2187. "name": "neclimdul",
  2188. "homepage": "https://www.drupal.org/user/48673"
  2189. },
  2190. {
  2191. "name": "sdboyer",
  2192. "homepage": "https://www.drupal.org/user/146719"
  2193. },
  2194. {
  2195. "name": "sun",
  2196. "homepage": "https://www.drupal.org/user/54136"
  2197. },
  2198. {
  2199. "name": "tim.plunkett",
  2200. "homepage": "https://www.drupal.org/user/241634"
  2201. }
  2202. ],
  2203. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  2204. "homepage": "https://www.drupal.org/project/ctools",
  2205. "support": {
  2206. "source": "https://git.drupalcode.org/project/ctools",
  2207. "issues": "https://www.drupal.org/project/issues/ctools"
  2208. }
  2209. },
  2210. {
  2211. "name": "drupal/entity_browser",
  2212. "version": "2.10.0",
  2213. "source": {
  2214. "type": "git",
  2215. "url": "https://git.drupalcode.org/project/entity_browser.git",
  2216. "reference": "8.x-2.10"
  2217. },
  2218. "dist": {
  2219. "type": "zip",
  2220. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.10.zip",
  2221. "reference": "8.x-2.10",
  2222. "shasum": "d52548ea66dc56108c2e211aeaff6e1cc0522e85"
  2223. },
  2224. "require": {
  2225. "drupal/core": "^9.5 || ^10"
  2226. },
  2227. "conflict": {
  2228. "drupal/media_entity": "1.*"
  2229. },
  2230. "require-dev": {
  2231. "drupal/ckeditor": "^1.0",
  2232. "drupal/embed": "^1.0",
  2233. "drupal/entity_embed": "^1.0",
  2234. "drupal/entity_reference_revisions": "^1.0",
  2235. "drupal/entityqueue": "^1.0",
  2236. "drupal/inline_entity_form": "^1.0@rc",
  2237. "drupal/paragraphs": "^1.0",
  2238. "drupal/token": "^1.0"
  2239. },
  2240. "type": "drupal-module",
  2241. "extra": {
  2242. "drupal": {
  2243. "version": "8.x-2.10",
  2244. "datestamp": "1702325310",
  2245. "security-coverage": {
  2246. "status": "covered",
  2247. "message": "Covered by Drupal's security advisory policy"
  2248. }
  2249. }
  2250. },
  2251. "notification-url": "https://packages.drupal.org/8/downloads",
  2252. "license": [
  2253. "GPL-2.0+"
  2254. ],
  2255. "authors": [
  2256. {
  2257. "name": "Janez Urevc",
  2258. "homepage": "https://github.com/slashrsm",
  2259. "role": "Maintainer"
  2260. },
  2261. {
  2262. "name": "Primoz Hmeljak",
  2263. "homepage": "https://github.com/primsi",
  2264. "role": "Maintainer"
  2265. },
  2266. {
  2267. "name": "See other contributors",
  2268. "homepage": "https://www.drupal.org/node/1943336/committers",
  2269. "role": "contributor"
  2270. },
  2271. {
  2272. "name": "Drupal Media Team",
  2273. "homepage": "https://www.drupal.org/user/3260690"
  2274. },
  2275. {
  2276. "name": "marcingy",
  2277. "homepage": "https://www.drupal.org/user/77320"
  2278. },
  2279. {
  2280. "name": "oknate",
  2281. "homepage": "https://www.drupal.org/user/471638"
  2282. },
  2283. {
  2284. "name": "Primsi",
  2285. "homepage": "https://www.drupal.org/user/282629"
  2286. },
  2287. {
  2288. "name": "samuel.mortenson",
  2289. "homepage": "https://www.drupal.org/user/2582268"
  2290. },
  2291. {
  2292. "name": "slashrsm",
  2293. "homepage": "https://www.drupal.org/user/744628"
  2294. }
  2295. ],
  2296. "description": "Entity browsing and selecting component.",
  2297. "homepage": "https://drupal.org/project/entity_browser",
  2298. "support": {
  2299. "source": "https://git.drupalcode.org/project/entity_browser",
  2300. "issues": "https://www.drupal.org/project/issues/entity_browser",
  2301. "irc": "irc://irc.freenode.org/drupal-contribute"
  2302. }
  2303. },
  2304. {
  2305. "name": "drupal/entity_browser_enhanced",
  2306. "version": "2.0.0",
  2307. "source": {
  2308. "type": "git",
  2309. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  2310. "reference": "2.0.0"
  2311. },
  2312. "dist": {
  2313. "type": "zip",
  2314. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-2.0.0.zip",
  2315. "reference": "2.0.0",
  2316. "shasum": "2880829c847c1c4b06092ab5335adb6ea960317b"
  2317. },
  2318. "require": {
  2319. "drupal/core": "^9 || ^10",
  2320. "drupal/entity_browser": "~2.0"
  2321. },
  2322. "type": "drupal-module",
  2323. "extra": {
  2324. "drupal": {
  2325. "version": "2.0.0",
  2326. "datestamp": "1697211243",
  2327. "security-coverage": {
  2328. "status": "covered",
  2329. "message": "Covered by Drupal's security advisory policy"
  2330. }
  2331. }
  2332. },
  2333. "notification-url": "https://packages.drupal.org/8/downloads",
  2334. "license": [
  2335. "GPL-2.0-or-later"
  2336. ],
  2337. "authors": [
  2338. {
  2339. "name": "Vardot",
  2340. "homepage": "https://www.drupal.org/vardot",
  2341. "role": "Maintainer"
  2342. },
  2343. {
  2344. "name": "Rajab Natshah",
  2345. "homepage": "https://www.drupal.org/user/1414312"
  2346. }
  2347. ],
  2348. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  2349. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  2350. "support": {
  2351. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  2352. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  2353. }
  2354. },
  2355. {
  2356. "name": "drupal/entity_reference_revisions",
  2357. "version": "1.11.0",
  2358. "source": {
  2359. "type": "git",
  2360. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  2361. "reference": "8.x-1.11"
  2362. },
  2363. "dist": {
  2364. "type": "zip",
  2365. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.11.zip",
  2366. "reference": "8.x-1.11",
  2367. "shasum": "de21cbb0d8a0344dc3496addcad4ed536747cec5"
  2368. },
  2369. "require": {
  2370. "drupal/core": "^9 || ^10"
  2371. },
  2372. "require-dev": {
  2373. "drupal/diff": "1.x-dev"
  2374. },
  2375. "type": "drupal-module",
  2376. "extra": {
  2377. "drupal": {
  2378. "version": "8.x-1.11",
  2379. "datestamp": "1705140721",
  2380. "security-coverage": {
  2381. "status": "covered",
  2382. "message": "Covered by Drupal's security advisory policy"
  2383. }
  2384. },
  2385. "drush": {
  2386. "services": {
  2387. "drush.services.yml": "^9 || ^10 || ^11"
  2388. }
  2389. }
  2390. },
  2391. "notification-url": "https://packages.drupal.org/8/downloads",
  2392. "license": [
  2393. "GPL-2.0-or-later"
  2394. ],
  2395. "authors": [
  2396. {
  2397. "name": "Berdir",
  2398. "homepage": "https://www.drupal.org/user/214652"
  2399. },
  2400. {
  2401. "name": "Frans",
  2402. "homepage": "https://www.drupal.org/user/514222"
  2403. },
  2404. {
  2405. "name": "jeroen.b",
  2406. "homepage": "https://www.drupal.org/user/1853532"
  2407. },
  2408. {
  2409. "name": "miro_dietiker",
  2410. "homepage": "https://www.drupal.org/user/227761"
  2411. }
  2412. ],
  2413. "description": "Entity Reference Revisions",
  2414. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  2415. "support": {
  2416. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  2417. }
  2418. },
  2419. {
  2420. "name": "drupal/field_group",
  2421. "version": "3.4.0",
  2422. "source": {
  2423. "type": "git",
  2424. "url": "https://git.drupalcode.org/project/field_group.git",
  2425. "reference": "8.x-3.4"
  2426. },
  2427. "dist": {
  2428. "type": "zip",
  2429. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.4.zip",
  2430. "reference": "8.x-3.4",
  2431. "shasum": "80b937e1a11f8b29c69d853fc4bf798c057c6f94"
  2432. },
  2433. "require": {
  2434. "drupal/core": "^9.2 || ^10"
  2435. },
  2436. "type": "drupal-module",
  2437. "extra": {
  2438. "drupal": {
  2439. "version": "8.x-3.4",
  2440. "datestamp": "1667241979",
  2441. "security-coverage": {
  2442. "status": "covered",
  2443. "message": "Covered by Drupal's security advisory policy"
  2444. }
  2445. }
  2446. },
  2447. "notification-url": "https://packages.drupal.org/8/downloads",
  2448. "license": [
  2449. "GPL-2.0-or-later"
  2450. ],
  2451. "authors": [
  2452. {
  2453. "name": "Anybody",
  2454. "homepage": "https://www.drupal.org/user/291091"
  2455. },
  2456. {
  2457. "name": "Hydra",
  2458. "homepage": "https://www.drupal.org/user/647364"
  2459. },
  2460. {
  2461. "name": "jyve",
  2462. "homepage": "https://www.drupal.org/user/591438"
  2463. },
  2464. {
  2465. "name": "nils.destoop",
  2466. "homepage": "https://www.drupal.org/user/361625"
  2467. },
  2468. {
  2469. "name": "Stalski",
  2470. "homepage": "https://www.drupal.org/user/322618"
  2471. },
  2472. {
  2473. "name": "swentel",
  2474. "homepage": "https://www.drupal.org/user/107403"
  2475. }
  2476. ],
  2477. "description": "Provides the field_group module.",
  2478. "homepage": "https://www.drupal.org/project/field_group",
  2479. "support": {
  2480. "source": "https://git.drupalcode.org/project/field_group",
  2481. "issues": "https://www.drupal.org/project/issues/field_group"
  2482. }
  2483. },
  2484. {
  2485. "name": "drupal/field_pager",
  2486. "version": "2.0.0-beta2",
  2487. "source": {
  2488. "type": "git",
  2489. "url": "https://git.drupalcode.org/project/field_pager.git",
  2490. "reference": "2.0.0-beta2"
  2491. },
  2492. "dist": {
  2493. "type": "zip",
  2494. "url": "https://ftp.drupal.org/files/projects/field_pager-2.0.0-beta2.zip",
  2495. "reference": "2.0.0-beta2",
  2496. "shasum": "33a7589e908c5b86b928e8e0e4bb562d7337dc15"
  2497. },
  2498. "require": {
  2499. "drupal/core": "^8 || ^9 || ^10"
  2500. },
  2501. "type": "drupal-module",
  2502. "extra": {
  2503. "drupal": {
  2504. "version": "2.0.0-beta2",
  2505. "datestamp": "1678960516",
  2506. "security-coverage": {
  2507. "status": "not-covered",
  2508. "message": "Project has not opted into security advisory coverage!"
  2509. }
  2510. }
  2511. },
  2512. "notification-url": "https://packages.drupal.org/8/downloads",
  2513. "license": [
  2514. "GPL-2.0-or-later"
  2515. ],
  2516. "authors": [
  2517. {
  2518. "name": "NuWans",
  2519. "homepage": "https://www.drupal.org/user/3250178"
  2520. }
  2521. ],
  2522. "description": "Field Pager (field_pager) To use fields as multiple pages",
  2523. "homepage": "https://www.drupal.org/project/field_pager",
  2524. "support": {
  2525. "source": "https://git.drupalcode.org/project/field_pager"
  2526. }
  2527. },
  2528. {
  2529. "name": "drupal/field_token_value",
  2530. "version": "3.0.2",
  2531. "source": {
  2532. "type": "git",
  2533. "url": "https://git.drupalcode.org/project/field_token_value.git",
  2534. "reference": "3.0.2"
  2535. },
  2536. "dist": {
  2537. "type": "zip",
  2538. "url": "https://ftp.drupal.org/files/projects/field_token_value-3.0.2.zip",
  2539. "reference": "3.0.2",
  2540. "shasum": "91ad476dd57a95086fa51fbc8fa0eb6a1b99f1ad"
  2541. },
  2542. "require": {
  2543. "drupal/core": "^8 || ^9 || ^10",
  2544. "drupal/token": "*"
  2545. },
  2546. "type": "drupal-module",
  2547. "extra": {
  2548. "drupal": {
  2549. "version": "3.0.2",
  2550. "datestamp": "1696584829",
  2551. "security-coverage": {
  2552. "status": "covered",
  2553. "message": "Covered by Drupal's security advisory policy"
  2554. }
  2555. }
  2556. },
  2557. "notification-url": "https://packages.drupal.org/8/downloads",
  2558. "license": [
  2559. "GPL-2.0-or-later"
  2560. ],
  2561. "authors": [
  2562. {
  2563. "name": "haydent",
  2564. "homepage": "https://www.drupal.org/user/2763191"
  2565. }
  2566. ],
  2567. "description": "Provides a field allowing the value to be set using a string containing tokens.",
  2568. "homepage": "https://www.drupal.org/project/field_token_value",
  2569. "support": {
  2570. "source": "https://git.drupalcode.org/project/field_token_value"
  2571. }
  2572. },
  2573. {
  2574. "name": "drupal/geolocation",
  2575. "version": "3.12.0",
  2576. "source": {
  2577. "type": "git",
  2578. "url": "https://git.drupalcode.org/project/geolocation.git",
  2579. "reference": "8.x-3.12"
  2580. },
  2581. "dist": {
  2582. "type": "zip",
  2583. "url": "https://ftp.drupal.org/files/projects/geolocation-8.x-3.12.zip",
  2584. "reference": "8.x-3.12",
  2585. "shasum": "eb31fe9080e2e0dcf442fc9b0a859f326219db5a"
  2586. },
  2587. "require": {
  2588. "drupal/core": "^9.3 || ^10",
  2589. "drupal/jquery_ui": "*",
  2590. "drupal/jquery_ui_autocomplete": "^2.0",
  2591. "php": "^7.3 || ^8.0"
  2592. },
  2593. "require-dev": {
  2594. "drupal/address": "*",
  2595. "drupal/geofield": "*",
  2596. "drupal/geolocation_demo": "*",
  2597. "drupal/geolocation_geometry": "*",
  2598. "drupal/geolocation_geometry_data": "*",
  2599. "drupal/geolocation_google_maps": "*",
  2600. "drupal/geolocation_google_maps_demo": "*",
  2601. "drupal/geolocation_google_static_maps": "*",
  2602. "drupal/geolocation_leaflet": "*",
  2603. "drupal/geolocation_leaflet_demo": "*",
  2604. "drupal/search_api": "*",
  2605. "drupal/search_api_location": "*",
  2606. "drupal/search_api_location_views": "*"
  2607. },
  2608. "type": "drupal-module",
  2609. "extra": {
  2610. "drupal": {
  2611. "version": "8.x-3.12",
  2612. "datestamp": "1673282362",
  2613. "security-coverage": {
  2614. "status": "covered",
  2615. "message": "Covered by Drupal's security advisory policy"
  2616. }
  2617. }
  2618. },
  2619. "notification-url": "https://packages.drupal.org/8/downloads",
  2620. "license": [
  2621. "GPL-2.0-or-later"
  2622. ],
  2623. "authors": [
  2624. {
  2625. "name": "derjochenmeyer",
  2626. "homepage": "https://www.drupal.org/u/derjochenmeyer"
  2627. },
  2628. {
  2629. "name": "cadamski",
  2630. "homepage": "https://www.drupal.org/u/cadamski"
  2631. }
  2632. ],
  2633. "description": "Provides a simple geolocation Drupal field type to store and display location data (lat, lng).",
  2634. "homepage": "https://www.drupal.org/project/geolocation",
  2635. "support": {
  2636. "source": "https://git.drupal.org/project/geolocation.git",
  2637. "issues": "https://www.drupal.org/project/issues/geolocation"
  2638. }
  2639. },
  2640. {
  2641. "name": "drupal/jquery_ui",
  2642. "version": "1.6.0",
  2643. "source": {
  2644. "type": "git",
  2645. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  2646. "reference": "8.x-1.6"
  2647. },
  2648. "dist": {
  2649. "type": "zip",
  2650. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.6.zip",
  2651. "reference": "8.x-1.6",
  2652. "shasum": "0ddccdcf35a066de1843e1d9670677ee1a2faac0"
  2653. },
  2654. "require": {
  2655. "drupal/core": "^9.2 || ^10"
  2656. },
  2657. "type": "drupal-module",
  2658. "extra": {
  2659. "drupal": {
  2660. "version": "8.x-1.6",
  2661. "datestamp": "1668521197",
  2662. "security-coverage": {
  2663. "status": "covered",
  2664. "message": "Covered by Drupal's security advisory policy"
  2665. }
  2666. }
  2667. },
  2668. "notification-url": "https://packages.drupal.org/8/downloads",
  2669. "license": [
  2670. "GPL-2.0-or-later"
  2671. ],
  2672. "authors": [
  2673. {
  2674. "name": "bnjmnm",
  2675. "homepage": "https://www.drupal.org/user/2369194"
  2676. },
  2677. {
  2678. "name": "jjeff",
  2679. "homepage": "https://www.drupal.org/user/17190"
  2680. },
  2681. {
  2682. "name": "lauriii",
  2683. "homepage": "https://www.drupal.org/user/1078742"
  2684. },
  2685. {
  2686. "name": "litwol",
  2687. "homepage": "https://www.drupal.org/user/78134"
  2688. },
  2689. {
  2690. "name": "mfb",
  2691. "homepage": "https://www.drupal.org/user/12302"
  2692. },
  2693. {
  2694. "name": "mfer",
  2695. "homepage": "https://www.drupal.org/user/25701"
  2696. },
  2697. {
  2698. "name": "mikelutz",
  2699. "homepage": "https://www.drupal.org/user/2972409"
  2700. },
  2701. {
  2702. "name": "nod_",
  2703. "homepage": "https://www.drupal.org/user/598310"
  2704. },
  2705. {
  2706. "name": "phenaproxima",
  2707. "homepage": "https://www.drupal.org/user/205645"
  2708. },
  2709. {
  2710. "name": "RobLoach",
  2711. "homepage": "https://www.drupal.org/user/61114"
  2712. },
  2713. {
  2714. "name": "sun",
  2715. "homepage": "https://www.drupal.org/user/54136"
  2716. },
  2717. {
  2718. "name": "webchick",
  2719. "homepage": "https://www.drupal.org/user/24967"
  2720. },
  2721. {
  2722. "name": "Wim Leers",
  2723. "homepage": "https://www.drupal.org/user/99777"
  2724. },
  2725. {
  2726. "name": "zrpnr",
  2727. "homepage": "https://www.drupal.org/user/1448368"
  2728. }
  2729. ],
  2730. "description": "Provides jQuery UI library.",
  2731. "homepage": "https://www.drupal.org/project/jquery_ui",
  2732. "support": {
  2733. "source": "https://git.drupalcode.org/project/jquery_ui"
  2734. }
  2735. },
  2736. {
  2737. "name": "drupal/jquery_ui_autocomplete",
  2738. "version": "2.0.0",
  2739. "source": {
  2740. "type": "git",
  2741. "url": "https://git.drupalcode.org/project/jquery_ui_autocomplete.git",
  2742. "reference": "2.0.0"
  2743. },
  2744. "dist": {
  2745. "type": "zip",
  2746. "url": "https://ftp.drupal.org/files/projects/jquery_ui_autocomplete-2.0.0.zip",
  2747. "reference": "2.0.0",
  2748. "shasum": "927d312a74002f99e1c971d3d268be1b0a532fc7"
  2749. },
  2750. "require": {
  2751. "drupal/core": "^9.2 || ^10",
  2752. "drupal/jquery_ui": "^1.6",
  2753. "drupal/jquery_ui_menu": "^2"
  2754. },
  2755. "type": "drupal-module",
  2756. "extra": {
  2757. "drupal": {
  2758. "version": "2.0.0",
  2759. "datestamp": "1670871461",
  2760. "security-coverage": {
  2761. "status": "covered",
  2762. "message": "Covered by Drupal's security advisory policy"
  2763. }
  2764. }
  2765. },
  2766. "notification-url": "https://packages.drupal.org/8/downloads",
  2767. "license": [
  2768. "GPL-2.0-or-later"
  2769. ],
  2770. "authors": [
  2771. {
  2772. "name": "bnjmnm",
  2773. "homepage": "https://www.drupal.org/user/2369194"
  2774. },
  2775. {
  2776. "name": "lauriii",
  2777. "homepage": "https://www.drupal.org/user/1078742"
  2778. },
  2779. {
  2780. "name": "nod_",
  2781. "homepage": "https://www.drupal.org/user/598310"
  2782. },
  2783. {
  2784. "name": "phenaproxima",
  2785. "homepage": "https://www.drupal.org/user/205645"
  2786. },
  2787. {
  2788. "name": "Wim Leers",
  2789. "homepage": "https://www.drupal.org/user/99777"
  2790. },
  2791. {
  2792. "name": "zrpnr",
  2793. "homepage": "https://www.drupal.org/user/1448368"
  2794. }
  2795. ],
  2796. "description": "Provides jQuery UI Autocomplete library.",
  2797. "homepage": "https://www.drupal.org/project/jquery_ui_autocomplete",
  2798. "support": {
  2799. "source": "https://git.drupalcode.org/project/jquery_ui_autocomplete"
  2800. }
  2801. },
  2802. {
  2803. "name": "drupal/jquery_ui_draggable",
  2804. "version": "2.0.0",
  2805. "source": {
  2806. "type": "git",
  2807. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  2808. "reference": "2.0.0"
  2809. },
  2810. "dist": {
  2811. "type": "zip",
  2812. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.0.0.zip",
  2813. "reference": "2.0.0",
  2814. "shasum": "13a8f4bf037449cd176ddb967fc9cba9a466a705"
  2815. },
  2816. "require": {
  2817. "drupal/core": "^9.2 || ^10",
  2818. "drupal/jquery_ui": "^1.6"
  2819. },
  2820. "type": "drupal-module",
  2821. "extra": {
  2822. "drupal": {
  2823. "version": "2.0.0",
  2824. "datestamp": "1670871516",
  2825. "security-coverage": {
  2826. "status": "covered",
  2827. "message": "Covered by Drupal's security advisory policy"
  2828. }
  2829. }
  2830. },
  2831. "notification-url": "https://packages.drupal.org/8/downloads",
  2832. "license": [
  2833. "GPL-2.0-or-later"
  2834. ],
  2835. "authors": [
  2836. {
  2837. "name": "bnjmnm",
  2838. "homepage": "https://www.drupal.org/user/2369194"
  2839. },
  2840. {
  2841. "name": "lauriii",
  2842. "homepage": "https://www.drupal.org/user/1078742"
  2843. },
  2844. {
  2845. "name": "zrpnr",
  2846. "homepage": "https://www.drupal.org/user/1448368"
  2847. }
  2848. ],
  2849. "description": "Provides jQuery UI Draggable library.",
  2850. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  2851. "support": {
  2852. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  2853. }
  2854. },
  2855. {
  2856. "name": "drupal/jquery_ui_droppable",
  2857. "version": "2.0.0",
  2858. "source": {
  2859. "type": "git",
  2860. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  2861. "reference": "2.0.0"
  2862. },
  2863. "dist": {
  2864. "type": "zip",
  2865. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-2.0.0.zip",
  2866. "reference": "2.0.0",
  2867. "shasum": "758f52e68b04e74f1a96240b22090fcae1945898"
  2868. },
  2869. "require": {
  2870. "drupal/core": "^9.2 || ^10",
  2871. "drupal/jquery_ui": "^1.6",
  2872. "drupal/jquery_ui_draggable": "^2"
  2873. },
  2874. "type": "drupal-module",
  2875. "extra": {
  2876. "drupal": {
  2877. "version": "2.0.0",
  2878. "datestamp": "1670871520",
  2879. "security-coverage": {
  2880. "status": "covered",
  2881. "message": "Covered by Drupal's security advisory policy"
  2882. }
  2883. }
  2884. },
  2885. "notification-url": "https://packages.drupal.org/8/downloads",
  2886. "license": [
  2887. "GPL-2.0-or-later"
  2888. ],
  2889. "authors": [
  2890. {
  2891. "name": "bnjmnm",
  2892. "homepage": "https://www.drupal.org/user/2369194"
  2893. },
  2894. {
  2895. "name": "lauriii",
  2896. "homepage": "https://www.drupal.org/user/1078742"
  2897. },
  2898. {
  2899. "name": "zrpnr",
  2900. "homepage": "https://www.drupal.org/user/1448368"
  2901. }
  2902. ],
  2903. "description": "Provides jQuery UI Droppable library.",
  2904. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  2905. "support": {
  2906. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  2907. }
  2908. },
  2909. {
  2910. "name": "drupal/jquery_ui_menu",
  2911. "version": "2.0.0",
  2912. "source": {
  2913. "type": "git",
  2914. "url": "https://git.drupalcode.org/project/jquery_ui_menu.git",
  2915. "reference": "2.0.0"
  2916. },
  2917. "dist": {
  2918. "type": "zip",
  2919. "url": "https://ftp.drupal.org/files/projects/jquery_ui_menu-2.0.0.zip",
  2920. "reference": "2.0.0",
  2921. "shasum": "5e1b56bf457669c7779a81784f49da63e3956854"
  2922. },
  2923. "require": {
  2924. "drupal/core": "^9.2 || ^10",
  2925. "drupal/jquery_ui": "^1.6"
  2926. },
  2927. "type": "drupal-module",
  2928. "extra": {
  2929. "drupal": {
  2930. "version": "2.0.0",
  2931. "datestamp": "1670871546",
  2932. "security-coverage": {
  2933. "status": "covered",
  2934. "message": "Covered by Drupal's security advisory policy"
  2935. }
  2936. }
  2937. },
  2938. "notification-url": "https://packages.drupal.org/8/downloads",
  2939. "license": [
  2940. "GPL-2.0-or-later"
  2941. ],
  2942. "authors": [
  2943. {
  2944. "name": "bnjmnm",
  2945. "homepage": "https://www.drupal.org/user/2369194"
  2946. },
  2947. {
  2948. "name": "lauriii",
  2949. "homepage": "https://www.drupal.org/user/1078742"
  2950. },
  2951. {
  2952. "name": "nod_",
  2953. "homepage": "https://www.drupal.org/user/598310"
  2954. },
  2955. {
  2956. "name": "phenaproxima",
  2957. "homepage": "https://www.drupal.org/user/205645"
  2958. },
  2959. {
  2960. "name": "Wim Leers",
  2961. "homepage": "https://www.drupal.org/user/99777"
  2962. },
  2963. {
  2964. "name": "zrpnr",
  2965. "homepage": "https://www.drupal.org/user/1448368"
  2966. }
  2967. ],
  2968. "description": "Provides jQuery UI Menu library.",
  2969. "homepage": "https://www.drupal.org/project/jquery_ui_menu",
  2970. "support": {
  2971. "source": "https://git.drupalcode.org/project/jquery_ui_menu"
  2972. }
  2973. },
  2974. {
  2975. "name": "drupal/linked_field",
  2976. "version": "1.5.0",
  2977. "source": {
  2978. "type": "git",
  2979. "url": "https://git.drupalcode.org/project/linked_field.git",
  2980. "reference": "8.x-1.5"
  2981. },
  2982. "dist": {
  2983. "type": "zip",
  2984. "url": "https://ftp.drupal.org/files/projects/linked_field-8.x-1.5.zip",
  2985. "reference": "8.x-1.5",
  2986. "shasum": "31ed8008d2f88c693334f6faad03112280820fe0"
  2987. },
  2988. "require": {
  2989. "drupal/core": "^8.8 || ^9 || ^10"
  2990. },
  2991. "type": "drupal-module",
  2992. "extra": {
  2993. "drupal": {
  2994. "version": "8.x-1.5",
  2995. "datestamp": "1677239525",
  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": "jcnventura",
  3009. "homepage": "https://www.drupal.org/user/122464"
  3010. },
  3011. {
  3012. "name": "yannickoo",
  3013. "homepage": "https://www.drupal.org/user/531118"
  3014. }
  3015. ],
  3016. "description": "Adds the functionality to link fields to a specific destination.",
  3017. "homepage": "https://www.drupal.org/project/linked_field",
  3018. "support": {
  3019. "source": "https://git.drupalcode.org/project/linked_field"
  3020. }
  3021. },
  3022. {
  3023. "name": "drupal/linkit",
  3024. "version": "6.1.2",
  3025. "source": {
  3026. "type": "git",
  3027. "url": "https://git.drupalcode.org/project/linkit.git",
  3028. "reference": "6.1.2"
  3029. },
  3030. "dist": {
  3031. "type": "zip",
  3032. "url": "https://ftp.drupal.org/files/projects/linkit-6.1.2.zip",
  3033. "reference": "6.1.2",
  3034. "shasum": "63fb311d2b78df81a9a588330429b640ec7da0e8"
  3035. },
  3036. "require": {
  3037. "drupal/core": "^10.1"
  3038. },
  3039. "require-dev": {
  3040. "drupal/ckeditor": "*",
  3041. "drupal/imce": "*"
  3042. },
  3043. "type": "drupal-module",
  3044. "extra": {
  3045. "drupal": {
  3046. "version": "6.1.2",
  3047. "datestamp": "1696865478",
  3048. "security-coverage": {
  3049. "status": "covered",
  3050. "message": "Covered by Drupal's security advisory policy"
  3051. }
  3052. }
  3053. },
  3054. "notification-url": "https://packages.drupal.org/8/downloads",
  3055. "license": [
  3056. "GPL-2.0-or-later"
  3057. ],
  3058. "authors": [
  3059. {
  3060. "name": "Emil Stjerneman",
  3061. "homepage": "https://stjerneman.com",
  3062. "email": "emil@stjerneman.com",
  3063. "role": "Maintainer"
  3064. },
  3065. {
  3066. "name": "johnwebdev",
  3067. "homepage": "https://www.drupal.org/user/3331569"
  3068. },
  3069. {
  3070. "name": "mark_fullmer",
  3071. "homepage": "https://www.drupal.org/user/2612816"
  3072. }
  3073. ],
  3074. "description": "Linkit - Enriched linking experience",
  3075. "homepage": "http://drupal.org/project/linkit",
  3076. "support": {
  3077. "source": "http://cgit.drupalcode.org/linkit",
  3078. "issues": "http://drupal.org/project/linkit"
  3079. }
  3080. },
  3081. {
  3082. "name": "drupal/masonry",
  3083. "version": "4.0.0",
  3084. "source": {
  3085. "type": "git",
  3086. "url": "https://git.drupalcode.org/project/masonry.git",
  3087. "reference": "4.0.0"
  3088. },
  3089. "dist": {
  3090. "type": "zip",
  3091. "url": "https://ftp.drupal.org/files/projects/masonry-4.0.0.zip",
  3092. "reference": "4.0.0",
  3093. "shasum": "5062350d5f68d84077a393ce5b8cdc11ff66d0cd"
  3094. },
  3095. "require": {
  3096. "drupal/core": "^8 || ^9 || ^10"
  3097. },
  3098. "type": "drupal-module",
  3099. "extra": {
  3100. "drupal": {
  3101. "version": "4.0.0",
  3102. "datestamp": "1690017720",
  3103. "security-coverage": {
  3104. "status": "covered",
  3105. "message": "Covered by Drupal's security advisory policy"
  3106. }
  3107. }
  3108. },
  3109. "notification-url": "https://packages.drupal.org/8/downloads",
  3110. "license": [
  3111. "GPL-2.0-or-later"
  3112. ],
  3113. "authors": [
  3114. {
  3115. "name": "Dominique Clause (Dom.)",
  3116. "homepage": "https://www.drupal.org/u/dom",
  3117. "role": "Maintainer"
  3118. },
  3119. {
  3120. "name": "Dom.",
  3121. "homepage": "https://www.drupal.org/user/801982"
  3122. }
  3123. ],
  3124. "description": "Masonry integrates with Masonry library",
  3125. "homepage": "https://www.drupal.org/project/masonry",
  3126. "support": {
  3127. "source": "https://git.drupalcode.org/project/masonry",
  3128. "issues": "https://www.drupal.org/project/issues/masonry?version=8.x"
  3129. }
  3130. },
  3131. {
  3132. "name": "drupal/matomo",
  3133. "version": "1.23.0",
  3134. "source": {
  3135. "type": "git",
  3136. "url": "https://git.drupalcode.org/project/matomo.git",
  3137. "reference": "8.x-1.23"
  3138. },
  3139. "dist": {
  3140. "type": "zip",
  3141. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.23.zip",
  3142. "reference": "8.x-1.23",
  3143. "shasum": "c2dbf12878388c5859e64f1e74a9ca5110d1623f"
  3144. },
  3145. "require": {
  3146. "drupal/core": "^9.0 || ^10"
  3147. },
  3148. "conflict": {
  3149. "drupal/csp": "<1.12"
  3150. },
  3151. "require-dev": {
  3152. "drupal/csp": "~1.12",
  3153. "drupal/php": "~1.1",
  3154. "drupal/token": "~1.9"
  3155. },
  3156. "type": "drupal-module",
  3157. "extra": {
  3158. "drupal": {
  3159. "version": "8.x-1.23",
  3160. "datestamp": "1700936102",
  3161. "security-coverage": {
  3162. "status": "covered",
  3163. "message": "Covered by Drupal's security advisory policy"
  3164. }
  3165. }
  3166. },
  3167. "notification-url": "https://packages.drupal.org/8/downloads",
  3168. "license": [
  3169. "GPL-2.0-or-later"
  3170. ],
  3171. "authors": [
  3172. {
  3173. "name": "C-Logemann",
  3174. "homepage": "https://www.drupal.org/user/218368"
  3175. },
  3176. {
  3177. "name": "Grimreaper",
  3178. "homepage": "https://www.drupal.org/user/2388214"
  3179. },
  3180. {
  3181. "name": "hass",
  3182. "homepage": "https://www.drupal.org/user/85918"
  3183. },
  3184. {
  3185. "name": "shelane",
  3186. "homepage": "https://www.drupal.org/user/2674989"
  3187. }
  3188. ],
  3189. "description": "Adds Matomo javascript tracking code to all your site's pages.",
  3190. "homepage": "https://www.drupal.org/project/matomo",
  3191. "support": {
  3192. "source": "https://git.drupalcode.org/project/matomo"
  3193. }
  3194. },
  3195. {
  3196. "name": "drupal/mediteran",
  3197. "version": "1.32.0",
  3198. "source": {
  3199. "type": "git",
  3200. "url": "https://git.drupalcode.org/project/mediteran.git",
  3201. "reference": "8.x-1.32"
  3202. },
  3203. "dist": {
  3204. "type": "zip",
  3205. "url": "https://ftp.drupal.org/files/projects/mediteran-8.x-1.32.zip",
  3206. "reference": "8.x-1.32",
  3207. "shasum": "85e0a94bf5f98626e1eb2c88f6b9467c1fdaf9ec"
  3208. },
  3209. "require": {
  3210. "drupal/core": "^9.2 || ^10"
  3211. },
  3212. "type": "drupal-theme",
  3213. "extra": {
  3214. "drupal": {
  3215. "version": "8.x-1.32",
  3216. "datestamp": "1699979844",
  3217. "security-coverage": {
  3218. "status": "covered",
  3219. "message": "Covered by Drupal's security advisory policy"
  3220. }
  3221. }
  3222. },
  3223. "notification-url": "https://packages.drupal.org/8/downloads",
  3224. "license": [
  3225. "GPL-2.0-or-later"
  3226. ],
  3227. "authors": [
  3228. {
  3229. "name": "bataboza",
  3230. "homepage": "https://www.drupal.org/user/3581173"
  3231. },
  3232. {
  3233. "name": "doxigo",
  3234. "homepage": "https://www.drupal.org/user/1331334"
  3235. },
  3236. {
  3237. "name": "dqd",
  3238. "homepage": "https://www.drupal.org/user/1001934"
  3239. },
  3240. {
  3241. "name": "Hosisam",
  3242. "homepage": "https://www.drupal.org/user/3449435"
  3243. },
  3244. {
  3245. "name": "Nitin shrivastava",
  3246. "homepage": "https://www.drupal.org/user/3725211"
  3247. },
  3248. {
  3249. "name": "paulrad",
  3250. "homepage": "https://www.drupal.org/user/3722439"
  3251. },
  3252. {
  3253. "name": "szeidler",
  3254. "homepage": "https://www.drupal.org/user/767652"
  3255. }
  3256. ],
  3257. "description": "Mediteran is a clean and simple administration theme designed by <a href=\"https://drupalation.com\" target=\"_blank\">Drupalation</a> and supported by <a href=\"https://ramsalt.com\" target=\"_blank\">Ramsalt</a>.",
  3258. "homepage": "https://www.drupal.org/project/mediteran",
  3259. "support": {
  3260. "source": "https://git.drupalcode.org/project/mediteran"
  3261. }
  3262. },
  3263. {
  3264. "name": "drupal/menu_link_attributes",
  3265. "version": "1.3.0",
  3266. "source": {
  3267. "type": "git",
  3268. "url": "https://git.drupalcode.org/project/menu_link_attributes.git",
  3269. "reference": "8.x-1.3"
  3270. },
  3271. "dist": {
  3272. "type": "zip",
  3273. "url": "https://ftp.drupal.org/files/projects/menu_link_attributes-8.x-1.3.zip",
  3274. "reference": "8.x-1.3",
  3275. "shasum": "431c7954cc614a1b9677173f0209f1df15592503"
  3276. },
  3277. "require": {
  3278. "drupal/core": "^8 || ^9 || ^10"
  3279. },
  3280. "type": "drupal-module",
  3281. "extra": {
  3282. "drupal": {
  3283. "version": "8.x-1.3",
  3284. "datestamp": "1671026425",
  3285. "security-coverage": {
  3286. "status": "covered",
  3287. "message": "Covered by Drupal's security advisory policy"
  3288. }
  3289. }
  3290. },
  3291. "notification-url": "https://packages.drupal.org/8/downloads",
  3292. "license": [
  3293. "GPL-2.0-or-later"
  3294. ],
  3295. "authors": [
  3296. {
  3297. "name": "jcnventura",
  3298. "homepage": "https://www.drupal.org/user/122464"
  3299. },
  3300. {
  3301. "name": "yannickoo",
  3302. "homepage": "https://www.drupal.org/user/531118"
  3303. }
  3304. ],
  3305. "description": "Allows you to add attributes to menu links.",
  3306. "homepage": "http://drupal.org/project/menu_link_attributes",
  3307. "keywords": [
  3308. "Drupal"
  3309. ],
  3310. "support": {
  3311. "source": "http://cgit.drupalcode.org/menu_link_attributes",
  3312. "issues": "http://drupal.org/project/issues/menu_link_attributes"
  3313. }
  3314. },
  3315. {
  3316. "name": "drupal/metatag",
  3317. "version": "1.26.0",
  3318. "source": {
  3319. "type": "git",
  3320. "url": "https://git.drupalcode.org/project/metatag.git",
  3321. "reference": "8.x-1.26"
  3322. },
  3323. "dist": {
  3324. "type": "zip",
  3325. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.26.zip",
  3326. "reference": "8.x-1.26",
  3327. "shasum": "afa4a37422748baa2f0c35b13961438668ef3be8"
  3328. },
  3329. "require": {
  3330. "drupal/core": "^9.3 || ^10",
  3331. "drupal/token": "^1.0"
  3332. },
  3333. "require-dev": {
  3334. "drupal/devel": "^4.0 || ^5.0",
  3335. "drupal/hal": "^9 || ^1 || ^2",
  3336. "drupal/metatag_dc": "*",
  3337. "drupal/metatag_open_graph": "*",
  3338. "drupal/page_manager": "^4.0",
  3339. "drupal/panelizer": "^4.0",
  3340. "drupal/redirect": "^1.0",
  3341. "drupal/webprofiler": "^9 || ^10",
  3342. "mpyw/phpunit-patch-serializable-comparison": "*"
  3343. },
  3344. "type": "drupal-module",
  3345. "extra": {
  3346. "drupal": {
  3347. "version": "8.x-1.26",
  3348. "datestamp": "1687856123",
  3349. "security-coverage": {
  3350. "status": "covered",
  3351. "message": "Covered by Drupal's security advisory policy"
  3352. }
  3353. }
  3354. },
  3355. "notification-url": "https://packages.drupal.org/8/downloads",
  3356. "license": [
  3357. "GPL-2.0-or-later"
  3358. ],
  3359. "authors": [
  3360. {
  3361. "name": "See contributors",
  3362. "homepage": "https://www.drupal.org/node/640498/committers",
  3363. "role": "Developer"
  3364. },
  3365. {
  3366. "name": "Dave Reid",
  3367. "homepage": "https://www.drupal.org/user/53892"
  3368. }
  3369. ],
  3370. "description": "Manage meta tags for all entities.",
  3371. "homepage": "https://www.drupal.org/project/metatag",
  3372. "keywords": [
  3373. "Drupal",
  3374. "seo"
  3375. ],
  3376. "support": {
  3377. "source": "https://git.drupalcode.org/project/metatag",
  3378. "issues": "https://www.drupal.org/project/issues/metatag",
  3379. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  3380. }
  3381. },
  3382. {
  3383. "name": "drupal/page_manager",
  3384. "version": "4.0.0-rc2",
  3385. "source": {
  3386. "type": "git",
  3387. "url": "https://git.drupalcode.org/project/page_manager.git",
  3388. "reference": "8.x-4.0-rc2"
  3389. },
  3390. "dist": {
  3391. "type": "zip",
  3392. "url": "https://ftp.drupal.org/files/projects/page_manager-8.x-4.0-rc2.zip",
  3393. "reference": "8.x-4.0-rc2",
  3394. "shasum": "4a1e96284c5775343fbb4612072a2abfc83ebc33"
  3395. },
  3396. "require": {
  3397. "drupal/core": "^9.3 || ^10",
  3398. "drupal/ctools": "^3.11 || ^4.0"
  3399. },
  3400. "type": "drupal-module",
  3401. "extra": {
  3402. "drupal": {
  3403. "version": "8.x-4.0-rc2",
  3404. "datestamp": "1671210021",
  3405. "security-coverage": {
  3406. "status": "not-covered",
  3407. "message": "RC releases are not covered by Drupal security advisories."
  3408. }
  3409. },
  3410. "branch-alias": {
  3411. "dev-8.x-4.x": "4.x-dev"
  3412. }
  3413. },
  3414. "notification-url": "https://packages.drupal.org/8/downloads",
  3415. "license": [
  3416. "GPL-2.0-or-later"
  3417. ],
  3418. "authors": [
  3419. {
  3420. "name": "Tim Plunkett",
  3421. "homepage": "https://www.drupal.org/u/tim.plunkett",
  3422. "role": "Maintainer"
  3423. },
  3424. {
  3425. "name": "EclipseGc",
  3426. "homepage": "https://www.drupal.org/user/61203"
  3427. },
  3428. {
  3429. "name": "ivnish",
  3430. "homepage": "https://www.drupal.org/user/3547706"
  3431. },
  3432. {
  3433. "name": "japerry",
  3434. "homepage": "https://www.drupal.org/user/45640"
  3435. },
  3436. {
  3437. "name": "joelpittet",
  3438. "homepage": "https://www.drupal.org/user/160302"
  3439. },
  3440. {
  3441. "name": "manuel.adan",
  3442. "homepage": "https://www.drupal.org/user/516420"
  3443. },
  3444. {
  3445. "name": "phenaproxima",
  3446. "homepage": "https://www.drupal.org/user/205645"
  3447. }
  3448. ],
  3449. "description": "Provides a way to place blocks on a custom page.",
  3450. "homepage": "https://www.drupal.org/project/page_manager",
  3451. "support": {
  3452. "source": "https://git.drupal.org/project/page_manager.git",
  3453. "issues": "https://www.drupal.org/project/issues/page_manager",
  3454. "irc": "irc://irc.freenode.org/drupal-contribute"
  3455. }
  3456. },
  3457. {
  3458. "name": "drupal/panels",
  3459. "version": "dev-4.x",
  3460. "source": {
  3461. "type": "git",
  3462. "url": "https://git.drupalcode.org/project/panels.git",
  3463. "reference": "4dfd6a07adac69525832b94f6745ac3247a6cd92"
  3464. },
  3465. "require": {
  3466. "drupal/core": "^9.2 || ^10",
  3467. "drupal/ctools": "^3.12 || ^4.0",
  3468. "drupal/jquery_ui_droppable": "^1.0 || ^2.0"
  3469. },
  3470. "require-dev": {
  3471. "drupal/jquery_ui_droppable": "*",
  3472. "drupal/page_manager": "^4"
  3473. },
  3474. "type": "drupal-module",
  3475. "extra": {
  3476. "branch-alias": {
  3477. "dev-4.x": "4.x-dev",
  3478. "dev-8.x-4.x": "4.x-dev"
  3479. },
  3480. "drupal": {
  3481. "version": "8.x-4.7+5-dev",
  3482. "datestamp": "1693457160",
  3483. "security-coverage": {
  3484. "status": "not-covered",
  3485. "message": "Dev releases are not covered by Drupal security advisories."
  3486. }
  3487. }
  3488. },
  3489. "notification-url": "https://packages.drupal.org/8/downloads",
  3490. "license": [
  3491. "GPL-2.0+"
  3492. ],
  3493. "authors": [
  3494. {
  3495. "name": "Jakob Perry",
  3496. "homepage": "https://www.drupal.org/u/japerry"
  3497. },
  3498. {
  3499. "name": "Samuel Mortenson",
  3500. "homepage": "https://www.drupal.org/u/samuel.mortenson"
  3501. },
  3502. {
  3503. "name": "See other contributors",
  3504. "homepage": "https://www.drupal.org/node/74958/committers"
  3505. },
  3506. {
  3507. "name": "joelpittet",
  3508. "homepage": "https://www.drupal.org/user/160302"
  3509. },
  3510. {
  3511. "name": "Letharion",
  3512. "homepage": "https://www.drupal.org/user/373603"
  3513. },
  3514. {
  3515. "name": "merlinofchaos",
  3516. "homepage": "https://www.drupal.org/user/26979"
  3517. },
  3518. {
  3519. "name": "neclimdul",
  3520. "homepage": "https://www.drupal.org/user/48673"
  3521. },
  3522. {
  3523. "name": "phenaproxima",
  3524. "homepage": "https://www.drupal.org/user/205645"
  3525. },
  3526. {
  3527. "name": "samuel.mortenson",
  3528. "homepage": "https://www.drupal.org/user/2582268"
  3529. }
  3530. ],
  3531. "description": "Core Panels display functions; provides no external UI, at least one other Panels module should be enabled.",
  3532. "homepage": "https://www.drupal.org/project/panels",
  3533. "support": {
  3534. "source": "http://git.drupal.org/project/panels.git",
  3535. "issues": "https://www.drupal.org/project/issues/panels",
  3536. "irc": "irc://irc.freenode.org/drupal-scotch"
  3537. }
  3538. },
  3539. {
  3540. "name": "drupal/paragraphs",
  3541. "version": "1.17.0",
  3542. "source": {
  3543. "type": "git",
  3544. "url": "https://git.drupalcode.org/project/paragraphs.git",
  3545. "reference": "8.x-1.17"
  3546. },
  3547. "dist": {
  3548. "type": "zip",
  3549. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.17.zip",
  3550. "reference": "8.x-1.17",
  3551. "shasum": "81c05f6a1eb59ab957c9ac97b2e79d6c9837bd72"
  3552. },
  3553. "require": {
  3554. "drupal/core": "^9.3 || ^10",
  3555. "drupal/entity_reference_revisions": "~1.3"
  3556. },
  3557. "require-dev": {
  3558. "drupal/block_field": "1.x-dev",
  3559. "drupal/diff": "1.x-dev",
  3560. "drupal/entity_browser": "2.x-dev",
  3561. "drupal/entity_usage": "2.x-dev",
  3562. "drupal/field_group": "3.x-dev",
  3563. "drupal/inline_entity_form": "1.x-dev",
  3564. "drupal/paragraphs-paragraphs_library": "*",
  3565. "drupal/replicate": "1.x-dev",
  3566. "drupal/search_api": "^1",
  3567. "drupal/search_api_db": "*"
  3568. },
  3569. "suggest": {
  3570. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  3571. },
  3572. "type": "drupal-module",
  3573. "extra": {
  3574. "drupal": {
  3575. "version": "8.x-1.17",
  3576. "datestamp": "1705234146",
  3577. "security-coverage": {
  3578. "status": "covered",
  3579. "message": "Covered by Drupal's security advisory policy"
  3580. }
  3581. }
  3582. },
  3583. "notification-url": "https://packages.drupal.org/8/downloads",
  3584. "license": [
  3585. "GPL-2.0-or-later"
  3586. ],
  3587. "authors": [
  3588. {
  3589. "name": "Berdir",
  3590. "homepage": "https://www.drupal.org/user/214652"
  3591. },
  3592. {
  3593. "name": "Frans",
  3594. "homepage": "https://www.drupal.org/user/514222"
  3595. },
  3596. {
  3597. "name": "jeroen.b",
  3598. "homepage": "https://www.drupal.org/user/1853532"
  3599. },
  3600. {
  3601. "name": "jstoller",
  3602. "homepage": "https://www.drupal.org/user/99012"
  3603. },
  3604. {
  3605. "name": "miro_dietiker",
  3606. "homepage": "https://www.drupal.org/user/227761"
  3607. },
  3608. {
  3609. "name": "Primsi",
  3610. "homepage": "https://www.drupal.org/user/282629"
  3611. }
  3612. ],
  3613. "description": "Enables the creation of Paragraphs entities.",
  3614. "homepage": "https://www.drupal.org/project/paragraphs",
  3615. "support": {
  3616. "source": "https://git.drupalcode.org/project/paragraphs"
  3617. }
  3618. },
  3619. {
  3620. "name": "drupal/pathauto",
  3621. "version": "1.12.0",
  3622. "source": {
  3623. "type": "git",
  3624. "url": "https://git.drupalcode.org/project/pathauto.git",
  3625. "reference": "8.x-1.12"
  3626. },
  3627. "dist": {
  3628. "type": "zip",
  3629. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.12.zip",
  3630. "reference": "8.x-1.12",
  3631. "shasum": "b7b6432e315e38e59a7c6cc117134326c580de4c"
  3632. },
  3633. "require": {
  3634. "drupal/core": "^9.3 || ^10",
  3635. "drupal/ctools": "*",
  3636. "drupal/token": "*"
  3637. },
  3638. "suggest": {
  3639. "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."
  3640. },
  3641. "type": "drupal-module",
  3642. "extra": {
  3643. "drupal": {
  3644. "version": "8.x-1.12",
  3645. "datestamp": "1696776683",
  3646. "security-coverage": {
  3647. "status": "covered",
  3648. "message": "Covered by Drupal's security advisory policy"
  3649. }
  3650. },
  3651. "drush": {
  3652. "services": {
  3653. "drush.services.yml": "^9 || ^10"
  3654. }
  3655. }
  3656. },
  3657. "notification-url": "https://packages.drupal.org/8/downloads",
  3658. "license": [
  3659. "GPL-2.0-or-later"
  3660. ],
  3661. "authors": [
  3662. {
  3663. "name": "Berdir",
  3664. "homepage": "https://www.drupal.org/user/214652"
  3665. },
  3666. {
  3667. "name": "Dave Reid",
  3668. "homepage": "https://www.drupal.org/user/53892"
  3669. },
  3670. {
  3671. "name": "Freso",
  3672. "homepage": "https://www.drupal.org/user/27504"
  3673. },
  3674. {
  3675. "name": "greggles",
  3676. "homepage": "https://www.drupal.org/user/36762"
  3677. }
  3678. ],
  3679. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  3680. "homepage": "https://www.drupal.org/project/pathauto",
  3681. "support": {
  3682. "source": "https://cgit.drupalcode.org/pathauto",
  3683. "issues": "https://www.drupal.org/project/issues/pathauto",
  3684. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  3685. }
  3686. },
  3687. {
  3688. "name": "drupal/redirect",
  3689. "version": "1.9.0",
  3690. "source": {
  3691. "type": "git",
  3692. "url": "https://git.drupalcode.org/project/redirect.git",
  3693. "reference": "8.x-1.9"
  3694. },
  3695. "dist": {
  3696. "type": "zip",
  3697. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.9.zip",
  3698. "reference": "8.x-1.9",
  3699. "shasum": "2987de20f509e9f7cec8a0f81d3a6774f9b0ba3e"
  3700. },
  3701. "require": {
  3702. "drupal/core": "^9.2 || ^10"
  3703. },
  3704. "type": "drupal-module",
  3705. "extra": {
  3706. "drupal": {
  3707. "version": "8.x-1.9",
  3708. "datestamp": "1693393506",
  3709. "security-coverage": {
  3710. "status": "covered",
  3711. "message": "Covered by Drupal's security advisory policy"
  3712. }
  3713. }
  3714. },
  3715. "notification-url": "https://packages.drupal.org/8/downloads",
  3716. "license": [
  3717. "GPL-2.0-or-later"
  3718. ],
  3719. "authors": [
  3720. {
  3721. "name": "Berdir",
  3722. "homepage": "https://www.drupal.org/user/214652"
  3723. },
  3724. {
  3725. "name": "Dave Reid",
  3726. "homepage": "https://www.drupal.org/user/53892"
  3727. },
  3728. {
  3729. "name": "Kristen Pol",
  3730. "homepage": "https://www.drupal.org/user/8389"
  3731. },
  3732. {
  3733. "name": "pifagor",
  3734. "homepage": "https://www.drupal.org/user/2375692"
  3735. }
  3736. ],
  3737. "description": "Allows users to redirect from old URLs to new URLs.",
  3738. "homepage": "https://www.drupal.org/project/redirect",
  3739. "support": {
  3740. "source": "https://git.drupalcode.org/project/redirect"
  3741. }
  3742. },
  3743. {
  3744. "name": "drupal/redirect_after_login",
  3745. "version": "2.8.0",
  3746. "source": {
  3747. "type": "git",
  3748. "url": "https://git.drupalcode.org/project/redirect_after_login.git",
  3749. "reference": "8.x-2.8"
  3750. },
  3751. "dist": {
  3752. "type": "zip",
  3753. "url": "https://ftp.drupal.org/files/projects/redirect_after_login-8.x-2.8.zip",
  3754. "reference": "8.x-2.8",
  3755. "shasum": "01781d0265c85a8ffa55842c34813daceba995e6"
  3756. },
  3757. "require": {
  3758. "drupal/core": "^9.3 || ^10"
  3759. },
  3760. "type": "drupal-module",
  3761. "extra": {
  3762. "drupal": {
  3763. "version": "8.x-2.8",
  3764. "datestamp": "1698918366",
  3765. "security-coverage": {
  3766. "status": "covered",
  3767. "message": "Covered by Drupal's security advisory policy"
  3768. }
  3769. }
  3770. },
  3771. "notification-url": "https://packages.drupal.org/8/downloads",
  3772. "license": [
  3773. "GPL-2.0-or-later"
  3774. ],
  3775. "authors": [
  3776. {
  3777. "name": "Shamsher Alam",
  3778. "homepage": "https://www.drupal.org/u/shamsher_alam",
  3779. "role": "Author"
  3780. },
  3781. {
  3782. "name": "prempatel2447",
  3783. "homepage": "https://www.drupal.org/user/3250112"
  3784. },
  3785. {
  3786. "name": "rahul-kr-sh",
  3787. "homepage": "https://www.drupal.org/user/3561577"
  3788. },
  3789. {
  3790. "name": "Shamsher_Alam",
  3791. "homepage": "https://www.drupal.org/user/2742027"
  3792. },
  3793. {
  3794. "name": "VladimirAus",
  3795. "homepage": "https://www.drupal.org/user/673120"
  3796. }
  3797. ],
  3798. "description": "Redirect user after login to a configured url",
  3799. "homepage": "https://drupal.org/project/redirect_after_login",
  3800. "support": {
  3801. "source": "https://git.drupalcode.org/project/redirect_after_login"
  3802. }
  3803. },
  3804. {
  3805. "name": "drupal/redis",
  3806. "version": "1.7.0",
  3807. "source": {
  3808. "type": "git",
  3809. "url": "https://git.drupalcode.org/project/redis.git",
  3810. "reference": "8.x-1.7"
  3811. },
  3812. "dist": {
  3813. "type": "zip",
  3814. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.7.zip",
  3815. "reference": "8.x-1.7",
  3816. "shasum": "602043bdad62ff047321121edcfde8abf3638c7c"
  3817. },
  3818. "require": {
  3819. "drupal/core": "^9.3 || ^10"
  3820. },
  3821. "suggest": {
  3822. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  3823. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  3824. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  3825. },
  3826. "type": "drupal-module",
  3827. "extra": {
  3828. "drupal": {
  3829. "version": "8.x-1.7",
  3830. "datestamp": "1686175620",
  3831. "security-coverage": {
  3832. "status": "covered",
  3833. "message": "Covered by Drupal's security advisory policy"
  3834. }
  3835. }
  3836. },
  3837. "autoload": {
  3838. "psr-4": {
  3839. "Drupal\\redis\\": "src"
  3840. }
  3841. },
  3842. "notification-url": "https://packages.drupal.org/8/downloads",
  3843. "license": [
  3844. "GPL-2.0-or-later"
  3845. ],
  3846. "authors": [
  3847. {
  3848. "name": "Berdir",
  3849. "homepage": "https://www.drupal.org/user/214652"
  3850. },
  3851. {
  3852. "name": "greg.1.anderson",
  3853. "homepage": "https://www.drupal.org/user/438598"
  3854. },
  3855. {
  3856. "name": "kporras07",
  3857. "homepage": "https://www.drupal.org/user/1349780"
  3858. },
  3859. {
  3860. "name": "pounard",
  3861. "homepage": "https://www.drupal.org/user/240164"
  3862. }
  3863. ],
  3864. "description": "Integration of Drupal with the Redis key-value store.",
  3865. "homepage": "https://www.drupal.org/project/redis",
  3866. "support": {
  3867. "source": "https://git.drupalcode.org/project/redis"
  3868. }
  3869. },
  3870. {
  3871. "name": "drupal/schema_metatag",
  3872. "version": "2.5.0",
  3873. "source": {
  3874. "type": "git",
  3875. "url": "https://git.drupalcode.org/project/schema_metatag.git",
  3876. "reference": "8.x-2.5"
  3877. },
  3878. "dist": {
  3879. "type": "zip",
  3880. "url": "https://ftp.drupal.org/files/projects/schema_metatag-8.x-2.5.zip",
  3881. "reference": "8.x-2.5",
  3882. "shasum": "543b9d624711379e29dde58c22e2cc0a66822c87"
  3883. },
  3884. "require": {
  3885. "drupal/core": "^9.0 || ^10",
  3886. "drupal/metatag": "^1.0"
  3887. },
  3888. "require-dev": {
  3889. "drupal/coder": "^8.3",
  3890. "drupal/metatag_views": "*",
  3891. "drupal/schema_article": "*",
  3892. "drupal/schema_organization": "*",
  3893. "phpcompatibility/php-compatibility": "^9.3"
  3894. },
  3895. "type": "drupal-module",
  3896. "extra": {
  3897. "drupal": {
  3898. "version": "8.x-2.5",
  3899. "datestamp": "1687460392",
  3900. "security-coverage": {
  3901. "status": "covered",
  3902. "message": "Covered by Drupal's security advisory policy"
  3903. }
  3904. }
  3905. },
  3906. "notification-url": "https://packages.drupal.org/8/downloads",
  3907. "license": [
  3908. "GPL-2.0-or-later"
  3909. ],
  3910. "authors": [
  3911. {
  3912. "name": "DamienMcKenna",
  3913. "homepage": "https://www.drupal.org/user/108450"
  3914. },
  3915. {
  3916. "name": "KarenS",
  3917. "homepage": "https://www.drupal.org/user/45874"
  3918. },
  3919. {
  3920. "name": "wells",
  3921. "homepage": "https://www.drupal.org/user/2452278"
  3922. }
  3923. ],
  3924. "description": "Metatag implementation of Schema.org structured data (JSON-LD)",
  3925. "homepage": "https://www.drupal.org/project/schema_metatag",
  3926. "keywords": [
  3927. "Drupal"
  3928. ],
  3929. "support": {
  3930. "source": "https://git.drupalcode.org/project/schema_metatag",
  3931. "issues": "https://www.drupal.org/project/issues/schema_metatag"
  3932. }
  3933. },
  3934. {
  3935. "name": "drupal/search_api",
  3936. "version": "1.31.0",
  3937. "source": {
  3938. "type": "git",
  3939. "url": "https://git.drupalcode.org/project/search_api.git",
  3940. "reference": "8.x-1.31"
  3941. },
  3942. "dist": {
  3943. "type": "zip",
  3944. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.31.zip",
  3945. "reference": "8.x-1.31",
  3946. "shasum": "ec8436744c34de2ede6370d4dd26875489e761bc"
  3947. },
  3948. "require": {
  3949. "drupal/core": "^10.0"
  3950. },
  3951. "conflict": {
  3952. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  3953. },
  3954. "require-dev": {
  3955. "drupal/language_fallback_fix": "@dev",
  3956. "drupal/search_api_autocomplete": "@dev",
  3957. "drupal/search_api_db": "*"
  3958. },
  3959. "suggest": {
  3960. "drupal/facets": "Adds the ability to create faceted searches.",
  3961. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  3962. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  3963. },
  3964. "type": "drupal-module",
  3965. "extra": {
  3966. "drupal": {
  3967. "version": "8.x-1.31",
  3968. "datestamp": "1700926323",
  3969. "security-coverage": {
  3970. "status": "covered",
  3971. "message": "Covered by Drupal's security advisory policy"
  3972. }
  3973. },
  3974. "drush": {
  3975. "services": {
  3976. "drush.services.yml": "^9 || ^10 || ^11"
  3977. }
  3978. }
  3979. },
  3980. "notification-url": "https://packages.drupal.org/8/downloads",
  3981. "license": [
  3982. "GPL-2.0-or-later"
  3983. ],
  3984. "authors": [
  3985. {
  3986. "name": "Thomas Seidl",
  3987. "homepage": "https://www.drupal.org/u/drunken-monkey"
  3988. },
  3989. {
  3990. "name": "Nick Veenhof",
  3991. "homepage": "https://www.drupal.org/u/nick_vh"
  3992. },
  3993. {
  3994. "name": "See other contributors",
  3995. "homepage": "https://www.drupal.org/node/790418/committers"
  3996. }
  3997. ],
  3998. "description": "Provides a generic framework for modules offering search capabilities.",
  3999. "homepage": "https://www.drupal.org/project/search_api",
  4000. "support": {
  4001. "source": "https://git.drupalcode.org/project/search_api",
  4002. "issues": "https://www.drupal.org/project/issues/search_api",
  4003. "irc": "irc://irc.freenode.org/drupal-search-api"
  4004. }
  4005. },
  4006. {
  4007. "name": "drupal/seven",
  4008. "version": "1.0.0",
  4009. "source": {
  4010. "type": "git",
  4011. "url": "https://git.drupalcode.org/project/seven.git",
  4012. "reference": "1.0.0"
  4013. },
  4014. "dist": {
  4015. "type": "zip",
  4016. "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip",
  4017. "reference": "1.0.0",
  4018. "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd"
  4019. },
  4020. "require": {
  4021. "drupal/core": "^9 || ^10"
  4022. },
  4023. "type": "drupal-theme",
  4024. "extra": {
  4025. "drupal": {
  4026. "version": "1.0.0",
  4027. "datestamp": "1683652106",
  4028. "security-coverage": {
  4029. "status": "covered",
  4030. "message": "Covered by Drupal's security advisory policy"
  4031. }
  4032. }
  4033. },
  4034. "notification-url": "https://packages.drupal.org/8/downloads",
  4035. "license": [
  4036. "GPL-2.0-or-later"
  4037. ],
  4038. "authors": [
  4039. {
  4040. "name": "bnjmnm",
  4041. "homepage": "https://www.drupal.org/user/2369194"
  4042. },
  4043. {
  4044. "name": "lauriii",
  4045. "homepage": "https://www.drupal.org/user/1078742"
  4046. },
  4047. {
  4048. "name": "mcrittenden",
  4049. "homepage": "https://www.drupal.org/user/420631"
  4050. },
  4051. {
  4052. "name": "mrfelton",
  4053. "homepage": "https://www.drupal.org/user/305669"
  4054. },
  4055. {
  4056. "name": "TravisCarden",
  4057. "homepage": "https://www.drupal.org/user/236758"
  4058. }
  4059. ],
  4060. "description": "The Seven theme from Drupal 8/9 moved to contrib",
  4061. "homepage": "https://www.drupal.org/project/seven",
  4062. "support": {
  4063. "source": "https://git.drupalcode.org/project/seven"
  4064. }
  4065. },
  4066. {
  4067. "name": "drupal/site_settings",
  4068. "version": "2.0.0-alpha3",
  4069. "source": {
  4070. "type": "git",
  4071. "url": "https://git.drupalcode.org/project/site_settings.git",
  4072. "reference": "2.0.0-alpha3"
  4073. },
  4074. "dist": {
  4075. "type": "zip",
  4076. "url": "https://ftp.drupal.org/files/projects/site_settings-2.0.0-alpha3.zip",
  4077. "reference": "2.0.0-alpha3",
  4078. "shasum": "c3225d182f3a37592069348c54708b875005990f"
  4079. },
  4080. "require": {
  4081. "drupal/core": "^10"
  4082. },
  4083. "require-dev": {
  4084. "drupal/token": "*"
  4085. },
  4086. "type": "drupal-module",
  4087. "extra": {
  4088. "drupal": {
  4089. "version": "2.0.0-alpha3",
  4090. "datestamp": "1714126786",
  4091. "security-coverage": {
  4092. "status": "not-covered",
  4093. "message": "Alpha releases are not covered by Drupal security advisories."
  4094. }
  4095. }
  4096. },
  4097. "notification-url": "https://packages.drupal.org/8/downloads",
  4098. "license": [
  4099. "GPL-2.0+"
  4100. ],
  4101. "authors": [
  4102. {
  4103. "name": "bobi-mel",
  4104. "homepage": "https://www.drupal.org/user/3741631"
  4105. },
  4106. {
  4107. "name": "bohart",
  4108. "homepage": "https://www.drupal.org/user/289861"
  4109. },
  4110. {
  4111. "name": "scott_euser",
  4112. "homepage": "https://www.drupal.org/user/3267594"
  4113. }
  4114. ],
  4115. "description": "Provides a site settings entity",
  4116. "homepage": "https://www.drupal.org/project/site_settings",
  4117. "keywords": [
  4118. "Drupal"
  4119. ],
  4120. "support": {
  4121. "source": "http://cgit.drupalcode.org/site_settings",
  4122. "issues": "http://drupal.org/project/issues/site_settings"
  4123. }
  4124. },
  4125. {
  4126. "name": "drupal/structure_sync",
  4127. "version": "2.0.7",
  4128. "source": {
  4129. "type": "git",
  4130. "url": "https://git.drupalcode.org/project/structure_sync.git",
  4131. "reference": "2.0.7"
  4132. },
  4133. "dist": {
  4134. "type": "zip",
  4135. "url": "https://ftp.drupal.org/files/projects/structure_sync-2.0.7.zip",
  4136. "reference": "2.0.7",
  4137. "shasum": "d77a8b3cfd614cf7699187fce610e4d490f8f0fc"
  4138. },
  4139. "require": {
  4140. "drupal/core": "^8 || ^9 || ^10 || ^11",
  4141. "php": ">=7.1"
  4142. },
  4143. "require-dev": {
  4144. "drush/drush": "^9 || ^10 || ^11 || ^12"
  4145. },
  4146. "type": "drupal-module",
  4147. "extra": {
  4148. "drupal": {
  4149. "version": "2.0.7",
  4150. "datestamp": "1711457726",
  4151. "security-coverage": {
  4152. "status": "covered",
  4153. "message": "Covered by Drupal's security advisory policy"
  4154. }
  4155. },
  4156. "drush": {
  4157. "services": {
  4158. "drush.services.yml": "^9 || ^10 || ^11 || ^12"
  4159. }
  4160. }
  4161. },
  4162. "notification-url": "https://packages.drupal.org/8/downloads",
  4163. "license": [
  4164. "GPL-2.0-or-later"
  4165. ],
  4166. "authors": [
  4167. {
  4168. "name": "colan",
  4169. "homepage": "https://www.drupal.org/user/58704"
  4170. },
  4171. {
  4172. "name": "fidovdbos",
  4173. "homepage": "https://www.drupal.org/user/1494332"
  4174. },
  4175. {
  4176. "name": "joachim",
  4177. "homepage": "https://www.drupal.org/user/107701"
  4178. },
  4179. {
  4180. "name": "louis-cuny",
  4181. "homepage": "https://www.drupal.org/user/3606332"
  4182. },
  4183. {
  4184. "name": "mparker17",
  4185. "homepage": "https://www.drupal.org/user/536298"
  4186. },
  4187. {
  4188. "name": "spiderman",
  4189. "homepage": "https://www.drupal.org/user/1631"
  4190. },
  4191. {
  4192. "name": "timKruijsen",
  4193. "homepage": "https://www.drupal.org/user/3513437"
  4194. },
  4195. {
  4196. "name": "vinlaurens",
  4197. "homepage": "https://www.drupal.org/user/2945689"
  4198. }
  4199. ],
  4200. "description": "Tool for syncing structural data that is stored as content.",
  4201. "homepage": "https://www.drupal.org/project/structure_sync",
  4202. "support": {
  4203. "source": "https://git.drupalcode.org/project/structure_sync"
  4204. }
  4205. },
  4206. {
  4207. "name": "drupal/subpathauto",
  4208. "version": "1.3.0",
  4209. "source": {
  4210. "type": "git",
  4211. "url": "https://git.drupalcode.org/project/subpathauto.git",
  4212. "reference": "8.x-1.3"
  4213. },
  4214. "dist": {
  4215. "type": "zip",
  4216. "url": "https://ftp.drupal.org/files/projects/subpathauto-8.x-1.3.zip",
  4217. "reference": "8.x-1.3",
  4218. "shasum": "b94e4ec3c8dcd42aa04b6796ae48a9aa1848862d"
  4219. },
  4220. "require": {
  4221. "drupal/core": "^8.8 || ^9 || ^10"
  4222. },
  4223. "require-dev": {
  4224. "drupal/redirect": "*"
  4225. },
  4226. "type": "drupal-module",
  4227. "extra": {
  4228. "drupal": {
  4229. "version": "8.x-1.3",
  4230. "datestamp": "1676316639",
  4231. "security-coverage": {
  4232. "status": "covered",
  4233. "message": "Covered by Drupal's security advisory policy"
  4234. }
  4235. }
  4236. },
  4237. "notification-url": "https://packages.drupal.org/8/downloads",
  4238. "license": [
  4239. "GPL-2.0-or-later"
  4240. ],
  4241. "authors": [
  4242. {
  4243. "name": "Dave Reid",
  4244. "homepage": "https://www.drupal.org/user/53892"
  4245. },
  4246. {
  4247. "name": "lauriii",
  4248. "homepage": "https://www.drupal.org/user/1078742"
  4249. },
  4250. {
  4251. "name": "NickDickinsonWilde",
  4252. "homepage": "https://www.drupal.org/user/3094661"
  4253. }
  4254. ],
  4255. "description": "Provides support for extending sub-paths of URL aliases.",
  4256. "homepage": "https://www.drupal.org/project/subpathauto",
  4257. "support": {
  4258. "source": "https://cgit.drupalcode.org/subpathauto",
  4259. "issues": "https://www.drupal.org/project/issues/subpathauto"
  4260. }
  4261. },
  4262. {
  4263. "name": "drupal/tacjs",
  4264. "version": "6.5.0",
  4265. "source": {
  4266. "type": "git",
  4267. "url": "https://git.drupalcode.org/project/tacjs.git",
  4268. "reference": "8.x-6.5"
  4269. },
  4270. "dist": {
  4271. "type": "zip",
  4272. "url": "https://ftp.drupal.org/files/projects/tacjs-8.x-6.5.zip",
  4273. "reference": "8.x-6.5",
  4274. "shasum": "4a2adba73e81d01b535e632c7c4674a11f6a146c"
  4275. },
  4276. "require": {
  4277. "drupal/core": "^8.8 || ^9 || ^10"
  4278. },
  4279. "type": "drupal-module",
  4280. "extra": {
  4281. "drupal": {
  4282. "version": "8.x-6.5",
  4283. "datestamp": "1711562587",
  4284. "security-coverage": {
  4285. "status": "covered",
  4286. "message": "Covered by Drupal's security advisory policy"
  4287. }
  4288. }
  4289. },
  4290. "notification-url": "https://packages.drupal.org/8/downloads",
  4291. "license": [
  4292. "GPL-2.0-or-later"
  4293. ],
  4294. "authors": [
  4295. {
  4296. "name": "asmaakhalfi",
  4297. "homepage": "https://www.drupal.org/user/3587145"
  4298. },
  4299. {
  4300. "name": "boulaffasae",
  4301. "homepage": "https://www.drupal.org/user/3584750"
  4302. },
  4303. {
  4304. "name": "chaimaariz",
  4305. "homepage": "https://www.drupal.org/user/3549766"
  4306. },
  4307. {
  4308. "name": "k.asmouh",
  4309. "homepage": "https://www.drupal.org/user/3135943"
  4310. },
  4311. {
  4312. "name": "lamlih",
  4313. "homepage": "https://www.drupal.org/user/3708454"
  4314. },
  4315. {
  4316. "name": "mably",
  4317. "homepage": "https://www.drupal.org/user/3375160"
  4318. },
  4319. {
  4320. "name": "netsliver",
  4321. "homepage": "https://www.drupal.org/user/3082011"
  4322. },
  4323. {
  4324. "name": "prudloff",
  4325. "homepage": "https://www.drupal.org/user/3611858"
  4326. }
  4327. ],
  4328. "description": "Comply to the European cookie law using tarteaucitron.js.",
  4329. "homepage": "https://www.drupal.org/project/tacjs",
  4330. "keywords": [
  4331. "Drupal",
  4332. "tacjs"
  4333. ],
  4334. "support": {
  4335. "source": "https://git.drupalcode.org/project/tacjs",
  4336. "issues": "https://www.drupal.org/project/issues/tacjs"
  4337. }
  4338. },
  4339. {
  4340. "name": "drupal/time_range",
  4341. "version": "9.0.2",
  4342. "source": {
  4343. "type": "git",
  4344. "url": "https://git.drupalcode.org/project/time_range.git",
  4345. "reference": "9.0.2"
  4346. },
  4347. "dist": {
  4348. "type": "zip",
  4349. "url": "https://ftp.drupal.org/files/projects/time_range-9.0.2.zip",
  4350. "reference": "9.0.2",
  4351. "shasum": "e0de44c4fc10f86b9ea001458deb7eac02f2ff28"
  4352. },
  4353. "require": {
  4354. "drupal/core": "^8 || ^9 || ^10"
  4355. },
  4356. "type": "drupal-module",
  4357. "extra": {
  4358. "drupal": {
  4359. "version": "9.0.2",
  4360. "datestamp": "1688992195",
  4361. "security-coverage": {
  4362. "status": "covered",
  4363. "message": "Covered by Drupal's security advisory policy"
  4364. }
  4365. }
  4366. },
  4367. "notification-url": "https://packages.drupal.org/8/downloads",
  4368. "license": [
  4369. "GPL-2.0+"
  4370. ],
  4371. "authors": [
  4372. {
  4373. "name": "dravenk",
  4374. "homepage": "https://www.drupal.org/user/3452417"
  4375. }
  4376. ],
  4377. "description": "Provides the form widget to fill in time range.",
  4378. "homepage": "https://github.com/DravenK/time-range.git",
  4379. "support": {
  4380. "source": "https://github.com/DravenK/time-range.git",
  4381. "issues": "https://github.com/DravenK/time-range/issues"
  4382. }
  4383. },
  4384. {
  4385. "name": "drupal/token",
  4386. "version": "1.13.0",
  4387. "source": {
  4388. "type": "git",
  4389. "url": "https://git.drupalcode.org/project/token.git",
  4390. "reference": "8.x-1.13"
  4391. },
  4392. "dist": {
  4393. "type": "zip",
  4394. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.13.zip",
  4395. "reference": "8.x-1.13",
  4396. "shasum": "f2a074b51726de3727c1d900237d6d471806a4d2"
  4397. },
  4398. "require": {
  4399. "drupal/core": "^9.2 || ^10"
  4400. },
  4401. "type": "drupal-module",
  4402. "extra": {
  4403. "drupal": {
  4404. "version": "8.x-1.13",
  4405. "datestamp": "1697885927",
  4406. "security-coverage": {
  4407. "status": "covered",
  4408. "message": "Covered by Drupal's security advisory policy"
  4409. }
  4410. },
  4411. "drush": {
  4412. "services": {
  4413. "drush.services.yml": ">=9"
  4414. }
  4415. }
  4416. },
  4417. "notification-url": "https://packages.drupal.org/8/downloads",
  4418. "license": [
  4419. "GPL-2.0-or-later"
  4420. ],
  4421. "authors": [
  4422. {
  4423. "name": "Berdir",
  4424. "homepage": "https://www.drupal.org/user/214652"
  4425. },
  4426. {
  4427. "name": "Dave Reid",
  4428. "homepage": "https://www.drupal.org/user/53892"
  4429. },
  4430. {
  4431. "name": "eaton",
  4432. "homepage": "https://www.drupal.org/user/16496"
  4433. },
  4434. {
  4435. "name": "fago",
  4436. "homepage": "https://www.drupal.org/user/16747"
  4437. },
  4438. {
  4439. "name": "greggles",
  4440. "homepage": "https://www.drupal.org/user/36762"
  4441. },
  4442. {
  4443. "name": "mikeryan",
  4444. "homepage": "https://www.drupal.org/user/4420"
  4445. }
  4446. ],
  4447. "description": "Provides a user interface for the Token API, some missing core tokens.",
  4448. "homepage": "https://www.drupal.org/project/token",
  4449. "support": {
  4450. "source": "https://git.drupalcode.org/project/token"
  4451. }
  4452. },
  4453. {
  4454. "name": "drupal/video_embed_field",
  4455. "version": "2.5.0",
  4456. "source": {
  4457. "type": "git",
  4458. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  4459. "reference": "8.x-2.5"
  4460. },
  4461. "dist": {
  4462. "type": "zip",
  4463. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.5.zip",
  4464. "reference": "8.x-2.5",
  4465. "shasum": "997ed67b6873e822fe628f87f65bd6da67e7350c"
  4466. },
  4467. "require": {
  4468. "drupal/core": "^9.2 || ^10"
  4469. },
  4470. "require-dev": {
  4471. "drupal/ckeditor": "^1",
  4472. "drupal/colorbox": "^2",
  4473. "drupal/video_embed_media": "*"
  4474. },
  4475. "type": "drupal-module",
  4476. "extra": {
  4477. "drupal": {
  4478. "version": "8.x-2.5",
  4479. "datestamp": "1671413311",
  4480. "security-coverage": {
  4481. "status": "covered",
  4482. "message": "Covered by Drupal's security advisory policy"
  4483. }
  4484. }
  4485. },
  4486. "notification-url": "https://packages.drupal.org/8/downloads",
  4487. "license": [
  4488. "GPL-2.0-or-later"
  4489. ],
  4490. "authors": [
  4491. {
  4492. "name": "abhinesh",
  4493. "homepage": "https://www.drupal.org/user/3645979"
  4494. },
  4495. {
  4496. "name": "jec006",
  4497. "homepage": "https://www.drupal.org/user/855980"
  4498. },
  4499. {
  4500. "name": "plopesc",
  4501. "homepage": "https://www.drupal.org/user/282415"
  4502. },
  4503. {
  4504. "name": "Sam152",
  4505. "homepage": "https://www.drupal.org/user/1485048"
  4506. }
  4507. ],
  4508. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  4509. "homepage": "https://www.drupal.org/project/video_embed_field",
  4510. "support": {
  4511. "source": "https://git.drupalcode.org/project/video_embed_field"
  4512. }
  4513. },
  4514. {
  4515. "name": "drupal/views_url_path_arguments",
  4516. "version": "1.2.0",
  4517. "source": {
  4518. "type": "git",
  4519. "url": "https://git.drupalcode.org/project/views_url_path_arguments.git",
  4520. "reference": "8.x-1.2"
  4521. },
  4522. "dist": {
  4523. "type": "zip",
  4524. "url": "https://ftp.drupal.org/files/projects/views_url_path_arguments-8.x-1.2.zip",
  4525. "reference": "8.x-1.2",
  4526. "shasum": "949023c9c1dd31f91d60e76580dc9d5c2e0732d4"
  4527. },
  4528. "require": {
  4529. "drupal/core": "^8 || ^9 || ^10"
  4530. },
  4531. "type": "drupal-module",
  4532. "extra": {
  4533. "drupal": {
  4534. "version": "8.x-1.2",
  4535. "datestamp": "1689607584",
  4536. "security-coverage": {
  4537. "status": "covered",
  4538. "message": "Covered by Drupal's security advisory policy"
  4539. }
  4540. }
  4541. },
  4542. "notification-url": "https://packages.drupal.org/8/downloads",
  4543. "license": [
  4544. "GPL-2.0+"
  4545. ],
  4546. "authors": [
  4547. {
  4548. "name": "heddn",
  4549. "homepage": "https://www.drupal.org/user/1463982"
  4550. }
  4551. ],
  4552. "description": "Simple module to convert a view argument's entity id into its url path.",
  4553. "homepage": "https://www.drupal.org/project/views_url_path_arguments",
  4554. "keywords": [
  4555. "Drupal"
  4556. ],
  4557. "support": {
  4558. "source": "http://cgit.drupalcode.org/views_url_path_arguments",
  4559. "issues": "https://www.drupal.org/project/issues/views_url_path_arguments"
  4560. }
  4561. },
  4562. {
  4563. "name": "drupal/yaml_editor",
  4564. "version": "1.2.0",
  4565. "source": {
  4566. "type": "git",
  4567. "url": "https://git.drupalcode.org/project/yaml_editor.git",
  4568. "reference": "8.x-1.2"
  4569. },
  4570. "dist": {
  4571. "type": "zip",
  4572. "url": "https://ftp.drupal.org/files/projects/yaml_editor-8.x-1.2.zip",
  4573. "reference": "8.x-1.2",
  4574. "shasum": "7dc32d1f000fafa6a6f4e65c4aeabb1ecb18d25d"
  4575. },
  4576. "require": {
  4577. "drupal/core": "^8 || ^9 || ^10"
  4578. },
  4579. "type": "drupal-module",
  4580. "extra": {
  4581. "drupal": {
  4582. "version": "8.x-1.2",
  4583. "datestamp": "1692008740",
  4584. "security-coverage": {
  4585. "status": "covered",
  4586. "message": "Covered by Drupal's security advisory policy"
  4587. }
  4588. }
  4589. },
  4590. "notification-url": "https://packages.drupal.org/8/downloads",
  4591. "license": [
  4592. "GPL-2.0-or-later"
  4593. ],
  4594. "authors": [
  4595. {
  4596. "name": "yannickoo",
  4597. "homepage": "https://www.drupal.org/user/531118"
  4598. }
  4599. ],
  4600. "description": "Adds an editor for YAML configuration textareas.",
  4601. "homepage": "https://www.drupal.org/project/yaml_editor",
  4602. "support": {
  4603. "source": "https://git.drupalcode.org/project/yaml_editor"
  4604. }
  4605. },
  4606. {
  4607. "name": "drush/drush",
  4608. "version": "12.4.3",
  4609. "source": {
  4610. "type": "git",
  4611. "url": "https://github.com/drush-ops/drush.git",
  4612. "reference": "8245acede57ecc62a90aa0f19ff3b29e5f11f971"
  4613. },
  4614. "dist": {
  4615. "type": "zip",
  4616. "url": "https://api.github.com/repos/drush-ops/drush/zipball/8245acede57ecc62a90aa0f19ff3b29e5f11f971",
  4617. "reference": "8245acede57ecc62a90aa0f19ff3b29e5f11f971",
  4618. "shasum": ""
  4619. },
  4620. "require": {
  4621. "chi-teck/drupal-code-generator": "^3.0",
  4622. "composer-runtime-api": "^2.2",
  4623. "composer/semver": "^1.4 || ^3",
  4624. "consolidation/annotated-command": "^4.9.1",
  4625. "consolidation/config": "^2.1.2",
  4626. "consolidation/filter-via-dot-access-data": "^2.0.2",
  4627. "consolidation/output-formatters": "^4.3.2",
  4628. "consolidation/robo": "^4.0.6",
  4629. "consolidation/site-alias": "^4",
  4630. "consolidation/site-process": "^5.2.0",
  4631. "ext-dom": "*",
  4632. "grasmash/yaml-cli": "^3.1",
  4633. "guzzlehttp/guzzle": "^7.0",
  4634. "league/container": "^4",
  4635. "php": ">=8.1",
  4636. "psy/psysh": "~0.11",
  4637. "symfony/event-dispatcher": "^6",
  4638. "symfony/filesystem": "^6.1",
  4639. "symfony/finder": "^6",
  4640. "symfony/var-dumper": "^6.0",
  4641. "symfony/yaml": "^6.0",
  4642. "webflo/drupal-finder": "^1.2"
  4643. },
  4644. "conflict": {
  4645. "drupal/core": "< 10.0",
  4646. "drupal/migrate_run": "*",
  4647. "drupal/migrate_tools": "<= 5"
  4648. },
  4649. "require-dev": {
  4650. "composer/installers": "^2",
  4651. "cweagans/composer-patches": "~1.0",
  4652. "drupal/core-recommended": "^10",
  4653. "drupal/semver_example": "2.3.0",
  4654. "phpunit/phpunit": "^9",
  4655. "rector/rector": "^0.12",
  4656. "squizlabs/php_codesniffer": "^3.7"
  4657. },
  4658. "bin": [
  4659. "drush"
  4660. ],
  4661. "type": "library",
  4662. "extra": {
  4663. "installer-paths": {
  4664. "sut/core": [
  4665. "type:drupal-core"
  4666. ],
  4667. "sut/libraries/{$name}": [
  4668. "type:drupal-library"
  4669. ],
  4670. "sut/modules/unish/{$name}": [
  4671. "drupal/devel"
  4672. ],
  4673. "sut/themes/unish/{$name}": [
  4674. "drupal/empty_theme"
  4675. ],
  4676. "sut/modules/contrib/{$name}": [
  4677. "type:drupal-module"
  4678. ],
  4679. "sut/profiles/contrib/{$name}": [
  4680. "type:drupal-profile"
  4681. ],
  4682. "sut/themes/contrib/{$name}": [
  4683. "type:drupal-theme"
  4684. ],
  4685. "sut/drush/contrib/{$name}": [
  4686. "type:drupal-drush"
  4687. ]
  4688. }
  4689. },
  4690. "autoload": {
  4691. "psr-4": {
  4692. "Drush\\": "src/"
  4693. }
  4694. },
  4695. "notification-url": "https://packagist.org/downloads/",
  4696. "license": [
  4697. "GPL-2.0-or-later"
  4698. ],
  4699. "authors": [
  4700. {
  4701. "name": "Moshe Weitzman",
  4702. "email": "weitzman@tejasa.com"
  4703. },
  4704. {
  4705. "name": "Owen Barton",
  4706. "email": "drupal@owenbarton.com"
  4707. },
  4708. {
  4709. "name": "Greg Anderson",
  4710. "email": "greg.1.anderson@greenknowe.org"
  4711. },
  4712. {
  4713. "name": "Jonathan Araña Cruz",
  4714. "email": "jonhattan@faita.net"
  4715. },
  4716. {
  4717. "name": "Jonathan Hedstrom",
  4718. "email": "jhedstrom@gmail.com"
  4719. },
  4720. {
  4721. "name": "Christopher Gervais",
  4722. "email": "chris@ergonlogic.com"
  4723. },
  4724. {
  4725. "name": "Dave Reid",
  4726. "email": "dave@davereid.net"
  4727. },
  4728. {
  4729. "name": "Damian Lee",
  4730. "email": "damiankloip@googlemail.com"
  4731. }
  4732. ],
  4733. "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.",
  4734. "homepage": "http://www.drush.org",
  4735. "support": {
  4736. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  4737. "issues": "https://github.com/drush-ops/drush/issues",
  4738. "security": "https://github.com/drush-ops/drush/security/advisories",
  4739. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  4740. "source": "https://github.com/drush-ops/drush/tree/12.4.3"
  4741. },
  4742. "funding": [
  4743. {
  4744. "url": "https://github.com/weitzman",
  4745. "type": "github"
  4746. }
  4747. ],
  4748. "time": "2023-11-16T22:57:24+00:00"
  4749. },
  4750. {
  4751. "name": "egulias/email-validator",
  4752. "version": "4.0.2",
  4753. "source": {
  4754. "type": "git",
  4755. "url": "https://github.com/egulias/EmailValidator.git",
  4756. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  4757. },
  4758. "dist": {
  4759. "type": "zip",
  4760. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  4761. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  4762. "shasum": ""
  4763. },
  4764. "require": {
  4765. "doctrine/lexer": "^2.0 || ^3.0",
  4766. "php": ">=8.1",
  4767. "symfony/polyfill-intl-idn": "^1.26"
  4768. },
  4769. "require-dev": {
  4770. "phpunit/phpunit": "^10.2",
  4771. "vimeo/psalm": "^5.12"
  4772. },
  4773. "suggest": {
  4774. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  4775. },
  4776. "type": "library",
  4777. "extra": {
  4778. "branch-alias": {
  4779. "dev-master": "4.0.x-dev"
  4780. }
  4781. },
  4782. "autoload": {
  4783. "psr-4": {
  4784. "Egulias\\EmailValidator\\": "src"
  4785. }
  4786. },
  4787. "notification-url": "https://packagist.org/downloads/",
  4788. "license": [
  4789. "MIT"
  4790. ],
  4791. "authors": [
  4792. {
  4793. "name": "Eduardo Gulias Davis"
  4794. }
  4795. ],
  4796. "description": "A library for validating emails against several RFCs",
  4797. "homepage": "https://github.com/egulias/EmailValidator",
  4798. "keywords": [
  4799. "email",
  4800. "emailvalidation",
  4801. "emailvalidator",
  4802. "validation",
  4803. "validator"
  4804. ],
  4805. "support": {
  4806. "issues": "https://github.com/egulias/EmailValidator/issues",
  4807. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  4808. },
  4809. "funding": [
  4810. {
  4811. "url": "https://github.com/egulias",
  4812. "type": "github"
  4813. }
  4814. ],
  4815. "time": "2023-10-06T06:47:41+00:00"
  4816. },
  4817. {
  4818. "name": "grasmash/expander",
  4819. "version": "3.0.0",
  4820. "source": {
  4821. "type": "git",
  4822. "url": "https://github.com/grasmash/expander.git",
  4823. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82"
  4824. },
  4825. "dist": {
  4826. "type": "zip",
  4827. "url": "https://api.github.com/repos/grasmash/expander/zipball/bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  4828. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  4829. "shasum": ""
  4830. },
  4831. "require": {
  4832. "dflydev/dot-access-data": "^3.0.0",
  4833. "php": ">=8.0",
  4834. "psr/log": "^2 | ^3"
  4835. },
  4836. "require-dev": {
  4837. "greg-1-anderson/composer-test-scenarios": "^1",
  4838. "php-coveralls/php-coveralls": "^2.5",
  4839. "phpunit/phpunit": "^9",
  4840. "squizlabs/php_codesniffer": "^3.3"
  4841. },
  4842. "type": "library",
  4843. "extra": {
  4844. "branch-alias": {
  4845. "dev-master": "1.x-dev"
  4846. }
  4847. },
  4848. "autoload": {
  4849. "psr-4": {
  4850. "Grasmash\\Expander\\": "src/"
  4851. }
  4852. },
  4853. "notification-url": "https://packagist.org/downloads/",
  4854. "license": [
  4855. "MIT"
  4856. ],
  4857. "authors": [
  4858. {
  4859. "name": "Matthew Grasmick"
  4860. }
  4861. ],
  4862. "description": "Expands internal property references in PHP arrays file.",
  4863. "support": {
  4864. "issues": "https://github.com/grasmash/expander/issues",
  4865. "source": "https://github.com/grasmash/expander/tree/3.0.0"
  4866. },
  4867. "time": "2022-05-10T13:14:49+00:00"
  4868. },
  4869. {
  4870. "name": "grasmash/yaml-cli",
  4871. "version": "3.1.0",
  4872. "source": {
  4873. "type": "git",
  4874. "url": "https://github.com/grasmash/yaml-cli.git",
  4875. "reference": "00f3fd775f6abbfacd44432f1999c3c3b02791f0"
  4876. },
  4877. "dist": {
  4878. "type": "zip",
  4879. "url": "https://api.github.com/repos/grasmash/yaml-cli/zipball/00f3fd775f6abbfacd44432f1999c3c3b02791f0",
  4880. "reference": "00f3fd775f6abbfacd44432f1999c3c3b02791f0",
  4881. "shasum": ""
  4882. },
  4883. "require": {
  4884. "dflydev/dot-access-data": "^3",
  4885. "php": ">=8.0",
  4886. "symfony/console": "^6",
  4887. "symfony/filesystem": "^6",
  4888. "symfony/yaml": "^6"
  4889. },
  4890. "require-dev": {
  4891. "php-coveralls/php-coveralls": "^2",
  4892. "phpunit/phpunit": "^9",
  4893. "squizlabs/php_codesniffer": "^3.0"
  4894. },
  4895. "bin": [
  4896. "bin/yaml-cli"
  4897. ],
  4898. "type": "library",
  4899. "extra": {
  4900. "branch-alias": {
  4901. "dev-master": "3.x-dev"
  4902. }
  4903. },
  4904. "autoload": {
  4905. "psr-4": {
  4906. "Grasmash\\YamlCli\\": "src/"
  4907. }
  4908. },
  4909. "notification-url": "https://packagist.org/downloads/",
  4910. "license": [
  4911. "MIT"
  4912. ],
  4913. "authors": [
  4914. {
  4915. "name": "Matthew Grasmick"
  4916. }
  4917. ],
  4918. "description": "A command line tool for reading and manipulating yaml files.",
  4919. "support": {
  4920. "issues": "https://github.com/grasmash/yaml-cli/issues",
  4921. "source": "https://github.com/grasmash/yaml-cli/tree/3.1.0"
  4922. },
  4923. "time": "2022-05-09T20:22:34+00:00"
  4924. },
  4925. {
  4926. "name": "guzzlehttp/guzzle",
  4927. "version": "7.8.1",
  4928. "source": {
  4929. "type": "git",
  4930. "url": "https://github.com/guzzle/guzzle.git",
  4931. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  4932. },
  4933. "dist": {
  4934. "type": "zip",
  4935. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  4936. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  4937. "shasum": ""
  4938. },
  4939. "require": {
  4940. "ext-json": "*",
  4941. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  4942. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  4943. "php": "^7.2.5 || ^8.0",
  4944. "psr/http-client": "^1.0",
  4945. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  4946. },
  4947. "provide": {
  4948. "psr/http-client-implementation": "1.0"
  4949. },
  4950. "require-dev": {
  4951. "bamarni/composer-bin-plugin": "^1.8.2",
  4952. "ext-curl": "*",
  4953. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  4954. "php-http/message-factory": "^1.1",
  4955. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  4956. "psr/log": "^1.1 || ^2.0 || ^3.0"
  4957. },
  4958. "suggest": {
  4959. "ext-curl": "Required for CURL handler support",
  4960. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  4961. "psr/log": "Required for using the Log middleware"
  4962. },
  4963. "type": "library",
  4964. "extra": {
  4965. "bamarni-bin": {
  4966. "bin-links": true,
  4967. "forward-command": false
  4968. }
  4969. },
  4970. "autoload": {
  4971. "files": [
  4972. "src/functions_include.php"
  4973. ],
  4974. "psr-4": {
  4975. "GuzzleHttp\\": "src/"
  4976. }
  4977. },
  4978. "notification-url": "https://packagist.org/downloads/",
  4979. "license": [
  4980. "MIT"
  4981. ],
  4982. "authors": [
  4983. {
  4984. "name": "Graham Campbell",
  4985. "email": "hello@gjcampbell.co.uk",
  4986. "homepage": "https://github.com/GrahamCampbell"
  4987. },
  4988. {
  4989. "name": "Michael Dowling",
  4990. "email": "mtdowling@gmail.com",
  4991. "homepage": "https://github.com/mtdowling"
  4992. },
  4993. {
  4994. "name": "Jeremy Lindblom",
  4995. "email": "jeremeamia@gmail.com",
  4996. "homepage": "https://github.com/jeremeamia"
  4997. },
  4998. {
  4999. "name": "George Mponos",
  5000. "email": "gmponos@gmail.com",
  5001. "homepage": "https://github.com/gmponos"
  5002. },
  5003. {
  5004. "name": "Tobias Nyholm",
  5005. "email": "tobias.nyholm@gmail.com",
  5006. "homepage": "https://github.com/Nyholm"
  5007. },
  5008. {
  5009. "name": "Márk Sági-Kazár",
  5010. "email": "mark.sagikazar@gmail.com",
  5011. "homepage": "https://github.com/sagikazarmark"
  5012. },
  5013. {
  5014. "name": "Tobias Schultze",
  5015. "email": "webmaster@tubo-world.de",
  5016. "homepage": "https://github.com/Tobion"
  5017. }
  5018. ],
  5019. "description": "Guzzle is a PHP HTTP client library",
  5020. "keywords": [
  5021. "client",
  5022. "curl",
  5023. "framework",
  5024. "http",
  5025. "http client",
  5026. "psr-18",
  5027. "psr-7",
  5028. "rest",
  5029. "web service"
  5030. ],
  5031. "support": {
  5032. "issues": "https://github.com/guzzle/guzzle/issues",
  5033. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  5034. },
  5035. "funding": [
  5036. {
  5037. "url": "https://github.com/GrahamCampbell",
  5038. "type": "github"
  5039. },
  5040. {
  5041. "url": "https://github.com/Nyholm",
  5042. "type": "github"
  5043. },
  5044. {
  5045. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  5046. "type": "tidelift"
  5047. }
  5048. ],
  5049. "time": "2023-12-03T20:35:24+00:00"
  5050. },
  5051. {
  5052. "name": "guzzlehttp/promises",
  5053. "version": "2.0.2",
  5054. "source": {
  5055. "type": "git",
  5056. "url": "https://github.com/guzzle/promises.git",
  5057. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  5058. },
  5059. "dist": {
  5060. "type": "zip",
  5061. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  5062. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  5063. "shasum": ""
  5064. },
  5065. "require": {
  5066. "php": "^7.2.5 || ^8.0"
  5067. },
  5068. "require-dev": {
  5069. "bamarni/composer-bin-plugin": "^1.8.2",
  5070. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  5071. },
  5072. "type": "library",
  5073. "extra": {
  5074. "bamarni-bin": {
  5075. "bin-links": true,
  5076. "forward-command": false
  5077. }
  5078. },
  5079. "autoload": {
  5080. "psr-4": {
  5081. "GuzzleHttp\\Promise\\": "src/"
  5082. }
  5083. },
  5084. "notification-url": "https://packagist.org/downloads/",
  5085. "license": [
  5086. "MIT"
  5087. ],
  5088. "authors": [
  5089. {
  5090. "name": "Graham Campbell",
  5091. "email": "hello@gjcampbell.co.uk",
  5092. "homepage": "https://github.com/GrahamCampbell"
  5093. },
  5094. {
  5095. "name": "Michael Dowling",
  5096. "email": "mtdowling@gmail.com",
  5097. "homepage": "https://github.com/mtdowling"
  5098. },
  5099. {
  5100. "name": "Tobias Nyholm",
  5101. "email": "tobias.nyholm@gmail.com",
  5102. "homepage": "https://github.com/Nyholm"
  5103. },
  5104. {
  5105. "name": "Tobias Schultze",
  5106. "email": "webmaster@tubo-world.de",
  5107. "homepage": "https://github.com/Tobion"
  5108. }
  5109. ],
  5110. "description": "Guzzle promises library",
  5111. "keywords": [
  5112. "promise"
  5113. ],
  5114. "support": {
  5115. "issues": "https://github.com/guzzle/promises/issues",
  5116. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  5117. },
  5118. "funding": [
  5119. {
  5120. "url": "https://github.com/GrahamCampbell",
  5121. "type": "github"
  5122. },
  5123. {
  5124. "url": "https://github.com/Nyholm",
  5125. "type": "github"
  5126. },
  5127. {
  5128. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  5129. "type": "tidelift"
  5130. }
  5131. ],
  5132. "time": "2023-12-03T20:19:20+00:00"
  5133. },
  5134. {
  5135. "name": "guzzlehttp/psr7",
  5136. "version": "2.6.2",
  5137. "source": {
  5138. "type": "git",
  5139. "url": "https://github.com/guzzle/psr7.git",
  5140. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  5141. },
  5142. "dist": {
  5143. "type": "zip",
  5144. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  5145. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  5146. "shasum": ""
  5147. },
  5148. "require": {
  5149. "php": "^7.2.5 || ^8.0",
  5150. "psr/http-factory": "^1.0",
  5151. "psr/http-message": "^1.1 || ^2.0",
  5152. "ralouphie/getallheaders": "^3.0"
  5153. },
  5154. "provide": {
  5155. "psr/http-factory-implementation": "1.0",
  5156. "psr/http-message-implementation": "1.0"
  5157. },
  5158. "require-dev": {
  5159. "bamarni/composer-bin-plugin": "^1.8.2",
  5160. "http-interop/http-factory-tests": "^0.9",
  5161. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  5162. },
  5163. "suggest": {
  5164. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  5165. },
  5166. "type": "library",
  5167. "extra": {
  5168. "bamarni-bin": {
  5169. "bin-links": true,
  5170. "forward-command": false
  5171. }
  5172. },
  5173. "autoload": {
  5174. "psr-4": {
  5175. "GuzzleHttp\\Psr7\\": "src/"
  5176. }
  5177. },
  5178. "notification-url": "https://packagist.org/downloads/",
  5179. "license": [
  5180. "MIT"
  5181. ],
  5182. "authors": [
  5183. {
  5184. "name": "Graham Campbell",
  5185. "email": "hello@gjcampbell.co.uk",
  5186. "homepage": "https://github.com/GrahamCampbell"
  5187. },
  5188. {
  5189. "name": "Michael Dowling",
  5190. "email": "mtdowling@gmail.com",
  5191. "homepage": "https://github.com/mtdowling"
  5192. },
  5193. {
  5194. "name": "George Mponos",
  5195. "email": "gmponos@gmail.com",
  5196. "homepage": "https://github.com/gmponos"
  5197. },
  5198. {
  5199. "name": "Tobias Nyholm",
  5200. "email": "tobias.nyholm@gmail.com",
  5201. "homepage": "https://github.com/Nyholm"
  5202. },
  5203. {
  5204. "name": "Márk Sági-Kazár",
  5205. "email": "mark.sagikazar@gmail.com",
  5206. "homepage": "https://github.com/sagikazarmark"
  5207. },
  5208. {
  5209. "name": "Tobias Schultze",
  5210. "email": "webmaster@tubo-world.de",
  5211. "homepage": "https://github.com/Tobion"
  5212. },
  5213. {
  5214. "name": "Márk Sági-Kazár",
  5215. "email": "mark.sagikazar@gmail.com",
  5216. "homepage": "https://sagikazarmark.hu"
  5217. }
  5218. ],
  5219. "description": "PSR-7 message implementation that also provides common utility methods",
  5220. "keywords": [
  5221. "http",
  5222. "message",
  5223. "psr-7",
  5224. "request",
  5225. "response",
  5226. "stream",
  5227. "uri",
  5228. "url"
  5229. ],
  5230. "support": {
  5231. "issues": "https://github.com/guzzle/psr7/issues",
  5232. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  5233. },
  5234. "funding": [
  5235. {
  5236. "url": "https://github.com/GrahamCampbell",
  5237. "type": "github"
  5238. },
  5239. {
  5240. "url": "https://github.com/Nyholm",
  5241. "type": "github"
  5242. },
  5243. {
  5244. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  5245. "type": "tidelift"
  5246. }
  5247. ],
  5248. "time": "2023-12-03T20:05:35+00:00"
  5249. },
  5250. {
  5251. "name": "league/container",
  5252. "version": "4.2.0",
  5253. "source": {
  5254. "type": "git",
  5255. "url": "https://github.com/thephpleague/container.git",
  5256. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab"
  5257. },
  5258. "dist": {
  5259. "type": "zip",
  5260. "url": "https://api.github.com/repos/thephpleague/container/zipball/375d13cb828649599ef5d48a339c4af7a26cd0ab",
  5261. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab",
  5262. "shasum": ""
  5263. },
  5264. "require": {
  5265. "php": "^7.2 || ^8.0",
  5266. "psr/container": "^1.1 || ^2.0"
  5267. },
  5268. "provide": {
  5269. "psr/container-implementation": "^1.0"
  5270. },
  5271. "replace": {
  5272. "orno/di": "~2.0"
  5273. },
  5274. "require-dev": {
  5275. "nette/php-generator": "^3.4",
  5276. "nikic/php-parser": "^4.10",
  5277. "phpstan/phpstan": "^0.12.47",
  5278. "phpunit/phpunit": "^8.5.17",
  5279. "roave/security-advisories": "dev-latest",
  5280. "scrutinizer/ocular": "^1.8",
  5281. "squizlabs/php_codesniffer": "^3.6"
  5282. },
  5283. "type": "library",
  5284. "extra": {
  5285. "branch-alias": {
  5286. "dev-master": "4.x-dev",
  5287. "dev-4.x": "4.x-dev",
  5288. "dev-3.x": "3.x-dev",
  5289. "dev-2.x": "2.x-dev",
  5290. "dev-1.x": "1.x-dev"
  5291. }
  5292. },
  5293. "autoload": {
  5294. "psr-4": {
  5295. "League\\Container\\": "src"
  5296. }
  5297. },
  5298. "notification-url": "https://packagist.org/downloads/",
  5299. "license": [
  5300. "MIT"
  5301. ],
  5302. "authors": [
  5303. {
  5304. "name": "Phil Bennett",
  5305. "email": "mail@philbennett.co.uk",
  5306. "role": "Developer"
  5307. }
  5308. ],
  5309. "description": "A fast and intuitive dependency injection container.",
  5310. "homepage": "https://github.com/thephpleague/container",
  5311. "keywords": [
  5312. "container",
  5313. "dependency",
  5314. "di",
  5315. "injection",
  5316. "league",
  5317. "provider",
  5318. "service"
  5319. ],
  5320. "support": {
  5321. "issues": "https://github.com/thephpleague/container/issues",
  5322. "source": "https://github.com/thephpleague/container/tree/4.2.0"
  5323. },
  5324. "funding": [
  5325. {
  5326. "url": "https://github.com/philipobenito",
  5327. "type": "github"
  5328. }
  5329. ],
  5330. "time": "2021-11-16T10:29:06+00:00"
  5331. },
  5332. {
  5333. "name": "masterminds/html5",
  5334. "version": "2.8.1",
  5335. "source": {
  5336. "type": "git",
  5337. "url": "https://github.com/Masterminds/html5-php.git",
  5338. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf"
  5339. },
  5340. "dist": {
  5341. "type": "zip",
  5342. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f47dcf3c70c584de14f21143c55d9939631bc6cf",
  5343. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf",
  5344. "shasum": ""
  5345. },
  5346. "require": {
  5347. "ext-dom": "*",
  5348. "php": ">=5.3.0"
  5349. },
  5350. "require-dev": {
  5351. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8"
  5352. },
  5353. "type": "library",
  5354. "extra": {
  5355. "branch-alias": {
  5356. "dev-master": "2.7-dev"
  5357. }
  5358. },
  5359. "autoload": {
  5360. "psr-4": {
  5361. "Masterminds\\": "src"
  5362. }
  5363. },
  5364. "notification-url": "https://packagist.org/downloads/",
  5365. "license": [
  5366. "MIT"
  5367. ],
  5368. "authors": [
  5369. {
  5370. "name": "Matt Butcher",
  5371. "email": "technosophos@gmail.com"
  5372. },
  5373. {
  5374. "name": "Matt Farina",
  5375. "email": "matt@mattfarina.com"
  5376. },
  5377. {
  5378. "name": "Asmir Mustafic",
  5379. "email": "goetas@gmail.com"
  5380. }
  5381. ],
  5382. "description": "An HTML5 parser and serializer.",
  5383. "homepage": "http://masterminds.github.io/html5-php",
  5384. "keywords": [
  5385. "HTML5",
  5386. "dom",
  5387. "html",
  5388. "parser",
  5389. "querypath",
  5390. "serializer",
  5391. "xml"
  5392. ],
  5393. "support": {
  5394. "issues": "https://github.com/Masterminds/html5-php/issues",
  5395. "source": "https://github.com/Masterminds/html5-php/tree/2.8.1"
  5396. },
  5397. "time": "2023-05-10T11:58:31+00:00"
  5398. },
  5399. {
  5400. "name": "mck89/peast",
  5401. "version": "v1.15.4",
  5402. "source": {
  5403. "type": "git",
  5404. "url": "https://github.com/mck89/peast.git",
  5405. "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18"
  5406. },
  5407. "dist": {
  5408. "type": "zip",
  5409. "url": "https://api.github.com/repos/mck89/peast/zipball/1df4dc28a6b5bb7ab117ab073c1712256e954e18",
  5410. "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18",
  5411. "shasum": ""
  5412. },
  5413. "require": {
  5414. "ext-mbstring": "*",
  5415. "php": ">=5.4.0"
  5416. },
  5417. "require-dev": {
  5418. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  5419. },
  5420. "type": "library",
  5421. "extra": {
  5422. "branch-alias": {
  5423. "dev-master": "1.15.4-dev"
  5424. }
  5425. },
  5426. "autoload": {
  5427. "psr-4": {
  5428. "Peast\\": "lib/Peast/"
  5429. }
  5430. },
  5431. "notification-url": "https://packagist.org/downloads/",
  5432. "license": [
  5433. "BSD-3-Clause"
  5434. ],
  5435. "authors": [
  5436. {
  5437. "name": "Marco Marchiò",
  5438. "email": "marco.mm89@gmail.com"
  5439. }
  5440. ],
  5441. "description": "Peast is PHP library that generates AST for JavaScript code",
  5442. "support": {
  5443. "issues": "https://github.com/mck89/peast/issues",
  5444. "source": "https://github.com/mck89/peast/tree/v1.15.4"
  5445. },
  5446. "time": "2023-08-12T08:29:29+00:00"
  5447. },
  5448. {
  5449. "name": "nikic/php-parser",
  5450. "version": "v5.0.1",
  5451. "source": {
  5452. "type": "git",
  5453. "url": "https://github.com/nikic/PHP-Parser.git",
  5454. "reference": "2218c2252c874a4624ab2f613d86ac32d227bc69"
  5455. },
  5456. "dist": {
  5457. "type": "zip",
  5458. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/2218c2252c874a4624ab2f613d86ac32d227bc69",
  5459. "reference": "2218c2252c874a4624ab2f613d86ac32d227bc69",
  5460. "shasum": ""
  5461. },
  5462. "require": {
  5463. "ext-ctype": "*",
  5464. "ext-json": "*",
  5465. "ext-tokenizer": "*",
  5466. "php": ">=7.4"
  5467. },
  5468. "require-dev": {
  5469. "ircmaxell/php-yacc": "^0.0.7",
  5470. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5471. },
  5472. "bin": [
  5473. "bin/php-parse"
  5474. ],
  5475. "type": "library",
  5476. "extra": {
  5477. "branch-alias": {
  5478. "dev-master": "5.0-dev"
  5479. }
  5480. },
  5481. "autoload": {
  5482. "psr-4": {
  5483. "PhpParser\\": "lib/PhpParser"
  5484. }
  5485. },
  5486. "notification-url": "https://packagist.org/downloads/",
  5487. "license": [
  5488. "BSD-3-Clause"
  5489. ],
  5490. "authors": [
  5491. {
  5492. "name": "Nikita Popov"
  5493. }
  5494. ],
  5495. "description": "A PHP parser written in PHP",
  5496. "keywords": [
  5497. "parser",
  5498. "php"
  5499. ],
  5500. "support": {
  5501. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5502. "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.1"
  5503. },
  5504. "time": "2024-02-21T19:24:10+00:00"
  5505. },
  5506. {
  5507. "name": "pear/archive_tar",
  5508. "version": "1.4.14",
  5509. "source": {
  5510. "type": "git",
  5511. "url": "https://github.com/pear/Archive_Tar.git",
  5512. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  5513. },
  5514. "dist": {
  5515. "type": "zip",
  5516. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  5517. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  5518. "shasum": ""
  5519. },
  5520. "require": {
  5521. "pear/pear-core-minimal": "^1.10.0alpha2",
  5522. "php": ">=5.2.0"
  5523. },
  5524. "require-dev": {
  5525. "phpunit/phpunit": "*"
  5526. },
  5527. "suggest": {
  5528. "ext-bz2": "Bz2 compression support.",
  5529. "ext-xz": "Lzma2 compression support.",
  5530. "ext-zlib": "Gzip compression support."
  5531. },
  5532. "type": "library",
  5533. "extra": {
  5534. "branch-alias": {
  5535. "dev-master": "1.4.x-dev"
  5536. }
  5537. },
  5538. "autoload": {
  5539. "psr-0": {
  5540. "Archive_Tar": ""
  5541. }
  5542. },
  5543. "notification-url": "https://packagist.org/downloads/",
  5544. "include-path": [
  5545. "./"
  5546. ],
  5547. "license": [
  5548. "BSD-3-Clause"
  5549. ],
  5550. "authors": [
  5551. {
  5552. "name": "Vincent Blavet",
  5553. "email": "vincent@phpconcept.net"
  5554. },
  5555. {
  5556. "name": "Greg Beaver",
  5557. "email": "greg@chiaraquartet.net"
  5558. },
  5559. {
  5560. "name": "Michiel Rook",
  5561. "email": "mrook@php.net"
  5562. }
  5563. ],
  5564. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  5565. "homepage": "https://github.com/pear/Archive_Tar",
  5566. "keywords": [
  5567. "archive",
  5568. "tar"
  5569. ],
  5570. "support": {
  5571. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  5572. "source": "https://github.com/pear/Archive_Tar"
  5573. },
  5574. "funding": [
  5575. {
  5576. "url": "https://github.com/mrook",
  5577. "type": "github"
  5578. },
  5579. {
  5580. "url": "https://www.patreon.com/michielrook",
  5581. "type": "patreon"
  5582. }
  5583. ],
  5584. "time": "2021-07-20T13:53:39+00:00"
  5585. },
  5586. {
  5587. "name": "pear/console_getopt",
  5588. "version": "v1.4.3",
  5589. "source": {
  5590. "type": "git",
  5591. "url": "https://github.com/pear/Console_Getopt.git",
  5592. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  5593. },
  5594. "dist": {
  5595. "type": "zip",
  5596. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  5597. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  5598. "shasum": ""
  5599. },
  5600. "type": "library",
  5601. "autoload": {
  5602. "psr-0": {
  5603. "Console": "./"
  5604. }
  5605. },
  5606. "notification-url": "https://packagist.org/downloads/",
  5607. "include-path": [
  5608. "./"
  5609. ],
  5610. "license": [
  5611. "BSD-2-Clause"
  5612. ],
  5613. "authors": [
  5614. {
  5615. "name": "Andrei Zmievski",
  5616. "email": "andrei@php.net",
  5617. "role": "Lead"
  5618. },
  5619. {
  5620. "name": "Stig Bakken",
  5621. "email": "stig@php.net",
  5622. "role": "Developer"
  5623. },
  5624. {
  5625. "name": "Greg Beaver",
  5626. "email": "cellog@php.net",
  5627. "role": "Helper"
  5628. }
  5629. ],
  5630. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  5631. "support": {
  5632. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  5633. "source": "https://github.com/pear/Console_Getopt"
  5634. },
  5635. "time": "2019-11-20T18:27:48+00:00"
  5636. },
  5637. {
  5638. "name": "pear/pear-core-minimal",
  5639. "version": "v1.10.14",
  5640. "source": {
  5641. "type": "git",
  5642. "url": "https://github.com/pear/pear-core-minimal.git",
  5643. "reference": "a86fc145edb5caedbf96527214ce3cadc9de4a32"
  5644. },
  5645. "dist": {
  5646. "type": "zip",
  5647. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/a86fc145edb5caedbf96527214ce3cadc9de4a32",
  5648. "reference": "a86fc145edb5caedbf96527214ce3cadc9de4a32",
  5649. "shasum": ""
  5650. },
  5651. "require": {
  5652. "pear/console_getopt": "~1.4",
  5653. "pear/pear_exception": "~1.0",
  5654. "php": ">=5.4"
  5655. },
  5656. "replace": {
  5657. "rsky/pear-core-min": "self.version"
  5658. },
  5659. "type": "library",
  5660. "autoload": {
  5661. "psr-0": {
  5662. "": "src/"
  5663. }
  5664. },
  5665. "notification-url": "https://packagist.org/downloads/",
  5666. "include-path": [
  5667. "src/"
  5668. ],
  5669. "license": [
  5670. "BSD-3-Clause"
  5671. ],
  5672. "authors": [
  5673. {
  5674. "name": "Christian Weiske",
  5675. "email": "cweiske@php.net",
  5676. "role": "Lead"
  5677. }
  5678. ],
  5679. "description": "Minimal set of PEAR core files to be used as composer dependency",
  5680. "support": {
  5681. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  5682. "source": "https://github.com/pear/pear-core-minimal"
  5683. },
  5684. "time": "2023-11-26T16:15:38+00:00"
  5685. },
  5686. {
  5687. "name": "pear/pear_exception",
  5688. "version": "v1.0.2",
  5689. "source": {
  5690. "type": "git",
  5691. "url": "https://github.com/pear/PEAR_Exception.git",
  5692. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  5693. },
  5694. "dist": {
  5695. "type": "zip",
  5696. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  5697. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  5698. "shasum": ""
  5699. },
  5700. "require": {
  5701. "php": ">=5.2.0"
  5702. },
  5703. "require-dev": {
  5704. "phpunit/phpunit": "<9"
  5705. },
  5706. "type": "class",
  5707. "extra": {
  5708. "branch-alias": {
  5709. "dev-master": "1.0.x-dev"
  5710. }
  5711. },
  5712. "autoload": {
  5713. "classmap": [
  5714. "PEAR/"
  5715. ]
  5716. },
  5717. "notification-url": "https://packagist.org/downloads/",
  5718. "include-path": [
  5719. "."
  5720. ],
  5721. "license": [
  5722. "BSD-2-Clause"
  5723. ],
  5724. "authors": [
  5725. {
  5726. "name": "Helgi Thormar",
  5727. "email": "dufuz@php.net"
  5728. },
  5729. {
  5730. "name": "Greg Beaver",
  5731. "email": "cellog@php.net"
  5732. }
  5733. ],
  5734. "description": "The PEAR Exception base class.",
  5735. "homepage": "https://github.com/pear/PEAR_Exception",
  5736. "keywords": [
  5737. "exception"
  5738. ],
  5739. "support": {
  5740. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  5741. "source": "https://github.com/pear/PEAR_Exception"
  5742. },
  5743. "time": "2021-03-21T15:43:46+00:00"
  5744. },
  5745. {
  5746. "name": "phootwork/collection",
  5747. "version": "v3.2.2",
  5748. "source": {
  5749. "type": "git",
  5750. "url": "https://github.com/phootwork/collection.git",
  5751. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
  5752. },
  5753. "dist": {
  5754. "type": "zip",
  5755. "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
  5756. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
  5757. "shasum": ""
  5758. },
  5759. "require": {
  5760. "phootwork/lang": "^3.0",
  5761. "php": ">=8.0"
  5762. },
  5763. "type": "library",
  5764. "autoload": {
  5765. "psr-4": {
  5766. "phootwork\\collection\\": ""
  5767. }
  5768. },
  5769. "notification-url": "https://packagist.org/downloads/",
  5770. "license": [
  5771. "MIT"
  5772. ],
  5773. "authors": [
  5774. {
  5775. "name": "Thomas Gossmann",
  5776. "homepage": "http://gos.si"
  5777. }
  5778. ],
  5779. "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
  5780. "homepage": "https://phootwork.github.io/collection/",
  5781. "keywords": [
  5782. "Array object",
  5783. "Text object",
  5784. "collection",
  5785. "collections",
  5786. "json",
  5787. "list",
  5788. "map",
  5789. "queue",
  5790. "set",
  5791. "stack",
  5792. "xml"
  5793. ],
  5794. "support": {
  5795. "issues": "https://github.com/phootwork/phootwork/issues",
  5796. "source": "https://github.com/phootwork/collection/tree/v3.2.2"
  5797. },
  5798. "time": "2022-08-27T12:51:24+00:00"
  5799. },
  5800. {
  5801. "name": "phootwork/lang",
  5802. "version": "v3.2.2",
  5803. "source": {
  5804. "type": "git",
  5805. "url": "https://github.com/phootwork/lang.git",
  5806. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597"
  5807. },
  5808. "dist": {
  5809. "type": "zip",
  5810. "url": "https://api.github.com/repos/phootwork/lang/zipball/baaf154ae7d521ebeee5e89105f5b12b0f234597",
  5811. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597",
  5812. "shasum": ""
  5813. },
  5814. "require": {
  5815. "php": ">=8.0",
  5816. "symfony/polyfill-mbstring": "^1.12",
  5817. "symfony/polyfill-php81": "^1.22"
  5818. },
  5819. "type": "library",
  5820. "autoload": {
  5821. "psr-4": {
  5822. "phootwork\\lang\\": ""
  5823. }
  5824. },
  5825. "notification-url": "https://packagist.org/downloads/",
  5826. "license": [
  5827. "MIT"
  5828. ],
  5829. "authors": [
  5830. {
  5831. "name": "Thomas Gossmann",
  5832. "homepage": "http://gos.si"
  5833. }
  5834. ],
  5835. "description": "Missing PHP language constructs",
  5836. "homepage": "https://phootwork.github.io/lang/",
  5837. "keywords": [
  5838. "array",
  5839. "comparator",
  5840. "comparison",
  5841. "string"
  5842. ],
  5843. "support": {
  5844. "issues": "https://github.com/phootwork/phootwork/issues",
  5845. "source": "https://github.com/phootwork/lang/tree/v3.2.2"
  5846. },
  5847. "time": "2023-05-26T05:37:59+00:00"
  5848. },
  5849. {
  5850. "name": "phpowermove/docblock",
  5851. "version": "v4.0",
  5852. "source": {
  5853. "type": "git",
  5854. "url": "https://github.com/phpowermove/docblock.git",
  5855. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
  5856. },
  5857. "dist": {
  5858. "type": "zip",
  5859. "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  5860. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  5861. "shasum": ""
  5862. },
  5863. "require": {
  5864. "phootwork/collection": "^3.0",
  5865. "phootwork/lang": "^3.0",
  5866. "php": ">=8.0"
  5867. },
  5868. "require-dev": {
  5869. "phootwork/php-cs-fixer-config": "^0.4",
  5870. "phpunit/phpunit": "^9.0",
  5871. "psalm/phar": "^4.3"
  5872. },
  5873. "type": "library",
  5874. "autoload": {
  5875. "psr-4": {
  5876. "phpowermove\\docblock\\": "src/"
  5877. }
  5878. },
  5879. "notification-url": "https://packagist.org/downloads/",
  5880. "license": [
  5881. "MIT"
  5882. ],
  5883. "authors": [
  5884. {
  5885. "name": "Thomas Gossmann",
  5886. "homepage": "http://gos.si"
  5887. }
  5888. ],
  5889. "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
  5890. "keywords": [
  5891. "docblock",
  5892. "generator",
  5893. "parser"
  5894. ],
  5895. "support": {
  5896. "issues": "https://github.com/phpowermove/docblock/issues",
  5897. "source": "https://github.com/phpowermove/docblock/tree/v4.0"
  5898. },
  5899. "time": "2021-09-22T16:57:06+00:00"
  5900. },
  5901. {
  5902. "name": "psr/cache",
  5903. "version": "3.0.0",
  5904. "source": {
  5905. "type": "git",
  5906. "url": "https://github.com/php-fig/cache.git",
  5907. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5908. },
  5909. "dist": {
  5910. "type": "zip",
  5911. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5912. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5913. "shasum": ""
  5914. },
  5915. "require": {
  5916. "php": ">=8.0.0"
  5917. },
  5918. "type": "library",
  5919. "extra": {
  5920. "branch-alias": {
  5921. "dev-master": "1.0.x-dev"
  5922. }
  5923. },
  5924. "autoload": {
  5925. "psr-4": {
  5926. "Psr\\Cache\\": "src/"
  5927. }
  5928. },
  5929. "notification-url": "https://packagist.org/downloads/",
  5930. "license": [
  5931. "MIT"
  5932. ],
  5933. "authors": [
  5934. {
  5935. "name": "PHP-FIG",
  5936. "homepage": "https://www.php-fig.org/"
  5937. }
  5938. ],
  5939. "description": "Common interface for caching libraries",
  5940. "keywords": [
  5941. "cache",
  5942. "psr",
  5943. "psr-6"
  5944. ],
  5945. "support": {
  5946. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5947. },
  5948. "time": "2021-02-03T23:26:27+00:00"
  5949. },
  5950. {
  5951. "name": "psr/container",
  5952. "version": "2.0.2",
  5953. "source": {
  5954. "type": "git",
  5955. "url": "https://github.com/php-fig/container.git",
  5956. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5957. },
  5958. "dist": {
  5959. "type": "zip",
  5960. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5961. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5962. "shasum": ""
  5963. },
  5964. "require": {
  5965. "php": ">=7.4.0"
  5966. },
  5967. "type": "library",
  5968. "extra": {
  5969. "branch-alias": {
  5970. "dev-master": "2.0.x-dev"
  5971. }
  5972. },
  5973. "autoload": {
  5974. "psr-4": {
  5975. "Psr\\Container\\": "src/"
  5976. }
  5977. },
  5978. "notification-url": "https://packagist.org/downloads/",
  5979. "license": [
  5980. "MIT"
  5981. ],
  5982. "authors": [
  5983. {
  5984. "name": "PHP-FIG",
  5985. "homepage": "https://www.php-fig.org/"
  5986. }
  5987. ],
  5988. "description": "Common Container Interface (PHP FIG PSR-11)",
  5989. "homepage": "https://github.com/php-fig/container",
  5990. "keywords": [
  5991. "PSR-11",
  5992. "container",
  5993. "container-interface",
  5994. "container-interop",
  5995. "psr"
  5996. ],
  5997. "support": {
  5998. "issues": "https://github.com/php-fig/container/issues",
  5999. "source": "https://github.com/php-fig/container/tree/2.0.2"
  6000. },
  6001. "time": "2021-11-05T16:47:00+00:00"
  6002. },
  6003. {
  6004. "name": "psr/event-dispatcher",
  6005. "version": "1.0.0",
  6006. "source": {
  6007. "type": "git",
  6008. "url": "https://github.com/php-fig/event-dispatcher.git",
  6009. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  6010. },
  6011. "dist": {
  6012. "type": "zip",
  6013. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6014. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6015. "shasum": ""
  6016. },
  6017. "require": {
  6018. "php": ">=7.2.0"
  6019. },
  6020. "type": "library",
  6021. "extra": {
  6022. "branch-alias": {
  6023. "dev-master": "1.0.x-dev"
  6024. }
  6025. },
  6026. "autoload": {
  6027. "psr-4": {
  6028. "Psr\\EventDispatcher\\": "src/"
  6029. }
  6030. },
  6031. "notification-url": "https://packagist.org/downloads/",
  6032. "license": [
  6033. "MIT"
  6034. ],
  6035. "authors": [
  6036. {
  6037. "name": "PHP-FIG",
  6038. "homepage": "http://www.php-fig.org/"
  6039. }
  6040. ],
  6041. "description": "Standard interfaces for event handling.",
  6042. "keywords": [
  6043. "events",
  6044. "psr",
  6045. "psr-14"
  6046. ],
  6047. "support": {
  6048. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  6049. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  6050. },
  6051. "time": "2019-01-08T18:20:26+00:00"
  6052. },
  6053. {
  6054. "name": "psr/http-client",
  6055. "version": "1.0.3",
  6056. "source": {
  6057. "type": "git",
  6058. "url": "https://github.com/php-fig/http-client.git",
  6059. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  6060. },
  6061. "dist": {
  6062. "type": "zip",
  6063. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6064. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6065. "shasum": ""
  6066. },
  6067. "require": {
  6068. "php": "^7.0 || ^8.0",
  6069. "psr/http-message": "^1.0 || ^2.0"
  6070. },
  6071. "type": "library",
  6072. "extra": {
  6073. "branch-alias": {
  6074. "dev-master": "1.0.x-dev"
  6075. }
  6076. },
  6077. "autoload": {
  6078. "psr-4": {
  6079. "Psr\\Http\\Client\\": "src/"
  6080. }
  6081. },
  6082. "notification-url": "https://packagist.org/downloads/",
  6083. "license": [
  6084. "MIT"
  6085. ],
  6086. "authors": [
  6087. {
  6088. "name": "PHP-FIG",
  6089. "homepage": "https://www.php-fig.org/"
  6090. }
  6091. ],
  6092. "description": "Common interface for HTTP clients",
  6093. "homepage": "https://github.com/php-fig/http-client",
  6094. "keywords": [
  6095. "http",
  6096. "http-client",
  6097. "psr",
  6098. "psr-18"
  6099. ],
  6100. "support": {
  6101. "source": "https://github.com/php-fig/http-client"
  6102. },
  6103. "time": "2023-09-23T14:17:50+00:00"
  6104. },
  6105. {
  6106. "name": "psr/http-factory",
  6107. "version": "1.0.2",
  6108. "source": {
  6109. "type": "git",
  6110. "url": "https://github.com/php-fig/http-factory.git",
  6111. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  6112. },
  6113. "dist": {
  6114. "type": "zip",
  6115. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  6116. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  6117. "shasum": ""
  6118. },
  6119. "require": {
  6120. "php": ">=7.0.0",
  6121. "psr/http-message": "^1.0 || ^2.0"
  6122. },
  6123. "type": "library",
  6124. "extra": {
  6125. "branch-alias": {
  6126. "dev-master": "1.0.x-dev"
  6127. }
  6128. },
  6129. "autoload": {
  6130. "psr-4": {
  6131. "Psr\\Http\\Message\\": "src/"
  6132. }
  6133. },
  6134. "notification-url": "https://packagist.org/downloads/",
  6135. "license": [
  6136. "MIT"
  6137. ],
  6138. "authors": [
  6139. {
  6140. "name": "PHP-FIG",
  6141. "homepage": "https://www.php-fig.org/"
  6142. }
  6143. ],
  6144. "description": "Common interfaces for PSR-7 HTTP message factories",
  6145. "keywords": [
  6146. "factory",
  6147. "http",
  6148. "message",
  6149. "psr",
  6150. "psr-17",
  6151. "psr-7",
  6152. "request",
  6153. "response"
  6154. ],
  6155. "support": {
  6156. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  6157. },
  6158. "time": "2023-04-10T20:10:41+00:00"
  6159. },
  6160. {
  6161. "name": "psr/http-message",
  6162. "version": "2.0",
  6163. "source": {
  6164. "type": "git",
  6165. "url": "https://github.com/php-fig/http-message.git",
  6166. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  6167. },
  6168. "dist": {
  6169. "type": "zip",
  6170. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6171. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6172. "shasum": ""
  6173. },
  6174. "require": {
  6175. "php": "^7.2 || ^8.0"
  6176. },
  6177. "type": "library",
  6178. "extra": {
  6179. "branch-alias": {
  6180. "dev-master": "2.0.x-dev"
  6181. }
  6182. },
  6183. "autoload": {
  6184. "psr-4": {
  6185. "Psr\\Http\\Message\\": "src/"
  6186. }
  6187. },
  6188. "notification-url": "https://packagist.org/downloads/",
  6189. "license": [
  6190. "MIT"
  6191. ],
  6192. "authors": [
  6193. {
  6194. "name": "PHP-FIG",
  6195. "homepage": "https://www.php-fig.org/"
  6196. }
  6197. ],
  6198. "description": "Common interface for HTTP messages",
  6199. "homepage": "https://github.com/php-fig/http-message",
  6200. "keywords": [
  6201. "http",
  6202. "http-message",
  6203. "psr",
  6204. "psr-7",
  6205. "request",
  6206. "response"
  6207. ],
  6208. "support": {
  6209. "source": "https://github.com/php-fig/http-message/tree/2.0"
  6210. },
  6211. "time": "2023-04-04T09:54:51+00:00"
  6212. },
  6213. {
  6214. "name": "psr/log",
  6215. "version": "3.0.0",
  6216. "source": {
  6217. "type": "git",
  6218. "url": "https://github.com/php-fig/log.git",
  6219. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  6220. },
  6221. "dist": {
  6222. "type": "zip",
  6223. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  6224. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  6225. "shasum": ""
  6226. },
  6227. "require": {
  6228. "php": ">=8.0.0"
  6229. },
  6230. "type": "library",
  6231. "extra": {
  6232. "branch-alias": {
  6233. "dev-master": "3.x-dev"
  6234. }
  6235. },
  6236. "autoload": {
  6237. "psr-4": {
  6238. "Psr\\Log\\": "src"
  6239. }
  6240. },
  6241. "notification-url": "https://packagist.org/downloads/",
  6242. "license": [
  6243. "MIT"
  6244. ],
  6245. "authors": [
  6246. {
  6247. "name": "PHP-FIG",
  6248. "homepage": "https://www.php-fig.org/"
  6249. }
  6250. ],
  6251. "description": "Common interface for logging libraries",
  6252. "homepage": "https://github.com/php-fig/log",
  6253. "keywords": [
  6254. "log",
  6255. "psr",
  6256. "psr-3"
  6257. ],
  6258. "support": {
  6259. "source": "https://github.com/php-fig/log/tree/3.0.0"
  6260. },
  6261. "time": "2021-07-14T16:46:02+00:00"
  6262. },
  6263. {
  6264. "name": "psy/psysh",
  6265. "version": "v0.12.0",
  6266. "source": {
  6267. "type": "git",
  6268. "url": "https://github.com/bobthecow/psysh.git",
  6269. "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d"
  6270. },
  6271. "dist": {
  6272. "type": "zip",
  6273. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/750bf031a48fd07c673dbe3f11f72362ea306d0d",
  6274. "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d",
  6275. "shasum": ""
  6276. },
  6277. "require": {
  6278. "ext-json": "*",
  6279. "ext-tokenizer": "*",
  6280. "nikic/php-parser": "^5.0 || ^4.0",
  6281. "php": "^8.0 || ^7.4",
  6282. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  6283. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  6284. },
  6285. "conflict": {
  6286. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  6287. },
  6288. "require-dev": {
  6289. "bamarni/composer-bin-plugin": "^1.2"
  6290. },
  6291. "suggest": {
  6292. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  6293. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  6294. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  6295. },
  6296. "bin": [
  6297. "bin/psysh"
  6298. ],
  6299. "type": "library",
  6300. "extra": {
  6301. "branch-alias": {
  6302. "dev-main": "0.12.x-dev"
  6303. },
  6304. "bamarni-bin": {
  6305. "bin-links": false,
  6306. "forward-command": false
  6307. }
  6308. },
  6309. "autoload": {
  6310. "files": [
  6311. "src/functions.php"
  6312. ],
  6313. "psr-4": {
  6314. "Psy\\": "src/"
  6315. }
  6316. },
  6317. "notification-url": "https://packagist.org/downloads/",
  6318. "license": [
  6319. "MIT"
  6320. ],
  6321. "authors": [
  6322. {
  6323. "name": "Justin Hileman",
  6324. "email": "justin@justinhileman.info",
  6325. "homepage": "http://justinhileman.com"
  6326. }
  6327. ],
  6328. "description": "An interactive shell for modern PHP.",
  6329. "homepage": "http://psysh.org",
  6330. "keywords": [
  6331. "REPL",
  6332. "console",
  6333. "interactive",
  6334. "shell"
  6335. ],
  6336. "support": {
  6337. "issues": "https://github.com/bobthecow/psysh/issues",
  6338. "source": "https://github.com/bobthecow/psysh/tree/v0.12.0"
  6339. },
  6340. "time": "2023-12-20T15:28:09+00:00"
  6341. },
  6342. {
  6343. "name": "ralouphie/getallheaders",
  6344. "version": "3.0.3",
  6345. "source": {
  6346. "type": "git",
  6347. "url": "https://github.com/ralouphie/getallheaders.git",
  6348. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6349. },
  6350. "dist": {
  6351. "type": "zip",
  6352. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6353. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6354. "shasum": ""
  6355. },
  6356. "require": {
  6357. "php": ">=5.6"
  6358. },
  6359. "require-dev": {
  6360. "php-coveralls/php-coveralls": "^2.1",
  6361. "phpunit/phpunit": "^5 || ^6.5"
  6362. },
  6363. "type": "library",
  6364. "autoload": {
  6365. "files": [
  6366. "src/getallheaders.php"
  6367. ]
  6368. },
  6369. "notification-url": "https://packagist.org/downloads/",
  6370. "license": [
  6371. "MIT"
  6372. ],
  6373. "authors": [
  6374. {
  6375. "name": "Ralph Khattar",
  6376. "email": "ralph.khattar@gmail.com"
  6377. }
  6378. ],
  6379. "description": "A polyfill for getallheaders.",
  6380. "support": {
  6381. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6382. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6383. },
  6384. "time": "2019-03-08T08:55:37+00:00"
  6385. },
  6386. {
  6387. "name": "sebastian/diff",
  6388. "version": "4.0.6",
  6389. "source": {
  6390. "type": "git",
  6391. "url": "https://github.com/sebastianbergmann/diff.git",
  6392. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  6393. },
  6394. "dist": {
  6395. "type": "zip",
  6396. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  6397. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  6398. "shasum": ""
  6399. },
  6400. "require": {
  6401. "php": ">=7.3"
  6402. },
  6403. "require-dev": {
  6404. "phpunit/phpunit": "^9.3",
  6405. "symfony/process": "^4.2 || ^5"
  6406. },
  6407. "type": "library",
  6408. "extra": {
  6409. "branch-alias": {
  6410. "dev-master": "4.0-dev"
  6411. }
  6412. },
  6413. "autoload": {
  6414. "classmap": [
  6415. "src/"
  6416. ]
  6417. },
  6418. "notification-url": "https://packagist.org/downloads/",
  6419. "license": [
  6420. "BSD-3-Clause"
  6421. ],
  6422. "authors": [
  6423. {
  6424. "name": "Sebastian Bergmann",
  6425. "email": "sebastian@phpunit.de"
  6426. },
  6427. {
  6428. "name": "Kore Nordmann",
  6429. "email": "mail@kore-nordmann.de"
  6430. }
  6431. ],
  6432. "description": "Diff implementation",
  6433. "homepage": "https://github.com/sebastianbergmann/diff",
  6434. "keywords": [
  6435. "diff",
  6436. "udiff",
  6437. "unidiff",
  6438. "unified diff"
  6439. ],
  6440. "support": {
  6441. "issues": "https://github.com/sebastianbergmann/diff/issues",
  6442. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  6443. },
  6444. "funding": [
  6445. {
  6446. "url": "https://github.com/sebastianbergmann",
  6447. "type": "github"
  6448. }
  6449. ],
  6450. "time": "2024-03-02T06:30:58+00:00"
  6451. },
  6452. {
  6453. "name": "symfony/console",
  6454. "version": "v6.4.4",
  6455. "source": {
  6456. "type": "git",
  6457. "url": "https://github.com/symfony/console.git",
  6458. "reference": "0d9e4eb5ad413075624378f474c4167ea202de78"
  6459. },
  6460. "dist": {
  6461. "type": "zip",
  6462. "url": "https://api.github.com/repos/symfony/console/zipball/0d9e4eb5ad413075624378f474c4167ea202de78",
  6463. "reference": "0d9e4eb5ad413075624378f474c4167ea202de78",
  6464. "shasum": ""
  6465. },
  6466. "require": {
  6467. "php": ">=8.1",
  6468. "symfony/deprecation-contracts": "^2.5|^3",
  6469. "symfony/polyfill-mbstring": "~1.0",
  6470. "symfony/service-contracts": "^2.5|^3",
  6471. "symfony/string": "^5.4|^6.0|^7.0"
  6472. },
  6473. "conflict": {
  6474. "symfony/dependency-injection": "<5.4",
  6475. "symfony/dotenv": "<5.4",
  6476. "symfony/event-dispatcher": "<5.4",
  6477. "symfony/lock": "<5.4",
  6478. "symfony/process": "<5.4"
  6479. },
  6480. "provide": {
  6481. "psr/log-implementation": "1.0|2.0|3.0"
  6482. },
  6483. "require-dev": {
  6484. "psr/log": "^1|^2|^3",
  6485. "symfony/config": "^5.4|^6.0|^7.0",
  6486. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6487. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6488. "symfony/http-foundation": "^6.4|^7.0",
  6489. "symfony/http-kernel": "^6.4|^7.0",
  6490. "symfony/lock": "^5.4|^6.0|^7.0",
  6491. "symfony/messenger": "^5.4|^6.0|^7.0",
  6492. "symfony/process": "^5.4|^6.0|^7.0",
  6493. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6494. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6495. },
  6496. "type": "library",
  6497. "autoload": {
  6498. "psr-4": {
  6499. "Symfony\\Component\\Console\\": ""
  6500. },
  6501. "exclude-from-classmap": [
  6502. "/Tests/"
  6503. ]
  6504. },
  6505. "notification-url": "https://packagist.org/downloads/",
  6506. "license": [
  6507. "MIT"
  6508. ],
  6509. "authors": [
  6510. {
  6511. "name": "Fabien Potencier",
  6512. "email": "fabien@symfony.com"
  6513. },
  6514. {
  6515. "name": "Symfony Community",
  6516. "homepage": "https://symfony.com/contributors"
  6517. }
  6518. ],
  6519. "description": "Eases the creation of beautiful and testable command line interfaces",
  6520. "homepage": "https://symfony.com",
  6521. "keywords": [
  6522. "cli",
  6523. "command-line",
  6524. "console",
  6525. "terminal"
  6526. ],
  6527. "support": {
  6528. "source": "https://github.com/symfony/console/tree/v6.4.4"
  6529. },
  6530. "funding": [
  6531. {
  6532. "url": "https://symfony.com/sponsor",
  6533. "type": "custom"
  6534. },
  6535. {
  6536. "url": "https://github.com/fabpot",
  6537. "type": "github"
  6538. },
  6539. {
  6540. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6541. "type": "tidelift"
  6542. }
  6543. ],
  6544. "time": "2024-02-22T20:27:10+00:00"
  6545. },
  6546. {
  6547. "name": "symfony/dependency-injection",
  6548. "version": "v6.4.4",
  6549. "source": {
  6550. "type": "git",
  6551. "url": "https://github.com/symfony/dependency-injection.git",
  6552. "reference": "6236e5e843cb763e9d0f74245678b994afea5363"
  6553. },
  6554. "dist": {
  6555. "type": "zip",
  6556. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/6236e5e843cb763e9d0f74245678b994afea5363",
  6557. "reference": "6236e5e843cb763e9d0f74245678b994afea5363",
  6558. "shasum": ""
  6559. },
  6560. "require": {
  6561. "php": ">=8.1",
  6562. "psr/container": "^1.1|^2.0",
  6563. "symfony/deprecation-contracts": "^2.5|^3",
  6564. "symfony/service-contracts": "^2.5|^3.0",
  6565. "symfony/var-exporter": "^6.2.10|^7.0"
  6566. },
  6567. "conflict": {
  6568. "ext-psr": "<1.1|>=2",
  6569. "symfony/config": "<6.1",
  6570. "symfony/finder": "<5.4",
  6571. "symfony/proxy-manager-bridge": "<6.3",
  6572. "symfony/yaml": "<5.4"
  6573. },
  6574. "provide": {
  6575. "psr/container-implementation": "1.1|2.0",
  6576. "symfony/service-implementation": "1.1|2.0|3.0"
  6577. },
  6578. "require-dev": {
  6579. "symfony/config": "^6.1|^7.0",
  6580. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6581. "symfony/yaml": "^5.4|^6.0|^7.0"
  6582. },
  6583. "type": "library",
  6584. "autoload": {
  6585. "psr-4": {
  6586. "Symfony\\Component\\DependencyInjection\\": ""
  6587. },
  6588. "exclude-from-classmap": [
  6589. "/Tests/"
  6590. ]
  6591. },
  6592. "notification-url": "https://packagist.org/downloads/",
  6593. "license": [
  6594. "MIT"
  6595. ],
  6596. "authors": [
  6597. {
  6598. "name": "Fabien Potencier",
  6599. "email": "fabien@symfony.com"
  6600. },
  6601. {
  6602. "name": "Symfony Community",
  6603. "homepage": "https://symfony.com/contributors"
  6604. }
  6605. ],
  6606. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  6607. "homepage": "https://symfony.com",
  6608. "support": {
  6609. "source": "https://github.com/symfony/dependency-injection/tree/v6.4.4"
  6610. },
  6611. "funding": [
  6612. {
  6613. "url": "https://symfony.com/sponsor",
  6614. "type": "custom"
  6615. },
  6616. {
  6617. "url": "https://github.com/fabpot",
  6618. "type": "github"
  6619. },
  6620. {
  6621. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6622. "type": "tidelift"
  6623. }
  6624. ],
  6625. "time": "2024-02-22T20:27:10+00:00"
  6626. },
  6627. {
  6628. "name": "symfony/deprecation-contracts",
  6629. "version": "v3.4.0",
  6630. "source": {
  6631. "type": "git",
  6632. "url": "https://github.com/symfony/deprecation-contracts.git",
  6633. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  6634. },
  6635. "dist": {
  6636. "type": "zip",
  6637. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  6638. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  6639. "shasum": ""
  6640. },
  6641. "require": {
  6642. "php": ">=8.1"
  6643. },
  6644. "type": "library",
  6645. "extra": {
  6646. "branch-alias": {
  6647. "dev-main": "3.4-dev"
  6648. },
  6649. "thanks": {
  6650. "name": "symfony/contracts",
  6651. "url": "https://github.com/symfony/contracts"
  6652. }
  6653. },
  6654. "autoload": {
  6655. "files": [
  6656. "function.php"
  6657. ]
  6658. },
  6659. "notification-url": "https://packagist.org/downloads/",
  6660. "license": [
  6661. "MIT"
  6662. ],
  6663. "authors": [
  6664. {
  6665. "name": "Nicolas Grekas",
  6666. "email": "p@tchwork.com"
  6667. },
  6668. {
  6669. "name": "Symfony Community",
  6670. "homepage": "https://symfony.com/contributors"
  6671. }
  6672. ],
  6673. "description": "A generic function and convention to trigger deprecation notices",
  6674. "homepage": "https://symfony.com",
  6675. "support": {
  6676. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0"
  6677. },
  6678. "funding": [
  6679. {
  6680. "url": "https://symfony.com/sponsor",
  6681. "type": "custom"
  6682. },
  6683. {
  6684. "url": "https://github.com/fabpot",
  6685. "type": "github"
  6686. },
  6687. {
  6688. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6689. "type": "tidelift"
  6690. }
  6691. ],
  6692. "time": "2023-05-23T14:45:45+00:00"
  6693. },
  6694. {
  6695. "name": "symfony/error-handler",
  6696. "version": "v6.4.4",
  6697. "source": {
  6698. "type": "git",
  6699. "url": "https://github.com/symfony/error-handler.git",
  6700. "reference": "c725219bdf2afc59423c32793d5019d2a904e13a"
  6701. },
  6702. "dist": {
  6703. "type": "zip",
  6704. "url": "https://api.github.com/repos/symfony/error-handler/zipball/c725219bdf2afc59423c32793d5019d2a904e13a",
  6705. "reference": "c725219bdf2afc59423c32793d5019d2a904e13a",
  6706. "shasum": ""
  6707. },
  6708. "require": {
  6709. "php": ">=8.1",
  6710. "psr/log": "^1|^2|^3",
  6711. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6712. },
  6713. "conflict": {
  6714. "symfony/deprecation-contracts": "<2.5",
  6715. "symfony/http-kernel": "<6.4"
  6716. },
  6717. "require-dev": {
  6718. "symfony/deprecation-contracts": "^2.5|^3",
  6719. "symfony/http-kernel": "^6.4|^7.0",
  6720. "symfony/serializer": "^5.4|^6.0|^7.0"
  6721. },
  6722. "bin": [
  6723. "Resources/bin/patch-type-declarations"
  6724. ],
  6725. "type": "library",
  6726. "autoload": {
  6727. "psr-4": {
  6728. "Symfony\\Component\\ErrorHandler\\": ""
  6729. },
  6730. "exclude-from-classmap": [
  6731. "/Tests/"
  6732. ]
  6733. },
  6734. "notification-url": "https://packagist.org/downloads/",
  6735. "license": [
  6736. "MIT"
  6737. ],
  6738. "authors": [
  6739. {
  6740. "name": "Fabien Potencier",
  6741. "email": "fabien@symfony.com"
  6742. },
  6743. {
  6744. "name": "Symfony Community",
  6745. "homepage": "https://symfony.com/contributors"
  6746. }
  6747. ],
  6748. "description": "Provides tools to manage errors and ease debugging PHP code",
  6749. "homepage": "https://symfony.com",
  6750. "support": {
  6751. "source": "https://github.com/symfony/error-handler/tree/v6.4.4"
  6752. },
  6753. "funding": [
  6754. {
  6755. "url": "https://symfony.com/sponsor",
  6756. "type": "custom"
  6757. },
  6758. {
  6759. "url": "https://github.com/fabpot",
  6760. "type": "github"
  6761. },
  6762. {
  6763. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6764. "type": "tidelift"
  6765. }
  6766. ],
  6767. "time": "2024-02-22T20:27:10+00:00"
  6768. },
  6769. {
  6770. "name": "symfony/event-dispatcher",
  6771. "version": "v6.4.3",
  6772. "source": {
  6773. "type": "git",
  6774. "url": "https://github.com/symfony/event-dispatcher.git",
  6775. "reference": "ae9d3a6f3003a6caf56acd7466d8d52378d44fef"
  6776. },
  6777. "dist": {
  6778. "type": "zip",
  6779. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ae9d3a6f3003a6caf56acd7466d8d52378d44fef",
  6780. "reference": "ae9d3a6f3003a6caf56acd7466d8d52378d44fef",
  6781. "shasum": ""
  6782. },
  6783. "require": {
  6784. "php": ">=8.1",
  6785. "symfony/event-dispatcher-contracts": "^2.5|^3"
  6786. },
  6787. "conflict": {
  6788. "symfony/dependency-injection": "<5.4",
  6789. "symfony/service-contracts": "<2.5"
  6790. },
  6791. "provide": {
  6792. "psr/event-dispatcher-implementation": "1.0",
  6793. "symfony/event-dispatcher-implementation": "2.0|3.0"
  6794. },
  6795. "require-dev": {
  6796. "psr/log": "^1|^2|^3",
  6797. "symfony/config": "^5.4|^6.0|^7.0",
  6798. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6799. "symfony/error-handler": "^5.4|^6.0|^7.0",
  6800. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6801. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  6802. "symfony/service-contracts": "^2.5|^3",
  6803. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  6804. },
  6805. "type": "library",
  6806. "autoload": {
  6807. "psr-4": {
  6808. "Symfony\\Component\\EventDispatcher\\": ""
  6809. },
  6810. "exclude-from-classmap": [
  6811. "/Tests/"
  6812. ]
  6813. },
  6814. "notification-url": "https://packagist.org/downloads/",
  6815. "license": [
  6816. "MIT"
  6817. ],
  6818. "authors": [
  6819. {
  6820. "name": "Fabien Potencier",
  6821. "email": "fabien@symfony.com"
  6822. },
  6823. {
  6824. "name": "Symfony Community",
  6825. "homepage": "https://symfony.com/contributors"
  6826. }
  6827. ],
  6828. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  6829. "homepage": "https://symfony.com",
  6830. "support": {
  6831. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.3"
  6832. },
  6833. "funding": [
  6834. {
  6835. "url": "https://symfony.com/sponsor",
  6836. "type": "custom"
  6837. },
  6838. {
  6839. "url": "https://github.com/fabpot",
  6840. "type": "github"
  6841. },
  6842. {
  6843. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6844. "type": "tidelift"
  6845. }
  6846. ],
  6847. "time": "2024-01-23T14:51:35+00:00"
  6848. },
  6849. {
  6850. "name": "symfony/event-dispatcher-contracts",
  6851. "version": "v3.4.0",
  6852. "source": {
  6853. "type": "git",
  6854. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  6855. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  6856. },
  6857. "dist": {
  6858. "type": "zip",
  6859. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  6860. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  6861. "shasum": ""
  6862. },
  6863. "require": {
  6864. "php": ">=8.1",
  6865. "psr/event-dispatcher": "^1"
  6866. },
  6867. "type": "library",
  6868. "extra": {
  6869. "branch-alias": {
  6870. "dev-main": "3.4-dev"
  6871. },
  6872. "thanks": {
  6873. "name": "symfony/contracts",
  6874. "url": "https://github.com/symfony/contracts"
  6875. }
  6876. },
  6877. "autoload": {
  6878. "psr-4": {
  6879. "Symfony\\Contracts\\EventDispatcher\\": ""
  6880. }
  6881. },
  6882. "notification-url": "https://packagist.org/downloads/",
  6883. "license": [
  6884. "MIT"
  6885. ],
  6886. "authors": [
  6887. {
  6888. "name": "Nicolas Grekas",
  6889. "email": "p@tchwork.com"
  6890. },
  6891. {
  6892. "name": "Symfony Community",
  6893. "homepage": "https://symfony.com/contributors"
  6894. }
  6895. ],
  6896. "description": "Generic abstractions related to dispatching event",
  6897. "homepage": "https://symfony.com",
  6898. "keywords": [
  6899. "abstractions",
  6900. "contracts",
  6901. "decoupling",
  6902. "interfaces",
  6903. "interoperability",
  6904. "standards"
  6905. ],
  6906. "support": {
  6907. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.4.0"
  6908. },
  6909. "funding": [
  6910. {
  6911. "url": "https://symfony.com/sponsor",
  6912. "type": "custom"
  6913. },
  6914. {
  6915. "url": "https://github.com/fabpot",
  6916. "type": "github"
  6917. },
  6918. {
  6919. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6920. "type": "tidelift"
  6921. }
  6922. ],
  6923. "time": "2023-05-23T14:45:45+00:00"
  6924. },
  6925. {
  6926. "name": "symfony/filesystem",
  6927. "version": "v6.4.3",
  6928. "source": {
  6929. "type": "git",
  6930. "url": "https://github.com/symfony/filesystem.git",
  6931. "reference": "7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb"
  6932. },
  6933. "dist": {
  6934. "type": "zip",
  6935. "url": "https://api.github.com/repos/symfony/filesystem/zipball/7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb",
  6936. "reference": "7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb",
  6937. "shasum": ""
  6938. },
  6939. "require": {
  6940. "php": ">=8.1",
  6941. "symfony/polyfill-ctype": "~1.8",
  6942. "symfony/polyfill-mbstring": "~1.8"
  6943. },
  6944. "type": "library",
  6945. "autoload": {
  6946. "psr-4": {
  6947. "Symfony\\Component\\Filesystem\\": ""
  6948. },
  6949. "exclude-from-classmap": [
  6950. "/Tests/"
  6951. ]
  6952. },
  6953. "notification-url": "https://packagist.org/downloads/",
  6954. "license": [
  6955. "MIT"
  6956. ],
  6957. "authors": [
  6958. {
  6959. "name": "Fabien Potencier",
  6960. "email": "fabien@symfony.com"
  6961. },
  6962. {
  6963. "name": "Symfony Community",
  6964. "homepage": "https://symfony.com/contributors"
  6965. }
  6966. ],
  6967. "description": "Provides basic utilities for the filesystem",
  6968. "homepage": "https://symfony.com",
  6969. "support": {
  6970. "source": "https://github.com/symfony/filesystem/tree/v6.4.3"
  6971. },
  6972. "funding": [
  6973. {
  6974. "url": "https://symfony.com/sponsor",
  6975. "type": "custom"
  6976. },
  6977. {
  6978. "url": "https://github.com/fabpot",
  6979. "type": "github"
  6980. },
  6981. {
  6982. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6983. "type": "tidelift"
  6984. }
  6985. ],
  6986. "time": "2024-01-23T14:51:35+00:00"
  6987. },
  6988. {
  6989. "name": "symfony/finder",
  6990. "version": "v6.4.0",
  6991. "source": {
  6992. "type": "git",
  6993. "url": "https://github.com/symfony/finder.git",
  6994. "reference": "11d736e97f116ac375a81f96e662911a34cd50ce"
  6995. },
  6996. "dist": {
  6997. "type": "zip",
  6998. "url": "https://api.github.com/repos/symfony/finder/zipball/11d736e97f116ac375a81f96e662911a34cd50ce",
  6999. "reference": "11d736e97f116ac375a81f96e662911a34cd50ce",
  7000. "shasum": ""
  7001. },
  7002. "require": {
  7003. "php": ">=8.1"
  7004. },
  7005. "require-dev": {
  7006. "symfony/filesystem": "^6.0|^7.0"
  7007. },
  7008. "type": "library",
  7009. "autoload": {
  7010. "psr-4": {
  7011. "Symfony\\Component\\Finder\\": ""
  7012. },
  7013. "exclude-from-classmap": [
  7014. "/Tests/"
  7015. ]
  7016. },
  7017. "notification-url": "https://packagist.org/downloads/",
  7018. "license": [
  7019. "MIT"
  7020. ],
  7021. "authors": [
  7022. {
  7023. "name": "Fabien Potencier",
  7024. "email": "fabien@symfony.com"
  7025. },
  7026. {
  7027. "name": "Symfony Community",
  7028. "homepage": "https://symfony.com/contributors"
  7029. }
  7030. ],
  7031. "description": "Finds files and directories via an intuitive fluent interface",
  7032. "homepage": "https://symfony.com",
  7033. "support": {
  7034. "source": "https://github.com/symfony/finder/tree/v6.4.0"
  7035. },
  7036. "funding": [
  7037. {
  7038. "url": "https://symfony.com/sponsor",
  7039. "type": "custom"
  7040. },
  7041. {
  7042. "url": "https://github.com/fabpot",
  7043. "type": "github"
  7044. },
  7045. {
  7046. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7047. "type": "tidelift"
  7048. }
  7049. ],
  7050. "time": "2023-10-31T17:30:12+00:00"
  7051. },
  7052. {
  7053. "name": "symfony/http-foundation",
  7054. "version": "v6.4.4",
  7055. "source": {
  7056. "type": "git",
  7057. "url": "https://github.com/symfony/http-foundation.git",
  7058. "reference": "ebc713bc6e6f4b53f46539fc158be85dfcd77304"
  7059. },
  7060. "dist": {
  7061. "type": "zip",
  7062. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ebc713bc6e6f4b53f46539fc158be85dfcd77304",
  7063. "reference": "ebc713bc6e6f4b53f46539fc158be85dfcd77304",
  7064. "shasum": ""
  7065. },
  7066. "require": {
  7067. "php": ">=8.1",
  7068. "symfony/deprecation-contracts": "^2.5|^3",
  7069. "symfony/polyfill-mbstring": "~1.1",
  7070. "symfony/polyfill-php83": "^1.27"
  7071. },
  7072. "conflict": {
  7073. "symfony/cache": "<6.3"
  7074. },
  7075. "require-dev": {
  7076. "doctrine/dbal": "^2.13.1|^3|^4",
  7077. "predis/predis": "^1.1|^2.0",
  7078. "symfony/cache": "^6.3|^7.0",
  7079. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7080. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7081. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  7082. "symfony/mime": "^5.4|^6.0|^7.0",
  7083. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  7084. },
  7085. "type": "library",
  7086. "autoload": {
  7087. "psr-4": {
  7088. "Symfony\\Component\\HttpFoundation\\": ""
  7089. },
  7090. "exclude-from-classmap": [
  7091. "/Tests/"
  7092. ]
  7093. },
  7094. "notification-url": "https://packagist.org/downloads/",
  7095. "license": [
  7096. "MIT"
  7097. ],
  7098. "authors": [
  7099. {
  7100. "name": "Fabien Potencier",
  7101. "email": "fabien@symfony.com"
  7102. },
  7103. {
  7104. "name": "Symfony Community",
  7105. "homepage": "https://symfony.com/contributors"
  7106. }
  7107. ],
  7108. "description": "Defines an object-oriented layer for the HTTP specification",
  7109. "homepage": "https://symfony.com",
  7110. "support": {
  7111. "source": "https://github.com/symfony/http-foundation/tree/v6.4.4"
  7112. },
  7113. "funding": [
  7114. {
  7115. "url": "https://symfony.com/sponsor",
  7116. "type": "custom"
  7117. },
  7118. {
  7119. "url": "https://github.com/fabpot",
  7120. "type": "github"
  7121. },
  7122. {
  7123. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7124. "type": "tidelift"
  7125. }
  7126. ],
  7127. "time": "2024-02-08T15:01:18+00:00"
  7128. },
  7129. {
  7130. "name": "symfony/http-kernel",
  7131. "version": "v6.4.4",
  7132. "source": {
  7133. "type": "git",
  7134. "url": "https://github.com/symfony/http-kernel.git",
  7135. "reference": "7a186f64a7f02787c04e8476538624d6aa888e42"
  7136. },
  7137. "dist": {
  7138. "type": "zip",
  7139. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/7a186f64a7f02787c04e8476538624d6aa888e42",
  7140. "reference": "7a186f64a7f02787c04e8476538624d6aa888e42",
  7141. "shasum": ""
  7142. },
  7143. "require": {
  7144. "php": ">=8.1",
  7145. "psr/log": "^1|^2|^3",
  7146. "symfony/deprecation-contracts": "^2.5|^3",
  7147. "symfony/error-handler": "^6.4|^7.0",
  7148. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  7149. "symfony/http-foundation": "^6.4|^7.0",
  7150. "symfony/polyfill-ctype": "^1.8"
  7151. },
  7152. "conflict": {
  7153. "symfony/browser-kit": "<5.4",
  7154. "symfony/cache": "<5.4",
  7155. "symfony/config": "<6.1",
  7156. "symfony/console": "<5.4",
  7157. "symfony/dependency-injection": "<6.4",
  7158. "symfony/doctrine-bridge": "<5.4",
  7159. "symfony/form": "<5.4",
  7160. "symfony/http-client": "<5.4",
  7161. "symfony/http-client-contracts": "<2.5",
  7162. "symfony/mailer": "<5.4",
  7163. "symfony/messenger": "<5.4",
  7164. "symfony/translation": "<5.4",
  7165. "symfony/translation-contracts": "<2.5",
  7166. "symfony/twig-bridge": "<5.4",
  7167. "symfony/validator": "<6.4",
  7168. "symfony/var-dumper": "<6.3",
  7169. "twig/twig": "<2.13"
  7170. },
  7171. "provide": {
  7172. "psr/log-implementation": "1.0|2.0|3.0"
  7173. },
  7174. "require-dev": {
  7175. "psr/cache": "^1.0|^2.0|^3.0",
  7176. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  7177. "symfony/clock": "^6.2|^7.0",
  7178. "symfony/config": "^6.1|^7.0",
  7179. "symfony/console": "^5.4|^6.0|^7.0",
  7180. "symfony/css-selector": "^5.4|^6.0|^7.0",
  7181. "symfony/dependency-injection": "^6.4|^7.0",
  7182. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  7183. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7184. "symfony/finder": "^5.4|^6.0|^7.0",
  7185. "symfony/http-client-contracts": "^2.5|^3",
  7186. "symfony/process": "^5.4|^6.0|^7.0",
  7187. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  7188. "symfony/routing": "^5.4|^6.0|^7.0",
  7189. "symfony/serializer": "^6.4.4|^7.0.4",
  7190. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  7191. "symfony/translation": "^5.4|^6.0|^7.0",
  7192. "symfony/translation-contracts": "^2.5|^3",
  7193. "symfony/uid": "^5.4|^6.0|^7.0",
  7194. "symfony/validator": "^6.4|^7.0",
  7195. "symfony/var-exporter": "^6.2|^7.0",
  7196. "twig/twig": "^2.13|^3.0.4"
  7197. },
  7198. "type": "library",
  7199. "autoload": {
  7200. "psr-4": {
  7201. "Symfony\\Component\\HttpKernel\\": ""
  7202. },
  7203. "exclude-from-classmap": [
  7204. "/Tests/"
  7205. ]
  7206. },
  7207. "notification-url": "https://packagist.org/downloads/",
  7208. "license": [
  7209. "MIT"
  7210. ],
  7211. "authors": [
  7212. {
  7213. "name": "Fabien Potencier",
  7214. "email": "fabien@symfony.com"
  7215. },
  7216. {
  7217. "name": "Symfony Community",
  7218. "homepage": "https://symfony.com/contributors"
  7219. }
  7220. ],
  7221. "description": "Provides a structured process for converting a Request into a Response",
  7222. "homepage": "https://symfony.com",
  7223. "support": {
  7224. "source": "https://github.com/symfony/http-kernel/tree/v6.4.4"
  7225. },
  7226. "funding": [
  7227. {
  7228. "url": "https://symfony.com/sponsor",
  7229. "type": "custom"
  7230. },
  7231. {
  7232. "url": "https://github.com/fabpot",
  7233. "type": "github"
  7234. },
  7235. {
  7236. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7237. "type": "tidelift"
  7238. }
  7239. ],
  7240. "time": "2024-02-27T06:32:13+00:00"
  7241. },
  7242. {
  7243. "name": "symfony/mailer",
  7244. "version": "v6.4.4",
  7245. "source": {
  7246. "type": "git",
  7247. "url": "https://github.com/symfony/mailer.git",
  7248. "reference": "791c5d31a8204cf3db0c66faab70282307f4376b"
  7249. },
  7250. "dist": {
  7251. "type": "zip",
  7252. "url": "https://api.github.com/repos/symfony/mailer/zipball/791c5d31a8204cf3db0c66faab70282307f4376b",
  7253. "reference": "791c5d31a8204cf3db0c66faab70282307f4376b",
  7254. "shasum": ""
  7255. },
  7256. "require": {
  7257. "egulias/email-validator": "^2.1.10|^3|^4",
  7258. "php": ">=8.1",
  7259. "psr/event-dispatcher": "^1",
  7260. "psr/log": "^1|^2|^3",
  7261. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  7262. "symfony/mime": "^6.2|^7.0",
  7263. "symfony/service-contracts": "^2.5|^3"
  7264. },
  7265. "conflict": {
  7266. "symfony/http-client-contracts": "<2.5",
  7267. "symfony/http-kernel": "<5.4",
  7268. "symfony/messenger": "<6.2",
  7269. "symfony/mime": "<6.2",
  7270. "symfony/twig-bridge": "<6.2.1"
  7271. },
  7272. "require-dev": {
  7273. "symfony/console": "^5.4|^6.0|^7.0",
  7274. "symfony/http-client": "^5.4|^6.0|^7.0",
  7275. "symfony/messenger": "^6.2|^7.0",
  7276. "symfony/twig-bridge": "^6.2|^7.0"
  7277. },
  7278. "type": "library",
  7279. "autoload": {
  7280. "psr-4": {
  7281. "Symfony\\Component\\Mailer\\": ""
  7282. },
  7283. "exclude-from-classmap": [
  7284. "/Tests/"
  7285. ]
  7286. },
  7287. "notification-url": "https://packagist.org/downloads/",
  7288. "license": [
  7289. "MIT"
  7290. ],
  7291. "authors": [
  7292. {
  7293. "name": "Fabien Potencier",
  7294. "email": "fabien@symfony.com"
  7295. },
  7296. {
  7297. "name": "Symfony Community",
  7298. "homepage": "https://symfony.com/contributors"
  7299. }
  7300. ],
  7301. "description": "Helps sending emails",
  7302. "homepage": "https://symfony.com",
  7303. "support": {
  7304. "source": "https://github.com/symfony/mailer/tree/v6.4.4"
  7305. },
  7306. "funding": [
  7307. {
  7308. "url": "https://symfony.com/sponsor",
  7309. "type": "custom"
  7310. },
  7311. {
  7312. "url": "https://github.com/fabpot",
  7313. "type": "github"
  7314. },
  7315. {
  7316. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7317. "type": "tidelift"
  7318. }
  7319. ],
  7320. "time": "2024-02-03T21:33:47+00:00"
  7321. },
  7322. {
  7323. "name": "symfony/mime",
  7324. "version": "v6.4.3",
  7325. "source": {
  7326. "type": "git",
  7327. "url": "https://github.com/symfony/mime.git",
  7328. "reference": "5017e0a9398c77090b7694be46f20eb796262a34"
  7329. },
  7330. "dist": {
  7331. "type": "zip",
  7332. "url": "https://api.github.com/repos/symfony/mime/zipball/5017e0a9398c77090b7694be46f20eb796262a34",
  7333. "reference": "5017e0a9398c77090b7694be46f20eb796262a34",
  7334. "shasum": ""
  7335. },
  7336. "require": {
  7337. "php": ">=8.1",
  7338. "symfony/deprecation-contracts": "^2.5|^3",
  7339. "symfony/polyfill-intl-idn": "^1.10",
  7340. "symfony/polyfill-mbstring": "^1.0"
  7341. },
  7342. "conflict": {
  7343. "egulias/email-validator": "~3.0.0",
  7344. "phpdocumentor/reflection-docblock": "<3.2.2",
  7345. "phpdocumentor/type-resolver": "<1.4.0",
  7346. "symfony/mailer": "<5.4",
  7347. "symfony/serializer": "<6.3.2"
  7348. },
  7349. "require-dev": {
  7350. "egulias/email-validator": "^2.1.10|^3.1|^4",
  7351. "league/html-to-markdown": "^5.0",
  7352. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7353. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7354. "symfony/property-access": "^5.4|^6.0|^7.0",
  7355. "symfony/property-info": "^5.4|^6.0|^7.0",
  7356. "symfony/serializer": "^6.3.2|^7.0"
  7357. },
  7358. "type": "library",
  7359. "autoload": {
  7360. "psr-4": {
  7361. "Symfony\\Component\\Mime\\": ""
  7362. },
  7363. "exclude-from-classmap": [
  7364. "/Tests/"
  7365. ]
  7366. },
  7367. "notification-url": "https://packagist.org/downloads/",
  7368. "license": [
  7369. "MIT"
  7370. ],
  7371. "authors": [
  7372. {
  7373. "name": "Fabien Potencier",
  7374. "email": "fabien@symfony.com"
  7375. },
  7376. {
  7377. "name": "Symfony Community",
  7378. "homepage": "https://symfony.com/contributors"
  7379. }
  7380. ],
  7381. "description": "Allows manipulating MIME messages",
  7382. "homepage": "https://symfony.com",
  7383. "keywords": [
  7384. "mime",
  7385. "mime-type"
  7386. ],
  7387. "support": {
  7388. "source": "https://github.com/symfony/mime/tree/v6.4.3"
  7389. },
  7390. "funding": [
  7391. {
  7392. "url": "https://symfony.com/sponsor",
  7393. "type": "custom"
  7394. },
  7395. {
  7396. "url": "https://github.com/fabpot",
  7397. "type": "github"
  7398. },
  7399. {
  7400. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7401. "type": "tidelift"
  7402. }
  7403. ],
  7404. "time": "2024-01-30T08:32:12+00:00"
  7405. },
  7406. {
  7407. "name": "symfony/polyfill-ctype",
  7408. "version": "v1.28.0",
  7409. "source": {
  7410. "type": "git",
  7411. "url": "https://github.com/symfony/polyfill-ctype.git",
  7412. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
  7413. },
  7414. "dist": {
  7415. "type": "zip",
  7416. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  7417. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  7418. "shasum": ""
  7419. },
  7420. "require": {
  7421. "php": ">=7.1"
  7422. },
  7423. "provide": {
  7424. "ext-ctype": "*"
  7425. },
  7426. "suggest": {
  7427. "ext-ctype": "For best performance"
  7428. },
  7429. "type": "library",
  7430. "extra": {
  7431. "branch-alias": {
  7432. "dev-main": "1.28-dev"
  7433. },
  7434. "thanks": {
  7435. "name": "symfony/polyfill",
  7436. "url": "https://github.com/symfony/polyfill"
  7437. }
  7438. },
  7439. "autoload": {
  7440. "files": [
  7441. "bootstrap.php"
  7442. ],
  7443. "psr-4": {
  7444. "Symfony\\Polyfill\\Ctype\\": ""
  7445. }
  7446. },
  7447. "notification-url": "https://packagist.org/downloads/",
  7448. "license": [
  7449. "MIT"
  7450. ],
  7451. "authors": [
  7452. {
  7453. "name": "Gert de Pagter",
  7454. "email": "BackEndTea@gmail.com"
  7455. },
  7456. {
  7457. "name": "Symfony Community",
  7458. "homepage": "https://symfony.com/contributors"
  7459. }
  7460. ],
  7461. "description": "Symfony polyfill for ctype functions",
  7462. "homepage": "https://symfony.com",
  7463. "keywords": [
  7464. "compatibility",
  7465. "ctype",
  7466. "polyfill",
  7467. "portable"
  7468. ],
  7469. "support": {
  7470. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0"
  7471. },
  7472. "funding": [
  7473. {
  7474. "url": "https://symfony.com/sponsor",
  7475. "type": "custom"
  7476. },
  7477. {
  7478. "url": "https://github.com/fabpot",
  7479. "type": "github"
  7480. },
  7481. {
  7482. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7483. "type": "tidelift"
  7484. }
  7485. ],
  7486. "time": "2023-01-26T09:26:14+00:00"
  7487. },
  7488. {
  7489. "name": "symfony/polyfill-iconv",
  7490. "version": "v1.28.0",
  7491. "source": {
  7492. "type": "git",
  7493. "url": "https://github.com/symfony/polyfill-iconv.git",
  7494. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1"
  7495. },
  7496. "dist": {
  7497. "type": "zip",
  7498. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6de50471469b8c9afc38164452ab2b6170ee71c1",
  7499. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1",
  7500. "shasum": ""
  7501. },
  7502. "require": {
  7503. "php": ">=7.1"
  7504. },
  7505. "provide": {
  7506. "ext-iconv": "*"
  7507. },
  7508. "suggest": {
  7509. "ext-iconv": "For best performance"
  7510. },
  7511. "type": "library",
  7512. "extra": {
  7513. "branch-alias": {
  7514. "dev-main": "1.28-dev"
  7515. },
  7516. "thanks": {
  7517. "name": "symfony/polyfill",
  7518. "url": "https://github.com/symfony/polyfill"
  7519. }
  7520. },
  7521. "autoload": {
  7522. "files": [
  7523. "bootstrap.php"
  7524. ],
  7525. "psr-4": {
  7526. "Symfony\\Polyfill\\Iconv\\": ""
  7527. }
  7528. },
  7529. "notification-url": "https://packagist.org/downloads/",
  7530. "license": [
  7531. "MIT"
  7532. ],
  7533. "authors": [
  7534. {
  7535. "name": "Nicolas Grekas",
  7536. "email": "p@tchwork.com"
  7537. },
  7538. {
  7539. "name": "Symfony Community",
  7540. "homepage": "https://symfony.com/contributors"
  7541. }
  7542. ],
  7543. "description": "Symfony polyfill for the Iconv extension",
  7544. "homepage": "https://symfony.com",
  7545. "keywords": [
  7546. "compatibility",
  7547. "iconv",
  7548. "polyfill",
  7549. "portable",
  7550. "shim"
  7551. ],
  7552. "support": {
  7553. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.28.0"
  7554. },
  7555. "funding": [
  7556. {
  7557. "url": "https://symfony.com/sponsor",
  7558. "type": "custom"
  7559. },
  7560. {
  7561. "url": "https://github.com/fabpot",
  7562. "type": "github"
  7563. },
  7564. {
  7565. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7566. "type": "tidelift"
  7567. }
  7568. ],
  7569. "time": "2023-01-26T09:26:14+00:00"
  7570. },
  7571. {
  7572. "name": "symfony/polyfill-intl-grapheme",
  7573. "version": "v1.28.0",
  7574. "source": {
  7575. "type": "git",
  7576. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7577. "reference": "875e90aeea2777b6f135677f618529449334a612"
  7578. },
  7579. "dist": {
  7580. "type": "zip",
  7581. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612",
  7582. "reference": "875e90aeea2777b6f135677f618529449334a612",
  7583. "shasum": ""
  7584. },
  7585. "require": {
  7586. "php": ">=7.1"
  7587. },
  7588. "suggest": {
  7589. "ext-intl": "For best performance"
  7590. },
  7591. "type": "library",
  7592. "extra": {
  7593. "branch-alias": {
  7594. "dev-main": "1.28-dev"
  7595. },
  7596. "thanks": {
  7597. "name": "symfony/polyfill",
  7598. "url": "https://github.com/symfony/polyfill"
  7599. }
  7600. },
  7601. "autoload": {
  7602. "files": [
  7603. "bootstrap.php"
  7604. ],
  7605. "psr-4": {
  7606. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7607. }
  7608. },
  7609. "notification-url": "https://packagist.org/downloads/",
  7610. "license": [
  7611. "MIT"
  7612. ],
  7613. "authors": [
  7614. {
  7615. "name": "Nicolas Grekas",
  7616. "email": "p@tchwork.com"
  7617. },
  7618. {
  7619. "name": "Symfony Community",
  7620. "homepage": "https://symfony.com/contributors"
  7621. }
  7622. ],
  7623. "description": "Symfony polyfill for intl's grapheme_* functions",
  7624. "homepage": "https://symfony.com",
  7625. "keywords": [
  7626. "compatibility",
  7627. "grapheme",
  7628. "intl",
  7629. "polyfill",
  7630. "portable",
  7631. "shim"
  7632. ],
  7633. "support": {
  7634. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0"
  7635. },
  7636. "funding": [
  7637. {
  7638. "url": "https://symfony.com/sponsor",
  7639. "type": "custom"
  7640. },
  7641. {
  7642. "url": "https://github.com/fabpot",
  7643. "type": "github"
  7644. },
  7645. {
  7646. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7647. "type": "tidelift"
  7648. }
  7649. ],
  7650. "time": "2023-01-26T09:26:14+00:00"
  7651. },
  7652. {
  7653. "name": "symfony/polyfill-intl-idn",
  7654. "version": "v1.28.0",
  7655. "source": {
  7656. "type": "git",
  7657. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7658. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d"
  7659. },
  7660. "dist": {
  7661. "type": "zip",
  7662. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d",
  7663. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d",
  7664. "shasum": ""
  7665. },
  7666. "require": {
  7667. "php": ">=7.1",
  7668. "symfony/polyfill-intl-normalizer": "^1.10",
  7669. "symfony/polyfill-php72": "^1.10"
  7670. },
  7671. "suggest": {
  7672. "ext-intl": "For best performance"
  7673. },
  7674. "type": "library",
  7675. "extra": {
  7676. "branch-alias": {
  7677. "dev-main": "1.28-dev"
  7678. },
  7679. "thanks": {
  7680. "name": "symfony/polyfill",
  7681. "url": "https://github.com/symfony/polyfill"
  7682. }
  7683. },
  7684. "autoload": {
  7685. "files": [
  7686. "bootstrap.php"
  7687. ],
  7688. "psr-4": {
  7689. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7690. }
  7691. },
  7692. "notification-url": "https://packagist.org/downloads/",
  7693. "license": [
  7694. "MIT"
  7695. ],
  7696. "authors": [
  7697. {
  7698. "name": "Laurent Bassin",
  7699. "email": "laurent@bassin.info"
  7700. },
  7701. {
  7702. "name": "Trevor Rowbotham",
  7703. "email": "trevor.rowbotham@pm.me"
  7704. },
  7705. {
  7706. "name": "Symfony Community",
  7707. "homepage": "https://symfony.com/contributors"
  7708. }
  7709. ],
  7710. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7711. "homepage": "https://symfony.com",
  7712. "keywords": [
  7713. "compatibility",
  7714. "idn",
  7715. "intl",
  7716. "polyfill",
  7717. "portable",
  7718. "shim"
  7719. ],
  7720. "support": {
  7721. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.0"
  7722. },
  7723. "funding": [
  7724. {
  7725. "url": "https://symfony.com/sponsor",
  7726. "type": "custom"
  7727. },
  7728. {
  7729. "url": "https://github.com/fabpot",
  7730. "type": "github"
  7731. },
  7732. {
  7733. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7734. "type": "tidelift"
  7735. }
  7736. ],
  7737. "time": "2023-01-26T09:30:37+00:00"
  7738. },
  7739. {
  7740. "name": "symfony/polyfill-intl-normalizer",
  7741. "version": "v1.28.0",
  7742. "source": {
  7743. "type": "git",
  7744. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7745. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92"
  7746. },
  7747. "dist": {
  7748. "type": "zip",
  7749. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  7750. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  7751. "shasum": ""
  7752. },
  7753. "require": {
  7754. "php": ">=7.1"
  7755. },
  7756. "suggest": {
  7757. "ext-intl": "For best performance"
  7758. },
  7759. "type": "library",
  7760. "extra": {
  7761. "branch-alias": {
  7762. "dev-main": "1.28-dev"
  7763. },
  7764. "thanks": {
  7765. "name": "symfony/polyfill",
  7766. "url": "https://github.com/symfony/polyfill"
  7767. }
  7768. },
  7769. "autoload": {
  7770. "files": [
  7771. "bootstrap.php"
  7772. ],
  7773. "psr-4": {
  7774. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7775. },
  7776. "classmap": [
  7777. "Resources/stubs"
  7778. ]
  7779. },
  7780. "notification-url": "https://packagist.org/downloads/",
  7781. "license": [
  7782. "MIT"
  7783. ],
  7784. "authors": [
  7785. {
  7786. "name": "Nicolas Grekas",
  7787. "email": "p@tchwork.com"
  7788. },
  7789. {
  7790. "name": "Symfony Community",
  7791. "homepage": "https://symfony.com/contributors"
  7792. }
  7793. ],
  7794. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7795. "homepage": "https://symfony.com",
  7796. "keywords": [
  7797. "compatibility",
  7798. "intl",
  7799. "normalizer",
  7800. "polyfill",
  7801. "portable",
  7802. "shim"
  7803. ],
  7804. "support": {
  7805. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0"
  7806. },
  7807. "funding": [
  7808. {
  7809. "url": "https://symfony.com/sponsor",
  7810. "type": "custom"
  7811. },
  7812. {
  7813. "url": "https://github.com/fabpot",
  7814. "type": "github"
  7815. },
  7816. {
  7817. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7818. "type": "tidelift"
  7819. }
  7820. ],
  7821. "time": "2023-01-26T09:26:14+00:00"
  7822. },
  7823. {
  7824. "name": "symfony/polyfill-mbstring",
  7825. "version": "v1.28.0",
  7826. "source": {
  7827. "type": "git",
  7828. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7829. "reference": "42292d99c55abe617799667f454222c54c60e229"
  7830. },
  7831. "dist": {
  7832. "type": "zip",
  7833. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
  7834. "reference": "42292d99c55abe617799667f454222c54c60e229",
  7835. "shasum": ""
  7836. },
  7837. "require": {
  7838. "php": ">=7.1"
  7839. },
  7840. "provide": {
  7841. "ext-mbstring": "*"
  7842. },
  7843. "suggest": {
  7844. "ext-mbstring": "For best performance"
  7845. },
  7846. "type": "library",
  7847. "extra": {
  7848. "branch-alias": {
  7849. "dev-main": "1.28-dev"
  7850. },
  7851. "thanks": {
  7852. "name": "symfony/polyfill",
  7853. "url": "https://github.com/symfony/polyfill"
  7854. }
  7855. },
  7856. "autoload": {
  7857. "files": [
  7858. "bootstrap.php"
  7859. ],
  7860. "psr-4": {
  7861. "Symfony\\Polyfill\\Mbstring\\": ""
  7862. }
  7863. },
  7864. "notification-url": "https://packagist.org/downloads/",
  7865. "license": [
  7866. "MIT"
  7867. ],
  7868. "authors": [
  7869. {
  7870. "name": "Nicolas Grekas",
  7871. "email": "p@tchwork.com"
  7872. },
  7873. {
  7874. "name": "Symfony Community",
  7875. "homepage": "https://symfony.com/contributors"
  7876. }
  7877. ],
  7878. "description": "Symfony polyfill for the Mbstring extension",
  7879. "homepage": "https://symfony.com",
  7880. "keywords": [
  7881. "compatibility",
  7882. "mbstring",
  7883. "polyfill",
  7884. "portable",
  7885. "shim"
  7886. ],
  7887. "support": {
  7888. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0"
  7889. },
  7890. "funding": [
  7891. {
  7892. "url": "https://symfony.com/sponsor",
  7893. "type": "custom"
  7894. },
  7895. {
  7896. "url": "https://github.com/fabpot",
  7897. "type": "github"
  7898. },
  7899. {
  7900. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7901. "type": "tidelift"
  7902. }
  7903. ],
  7904. "time": "2023-07-28T09:04:16+00:00"
  7905. },
  7906. {
  7907. "name": "symfony/polyfill-php72",
  7908. "version": "v1.29.0",
  7909. "source": {
  7910. "type": "git",
  7911. "url": "https://github.com/symfony/polyfill-php72.git",
  7912. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25"
  7913. },
  7914. "dist": {
  7915. "type": "zip",
  7916. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25",
  7917. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25",
  7918. "shasum": ""
  7919. },
  7920. "require": {
  7921. "php": ">=7.1"
  7922. },
  7923. "type": "library",
  7924. "extra": {
  7925. "thanks": {
  7926. "name": "symfony/polyfill",
  7927. "url": "https://github.com/symfony/polyfill"
  7928. }
  7929. },
  7930. "autoload": {
  7931. "files": [
  7932. "bootstrap.php"
  7933. ],
  7934. "psr-4": {
  7935. "Symfony\\Polyfill\\Php72\\": ""
  7936. }
  7937. },
  7938. "notification-url": "https://packagist.org/downloads/",
  7939. "license": [
  7940. "MIT"
  7941. ],
  7942. "authors": [
  7943. {
  7944. "name": "Nicolas Grekas",
  7945. "email": "p@tchwork.com"
  7946. },
  7947. {
  7948. "name": "Symfony Community",
  7949. "homepage": "https://symfony.com/contributors"
  7950. }
  7951. ],
  7952. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  7953. "homepage": "https://symfony.com",
  7954. "keywords": [
  7955. "compatibility",
  7956. "polyfill",
  7957. "portable",
  7958. "shim"
  7959. ],
  7960. "support": {
  7961. "source": "https://github.com/symfony/polyfill-php72/tree/v1.29.0"
  7962. },
  7963. "funding": [
  7964. {
  7965. "url": "https://symfony.com/sponsor",
  7966. "type": "custom"
  7967. },
  7968. {
  7969. "url": "https://github.com/fabpot",
  7970. "type": "github"
  7971. },
  7972. {
  7973. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7974. "type": "tidelift"
  7975. }
  7976. ],
  7977. "time": "2024-01-29T20:11:03+00:00"
  7978. },
  7979. {
  7980. "name": "symfony/polyfill-php80",
  7981. "version": "v1.29.0",
  7982. "source": {
  7983. "type": "git",
  7984. "url": "https://github.com/symfony/polyfill-php80.git",
  7985. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  7986. },
  7987. "dist": {
  7988. "type": "zip",
  7989. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  7990. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  7991. "shasum": ""
  7992. },
  7993. "require": {
  7994. "php": ">=7.1"
  7995. },
  7996. "type": "library",
  7997. "extra": {
  7998. "thanks": {
  7999. "name": "symfony/polyfill",
  8000. "url": "https://github.com/symfony/polyfill"
  8001. }
  8002. },
  8003. "autoload": {
  8004. "files": [
  8005. "bootstrap.php"
  8006. ],
  8007. "psr-4": {
  8008. "Symfony\\Polyfill\\Php80\\": ""
  8009. },
  8010. "classmap": [
  8011. "Resources/stubs"
  8012. ]
  8013. },
  8014. "notification-url": "https://packagist.org/downloads/",
  8015. "license": [
  8016. "MIT"
  8017. ],
  8018. "authors": [
  8019. {
  8020. "name": "Ion Bazan",
  8021. "email": "ion.bazan@gmail.com"
  8022. },
  8023. {
  8024. "name": "Nicolas Grekas",
  8025. "email": "p@tchwork.com"
  8026. },
  8027. {
  8028. "name": "Symfony Community",
  8029. "homepage": "https://symfony.com/contributors"
  8030. }
  8031. ],
  8032. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8033. "homepage": "https://symfony.com",
  8034. "keywords": [
  8035. "compatibility",
  8036. "polyfill",
  8037. "portable",
  8038. "shim"
  8039. ],
  8040. "support": {
  8041. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  8042. },
  8043. "funding": [
  8044. {
  8045. "url": "https://symfony.com/sponsor",
  8046. "type": "custom"
  8047. },
  8048. {
  8049. "url": "https://github.com/fabpot",
  8050. "type": "github"
  8051. },
  8052. {
  8053. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8054. "type": "tidelift"
  8055. }
  8056. ],
  8057. "time": "2024-01-29T20:11:03+00:00"
  8058. },
  8059. {
  8060. "name": "symfony/polyfill-php81",
  8061. "version": "v1.29.0",
  8062. "source": {
  8063. "type": "git",
  8064. "url": "https://github.com/symfony/polyfill-php81.git",
  8065. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
  8066. },
  8067. "dist": {
  8068. "type": "zip",
  8069. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
  8070. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
  8071. "shasum": ""
  8072. },
  8073. "require": {
  8074. "php": ">=7.1"
  8075. },
  8076. "type": "library",
  8077. "extra": {
  8078. "thanks": {
  8079. "name": "symfony/polyfill",
  8080. "url": "https://github.com/symfony/polyfill"
  8081. }
  8082. },
  8083. "autoload": {
  8084. "files": [
  8085. "bootstrap.php"
  8086. ],
  8087. "psr-4": {
  8088. "Symfony\\Polyfill\\Php81\\": ""
  8089. },
  8090. "classmap": [
  8091. "Resources/stubs"
  8092. ]
  8093. },
  8094. "notification-url": "https://packagist.org/downloads/",
  8095. "license": [
  8096. "MIT"
  8097. ],
  8098. "authors": [
  8099. {
  8100. "name": "Nicolas Grekas",
  8101. "email": "p@tchwork.com"
  8102. },
  8103. {
  8104. "name": "Symfony Community",
  8105. "homepage": "https://symfony.com/contributors"
  8106. }
  8107. ],
  8108. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  8109. "homepage": "https://symfony.com",
  8110. "keywords": [
  8111. "compatibility",
  8112. "polyfill",
  8113. "portable",
  8114. "shim"
  8115. ],
  8116. "support": {
  8117. "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0"
  8118. },
  8119. "funding": [
  8120. {
  8121. "url": "https://symfony.com/sponsor",
  8122. "type": "custom"
  8123. },
  8124. {
  8125. "url": "https://github.com/fabpot",
  8126. "type": "github"
  8127. },
  8128. {
  8129. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8130. "type": "tidelift"
  8131. }
  8132. ],
  8133. "time": "2024-01-29T20:11:03+00:00"
  8134. },
  8135. {
  8136. "name": "symfony/polyfill-php83",
  8137. "version": "v1.28.0",
  8138. "source": {
  8139. "type": "git",
  8140. "url": "https://github.com/symfony/polyfill-php83.git",
  8141. "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11"
  8142. },
  8143. "dist": {
  8144. "type": "zip",
  8145. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
  8146. "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
  8147. "shasum": ""
  8148. },
  8149. "require": {
  8150. "php": ">=7.1",
  8151. "symfony/polyfill-php80": "^1.14"
  8152. },
  8153. "type": "library",
  8154. "extra": {
  8155. "branch-alias": {
  8156. "dev-main": "1.28-dev"
  8157. },
  8158. "thanks": {
  8159. "name": "symfony/polyfill",
  8160. "url": "https://github.com/symfony/polyfill"
  8161. }
  8162. },
  8163. "autoload": {
  8164. "files": [
  8165. "bootstrap.php"
  8166. ],
  8167. "psr-4": {
  8168. "Symfony\\Polyfill\\Php83\\": ""
  8169. },
  8170. "classmap": [
  8171. "Resources/stubs"
  8172. ]
  8173. },
  8174. "notification-url": "https://packagist.org/downloads/",
  8175. "license": [
  8176. "MIT"
  8177. ],
  8178. "authors": [
  8179. {
  8180. "name": "Nicolas Grekas",
  8181. "email": "p@tchwork.com"
  8182. },
  8183. {
  8184. "name": "Symfony Community",
  8185. "homepage": "https://symfony.com/contributors"
  8186. }
  8187. ],
  8188. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  8189. "homepage": "https://symfony.com",
  8190. "keywords": [
  8191. "compatibility",
  8192. "polyfill",
  8193. "portable",
  8194. "shim"
  8195. ],
  8196. "support": {
  8197. "source": "https://github.com/symfony/polyfill-php83/tree/v1.28.0"
  8198. },
  8199. "funding": [
  8200. {
  8201. "url": "https://symfony.com/sponsor",
  8202. "type": "custom"
  8203. },
  8204. {
  8205. "url": "https://github.com/fabpot",
  8206. "type": "github"
  8207. },
  8208. {
  8209. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8210. "type": "tidelift"
  8211. }
  8212. ],
  8213. "time": "2023-08-16T06:22:46+00:00"
  8214. },
  8215. {
  8216. "name": "symfony/process",
  8217. "version": "v6.4.4",
  8218. "source": {
  8219. "type": "git",
  8220. "url": "https://github.com/symfony/process.git",
  8221. "reference": "710e27879e9be3395de2b98da3f52a946039f297"
  8222. },
  8223. "dist": {
  8224. "type": "zip",
  8225. "url": "https://api.github.com/repos/symfony/process/zipball/710e27879e9be3395de2b98da3f52a946039f297",
  8226. "reference": "710e27879e9be3395de2b98da3f52a946039f297",
  8227. "shasum": ""
  8228. },
  8229. "require": {
  8230. "php": ">=8.1"
  8231. },
  8232. "type": "library",
  8233. "autoload": {
  8234. "psr-4": {
  8235. "Symfony\\Component\\Process\\": ""
  8236. },
  8237. "exclude-from-classmap": [
  8238. "/Tests/"
  8239. ]
  8240. },
  8241. "notification-url": "https://packagist.org/downloads/",
  8242. "license": [
  8243. "MIT"
  8244. ],
  8245. "authors": [
  8246. {
  8247. "name": "Fabien Potencier",
  8248. "email": "fabien@symfony.com"
  8249. },
  8250. {
  8251. "name": "Symfony Community",
  8252. "homepage": "https://symfony.com/contributors"
  8253. }
  8254. ],
  8255. "description": "Executes commands in sub-processes",
  8256. "homepage": "https://symfony.com",
  8257. "support": {
  8258. "source": "https://github.com/symfony/process/tree/v6.4.4"
  8259. },
  8260. "funding": [
  8261. {
  8262. "url": "https://symfony.com/sponsor",
  8263. "type": "custom"
  8264. },
  8265. {
  8266. "url": "https://github.com/fabpot",
  8267. "type": "github"
  8268. },
  8269. {
  8270. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8271. "type": "tidelift"
  8272. }
  8273. ],
  8274. "time": "2024-02-20T12:31:00+00:00"
  8275. },
  8276. {
  8277. "name": "symfony/psr-http-message-bridge",
  8278. "version": "v6.4.3",
  8279. "source": {
  8280. "type": "git",
  8281. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  8282. "reference": "49cfb0223ec64379f7154214dcc1f7c46f3c7a47"
  8283. },
  8284. "dist": {
  8285. "type": "zip",
  8286. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/49cfb0223ec64379f7154214dcc1f7c46f3c7a47",
  8287. "reference": "49cfb0223ec64379f7154214dcc1f7c46f3c7a47",
  8288. "shasum": ""
  8289. },
  8290. "require": {
  8291. "php": ">=8.1",
  8292. "psr/http-message": "^1.0|^2.0",
  8293. "symfony/http-foundation": "^5.4|^6.0|^7.0"
  8294. },
  8295. "conflict": {
  8296. "php-http/discovery": "<1.15",
  8297. "symfony/http-kernel": "<6.2"
  8298. },
  8299. "require-dev": {
  8300. "nyholm/psr7": "^1.1",
  8301. "php-http/discovery": "^1.15",
  8302. "psr/log": "^1.1.4|^2|^3",
  8303. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  8304. "symfony/config": "^5.4|^6.0|^7.0",
  8305. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  8306. "symfony/framework-bundle": "^6.2|^7.0",
  8307. "symfony/http-kernel": "^6.2|^7.0"
  8308. },
  8309. "type": "symfony-bridge",
  8310. "autoload": {
  8311. "psr-4": {
  8312. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  8313. },
  8314. "exclude-from-classmap": [
  8315. "/Tests/"
  8316. ]
  8317. },
  8318. "notification-url": "https://packagist.org/downloads/",
  8319. "license": [
  8320. "MIT"
  8321. ],
  8322. "authors": [
  8323. {
  8324. "name": "Fabien Potencier",
  8325. "email": "fabien@symfony.com"
  8326. },
  8327. {
  8328. "name": "Symfony Community",
  8329. "homepage": "https://symfony.com/contributors"
  8330. }
  8331. ],
  8332. "description": "PSR HTTP message bridge",
  8333. "homepage": "https://symfony.com",
  8334. "keywords": [
  8335. "http",
  8336. "http-message",
  8337. "psr-17",
  8338. "psr-7"
  8339. ],
  8340. "support": {
  8341. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v6.4.3"
  8342. },
  8343. "funding": [
  8344. {
  8345. "url": "https://symfony.com/sponsor",
  8346. "type": "custom"
  8347. },
  8348. {
  8349. "url": "https://github.com/fabpot",
  8350. "type": "github"
  8351. },
  8352. {
  8353. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8354. "type": "tidelift"
  8355. }
  8356. ],
  8357. "time": "2024-01-23T14:51:35+00:00"
  8358. },
  8359. {
  8360. "name": "symfony/routing",
  8361. "version": "v6.4.3",
  8362. "source": {
  8363. "type": "git",
  8364. "url": "https://github.com/symfony/routing.git",
  8365. "reference": "3b2957ad54902f0f544df83e3d58b38d7e8e5842"
  8366. },
  8367. "dist": {
  8368. "type": "zip",
  8369. "url": "https://api.github.com/repos/symfony/routing/zipball/3b2957ad54902f0f544df83e3d58b38d7e8e5842",
  8370. "reference": "3b2957ad54902f0f544df83e3d58b38d7e8e5842",
  8371. "shasum": ""
  8372. },
  8373. "require": {
  8374. "php": ">=8.1",
  8375. "symfony/deprecation-contracts": "^2.5|^3"
  8376. },
  8377. "conflict": {
  8378. "doctrine/annotations": "<1.12",
  8379. "symfony/config": "<6.2",
  8380. "symfony/dependency-injection": "<5.4",
  8381. "symfony/yaml": "<5.4"
  8382. },
  8383. "require-dev": {
  8384. "doctrine/annotations": "^1.12|^2",
  8385. "psr/log": "^1|^2|^3",
  8386. "symfony/config": "^6.2|^7.0",
  8387. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8388. "symfony/expression-language": "^5.4|^6.0|^7.0",
  8389. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  8390. "symfony/yaml": "^5.4|^6.0|^7.0"
  8391. },
  8392. "type": "library",
  8393. "autoload": {
  8394. "psr-4": {
  8395. "Symfony\\Component\\Routing\\": ""
  8396. },
  8397. "exclude-from-classmap": [
  8398. "/Tests/"
  8399. ]
  8400. },
  8401. "notification-url": "https://packagist.org/downloads/",
  8402. "license": [
  8403. "MIT"
  8404. ],
  8405. "authors": [
  8406. {
  8407. "name": "Fabien Potencier",
  8408. "email": "fabien@symfony.com"
  8409. },
  8410. {
  8411. "name": "Symfony Community",
  8412. "homepage": "https://symfony.com/contributors"
  8413. }
  8414. ],
  8415. "description": "Maps an HTTP request to a set of configuration variables",
  8416. "homepage": "https://symfony.com",
  8417. "keywords": [
  8418. "router",
  8419. "routing",
  8420. "uri",
  8421. "url"
  8422. ],
  8423. "support": {
  8424. "source": "https://github.com/symfony/routing/tree/v6.4.3"
  8425. },
  8426. "funding": [
  8427. {
  8428. "url": "https://symfony.com/sponsor",
  8429. "type": "custom"
  8430. },
  8431. {
  8432. "url": "https://github.com/fabpot",
  8433. "type": "github"
  8434. },
  8435. {
  8436. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8437. "type": "tidelift"
  8438. }
  8439. ],
  8440. "time": "2024-01-30T13:55:02+00:00"
  8441. },
  8442. {
  8443. "name": "symfony/serializer",
  8444. "version": "v6.4.4",
  8445. "source": {
  8446. "type": "git",
  8447. "url": "https://github.com/symfony/serializer.git",
  8448. "reference": "88da7f8fe03c5f4c2a69da907f1de03fab2e6872"
  8449. },
  8450. "dist": {
  8451. "type": "zip",
  8452. "url": "https://api.github.com/repos/symfony/serializer/zipball/88da7f8fe03c5f4c2a69da907f1de03fab2e6872",
  8453. "reference": "88da7f8fe03c5f4c2a69da907f1de03fab2e6872",
  8454. "shasum": ""
  8455. },
  8456. "require": {
  8457. "php": ">=8.1",
  8458. "symfony/deprecation-contracts": "^2.5|^3",
  8459. "symfony/polyfill-ctype": "~1.8"
  8460. },
  8461. "conflict": {
  8462. "doctrine/annotations": "<1.12",
  8463. "phpdocumentor/reflection-docblock": "<3.2.2",
  8464. "phpdocumentor/type-resolver": "<1.4.0",
  8465. "symfony/dependency-injection": "<5.4",
  8466. "symfony/property-access": "<5.4",
  8467. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  8468. "symfony/uid": "<5.4",
  8469. "symfony/validator": "<6.4",
  8470. "symfony/yaml": "<5.4"
  8471. },
  8472. "require-dev": {
  8473. "doctrine/annotations": "^1.12|^2",
  8474. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  8475. "seld/jsonlint": "^1.10",
  8476. "symfony/cache": "^5.4|^6.0|^7.0",
  8477. "symfony/config": "^5.4|^6.0|^7.0",
  8478. "symfony/console": "^5.4|^6.0|^7.0",
  8479. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8480. "symfony/error-handler": "^5.4|^6.0|^7.0",
  8481. "symfony/filesystem": "^5.4|^6.0|^7.0",
  8482. "symfony/form": "^5.4|^6.0|^7.0",
  8483. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  8484. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  8485. "symfony/messenger": "^5.4|^6.0|^7.0",
  8486. "symfony/mime": "^5.4|^6.0|^7.0",
  8487. "symfony/property-access": "^5.4.26|^6.3|^7.0",
  8488. "symfony/property-info": "^5.4.24|^6.2.11|^7.0",
  8489. "symfony/translation-contracts": "^2.5|^3",
  8490. "symfony/uid": "^5.4|^6.0|^7.0",
  8491. "symfony/validator": "^6.4|^7.0",
  8492. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  8493. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  8494. "symfony/yaml": "^5.4|^6.0|^7.0"
  8495. },
  8496. "type": "library",
  8497. "autoload": {
  8498. "psr-4": {
  8499. "Symfony\\Component\\Serializer\\": ""
  8500. },
  8501. "exclude-from-classmap": [
  8502. "/Tests/"
  8503. ]
  8504. },
  8505. "notification-url": "https://packagist.org/downloads/",
  8506. "license": [
  8507. "MIT"
  8508. ],
  8509. "authors": [
  8510. {
  8511. "name": "Fabien Potencier",
  8512. "email": "fabien@symfony.com"
  8513. },
  8514. {
  8515. "name": "Symfony Community",
  8516. "homepage": "https://symfony.com/contributors"
  8517. }
  8518. ],
  8519. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  8520. "homepage": "https://symfony.com",
  8521. "support": {
  8522. "source": "https://github.com/symfony/serializer/tree/v6.4.4"
  8523. },
  8524. "funding": [
  8525. {
  8526. "url": "https://symfony.com/sponsor",
  8527. "type": "custom"
  8528. },
  8529. {
  8530. "url": "https://github.com/fabpot",
  8531. "type": "github"
  8532. },
  8533. {
  8534. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8535. "type": "tidelift"
  8536. }
  8537. ],
  8538. "time": "2024-02-22T20:27:10+00:00"
  8539. },
  8540. {
  8541. "name": "symfony/service-contracts",
  8542. "version": "v3.4.1",
  8543. "source": {
  8544. "type": "git",
  8545. "url": "https://github.com/symfony/service-contracts.git",
  8546. "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0"
  8547. },
  8548. "dist": {
  8549. "type": "zip",
  8550. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/fe07cbc8d837f60caf7018068e350cc5163681a0",
  8551. "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0",
  8552. "shasum": ""
  8553. },
  8554. "require": {
  8555. "php": ">=8.1",
  8556. "psr/container": "^1.1|^2.0"
  8557. },
  8558. "conflict": {
  8559. "ext-psr": "<1.1|>=2"
  8560. },
  8561. "type": "library",
  8562. "extra": {
  8563. "branch-alias": {
  8564. "dev-main": "3.4-dev"
  8565. },
  8566. "thanks": {
  8567. "name": "symfony/contracts",
  8568. "url": "https://github.com/symfony/contracts"
  8569. }
  8570. },
  8571. "autoload": {
  8572. "psr-4": {
  8573. "Symfony\\Contracts\\Service\\": ""
  8574. },
  8575. "exclude-from-classmap": [
  8576. "/Test/"
  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": "Generic abstractions related to writing services",
  8594. "homepage": "https://symfony.com",
  8595. "keywords": [
  8596. "abstractions",
  8597. "contracts",
  8598. "decoupling",
  8599. "interfaces",
  8600. "interoperability",
  8601. "standards"
  8602. ],
  8603. "support": {
  8604. "source": "https://github.com/symfony/service-contracts/tree/v3.4.1"
  8605. },
  8606. "funding": [
  8607. {
  8608. "url": "https://symfony.com/sponsor",
  8609. "type": "custom"
  8610. },
  8611. {
  8612. "url": "https://github.com/fabpot",
  8613. "type": "github"
  8614. },
  8615. {
  8616. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8617. "type": "tidelift"
  8618. }
  8619. ],
  8620. "time": "2023-12-26T14:02:43+00:00"
  8621. },
  8622. {
  8623. "name": "symfony/string",
  8624. "version": "v6.4.4",
  8625. "source": {
  8626. "type": "git",
  8627. "url": "https://github.com/symfony/string.git",
  8628. "reference": "4e465a95bdc32f49cf4c7f07f751b843bbd6dcd9"
  8629. },
  8630. "dist": {
  8631. "type": "zip",
  8632. "url": "https://api.github.com/repos/symfony/string/zipball/4e465a95bdc32f49cf4c7f07f751b843bbd6dcd9",
  8633. "reference": "4e465a95bdc32f49cf4c7f07f751b843bbd6dcd9",
  8634. "shasum": ""
  8635. },
  8636. "require": {
  8637. "php": ">=8.1",
  8638. "symfony/polyfill-ctype": "~1.8",
  8639. "symfony/polyfill-intl-grapheme": "~1.0",
  8640. "symfony/polyfill-intl-normalizer": "~1.0",
  8641. "symfony/polyfill-mbstring": "~1.0"
  8642. },
  8643. "conflict": {
  8644. "symfony/translation-contracts": "<2.5"
  8645. },
  8646. "require-dev": {
  8647. "symfony/error-handler": "^5.4|^6.0|^7.0",
  8648. "symfony/http-client": "^5.4|^6.0|^7.0",
  8649. "symfony/intl": "^6.2|^7.0",
  8650. "symfony/translation-contracts": "^2.5|^3.0",
  8651. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  8652. },
  8653. "type": "library",
  8654. "autoload": {
  8655. "files": [
  8656. "Resources/functions.php"
  8657. ],
  8658. "psr-4": {
  8659. "Symfony\\Component\\String\\": ""
  8660. },
  8661. "exclude-from-classmap": [
  8662. "/Tests/"
  8663. ]
  8664. },
  8665. "notification-url": "https://packagist.org/downloads/",
  8666. "license": [
  8667. "MIT"
  8668. ],
  8669. "authors": [
  8670. {
  8671. "name": "Nicolas Grekas",
  8672. "email": "p@tchwork.com"
  8673. },
  8674. {
  8675. "name": "Symfony Community",
  8676. "homepage": "https://symfony.com/contributors"
  8677. }
  8678. ],
  8679. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8680. "homepage": "https://symfony.com",
  8681. "keywords": [
  8682. "grapheme",
  8683. "i18n",
  8684. "string",
  8685. "unicode",
  8686. "utf-8",
  8687. "utf8"
  8688. ],
  8689. "support": {
  8690. "source": "https://github.com/symfony/string/tree/v6.4.4"
  8691. },
  8692. "funding": [
  8693. {
  8694. "url": "https://symfony.com/sponsor",
  8695. "type": "custom"
  8696. },
  8697. {
  8698. "url": "https://github.com/fabpot",
  8699. "type": "github"
  8700. },
  8701. {
  8702. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8703. "type": "tidelift"
  8704. }
  8705. ],
  8706. "time": "2024-02-01T13:16:41+00:00"
  8707. },
  8708. {
  8709. "name": "symfony/translation-contracts",
  8710. "version": "v3.4.1",
  8711. "source": {
  8712. "type": "git",
  8713. "url": "https://github.com/symfony/translation-contracts.git",
  8714. "reference": "06450585bf65e978026bda220cdebca3f867fde7"
  8715. },
  8716. "dist": {
  8717. "type": "zip",
  8718. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/06450585bf65e978026bda220cdebca3f867fde7",
  8719. "reference": "06450585bf65e978026bda220cdebca3f867fde7",
  8720. "shasum": ""
  8721. },
  8722. "require": {
  8723. "php": ">=8.1"
  8724. },
  8725. "type": "library",
  8726. "extra": {
  8727. "branch-alias": {
  8728. "dev-main": "3.4-dev"
  8729. },
  8730. "thanks": {
  8731. "name": "symfony/contracts",
  8732. "url": "https://github.com/symfony/contracts"
  8733. }
  8734. },
  8735. "autoload": {
  8736. "psr-4": {
  8737. "Symfony\\Contracts\\Translation\\": ""
  8738. },
  8739. "exclude-from-classmap": [
  8740. "/Test/"
  8741. ]
  8742. },
  8743. "notification-url": "https://packagist.org/downloads/",
  8744. "license": [
  8745. "MIT"
  8746. ],
  8747. "authors": [
  8748. {
  8749. "name": "Nicolas Grekas",
  8750. "email": "p@tchwork.com"
  8751. },
  8752. {
  8753. "name": "Symfony Community",
  8754. "homepage": "https://symfony.com/contributors"
  8755. }
  8756. ],
  8757. "description": "Generic abstractions related to translation",
  8758. "homepage": "https://symfony.com",
  8759. "keywords": [
  8760. "abstractions",
  8761. "contracts",
  8762. "decoupling",
  8763. "interfaces",
  8764. "interoperability",
  8765. "standards"
  8766. ],
  8767. "support": {
  8768. "source": "https://github.com/symfony/translation-contracts/tree/v3.4.1"
  8769. },
  8770. "funding": [
  8771. {
  8772. "url": "https://symfony.com/sponsor",
  8773. "type": "custom"
  8774. },
  8775. {
  8776. "url": "https://github.com/fabpot",
  8777. "type": "github"
  8778. },
  8779. {
  8780. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8781. "type": "tidelift"
  8782. }
  8783. ],
  8784. "time": "2023-12-26T14:02:43+00:00"
  8785. },
  8786. {
  8787. "name": "symfony/validator",
  8788. "version": "v6.4.4",
  8789. "source": {
  8790. "type": "git",
  8791. "url": "https://github.com/symfony/validator.git",
  8792. "reference": "1cf92edc9a94d16275efef949fa6748d11cc8f47"
  8793. },
  8794. "dist": {
  8795. "type": "zip",
  8796. "url": "https://api.github.com/repos/symfony/validator/zipball/1cf92edc9a94d16275efef949fa6748d11cc8f47",
  8797. "reference": "1cf92edc9a94d16275efef949fa6748d11cc8f47",
  8798. "shasum": ""
  8799. },
  8800. "require": {
  8801. "php": ">=8.1",
  8802. "symfony/deprecation-contracts": "^2.5|^3",
  8803. "symfony/polyfill-ctype": "~1.8",
  8804. "symfony/polyfill-mbstring": "~1.0",
  8805. "symfony/polyfill-php83": "^1.27",
  8806. "symfony/translation-contracts": "^2.5|^3"
  8807. },
  8808. "conflict": {
  8809. "doctrine/annotations": "<1.13",
  8810. "doctrine/lexer": "<1.1",
  8811. "symfony/dependency-injection": "<5.4",
  8812. "symfony/expression-language": "<5.4",
  8813. "symfony/http-kernel": "<5.4",
  8814. "symfony/intl": "<5.4",
  8815. "symfony/property-info": "<5.4",
  8816. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  8817. "symfony/yaml": "<5.4"
  8818. },
  8819. "require-dev": {
  8820. "doctrine/annotations": "^1.13|^2",
  8821. "egulias/email-validator": "^2.1.10|^3|^4",
  8822. "symfony/cache": "^5.4|^6.0|^7.0",
  8823. "symfony/config": "^5.4|^6.0|^7.0",
  8824. "symfony/console": "^5.4|^6.0|^7.0",
  8825. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8826. "symfony/expression-language": "^5.4|^6.0|^7.0",
  8827. "symfony/finder": "^5.4|^6.0|^7.0",
  8828. "symfony/http-client": "^5.4|^6.0|^7.0",
  8829. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  8830. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  8831. "symfony/intl": "^5.4|^6.0|^7.0",
  8832. "symfony/mime": "^5.4|^6.0|^7.0",
  8833. "symfony/property-access": "^5.4|^6.0|^7.0",
  8834. "symfony/property-info": "^5.4|^6.0|^7.0",
  8835. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  8836. "symfony/yaml": "^5.4|^6.0|^7.0"
  8837. },
  8838. "type": "library",
  8839. "autoload": {
  8840. "psr-4": {
  8841. "Symfony\\Component\\Validator\\": ""
  8842. },
  8843. "exclude-from-classmap": [
  8844. "/Tests/"
  8845. ]
  8846. },
  8847. "notification-url": "https://packagist.org/downloads/",
  8848. "license": [
  8849. "MIT"
  8850. ],
  8851. "authors": [
  8852. {
  8853. "name": "Fabien Potencier",
  8854. "email": "fabien@symfony.com"
  8855. },
  8856. {
  8857. "name": "Symfony Community",
  8858. "homepage": "https://symfony.com/contributors"
  8859. }
  8860. ],
  8861. "description": "Provides tools to validate values",
  8862. "homepage": "https://symfony.com",
  8863. "support": {
  8864. "source": "https://github.com/symfony/validator/tree/v6.4.4"
  8865. },
  8866. "funding": [
  8867. {
  8868. "url": "https://symfony.com/sponsor",
  8869. "type": "custom"
  8870. },
  8871. {
  8872. "url": "https://github.com/fabpot",
  8873. "type": "github"
  8874. },
  8875. {
  8876. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8877. "type": "tidelift"
  8878. }
  8879. ],
  8880. "time": "2024-02-22T20:27:10+00:00"
  8881. },
  8882. {
  8883. "name": "symfony/var-dumper",
  8884. "version": "v6.4.4",
  8885. "source": {
  8886. "type": "git",
  8887. "url": "https://github.com/symfony/var-dumper.git",
  8888. "reference": "b439823f04c98b84d4366c79507e9da6230944b1"
  8889. },
  8890. "dist": {
  8891. "type": "zip",
  8892. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/b439823f04c98b84d4366c79507e9da6230944b1",
  8893. "reference": "b439823f04c98b84d4366c79507e9da6230944b1",
  8894. "shasum": ""
  8895. },
  8896. "require": {
  8897. "php": ">=8.1",
  8898. "symfony/deprecation-contracts": "^2.5|^3",
  8899. "symfony/polyfill-mbstring": "~1.0"
  8900. },
  8901. "conflict": {
  8902. "symfony/console": "<5.4"
  8903. },
  8904. "require-dev": {
  8905. "ext-iconv": "*",
  8906. "symfony/console": "^5.4|^6.0|^7.0",
  8907. "symfony/error-handler": "^6.3|^7.0",
  8908. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  8909. "symfony/process": "^5.4|^6.0|^7.0",
  8910. "symfony/uid": "^5.4|^6.0|^7.0",
  8911. "twig/twig": "^2.13|^3.0.4"
  8912. },
  8913. "bin": [
  8914. "Resources/bin/var-dump-server"
  8915. ],
  8916. "type": "library",
  8917. "autoload": {
  8918. "files": [
  8919. "Resources/functions/dump.php"
  8920. ],
  8921. "psr-4": {
  8922. "Symfony\\Component\\VarDumper\\": ""
  8923. },
  8924. "exclude-from-classmap": [
  8925. "/Tests/"
  8926. ]
  8927. },
  8928. "notification-url": "https://packagist.org/downloads/",
  8929. "license": [
  8930. "MIT"
  8931. ],
  8932. "authors": [
  8933. {
  8934. "name": "Nicolas Grekas",
  8935. "email": "p@tchwork.com"
  8936. },
  8937. {
  8938. "name": "Symfony Community",
  8939. "homepage": "https://symfony.com/contributors"
  8940. }
  8941. ],
  8942. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8943. "homepage": "https://symfony.com",
  8944. "keywords": [
  8945. "debug",
  8946. "dump"
  8947. ],
  8948. "support": {
  8949. "source": "https://github.com/symfony/var-dumper/tree/v6.4.4"
  8950. },
  8951. "funding": [
  8952. {
  8953. "url": "https://symfony.com/sponsor",
  8954. "type": "custom"
  8955. },
  8956. {
  8957. "url": "https://github.com/fabpot",
  8958. "type": "github"
  8959. },
  8960. {
  8961. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8962. "type": "tidelift"
  8963. }
  8964. ],
  8965. "time": "2024-02-15T11:23:52+00:00"
  8966. },
  8967. {
  8968. "name": "symfony/var-exporter",
  8969. "version": "v6.4.4",
  8970. "source": {
  8971. "type": "git",
  8972. "url": "https://github.com/symfony/var-exporter.git",
  8973. "reference": "0bd342e24aef49fc82a21bd4eedd3e665d177e5b"
  8974. },
  8975. "dist": {
  8976. "type": "zip",
  8977. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/0bd342e24aef49fc82a21bd4eedd3e665d177e5b",
  8978. "reference": "0bd342e24aef49fc82a21bd4eedd3e665d177e5b",
  8979. "shasum": ""
  8980. },
  8981. "require": {
  8982. "php": ">=8.1",
  8983. "symfony/deprecation-contracts": "^2.5|^3"
  8984. },
  8985. "require-dev": {
  8986. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  8987. },
  8988. "type": "library",
  8989. "autoload": {
  8990. "psr-4": {
  8991. "Symfony\\Component\\VarExporter\\": ""
  8992. },
  8993. "exclude-from-classmap": [
  8994. "/Tests/"
  8995. ]
  8996. },
  8997. "notification-url": "https://packagist.org/downloads/",
  8998. "license": [
  8999. "MIT"
  9000. ],
  9001. "authors": [
  9002. {
  9003. "name": "Nicolas Grekas",
  9004. "email": "p@tchwork.com"
  9005. },
  9006. {
  9007. "name": "Symfony Community",
  9008. "homepage": "https://symfony.com/contributors"
  9009. }
  9010. ],
  9011. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  9012. "homepage": "https://symfony.com",
  9013. "keywords": [
  9014. "clone",
  9015. "construct",
  9016. "export",
  9017. "hydrate",
  9018. "instantiate",
  9019. "lazy-loading",
  9020. "proxy",
  9021. "serialize"
  9022. ],
  9023. "support": {
  9024. "source": "https://github.com/symfony/var-exporter/tree/v6.4.4"
  9025. },
  9026. "funding": [
  9027. {
  9028. "url": "https://symfony.com/sponsor",
  9029. "type": "custom"
  9030. },
  9031. {
  9032. "url": "https://github.com/fabpot",
  9033. "type": "github"
  9034. },
  9035. {
  9036. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9037. "type": "tidelift"
  9038. }
  9039. ],
  9040. "time": "2024-02-26T08:37:45+00:00"
  9041. },
  9042. {
  9043. "name": "symfony/yaml",
  9044. "version": "v6.4.3",
  9045. "source": {
  9046. "type": "git",
  9047. "url": "https://github.com/symfony/yaml.git",
  9048. "reference": "d75715985f0f94f978e3a8fa42533e10db921b90"
  9049. },
  9050. "dist": {
  9051. "type": "zip",
  9052. "url": "https://api.github.com/repos/symfony/yaml/zipball/d75715985f0f94f978e3a8fa42533e10db921b90",
  9053. "reference": "d75715985f0f94f978e3a8fa42533e10db921b90",
  9054. "shasum": ""
  9055. },
  9056. "require": {
  9057. "php": ">=8.1",
  9058. "symfony/deprecation-contracts": "^2.5|^3",
  9059. "symfony/polyfill-ctype": "^1.8"
  9060. },
  9061. "conflict": {
  9062. "symfony/console": "<5.4"
  9063. },
  9064. "require-dev": {
  9065. "symfony/console": "^5.4|^6.0|^7.0"
  9066. },
  9067. "bin": [
  9068. "Resources/bin/yaml-lint"
  9069. ],
  9070. "type": "library",
  9071. "autoload": {
  9072. "psr-4": {
  9073. "Symfony\\Component\\Yaml\\": ""
  9074. },
  9075. "exclude-from-classmap": [
  9076. "/Tests/"
  9077. ]
  9078. },
  9079. "notification-url": "https://packagist.org/downloads/",
  9080. "license": [
  9081. "MIT"
  9082. ],
  9083. "authors": [
  9084. {
  9085. "name": "Fabien Potencier",
  9086. "email": "fabien@symfony.com"
  9087. },
  9088. {
  9089. "name": "Symfony Community",
  9090. "homepage": "https://symfony.com/contributors"
  9091. }
  9092. ],
  9093. "description": "Loads and dumps YAML files",
  9094. "homepage": "https://symfony.com",
  9095. "support": {
  9096. "source": "https://github.com/symfony/yaml/tree/v6.4.3"
  9097. },
  9098. "funding": [
  9099. {
  9100. "url": "https://symfony.com/sponsor",
  9101. "type": "custom"
  9102. },
  9103. {
  9104. "url": "https://github.com/fabpot",
  9105. "type": "github"
  9106. },
  9107. {
  9108. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9109. "type": "tidelift"
  9110. }
  9111. ],
  9112. "time": "2024-01-23T14:51:35+00:00"
  9113. },
  9114. {
  9115. "name": "twbs/bootstrap",
  9116. "version": "v4.5.0",
  9117. "source": {
  9118. "type": "git",
  9119. "url": "https://github.com/twbs/bootstrap.git",
  9120. "reference": "7a6da5e3e7ad7c749dde806546a35d4d4259d965"
  9121. },
  9122. "dist": {
  9123. "type": "zip",
  9124. "url": "https://api.github.com/repos/twbs/bootstrap/zipball/7a6da5e3e7ad7c749dde806546a35d4d4259d965",
  9125. "reference": "7a6da5e3e7ad7c749dde806546a35d4d4259d965",
  9126. "shasum": ""
  9127. },
  9128. "replace": {
  9129. "twitter/bootstrap": "self.version"
  9130. },
  9131. "type": "library",
  9132. "extra": {
  9133. "branch-alias": {
  9134. "dev-master": "3.3.x-dev"
  9135. }
  9136. },
  9137. "notification-url": "https://packagist.org/downloads/",
  9138. "license": [
  9139. "MIT"
  9140. ],
  9141. "authors": [
  9142. {
  9143. "name": "Mark Otto",
  9144. "email": "markdotto@gmail.com"
  9145. },
  9146. {
  9147. "name": "Jacob Thornton",
  9148. "email": "jacobthornton@gmail.com"
  9149. }
  9150. ],
  9151. "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
  9152. "homepage": "https://getbootstrap.com/",
  9153. "keywords": [
  9154. "JS",
  9155. "css",
  9156. "framework",
  9157. "front-end",
  9158. "mobile-first",
  9159. "responsive",
  9160. "sass",
  9161. "web"
  9162. ],
  9163. "support": {
  9164. "issues": "https://github.com/twbs/bootstrap/issues",
  9165. "source": "https://github.com/twbs/bootstrap/tree/v4-dev"
  9166. },
  9167. "funding": [
  9168. {
  9169. "url": "https://opencollective.com/bootstrap",
  9170. "type": "open_collective"
  9171. }
  9172. ],
  9173. "time": "2020-05-12T17:44:42+00:00"
  9174. },
  9175. {
  9176. "name": "twig/twig",
  9177. "version": "v3.8.0",
  9178. "source": {
  9179. "type": "git",
  9180. "url": "https://github.com/twigphp/Twig.git",
  9181. "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d"
  9182. },
  9183. "dist": {
  9184. "type": "zip",
  9185. "url": "https://api.github.com/repos/twigphp/Twig/zipball/9d15f0ac07f44dc4217883ec6ae02fd555c6f71d",
  9186. "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d",
  9187. "shasum": ""
  9188. },
  9189. "require": {
  9190. "php": ">=7.2.5",
  9191. "symfony/polyfill-ctype": "^1.8",
  9192. "symfony/polyfill-mbstring": "^1.3",
  9193. "symfony/polyfill-php80": "^1.22"
  9194. },
  9195. "require-dev": {
  9196. "psr/container": "^1.0|^2.0",
  9197. "symfony/phpunit-bridge": "^5.4.9|^6.3|^7.0"
  9198. },
  9199. "type": "library",
  9200. "autoload": {
  9201. "psr-4": {
  9202. "Twig\\": "src/"
  9203. }
  9204. },
  9205. "notification-url": "https://packagist.org/downloads/",
  9206. "license": [
  9207. "BSD-3-Clause"
  9208. ],
  9209. "authors": [
  9210. {
  9211. "name": "Fabien Potencier",
  9212. "email": "fabien@symfony.com",
  9213. "homepage": "http://fabien.potencier.org",
  9214. "role": "Lead Developer"
  9215. },
  9216. {
  9217. "name": "Twig Team",
  9218. "role": "Contributors"
  9219. },
  9220. {
  9221. "name": "Armin Ronacher",
  9222. "email": "armin.ronacher@active-4.com",
  9223. "role": "Project Founder"
  9224. }
  9225. ],
  9226. "description": "Twig, the flexible, fast, and secure template language for PHP",
  9227. "homepage": "https://twig.symfony.com",
  9228. "keywords": [
  9229. "templating"
  9230. ],
  9231. "support": {
  9232. "issues": "https://github.com/twigphp/Twig/issues",
  9233. "source": "https://github.com/twigphp/Twig/tree/v3.8.0"
  9234. },
  9235. "funding": [
  9236. {
  9237. "url": "https://github.com/fabpot",
  9238. "type": "github"
  9239. },
  9240. {
  9241. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  9242. "type": "tidelift"
  9243. }
  9244. ],
  9245. "time": "2023-11-21T18:54:41+00:00"
  9246. },
  9247. {
  9248. "name": "webflo/drupal-finder",
  9249. "version": "1.2.2",
  9250. "source": {
  9251. "type": "git",
  9252. "url": "https://github.com/webflo/drupal-finder.git",
  9253. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  9254. },
  9255. "dist": {
  9256. "type": "zip",
  9257. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  9258. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  9259. "shasum": ""
  9260. },
  9261. "require": {
  9262. "ext-json": "*"
  9263. },
  9264. "require-dev": {
  9265. "mikey179/vfsstream": "^1.6",
  9266. "phpunit/phpunit": "^4.8"
  9267. },
  9268. "type": "library",
  9269. "autoload": {
  9270. "classmap": [
  9271. "src/DrupalFinder.php"
  9272. ]
  9273. },
  9274. "notification-url": "https://packagist.org/downloads/",
  9275. "license": [
  9276. "GPL-2.0-or-later"
  9277. ],
  9278. "authors": [
  9279. {
  9280. "name": "Florian Weber",
  9281. "email": "florian@webflo.org"
  9282. }
  9283. ],
  9284. "description": "Helper class to locate a Drupal installation from a given path.",
  9285. "support": {
  9286. "issues": "https://github.com/webflo/drupal-finder/issues",
  9287. "source": "https://github.com/webflo/drupal-finder/tree/1.2.2"
  9288. },
  9289. "time": "2020-10-27T09:42:17+00:00"
  9290. }
  9291. ],
  9292. "packages-dev": [],
  9293. "aliases": [],
  9294. "minimum-stability": "dev",
  9295. "stability-flags": {
  9296. "drupal/field_pager": 10,
  9297. "drupal/site_settings": 15
  9298. },
  9299. "prefer-stable": true,
  9300. "prefer-lowest": false,
  9301. "platform": [],
  9302. "platform-dev": [],
  9303. "plugin-api-version": "2.6.0"
  9304. }