composer.lock 336 KB

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