composer.lock 392 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691
  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": "de46fc516248c6610f3c0c6edc6a2d38",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "1.3.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/b9c31def6a83f84b4d4a40d35996d375755f0e08",
  20. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.5.9",
  25. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  26. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^5.0 || ^4.8.10",
  30. "squizlabs/php_codesniffer": "^2.3"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "1.2-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/Asm89/Stack/"
  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/1.3.0"
  62. },
  63. "time": "2019-12-24T22:41:47+00:00"
  64. },
  65. {
  66. "name": "chi-teck/drupal-code-generator",
  67. "version": "1.33.1",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  71. "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/5f814e980b6f9cf1ca8c74cc9385c3d81090d388",
  76. "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "ext-json": "*",
  81. "php": ">=5.5.9",
  82. "symfony/console": "^3.4 || ^4.0",
  83. "symfony/filesystem": "^2.7 || ^3.4 || ^4.0",
  84. "twig/twig": "^1.41 || ^2.12"
  85. },
  86. "conflict": {
  87. "drush/drush": "< 10.3.2"
  88. },
  89. "bin": [
  90. "bin/dcg"
  91. ],
  92. "type": "library",
  93. "extra": {
  94. "branch-alias": {
  95. "dev-master": "1.x-dev"
  96. }
  97. },
  98. "autoload": {
  99. "files": [
  100. "src/bootstrap.php"
  101. ],
  102. "psr-4": {
  103. "DrupalCodeGenerator\\": "src"
  104. }
  105. },
  106. "notification-url": "https://packagist.org/downloads/",
  107. "license": [
  108. "GPL-2.0-or-later"
  109. ],
  110. "description": "Drupal code generator",
  111. "support": {
  112. "issues": "https://github.com/Chi-teck/drupal-code-generator/issues",
  113. "source": "https://github.com/Chi-teck/drupal-code-generator/tree/1.33.1"
  114. },
  115. "time": "2020-12-05T05:59:11+00:00"
  116. },
  117. {
  118. "name": "composer/installers",
  119. "version": "v1.12.0",
  120. "source": {
  121. "type": "git",
  122. "url": "https://github.com/composer/installers.git",
  123. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19"
  124. },
  125. "dist": {
  126. "type": "zip",
  127. "url": "https://api.github.com/repos/composer/installers/zipball/d20a64ed3c94748397ff5973488761b22f6d3f19",
  128. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19",
  129. "shasum": ""
  130. },
  131. "require": {
  132. "composer-plugin-api": "^1.0 || ^2.0"
  133. },
  134. "replace": {
  135. "roundcube/plugin-installer": "*",
  136. "shama/baton": "*"
  137. },
  138. "require-dev": {
  139. "composer/composer": "1.6.* || ^2.0",
  140. "composer/semver": "^1 || ^3",
  141. "phpstan/phpstan": "^0.12.55",
  142. "phpstan/phpstan-phpunit": "^0.12.16",
  143. "symfony/phpunit-bridge": "^4.2 || ^5",
  144. "symfony/process": "^2.3"
  145. },
  146. "type": "composer-plugin",
  147. "extra": {
  148. "class": "Composer\\Installers\\Plugin",
  149. "branch-alias": {
  150. "dev-main": "1.x-dev"
  151. }
  152. },
  153. "autoload": {
  154. "psr-4": {
  155. "Composer\\Installers\\": "src/Composer/Installers"
  156. }
  157. },
  158. "notification-url": "https://packagist.org/downloads/",
  159. "license": [
  160. "MIT"
  161. ],
  162. "authors": [
  163. {
  164. "name": "Kyle Robinson Young",
  165. "email": "kyle@dontkry.com",
  166. "homepage": "https://github.com/shama"
  167. }
  168. ],
  169. "description": "A multi-framework Composer library installer",
  170. "homepage": "https://composer.github.io/installers/",
  171. "keywords": [
  172. "Craft",
  173. "Dolibarr",
  174. "Eliasis",
  175. "Hurad",
  176. "ImageCMS",
  177. "Kanboard",
  178. "Lan Management System",
  179. "MODX Evo",
  180. "MantisBT",
  181. "Mautic",
  182. "Maya",
  183. "OXID",
  184. "Plentymarkets",
  185. "Porto",
  186. "RadPHP",
  187. "SMF",
  188. "Starbug",
  189. "Thelia",
  190. "Whmcs",
  191. "WolfCMS",
  192. "agl",
  193. "aimeos",
  194. "annotatecms",
  195. "attogram",
  196. "bitrix",
  197. "cakephp",
  198. "chef",
  199. "cockpit",
  200. "codeigniter",
  201. "concrete5",
  202. "croogo",
  203. "dokuwiki",
  204. "drupal",
  205. "eZ Platform",
  206. "elgg",
  207. "expressionengine",
  208. "fuelphp",
  209. "grav",
  210. "installer",
  211. "itop",
  212. "joomla",
  213. "known",
  214. "kohana",
  215. "laravel",
  216. "lavalite",
  217. "lithium",
  218. "magento",
  219. "majima",
  220. "mako",
  221. "mediawiki",
  222. "miaoxing",
  223. "modulework",
  224. "modx",
  225. "moodle",
  226. "osclass",
  227. "pantheon",
  228. "phpbb",
  229. "piwik",
  230. "ppi",
  231. "processwire",
  232. "puppet",
  233. "pxcms",
  234. "reindex",
  235. "roundcube",
  236. "shopware",
  237. "silverstripe",
  238. "sydes",
  239. "sylius",
  240. "symfony",
  241. "tastyigniter",
  242. "typo3",
  243. "wordpress",
  244. "yawik",
  245. "zend",
  246. "zikula"
  247. ],
  248. "support": {
  249. "issues": "https://github.com/composer/installers/issues",
  250. "source": "https://github.com/composer/installers/tree/v1.12.0"
  251. },
  252. "funding": [
  253. {
  254. "url": "https://packagist.com",
  255. "type": "custom"
  256. },
  257. {
  258. "url": "https://github.com/composer",
  259. "type": "github"
  260. },
  261. {
  262. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  263. "type": "tidelift"
  264. }
  265. ],
  266. "time": "2021-09-13T08:19:44+00:00"
  267. },
  268. {
  269. "name": "composer/semver",
  270. "version": "3.3.2",
  271. "source": {
  272. "type": "git",
  273. "url": "https://github.com/composer/semver.git",
  274. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9"
  275. },
  276. "dist": {
  277. "type": "zip",
  278. "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9",
  279. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9",
  280. "shasum": ""
  281. },
  282. "require": {
  283. "php": "^5.3.2 || ^7.0 || ^8.0"
  284. },
  285. "require-dev": {
  286. "phpstan/phpstan": "^1.4",
  287. "symfony/phpunit-bridge": "^4.2 || ^5"
  288. },
  289. "type": "library",
  290. "extra": {
  291. "branch-alias": {
  292. "dev-main": "3.x-dev"
  293. }
  294. },
  295. "autoload": {
  296. "psr-4": {
  297. "Composer\\Semver\\": "src"
  298. }
  299. },
  300. "notification-url": "https://packagist.org/downloads/",
  301. "license": [
  302. "MIT"
  303. ],
  304. "authors": [
  305. {
  306. "name": "Nils Adermann",
  307. "email": "naderman@naderman.de",
  308. "homepage": "http://www.naderman.de"
  309. },
  310. {
  311. "name": "Jordi Boggiano",
  312. "email": "j.boggiano@seld.be",
  313. "homepage": "http://seld.be"
  314. },
  315. {
  316. "name": "Rob Bast",
  317. "email": "rob.bast@gmail.com",
  318. "homepage": "http://robbast.nl"
  319. }
  320. ],
  321. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  322. "keywords": [
  323. "semantic",
  324. "semver",
  325. "validation",
  326. "versioning"
  327. ],
  328. "support": {
  329. "irc": "irc://irc.freenode.org/composer",
  330. "issues": "https://github.com/composer/semver/issues",
  331. "source": "https://github.com/composer/semver/tree/3.3.2"
  332. },
  333. "funding": [
  334. {
  335. "url": "https://packagist.com",
  336. "type": "custom"
  337. },
  338. {
  339. "url": "https://github.com/composer",
  340. "type": "github"
  341. },
  342. {
  343. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  344. "type": "tidelift"
  345. }
  346. ],
  347. "time": "2022-04-01T19:23:25+00:00"
  348. },
  349. {
  350. "name": "consolidation/annotated-command",
  351. "version": "2.12.2",
  352. "source": {
  353. "type": "git",
  354. "url": "https://github.com/consolidation/annotated-command.git",
  355. "reference": "2472a23610cba1d86dcb783a81a21259473b059e"
  356. },
  357. "dist": {
  358. "type": "zip",
  359. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/2472a23610cba1d86dcb783a81a21259473b059e",
  360. "reference": "2472a23610cba1d86dcb783a81a21259473b059e",
  361. "shasum": ""
  362. },
  363. "require": {
  364. "consolidation/output-formatters": "^3.5.1",
  365. "php": ">=5.4.5",
  366. "psr/log": "^1",
  367. "symfony/console": "^2.8|^3|^4",
  368. "symfony/event-dispatcher": "^2.5|^3|^4",
  369. "symfony/finder": "^2.5|^3|^4|^5"
  370. },
  371. "require-dev": {
  372. "g1a/composer-test-scenarios": "^3",
  373. "php-coveralls/php-coveralls": "^1",
  374. "phpunit/phpunit": "^6",
  375. "squizlabs/php_codesniffer": "^2.7"
  376. },
  377. "type": "library",
  378. "extra": {
  379. "scenarios": {
  380. "finder5": {
  381. "require": {
  382. "symfony/finder": "^5"
  383. },
  384. "config": {
  385. "platform": {
  386. "php": "7.2.5"
  387. }
  388. }
  389. },
  390. "symfony4": {
  391. "require": {
  392. "symfony/console": "^4.0"
  393. },
  394. "config": {
  395. "platform": {
  396. "php": "7.1.3"
  397. }
  398. }
  399. },
  400. "symfony2": {
  401. "require": {
  402. "symfony/console": "^2.8"
  403. },
  404. "require-dev": {
  405. "phpunit/phpunit": "^4.8.36"
  406. },
  407. "remove": [
  408. "php-coveralls/php-coveralls"
  409. ],
  410. "config": {
  411. "platform": {
  412. "php": "5.4.8"
  413. }
  414. },
  415. "scenario-options": {
  416. "create-lockfile": "false"
  417. }
  418. },
  419. "phpunit4": {
  420. "require-dev": {
  421. "phpunit/phpunit": "^4.8.36"
  422. },
  423. "remove": [
  424. "php-coveralls/php-coveralls"
  425. ],
  426. "config": {
  427. "platform": {
  428. "php": "5.4.8"
  429. }
  430. }
  431. }
  432. },
  433. "branch-alias": {
  434. "dev-master": "2.x-dev"
  435. }
  436. },
  437. "autoload": {
  438. "psr-4": {
  439. "Consolidation\\AnnotatedCommand\\": "src"
  440. }
  441. },
  442. "notification-url": "https://packagist.org/downloads/",
  443. "license": [
  444. "MIT"
  445. ],
  446. "authors": [
  447. {
  448. "name": "Greg Anderson",
  449. "email": "greg.1.anderson@greenknowe.org"
  450. }
  451. ],
  452. "description": "Initialize Symfony Console commands from annotated command class methods.",
  453. "support": {
  454. "issues": "https://github.com/consolidation/annotated-command/issues",
  455. "source": "https://github.com/consolidation/annotated-command/tree/2.12.2"
  456. },
  457. "time": "2022-01-03T00:23:44+00:00"
  458. },
  459. {
  460. "name": "consolidation/config",
  461. "version": "1.2.1",
  462. "source": {
  463. "type": "git",
  464. "url": "https://github.com/consolidation/config.git",
  465. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  466. },
  467. "dist": {
  468. "type": "zip",
  469. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  470. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  471. "shasum": ""
  472. },
  473. "require": {
  474. "dflydev/dot-access-data": "^1.1.0",
  475. "grasmash/expander": "^1",
  476. "php": ">=5.4.0"
  477. },
  478. "require-dev": {
  479. "g1a/composer-test-scenarios": "^3",
  480. "php-coveralls/php-coveralls": "^1",
  481. "phpunit/phpunit": "^5",
  482. "squizlabs/php_codesniffer": "2.*",
  483. "symfony/console": "^2.5|^3|^4",
  484. "symfony/yaml": "^2.8.11|^3|^4"
  485. },
  486. "suggest": {
  487. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  488. },
  489. "type": "library",
  490. "extra": {
  491. "scenarios": {
  492. "symfony4": {
  493. "require-dev": {
  494. "symfony/console": "^4.0"
  495. },
  496. "config": {
  497. "platform": {
  498. "php": "7.1.3"
  499. }
  500. }
  501. },
  502. "symfony2": {
  503. "require-dev": {
  504. "symfony/console": "^2.8",
  505. "symfony/event-dispatcher": "^2.8",
  506. "phpunit/phpunit": "^4.8.36"
  507. },
  508. "remove": [
  509. "php-coveralls/php-coveralls"
  510. ],
  511. "config": {
  512. "platform": {
  513. "php": "5.4.8"
  514. }
  515. }
  516. }
  517. },
  518. "branch-alias": {
  519. "dev-master": "1.x-dev"
  520. }
  521. },
  522. "autoload": {
  523. "psr-4": {
  524. "Consolidation\\Config\\": "src"
  525. }
  526. },
  527. "notification-url": "https://packagist.org/downloads/",
  528. "license": [
  529. "MIT"
  530. ],
  531. "authors": [
  532. {
  533. "name": "Greg Anderson",
  534. "email": "greg.1.anderson@greenknowe.org"
  535. }
  536. ],
  537. "description": "Provide configuration services for a commandline tool.",
  538. "support": {
  539. "issues": "https://github.com/consolidation/config/issues",
  540. "source": "https://github.com/consolidation/config/tree/master"
  541. },
  542. "time": "2019-03-03T19:37:04+00:00"
  543. },
  544. {
  545. "name": "consolidation/filter-via-dot-access-data",
  546. "version": "1.0.0",
  547. "source": {
  548. "type": "git",
  549. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  550. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  551. },
  552. "dist": {
  553. "type": "zip",
  554. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  555. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  556. "shasum": ""
  557. },
  558. "require": {
  559. "dflydev/dot-access-data": "^1.1.0",
  560. "php": ">=5.5.0"
  561. },
  562. "require-dev": {
  563. "consolidation/robo": "^1.2.3",
  564. "g1a/composer-test-scenarios": "^3",
  565. "knplabs/github-api": "^2.7",
  566. "php-coveralls/php-coveralls": "^1",
  567. "php-http/guzzle6-adapter": "^1.1",
  568. "phpunit/phpunit": "^5",
  569. "squizlabs/php_codesniffer": "^2.8",
  570. "symfony/console": "^2.8|^3|^4"
  571. },
  572. "type": "library",
  573. "extra": {
  574. "scenarios": {
  575. "phpunit5": {
  576. "require-dev": {
  577. "phpunit/phpunit": "^5.7.27"
  578. },
  579. "remove": [
  580. "php-coveralls/php-coveralls"
  581. ],
  582. "config": {
  583. "platform": {
  584. "php": "5.6.33"
  585. }
  586. }
  587. }
  588. },
  589. "branch-alias": {
  590. "dev-master": "1.x-dev"
  591. }
  592. },
  593. "autoload": {
  594. "psr-4": {
  595. "Consolidation\\Filter\\": "src"
  596. }
  597. },
  598. "notification-url": "https://packagist.org/downloads/",
  599. "license": [
  600. "MIT"
  601. ],
  602. "authors": [
  603. {
  604. "name": "Greg Anderson",
  605. "email": "greg.1.anderson@greenknowe.org"
  606. }
  607. ],
  608. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  609. "support": {
  610. "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/1.0.0"
  611. },
  612. "time": "2019-01-18T06:05:07+00:00"
  613. },
  614. {
  615. "name": "consolidation/log",
  616. "version": "1.1.1",
  617. "source": {
  618. "type": "git",
  619. "url": "https://github.com/consolidation/log.git",
  620. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a"
  621. },
  622. "dist": {
  623. "type": "zip",
  624. "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  625. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  626. "shasum": ""
  627. },
  628. "require": {
  629. "php": ">=5.4.5",
  630. "psr/log": "^1.0",
  631. "symfony/console": "^2.8|^3|^4"
  632. },
  633. "require-dev": {
  634. "g1a/composer-test-scenarios": "^3",
  635. "php-coveralls/php-coveralls": "^1",
  636. "phpunit/phpunit": "^6",
  637. "squizlabs/php_codesniffer": "^2"
  638. },
  639. "type": "library",
  640. "extra": {
  641. "scenarios": {
  642. "symfony4": {
  643. "require": {
  644. "symfony/console": "^4.0"
  645. },
  646. "config": {
  647. "platform": {
  648. "php": "7.1.3"
  649. }
  650. }
  651. },
  652. "symfony2": {
  653. "require": {
  654. "symfony/console": "^2.8"
  655. },
  656. "require-dev": {
  657. "phpunit/phpunit": "^4.8.36"
  658. },
  659. "remove": [
  660. "php-coveralls/php-coveralls"
  661. ],
  662. "config": {
  663. "platform": {
  664. "php": "5.4.8"
  665. }
  666. }
  667. },
  668. "phpunit4": {
  669. "require-dev": {
  670. "phpunit/phpunit": "^4.8.36"
  671. },
  672. "remove": [
  673. "php-coveralls/php-coveralls"
  674. ],
  675. "config": {
  676. "platform": {
  677. "php": "5.4.8"
  678. }
  679. }
  680. }
  681. },
  682. "branch-alias": {
  683. "dev-master": "1.x-dev"
  684. }
  685. },
  686. "autoload": {
  687. "psr-4": {
  688. "Consolidation\\Log\\": "src"
  689. }
  690. },
  691. "notification-url": "https://packagist.org/downloads/",
  692. "license": [
  693. "MIT"
  694. ],
  695. "authors": [
  696. {
  697. "name": "Greg Anderson",
  698. "email": "greg.1.anderson@greenknowe.org"
  699. }
  700. ],
  701. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  702. "support": {
  703. "issues": "https://github.com/consolidation/log/issues",
  704. "source": "https://github.com/consolidation/log/tree/master"
  705. },
  706. "time": "2019-01-01T17:30:51+00:00"
  707. },
  708. {
  709. "name": "consolidation/output-formatters",
  710. "version": "3.5.1",
  711. "source": {
  712. "type": "git",
  713. "url": "https://github.com/consolidation/output-formatters.git",
  714. "reference": "0d38f13051ef05c223a2bb8e962d668e24785196"
  715. },
  716. "dist": {
  717. "type": "zip",
  718. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/0d38f13051ef05c223a2bb8e962d668e24785196",
  719. "reference": "0d38f13051ef05c223a2bb8e962d668e24785196",
  720. "shasum": ""
  721. },
  722. "require": {
  723. "dflydev/dot-access-data": "^1.1.0",
  724. "php": ">=5.4.0",
  725. "symfony/console": "^2.8|^3|^4",
  726. "symfony/finder": "^2.5|^3|^4|^5"
  727. },
  728. "require-dev": {
  729. "g1a/composer-test-scenarios": "^3",
  730. "php-coveralls/php-coveralls": "^1",
  731. "phpunit/phpunit": "^5.7.27",
  732. "squizlabs/php_codesniffer": "^2.7",
  733. "symfony/var-dumper": "^2.8|^3|^4",
  734. "victorjonsson/markdowndocs": "^1.3"
  735. },
  736. "suggest": {
  737. "symfony/var-dumper": "For using the var_dump formatter"
  738. },
  739. "type": "library",
  740. "extra": {
  741. "scenarios": {
  742. "finder5": {
  743. "require": {
  744. "symfony/finder": "^5"
  745. },
  746. "config": {
  747. "platform": {
  748. "php": "7.2.5"
  749. }
  750. }
  751. },
  752. "symfony4": {
  753. "require": {
  754. "symfony/console": "^4.0"
  755. },
  756. "require-dev": {
  757. "phpunit/phpunit": "^6"
  758. },
  759. "config": {
  760. "platform": {
  761. "php": "7.1.3"
  762. }
  763. }
  764. },
  765. "symfony3": {
  766. "require": {
  767. "symfony/console": "^3.4",
  768. "symfony/finder": "^3.4",
  769. "symfony/var-dumper": "^3.4"
  770. },
  771. "config": {
  772. "platform": {
  773. "php": "5.6.32"
  774. }
  775. }
  776. },
  777. "symfony2": {
  778. "require": {
  779. "symfony/console": "^2.8"
  780. },
  781. "require-dev": {
  782. "phpunit/phpunit": "^4.8.36"
  783. },
  784. "remove": [
  785. "php-coveralls/php-coveralls"
  786. ],
  787. "config": {
  788. "platform": {
  789. "php": "5.4.8"
  790. }
  791. },
  792. "scenario-options": {
  793. "create-lockfile": "false"
  794. }
  795. }
  796. },
  797. "branch-alias": {
  798. "dev-master": "3.x-dev"
  799. }
  800. },
  801. "autoload": {
  802. "psr-4": {
  803. "Consolidation\\OutputFormatters\\": "src"
  804. }
  805. },
  806. "notification-url": "https://packagist.org/downloads/",
  807. "license": [
  808. "MIT"
  809. ],
  810. "authors": [
  811. {
  812. "name": "Greg Anderson",
  813. "email": "greg.1.anderson@greenknowe.org"
  814. }
  815. ],
  816. "description": "Format text by applying transformations provided by plug-in formatters.",
  817. "support": {
  818. "issues": "https://github.com/consolidation/output-formatters/issues",
  819. "source": "https://github.com/consolidation/output-formatters/tree/3.5.1"
  820. },
  821. "time": "2020-10-11T04:15:32+00:00"
  822. },
  823. {
  824. "name": "consolidation/robo",
  825. "version": "1.5.0",
  826. "source": {
  827. "type": "git",
  828. "url": "https://github.com/consolidation/Robo.git",
  829. "reference": "12bf6b608057604a283e9e597edfed36ba071631"
  830. },
  831. "dist": {
  832. "type": "zip",
  833. "url": "https://api.github.com/repos/consolidation/Robo/zipball/12bf6b608057604a283e9e597edfed36ba071631",
  834. "reference": "12bf6b608057604a283e9e597edfed36ba071631",
  835. "shasum": ""
  836. },
  837. "require": {
  838. "consolidation/annotated-command": "^2.12.1 || ^4.1",
  839. "consolidation/config": "^1.2.1",
  840. "consolidation/log": "^1.1.1 || ^2",
  841. "consolidation/output-formatters": "^3.5.1 || ^4.1",
  842. "consolidation/self-update": "^1.1.5 || ^2",
  843. "grasmash/yaml-expander": "^1.4",
  844. "league/container": "^2.4.1",
  845. "php": ">=5.5.0",
  846. "symfony/console": "^2.8 || ^3 || ^4",
  847. "symfony/event-dispatcher": "^2.5 || ^3 || ^4",
  848. "symfony/filesystem": "^2.5 || ^3 || ^4",
  849. "symfony/finder": "^2.5 || ^3 || ^4 || ^5",
  850. "symfony/process": "^2.5 || ^3 || ^4"
  851. },
  852. "replace": {
  853. "codegyre/robo": "< 1.0"
  854. },
  855. "require-dev": {
  856. "g1a/composer-test-scenarios": "^3",
  857. "natxet/cssmin": "3.0.4",
  858. "patchwork/jsqueeze": "^2",
  859. "pear/archive_tar": "^1.4.4",
  860. "php-coveralls/php-coveralls": "^1",
  861. "phpunit/phpunit": "^5.7.27",
  862. "squizlabs/php_codesniffer": "^3"
  863. },
  864. "suggest": {
  865. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  866. "natxet/CssMin": "For minifying CSS files in taskMinify",
  867. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  868. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  869. },
  870. "bin": [
  871. "robo"
  872. ],
  873. "type": "library",
  874. "extra": {
  875. "scenarios": {
  876. "finder5": {
  877. "require": {
  878. "symfony/finder": "^5"
  879. },
  880. "config": {
  881. "platform": {
  882. "php": "7.2.5"
  883. }
  884. }
  885. },
  886. "symfony4": {
  887. "require": {
  888. "symfony/console": "^4"
  889. },
  890. "config": {
  891. "platform": {
  892. "php": "7.1.3"
  893. }
  894. }
  895. },
  896. "symfony2": {
  897. "require": {
  898. "symfony/console": "^2.8"
  899. },
  900. "require-dev": {
  901. "phpunit/phpunit": "^4.8.36"
  902. },
  903. "remove": [
  904. "php-coveralls/php-coveralls"
  905. ],
  906. "config": {
  907. "platform": {
  908. "php": "5.5.9"
  909. }
  910. },
  911. "scenario-options": {
  912. "create-lockfile": "false"
  913. }
  914. }
  915. },
  916. "branch-alias": {
  917. "dev-master": "1.x-dev"
  918. }
  919. },
  920. "autoload": {
  921. "psr-4": {
  922. "Robo\\": "src"
  923. }
  924. },
  925. "notification-url": "https://packagist.org/downloads/",
  926. "license": [
  927. "MIT"
  928. ],
  929. "authors": [
  930. {
  931. "name": "Davert",
  932. "email": "davert.php@resend.cc"
  933. }
  934. ],
  935. "description": "Modern task runner",
  936. "support": {
  937. "issues": "https://github.com/consolidation/Robo/issues",
  938. "source": "https://github.com/consolidation/Robo/tree/1.5.0"
  939. },
  940. "time": "2021-10-08T03:51:31+00:00"
  941. },
  942. {
  943. "name": "consolidation/self-update",
  944. "version": "1.2.0",
  945. "source": {
  946. "type": "git",
  947. "url": "https://github.com/consolidation/self-update.git",
  948. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4"
  949. },
  950. "dist": {
  951. "type": "zip",
  952. "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4",
  953. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4",
  954. "shasum": ""
  955. },
  956. "require": {
  957. "php": ">=5.5.0",
  958. "symfony/console": "^2.8|^3|^4|^5",
  959. "symfony/filesystem": "^2.5|^3|^4|^5"
  960. },
  961. "bin": [
  962. "scripts/release"
  963. ],
  964. "type": "library",
  965. "extra": {
  966. "branch-alias": {
  967. "dev-master": "1.x-dev"
  968. }
  969. },
  970. "autoload": {
  971. "psr-4": {
  972. "SelfUpdate\\": "src"
  973. }
  974. },
  975. "notification-url": "https://packagist.org/downloads/",
  976. "license": [
  977. "MIT"
  978. ],
  979. "authors": [
  980. {
  981. "name": "Alexander Menk",
  982. "email": "menk@mestrona.net"
  983. },
  984. {
  985. "name": "Greg Anderson",
  986. "email": "greg.1.anderson@greenknowe.org"
  987. }
  988. ],
  989. "description": "Provides a self:update command for Symfony Console applications.",
  990. "support": {
  991. "issues": "https://github.com/consolidation/self-update/issues",
  992. "source": "https://github.com/consolidation/self-update/tree/1.2.0"
  993. },
  994. "time": "2020-04-13T02:49:20+00:00"
  995. },
  996. {
  997. "name": "consolidation/site-alias",
  998. "version": "3.1.7",
  999. "source": {
  1000. "type": "git",
  1001. "url": "https://github.com/consolidation/site-alias.git",
  1002. "reference": "3b6519592c7e8557423f935806cd73adf69ed6c7"
  1003. },
  1004. "dist": {
  1005. "type": "zip",
  1006. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/3b6519592c7e8557423f935806cd73adf69ed6c7",
  1007. "reference": "3b6519592c7e8557423f935806cd73adf69ed6c7",
  1008. "shasum": ""
  1009. },
  1010. "require": {
  1011. "consolidation/config": "^1.2.1 || ^2",
  1012. "php": ">=5.5.0",
  1013. "symfony/filesystem": "^4.4 || ^5.4 || ^6",
  1014. "symfony/finder": "~2.3 || ^3 || ^4.4 || ^5 || ^6",
  1015. "webmozart/path-util": "^2.3"
  1016. },
  1017. "require-dev": {
  1018. "php-coveralls/php-coveralls": "^2.4.2",
  1019. "phpunit/phpunit": ">=7",
  1020. "squizlabs/php_codesniffer": "^3",
  1021. "symfony/var-dumper": "^4",
  1022. "yoast/phpunit-polyfills": "^0.2.0"
  1023. },
  1024. "type": "library",
  1025. "extra": {
  1026. "branch-alias": {
  1027. "dev-main": "3.x-dev"
  1028. }
  1029. },
  1030. "autoload": {
  1031. "psr-4": {
  1032. "Consolidation\\SiteAlias\\": "src"
  1033. }
  1034. },
  1035. "notification-url": "https://packagist.org/downloads/",
  1036. "license": [
  1037. "MIT"
  1038. ],
  1039. "authors": [
  1040. {
  1041. "name": "Greg Anderson",
  1042. "email": "greg.1.anderson@greenknowe.org"
  1043. },
  1044. {
  1045. "name": "Moshe Weitzman",
  1046. "email": "weitzman@tejasa.com"
  1047. }
  1048. ],
  1049. "description": "Manage alias records for local and remote sites.",
  1050. "support": {
  1051. "issues": "https://github.com/consolidation/site-alias/issues",
  1052. "source": "https://github.com/consolidation/site-alias/tree/3.1.7"
  1053. },
  1054. "time": "2022-10-15T01:21:09+00:00"
  1055. },
  1056. {
  1057. "name": "consolidation/site-process",
  1058. "version": "4.2.1",
  1059. "source": {
  1060. "type": "git",
  1061. "url": "https://github.com/consolidation/site-process.git",
  1062. "reference": "ee3bf69001694b2117cc2f96c2ef70d8d45f1234"
  1063. },
  1064. "dist": {
  1065. "type": "zip",
  1066. "url": "https://api.github.com/repos/consolidation/site-process/zipball/ee3bf69001694b2117cc2f96c2ef70d8d45f1234",
  1067. "reference": "ee3bf69001694b2117cc2f96c2ef70d8d45f1234",
  1068. "shasum": ""
  1069. },
  1070. "require": {
  1071. "consolidation/config": "^1.2.1 || ^2",
  1072. "consolidation/site-alias": "^3 || ^4",
  1073. "php": ">=7.1.3",
  1074. "symfony/console": "^2.8.52 || ^3 || ^4.4 || ^5",
  1075. "symfony/process": "^4.3.4 || ^5"
  1076. },
  1077. "require-dev": {
  1078. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  1079. "squizlabs/php_codesniffer": "^3",
  1080. "yoast/phpunit-polyfills": "^0.2.0"
  1081. },
  1082. "type": "library",
  1083. "extra": {
  1084. "branch-alias": {
  1085. "dev-main": "4.x-dev"
  1086. }
  1087. },
  1088. "autoload": {
  1089. "psr-4": {
  1090. "Consolidation\\SiteProcess\\": "src"
  1091. }
  1092. },
  1093. "notification-url": "https://packagist.org/downloads/",
  1094. "license": [
  1095. "MIT"
  1096. ],
  1097. "authors": [
  1098. {
  1099. "name": "Greg Anderson",
  1100. "email": "greg.1.anderson@greenknowe.org"
  1101. },
  1102. {
  1103. "name": "Moshe Weitzman",
  1104. "email": "weitzman@tejasa.com"
  1105. }
  1106. ],
  1107. "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.",
  1108. "support": {
  1109. "issues": "https://github.com/consolidation/site-process/issues",
  1110. "source": "https://github.com/consolidation/site-process/tree/4.2.1"
  1111. },
  1112. "time": "2022-10-18T13:19:35+00:00"
  1113. },
  1114. {
  1115. "name": "cweagans/composer-patches",
  1116. "version": "1.7.3",
  1117. "source": {
  1118. "type": "git",
  1119. "url": "https://github.com/cweagans/composer-patches.git",
  1120. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db"
  1121. },
  1122. "dist": {
  1123. "type": "zip",
  1124. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  1125. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  1126. "shasum": ""
  1127. },
  1128. "require": {
  1129. "composer-plugin-api": "^1.0 || ^2.0",
  1130. "php": ">=5.3.0"
  1131. },
  1132. "require-dev": {
  1133. "composer/composer": "~1.0 || ~2.0",
  1134. "phpunit/phpunit": "~4.6"
  1135. },
  1136. "type": "composer-plugin",
  1137. "extra": {
  1138. "class": "cweagans\\Composer\\Patches"
  1139. },
  1140. "autoload": {
  1141. "psr-4": {
  1142. "cweagans\\Composer\\": "src"
  1143. }
  1144. },
  1145. "notification-url": "https://packagist.org/downloads/",
  1146. "license": [
  1147. "BSD-3-Clause"
  1148. ],
  1149. "authors": [
  1150. {
  1151. "name": "Cameron Eagans",
  1152. "email": "me@cweagans.net"
  1153. }
  1154. ],
  1155. "description": "Provides a way to patch Composer packages.",
  1156. "support": {
  1157. "issues": "https://github.com/cweagans/composer-patches/issues",
  1158. "source": "https://github.com/cweagans/composer-patches/tree/1.7.3"
  1159. },
  1160. "time": "2022-12-20T22:53:13+00:00"
  1161. },
  1162. {
  1163. "name": "dflydev/dot-access-data",
  1164. "version": "v1.1.0",
  1165. "source": {
  1166. "type": "git",
  1167. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1168. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1169. },
  1170. "dist": {
  1171. "type": "zip",
  1172. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1173. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1174. "shasum": ""
  1175. },
  1176. "require": {
  1177. "php": ">=5.3.2"
  1178. },
  1179. "type": "library",
  1180. "extra": {
  1181. "branch-alias": {
  1182. "dev-master": "1.0-dev"
  1183. }
  1184. },
  1185. "autoload": {
  1186. "psr-0": {
  1187. "Dflydev\\DotAccessData": "src"
  1188. }
  1189. },
  1190. "notification-url": "https://packagist.org/downloads/",
  1191. "license": [
  1192. "MIT"
  1193. ],
  1194. "authors": [
  1195. {
  1196. "name": "Dragonfly Development Inc.",
  1197. "email": "info@dflydev.com",
  1198. "homepage": "http://dflydev.com"
  1199. },
  1200. {
  1201. "name": "Beau Simensen",
  1202. "email": "beau@dflydev.com",
  1203. "homepage": "http://beausimensen.com"
  1204. },
  1205. {
  1206. "name": "Carlos Frutos",
  1207. "email": "carlos@kiwing.it",
  1208. "homepage": "https://github.com/cfrutos"
  1209. }
  1210. ],
  1211. "description": "Given a deep data structure, access data by dot notation.",
  1212. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1213. "keywords": [
  1214. "access",
  1215. "data",
  1216. "dot",
  1217. "notation"
  1218. ],
  1219. "support": {
  1220. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1221. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/master"
  1222. },
  1223. "time": "2017-01-20T21:14:22+00:00"
  1224. },
  1225. {
  1226. "name": "doctrine/annotations",
  1227. "version": "1.13.3",
  1228. "source": {
  1229. "type": "git",
  1230. "url": "https://github.com/doctrine/annotations.git",
  1231. "reference": "648b0343343565c4a056bfc8392201385e8d89f0"
  1232. },
  1233. "dist": {
  1234. "type": "zip",
  1235. "url": "https://api.github.com/repos/doctrine/annotations/zipball/648b0343343565c4a056bfc8392201385e8d89f0",
  1236. "reference": "648b0343343565c4a056bfc8392201385e8d89f0",
  1237. "shasum": ""
  1238. },
  1239. "require": {
  1240. "doctrine/lexer": "1.*",
  1241. "ext-tokenizer": "*",
  1242. "php": "^7.1 || ^8.0",
  1243. "psr/cache": "^1 || ^2 || ^3"
  1244. },
  1245. "require-dev": {
  1246. "doctrine/cache": "^1.11 || ^2.0",
  1247. "doctrine/coding-standard": "^6.0 || ^8.1",
  1248. "phpstan/phpstan": "^1.4.10 || ^1.8.0",
  1249. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
  1250. "symfony/cache": "^4.4 || ^5.2",
  1251. "vimeo/psalm": "^4.10"
  1252. },
  1253. "type": "library",
  1254. "autoload": {
  1255. "psr-4": {
  1256. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1257. }
  1258. },
  1259. "notification-url": "https://packagist.org/downloads/",
  1260. "license": [
  1261. "MIT"
  1262. ],
  1263. "authors": [
  1264. {
  1265. "name": "Guilherme Blanco",
  1266. "email": "guilhermeblanco@gmail.com"
  1267. },
  1268. {
  1269. "name": "Roman Borschel",
  1270. "email": "roman@code-factory.org"
  1271. },
  1272. {
  1273. "name": "Benjamin Eberlei",
  1274. "email": "kontakt@beberlei.de"
  1275. },
  1276. {
  1277. "name": "Jonathan Wage",
  1278. "email": "jonwage@gmail.com"
  1279. },
  1280. {
  1281. "name": "Johannes Schmitt",
  1282. "email": "schmittjoh@gmail.com"
  1283. }
  1284. ],
  1285. "description": "Docblock Annotations Parser",
  1286. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1287. "keywords": [
  1288. "annotations",
  1289. "docblock",
  1290. "parser"
  1291. ],
  1292. "support": {
  1293. "issues": "https://github.com/doctrine/annotations/issues",
  1294. "source": "https://github.com/doctrine/annotations/tree/1.13.3"
  1295. },
  1296. "time": "2022-07-02T10:48:51+00:00"
  1297. },
  1298. {
  1299. "name": "doctrine/common",
  1300. "version": "3.4.4",
  1301. "source": {
  1302. "type": "git",
  1303. "url": "https://github.com/doctrine/common.git",
  1304. "reference": "0aad4b7ab7ce8c6602dfbb1e1a24581275fb9d1a"
  1305. },
  1306. "dist": {
  1307. "type": "zip",
  1308. "url": "https://api.github.com/repos/doctrine/common/zipball/0aad4b7ab7ce8c6602dfbb1e1a24581275fb9d1a",
  1309. "reference": "0aad4b7ab7ce8c6602dfbb1e1a24581275fb9d1a",
  1310. "shasum": ""
  1311. },
  1312. "require": {
  1313. "doctrine/persistence": "^2.0 || ^3.0",
  1314. "php": "^7.1 || ^8.0"
  1315. },
  1316. "require-dev": {
  1317. "doctrine/coding-standard": "^9.0 || ^10.0",
  1318. "doctrine/collections": "^1",
  1319. "phpstan/phpstan": "^1.4.1",
  1320. "phpstan/phpstan-phpunit": "^1",
  1321. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  1322. "squizlabs/php_codesniffer": "^3.0",
  1323. "symfony/phpunit-bridge": "^6.1",
  1324. "vimeo/psalm": "^4.4"
  1325. },
  1326. "type": "library",
  1327. "autoload": {
  1328. "psr-4": {
  1329. "Doctrine\\Common\\": "src"
  1330. }
  1331. },
  1332. "notification-url": "https://packagist.org/downloads/",
  1333. "license": [
  1334. "MIT"
  1335. ],
  1336. "authors": [
  1337. {
  1338. "name": "Guilherme Blanco",
  1339. "email": "guilhermeblanco@gmail.com"
  1340. },
  1341. {
  1342. "name": "Roman Borschel",
  1343. "email": "roman@code-factory.org"
  1344. },
  1345. {
  1346. "name": "Benjamin Eberlei",
  1347. "email": "kontakt@beberlei.de"
  1348. },
  1349. {
  1350. "name": "Jonathan Wage",
  1351. "email": "jonwage@gmail.com"
  1352. },
  1353. {
  1354. "name": "Johannes Schmitt",
  1355. "email": "schmittjoh@gmail.com"
  1356. },
  1357. {
  1358. "name": "Marco Pivetta",
  1359. "email": "ocramius@gmail.com"
  1360. }
  1361. ],
  1362. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, proxies and much more.",
  1363. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1364. "keywords": [
  1365. "common",
  1366. "doctrine",
  1367. "php"
  1368. ],
  1369. "support": {
  1370. "issues": "https://github.com/doctrine/common/issues",
  1371. "source": "https://github.com/doctrine/common/tree/3.4.4"
  1372. },
  1373. "funding": [
  1374. {
  1375. "url": "https://www.doctrine-project.org/sponsorship.html",
  1376. "type": "custom"
  1377. },
  1378. {
  1379. "url": "https://www.patreon.com/phpdoctrine",
  1380. "type": "patreon"
  1381. },
  1382. {
  1383. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1384. "type": "tidelift"
  1385. }
  1386. ],
  1387. "time": "2024-04-16T13:35:33+00:00"
  1388. },
  1389. {
  1390. "name": "doctrine/event-manager",
  1391. "version": "2.0.1",
  1392. "source": {
  1393. "type": "git",
  1394. "url": "https://github.com/doctrine/event-manager.git",
  1395. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  1396. },
  1397. "dist": {
  1398. "type": "zip",
  1399. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  1400. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  1401. "shasum": ""
  1402. },
  1403. "require": {
  1404. "php": "^8.1"
  1405. },
  1406. "conflict": {
  1407. "doctrine/common": "<2.9"
  1408. },
  1409. "require-dev": {
  1410. "doctrine/coding-standard": "^12",
  1411. "phpstan/phpstan": "^1.8.8",
  1412. "phpunit/phpunit": "^10.5",
  1413. "vimeo/psalm": "^5.24"
  1414. },
  1415. "type": "library",
  1416. "autoload": {
  1417. "psr-4": {
  1418. "Doctrine\\Common\\": "src"
  1419. }
  1420. },
  1421. "notification-url": "https://packagist.org/downloads/",
  1422. "license": [
  1423. "MIT"
  1424. ],
  1425. "authors": [
  1426. {
  1427. "name": "Guilherme Blanco",
  1428. "email": "guilhermeblanco@gmail.com"
  1429. },
  1430. {
  1431. "name": "Roman Borschel",
  1432. "email": "roman@code-factory.org"
  1433. },
  1434. {
  1435. "name": "Benjamin Eberlei",
  1436. "email": "kontakt@beberlei.de"
  1437. },
  1438. {
  1439. "name": "Jonathan Wage",
  1440. "email": "jonwage@gmail.com"
  1441. },
  1442. {
  1443. "name": "Johannes Schmitt",
  1444. "email": "schmittjoh@gmail.com"
  1445. },
  1446. {
  1447. "name": "Marco Pivetta",
  1448. "email": "ocramius@gmail.com"
  1449. }
  1450. ],
  1451. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1452. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1453. "keywords": [
  1454. "event",
  1455. "event dispatcher",
  1456. "event manager",
  1457. "event system",
  1458. "events"
  1459. ],
  1460. "support": {
  1461. "issues": "https://github.com/doctrine/event-manager/issues",
  1462. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  1463. },
  1464. "funding": [
  1465. {
  1466. "url": "https://www.doctrine-project.org/sponsorship.html",
  1467. "type": "custom"
  1468. },
  1469. {
  1470. "url": "https://www.patreon.com/phpdoctrine",
  1471. "type": "patreon"
  1472. },
  1473. {
  1474. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1475. "type": "tidelift"
  1476. }
  1477. ],
  1478. "time": "2024-05-22T20:47:39+00:00"
  1479. },
  1480. {
  1481. "name": "doctrine/lexer",
  1482. "version": "1.2.3",
  1483. "source": {
  1484. "type": "git",
  1485. "url": "https://github.com/doctrine/lexer.git",
  1486. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1487. },
  1488. "dist": {
  1489. "type": "zip",
  1490. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1491. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1492. "shasum": ""
  1493. },
  1494. "require": {
  1495. "php": "^7.1 || ^8.0"
  1496. },
  1497. "require-dev": {
  1498. "doctrine/coding-standard": "^9.0",
  1499. "phpstan/phpstan": "^1.3",
  1500. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1501. "vimeo/psalm": "^4.11"
  1502. },
  1503. "type": "library",
  1504. "autoload": {
  1505. "psr-4": {
  1506. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1507. }
  1508. },
  1509. "notification-url": "https://packagist.org/downloads/",
  1510. "license": [
  1511. "MIT"
  1512. ],
  1513. "authors": [
  1514. {
  1515. "name": "Guilherme Blanco",
  1516. "email": "guilhermeblanco@gmail.com"
  1517. },
  1518. {
  1519. "name": "Roman Borschel",
  1520. "email": "roman@code-factory.org"
  1521. },
  1522. {
  1523. "name": "Johannes Schmitt",
  1524. "email": "schmittjoh@gmail.com"
  1525. }
  1526. ],
  1527. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1528. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1529. "keywords": [
  1530. "annotations",
  1531. "docblock",
  1532. "lexer",
  1533. "parser",
  1534. "php"
  1535. ],
  1536. "support": {
  1537. "issues": "https://github.com/doctrine/lexer/issues",
  1538. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1539. },
  1540. "funding": [
  1541. {
  1542. "url": "https://www.doctrine-project.org/sponsorship.html",
  1543. "type": "custom"
  1544. },
  1545. {
  1546. "url": "https://www.patreon.com/phpdoctrine",
  1547. "type": "patreon"
  1548. },
  1549. {
  1550. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1551. "type": "tidelift"
  1552. }
  1553. ],
  1554. "time": "2022-02-28T11:07:21+00:00"
  1555. },
  1556. {
  1557. "name": "doctrine/persistence",
  1558. "version": "3.3.3",
  1559. "source": {
  1560. "type": "git",
  1561. "url": "https://github.com/doctrine/persistence.git",
  1562. "reference": "b337726451f5d530df338fc7f68dee8781b49779"
  1563. },
  1564. "dist": {
  1565. "type": "zip",
  1566. "url": "https://api.github.com/repos/doctrine/persistence/zipball/b337726451f5d530df338fc7f68dee8781b49779",
  1567. "reference": "b337726451f5d530df338fc7f68dee8781b49779",
  1568. "shasum": ""
  1569. },
  1570. "require": {
  1571. "doctrine/event-manager": "^1 || ^2",
  1572. "php": "^7.2 || ^8.0",
  1573. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1574. },
  1575. "conflict": {
  1576. "doctrine/common": "<2.10"
  1577. },
  1578. "require-dev": {
  1579. "doctrine/coding-standard": "^12",
  1580. "doctrine/common": "^3.0",
  1581. "phpstan/phpstan": "1.11.1",
  1582. "phpstan/phpstan-phpunit": "^1",
  1583. "phpstan/phpstan-strict-rules": "^1.1",
  1584. "phpunit/phpunit": "^8.5 || ^9.5",
  1585. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1586. "vimeo/psalm": "4.30.0 || 5.24.0"
  1587. },
  1588. "type": "library",
  1589. "autoload": {
  1590. "psr-4": {
  1591. "Doctrine\\Persistence\\": "src/Persistence"
  1592. }
  1593. },
  1594. "notification-url": "https://packagist.org/downloads/",
  1595. "license": [
  1596. "MIT"
  1597. ],
  1598. "authors": [
  1599. {
  1600. "name": "Guilherme Blanco",
  1601. "email": "guilhermeblanco@gmail.com"
  1602. },
  1603. {
  1604. "name": "Roman Borschel",
  1605. "email": "roman@code-factory.org"
  1606. },
  1607. {
  1608. "name": "Benjamin Eberlei",
  1609. "email": "kontakt@beberlei.de"
  1610. },
  1611. {
  1612. "name": "Jonathan Wage",
  1613. "email": "jonwage@gmail.com"
  1614. },
  1615. {
  1616. "name": "Johannes Schmitt",
  1617. "email": "schmittjoh@gmail.com"
  1618. },
  1619. {
  1620. "name": "Marco Pivetta",
  1621. "email": "ocramius@gmail.com"
  1622. }
  1623. ],
  1624. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1625. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1626. "keywords": [
  1627. "mapper",
  1628. "object",
  1629. "odm",
  1630. "orm",
  1631. "persistence"
  1632. ],
  1633. "support": {
  1634. "issues": "https://github.com/doctrine/persistence/issues",
  1635. "source": "https://github.com/doctrine/persistence/tree/3.3.3"
  1636. },
  1637. "funding": [
  1638. {
  1639. "url": "https://www.doctrine-project.org/sponsorship.html",
  1640. "type": "custom"
  1641. },
  1642. {
  1643. "url": "https://www.patreon.com/phpdoctrine",
  1644. "type": "patreon"
  1645. },
  1646. {
  1647. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1648. "type": "tidelift"
  1649. }
  1650. ],
  1651. "time": "2024-06-20T10:14:30+00:00"
  1652. },
  1653. {
  1654. "name": "doctrine/reflection",
  1655. "version": "1.2.4",
  1656. "source": {
  1657. "type": "git",
  1658. "url": "https://github.com/doctrine/reflection.git",
  1659. "reference": "6bcea3e81ab8b3d0abe5fde5300bbc8a968960c7"
  1660. },
  1661. "dist": {
  1662. "type": "zip",
  1663. "url": "https://api.github.com/repos/doctrine/reflection/zipball/6bcea3e81ab8b3d0abe5fde5300bbc8a968960c7",
  1664. "reference": "6bcea3e81ab8b3d0abe5fde5300bbc8a968960c7",
  1665. "shasum": ""
  1666. },
  1667. "require": {
  1668. "doctrine/annotations": "^1.0 || ^2.0",
  1669. "ext-tokenizer": "*",
  1670. "php": "^7.1 || ^8.0"
  1671. },
  1672. "conflict": {
  1673. "doctrine/common": "<2.9"
  1674. },
  1675. "require-dev": {
  1676. "doctrine/coding-standard": "^9",
  1677. "doctrine/common": "^3.3",
  1678. "phpstan/phpstan": "^1.4.10",
  1679. "phpstan/phpstan-phpunit": "^1",
  1680. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5"
  1681. },
  1682. "type": "library",
  1683. "autoload": {
  1684. "psr-4": {
  1685. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1686. }
  1687. },
  1688. "notification-url": "https://packagist.org/downloads/",
  1689. "license": [
  1690. "MIT"
  1691. ],
  1692. "authors": [
  1693. {
  1694. "name": "Guilherme Blanco",
  1695. "email": "guilhermeblanco@gmail.com"
  1696. },
  1697. {
  1698. "name": "Roman Borschel",
  1699. "email": "roman@code-factory.org"
  1700. },
  1701. {
  1702. "name": "Benjamin Eberlei",
  1703. "email": "kontakt@beberlei.de"
  1704. },
  1705. {
  1706. "name": "Jonathan Wage",
  1707. "email": "jonwage@gmail.com"
  1708. },
  1709. {
  1710. "name": "Johannes Schmitt",
  1711. "email": "schmittjoh@gmail.com"
  1712. },
  1713. {
  1714. "name": "Marco Pivetta",
  1715. "email": "ocramius@gmail.com"
  1716. }
  1717. ],
  1718. "description": "The Doctrine Reflection project is a simple library used by the various Doctrine projects which adds some additional functionality on top of the reflection functionality that comes with PHP. It allows you to get the reflection information about classes, methods and properties statically.",
  1719. "homepage": "https://www.doctrine-project.org/projects/reflection.html",
  1720. "keywords": [
  1721. "reflection",
  1722. "static"
  1723. ],
  1724. "support": {
  1725. "issues": "https://github.com/doctrine/reflection/issues",
  1726. "source": "https://github.com/doctrine/reflection/tree/1.2.4"
  1727. },
  1728. "abandoned": "roave/better-reflection",
  1729. "time": "2023-07-27T18:11:59+00:00"
  1730. },
  1731. {
  1732. "name": "drupal/addtoany",
  1733. "version": "2.0.5",
  1734. "source": {
  1735. "type": "git",
  1736. "url": "https://git.drupalcode.org/project/addtoany.git",
  1737. "reference": "2.0.5"
  1738. },
  1739. "dist": {
  1740. "type": "zip",
  1741. "url": "https://ftp.drupal.org/files/projects/addtoany-2.0.5.zip",
  1742. "reference": "2.0.5",
  1743. "shasum": "b3b26968548c1605a641b12ff25d03edc8497df6"
  1744. },
  1745. "require": {
  1746. "drupal/core": "^9.4 || ^10.0"
  1747. },
  1748. "type": "drupal-module",
  1749. "extra": {
  1750. "drupal": {
  1751. "version": "2.0.5",
  1752. "datestamp": "1698825601",
  1753. "security-coverage": {
  1754. "status": "covered",
  1755. "message": "Covered by Drupal's security advisory policy"
  1756. }
  1757. }
  1758. },
  1759. "notification-url": "https://packages.drupal.org/8/downloads",
  1760. "license": [
  1761. "GPL-2.0-or-later"
  1762. ],
  1763. "authors": [
  1764. {
  1765. "name": "AddToAny",
  1766. "homepage": "https://www.drupal.org/user/2640913"
  1767. },
  1768. {
  1769. "name": "micropat",
  1770. "homepage": "https://www.drupal.org/user/260224"
  1771. }
  1772. ],
  1773. "description": "Share buttons for Drupal including the AddToAny universal share button, Facebook, Mastodon, Pinterest, WhatsApp and many more.",
  1774. "homepage": "https://www.drupal.org/project/addtoany",
  1775. "keywords": [
  1776. "Drupal"
  1777. ],
  1778. "support": {
  1779. "source": "https://git.drupalcode.org/project/addtoany",
  1780. "issues": "https://www.drupal.org/project/issues/addtoany"
  1781. }
  1782. },
  1783. {
  1784. "name": "drupal/admin_toolbar",
  1785. "version": "3.5.0",
  1786. "source": {
  1787. "type": "git",
  1788. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1789. "reference": "3.5.0"
  1790. },
  1791. "dist": {
  1792. "type": "zip",
  1793. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.5.0.zip",
  1794. "reference": "3.5.0",
  1795. "shasum": "099e8d4dc98e1d551b4f9cffdc39599eb8ad04e8"
  1796. },
  1797. "require": {
  1798. "drupal/core": "^9.5 || ^10 || ^11"
  1799. },
  1800. "require-dev": {
  1801. "drupal/admin_toolbar_tools": "*"
  1802. },
  1803. "type": "drupal-module",
  1804. "extra": {
  1805. "drupal": {
  1806. "version": "3.5.0",
  1807. "datestamp": "1722639094",
  1808. "security-coverage": {
  1809. "status": "covered",
  1810. "message": "Covered by Drupal's security advisory policy"
  1811. }
  1812. }
  1813. },
  1814. "notification-url": "https://packages.drupal.org/8/downloads",
  1815. "license": [
  1816. "GPL-2.0-or-later"
  1817. ],
  1818. "authors": [
  1819. {
  1820. "name": "Wilfrid Roze (eme)",
  1821. "homepage": "https://www.drupal.org/u/eme",
  1822. "role": "Maintainer"
  1823. },
  1824. {
  1825. "name": "Romain Jarraud (romainj)",
  1826. "homepage": "https://www.drupal.org/u/romainj",
  1827. "role": "Maintainer"
  1828. },
  1829. {
  1830. "name": "Adrian Cid Almaguer (adriancid)",
  1831. "homepage": "https://www.drupal.org/u/adriancid",
  1832. "email": "adriancid@gmail.com",
  1833. "role": "Maintainer"
  1834. },
  1835. {
  1836. "name": "Mohamed Anis Taktak (matio89)",
  1837. "homepage": "https://www.drupal.org/u/matio89",
  1838. "role": "Maintainer"
  1839. },
  1840. {
  1841. "name": "japerry",
  1842. "homepage": "https://www.drupal.org/user/45640"
  1843. },
  1844. {
  1845. "name": "matio89",
  1846. "homepage": "https://www.drupal.org/user/2320090"
  1847. },
  1848. {
  1849. "name": "musa.thomas",
  1850. "homepage": "https://www.drupal.org/user/1213824"
  1851. },
  1852. {
  1853. "name": "romainj",
  1854. "homepage": "https://www.drupal.org/user/370706"
  1855. }
  1856. ],
  1857. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1858. "homepage": "http://drupal.org/project/admin_toolbar",
  1859. "keywords": [
  1860. "Drupal",
  1861. "Toolbar"
  1862. ],
  1863. "support": {
  1864. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1865. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1866. }
  1867. },
  1868. {
  1869. "name": "drupal/adminimal_theme",
  1870. "version": "1.7.0",
  1871. "source": {
  1872. "type": "git",
  1873. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1874. "reference": "8.x-1.7"
  1875. },
  1876. "dist": {
  1877. "type": "zip",
  1878. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.7.zip",
  1879. "reference": "8.x-1.7",
  1880. "shasum": "0fe020fecab6a1f6d877f2e622fb9f916ada52bb"
  1881. },
  1882. "require": {
  1883. "drupal/core": "^9.3 || ^10",
  1884. "drupal/seven": "~1.0"
  1885. },
  1886. "type": "drupal-theme",
  1887. "extra": {
  1888. "drupal": {
  1889. "version": "8.x-1.7",
  1890. "datestamp": "1691504486",
  1891. "security-coverage": {
  1892. "status": "covered",
  1893. "message": "Covered by Drupal's security advisory policy"
  1894. }
  1895. }
  1896. },
  1897. "notification-url": "https://packages.drupal.org/8/downloads",
  1898. "license": [
  1899. "GPL-2.0+"
  1900. ],
  1901. "authors": [
  1902. {
  1903. "name": "ANDiTKO",
  1904. "homepage": "https://www.drupal.org/user/1428124"
  1905. },
  1906. {
  1907. "name": "andrey.troeglazov",
  1908. "homepage": "https://www.drupal.org/user/3145389"
  1909. },
  1910. {
  1911. "name": "realityloop",
  1912. "homepage": "https://www.drupal.org/user/139189"
  1913. },
  1914. {
  1915. "name": "rjjakes",
  1916. "homepage": "https://www.drupal.org/user/3457245"
  1917. }
  1918. ],
  1919. "description": "Drupal administration theme with modern minimalist design.",
  1920. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1921. "support": {
  1922. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1923. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1924. }
  1925. },
  1926. {
  1927. "name": "drupal/audiofield",
  1928. "version": "1.13.0",
  1929. "source": {
  1930. "type": "git",
  1931. "url": "https://git.drupalcode.org/project/audiofield.git",
  1932. "reference": "8.x-1.13"
  1933. },
  1934. "dist": {
  1935. "type": "zip",
  1936. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  1937. "reference": "8.x-1.13",
  1938. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  1939. },
  1940. "require": {
  1941. "drupal/core": "^8 || ^9 || ^10"
  1942. },
  1943. "type": "drupal-module",
  1944. "extra": {
  1945. "drupal": {
  1946. "version": "8.x-1.13",
  1947. "datestamp": "1681143245",
  1948. "security-coverage": {
  1949. "status": "covered",
  1950. "message": "Covered by Drupal's security advisory policy"
  1951. }
  1952. },
  1953. "drush": {
  1954. "services": {
  1955. "drush.services.yml": "^9"
  1956. }
  1957. }
  1958. },
  1959. "notification-url": "https://packages.drupal.org/8/downloads",
  1960. "license": [
  1961. "GPL-2.0-or-later"
  1962. ],
  1963. "authors": [
  1964. {
  1965. "name": "Daniel Moberly",
  1966. "homepage": "https://www.drupal.org/u/danielmoberly",
  1967. "role": "Maintainer"
  1968. },
  1969. {
  1970. "name": "tamerzg",
  1971. "homepage": "https://www.drupal.org/user/464564"
  1972. }
  1973. ],
  1974. "description": "AudioField Module",
  1975. "homepage": "https://www.drupal.org/project/audiofield",
  1976. "support": {
  1977. "source": "https://git.drupalcode.org/project/audiofield",
  1978. "issues": "https://www.drupal.org/project/issues/audiofield"
  1979. }
  1980. },
  1981. {
  1982. "name": "drupal/autologout",
  1983. "version": "1.5.0",
  1984. "source": {
  1985. "type": "git",
  1986. "url": "https://git.drupalcode.org/project/autologout.git",
  1987. "reference": "8.x-1.5"
  1988. },
  1989. "dist": {
  1990. "type": "zip",
  1991. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.5.zip",
  1992. "reference": "8.x-1.5",
  1993. "shasum": "1beb693f56eb119624dd270ee789db00eb1ce288"
  1994. },
  1995. "require": {
  1996. "drupal/core": "^9.2 || ^10 || ^11",
  1997. "drupal/js_cookie": "^1.0"
  1998. },
  1999. "type": "drupal-module",
  2000. "extra": {
  2001. "drupal": {
  2002. "version": "8.x-1.5",
  2003. "datestamp": "1716413630",
  2004. "security-coverage": {
  2005. "status": "covered",
  2006. "message": "Covered by Drupal's security advisory policy"
  2007. }
  2008. }
  2009. },
  2010. "notification-url": "https://packages.drupal.org/8/downloads",
  2011. "license": [
  2012. "GPL-2.0-or-later"
  2013. ],
  2014. "authors": [
  2015. {
  2016. "name": "ajits",
  2017. "homepage": "https://www.drupal.org/user/981944"
  2018. },
  2019. {
  2020. "name": "AjK",
  2021. "homepage": "https://www.drupal.org/user/39030"
  2022. },
  2023. {
  2024. "name": "boshtian",
  2025. "homepage": "https://www.drupal.org/user/1773456"
  2026. },
  2027. {
  2028. "name": "dandrews",
  2029. "homepage": "https://www.drupal.org/user/2014490"
  2030. },
  2031. {
  2032. "name": "darksnow",
  2033. "homepage": "https://www.drupal.org/user/391915"
  2034. },
  2035. {
  2036. "name": "japerry",
  2037. "homepage": "https://www.drupal.org/user/45640"
  2038. },
  2039. {
  2040. "name": "johnennew",
  2041. "homepage": "https://www.drupal.org/user/1150042"
  2042. },
  2043. {
  2044. "name": "jrglasgow",
  2045. "homepage": "https://www.drupal.org/user/36590"
  2046. },
  2047. {
  2048. "name": "kmasood",
  2049. "homepage": "https://www.drupal.org/user/1262860"
  2050. },
  2051. {
  2052. "name": "levelos",
  2053. "homepage": "https://www.drupal.org/user/54135"
  2054. },
  2055. {
  2056. "name": "prabeen.giri",
  2057. "homepage": "https://www.drupal.org/user/913078"
  2058. },
  2059. {
  2060. "name": "scott_earnest",
  2061. "homepage": "https://www.drupal.org/user/416158"
  2062. },
  2063. {
  2064. "name": "str8",
  2065. "homepage": "https://www.drupal.org/user/2865063"
  2066. }
  2067. ],
  2068. "description": "Adds automated timed logout.",
  2069. "homepage": "http://drupal.org/project/autologout",
  2070. "support": {
  2071. "source": "https://git.drupalcode.org/project/autologout",
  2072. "issues": "https://www.drupal.org/project/issues/autologout"
  2073. }
  2074. },
  2075. {
  2076. "name": "drupal/basic",
  2077. "version": "3.0.0-alpha2",
  2078. "source": {
  2079. "type": "git",
  2080. "url": "https://git.drupalcode.org/project/basic.git",
  2081. "reference": "3.0.0-alpha2"
  2082. },
  2083. "dist": {
  2084. "type": "zip",
  2085. "url": "https://ftp.drupal.org/files/projects/basic-3.0.0-alpha2.zip",
  2086. "reference": "3.0.0-alpha2",
  2087. "shasum": "830bca3d506e15847440b3696dcba8859bf74aab"
  2088. },
  2089. "require": {
  2090. "drupal/core": "^9.3 || ^10"
  2091. },
  2092. "type": "drupal-theme",
  2093. "extra": {
  2094. "drupal": {
  2095. "version": "3.0.0-alpha2",
  2096. "datestamp": "1674980765",
  2097. "security-coverage": {
  2098. "status": "not-covered",
  2099. "message": "Alpha releases are not covered by Drupal security advisories."
  2100. }
  2101. }
  2102. },
  2103. "notification-url": "https://packages.drupal.org/8/downloads",
  2104. "license": [
  2105. "GPL-2.0+"
  2106. ],
  2107. "authors": [
  2108. {
  2109. "name": "Steve Krueger",
  2110. "homepage": "http://thejibe.com",
  2111. "email": "steve@thejibe.com",
  2112. "role": "Maintainer"
  2113. },
  2114. {
  2115. "name": "Joël Pittet",
  2116. "homepage": "https://www.drupal.org/u/joelpittet",
  2117. "email": "joel@pittet.ca",
  2118. "role": "Maintainer"
  2119. },
  2120. {
  2121. "name": "Leah Wagner",
  2122. "homepage": "http://thejibe.com",
  2123. "email": "leah@thejibe.com",
  2124. "role": "Maintainer"
  2125. },
  2126. {
  2127. "name": "Catherine Winters",
  2128. "homepage": "http://www.catherinewinters.com",
  2129. "email": "catherine@catherinewinters.com",
  2130. "role": "Maintainer"
  2131. },
  2132. {
  2133. "name": "Johannes Schmidt",
  2134. "homepage": "http://2tabs.com",
  2135. "email": "mail@2tabs.com",
  2136. "role": "Maintainer"
  2137. },
  2138. {
  2139. "name": "Chuck Kosman",
  2140. "homepage": "http://thejibe.com",
  2141. "email": "chuck@thejibe.com",
  2142. "role": "Maintainer"
  2143. },
  2144. {
  2145. "name": "SteveK",
  2146. "homepage": "https://www.drupal.org/user/111656"
  2147. }
  2148. ],
  2149. "description": "HTML5, SASS, Responsive grid starter theme.",
  2150. "homepage": "http://drupal.org/project/basic",
  2151. "support": {
  2152. "source": "http://cgit.drupalcode.org/basic",
  2153. "issues": "https://www.drupal.org/project/issues/basic",
  2154. "irc": "irc://irc.freenode.org/drupal-contribute"
  2155. }
  2156. },
  2157. {
  2158. "name": "drupal/better_messages",
  2159. "version": "2.0.2",
  2160. "source": {
  2161. "type": "git",
  2162. "url": "https://git.drupalcode.org/project/better_messages.git",
  2163. "reference": "2.0.2"
  2164. },
  2165. "dist": {
  2166. "type": "zip",
  2167. "url": "https://ftp.drupal.org/files/projects/better_messages-2.0.2.zip",
  2168. "reference": "2.0.2",
  2169. "shasum": "72340b2a0f5700032b1fdcd98fde72c3bcd69919"
  2170. },
  2171. "require": {
  2172. "drupal/core": "^9.2 || ^10 || ^11",
  2173. "drupal/jquery_ui_draggable": "*",
  2174. "drupal/jquery_ui_resizable": "*"
  2175. },
  2176. "type": "drupal-module",
  2177. "extra": {
  2178. "drupal": {
  2179. "version": "2.0.2",
  2180. "datestamp": "1724053555",
  2181. "security-coverage": {
  2182. "status": "covered",
  2183. "message": "Covered by Drupal's security advisory policy"
  2184. }
  2185. }
  2186. },
  2187. "notification-url": "https://packages.drupal.org/8/downloads",
  2188. "license": [
  2189. "GPL-2.0-or-later"
  2190. ],
  2191. "authors": [
  2192. {
  2193. "name": "bucefal91",
  2194. "homepage": "https://www.drupal.org/user/504128"
  2195. },
  2196. {
  2197. "name": "le72",
  2198. "homepage": "https://www.drupal.org/user/1866896"
  2199. },
  2200. {
  2201. "name": "mohammed j. razem",
  2202. "homepage": "https://www.drupal.org/user/255384"
  2203. },
  2204. {
  2205. "name": "usingsession",
  2206. "homepage": "https://www.drupal.org/user/3582050"
  2207. }
  2208. ],
  2209. "description": "This module adds simple functions to make Drupal messages look and act better.",
  2210. "homepage": "https://www.drupal.org/project/better_messages",
  2211. "support": {
  2212. "source": "https://git.drupalcode.org/project/better_messages"
  2213. }
  2214. },
  2215. {
  2216. "name": "drupal/bulkdelete",
  2217. "version": "dev-1.x",
  2218. "source": {
  2219. "type": "git",
  2220. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2221. "reference": "95a7ff49f152021be88ba562c247347ff36392c7"
  2222. },
  2223. "require": {
  2224. "drupal/core": "^8.7.7 || ^9 || ^10"
  2225. },
  2226. "type": "drupal-module",
  2227. "extra": {
  2228. "branch-alias": {
  2229. "dev-1.x": "1.x-dev"
  2230. },
  2231. "drupal": {
  2232. "version": "8.x-1.x-dev",
  2233. "datestamp": "1655322426",
  2234. "security-coverage": {
  2235. "status": "not-covered",
  2236. "message": "Dev releases are not covered by Drupal security advisories."
  2237. }
  2238. }
  2239. },
  2240. "notification-url": "https://packages.drupal.org/8/downloads",
  2241. "license": [
  2242. "GPL-2.0-or-later"
  2243. ],
  2244. "authors": [
  2245. {
  2246. "name": "Kars-T",
  2247. "homepage": "https://www.drupal.org/user/224499"
  2248. },
  2249. {
  2250. "name": "Rahul Seth",
  2251. "homepage": "https://www.drupal.org/user/2694359"
  2252. },
  2253. {
  2254. "name": "adriancid",
  2255. "homepage": "https://www.drupal.org/user/1962106"
  2256. },
  2257. {
  2258. "name": "robertDouglass",
  2259. "homepage": "https://www.drupal.org/user/5449"
  2260. }
  2261. ],
  2262. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2263. "homepage": "https://www.drupal.org/project/bulkdelete",
  2264. "support": {
  2265. "source": "https://git.drupalcode.org/project/bulkdelete"
  2266. }
  2267. },
  2268. {
  2269. "name": "drupal/color_field",
  2270. "version": "3.0.1",
  2271. "source": {
  2272. "type": "git",
  2273. "url": "https://git.drupalcode.org/project/color_field.git",
  2274. "reference": "3.0.1"
  2275. },
  2276. "dist": {
  2277. "type": "zip",
  2278. "url": "https://ftp.drupal.org/files/projects/color_field-3.0.1.zip",
  2279. "reference": "3.0.1",
  2280. "shasum": "fd2f75db74063f817d81a537221fa1c8398e4d8f"
  2281. },
  2282. "require": {
  2283. "drupal/core": "^9 || ^10 || ^11"
  2284. },
  2285. "require-dev": {
  2286. "drupal/core-recommended": "^9 || ^10",
  2287. "drupal/feeds": "^3.0@beta",
  2288. "drupal/token": "~1.3"
  2289. },
  2290. "suggest": {
  2291. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  2292. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  2293. },
  2294. "type": "drupal-module",
  2295. "extra": {
  2296. "drupal": {
  2297. "version": "3.0.1",
  2298. "datestamp": "1717506868",
  2299. "security-coverage": {
  2300. "status": "covered",
  2301. "message": "Covered by Drupal's security advisory policy"
  2302. }
  2303. }
  2304. },
  2305. "notification-url": "https://packages.drupal.org/8/downloads",
  2306. "license": [
  2307. "GPL-2.0-or-later"
  2308. ],
  2309. "authors": [
  2310. {
  2311. "name": "targoo",
  2312. "homepage": "https://www.drupal.org/user/431910",
  2313. "role": "Maintainer"
  2314. },
  2315. {
  2316. "name": "Nick Wilde",
  2317. "homepage": "https://www.drupal.org/user/nickwilde",
  2318. "role": "Maintainer"
  2319. },
  2320. {
  2321. "name": "targoo",
  2322. "homepage": "https://www.drupal.org/user/431910"
  2323. }
  2324. ],
  2325. "description": "Provides a color field type to store the color value and opacity",
  2326. "homepage": "https://www.drupal.org/project/color_field",
  2327. "support": {
  2328. "source": "https://git.drupalcode.org/project/color_field",
  2329. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2330. }
  2331. },
  2332. {
  2333. "name": "drupal/config_devel",
  2334. "version": "1.9.0",
  2335. "source": {
  2336. "type": "git",
  2337. "url": "https://git.drupalcode.org/project/config_devel.git",
  2338. "reference": "8.x-1.9"
  2339. },
  2340. "dist": {
  2341. "type": "zip",
  2342. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.9.zip",
  2343. "reference": "8.x-1.9",
  2344. "shasum": "a9cb90575ec854b8d8adb4633a0ddc47c490ca87"
  2345. },
  2346. "require": {
  2347. "drupal/core": "^9.3 || ^10"
  2348. },
  2349. "type": "drupal-module",
  2350. "extra": {
  2351. "drupal": {
  2352. "version": "8.x-1.9",
  2353. "datestamp": "1678264813",
  2354. "security-coverage": {
  2355. "status": "covered",
  2356. "message": "Covered by Drupal's security advisory policy"
  2357. }
  2358. }
  2359. },
  2360. "notification-url": "https://packages.drupal.org/8/downloads",
  2361. "license": [
  2362. "GPL-2.0+"
  2363. ],
  2364. "authors": [
  2365. {
  2366. "name": "alexpott",
  2367. "homepage": "https://www.drupal.org/user/157725"
  2368. },
  2369. {
  2370. "name": "benjy",
  2371. "homepage": "https://www.drupal.org/user/1852732"
  2372. },
  2373. {
  2374. "name": "chx",
  2375. "homepage": "https://www.drupal.org/user/9446"
  2376. },
  2377. {
  2378. "name": "joachim",
  2379. "homepage": "https://www.drupal.org/user/107701"
  2380. },
  2381. {
  2382. "name": "vijaycs85",
  2383. "homepage": "https://www.drupal.org/user/93488"
  2384. }
  2385. ],
  2386. "description": "Helps developers work with configuration.",
  2387. "homepage": "https://www.drupal.org/project/config_devel",
  2388. "support": {
  2389. "source": "https://git.drupalcode.org/project/config_devel"
  2390. }
  2391. },
  2392. {
  2393. "name": "drupal/config_filter",
  2394. "version": "1.12.0",
  2395. "source": {
  2396. "type": "git",
  2397. "url": "https://git.drupalcode.org/project/config_filter.git",
  2398. "reference": "8.x-1.12"
  2399. },
  2400. "dist": {
  2401. "type": "zip",
  2402. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.12.zip",
  2403. "reference": "8.x-1.12",
  2404. "shasum": "364581700ca3a298f62950ff37dd309d0bfb8381"
  2405. },
  2406. "require": {
  2407. "drupal/core": "^8.8 || ^9 || ^10"
  2408. },
  2409. "suggest": {
  2410. "drupal/config_split": "Split site configuration for different environments."
  2411. },
  2412. "type": "drupal-module",
  2413. "extra": {
  2414. "drupal": {
  2415. "version": "8.x-1.12",
  2416. "datestamp": "1698308496",
  2417. "security-coverage": {
  2418. "status": "covered",
  2419. "message": "Covered by Drupal's security advisory policy"
  2420. }
  2421. }
  2422. },
  2423. "notification-url": "https://packages.drupal.org/8/downloads",
  2424. "license": [
  2425. "GPL-2.0-or-later"
  2426. ],
  2427. "authors": [
  2428. {
  2429. "name": "Fabian Bircher",
  2430. "homepage": "https://www.drupal.org/u/bircher",
  2431. "email": "opensource@fabianbircher.com",
  2432. "role": "Maintainer"
  2433. },
  2434. {
  2435. "name": "Nuvole Web",
  2436. "homepage": "http://nuvole.org",
  2437. "email": "info@nuvole.org",
  2438. "role": "Maintainer"
  2439. },
  2440. {
  2441. "name": "pescetti",
  2442. "homepage": "https://www.drupal.org/user/436244"
  2443. }
  2444. ],
  2445. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2446. "homepage": "https://www.drupal.org/project/config_filter",
  2447. "keywords": [
  2448. "Drupal",
  2449. "configuration",
  2450. "configuration management"
  2451. ],
  2452. "support": {
  2453. "source": "https://git.drupalcode.org/project/config_filter",
  2454. "issues": "https://www.drupal.org/project/issues/config_filter",
  2455. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2456. }
  2457. },
  2458. {
  2459. "name": "drupal/config_ignore",
  2460. "version": "3.3.0",
  2461. "source": {
  2462. "type": "git",
  2463. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2464. "reference": "8.x-3.3"
  2465. },
  2466. "dist": {
  2467. "type": "zip",
  2468. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-3.3.zip",
  2469. "reference": "8.x-3.3",
  2470. "shasum": "4446811ecb023820a57c227d35c034e0d4363a70"
  2471. },
  2472. "require": {
  2473. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2474. },
  2475. "require-dev": {
  2476. "drupal/config_filter": "^1.8||^2.2",
  2477. "drush/drush": "^10 || ^11 || ^12"
  2478. },
  2479. "type": "drupal-module",
  2480. "extra": {
  2481. "drupal": {
  2482. "version": "8.x-3.3",
  2483. "datestamp": "1713299496",
  2484. "security-coverage": {
  2485. "status": "covered",
  2486. "message": "Covered by Drupal's security advisory policy"
  2487. }
  2488. }
  2489. },
  2490. "notification-url": "https://packages.drupal.org/8/downloads",
  2491. "license": [
  2492. "GPL-2.0-or-later"
  2493. ],
  2494. "authors": [
  2495. {
  2496. "name": "Tommy Lynge Jørgensen",
  2497. "homepage": "https://www.drupal.org/u/tlyngej",
  2498. "email": "tlyngej@gmail.com",
  2499. "role": "Maintainer"
  2500. },
  2501. {
  2502. "name": "Fabian Bircher",
  2503. "homepage": "https://www.drupal.org/u/bircher",
  2504. "role": "Maintainer"
  2505. },
  2506. {
  2507. "name": "tlyngej",
  2508. "homepage": "https://www.drupal.org/user/413139"
  2509. }
  2510. ],
  2511. "description": "Ignore certain configuration during import and export.",
  2512. "homepage": "http://drupal.org/project/config_ignore",
  2513. "support": {
  2514. "source": "https://git.drupalcode.org/project/config_ignore",
  2515. "issues": "http://drupal.org/project/config_ignore"
  2516. }
  2517. },
  2518. {
  2519. "name": "drupal/config_update",
  2520. "version": "2.0.0-alpha4",
  2521. "source": {
  2522. "type": "git",
  2523. "url": "https://git.drupalcode.org/project/config_update.git",
  2524. "reference": "2.0.0-alpha4"
  2525. },
  2526. "dist": {
  2527. "type": "zip",
  2528. "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha4.zip",
  2529. "reference": "2.0.0-alpha4",
  2530. "shasum": "d8ea528b0b3e24918356bb72bef61408f650aa8e"
  2531. },
  2532. "require": {
  2533. "drupal/core": "^9.4 || ^10 || ^11"
  2534. },
  2535. "type": "drupal-module",
  2536. "extra": {
  2537. "drupal": {
  2538. "version": "2.0.0-alpha4",
  2539. "datestamp": "1724596931",
  2540. "security-coverage": {
  2541. "status": "not-covered",
  2542. "message": "Alpha releases are not covered by Drupal security advisories."
  2543. }
  2544. }
  2545. },
  2546. "notification-url": "https://packages.drupal.org/8/downloads",
  2547. "license": [
  2548. "GPL-2.0-or-later"
  2549. ],
  2550. "authors": [
  2551. {
  2552. "name": "codebymikey",
  2553. "homepage": "https://www.drupal.org/user/3573206"
  2554. },
  2555. {
  2556. "name": "pasqualle",
  2557. "homepage": "https://www.drupal.org/user/80733"
  2558. },
  2559. {
  2560. "name": "vishalkhode",
  2561. "homepage": "https://www.drupal.org/user/2439156"
  2562. }
  2563. ],
  2564. "description": "Provides basic revert and update functionality for other modules.",
  2565. "homepage": "https://www.drupal.org/project/config_update",
  2566. "support": {
  2567. "source": "https://git.drupalcode.org/project/config_update"
  2568. }
  2569. },
  2570. {
  2571. "name": "drupal/context",
  2572. "version": "5.0.0-rc1",
  2573. "source": {
  2574. "type": "git",
  2575. "url": "https://git.drupalcode.org/project/context.git",
  2576. "reference": "5.0.0-rc1"
  2577. },
  2578. "dist": {
  2579. "type": "zip",
  2580. "url": "https://ftp.drupal.org/files/projects/context-5.0.0-rc1.zip",
  2581. "reference": "5.0.0-rc1",
  2582. "shasum": "ae1549bc5e5c75c0c6799b7b737d7391cfc5be73"
  2583. },
  2584. "require": {
  2585. "drupal/core": "^9.3 || ^10"
  2586. },
  2587. "type": "drupal-module",
  2588. "extra": {
  2589. "drupal": {
  2590. "version": "5.0.0-rc1",
  2591. "datestamp": "1677054769",
  2592. "security-coverage": {
  2593. "status": "not-covered",
  2594. "message": "RC releases are not covered by Drupal security advisories."
  2595. }
  2596. }
  2597. },
  2598. "notification-url": "https://packages.drupal.org/8/downloads",
  2599. "license": [
  2600. "MIT"
  2601. ],
  2602. "authors": [
  2603. {
  2604. "name": "Christoffer Palm",
  2605. "homepage": "http://www.oddhill.se/",
  2606. "email": "christoffer.palm@oddhill.se",
  2607. "role": "Developer"
  2608. },
  2609. {
  2610. "name": "boshtian",
  2611. "homepage": "https://www.drupal.org/user/1773456"
  2612. },
  2613. {
  2614. "name": "colan",
  2615. "homepage": "https://www.drupal.org/user/58704"
  2616. },
  2617. {
  2618. "name": "emanaton",
  2619. "homepage": "https://www.drupal.org/user/120853"
  2620. },
  2621. {
  2622. "name": "febbraro",
  2623. "homepage": "https://www.drupal.org/user/43670"
  2624. },
  2625. {
  2626. "name": "fizk",
  2627. "homepage": "https://www.drupal.org/user/473174"
  2628. },
  2629. {
  2630. "name": "hass",
  2631. "homepage": "https://www.drupal.org/user/85918"
  2632. },
  2633. {
  2634. "name": "hefox",
  2635. "homepage": "https://www.drupal.org/user/426416"
  2636. },
  2637. {
  2638. "name": "jmiccolis",
  2639. "homepage": "https://www.drupal.org/user/31731"
  2640. },
  2641. {
  2642. "name": "Kristen Pol",
  2643. "homepage": "https://www.drupal.org/user/8389"
  2644. },
  2645. {
  2646. "name": "nedjo",
  2647. "homepage": "https://www.drupal.org/user/4481"
  2648. },
  2649. {
  2650. "name": "NormySan",
  2651. "homepage": "https://www.drupal.org/user/112352"
  2652. },
  2653. {
  2654. "name": "patricksettle",
  2655. "homepage": "https://www.drupal.org/user/26618"
  2656. },
  2657. {
  2658. "name": "paulocs",
  2659. "homepage": "https://www.drupal.org/user/3640109"
  2660. },
  2661. {
  2662. "name": "Steven Jones",
  2663. "homepage": "https://www.drupal.org/user/99644"
  2664. },
  2665. {
  2666. "name": "tekante",
  2667. "homepage": "https://www.drupal.org/user/640024"
  2668. },
  2669. {
  2670. "name": "yhahn",
  2671. "homepage": "https://www.drupal.org/user/264833"
  2672. }
  2673. ],
  2674. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2675. "homepage": "https://github.com/oddhill/context",
  2676. "keywords": [
  2677. "Drupal",
  2678. "block",
  2679. "conditions",
  2680. "context",
  2681. "visibility"
  2682. ],
  2683. "support": {
  2684. "source": "https://github.com/oddhill/context",
  2685. "issues": "https://github.com/oddhill/context/issues",
  2686. "docs": "https://github.com/oddhill/context"
  2687. }
  2688. },
  2689. {
  2690. "name": "drupal/core",
  2691. "version": "9.5.11",
  2692. "source": {
  2693. "type": "git",
  2694. "url": "https://github.com/drupal/core.git",
  2695. "reference": "8afcb233c2a71501b35fed2713167c37831d5c19"
  2696. },
  2697. "dist": {
  2698. "type": "zip",
  2699. "url": "https://api.github.com/repos/drupal/core/zipball/8afcb233c2a71501b35fed2713167c37831d5c19",
  2700. "reference": "8afcb233c2a71501b35fed2713167c37831d5c19",
  2701. "shasum": ""
  2702. },
  2703. "require": {
  2704. "asm89/stack-cors": "^1.3",
  2705. "composer/semver": "^3.3",
  2706. "doctrine/annotations": "^1.13",
  2707. "doctrine/reflection": "^1.2",
  2708. "egulias/email-validator": "^2.1.22|^3.2",
  2709. "ext-date": "*",
  2710. "ext-dom": "*",
  2711. "ext-filter": "*",
  2712. "ext-gd": "*",
  2713. "ext-hash": "*",
  2714. "ext-json": "*",
  2715. "ext-pcre": "*",
  2716. "ext-pdo": "*",
  2717. "ext-session": "*",
  2718. "ext-simplexml": "*",
  2719. "ext-spl": "*",
  2720. "ext-tokenizer": "*",
  2721. "ext-xml": "*",
  2722. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  2723. "laminas/laminas-feed": "^2.17",
  2724. "longwave/laminas-diactoros": "^2.14",
  2725. "masterminds/html5": "^2.7",
  2726. "pear/archive_tar": "^1.4.14",
  2727. "php": ">=7.3.0",
  2728. "psr/log": "^1.1",
  2729. "stack/builder": "^1.0",
  2730. "symfony-cmf/routing": "^2.3",
  2731. "symfony/console": "^4.4",
  2732. "symfony/dependency-injection": "^4.4",
  2733. "symfony/event-dispatcher": "^4.4",
  2734. "symfony/http-foundation": "^4.4.7",
  2735. "symfony/http-kernel": "^4.4",
  2736. "symfony/mime": "^5.4",
  2737. "symfony/polyfill-iconv": "^1.26",
  2738. "symfony/polyfill-php80": "^1.26",
  2739. "symfony/process": "^4.4",
  2740. "symfony/psr-http-message-bridge": "^2.1",
  2741. "symfony/routing": "^4.4",
  2742. "symfony/serializer": "^4.4",
  2743. "symfony/translation": "^4.4",
  2744. "symfony/validator": "^4.4",
  2745. "symfony/yaml": "^4.4.19",
  2746. "twig/twig": "^2.15.3",
  2747. "typo3/phar-stream-wrapper": "^3.1.3"
  2748. },
  2749. "conflict": {
  2750. "drush/drush": "<8.1.10",
  2751. "symfony/http-foundation": "4.4.42"
  2752. },
  2753. "replace": {
  2754. "drupal/core-annotation": "self.version",
  2755. "drupal/core-assertion": "self.version",
  2756. "drupal/core-bridge": "self.version",
  2757. "drupal/core-class-finder": "self.version",
  2758. "drupal/core-datetime": "self.version",
  2759. "drupal/core-dependency-injection": "self.version",
  2760. "drupal/core-diff": "self.version",
  2761. "drupal/core-discovery": "self.version",
  2762. "drupal/core-event-dispatcher": "self.version",
  2763. "drupal/core-file-cache": "self.version",
  2764. "drupal/core-file-security": "self.version",
  2765. "drupal/core-filesystem": "self.version",
  2766. "drupal/core-front-matter": "self.version",
  2767. "drupal/core-gettext": "self.version",
  2768. "drupal/core-graph": "self.version",
  2769. "drupal/core-http-foundation": "self.version",
  2770. "drupal/core-php-storage": "self.version",
  2771. "drupal/core-plugin": "self.version",
  2772. "drupal/core-proxy-builder": "self.version",
  2773. "drupal/core-render": "self.version",
  2774. "drupal/core-serialization": "self.version",
  2775. "drupal/core-transliteration": "self.version",
  2776. "drupal/core-utility": "self.version",
  2777. "drupal/core-uuid": "self.version",
  2778. "drupal/core-version": "self.version"
  2779. },
  2780. "type": "drupal-core",
  2781. "extra": {
  2782. "drupal-scaffold": {
  2783. "file-mapping": {
  2784. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  2785. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  2786. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  2787. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  2788. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  2789. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  2790. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  2791. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  2792. "[web-root]/index.php": "assets/scaffold/files/index.php",
  2793. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  2794. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  2795. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  2796. "[web-root]/update.php": "assets/scaffold/files/update.php",
  2797. "[web-root]/web.config": "assets/scaffold/files/web.config",
  2798. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  2799. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  2800. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  2801. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  2802. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  2803. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  2804. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  2805. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  2806. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  2807. }
  2808. }
  2809. },
  2810. "autoload": {
  2811. "files": [
  2812. "includes/bootstrap.inc",
  2813. "includes/guzzle_php81_shim.php"
  2814. ],
  2815. "psr-4": {
  2816. "Drupal\\Core\\": "lib/Drupal/Core",
  2817. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver",
  2818. "Drupal\\Component\\": "lib/Drupal/Component"
  2819. },
  2820. "classmap": [
  2821. "lib/Drupal.php",
  2822. "lib/Drupal/Component/DependencyInjection/Container.php",
  2823. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  2824. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  2825. "lib/Drupal/Component/Utility/Timer.php",
  2826. "lib/Drupal/Component/Utility/Unicode.php",
  2827. "lib/Drupal/Core/Cache/Cache.php",
  2828. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  2829. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  2830. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  2831. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  2832. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  2833. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  2834. "lib/Drupal/Core/Database/Connection.php",
  2835. "lib/Drupal/Core/Database/Database.php",
  2836. "lib/Drupal/Core/Database/Statement.php",
  2837. "lib/Drupal/Core/Database/StatementInterface.php",
  2838. "lib/Drupal/Core/DependencyInjection/Container.php",
  2839. "lib/Drupal/Core/DrupalKernel.php",
  2840. "lib/Drupal/Core/DrupalKernelInterface.php",
  2841. "lib/Drupal/Core/Http/InputBag.php",
  2842. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  2843. "lib/Drupal/Core/Site/Settings.php"
  2844. ]
  2845. },
  2846. "notification-url": "https://packagist.org/downloads/",
  2847. "license": [
  2848. "GPL-2.0-or-later"
  2849. ],
  2850. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  2851. "support": {
  2852. "source": "https://github.com/drupal/core/tree/9.5.11"
  2853. },
  2854. "time": "2023-09-19T17:58:28+00:00"
  2855. },
  2856. {
  2857. "name": "drupal/core-composer-scaffold",
  2858. "version": "9.5.11",
  2859. "source": {
  2860. "type": "git",
  2861. "url": "https://github.com/drupal/core-composer-scaffold.git",
  2862. "reference": "08da8e59c6f1bd0b1a58d18f8addc0d937bbacc7"
  2863. },
  2864. "dist": {
  2865. "type": "zip",
  2866. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/08da8e59c6f1bd0b1a58d18f8addc0d937bbacc7",
  2867. "reference": "08da8e59c6f1bd0b1a58d18f8addc0d937bbacc7",
  2868. "shasum": ""
  2869. },
  2870. "require": {
  2871. "composer-plugin-api": "^1 || ^2",
  2872. "php": ">=7.3.0"
  2873. },
  2874. "conflict": {
  2875. "drupal-composer/drupal-scaffold": "*"
  2876. },
  2877. "require-dev": {
  2878. "composer/composer": "^1.8@stable"
  2879. },
  2880. "type": "composer-plugin",
  2881. "extra": {
  2882. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  2883. "branch-alias": {
  2884. "dev-master": "1.0.x-dev"
  2885. }
  2886. },
  2887. "autoload": {
  2888. "psr-4": {
  2889. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  2890. }
  2891. },
  2892. "notification-url": "https://packagist.org/downloads/",
  2893. "license": [
  2894. "GPL-2.0-or-later"
  2895. ],
  2896. "description": "A flexible Composer project scaffold builder.",
  2897. "homepage": "https://www.drupal.org/project/drupal",
  2898. "keywords": [
  2899. "drupal"
  2900. ],
  2901. "support": {
  2902. "source": "https://github.com/drupal/core-composer-scaffold/tree/9.5.11"
  2903. },
  2904. "time": "2023-04-30T16:17:33+00:00"
  2905. },
  2906. {
  2907. "name": "drupal/core-project-message",
  2908. "version": "9.5.11",
  2909. "source": {
  2910. "type": "git",
  2911. "url": "https://github.com/drupal/core-project-message.git",
  2912. "reference": "5dfa0b75a057caf6542be67f61e7531c737db48c"
  2913. },
  2914. "dist": {
  2915. "type": "zip",
  2916. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/5dfa0b75a057caf6542be67f61e7531c737db48c",
  2917. "reference": "5dfa0b75a057caf6542be67f61e7531c737db48c",
  2918. "shasum": ""
  2919. },
  2920. "require": {
  2921. "composer-plugin-api": "^1.1 || ^2",
  2922. "php": ">=7.3.0"
  2923. },
  2924. "type": "composer-plugin",
  2925. "extra": {
  2926. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  2927. },
  2928. "autoload": {
  2929. "psr-4": {
  2930. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  2931. }
  2932. },
  2933. "notification-url": "https://packagist.org/downloads/",
  2934. "license": [
  2935. "GPL-2.0-or-later"
  2936. ],
  2937. "description": "Adds a message after Composer installation.",
  2938. "homepage": "https://www.drupal.org/project/drupal",
  2939. "keywords": [
  2940. "drupal"
  2941. ],
  2942. "support": {
  2943. "source": "https://github.com/drupal/core-project-message/tree/9.5.11"
  2944. },
  2945. "time": "2022-02-24T17:40:53+00:00"
  2946. },
  2947. {
  2948. "name": "drupal/core-recommended",
  2949. "version": "9.5.11",
  2950. "source": {
  2951. "type": "git",
  2952. "url": "https://github.com/drupal/core-recommended.git",
  2953. "reference": "af3521be5376e333ddcdbd31c5a169f16423b46f"
  2954. },
  2955. "dist": {
  2956. "type": "zip",
  2957. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/af3521be5376e333ddcdbd31c5a169f16423b46f",
  2958. "reference": "af3521be5376e333ddcdbd31c5a169f16423b46f",
  2959. "shasum": ""
  2960. },
  2961. "require": {
  2962. "asm89/stack-cors": "~1.3.0",
  2963. "composer/semver": "~3.3.2",
  2964. "doctrine/annotations": "~1.13.3",
  2965. "doctrine/lexer": "~1.2.3",
  2966. "doctrine/reflection": "~1.2.3",
  2967. "drupal/core": "9.5.11",
  2968. "egulias/email-validator": "~3.2.1",
  2969. "guzzlehttp/guzzle": "~6.5.8",
  2970. "guzzlehttp/promises": "~1.5.2",
  2971. "guzzlehttp/psr7": "~1.9.1",
  2972. "longwave/laminas-diactoros": "~2.14.2",
  2973. "masterminds/html5": "~2.7.6",
  2974. "pear/archive_tar": "~1.4.14",
  2975. "pear/console_getopt": "~v1.4.3",
  2976. "pear/pear-core-minimal": "~v1.10.11",
  2977. "pear/pear_exception": "~v1.0.2",
  2978. "psr/cache": "~1.0.1",
  2979. "psr/container": "~1.1.1",
  2980. "psr/http-factory": "~1.0.1",
  2981. "psr/http-message": "~1.0.1",
  2982. "psr/log": "~1.1.4",
  2983. "ralouphie/getallheaders": "~3.0.3",
  2984. "stack/builder": "~v1.0.6",
  2985. "symfony-cmf/routing": "~2.3.4",
  2986. "symfony/console": "~v4.4.49",
  2987. "symfony/debug": "~v4.4.44",
  2988. "symfony/dependency-injection": "~v4.4.49",
  2989. "symfony/deprecation-contracts": "~v2.5.2",
  2990. "symfony/error-handler": "~v4.4.44",
  2991. "symfony/event-dispatcher": "~v4.4.44",
  2992. "symfony/event-dispatcher-contracts": "~v1.1.13",
  2993. "symfony/http-client-contracts": "~v2.5.2",
  2994. "symfony/http-foundation": "~v4.4.49",
  2995. "symfony/http-kernel": "~v4.4.50",
  2996. "symfony/mime": "~v5.4.13",
  2997. "symfony/polyfill-ctype": "~v1.27.0",
  2998. "symfony/polyfill-iconv": "~v1.27.0",
  2999. "symfony/polyfill-intl-idn": "~v1.27.0",
  3000. "symfony/polyfill-intl-normalizer": "~v1.27.0",
  3001. "symfony/polyfill-mbstring": "~v1.27.0",
  3002. "symfony/polyfill-php80": "~v1.27.0",
  3003. "symfony/process": "~v4.4.44",
  3004. "symfony/psr-http-message-bridge": "~v2.1.4",
  3005. "symfony/routing": "~v4.4.44",
  3006. "symfony/serializer": "~v4.4.47",
  3007. "symfony/service-contracts": "~v2.5.2",
  3008. "symfony/translation": "~v4.4.47",
  3009. "symfony/translation-contracts": "~v2.5.2",
  3010. "symfony/validator": "~v4.4.48",
  3011. "symfony/var-dumper": "~v5.4.19",
  3012. "symfony/yaml": "~v4.4.45",
  3013. "twig/twig": "~v2.15.4",
  3014. "typo3/phar-stream-wrapper": "~v3.1.7"
  3015. },
  3016. "conflict": {
  3017. "webflo/drupal-core-strict": "*"
  3018. },
  3019. "type": "metapackage",
  3020. "notification-url": "https://packagist.org/downloads/",
  3021. "license": [
  3022. "GPL-2.0-or-later"
  3023. ],
  3024. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  3025. "support": {
  3026. "source": "https://github.com/drupal/core-recommended/tree/9.5.11"
  3027. },
  3028. "time": "2023-09-19T17:58:28+00:00"
  3029. },
  3030. {
  3031. "name": "drupal/ctools",
  3032. "version": "4.1.0",
  3033. "source": {
  3034. "type": "git",
  3035. "url": "https://git.drupalcode.org/project/ctools.git",
  3036. "reference": "4.1.0"
  3037. },
  3038. "dist": {
  3039. "type": "zip",
  3040. "url": "https://ftp.drupal.org/files/projects/ctools-4.1.0.zip",
  3041. "reference": "4.1.0",
  3042. "shasum": "69f5889cf557df9e55519390e6a95cfa31b67874"
  3043. },
  3044. "require": {
  3045. "drupal/core": "^9.5 || ^10 || ^11"
  3046. },
  3047. "type": "drupal-module",
  3048. "extra": {
  3049. "drupal": {
  3050. "version": "4.1.0",
  3051. "datestamp": "1718144949",
  3052. "security-coverage": {
  3053. "status": "covered",
  3054. "message": "Covered by Drupal's security advisory policy"
  3055. }
  3056. },
  3057. "branch-alias": {
  3058. "dev-8.x-3.x": "3.x-dev"
  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": "Kris Vanderwater (EclipseGc)",
  3068. "homepage": "https://www.drupal.org/u/eclipsegc",
  3069. "role": "Maintainer"
  3070. },
  3071. {
  3072. "name": "Jakob Perry (japerry)",
  3073. "homepage": "https://www.drupal.org/u/japerry",
  3074. "role": "Maintainer"
  3075. },
  3076. {
  3077. "name": "Tim Plunkett (tim.plunkett)",
  3078. "homepage": "https://www.drupal.org/u/timplunkett",
  3079. "role": "Maintainer"
  3080. },
  3081. {
  3082. "name": "James Gilliland (neclimdul)",
  3083. "homepage": "https://www.drupal.org/u/neclimdul",
  3084. "role": "Maintainer"
  3085. },
  3086. {
  3087. "name": "Daniel Wehner (dawehner)",
  3088. "homepage": "https://www.drupal.org/u/dawehner",
  3089. "role": "Maintainer"
  3090. },
  3091. {
  3092. "name": "joelpittet",
  3093. "homepage": "https://www.drupal.org/user/160302"
  3094. },
  3095. {
  3096. "name": "merlinofchaos",
  3097. "homepage": "https://www.drupal.org/user/26979"
  3098. },
  3099. {
  3100. "name": "neclimdul",
  3101. "homepage": "https://www.drupal.org/user/48673"
  3102. },
  3103. {
  3104. "name": "sdboyer",
  3105. "homepage": "https://www.drupal.org/user/146719"
  3106. },
  3107. {
  3108. "name": "sun",
  3109. "homepage": "https://www.drupal.org/user/54136"
  3110. },
  3111. {
  3112. "name": "tim.plunkett",
  3113. "homepage": "https://www.drupal.org/user/241634"
  3114. }
  3115. ],
  3116. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3117. "homepage": "https://www.drupal.org/project/ctools",
  3118. "support": {
  3119. "source": "https://git.drupalcode.org/project/ctools",
  3120. "issues": "https://www.drupal.org/project/issues/ctools"
  3121. }
  3122. },
  3123. {
  3124. "name": "drupal/date_range_formatter",
  3125. "version": "4.0.2",
  3126. "source": {
  3127. "type": "git",
  3128. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3129. "reference": "4.0.2"
  3130. },
  3131. "dist": {
  3132. "type": "zip",
  3133. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-4.0.2.zip",
  3134. "reference": "4.0.2",
  3135. "shasum": "0d953912148e384aed6a6cee64115faf170319c0"
  3136. },
  3137. "require": {
  3138. "drupal/core": "^8 || ^9 || ^10"
  3139. },
  3140. "type": "drupal-module",
  3141. "extra": {
  3142. "drupal": {
  3143. "version": "4.0.2",
  3144. "datestamp": "1703156621",
  3145. "security-coverage": {
  3146. "status": "covered",
  3147. "message": "Covered by Drupal's security advisory policy"
  3148. }
  3149. }
  3150. },
  3151. "notification-url": "https://packages.drupal.org/8/downloads",
  3152. "license": [
  3153. "GPL-2.0-or-later"
  3154. ],
  3155. "authors": [
  3156. {
  3157. "name": "maximpodorov",
  3158. "homepage": "https://www.drupal.org/user/515310"
  3159. },
  3160. {
  3161. "name": "sudishth",
  3162. "homepage": "https://www.drupal.org/user/1440562"
  3163. }
  3164. ],
  3165. "description": "Formats date ranges.",
  3166. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3167. "support": {
  3168. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3169. }
  3170. },
  3171. {
  3172. "name": "drupal/devel",
  3173. "version": "5.1.2",
  3174. "source": {
  3175. "type": "git",
  3176. "url": "https://git.drupalcode.org/project/devel.git",
  3177. "reference": "5.1.2"
  3178. },
  3179. "dist": {
  3180. "type": "zip",
  3181. "url": "https://ftp.drupal.org/files/projects/devel-5.1.2.zip",
  3182. "reference": "5.1.2",
  3183. "shasum": "9b35e38bf2043bf87f88585b3d9100f38da8f07f"
  3184. },
  3185. "require": {
  3186. "doctrine/common": "^2.7 || ^3.4",
  3187. "drupal/core": "^9 || ^10",
  3188. "php": ">=7.4",
  3189. "symfony/var-dumper": "^4 || ^5 || ^6"
  3190. },
  3191. "conflict": {
  3192. "kint-php/kint": "<3"
  3193. },
  3194. "require-dev": {
  3195. "drush/drush": "^11"
  3196. },
  3197. "suggest": {
  3198. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3199. },
  3200. "type": "drupal-module",
  3201. "extra": {
  3202. "drupal": {
  3203. "version": "5.1.2",
  3204. "datestamp": "1686161028",
  3205. "security-coverage": {
  3206. "status": "covered",
  3207. "message": "Covered by Drupal's security advisory policy"
  3208. }
  3209. },
  3210. "drush": {
  3211. "services": {
  3212. "drush.services.yml": "^9 || ^10 || ^11"
  3213. }
  3214. }
  3215. },
  3216. "notification-url": "https://packages.drupal.org/8/downloads",
  3217. "license": [
  3218. "GPL-2.0-or-later"
  3219. ],
  3220. "authors": [
  3221. {
  3222. "name": "moshe weitzman",
  3223. "homepage": "https://www.drupal.org/user/23"
  3224. }
  3225. ],
  3226. "description": "Various blocks, pages, and functions for developers.",
  3227. "homepage": "https://www.drupal.org/project/devel",
  3228. "support": {
  3229. "source": "https://gitlab.com/drupalspoons/devel",
  3230. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3231. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3232. }
  3233. },
  3234. {
  3235. "name": "drupal/domain",
  3236. "version": "2.0.0-beta1",
  3237. "source": {
  3238. "type": "git",
  3239. "url": "https://git.drupalcode.org/project/domain.git",
  3240. "reference": "2.0.0-beta1"
  3241. },
  3242. "dist": {
  3243. "type": "zip",
  3244. "url": "https://ftp.drupal.org/files/projects/domain-2.0.0-beta1.zip",
  3245. "reference": "2.0.0-beta1",
  3246. "shasum": "0edbc9d6c79cb0a61c08c656e9258c2450710664"
  3247. },
  3248. "require": {
  3249. "drupal/core": "^9 || ^10"
  3250. },
  3251. "require-dev": {
  3252. "drupal/domain_access": "*",
  3253. "drupal/domain_config": "*"
  3254. },
  3255. "type": "drupal-module",
  3256. "extra": {
  3257. "drupal": {
  3258. "version": "2.0.0-beta1",
  3259. "datestamp": "1686067462",
  3260. "security-coverage": {
  3261. "status": "not-covered",
  3262. "message": "Beta releases are not covered by Drupal security advisories."
  3263. }
  3264. }
  3265. },
  3266. "notification-url": "https://packages.drupal.org/8/downloads",
  3267. "license": [
  3268. "GPL-2.0-or-later"
  3269. ],
  3270. "authors": [
  3271. {
  3272. "name": "agentrickard",
  3273. "homepage": "https://www.drupal.org/user/20975"
  3274. },
  3275. {
  3276. "name": "nonsie",
  3277. "homepage": "https://www.drupal.org/user/29899"
  3278. },
  3279. {
  3280. "name": "webflo",
  3281. "homepage": "https://www.drupal.org/user/254778"
  3282. }
  3283. ],
  3284. "description": "Creates domain records within a Drupal installation.",
  3285. "homepage": "https://www.drupal.org/project/domain",
  3286. "support": {
  3287. "source": "https://git.drupalcode.org/project/domain"
  3288. }
  3289. },
  3290. {
  3291. "name": "drupal/domain_config",
  3292. "version": "1.0.0-beta8",
  3293. "require": {
  3294. "drupal/core": "^8 || ^9",
  3295. "drupal/domain": "*"
  3296. },
  3297. "type": "metapackage",
  3298. "extra": {
  3299. "drupal": {
  3300. "version": "8.x-1.0-beta8",
  3301. "datestamp": "1677511311",
  3302. "security-coverage": {
  3303. "status": "not-covered",
  3304. "message": "Beta releases are not covered by Drupal security advisories."
  3305. }
  3306. }
  3307. },
  3308. "notification-url": "https://packages.drupal.org/8/downloads",
  3309. "license": [
  3310. "GPL-2.0-or-later"
  3311. ],
  3312. "authors": [
  3313. {
  3314. "name": "agentrickard",
  3315. "homepage": "https://www.drupal.org/user/20975"
  3316. },
  3317. {
  3318. "name": "nonsie",
  3319. "homepage": "https://www.drupal.org/user/29899"
  3320. },
  3321. {
  3322. "name": "webflo",
  3323. "homepage": "https://www.drupal.org/user/254778"
  3324. }
  3325. ],
  3326. "description": "Allows domain specific configuration.",
  3327. "homepage": "https://www.drupal.org/project/domain",
  3328. "support": {
  3329. "source": "https://git.drupalcode.org/project/domain"
  3330. }
  3331. },
  3332. {
  3333. "name": "drupal/domain_site_settings",
  3334. "version": "1.6.0",
  3335. "source": {
  3336. "type": "git",
  3337. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  3338. "reference": "8.x-1.6"
  3339. },
  3340. "dist": {
  3341. "type": "zip",
  3342. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.6.zip",
  3343. "reference": "8.x-1.6",
  3344. "shasum": "d0f89411c5dd934a63a1a5991fbc0f76c1515cb2"
  3345. },
  3346. "require": {
  3347. "drupal/core": "^8.8 || ^9 || ^10 || ^11",
  3348. "drupal/domain": "^1.0 || ^2.0",
  3349. "drupal/domain_config": "*"
  3350. },
  3351. "type": "drupal-module",
  3352. "extra": {
  3353. "drupal": {
  3354. "version": "8.x-1.6",
  3355. "datestamp": "1726238712",
  3356. "security-coverage": {
  3357. "status": "covered",
  3358. "message": "Covered by Drupal's security advisory policy"
  3359. }
  3360. }
  3361. },
  3362. "notification-url": "https://packages.drupal.org/8/downloads",
  3363. "license": [
  3364. "GPL-2.0+"
  3365. ],
  3366. "authors": [
  3367. {
  3368. "name": "aloknarwaria",
  3369. "homepage": "https://www.drupal.org/user/906640"
  3370. },
  3371. {
  3372. "name": "jeroent",
  3373. "homepage": "https://www.drupal.org/user/2228934"
  3374. },
  3375. {
  3376. "name": "malaynayak",
  3377. "homepage": "https://www.drupal.org/user/3529755"
  3378. }
  3379. ],
  3380. "description": "Basic Site Setting for Domains.",
  3381. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3382. "keywords": [
  3383. "Drupal"
  3384. ],
  3385. "support": {
  3386. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3387. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3388. }
  3389. },
  3390. {
  3391. "name": "drupal/email_registration",
  3392. "version": "1.4.0",
  3393. "source": {
  3394. "type": "git",
  3395. "url": "https://git.drupalcode.org/project/email_registration.git",
  3396. "reference": "8.x-1.4"
  3397. },
  3398. "dist": {
  3399. "type": "zip",
  3400. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.4.zip",
  3401. "reference": "8.x-1.4",
  3402. "shasum": "fe7a91b858a98533fc1d7550b0917fc80523f186"
  3403. },
  3404. "require": {
  3405. "drupal/core": "^9.1 || ^10"
  3406. },
  3407. "conflict": {
  3408. "drupal/commerce": "<2.12"
  3409. },
  3410. "require-dev": {
  3411. "drupal/commerce": "^2.0",
  3412. "drupal/token": "*"
  3413. },
  3414. "type": "drupal-module",
  3415. "extra": {
  3416. "drupal": {
  3417. "version": "8.x-1.4",
  3418. "datestamp": "1700548925",
  3419. "security-coverage": {
  3420. "status": "covered",
  3421. "message": "Covered by Drupal's security advisory policy"
  3422. }
  3423. }
  3424. },
  3425. "notification-url": "https://packages.drupal.org/8/downloads",
  3426. "license": [
  3427. "GPL-2.0-or-later"
  3428. ],
  3429. "authors": [
  3430. {
  3431. "name": "Greg Knaddison (greggles)",
  3432. "homepage": "https://www.drupal.org/u/greggles",
  3433. "role": "Maintainer"
  3434. },
  3435. {
  3436. "name": "Andrey Postnikov (andypost)",
  3437. "homepage": "https://www.drupal.org/u/andypost",
  3438. "role": "Maintainer"
  3439. },
  3440. {
  3441. "name": "Chris Herberte",
  3442. "homepage": "https://www.drupal.org/u/chris-herberte",
  3443. "role": "Maintainer"
  3444. },
  3445. {
  3446. "name": "Moshe Weitzman (moshe weitzman)",
  3447. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3448. "role": "Maintainer"
  3449. },
  3450. {
  3451. "name": "Grevil",
  3452. "homepage": "https://www.drupal.org/user/3668491"
  3453. },
  3454. {
  3455. "name": "moshe weitzman",
  3456. "homepage": "https://www.drupal.org/user/23"
  3457. }
  3458. ],
  3459. "description": "Allows users to register with an email address as their username.",
  3460. "homepage": "https://www.drupal.org/project/email_registration",
  3461. "support": {
  3462. "source": "https://git.drupalcode.org/project/email_registration",
  3463. "issues": "http://drupal.org/project/issues/email_registration"
  3464. }
  3465. },
  3466. {
  3467. "name": "drupal/entity",
  3468. "version": "1.3.0",
  3469. "source": {
  3470. "type": "git",
  3471. "url": "https://git.drupalcode.org/project/entity.git",
  3472. "reference": "8.x-1.3"
  3473. },
  3474. "dist": {
  3475. "type": "zip",
  3476. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.3.zip",
  3477. "reference": "8.x-1.3",
  3478. "shasum": "9515e28a70448d369adf4199d08a01a5ab75792d"
  3479. },
  3480. "require": {
  3481. "drupal/core": "^8.8.2 || ^9"
  3482. },
  3483. "type": "drupal-module",
  3484. "extra": {
  3485. "drupal": {
  3486. "version": "8.x-1.3",
  3487. "datestamp": "1646324539",
  3488. "security-coverage": {
  3489. "status": "covered",
  3490. "message": "Covered by Drupal's security advisory policy"
  3491. }
  3492. }
  3493. },
  3494. "notification-url": "https://packages.drupal.org/8/downloads",
  3495. "license": [
  3496. "GPL-2.0-or-later"
  3497. ],
  3498. "authors": [
  3499. {
  3500. "name": "berdir",
  3501. "homepage": "https://www.drupal.org/user/214652"
  3502. },
  3503. {
  3504. "name": "bojanz",
  3505. "homepage": "https://www.drupal.org/user/86106"
  3506. },
  3507. {
  3508. "name": "dawehner",
  3509. "homepage": "https://www.drupal.org/user/99340"
  3510. },
  3511. {
  3512. "name": "dixon_",
  3513. "homepage": "https://www.drupal.org/user/239911"
  3514. },
  3515. {
  3516. "name": "fago",
  3517. "homepage": "https://www.drupal.org/user/16747"
  3518. },
  3519. {
  3520. "name": "mglaman",
  3521. "homepage": "https://www.drupal.org/user/2416470"
  3522. },
  3523. {
  3524. "name": "TR",
  3525. "homepage": "https://www.drupal.org/user/202830"
  3526. }
  3527. ],
  3528. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3529. "homepage": "https://www.drupal.org/project/entity",
  3530. "support": {
  3531. "source": "https://git.drupalcode.org/project/entity",
  3532. "issues": "https://www.drupal.org/project/issues/entity"
  3533. }
  3534. },
  3535. {
  3536. "name": "drupal/field_group",
  3537. "version": "3.6.0",
  3538. "source": {
  3539. "type": "git",
  3540. "url": "https://git.drupalcode.org/project/field_group.git",
  3541. "reference": "8.x-3.6"
  3542. },
  3543. "dist": {
  3544. "type": "zip",
  3545. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.6.zip",
  3546. "reference": "8.x-3.6",
  3547. "shasum": "427c0a65dc1936e69e60c120776056cfe5b43e86"
  3548. },
  3549. "require": {
  3550. "drupal/core": "^9.2 || ^10 || ^11"
  3551. },
  3552. "require-dev": {
  3553. "drupal/jquery_ui_accordion": "*"
  3554. },
  3555. "type": "drupal-module",
  3556. "extra": {
  3557. "drupal": {
  3558. "version": "8.x-3.6",
  3559. "datestamp": "1722672510",
  3560. "security-coverage": {
  3561. "status": "covered",
  3562. "message": "Covered by Drupal's security advisory policy"
  3563. }
  3564. }
  3565. },
  3566. "notification-url": "https://packages.drupal.org/8/downloads",
  3567. "license": [
  3568. "GPL-2.0-or-later"
  3569. ],
  3570. "authors": [
  3571. {
  3572. "name": "anybody",
  3573. "homepage": "https://www.drupal.org/user/291091"
  3574. },
  3575. {
  3576. "name": "grevil",
  3577. "homepage": "https://www.drupal.org/user/3668491"
  3578. },
  3579. {
  3580. "name": "hydra",
  3581. "homepage": "https://www.drupal.org/user/647364"
  3582. },
  3583. {
  3584. "name": "joevagyok",
  3585. "homepage": "https://www.drupal.org/user/2876343"
  3586. },
  3587. {
  3588. "name": "jyve",
  3589. "homepage": "https://www.drupal.org/user/591438"
  3590. },
  3591. {
  3592. "name": "nils.destoop",
  3593. "homepage": "https://www.drupal.org/user/361625"
  3594. },
  3595. {
  3596. "name": "Stalski",
  3597. "homepage": "https://www.drupal.org/user/322618"
  3598. },
  3599. {
  3600. "name": "swentel",
  3601. "homepage": "https://www.drupal.org/user/107403"
  3602. }
  3603. ],
  3604. "description": "Provides the field_group module.",
  3605. "homepage": "https://www.drupal.org/project/field_group",
  3606. "support": {
  3607. "source": "https://git.drupalcode.org/project/field_group",
  3608. "issues": "https://www.drupal.org/project/issues/field_group"
  3609. }
  3610. },
  3611. {
  3612. "name": "drupal/filefield_sources",
  3613. "version": "1.0.0-alpha5",
  3614. "source": {
  3615. "type": "git",
  3616. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  3617. "reference": "8.x-1.0-alpha5"
  3618. },
  3619. "dist": {
  3620. "type": "zip",
  3621. "url": "https://ftp.drupal.org/files/projects/filefield_sources-8.x-1.0-alpha5.zip",
  3622. "reference": "8.x-1.0-alpha5",
  3623. "shasum": "e2438610bf829a82c6415f88f708b2dc73d91c49"
  3624. },
  3625. "require": {
  3626. "drupal/core": "^8 || ^9"
  3627. },
  3628. "require-dev": {
  3629. "drupal/imce": "^2.3"
  3630. },
  3631. "type": "drupal-module",
  3632. "extra": {
  3633. "drupal": {
  3634. "version": "8.x-1.0-alpha5",
  3635. "datestamp": "1642555269",
  3636. "security-coverage": {
  3637. "status": "not-covered",
  3638. "message": "Alpha releases are not covered by Drupal security advisories."
  3639. }
  3640. }
  3641. },
  3642. "notification-url": "https://packages.drupal.org/8/downloads",
  3643. "license": [
  3644. "GPL-2.0-or-later"
  3645. ],
  3646. "authors": [
  3647. {
  3648. "name": "Nate Lampton (quicksketch)",
  3649. "homepage": "https://www.drupal.org/u/quicksketch",
  3650. "role": "Maintainer"
  3651. },
  3652. {
  3653. "name": "Andrey Khromyshev (profak)",
  3654. "homepage": "https://www.drupal.org/u/profak",
  3655. "role": "Maintainer"
  3656. },
  3657. {
  3658. "name": "David Valdez (gnuget)",
  3659. "homepage": "https://www.drupal.org/u/gnuget",
  3660. "role": "Maintainer"
  3661. },
  3662. {
  3663. "name": "quicksketch",
  3664. "homepage": "https://www.drupal.org/user/35821"
  3665. }
  3666. ],
  3667. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  3668. "homepage": "https://www.drupal.org/project/filefield_sources",
  3669. "support": {
  3670. "source": "https://git.drupalcode.org/project/filefield_sources",
  3671. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  3672. "irc": "irc://irc.freenode.org/drupal-contribute"
  3673. }
  3674. },
  3675. {
  3676. "name": "drupal/filter_perms",
  3677. "version": "1.0.0-alpha1",
  3678. "source": {
  3679. "type": "git",
  3680. "url": "https://git.drupalcode.org/project/filter_perms.git",
  3681. "reference": "8.x-1.0-alpha1"
  3682. },
  3683. "dist": {
  3684. "type": "zip",
  3685. "url": "https://ftp.drupal.org/files/projects/filter_perms-8.x-1.0-alpha1.zip",
  3686. "reference": "8.x-1.0-alpha1",
  3687. "shasum": "5a4bf4332f97b238864191042198f9f9a85cab26"
  3688. },
  3689. "require": {
  3690. "drupal/core": "^8 || ^9"
  3691. },
  3692. "type": "drupal-module",
  3693. "extra": {
  3694. "drupal": {
  3695. "version": "8.x-1.0-alpha1",
  3696. "datestamp": "1595202904",
  3697. "security-coverage": {
  3698. "status": "not-covered",
  3699. "message": "Alpha releases are not covered by Drupal security advisories."
  3700. }
  3701. }
  3702. },
  3703. "notification-url": "https://packages.drupal.org/8/downloads",
  3704. "license": [
  3705. "GPL-2.0-or-later"
  3706. ],
  3707. "authors": [
  3708. {
  3709. "name": "cYu",
  3710. "homepage": "https://www.drupal.org/user/202205"
  3711. },
  3712. {
  3713. "name": "deekayen",
  3714. "homepage": "https://www.drupal.org/user/972"
  3715. },
  3716. {
  3717. "name": "ivavictoria",
  3718. "homepage": "https://www.drupal.org/user/3061533"
  3719. },
  3720. {
  3721. "name": "justcaldwell",
  3722. "homepage": "https://www.drupal.org/user/290069"
  3723. },
  3724. {
  3725. "name": "mgbellaire",
  3726. "homepage": "https://www.drupal.org/user/1831932"
  3727. },
  3728. {
  3729. "name": "willzyx",
  3730. "homepage": "https://www.drupal.org/user/1043862"
  3731. }
  3732. ],
  3733. "description": "Provides role and module filters to simplify the user permissions page.",
  3734. "homepage": "https://www.drupal.org/project/filter_perms",
  3735. "support": {
  3736. "source": "https://git.drupalcode.org/project/filter_perms"
  3737. }
  3738. },
  3739. {
  3740. "name": "drupal/honeypot",
  3741. "version": "2.1.4",
  3742. "source": {
  3743. "type": "git",
  3744. "url": "https://git.drupalcode.org/project/honeypot.git",
  3745. "reference": "2.1.4"
  3746. },
  3747. "dist": {
  3748. "type": "zip",
  3749. "url": "https://ftp.drupal.org/files/projects/honeypot-2.1.4.zip",
  3750. "reference": "2.1.4",
  3751. "shasum": "adf76c3520c0e458177dbe6d638aa2d6ae40a95b"
  3752. },
  3753. "require": {
  3754. "drupal/core": "^9.2 || ^10"
  3755. },
  3756. "require-dev": {
  3757. "drupal/rules": "^3.x-dev"
  3758. },
  3759. "type": "drupal-module",
  3760. "extra": {
  3761. "drupal": {
  3762. "version": "2.1.4",
  3763. "datestamp": "1723489062",
  3764. "security-coverage": {
  3765. "status": "covered",
  3766. "message": "Covered by Drupal's security advisory policy"
  3767. }
  3768. }
  3769. },
  3770. "notification-url": "https://packages.drupal.org/8/downloads",
  3771. "license": [
  3772. "GPL-2.0-or-later"
  3773. ],
  3774. "authors": [
  3775. {
  3776. "name": "Jeff Geerling",
  3777. "homepage": "https://www.drupal.org/user/389011",
  3778. "email": "geerlingguy@mac.com"
  3779. },
  3780. {
  3781. "name": "Manuel Garcia",
  3782. "homepage": "https://www.drupal.org/user/213194"
  3783. },
  3784. {
  3785. "name": "tr",
  3786. "homepage": "https://www.drupal.org/user/202830"
  3787. },
  3788. {
  3789. "name": "vijaycs85",
  3790. "homepage": "https://www.drupal.org/user/93488"
  3791. }
  3792. ],
  3793. "description": "Mitigates spam form submissions using the honeypot method.",
  3794. "homepage": "https://www.drupal.org/project/honeypot",
  3795. "keywords": [
  3796. "deterrent",
  3797. "form",
  3798. "honeypot",
  3799. "honeytrap",
  3800. "php",
  3801. "spam"
  3802. ],
  3803. "support": {
  3804. "source": "https://git.drupalcode.org/project/honeypot",
  3805. "issues": "https://www.drupal.org/project/issues/honeypot"
  3806. }
  3807. },
  3808. {
  3809. "name": "drupal/jquery_ui",
  3810. "version": "1.7.0",
  3811. "source": {
  3812. "type": "git",
  3813. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  3814. "reference": "8.x-1.7"
  3815. },
  3816. "dist": {
  3817. "type": "zip",
  3818. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.7.zip",
  3819. "reference": "8.x-1.7",
  3820. "shasum": "3f893843ec30fed18fa1b0cb326e51880b0cb686"
  3821. },
  3822. "require": {
  3823. "drupal/core": "^9.2 || ^10 || ^11"
  3824. },
  3825. "type": "drupal-module",
  3826. "extra": {
  3827. "drupal": {
  3828. "version": "8.x-1.7",
  3829. "datestamp": "1717002098",
  3830. "security-coverage": {
  3831. "status": "covered",
  3832. "message": "Covered by Drupal's security advisory policy"
  3833. }
  3834. }
  3835. },
  3836. "notification-url": "https://packages.drupal.org/8/downloads",
  3837. "license": [
  3838. "GPL-2.0-or-later"
  3839. ],
  3840. "authors": [
  3841. {
  3842. "name": "bnjmnm",
  3843. "homepage": "https://www.drupal.org/user/2369194"
  3844. },
  3845. {
  3846. "name": "jjeff",
  3847. "homepage": "https://www.drupal.org/user/17190"
  3848. },
  3849. {
  3850. "name": "lauriii",
  3851. "homepage": "https://www.drupal.org/user/1078742"
  3852. },
  3853. {
  3854. "name": "litwol",
  3855. "homepage": "https://www.drupal.org/user/78134"
  3856. },
  3857. {
  3858. "name": "mfb",
  3859. "homepage": "https://www.drupal.org/user/12302"
  3860. },
  3861. {
  3862. "name": "mfer",
  3863. "homepage": "https://www.drupal.org/user/25701"
  3864. },
  3865. {
  3866. "name": "mikelutz",
  3867. "homepage": "https://www.drupal.org/user/2972409"
  3868. },
  3869. {
  3870. "name": "nod_",
  3871. "homepage": "https://www.drupal.org/user/598310"
  3872. },
  3873. {
  3874. "name": "phenaproxima",
  3875. "homepage": "https://www.drupal.org/user/205645"
  3876. },
  3877. {
  3878. "name": "RobLoach",
  3879. "homepage": "https://www.drupal.org/user/61114"
  3880. },
  3881. {
  3882. "name": "sun",
  3883. "homepage": "https://www.drupal.org/user/54136"
  3884. },
  3885. {
  3886. "name": "webchick",
  3887. "homepage": "https://www.drupal.org/user/24967"
  3888. },
  3889. {
  3890. "name": "Wim Leers",
  3891. "homepage": "https://www.drupal.org/user/99777"
  3892. },
  3893. {
  3894. "name": "zrpnr",
  3895. "homepage": "https://www.drupal.org/user/1448368"
  3896. }
  3897. ],
  3898. "description": "Provides jQuery UI library.",
  3899. "homepage": "https://www.drupal.org/project/jquery_ui",
  3900. "support": {
  3901. "source": "https://git.drupalcode.org/project/jquery_ui"
  3902. }
  3903. },
  3904. {
  3905. "name": "drupal/jquery_ui_draggable",
  3906. "version": "2.1.0",
  3907. "source": {
  3908. "type": "git",
  3909. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  3910. "reference": "2.1.0"
  3911. },
  3912. "dist": {
  3913. "type": "zip",
  3914. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.1.0.zip",
  3915. "reference": "2.1.0",
  3916. "shasum": "0d014cfff20993d8051efb8f6c9093a4fe5136f3"
  3917. },
  3918. "require": {
  3919. "drupal/core": "^9.2 || ^10 || ^11",
  3920. "drupal/jquery_ui": "^1.7"
  3921. },
  3922. "type": "drupal-module",
  3923. "extra": {
  3924. "drupal": {
  3925. "version": "2.1.0",
  3926. "datestamp": "1717015492",
  3927. "security-coverage": {
  3928. "status": "covered",
  3929. "message": "Covered by Drupal's security advisory policy"
  3930. }
  3931. }
  3932. },
  3933. "notification-url": "https://packages.drupal.org/8/downloads",
  3934. "license": [
  3935. "GPL-2.0-or-later"
  3936. ],
  3937. "authors": [
  3938. {
  3939. "name": "bnjmnm",
  3940. "homepage": "https://www.drupal.org/user/2369194"
  3941. },
  3942. {
  3943. "name": "lauriii",
  3944. "homepage": "https://www.drupal.org/user/1078742"
  3945. },
  3946. {
  3947. "name": "zrpnr",
  3948. "homepage": "https://www.drupal.org/user/1448368"
  3949. }
  3950. ],
  3951. "description": "Provides jQuery UI Draggable library.",
  3952. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  3953. "support": {
  3954. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  3955. }
  3956. },
  3957. {
  3958. "name": "drupal/jquery_ui_droppable",
  3959. "version": "2.1.0",
  3960. "source": {
  3961. "type": "git",
  3962. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  3963. "reference": "2.1.0"
  3964. },
  3965. "dist": {
  3966. "type": "zip",
  3967. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-2.1.0.zip",
  3968. "reference": "2.1.0",
  3969. "shasum": "4a254056d13d7f4208929142d1a37464404c0870"
  3970. },
  3971. "require": {
  3972. "drupal/core": "^9.2 || ^10 || ^11",
  3973. "drupal/jquery_ui": "^1.7",
  3974. "drupal/jquery_ui_draggable": "^2.1"
  3975. },
  3976. "type": "drupal-module",
  3977. "extra": {
  3978. "drupal": {
  3979. "version": "2.1.0",
  3980. "datestamp": "1717031391",
  3981. "security-coverage": {
  3982. "status": "covered",
  3983. "message": "Covered by Drupal's security advisory policy"
  3984. }
  3985. }
  3986. },
  3987. "notification-url": "https://packages.drupal.org/8/downloads",
  3988. "license": [
  3989. "GPL-2.0-or-later"
  3990. ],
  3991. "authors": [
  3992. {
  3993. "name": "bnjmnm",
  3994. "homepage": "https://www.drupal.org/user/2369194"
  3995. },
  3996. {
  3997. "name": "lauriii",
  3998. "homepage": "https://www.drupal.org/user/1078742"
  3999. },
  4000. {
  4001. "name": "zrpnr",
  4002. "homepage": "https://www.drupal.org/user/1448368"
  4003. }
  4004. ],
  4005. "description": "Provides jQuery UI Droppable library.",
  4006. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  4007. "support": {
  4008. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  4009. }
  4010. },
  4011. {
  4012. "name": "drupal/jquery_ui_resizable",
  4013. "version": "1.0.0",
  4014. "source": {
  4015. "type": "git",
  4016. "url": "https://git.drupalcode.org/project/jquery_ui_resizable.git",
  4017. "reference": "8.x-1.0"
  4018. },
  4019. "dist": {
  4020. "type": "zip",
  4021. "url": "https://ftp.drupal.org/files/projects/jquery_ui_resizable-8.x-1.0.zip",
  4022. "reference": "8.x-1.0",
  4023. "shasum": "f96d0937e1cc4191536aa8e46f713cfe36cf365a"
  4024. },
  4025. "require": {
  4026. "drupal/core": "^8 || ^9",
  4027. "drupal/jquery_ui": "*"
  4028. },
  4029. "type": "drupal-module",
  4030. "extra": {
  4031. "drupal": {
  4032. "version": "8.x-1.0",
  4033. "datestamp": "1607009468",
  4034. "security-coverage": {
  4035. "status": "covered",
  4036. "message": "Covered by Drupal's security advisory policy"
  4037. }
  4038. }
  4039. },
  4040. "notification-url": "https://packages.drupal.org/8/downloads",
  4041. "license": [
  4042. "GPL-2.0-or-later"
  4043. ],
  4044. "authors": [
  4045. {
  4046. "name": "bnjmnm",
  4047. "homepage": "https://www.drupal.org/user/2369194"
  4048. },
  4049. {
  4050. "name": "lauriii",
  4051. "homepage": "https://www.drupal.org/user/1078742"
  4052. },
  4053. {
  4054. "name": "nod_",
  4055. "homepage": "https://www.drupal.org/user/598310"
  4056. },
  4057. {
  4058. "name": "phenaproxima",
  4059. "homepage": "https://www.drupal.org/user/205645"
  4060. },
  4061. {
  4062. "name": "zrpnr",
  4063. "homepage": "https://www.drupal.org/user/1448368"
  4064. }
  4065. ],
  4066. "description": "Provides jQuery UI Resizable library.",
  4067. "homepage": "https://www.drupal.org/project/jquery_ui_resizable",
  4068. "support": {
  4069. "source": "https://git.drupalcode.org/project/jquery_ui_resizable"
  4070. }
  4071. },
  4072. {
  4073. "name": "drupal/jquery_ui_sortable",
  4074. "version": "2.0.1",
  4075. "source": {
  4076. "type": "git",
  4077. "url": "https://git.drupalcode.org/project/jquery_ui_sortable.git",
  4078. "reference": "2.0.1"
  4079. },
  4080. "dist": {
  4081. "type": "zip",
  4082. "url": "https://ftp.drupal.org/files/projects/jquery_ui_sortable-2.0.1.zip",
  4083. "reference": "2.0.1",
  4084. "shasum": "4e244c03b2b8324193f685677da8847aa3609522"
  4085. },
  4086. "require": {
  4087. "drupal/core": "^9.2 || ^10",
  4088. "drupal/jquery_ui": "^1.5"
  4089. },
  4090. "type": "drupal-module",
  4091. "extra": {
  4092. "drupal": {
  4093. "version": "2.0.1",
  4094. "datestamp": "1694604335",
  4095. "security-coverage": {
  4096. "status": "covered",
  4097. "message": "Covered by Drupal's security advisory policy"
  4098. }
  4099. }
  4100. },
  4101. "notification-url": "https://packages.drupal.org/8/downloads",
  4102. "license": [
  4103. "GPL-2.0-or-later"
  4104. ],
  4105. "authors": [
  4106. {
  4107. "name": "bnjmnm",
  4108. "homepage": "https://www.drupal.org/user/2369194"
  4109. },
  4110. {
  4111. "name": "lauriii",
  4112. "homepage": "https://www.drupal.org/user/1078742"
  4113. },
  4114. {
  4115. "name": "zrpnr",
  4116. "homepage": "https://www.drupal.org/user/1448368"
  4117. }
  4118. ],
  4119. "description": "Provides jQuery UI Sortable library.",
  4120. "homepage": "https://www.drupal.org/project/jquery_ui_sortable",
  4121. "support": {
  4122. "source": "https://git.drupalcode.org/project/jquery_ui_sortable"
  4123. }
  4124. },
  4125. {
  4126. "name": "drupal/js_cookie",
  4127. "version": "1.0.1",
  4128. "source": {
  4129. "type": "git",
  4130. "url": "https://git.drupalcode.org/project/js_cookie.git",
  4131. "reference": "1.0.1"
  4132. },
  4133. "dist": {
  4134. "type": "zip",
  4135. "url": "https://ftp.drupal.org/files/projects/js_cookie-1.0.1.zip",
  4136. "reference": "1.0.1",
  4137. "shasum": "e010b3de64a0d57eef9c1773c4dd7e3d9bd9118c"
  4138. },
  4139. "require": {
  4140. "drupal/core": "^9 || ^10 || ^11"
  4141. },
  4142. "type": "drupal-module",
  4143. "extra": {
  4144. "drupal": {
  4145. "version": "1.0.1",
  4146. "datestamp": "1693951097",
  4147. "security-coverage": {
  4148. "status": "covered",
  4149. "message": "Covered by Drupal's security advisory policy"
  4150. }
  4151. }
  4152. },
  4153. "notification-url": "https://packages.drupal.org/8/downloads",
  4154. "license": [
  4155. "GPL-2.0-or-later"
  4156. ],
  4157. "authors": [
  4158. {
  4159. "name": "Dave Reid",
  4160. "homepage": "https://www.drupal.org/user/53892"
  4161. }
  4162. ],
  4163. "description": "Provides the js-cookie library as a dependency.",
  4164. "homepage": "https://www.drupal.org/project/js_cookie",
  4165. "support": {
  4166. "source": "https://git.drupalcode.org/project/js_cookie"
  4167. }
  4168. },
  4169. {
  4170. "name": "drupal/linkit",
  4171. "version": "6.0.2",
  4172. "source": {
  4173. "type": "git",
  4174. "url": "https://git.drupalcode.org/project/linkit.git",
  4175. "reference": "6.0.2"
  4176. },
  4177. "dist": {
  4178. "type": "zip",
  4179. "url": "https://ftp.drupal.org/files/projects/linkit-6.0.2.zip",
  4180. "reference": "6.0.2",
  4181. "shasum": "b7d965d122403c0d1cd8b891db3ea56004026804"
  4182. },
  4183. "require": {
  4184. "drupal/core": "^9.4 || ^10.0.0"
  4185. },
  4186. "conflict": {
  4187. "drupal/core": ">=10.1"
  4188. },
  4189. "require-dev": {
  4190. "drupal/ckeditor": "*",
  4191. "drupal/imce": "*"
  4192. },
  4193. "type": "drupal-module",
  4194. "extra": {
  4195. "drupal": {
  4196. "version": "6.0.2",
  4197. "datestamp": "1696865395",
  4198. "security-coverage": {
  4199. "status": "covered",
  4200. "message": "Covered by Drupal's security advisory policy"
  4201. }
  4202. }
  4203. },
  4204. "notification-url": "https://packages.drupal.org/8/downloads",
  4205. "license": [
  4206. "GPL-2.0-or-later"
  4207. ],
  4208. "authors": [
  4209. {
  4210. "name": "Emil Stjerneman",
  4211. "homepage": "https://stjerneman.com",
  4212. "email": "emil@stjerneman.com",
  4213. "role": "Maintainer"
  4214. },
  4215. {
  4216. "name": "johnwebdev",
  4217. "homepage": "https://www.drupal.org/user/3331569"
  4218. },
  4219. {
  4220. "name": "mark_fullmer",
  4221. "homepage": "https://www.drupal.org/user/2612816"
  4222. }
  4223. ],
  4224. "description": "Linkit - Enriched linking experience",
  4225. "homepage": "http://drupal.org/project/linkit",
  4226. "support": {
  4227. "source": "http://cgit.drupalcode.org/linkit",
  4228. "issues": "http://drupal.org/project/linkit"
  4229. }
  4230. },
  4231. {
  4232. "name": "drupal/login_emailusername",
  4233. "version": "2.1.0",
  4234. "source": {
  4235. "type": "git",
  4236. "url": "https://git.drupalcode.org/project/login_emailusername.git",
  4237. "reference": "2.1.0"
  4238. },
  4239. "dist": {
  4240. "type": "zip",
  4241. "url": "https://ftp.drupal.org/files/projects/login_emailusername-2.1.0.zip",
  4242. "reference": "2.1.0",
  4243. "shasum": "5a3858d06e7d67110a6cd8eda38cbfeb350f115c"
  4244. },
  4245. "require": {
  4246. "drupal/core": "^8.8 || ^9 || ^10"
  4247. },
  4248. "type": "drupal-module",
  4249. "extra": {
  4250. "drupal": {
  4251. "version": "2.1.0",
  4252. "datestamp": "1677072401",
  4253. "security-coverage": {
  4254. "status": "covered",
  4255. "message": "Covered by Drupal's security advisory policy"
  4256. }
  4257. },
  4258. "branch-alias": {
  4259. "dev-8.x-1.x": "8.1.x-dev"
  4260. }
  4261. },
  4262. "notification-url": "https://packages.drupal.org/8/downloads",
  4263. "license": [
  4264. "GPL-2.0-or-later"
  4265. ],
  4266. "authors": [
  4267. {
  4268. "name": "See contributors",
  4269. "homepage": "https://www.drupal.org/node/2820429/committers",
  4270. "role": "contributor"
  4271. },
  4272. {
  4273. "name": "rjjakes",
  4274. "homepage": "https://www.drupal.org/user/3457245"
  4275. },
  4276. {
  4277. "name": "VladimirAus",
  4278. "homepage": "https://www.drupal.org/user/673120"
  4279. }
  4280. ],
  4281. "description": "Login with the email as username.",
  4282. "homepage": "https://drupal.org/project/login_emailusername",
  4283. "support": {
  4284. "source": "https://git.drupalcode.org/project/login_emailusername",
  4285. "issues": "https://drupal.org/project/issues/login_emailusername"
  4286. }
  4287. },
  4288. {
  4289. "name": "drupal/maillog",
  4290. "version": "1.0.0-beta1",
  4291. "source": {
  4292. "type": "git",
  4293. "url": "https://git.drupalcode.org/project/maillog.git",
  4294. "reference": "8.x-1.0-beta1"
  4295. },
  4296. "dist": {
  4297. "type": "zip",
  4298. "url": "https://ftp.drupal.org/files/projects/maillog-8.x-1.0-beta1.zip",
  4299. "reference": "8.x-1.0-beta1",
  4300. "shasum": "0af5fe6fcdc8053bd0a61561a2c69e69c2b1faf2"
  4301. },
  4302. "require": {
  4303. "drupal/core": "^8 || ^9"
  4304. },
  4305. "type": "drupal-module",
  4306. "extra": {
  4307. "drupal": {
  4308. "version": "8.x-1.0-beta1",
  4309. "datestamp": "1600800168",
  4310. "security-coverage": {
  4311. "status": "not-covered",
  4312. "message": "Beta releases are not covered by Drupal security advisories."
  4313. }
  4314. }
  4315. },
  4316. "notification-url": "https://packages.drupal.org/8/downloads",
  4317. "license": [
  4318. "GPL-2.0-or-later"
  4319. ],
  4320. "authors": [
  4321. {
  4322. "name": "berdir",
  4323. "homepage": "https://www.drupal.org/user/214652"
  4324. },
  4325. {
  4326. "name": "damienmckenna",
  4327. "homepage": "https://www.drupal.org/user/108450"
  4328. },
  4329. {
  4330. "name": "miro_dietiker",
  4331. "homepage": "https://www.drupal.org/user/227761"
  4332. },
  4333. {
  4334. "name": "pluess",
  4335. "homepage": "https://www.drupal.org/user/84659"
  4336. }
  4337. ],
  4338. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4339. "homepage": "https://www.drupal.org/project/maillog",
  4340. "support": {
  4341. "source": "https://git.drupalcode.org/project/maillog"
  4342. }
  4343. },
  4344. {
  4345. "name": "drupal/menu_admin_per_menu",
  4346. "version": "1.5.0",
  4347. "source": {
  4348. "type": "git",
  4349. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4350. "reference": "8.x-1.5"
  4351. },
  4352. "dist": {
  4353. "type": "zip",
  4354. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.5.zip",
  4355. "reference": "8.x-1.5",
  4356. "shasum": "ec8c7a4a064aa285dfb722dad264da9936fc81b6"
  4357. },
  4358. "require": {
  4359. "drupal/core": "^9 || ^10"
  4360. },
  4361. "type": "drupal-module",
  4362. "extra": {
  4363. "drupal": {
  4364. "version": "8.x-1.5",
  4365. "datestamp": "1660918821",
  4366. "security-coverage": {
  4367. "status": "covered",
  4368. "message": "Covered by Drupal's security advisory policy"
  4369. }
  4370. }
  4371. },
  4372. "notification-url": "https://packages.drupal.org/8/downloads",
  4373. "license": [
  4374. "GPL-2.0-or-later"
  4375. ],
  4376. "authors": [
  4377. {
  4378. "name": "anrikun",
  4379. "homepage": "https://www.drupal.org/user/410199"
  4380. },
  4381. {
  4382. "name": "jeroent",
  4383. "homepage": "https://www.drupal.org/user/2228934"
  4384. },
  4385. {
  4386. "name": "jonas139",
  4387. "homepage": "https://www.drupal.org/user/2873401"
  4388. },
  4389. {
  4390. "name": "mkdok",
  4391. "homepage": "https://www.drupal.org/user/3308753"
  4392. }
  4393. ],
  4394. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4395. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4396. "support": {
  4397. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  4398. }
  4399. },
  4400. {
  4401. "name": "drupal/metatag",
  4402. "version": "2.0.2",
  4403. "source": {
  4404. "type": "git",
  4405. "url": "https://git.drupalcode.org/project/metatag.git",
  4406. "reference": "2.0.2"
  4407. },
  4408. "dist": {
  4409. "type": "zip",
  4410. "url": "https://ftp.drupal.org/files/projects/metatag-2.0.2.zip",
  4411. "reference": "2.0.2",
  4412. "shasum": "748013c50a0ed5e10359413bb3481392a0bf0d3f"
  4413. },
  4414. "require": {
  4415. "drupal/core": "^9.4 || ^10 || ^11",
  4416. "drupal/token": "^1.0",
  4417. "php": ">=8.0"
  4418. },
  4419. "require-dev": {
  4420. "drupal/hal": "^1 || ^2 || ^9",
  4421. "drupal/metatag_dc": "*",
  4422. "drupal/metatag_open_graph": "*",
  4423. "drupal/page_manager": "^4.0",
  4424. "drupal/redirect": "^1.0",
  4425. "ergebnis/composer-normalize": "*",
  4426. "mpyw/phpunit-patch-serializable-comparison": "*"
  4427. },
  4428. "type": "drupal-module",
  4429. "extra": {
  4430. "drupal": {
  4431. "version": "2.0.2",
  4432. "datestamp": "1722869772",
  4433. "security-coverage": {
  4434. "status": "covered",
  4435. "message": "Covered by Drupal's security advisory policy"
  4436. }
  4437. },
  4438. "composer-normalize": {
  4439. "indent-size": 2,
  4440. "indent-style": "space"
  4441. }
  4442. },
  4443. "notification-url": "https://packages.drupal.org/8/downloads",
  4444. "license": [
  4445. "GPL-2.0-or-later"
  4446. ],
  4447. "authors": [
  4448. {
  4449. "name": "See contributors",
  4450. "homepage": "https://www.drupal.org/node/640498/committers",
  4451. "role": "Developer"
  4452. },
  4453. {
  4454. "name": "dave reid",
  4455. "homepage": "https://www.drupal.org/user/53892"
  4456. }
  4457. ],
  4458. "description": "Manage meta tags for all entities.",
  4459. "homepage": "https://www.drupal.org/project/metatag",
  4460. "keywords": [
  4461. "Drupal",
  4462. "seo"
  4463. ],
  4464. "support": {
  4465. "source": "https://git.drupalcode.org/project/metatag",
  4466. "issues": "https://www.drupal.org/project/issues/metatag",
  4467. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  4468. }
  4469. },
  4470. {
  4471. "name": "drupal/pathauto",
  4472. "version": "1.13.0",
  4473. "source": {
  4474. "type": "git",
  4475. "url": "https://git.drupalcode.org/project/pathauto.git",
  4476. "reference": "8.x-1.13"
  4477. },
  4478. "dist": {
  4479. "type": "zip",
  4480. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.13.zip",
  4481. "reference": "8.x-1.13",
  4482. "shasum": "e64b5a82cf1b8ab48bce400b21ae6fc99c8078fd"
  4483. },
  4484. "require": {
  4485. "drupal/core": "^9.4 || ^10 || ^11",
  4486. "drupal/ctools": "*",
  4487. "drupal/token": "*"
  4488. },
  4489. "require-dev": {
  4490. "drupal/forum": "*"
  4491. },
  4492. "suggest": {
  4493. "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."
  4494. },
  4495. "type": "drupal-module",
  4496. "extra": {
  4497. "drupal": {
  4498. "version": "8.x-1.13",
  4499. "datestamp": "1722507672",
  4500. "security-coverage": {
  4501. "status": "covered",
  4502. "message": "Covered by Drupal's security advisory policy"
  4503. }
  4504. },
  4505. "drush": {
  4506. "services": {
  4507. "drush.services.yml": "^9 || ^10"
  4508. }
  4509. }
  4510. },
  4511. "notification-url": "https://packages.drupal.org/8/downloads",
  4512. "license": [
  4513. "GPL-2.0-or-later"
  4514. ],
  4515. "authors": [
  4516. {
  4517. "name": "Berdir",
  4518. "homepage": "https://www.drupal.org/user/214652"
  4519. },
  4520. {
  4521. "name": "Dave Reid",
  4522. "homepage": "https://www.drupal.org/user/53892"
  4523. },
  4524. {
  4525. "name": "Freso",
  4526. "homepage": "https://www.drupal.org/user/27504"
  4527. },
  4528. {
  4529. "name": "greggles",
  4530. "homepage": "https://www.drupal.org/user/36762"
  4531. }
  4532. ],
  4533. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4534. "homepage": "https://www.drupal.org/project/pathauto",
  4535. "support": {
  4536. "source": "https://cgit.drupalcode.org/pathauto",
  4537. "issues": "https://www.drupal.org/project/issues/pathauto",
  4538. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  4539. }
  4540. },
  4541. {
  4542. "name": "drupal/profile",
  4543. "version": "1.4.0",
  4544. "source": {
  4545. "type": "git",
  4546. "url": "https://git.drupalcode.org/project/profile.git",
  4547. "reference": "8.x-1.4"
  4548. },
  4549. "dist": {
  4550. "type": "zip",
  4551. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.4.zip",
  4552. "reference": "8.x-1.4",
  4553. "shasum": "253fd577c3b791c93747bb910ad2ae8e67d71eed"
  4554. },
  4555. "require": {
  4556. "drupal/core": "^8.9 || ^9 || ^10",
  4557. "drupal/entity": "^1.0-rc2"
  4558. },
  4559. "require-dev": {
  4560. "drupal/token": "^1.7"
  4561. },
  4562. "type": "drupal-module",
  4563. "extra": {
  4564. "drupal": {
  4565. "version": "8.x-1.4",
  4566. "datestamp": "1652430373",
  4567. "security-coverage": {
  4568. "status": "covered",
  4569. "message": "Covered by Drupal's security advisory policy"
  4570. }
  4571. }
  4572. },
  4573. "notification-url": "https://packages.drupal.org/8/downloads",
  4574. "license": [
  4575. "GPL-2.0-or-later"
  4576. ],
  4577. "authors": [
  4578. {
  4579. "name": "bojanz",
  4580. "homepage": "https://www.drupal.org/user/86106"
  4581. },
  4582. {
  4583. "name": "daggerhart",
  4584. "homepage": "https://www.drupal.org/user/167806"
  4585. },
  4586. {
  4587. "name": "fago",
  4588. "homepage": "https://www.drupal.org/user/16747"
  4589. },
  4590. {
  4591. "name": "jsacksick",
  4592. "homepage": "https://www.drupal.org/user/972218"
  4593. },
  4594. {
  4595. "name": "mglaman",
  4596. "homepage": "https://www.drupal.org/user/2416470"
  4597. },
  4598. {
  4599. "name": "pcambra",
  4600. "homepage": "https://www.drupal.org/user/122101"
  4601. }
  4602. ],
  4603. "description": "Provides configurable user profiles.",
  4604. "homepage": "http://drupal.org/project/profile",
  4605. "support": {
  4606. "source": "https://git.drupalcode.org/project/profile"
  4607. }
  4608. },
  4609. {
  4610. "name": "drupal/redirect",
  4611. "version": "1.10.0",
  4612. "source": {
  4613. "type": "git",
  4614. "url": "https://git.drupalcode.org/project/redirect.git",
  4615. "reference": "8.x-1.10"
  4616. },
  4617. "dist": {
  4618. "type": "zip",
  4619. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.10.zip",
  4620. "reference": "8.x-1.10",
  4621. "shasum": "9d72d7e0717dbdea3ab3306c5d6840da5bd3024c"
  4622. },
  4623. "require": {
  4624. "drupal/core": "^9.2 || ^10 || ^11"
  4625. },
  4626. "type": "drupal-module",
  4627. "extra": {
  4628. "drupal": {
  4629. "version": "8.x-1.10",
  4630. "datestamp": "1723277641",
  4631. "security-coverage": {
  4632. "status": "covered",
  4633. "message": "Covered by Drupal's security advisory policy"
  4634. }
  4635. }
  4636. },
  4637. "notification-url": "https://packages.drupal.org/8/downloads",
  4638. "license": [
  4639. "GPL-2.0-or-later"
  4640. ],
  4641. "authors": [
  4642. {
  4643. "name": "Berdir",
  4644. "homepage": "https://www.drupal.org/user/214652"
  4645. },
  4646. {
  4647. "name": "dave reid",
  4648. "homepage": "https://www.drupal.org/user/53892"
  4649. },
  4650. {
  4651. "name": "Kristen Pol",
  4652. "homepage": "https://www.drupal.org/user/8389"
  4653. },
  4654. {
  4655. "name": "pifagor",
  4656. "homepage": "https://www.drupal.org/user/2375692"
  4657. }
  4658. ],
  4659. "description": "Allows users to redirect from old URLs to new URLs.",
  4660. "homepage": "https://www.drupal.org/project/redirect",
  4661. "support": {
  4662. "source": "https://git.drupalcode.org/project/redirect"
  4663. }
  4664. },
  4665. {
  4666. "name": "drupal/redis",
  4667. "version": "1.8.0",
  4668. "source": {
  4669. "type": "git",
  4670. "url": "https://git.drupalcode.org/project/redis.git",
  4671. "reference": "8.x-1.8"
  4672. },
  4673. "dist": {
  4674. "type": "zip",
  4675. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.8.zip",
  4676. "reference": "8.x-1.8",
  4677. "shasum": "6de73086d29de3b041594bae97c74401cbf05c3d"
  4678. },
  4679. "require": {
  4680. "drupal/core": "^9.3 || ^10 || ^11"
  4681. },
  4682. "suggest": {
  4683. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  4684. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  4685. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  4686. },
  4687. "type": "drupal-module",
  4688. "extra": {
  4689. "drupal": {
  4690. "version": "8.x-1.8",
  4691. "datestamp": "1723934771",
  4692. "security-coverage": {
  4693. "status": "covered",
  4694. "message": "Covered by Drupal's security advisory policy"
  4695. }
  4696. }
  4697. },
  4698. "autoload": {
  4699. "psr-4": {
  4700. "Drupal\\redis\\": "src"
  4701. }
  4702. },
  4703. "notification-url": "https://packages.drupal.org/8/downloads",
  4704. "license": [
  4705. "GPL-2.0-or-later"
  4706. ],
  4707. "authors": [
  4708. {
  4709. "name": "berdir",
  4710. "homepage": "https://www.drupal.org/user/214652"
  4711. },
  4712. {
  4713. "name": "greg.1.anderson",
  4714. "homepage": "https://www.drupal.org/user/438598"
  4715. },
  4716. {
  4717. "name": "kporras07",
  4718. "homepage": "https://www.drupal.org/user/1349780"
  4719. },
  4720. {
  4721. "name": "pounard",
  4722. "homepage": "https://www.drupal.org/user/240164"
  4723. }
  4724. ],
  4725. "description": "Integration of Drupal with the Redis key-value store.",
  4726. "homepage": "https://www.drupal.org/project/redis",
  4727. "support": {
  4728. "source": "https://git.drupalcode.org/project/redis"
  4729. }
  4730. },
  4731. {
  4732. "name": "drupal/restui",
  4733. "version": "1.21.0",
  4734. "source": {
  4735. "type": "git",
  4736. "url": "https://git.drupalcode.org/project/restui.git",
  4737. "reference": "8.x-1.21"
  4738. },
  4739. "dist": {
  4740. "type": "zip",
  4741. "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.21.zip",
  4742. "reference": "8.x-1.21",
  4743. "shasum": "2a67dc2c1953dced0bddaff25e5c60784ee0178c"
  4744. },
  4745. "require": {
  4746. "drupal/core": "^8.7.7 || ^9 || ^10"
  4747. },
  4748. "type": "drupal-module",
  4749. "extra": {
  4750. "drupal": {
  4751. "version": "8.x-1.21",
  4752. "datestamp": "1659086914",
  4753. "security-coverage": {
  4754. "status": "covered",
  4755. "message": "Covered by Drupal's security advisory policy"
  4756. }
  4757. }
  4758. },
  4759. "notification-url": "https://packages.drupal.org/8/downloads",
  4760. "license": [
  4761. "GPL-2.0-or-later"
  4762. ],
  4763. "authors": [
  4764. {
  4765. "name": "-enzo-",
  4766. "homepage": "https://www.drupal.org/user/294937"
  4767. },
  4768. {
  4769. "name": "clemens.tolboom",
  4770. "homepage": "https://www.drupal.org/user/125814"
  4771. },
  4772. {
  4773. "name": "juampynr",
  4774. "homepage": "https://www.drupal.org/user/682736"
  4775. },
  4776. {
  4777. "name": "kamkejj",
  4778. "homepage": "https://www.drupal.org/user/81043"
  4779. },
  4780. {
  4781. "name": "vipin.mittal18",
  4782. "homepage": "https://www.drupal.org/user/319716"
  4783. }
  4784. ],
  4785. "description": "Provides a user interface to manage REST resources.",
  4786. "homepage": "https://www.drupal.org/project/restui",
  4787. "support": {
  4788. "source": "https://git.drupalcode.org/project/restui"
  4789. }
  4790. },
  4791. {
  4792. "name": "drupal/search_api",
  4793. "version": "1.30.0",
  4794. "source": {
  4795. "type": "git",
  4796. "url": "https://git.drupalcode.org/project/search_api.git",
  4797. "reference": "8.x-1.30"
  4798. },
  4799. "dist": {
  4800. "type": "zip",
  4801. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.30.zip",
  4802. "reference": "8.x-1.30",
  4803. "shasum": "25bd2cfab6a6332c595fbc8be1c4cfff33a85ce8"
  4804. },
  4805. "require": {
  4806. "drupal/core": "^9.3 || ^10.0"
  4807. },
  4808. "conflict": {
  4809. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  4810. },
  4811. "require-dev": {
  4812. "drupal/language_fallback_fix": "@dev",
  4813. "drupal/search_api_autocomplete": "@dev",
  4814. "drupal/search_api_db": "*"
  4815. },
  4816. "suggest": {
  4817. "drupal/facets": "Adds the ability to create faceted searches.",
  4818. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  4819. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  4820. },
  4821. "type": "drupal-module",
  4822. "extra": {
  4823. "drupal": {
  4824. "version": "8.x-1.30",
  4825. "datestamp": "1700925904",
  4826. "security-coverage": {
  4827. "status": "covered",
  4828. "message": "Covered by Drupal's security advisory policy"
  4829. }
  4830. },
  4831. "drush": {
  4832. "services": {
  4833. "drush.services.yml": "^9 || ^10 || ^11"
  4834. }
  4835. }
  4836. },
  4837. "notification-url": "https://packages.drupal.org/8/downloads",
  4838. "license": [
  4839. "GPL-2.0-or-later"
  4840. ],
  4841. "authors": [
  4842. {
  4843. "name": "Thomas Seidl",
  4844. "homepage": "https://www.drupal.org/u/drunken-monkey"
  4845. },
  4846. {
  4847. "name": "Nick Veenhof",
  4848. "homepage": "https://www.drupal.org/u/nick_vh"
  4849. },
  4850. {
  4851. "name": "See other contributors",
  4852. "homepage": "https://www.drupal.org/node/790418/committers"
  4853. }
  4854. ],
  4855. "description": "Provides a generic framework for modules offering search capabilities.",
  4856. "homepage": "https://www.drupal.org/project/search_api",
  4857. "support": {
  4858. "source": "https://git.drupalcode.org/project/search_api",
  4859. "issues": "https://www.drupal.org/project/issues/search_api",
  4860. "irc": "irc://irc.freenode.org/drupal-search-api"
  4861. }
  4862. },
  4863. {
  4864. "name": "drupal/seven",
  4865. "version": "1.0.0",
  4866. "source": {
  4867. "type": "git",
  4868. "url": "https://git.drupalcode.org/project/seven.git",
  4869. "reference": "1.0.0"
  4870. },
  4871. "dist": {
  4872. "type": "zip",
  4873. "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip",
  4874. "reference": "1.0.0",
  4875. "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd"
  4876. },
  4877. "require": {
  4878. "drupal/core": "^9 || ^10"
  4879. },
  4880. "type": "drupal-theme",
  4881. "extra": {
  4882. "drupal": {
  4883. "version": "1.0.0",
  4884. "datestamp": "1683652106",
  4885. "security-coverage": {
  4886. "status": "covered",
  4887. "message": "Covered by Drupal's security advisory policy"
  4888. }
  4889. }
  4890. },
  4891. "notification-url": "https://packages.drupal.org/8/downloads",
  4892. "license": [
  4893. "GPL-2.0-or-later"
  4894. ],
  4895. "authors": [
  4896. {
  4897. "name": "bnjmnm",
  4898. "homepage": "https://www.drupal.org/user/2369194"
  4899. },
  4900. {
  4901. "name": "lauriii",
  4902. "homepage": "https://www.drupal.org/user/1078742"
  4903. },
  4904. {
  4905. "name": "mcrittenden",
  4906. "homepage": "https://www.drupal.org/user/420631"
  4907. },
  4908. {
  4909. "name": "mrfelton",
  4910. "homepage": "https://www.drupal.org/user/305669"
  4911. },
  4912. {
  4913. "name": "TravisCarden",
  4914. "homepage": "https://www.drupal.org/user/236758"
  4915. }
  4916. ],
  4917. "description": "The Seven theme from Drupal 8/9 moved to contrib",
  4918. "homepage": "https://www.drupal.org/project/seven",
  4919. "support": {
  4920. "source": "https://git.drupalcode.org/project/seven"
  4921. }
  4922. },
  4923. {
  4924. "name": "drupal/simple_sitemap",
  4925. "version": "4.1.9",
  4926. "source": {
  4927. "type": "git",
  4928. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  4929. "reference": "4.1.9"
  4930. },
  4931. "dist": {
  4932. "type": "zip",
  4933. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-4.1.9.zip",
  4934. "reference": "4.1.9",
  4935. "shasum": "d86d90408b334cd7470ea631e3be5acca2103377"
  4936. },
  4937. "require": {
  4938. "drupal/core": "^9.3 || ^10",
  4939. "ext-xmlwriter": "*"
  4940. },
  4941. "type": "drupal-module",
  4942. "extra": {
  4943. "drupal": {
  4944. "version": "4.1.9",
  4945. "datestamp": "1712441608",
  4946. "security-coverage": {
  4947. "status": "covered",
  4948. "message": "Covered by Drupal's security advisory policy"
  4949. }
  4950. },
  4951. "drush": {
  4952. "services": {
  4953. "drush.services.yml": ">=9"
  4954. }
  4955. }
  4956. },
  4957. "notification-url": "https://packages.drupal.org/8/downloads",
  4958. "license": [
  4959. "GPL-2.0-or-later"
  4960. ],
  4961. "authors": [
  4962. {
  4963. "name": "Pawel Ginalski (gbyte)",
  4964. "homepage": "https://www.drupal.org/u/gbyte",
  4965. "email": "contact@gbyte.dev",
  4966. "role": "Maintainer"
  4967. },
  4968. {
  4969. "name": "walkingdexter",
  4970. "homepage": "https://www.drupal.org/user/3251330"
  4971. }
  4972. ],
  4973. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  4974. "homepage": "https://drupal.org/project/simple_sitemap",
  4975. "support": {
  4976. "source": "https://cgit.drupalcode.org/simple_sitemap",
  4977. "issues": "https://drupal.org/project/issues/simple_sitemap"
  4978. }
  4979. },
  4980. {
  4981. "name": "drupal/synonyms",
  4982. "version": "1.0.0-alpha3",
  4983. "source": {
  4984. "type": "git",
  4985. "url": "https://git.drupalcode.org/project/synonyms.git",
  4986. "reference": "8.x-1.0-alpha3"
  4987. },
  4988. "dist": {
  4989. "type": "zip",
  4990. "url": "https://ftp.drupal.org/files/projects/synonyms-8.x-1.0-alpha3.zip",
  4991. "reference": "8.x-1.0-alpha3",
  4992. "shasum": "0306a9dfb279c0594246b49658309c1686e984a9"
  4993. },
  4994. "require": {
  4995. "drupal/core": "^8 || ^9"
  4996. },
  4997. "type": "drupal-module",
  4998. "extra": {
  4999. "drupal": {
  5000. "version": "8.x-1.0-alpha3",
  5001. "datestamp": "1609623594",
  5002. "security-coverage": {
  5003. "status": "not-covered",
  5004. "message": "Alpha releases are not covered by Drupal security advisories."
  5005. }
  5006. }
  5007. },
  5008. "notification-url": "https://packages.drupal.org/8/downloads",
  5009. "license": [
  5010. "GPL-2.0-or-later"
  5011. ],
  5012. "authors": [
  5013. {
  5014. "name": "bojanz",
  5015. "homepage": "https://www.drupal.org/user/86106"
  5016. },
  5017. {
  5018. "name": "bucefal91",
  5019. "homepage": "https://www.drupal.org/user/504128"
  5020. },
  5021. {
  5022. "name": "devad",
  5023. "homepage": "https://www.drupal.org/user/2268520"
  5024. },
  5025. {
  5026. "name": "Zen",
  5027. "homepage": "https://www.drupal.org/user/21209"
  5028. }
  5029. ],
  5030. "description": "Provides synonyms feature for content entities.",
  5031. "homepage": "https://www.drupal.org/project/synonyms",
  5032. "support": {
  5033. "source": "https://git.drupalcode.org/project/synonyms"
  5034. }
  5035. },
  5036. {
  5037. "name": "drupal/token",
  5038. "version": "1.15.0",
  5039. "source": {
  5040. "type": "git",
  5041. "url": "https://git.drupalcode.org/project/token.git",
  5042. "reference": "8.x-1.15"
  5043. },
  5044. "dist": {
  5045. "type": "zip",
  5046. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.15.zip",
  5047. "reference": "8.x-1.15",
  5048. "shasum": "5916fbccc86458a5f51e71f832ac70ff4c84ebdf"
  5049. },
  5050. "require": {
  5051. "drupal/core": "^9.2 || ^10 || ^11"
  5052. },
  5053. "require-dev": {
  5054. "drupal/book": "*"
  5055. },
  5056. "type": "drupal-module",
  5057. "extra": {
  5058. "drupal": {
  5059. "version": "8.x-1.15",
  5060. "datestamp": "1722206211",
  5061. "security-coverage": {
  5062. "status": "covered",
  5063. "message": "Covered by Drupal's security advisory policy"
  5064. }
  5065. },
  5066. "drush": {
  5067. "services": {
  5068. "drush.services.yml": ">=9"
  5069. }
  5070. }
  5071. },
  5072. "notification-url": "https://packages.drupal.org/8/downloads",
  5073. "license": [
  5074. "GPL-2.0-or-later"
  5075. ],
  5076. "authors": [
  5077. {
  5078. "name": "Berdir",
  5079. "homepage": "https://www.drupal.org/user/214652"
  5080. },
  5081. {
  5082. "name": "Dave Reid",
  5083. "homepage": "https://www.drupal.org/user/53892"
  5084. },
  5085. {
  5086. "name": "eaton",
  5087. "homepage": "https://www.drupal.org/user/16496"
  5088. },
  5089. {
  5090. "name": "fago",
  5091. "homepage": "https://www.drupal.org/user/16747"
  5092. },
  5093. {
  5094. "name": "greggles",
  5095. "homepage": "https://www.drupal.org/user/36762"
  5096. },
  5097. {
  5098. "name": "mikeryan",
  5099. "homepage": "https://www.drupal.org/user/4420"
  5100. }
  5101. ],
  5102. "description": "Provides a user interface for the Token API, some missing core tokens.",
  5103. "homepage": "https://www.drupal.org/project/token",
  5104. "support": {
  5105. "source": "https://git.drupalcode.org/project/token"
  5106. }
  5107. },
  5108. {
  5109. "name": "drupal/translation_views",
  5110. "version": "1.0.0-alpha11",
  5111. "source": {
  5112. "type": "git",
  5113. "url": "https://git.drupalcode.org/project/translation_views.git",
  5114. "reference": "8.x-1.0-alpha11"
  5115. },
  5116. "dist": {
  5117. "type": "zip",
  5118. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  5119. "reference": "8.x-1.0-alpha11",
  5120. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  5121. },
  5122. "require": {
  5123. "drupal/core": "^8.8 || ^9 || ^10"
  5124. },
  5125. "require-dev": {
  5126. "drupal/translators_content": "^1.0@alpha"
  5127. },
  5128. "type": "drupal-module",
  5129. "extra": {
  5130. "drupal": {
  5131. "version": "8.x-1.0-alpha11",
  5132. "datestamp": "1679660668",
  5133. "security-coverage": {
  5134. "status": "not-covered",
  5135. "message": "Project has not opted into security advisory coverage!"
  5136. }
  5137. }
  5138. },
  5139. "notification-url": "https://packages.drupal.org/8/downloads",
  5140. "license": [
  5141. "GPL-2.0-or-later"
  5142. ],
  5143. "authors": [
  5144. {
  5145. "name": "matsbla",
  5146. "homepage": "https://www.drupal.org/user/2325394"
  5147. },
  5148. {
  5149. "name": "vlad.dancer",
  5150. "homepage": "https://www.drupal.org/user/903844"
  5151. }
  5152. ],
  5153. "description": "Create customized lists and queries of translations from your database.",
  5154. "homepage": "https://www.drupal.org/project/translation_views",
  5155. "support": {
  5156. "source": "https://git.drupalcode.org/project/translation_views"
  5157. }
  5158. },
  5159. {
  5160. "name": "drupal/upgrade_status",
  5161. "version": "3.19.0",
  5162. "source": {
  5163. "type": "git",
  5164. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  5165. "reference": "8.x-3.19"
  5166. },
  5167. "dist": {
  5168. "type": "zip",
  5169. "url": "https://ftp.drupal.org/files/projects/upgrade_status-8.x-3.19.zip",
  5170. "reference": "8.x-3.19",
  5171. "shasum": "e155b34b80f2782778b841d72639bd0ac8b923f9"
  5172. },
  5173. "require": {
  5174. "drupal/core": "^8 || ^9",
  5175. "mathieuviossat/arraytotexttable": "~1.0.0",
  5176. "mglaman/phpstan-drupal": "^1.0.0",
  5177. "nikic/php-parser": "^4.0.0",
  5178. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  5179. "symfony/process": "^3.4|^4.0|^5.0|^6.0",
  5180. "webflo/drupal-finder": "^1.2"
  5181. },
  5182. "type": "drupal-module",
  5183. "extra": {
  5184. "drupal": {
  5185. "version": "8.x-3.19",
  5186. "datestamp": "1678815320",
  5187. "security-coverage": {
  5188. "status": "covered",
  5189. "message": "Covered by Drupal's security advisory policy"
  5190. }
  5191. },
  5192. "drush": {
  5193. "services": {
  5194. "drush.services.yml": "^9 || ^10"
  5195. }
  5196. }
  5197. },
  5198. "notification-url": "https://packages.drupal.org/8/downloads",
  5199. "license": [
  5200. "GPL-2.0-or-later"
  5201. ],
  5202. "authors": [
  5203. {
  5204. "name": "Gábor Hojtsy",
  5205. "homepage": "https://www.drupal.org/user/4166"
  5206. }
  5207. ],
  5208. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  5209. "homepage": "http://drupal.org/project/upgrade_status",
  5210. "support": {
  5211. "source": "https://git.drupalcode.org/project/upgrade_status"
  5212. }
  5213. },
  5214. {
  5215. "name": "drupal/views_bulk_edit",
  5216. "version": "2.9.0",
  5217. "source": {
  5218. "type": "git",
  5219. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5220. "reference": "8.x-2.9"
  5221. },
  5222. "dist": {
  5223. "type": "zip",
  5224. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.9.zip",
  5225. "reference": "8.x-2.9",
  5226. "shasum": "db45a8cc9ac629859374b24974eafcef257e4387"
  5227. },
  5228. "require": {
  5229. "drupal/core": "^9.4 || ^10"
  5230. },
  5231. "require-dev": {
  5232. "drupal/views_bulk_operations": "~4.2.4"
  5233. },
  5234. "suggest": {
  5235. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  5236. },
  5237. "type": "drupal-module",
  5238. "extra": {
  5239. "drupal": {
  5240. "version": "8.x-2.9",
  5241. "datestamp": "1690222256",
  5242. "security-coverage": {
  5243. "status": "covered",
  5244. "message": "Covered by Drupal's security advisory policy"
  5245. }
  5246. }
  5247. },
  5248. "notification-url": "https://packages.drupal.org/8/downloads",
  5249. "license": [
  5250. "GPL-2.0+"
  5251. ],
  5252. "authors": [
  5253. {
  5254. "name": "Marcin Grabias",
  5255. "homepage": "https://www.drupal.org/u/graber"
  5256. },
  5257. {
  5258. "name": "benjy",
  5259. "homepage": "https://www.drupal.org/user/1852732"
  5260. },
  5261. {
  5262. "name": "graber",
  5263. "homepage": "https://www.drupal.org/user/1599440"
  5264. },
  5265. {
  5266. "name": "grevil",
  5267. "homepage": "https://www.drupal.org/user/3668491"
  5268. },
  5269. {
  5270. "name": "joseph.olstad",
  5271. "homepage": "https://www.drupal.org/user/1321830"
  5272. }
  5273. ],
  5274. "description": "Allows bulk edition of entity field values.",
  5275. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5276. "support": {
  5277. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5278. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5279. }
  5280. },
  5281. {
  5282. "name": "drupal/views_bulk_operations",
  5283. "version": "4.2.7",
  5284. "source": {
  5285. "type": "git",
  5286. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5287. "reference": "4.2.7"
  5288. },
  5289. "dist": {
  5290. "type": "zip",
  5291. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.2.7.zip",
  5292. "reference": "4.2.7",
  5293. "shasum": "25c9fa531ac49664a361fdd2202eec0a6e53bc61"
  5294. },
  5295. "require": {
  5296. "drupal/core": "^9.4 || ^10 || ^11",
  5297. "php": ">=7.4.0"
  5298. },
  5299. "require-dev": {
  5300. "drush/drush": "^12"
  5301. },
  5302. "suggest": {
  5303. "drush/drush": "^11 || ^12"
  5304. },
  5305. "type": "drupal-module",
  5306. "extra": {
  5307. "drupal": {
  5308. "version": "4.2.7",
  5309. "datestamp": "1717665214",
  5310. "security-coverage": {
  5311. "status": "covered",
  5312. "message": "Covered by Drupal's security advisory policy"
  5313. }
  5314. },
  5315. "drush": {
  5316. "services": {
  5317. "drush.services.yml": "^10 || ^11"
  5318. }
  5319. }
  5320. },
  5321. "notification-url": "https://packages.drupal.org/8/downloads",
  5322. "license": [
  5323. "GPL-2.0-or-later"
  5324. ],
  5325. "authors": [
  5326. {
  5327. "name": "Marcin Grabias",
  5328. "homepage": "https://www.drupal.org/u/graber"
  5329. },
  5330. {
  5331. "name": "Graber",
  5332. "homepage": "https://www.drupal.org/user/1599440"
  5333. },
  5334. {
  5335. "name": "joelpittet",
  5336. "homepage": "https://www.drupal.org/user/160302"
  5337. }
  5338. ],
  5339. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5340. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5341. "support": {
  5342. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  5343. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5344. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5345. }
  5346. },
  5347. {
  5348. "name": "drupal/workflow",
  5349. "version": "1.6.0",
  5350. "source": {
  5351. "type": "git",
  5352. "url": "https://git.drupalcode.org/project/workflow.git",
  5353. "reference": "8.x-1.6"
  5354. },
  5355. "dist": {
  5356. "type": "zip",
  5357. "url": "https://ftp.drupal.org/files/projects/workflow-8.x-1.6.zip",
  5358. "reference": "8.x-1.6",
  5359. "shasum": "a798b9e85cd267d7e9a7d44b9e883ecbcdad1406"
  5360. },
  5361. "require": {
  5362. "drupal/core": "^8.8 || ^9"
  5363. },
  5364. "type": "drupal-module",
  5365. "extra": {
  5366. "drupal": {
  5367. "version": "8.x-1.6",
  5368. "datestamp": "1671818949",
  5369. "security-coverage": {
  5370. "status": "covered",
  5371. "message": "Covered by Drupal's security advisory policy"
  5372. }
  5373. }
  5374. },
  5375. "notification-url": "https://packages.drupal.org/8/downloads",
  5376. "license": [
  5377. "GPL-2.0-or-later"
  5378. ],
  5379. "authors": [
  5380. {
  5381. "name": "Bastlynn",
  5382. "homepage": "https://www.drupal.org/user/275249"
  5383. },
  5384. {
  5385. "name": "eaton",
  5386. "homepage": "https://www.drupal.org/user/16496"
  5387. },
  5388. {
  5389. "name": "Heine",
  5390. "homepage": "https://www.drupal.org/user/17943"
  5391. },
  5392. {
  5393. "name": "JacobSingh",
  5394. "homepage": "https://www.drupal.org/user/68912"
  5395. },
  5396. {
  5397. "name": "johnv",
  5398. "homepage": "https://www.drupal.org/user/591042"
  5399. },
  5400. {
  5401. "name": "jvandyk",
  5402. "homepage": "https://www.drupal.org/user/2375"
  5403. },
  5404. {
  5405. "name": "mfredrickson",
  5406. "homepage": "https://www.drupal.org/user/31994"
  5407. },
  5408. {
  5409. "name": "NancyDru",
  5410. "homepage": "https://www.drupal.org/user/101412"
  5411. },
  5412. {
  5413. "name": "q0rban",
  5414. "homepage": "https://www.drupal.org/user/31022"
  5415. }
  5416. ],
  5417. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5418. "homepage": "https://www.drupal.org/project/workflow",
  5419. "support": {
  5420. "source": "https://git.drupalcode.org/project/workflow"
  5421. }
  5422. },
  5423. {
  5424. "name": "drush/drush",
  5425. "version": "10.6.2",
  5426. "source": {
  5427. "type": "git",
  5428. "url": "https://github.com/drush-ops/drush.git",
  5429. "reference": "0a570a16ec63259eb71195aba5feab532318b337"
  5430. },
  5431. "dist": {
  5432. "type": "zip",
  5433. "url": "https://api.github.com/repos/drush-ops/drush/zipball/0a570a16ec63259eb71195aba5feab532318b337",
  5434. "reference": "0a570a16ec63259eb71195aba5feab532318b337",
  5435. "shasum": ""
  5436. },
  5437. "require": {
  5438. "chi-teck/drupal-code-generator": "^1.32.1",
  5439. "composer/semver": "^1.4 || ^3",
  5440. "consolidation/config": "^1.2",
  5441. "consolidation/filter-via-dot-access-data": "^1",
  5442. "consolidation/robo": "^1.4.11 || ^2 || ^3",
  5443. "consolidation/site-alias": "^3.0.0@stable",
  5444. "consolidation/site-process": "^2.1 || ^4",
  5445. "enlightn/security-checker": "^1",
  5446. "ext-dom": "*",
  5447. "grasmash/yaml-expander": "^1.1.1",
  5448. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  5449. "league/container": "^2.5 || ^3.4",
  5450. "php": ">=7.1.3",
  5451. "psr/log": "~1.0",
  5452. "psy/psysh": ">=0.6 <0.11",
  5453. "symfony/event-dispatcher": "^3.4 || ^4.0",
  5454. "symfony/finder": "^3.4 || ^4.0 || ^5",
  5455. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0",
  5456. "symfony/yaml": "^3.4 || ^4.0",
  5457. "webflo/drupal-finder": "^1.2",
  5458. "webmozart/path-util": "^2.1.0"
  5459. },
  5460. "conflict": {
  5461. "drupal/migrate_run": "*",
  5462. "drupal/migrate_tools": "<= 5"
  5463. },
  5464. "require-dev": {
  5465. "composer/installers": "^1.7",
  5466. "cweagans/composer-patches": "~1.0",
  5467. "david-garcia/phpwhois": "4.3.0",
  5468. "drupal/alinks": "1.0.0",
  5469. "drupal/core-recommended": "^8.8",
  5470. "phpunit/phpunit": ">=7.5.20",
  5471. "squizlabs/php_codesniffer": "^2.7 || ^3",
  5472. "vlucas/phpdotenv": "^2.4",
  5473. "yoast/phpunit-polyfills": "^0.2.0"
  5474. },
  5475. "bin": [
  5476. "drush"
  5477. ],
  5478. "type": "library",
  5479. "extra": {
  5480. "installer-paths": {
  5481. "sut/core": [
  5482. "type:drupal-core"
  5483. ],
  5484. "sut/libraries/{$name}": [
  5485. "type:drupal-library"
  5486. ],
  5487. "sut/modules/unish/{$name}": [
  5488. "drupal/devel"
  5489. ],
  5490. "sut/themes/unish/{$name}": [
  5491. "drupal/empty_theme"
  5492. ],
  5493. "sut/modules/contrib/{$name}": [
  5494. "type:drupal-module"
  5495. ],
  5496. "sut/profiles/contrib/{$name}": [
  5497. "type:drupal-profile"
  5498. ],
  5499. "sut/themes/contrib/{$name}": [
  5500. "type:drupal-theme"
  5501. ],
  5502. "sut/drush/contrib/{$name}": [
  5503. "type:drupal-drush"
  5504. ]
  5505. }
  5506. },
  5507. "autoload": {
  5508. "psr-4": {
  5509. "Drush\\": "src/",
  5510. "Drush\\Internal\\": "src/internal-forks"
  5511. }
  5512. },
  5513. "notification-url": "https://packagist.org/downloads/",
  5514. "license": [
  5515. "GPL-2.0-or-later"
  5516. ],
  5517. "authors": [
  5518. {
  5519. "name": "Moshe Weitzman",
  5520. "email": "weitzman@tejasa.com"
  5521. },
  5522. {
  5523. "name": "Owen Barton",
  5524. "email": "drupal@owenbarton.com"
  5525. },
  5526. {
  5527. "name": "Greg Anderson",
  5528. "email": "greg.1.anderson@greenknowe.org"
  5529. },
  5530. {
  5531. "name": "Jonathan Araña Cruz",
  5532. "email": "jonhattan@faita.net"
  5533. },
  5534. {
  5535. "name": "Jonathan Hedstrom",
  5536. "email": "jhedstrom@gmail.com"
  5537. },
  5538. {
  5539. "name": "Christopher Gervais",
  5540. "email": "chris@ergonlogic.com"
  5541. },
  5542. {
  5543. "name": "Dave Reid",
  5544. "email": "dave@davereid.net"
  5545. },
  5546. {
  5547. "name": "Damian Lee",
  5548. "email": "damiankloip@googlemail.com"
  5549. }
  5550. ],
  5551. "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.",
  5552. "homepage": "http://www.drush.org",
  5553. "support": {
  5554. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  5555. "irc": "irc://irc.freenode.org/drush",
  5556. "issues": "https://github.com/drush-ops/drush/issues",
  5557. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  5558. "source": "https://github.com/drush-ops/drush/tree/10.6.2"
  5559. },
  5560. "funding": [
  5561. {
  5562. "url": "https://github.com/weitzman",
  5563. "type": "github"
  5564. }
  5565. ],
  5566. "time": "2021-12-15T17:09:54+00:00"
  5567. },
  5568. {
  5569. "name": "egulias/email-validator",
  5570. "version": "3.2.6",
  5571. "source": {
  5572. "type": "git",
  5573. "url": "https://github.com/egulias/EmailValidator.git",
  5574. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7"
  5575. },
  5576. "dist": {
  5577. "type": "zip",
  5578. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  5579. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  5580. "shasum": ""
  5581. },
  5582. "require": {
  5583. "doctrine/lexer": "^1.2|^2",
  5584. "php": ">=7.2",
  5585. "symfony/polyfill-intl-idn": "^1.15"
  5586. },
  5587. "require-dev": {
  5588. "phpunit/phpunit": "^8.5.8|^9.3.3",
  5589. "vimeo/psalm": "^4"
  5590. },
  5591. "suggest": {
  5592. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  5593. },
  5594. "type": "library",
  5595. "extra": {
  5596. "branch-alias": {
  5597. "dev-master": "3.0.x-dev"
  5598. }
  5599. },
  5600. "autoload": {
  5601. "psr-4": {
  5602. "Egulias\\EmailValidator\\": "src"
  5603. }
  5604. },
  5605. "notification-url": "https://packagist.org/downloads/",
  5606. "license": [
  5607. "MIT"
  5608. ],
  5609. "authors": [
  5610. {
  5611. "name": "Eduardo Gulias Davis"
  5612. }
  5613. ],
  5614. "description": "A library for validating emails against several RFCs",
  5615. "homepage": "https://github.com/egulias/EmailValidator",
  5616. "keywords": [
  5617. "email",
  5618. "emailvalidation",
  5619. "emailvalidator",
  5620. "validation",
  5621. "validator"
  5622. ],
  5623. "support": {
  5624. "issues": "https://github.com/egulias/EmailValidator/issues",
  5625. "source": "https://github.com/egulias/EmailValidator/tree/3.2.6"
  5626. },
  5627. "funding": [
  5628. {
  5629. "url": "https://github.com/egulias",
  5630. "type": "github"
  5631. }
  5632. ],
  5633. "time": "2023-06-01T07:04:22+00:00"
  5634. },
  5635. {
  5636. "name": "enlightn/security-checker",
  5637. "version": "v1.11.0",
  5638. "source": {
  5639. "type": "git",
  5640. "url": "https://github.com/enlightn/security-checker.git",
  5641. "reference": "68df5c7256c84b428bf8fcff0d249de06ce362d2"
  5642. },
  5643. "dist": {
  5644. "type": "zip",
  5645. "url": "https://api.github.com/repos/enlightn/security-checker/zipball/68df5c7256c84b428bf8fcff0d249de06ce362d2",
  5646. "reference": "68df5c7256c84b428bf8fcff0d249de06ce362d2",
  5647. "shasum": ""
  5648. },
  5649. "require": {
  5650. "ext-json": "*",
  5651. "guzzlehttp/guzzle": "^6.3|^7.0",
  5652. "php": ">=5.6",
  5653. "symfony/console": "^3.4|^4|^5|^6|^7",
  5654. "symfony/finder": "^3|^4|^5|^6|^7",
  5655. "symfony/process": "^3.4|^4|^5|^6|^7",
  5656. "symfony/yaml": "^3.4|^4|^5|^6|^7"
  5657. },
  5658. "require-dev": {
  5659. "ext-zip": "*",
  5660. "friendsofphp/php-cs-fixer": "^2.18|^3.0",
  5661. "phpunit/phpunit": "^5.5|^6|^7|^8|^9"
  5662. },
  5663. "bin": [
  5664. "security-checker"
  5665. ],
  5666. "type": "library",
  5667. "autoload": {
  5668. "psr-4": {
  5669. "Enlightn\\SecurityChecker\\": "src"
  5670. }
  5671. },
  5672. "notification-url": "https://packagist.org/downloads/",
  5673. "license": [
  5674. "MIT"
  5675. ],
  5676. "authors": [
  5677. {
  5678. "name": "Paras Malhotra",
  5679. "email": "paras@laravel-enlightn.com"
  5680. },
  5681. {
  5682. "name": "Miguel Piedrafita",
  5683. "email": "soy@miguelpiedrafita.com"
  5684. }
  5685. ],
  5686. "description": "A PHP dependency vulnerabilities scanner based on the Security Advisories Database.",
  5687. "keywords": [
  5688. "package",
  5689. "php",
  5690. "scanner",
  5691. "security",
  5692. "security advisories",
  5693. "vulnerability scanner"
  5694. ],
  5695. "support": {
  5696. "issues": "https://github.com/enlightn/security-checker/issues",
  5697. "source": "https://github.com/enlightn/security-checker/tree/v1.11.0"
  5698. },
  5699. "time": "2023-11-17T07:53:29+00:00"
  5700. },
  5701. {
  5702. "name": "grasmash/expander",
  5703. "version": "1.0.0",
  5704. "source": {
  5705. "type": "git",
  5706. "url": "https://github.com/grasmash/expander.git",
  5707. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  5708. },
  5709. "dist": {
  5710. "type": "zip",
  5711. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5712. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5713. "shasum": ""
  5714. },
  5715. "require": {
  5716. "dflydev/dot-access-data": "^1.1.0",
  5717. "php": ">=5.4"
  5718. },
  5719. "require-dev": {
  5720. "greg-1-anderson/composer-test-scenarios": "^1",
  5721. "phpunit/phpunit": "^4|^5.5.4",
  5722. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5723. "squizlabs/php_codesniffer": "^2.7"
  5724. },
  5725. "type": "library",
  5726. "extra": {
  5727. "branch-alias": {
  5728. "dev-master": "1.x-dev"
  5729. }
  5730. },
  5731. "autoload": {
  5732. "psr-4": {
  5733. "Grasmash\\Expander\\": "src/"
  5734. }
  5735. },
  5736. "notification-url": "https://packagist.org/downloads/",
  5737. "license": [
  5738. "MIT"
  5739. ],
  5740. "authors": [
  5741. {
  5742. "name": "Matthew Grasmick"
  5743. }
  5744. ],
  5745. "description": "Expands internal property references in PHP arrays file.",
  5746. "support": {
  5747. "issues": "https://github.com/grasmash/expander/issues",
  5748. "source": "https://github.com/grasmash/expander/tree/master"
  5749. },
  5750. "time": "2017-12-21T22:14:55+00:00"
  5751. },
  5752. {
  5753. "name": "grasmash/yaml-expander",
  5754. "version": "1.4.0",
  5755. "source": {
  5756. "type": "git",
  5757. "url": "https://github.com/grasmash/yaml-expander.git",
  5758. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  5759. },
  5760. "dist": {
  5761. "type": "zip",
  5762. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5763. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5764. "shasum": ""
  5765. },
  5766. "require": {
  5767. "dflydev/dot-access-data": "^1.1.0",
  5768. "php": ">=5.4",
  5769. "symfony/yaml": "^2.8.11|^3|^4"
  5770. },
  5771. "require-dev": {
  5772. "greg-1-anderson/composer-test-scenarios": "^1",
  5773. "phpunit/phpunit": "^4.8|^5.5.4",
  5774. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5775. "squizlabs/php_codesniffer": "^2.7"
  5776. },
  5777. "type": "library",
  5778. "extra": {
  5779. "branch-alias": {
  5780. "dev-master": "1.x-dev"
  5781. }
  5782. },
  5783. "autoload": {
  5784. "psr-4": {
  5785. "Grasmash\\YamlExpander\\": "src/"
  5786. }
  5787. },
  5788. "notification-url": "https://packagist.org/downloads/",
  5789. "license": [
  5790. "MIT"
  5791. ],
  5792. "authors": [
  5793. {
  5794. "name": "Matthew Grasmick"
  5795. }
  5796. ],
  5797. "description": "Expands internal property references in a yaml file.",
  5798. "support": {
  5799. "issues": "https://github.com/grasmash/yaml-expander/issues",
  5800. "source": "https://github.com/grasmash/yaml-expander/tree/master"
  5801. },
  5802. "time": "2017-12-16T16:06:03+00:00"
  5803. },
  5804. {
  5805. "name": "guzzlehttp/guzzle",
  5806. "version": "6.5.8",
  5807. "source": {
  5808. "type": "git",
  5809. "url": "https://github.com/guzzle/guzzle.git",
  5810. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981"
  5811. },
  5812. "dist": {
  5813. "type": "zip",
  5814. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a52f0440530b54fa079ce76e8c5d196a42cad981",
  5815. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981",
  5816. "shasum": ""
  5817. },
  5818. "require": {
  5819. "ext-json": "*",
  5820. "guzzlehttp/promises": "^1.0",
  5821. "guzzlehttp/psr7": "^1.9",
  5822. "php": ">=5.5",
  5823. "symfony/polyfill-intl-idn": "^1.17"
  5824. },
  5825. "require-dev": {
  5826. "ext-curl": "*",
  5827. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  5828. "psr/log": "^1.1"
  5829. },
  5830. "suggest": {
  5831. "psr/log": "Required for using the Log middleware"
  5832. },
  5833. "type": "library",
  5834. "extra": {
  5835. "branch-alias": {
  5836. "dev-master": "6.5-dev"
  5837. }
  5838. },
  5839. "autoload": {
  5840. "files": [
  5841. "src/functions_include.php"
  5842. ],
  5843. "psr-4": {
  5844. "GuzzleHttp\\": "src/"
  5845. }
  5846. },
  5847. "notification-url": "https://packagist.org/downloads/",
  5848. "license": [
  5849. "MIT"
  5850. ],
  5851. "authors": [
  5852. {
  5853. "name": "Graham Campbell",
  5854. "email": "hello@gjcampbell.co.uk",
  5855. "homepage": "https://github.com/GrahamCampbell"
  5856. },
  5857. {
  5858. "name": "Michael Dowling",
  5859. "email": "mtdowling@gmail.com",
  5860. "homepage": "https://github.com/mtdowling"
  5861. },
  5862. {
  5863. "name": "Jeremy Lindblom",
  5864. "email": "jeremeamia@gmail.com",
  5865. "homepage": "https://github.com/jeremeamia"
  5866. },
  5867. {
  5868. "name": "George Mponos",
  5869. "email": "gmponos@gmail.com",
  5870. "homepage": "https://github.com/gmponos"
  5871. },
  5872. {
  5873. "name": "Tobias Nyholm",
  5874. "email": "tobias.nyholm@gmail.com",
  5875. "homepage": "https://github.com/Nyholm"
  5876. },
  5877. {
  5878. "name": "Márk Sági-Kazár",
  5879. "email": "mark.sagikazar@gmail.com",
  5880. "homepage": "https://github.com/sagikazarmark"
  5881. },
  5882. {
  5883. "name": "Tobias Schultze",
  5884. "email": "webmaster@tubo-world.de",
  5885. "homepage": "https://github.com/Tobion"
  5886. }
  5887. ],
  5888. "description": "Guzzle is a PHP HTTP client library",
  5889. "homepage": "http://guzzlephp.org/",
  5890. "keywords": [
  5891. "client",
  5892. "curl",
  5893. "framework",
  5894. "http",
  5895. "http client",
  5896. "rest",
  5897. "web service"
  5898. ],
  5899. "support": {
  5900. "issues": "https://github.com/guzzle/guzzle/issues",
  5901. "source": "https://github.com/guzzle/guzzle/tree/6.5.8"
  5902. },
  5903. "funding": [
  5904. {
  5905. "url": "https://github.com/GrahamCampbell",
  5906. "type": "github"
  5907. },
  5908. {
  5909. "url": "https://github.com/Nyholm",
  5910. "type": "github"
  5911. },
  5912. {
  5913. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  5914. "type": "tidelift"
  5915. }
  5916. ],
  5917. "time": "2022-06-20T22:16:07+00:00"
  5918. },
  5919. {
  5920. "name": "guzzlehttp/promises",
  5921. "version": "1.5.3",
  5922. "source": {
  5923. "type": "git",
  5924. "url": "https://github.com/guzzle/promises.git",
  5925. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e"
  5926. },
  5927. "dist": {
  5928. "type": "zip",
  5929. "url": "https://api.github.com/repos/guzzle/promises/zipball/67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  5930. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  5931. "shasum": ""
  5932. },
  5933. "require": {
  5934. "php": ">=5.5"
  5935. },
  5936. "require-dev": {
  5937. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  5938. },
  5939. "type": "library",
  5940. "autoload": {
  5941. "files": [
  5942. "src/functions_include.php"
  5943. ],
  5944. "psr-4": {
  5945. "GuzzleHttp\\Promise\\": "src/"
  5946. }
  5947. },
  5948. "notification-url": "https://packagist.org/downloads/",
  5949. "license": [
  5950. "MIT"
  5951. ],
  5952. "authors": [
  5953. {
  5954. "name": "Graham Campbell",
  5955. "email": "hello@gjcampbell.co.uk",
  5956. "homepage": "https://github.com/GrahamCampbell"
  5957. },
  5958. {
  5959. "name": "Michael Dowling",
  5960. "email": "mtdowling@gmail.com",
  5961. "homepage": "https://github.com/mtdowling"
  5962. },
  5963. {
  5964. "name": "Tobias Nyholm",
  5965. "email": "tobias.nyholm@gmail.com",
  5966. "homepage": "https://github.com/Nyholm"
  5967. },
  5968. {
  5969. "name": "Tobias Schultze",
  5970. "email": "webmaster@tubo-world.de",
  5971. "homepage": "https://github.com/Tobion"
  5972. }
  5973. ],
  5974. "description": "Guzzle promises library",
  5975. "keywords": [
  5976. "promise"
  5977. ],
  5978. "support": {
  5979. "issues": "https://github.com/guzzle/promises/issues",
  5980. "source": "https://github.com/guzzle/promises/tree/1.5.3"
  5981. },
  5982. "funding": [
  5983. {
  5984. "url": "https://github.com/GrahamCampbell",
  5985. "type": "github"
  5986. },
  5987. {
  5988. "url": "https://github.com/Nyholm",
  5989. "type": "github"
  5990. },
  5991. {
  5992. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  5993. "type": "tidelift"
  5994. }
  5995. ],
  5996. "time": "2023-05-21T12:31:43+00:00"
  5997. },
  5998. {
  5999. "name": "guzzlehttp/psr7",
  6000. "version": "1.9.1",
  6001. "source": {
  6002. "type": "git",
  6003. "url": "https://github.com/guzzle/psr7.git",
  6004. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b"
  6005. },
  6006. "dist": {
  6007. "type": "zip",
  6008. "url": "https://api.github.com/repos/guzzle/psr7/zipball/e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  6009. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  6010. "shasum": ""
  6011. },
  6012. "require": {
  6013. "php": ">=5.4.0",
  6014. "psr/http-message": "~1.0",
  6015. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  6016. },
  6017. "provide": {
  6018. "psr/http-message-implementation": "1.0"
  6019. },
  6020. "require-dev": {
  6021. "ext-zlib": "*",
  6022. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  6023. },
  6024. "suggest": {
  6025. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  6026. },
  6027. "type": "library",
  6028. "autoload": {
  6029. "files": [
  6030. "src/functions_include.php"
  6031. ],
  6032. "psr-4": {
  6033. "GuzzleHttp\\Psr7\\": "src/"
  6034. }
  6035. },
  6036. "notification-url": "https://packagist.org/downloads/",
  6037. "license": [
  6038. "MIT"
  6039. ],
  6040. "authors": [
  6041. {
  6042. "name": "Graham Campbell",
  6043. "email": "hello@gjcampbell.co.uk",
  6044. "homepage": "https://github.com/GrahamCampbell"
  6045. },
  6046. {
  6047. "name": "Michael Dowling",
  6048. "email": "mtdowling@gmail.com",
  6049. "homepage": "https://github.com/mtdowling"
  6050. },
  6051. {
  6052. "name": "George Mponos",
  6053. "email": "gmponos@gmail.com",
  6054. "homepage": "https://github.com/gmponos"
  6055. },
  6056. {
  6057. "name": "Tobias Nyholm",
  6058. "email": "tobias.nyholm@gmail.com",
  6059. "homepage": "https://github.com/Nyholm"
  6060. },
  6061. {
  6062. "name": "Márk Sági-Kazár",
  6063. "email": "mark.sagikazar@gmail.com",
  6064. "homepage": "https://github.com/sagikazarmark"
  6065. },
  6066. {
  6067. "name": "Tobias Schultze",
  6068. "email": "webmaster@tubo-world.de",
  6069. "homepage": "https://github.com/Tobion"
  6070. }
  6071. ],
  6072. "description": "PSR-7 message implementation that also provides common utility methods",
  6073. "keywords": [
  6074. "http",
  6075. "message",
  6076. "psr-7",
  6077. "request",
  6078. "response",
  6079. "stream",
  6080. "uri",
  6081. "url"
  6082. ],
  6083. "support": {
  6084. "issues": "https://github.com/guzzle/psr7/issues",
  6085. "source": "https://github.com/guzzle/psr7/tree/1.9.1"
  6086. },
  6087. "funding": [
  6088. {
  6089. "url": "https://github.com/GrahamCampbell",
  6090. "type": "github"
  6091. },
  6092. {
  6093. "url": "https://github.com/Nyholm",
  6094. "type": "github"
  6095. },
  6096. {
  6097. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  6098. "type": "tidelift"
  6099. }
  6100. ],
  6101. "time": "2023-04-17T16:00:37+00:00"
  6102. },
  6103. {
  6104. "name": "kint-php/kint",
  6105. "version": "5.1.1",
  6106. "source": {
  6107. "type": "git",
  6108. "url": "https://github.com/kint-php/kint.git",
  6109. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b"
  6110. },
  6111. "dist": {
  6112. "type": "zip",
  6113. "url": "https://api.github.com/repos/kint-php/kint/zipball/8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  6114. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  6115. "shasum": ""
  6116. },
  6117. "require": {
  6118. "php": ">=7.1"
  6119. },
  6120. "require-dev": {
  6121. "friendsofphp/php-cs-fixer": "^3",
  6122. "phpspec/prophecy-phpunit": "^2",
  6123. "phpunit/phpunit": "^9",
  6124. "seld/phar-utils": "^1",
  6125. "symfony/finder": ">=4.0",
  6126. "vimeo/psalm": "^5"
  6127. },
  6128. "suggest": {
  6129. "kint-php/kint-helpers": "Provides extra helper functions",
  6130. "kint-php/kint-twig": "Provides d() and s() functions in twig templates"
  6131. },
  6132. "type": "library",
  6133. "autoload": {
  6134. "files": [
  6135. "init.php"
  6136. ],
  6137. "psr-4": {
  6138. "Kint\\": "src/"
  6139. }
  6140. },
  6141. "notification-url": "https://packagist.org/downloads/",
  6142. "license": [
  6143. "MIT"
  6144. ],
  6145. "authors": [
  6146. {
  6147. "name": "Jonathan Vollebregt",
  6148. "homepage": "https://github.com/jnvsor"
  6149. },
  6150. {
  6151. "name": "Contributors",
  6152. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  6153. }
  6154. ],
  6155. "description": "Kint - debugging tool for PHP developers",
  6156. "homepage": "https://kint-php.github.io/kint/",
  6157. "keywords": [
  6158. "debug",
  6159. "kint",
  6160. "php"
  6161. ],
  6162. "support": {
  6163. "issues": "https://github.com/kint-php/kint/issues",
  6164. "source": "https://github.com/kint-php/kint/tree/5.1.1"
  6165. },
  6166. "time": "2024-04-26T14:20:09+00:00"
  6167. },
  6168. {
  6169. "name": "laminas/laminas-escaper",
  6170. "version": "2.13.0",
  6171. "source": {
  6172. "type": "git",
  6173. "url": "https://github.com/laminas/laminas-escaper.git",
  6174. "reference": "af459883f4018d0f8a0c69c7a209daef3bf973ba"
  6175. },
  6176. "dist": {
  6177. "type": "zip",
  6178. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/af459883f4018d0f8a0c69c7a209daef3bf973ba",
  6179. "reference": "af459883f4018d0f8a0c69c7a209daef3bf973ba",
  6180. "shasum": ""
  6181. },
  6182. "require": {
  6183. "ext-ctype": "*",
  6184. "ext-mbstring": "*",
  6185. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  6186. },
  6187. "conflict": {
  6188. "zendframework/zend-escaper": "*"
  6189. },
  6190. "require-dev": {
  6191. "infection/infection": "^0.27.0",
  6192. "laminas/laminas-coding-standard": "~2.5.0",
  6193. "maglnet/composer-require-checker": "^3.8.0",
  6194. "phpunit/phpunit": "^9.6.7",
  6195. "psalm/plugin-phpunit": "^0.18.4",
  6196. "vimeo/psalm": "^5.9"
  6197. },
  6198. "type": "library",
  6199. "autoload": {
  6200. "psr-4": {
  6201. "Laminas\\Escaper\\": "src/"
  6202. }
  6203. },
  6204. "notification-url": "https://packagist.org/downloads/",
  6205. "license": [
  6206. "BSD-3-Clause"
  6207. ],
  6208. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  6209. "homepage": "https://laminas.dev",
  6210. "keywords": [
  6211. "escaper",
  6212. "laminas"
  6213. ],
  6214. "support": {
  6215. "chat": "https://laminas.dev/chat",
  6216. "docs": "https://docs.laminas.dev/laminas-escaper/",
  6217. "forum": "https://discourse.laminas.dev",
  6218. "issues": "https://github.com/laminas/laminas-escaper/issues",
  6219. "rss": "https://github.com/laminas/laminas-escaper/releases.atom",
  6220. "source": "https://github.com/laminas/laminas-escaper"
  6221. },
  6222. "funding": [
  6223. {
  6224. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6225. "type": "community_bridge"
  6226. }
  6227. ],
  6228. "time": "2023-10-10T08:35:13+00:00"
  6229. },
  6230. {
  6231. "name": "laminas/laminas-feed",
  6232. "version": "2.22.0",
  6233. "source": {
  6234. "type": "git",
  6235. "url": "https://github.com/laminas/laminas-feed.git",
  6236. "reference": "669792b819fca7274698147ad7a2ecc1b0a9b141"
  6237. },
  6238. "dist": {
  6239. "type": "zip",
  6240. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/669792b819fca7274698147ad7a2ecc1b0a9b141",
  6241. "reference": "669792b819fca7274698147ad7a2ecc1b0a9b141",
  6242. "shasum": ""
  6243. },
  6244. "require": {
  6245. "ext-dom": "*",
  6246. "ext-libxml": "*",
  6247. "laminas/laminas-escaper": "^2.9",
  6248. "laminas/laminas-stdlib": "^3.6",
  6249. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  6250. },
  6251. "conflict": {
  6252. "laminas/laminas-servicemanager": "<3.3",
  6253. "zendframework/zend-feed": "*"
  6254. },
  6255. "require-dev": {
  6256. "laminas/laminas-cache": "^2.13.2 || ^3.11",
  6257. "laminas/laminas-cache-storage-adapter-memory": "^1.1.0 || ^2.2",
  6258. "laminas/laminas-coding-standard": "~2.5.0",
  6259. "laminas/laminas-db": "^2.18",
  6260. "laminas/laminas-http": "^2.18",
  6261. "laminas/laminas-servicemanager": "^3.21.0",
  6262. "laminas/laminas-validator": "^2.38",
  6263. "phpunit/phpunit": "^10.3.1",
  6264. "psalm/plugin-phpunit": "^0.18.4",
  6265. "psr/http-message": "^2.0",
  6266. "vimeo/psalm": "^5.14.1"
  6267. },
  6268. "suggest": {
  6269. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  6270. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  6271. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  6272. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  6273. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  6274. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  6275. },
  6276. "type": "library",
  6277. "autoload": {
  6278. "psr-4": {
  6279. "Laminas\\Feed\\": "src/"
  6280. }
  6281. },
  6282. "notification-url": "https://packagist.org/downloads/",
  6283. "license": [
  6284. "BSD-3-Clause"
  6285. ],
  6286. "description": "provides functionality for creating and consuming RSS and Atom feeds",
  6287. "homepage": "https://laminas.dev",
  6288. "keywords": [
  6289. "atom",
  6290. "feed",
  6291. "laminas",
  6292. "rss"
  6293. ],
  6294. "support": {
  6295. "chat": "https://laminas.dev/chat",
  6296. "docs": "https://docs.laminas.dev/laminas-feed/",
  6297. "forum": "https://discourse.laminas.dev",
  6298. "issues": "https://github.com/laminas/laminas-feed/issues",
  6299. "rss": "https://github.com/laminas/laminas-feed/releases.atom",
  6300. "source": "https://github.com/laminas/laminas-feed"
  6301. },
  6302. "funding": [
  6303. {
  6304. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6305. "type": "community_bridge"
  6306. }
  6307. ],
  6308. "time": "2023-10-11T20:16:37+00:00"
  6309. },
  6310. {
  6311. "name": "laminas/laminas-servicemanager",
  6312. "version": "3.22.1",
  6313. "source": {
  6314. "type": "git",
  6315. "url": "https://github.com/laminas/laminas-servicemanager.git",
  6316. "reference": "de98d297d4743956a0558a6d71616979ff779328"
  6317. },
  6318. "dist": {
  6319. "type": "zip",
  6320. "url": "https://api.github.com/repos/laminas/laminas-servicemanager/zipball/de98d297d4743956a0558a6d71616979ff779328",
  6321. "reference": "de98d297d4743956a0558a6d71616979ff779328",
  6322. "shasum": ""
  6323. },
  6324. "require": {
  6325. "laminas/laminas-stdlib": "^3.17",
  6326. "php": "~8.1.0 || ~8.2.0 || ~8.3.0",
  6327. "psr/container": "^1.0"
  6328. },
  6329. "conflict": {
  6330. "ext-psr": "*",
  6331. "laminas/laminas-code": "<4.10.0",
  6332. "zendframework/zend-code": "<3.3.1",
  6333. "zendframework/zend-servicemanager": "*"
  6334. },
  6335. "provide": {
  6336. "psr/container-implementation": "^1.0"
  6337. },
  6338. "replace": {
  6339. "container-interop/container-interop": "^1.2.0"
  6340. },
  6341. "require-dev": {
  6342. "composer/package-versions-deprecated": "^1.11.99.5",
  6343. "friendsofphp/proxy-manager-lts": "^1.0.14",
  6344. "laminas/laminas-code": "^4.10.0",
  6345. "laminas/laminas-coding-standard": "~2.5.0",
  6346. "laminas/laminas-container-config-test": "^0.8",
  6347. "mikey179/vfsstream": "^1.6.11",
  6348. "phpbench/phpbench": "^1.2.9",
  6349. "phpunit/phpunit": "^10.4",
  6350. "psalm/plugin-phpunit": "^0.18.4",
  6351. "vimeo/psalm": "^5.8.0"
  6352. },
  6353. "suggest": {
  6354. "friendsofphp/proxy-manager-lts": "ProxyManager ^2.1.1 to handle lazy initialization of services"
  6355. },
  6356. "bin": [
  6357. "bin/generate-deps-for-config-factory",
  6358. "bin/generate-factory-for-class"
  6359. ],
  6360. "type": "library",
  6361. "autoload": {
  6362. "files": [
  6363. "src/autoload.php"
  6364. ],
  6365. "psr-4": {
  6366. "Laminas\\ServiceManager\\": "src/"
  6367. }
  6368. },
  6369. "notification-url": "https://packagist.org/downloads/",
  6370. "license": [
  6371. "BSD-3-Clause"
  6372. ],
  6373. "description": "Factory-Driven Dependency Injection Container",
  6374. "homepage": "https://laminas.dev",
  6375. "keywords": [
  6376. "PSR-11",
  6377. "dependency-injection",
  6378. "di",
  6379. "dic",
  6380. "laminas",
  6381. "service-manager",
  6382. "servicemanager"
  6383. ],
  6384. "support": {
  6385. "chat": "https://laminas.dev/chat",
  6386. "docs": "https://docs.laminas.dev/laminas-servicemanager/",
  6387. "forum": "https://discourse.laminas.dev",
  6388. "issues": "https://github.com/laminas/laminas-servicemanager/issues",
  6389. "rss": "https://github.com/laminas/laminas-servicemanager/releases.atom",
  6390. "source": "https://github.com/laminas/laminas-servicemanager"
  6391. },
  6392. "funding": [
  6393. {
  6394. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6395. "type": "community_bridge"
  6396. }
  6397. ],
  6398. "time": "2023-10-24T11:19:47+00:00"
  6399. },
  6400. {
  6401. "name": "laminas/laminas-stdlib",
  6402. "version": "3.19.0",
  6403. "source": {
  6404. "type": "git",
  6405. "url": "https://github.com/laminas/laminas-stdlib.git",
  6406. "reference": "6a192dd0882b514e45506f533b833b623b78fff3"
  6407. },
  6408. "dist": {
  6409. "type": "zip",
  6410. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/6a192dd0882b514e45506f533b833b623b78fff3",
  6411. "reference": "6a192dd0882b514e45506f533b833b623b78fff3",
  6412. "shasum": ""
  6413. },
  6414. "require": {
  6415. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  6416. },
  6417. "conflict": {
  6418. "zendframework/zend-stdlib": "*"
  6419. },
  6420. "require-dev": {
  6421. "laminas/laminas-coding-standard": "^2.5",
  6422. "phpbench/phpbench": "^1.2.15",
  6423. "phpunit/phpunit": "^10.5.8",
  6424. "psalm/plugin-phpunit": "^0.18.4",
  6425. "vimeo/psalm": "^5.20.0"
  6426. },
  6427. "type": "library",
  6428. "autoload": {
  6429. "psr-4": {
  6430. "Laminas\\Stdlib\\": "src/"
  6431. }
  6432. },
  6433. "notification-url": "https://packagist.org/downloads/",
  6434. "license": [
  6435. "BSD-3-Clause"
  6436. ],
  6437. "description": "SPL extensions, array utilities, error handlers, and more",
  6438. "homepage": "https://laminas.dev",
  6439. "keywords": [
  6440. "laminas",
  6441. "stdlib"
  6442. ],
  6443. "support": {
  6444. "chat": "https://laminas.dev/chat",
  6445. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  6446. "forum": "https://discourse.laminas.dev",
  6447. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  6448. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  6449. "source": "https://github.com/laminas/laminas-stdlib"
  6450. },
  6451. "funding": [
  6452. {
  6453. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6454. "type": "community_bridge"
  6455. }
  6456. ],
  6457. "time": "2024-01-19T12:39:49+00:00"
  6458. },
  6459. {
  6460. "name": "laminas/laminas-text",
  6461. "version": "2.11.0",
  6462. "source": {
  6463. "type": "git",
  6464. "url": "https://github.com/laminas/laminas-text.git",
  6465. "reference": "d799f3ccb3547e9e6ab313447138bae7009c7cc7"
  6466. },
  6467. "dist": {
  6468. "type": "zip",
  6469. "url": "https://api.github.com/repos/laminas/laminas-text/zipball/d799f3ccb3547e9e6ab313447138bae7009c7cc7",
  6470. "reference": "d799f3ccb3547e9e6ab313447138bae7009c7cc7",
  6471. "shasum": ""
  6472. },
  6473. "require": {
  6474. "laminas/laminas-servicemanager": "^3.22.0",
  6475. "laminas/laminas-stdlib": "^3.7.1",
  6476. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  6477. },
  6478. "conflict": {
  6479. "zendframework/zend-text": "*"
  6480. },
  6481. "require-dev": {
  6482. "laminas/laminas-coding-standard": "~2.5.0",
  6483. "phpunit/phpunit": "^9.5",
  6484. "psalm/plugin-phpunit": "^0.18.4",
  6485. "vimeo/psalm": "^5.1"
  6486. },
  6487. "type": "library",
  6488. "autoload": {
  6489. "psr-4": {
  6490. "Laminas\\Text\\": "src/"
  6491. }
  6492. },
  6493. "notification-url": "https://packagist.org/downloads/",
  6494. "license": [
  6495. "BSD-3-Clause"
  6496. ],
  6497. "description": "Create FIGlets and text-based tables",
  6498. "homepage": "https://laminas.dev",
  6499. "keywords": [
  6500. "laminas",
  6501. "text"
  6502. ],
  6503. "support": {
  6504. "chat": "https://laminas.dev/chat",
  6505. "docs": "https://docs.laminas.dev/laminas-text/",
  6506. "forum": "https://discourse.laminas.dev",
  6507. "issues": "https://github.com/laminas/laminas-text/issues",
  6508. "rss": "https://github.com/laminas/laminas-text/releases.atom",
  6509. "source": "https://github.com/laminas/laminas-text"
  6510. },
  6511. "funding": [
  6512. {
  6513. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6514. "type": "community_bridge"
  6515. }
  6516. ],
  6517. "time": "2023-11-07T16:45:45+00:00"
  6518. },
  6519. {
  6520. "name": "league/container",
  6521. "version": "2.5.0",
  6522. "source": {
  6523. "type": "git",
  6524. "url": "https://github.com/thephpleague/container.git",
  6525. "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3"
  6526. },
  6527. "dist": {
  6528. "type": "zip",
  6529. "url": "https://api.github.com/repos/thephpleague/container/zipball/8438dc47a0674e3378bcce893a0a04d79a2c22b3",
  6530. "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3",
  6531. "shasum": ""
  6532. },
  6533. "require": {
  6534. "container-interop/container-interop": "^1.2",
  6535. "php": "^5.4 || ^7.0 || ^8.0"
  6536. },
  6537. "provide": {
  6538. "container-interop/container-interop-implementation": "^1.2",
  6539. "psr/container-implementation": "^1.0"
  6540. },
  6541. "replace": {
  6542. "orno/di": "~2.0"
  6543. },
  6544. "require-dev": {
  6545. "phpunit/phpunit": "^4.8.36",
  6546. "scrutinizer/ocular": "^1.3",
  6547. "squizlabs/php_codesniffer": "^3.5"
  6548. },
  6549. "type": "library",
  6550. "extra": {
  6551. "branch-alias": {
  6552. "dev-2.x": "2.x-dev",
  6553. "dev-1.x": "1.x-dev"
  6554. }
  6555. },
  6556. "autoload": {
  6557. "psr-4": {
  6558. "League\\Container\\": "src"
  6559. }
  6560. },
  6561. "notification-url": "https://packagist.org/downloads/",
  6562. "license": [
  6563. "MIT"
  6564. ],
  6565. "authors": [
  6566. {
  6567. "name": "Phil Bennett",
  6568. "email": "philipobenito@gmail.com",
  6569. "homepage": "http://www.philipobenito.com",
  6570. "role": "Developer"
  6571. }
  6572. ],
  6573. "description": "A fast and intuitive dependency injection container.",
  6574. "homepage": "https://github.com/thephpleague/container",
  6575. "keywords": [
  6576. "container",
  6577. "dependency",
  6578. "di",
  6579. "injection",
  6580. "league",
  6581. "provider",
  6582. "service"
  6583. ],
  6584. "support": {
  6585. "issues": "https://github.com/thephpleague/container/issues",
  6586. "source": "https://github.com/thephpleague/container/tree/2.5.0"
  6587. },
  6588. "funding": [
  6589. {
  6590. "url": "https://github.com/philipobenito",
  6591. "type": "github"
  6592. }
  6593. ],
  6594. "time": "2021-02-22T09:20:06+00:00"
  6595. },
  6596. {
  6597. "name": "longwave/laminas-diactoros",
  6598. "version": "2.14.3",
  6599. "source": {
  6600. "type": "git",
  6601. "url": "https://github.com/longwave/laminas-diactoros.git",
  6602. "reference": "2bd6b47a090ae924ecc298657d01f8a462f7507b"
  6603. },
  6604. "dist": {
  6605. "type": "zip",
  6606. "url": "https://api.github.com/repos/longwave/laminas-diactoros/zipball/2bd6b47a090ae924ecc298657d01f8a462f7507b",
  6607. "reference": "2bd6b47a090ae924ecc298657d01f8a462f7507b",
  6608. "shasum": ""
  6609. },
  6610. "require": {
  6611. "php": "^7.3 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
  6612. "psr/http-factory": "^1.0",
  6613. "psr/http-message": "^1.0"
  6614. },
  6615. "conflict": {
  6616. "phpspec/prophecy": "<1.9.0",
  6617. "zendframework/zend-diactoros": "*"
  6618. },
  6619. "provide": {
  6620. "psr/http-factory-implementation": "1.0",
  6621. "psr/http-message-implementation": "1.0"
  6622. },
  6623. "replace": {
  6624. "laminas/laminas-diactoros": "2.18.1"
  6625. },
  6626. "require-dev": {
  6627. "ext-curl": "*",
  6628. "ext-dom": "*",
  6629. "ext-gd": "*",
  6630. "ext-libxml": "*",
  6631. "http-interop/http-factory-tests": "^0.9.0",
  6632. "laminas/laminas-coding-standard": "~2.3.0",
  6633. "php-http/psr7-integration-tests": "^1.1.1",
  6634. "phpspec/prophecy-phpunit": "^2.0",
  6635. "phpunit/phpunit": "^9.5",
  6636. "psalm/plugin-phpunit": "^0.17.0",
  6637. "vimeo/psalm": "^4.24.0"
  6638. },
  6639. "type": "library",
  6640. "extra": {
  6641. "laminas": {
  6642. "config-provider": "Laminas\\Diactoros\\ConfigProvider",
  6643. "module": "Laminas\\Diactoros"
  6644. }
  6645. },
  6646. "autoload": {
  6647. "files": [
  6648. "src/functions/create_uploaded_file.php",
  6649. "src/functions/marshal_headers_from_sapi.php",
  6650. "src/functions/marshal_method_from_sapi.php",
  6651. "src/functions/marshal_protocol_version_from_sapi.php",
  6652. "src/functions/marshal_uri_from_sapi.php",
  6653. "src/functions/normalize_server.php",
  6654. "src/functions/normalize_uploaded_files.php",
  6655. "src/functions/parse_cookie_header.php",
  6656. "src/functions/create_uploaded_file.legacy.php",
  6657. "src/functions/marshal_headers_from_sapi.legacy.php",
  6658. "src/functions/marshal_method_from_sapi.legacy.php",
  6659. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  6660. "src/functions/marshal_uri_from_sapi.legacy.php",
  6661. "src/functions/normalize_server.legacy.php",
  6662. "src/functions/normalize_uploaded_files.legacy.php",
  6663. "src/functions/parse_cookie_header.legacy.php"
  6664. ],
  6665. "psr-4": {
  6666. "Laminas\\Diactoros\\": "src/"
  6667. }
  6668. },
  6669. "notification-url": "https://packagist.org/downloads/",
  6670. "license": [
  6671. "BSD-3-Clause"
  6672. ],
  6673. "description": "PSR HTTP Message implementations",
  6674. "homepage": "https://laminas.dev",
  6675. "keywords": [
  6676. "http",
  6677. "laminas",
  6678. "psr",
  6679. "psr-17",
  6680. "psr-7"
  6681. ],
  6682. "support": {
  6683. "chat": "https://laminas.dev/chat",
  6684. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  6685. "forum": "https://discourse.laminas.dev",
  6686. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  6687. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  6688. "source": "https://github.com/laminas/laminas-diactoros"
  6689. },
  6690. "time": "2024-09-11T14:26:18+00:00"
  6691. },
  6692. {
  6693. "name": "masterminds/html5",
  6694. "version": "2.7.6",
  6695. "source": {
  6696. "type": "git",
  6697. "url": "https://github.com/Masterminds/html5-php.git",
  6698. "reference": "897eb517a343a2281f11bc5556d6548db7d93947"
  6699. },
  6700. "dist": {
  6701. "type": "zip",
  6702. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/897eb517a343a2281f11bc5556d6548db7d93947",
  6703. "reference": "897eb517a343a2281f11bc5556d6548db7d93947",
  6704. "shasum": ""
  6705. },
  6706. "require": {
  6707. "ext-ctype": "*",
  6708. "ext-dom": "*",
  6709. "ext-libxml": "*",
  6710. "php": ">=5.3.0"
  6711. },
  6712. "require-dev": {
  6713. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7"
  6714. },
  6715. "type": "library",
  6716. "extra": {
  6717. "branch-alias": {
  6718. "dev-master": "2.7-dev"
  6719. }
  6720. },
  6721. "autoload": {
  6722. "psr-4": {
  6723. "Masterminds\\": "src"
  6724. }
  6725. },
  6726. "notification-url": "https://packagist.org/downloads/",
  6727. "license": [
  6728. "MIT"
  6729. ],
  6730. "authors": [
  6731. {
  6732. "name": "Matt Butcher",
  6733. "email": "technosophos@gmail.com"
  6734. },
  6735. {
  6736. "name": "Matt Farina",
  6737. "email": "matt@mattfarina.com"
  6738. },
  6739. {
  6740. "name": "Asmir Mustafic",
  6741. "email": "goetas@gmail.com"
  6742. }
  6743. ],
  6744. "description": "An HTML5 parser and serializer.",
  6745. "homepage": "http://masterminds.github.io/html5-php",
  6746. "keywords": [
  6747. "HTML5",
  6748. "dom",
  6749. "html",
  6750. "parser",
  6751. "querypath",
  6752. "serializer",
  6753. "xml"
  6754. ],
  6755. "support": {
  6756. "issues": "https://github.com/Masterminds/html5-php/issues",
  6757. "source": "https://github.com/Masterminds/html5-php/tree/2.7.6"
  6758. },
  6759. "time": "2022-08-18T16:18:26+00:00"
  6760. },
  6761. {
  6762. "name": "mathieuviossat/arraytotexttable",
  6763. "version": "v1.0.11",
  6764. "source": {
  6765. "type": "git",
  6766. "url": "https://github.com/viossat/arraytotexttable.git",
  6767. "reference": "069561a0895fb69ea1939fcd09262ccea081cbb8"
  6768. },
  6769. "dist": {
  6770. "type": "zip",
  6771. "url": "https://api.github.com/repos/viossat/arraytotexttable/zipball/069561a0895fb69ea1939fcd09262ccea081cbb8",
  6772. "reference": "069561a0895fb69ea1939fcd09262ccea081cbb8",
  6773. "shasum": ""
  6774. },
  6775. "require": {
  6776. "laminas/laminas-text": "^2.10",
  6777. "php": ">=8.0.0"
  6778. },
  6779. "type": "library",
  6780. "autoload": {
  6781. "psr-4": {
  6782. "MathieuViossat\\Util\\": "src/"
  6783. }
  6784. },
  6785. "notification-url": "https://packagist.org/downloads/",
  6786. "license": [
  6787. "MIT"
  6788. ],
  6789. "authors": [
  6790. {
  6791. "name": "Mathieu Viossat",
  6792. "email": "mathieu@viossat.fr",
  6793. "homepage": "https://viossat.fr"
  6794. }
  6795. ],
  6796. "description": "Display arrays in terminal",
  6797. "homepage": "https://github.com/viossat/arraytotexttable",
  6798. "keywords": [
  6799. "array",
  6800. "ascii",
  6801. "table",
  6802. "terminal",
  6803. "text",
  6804. "unicode"
  6805. ],
  6806. "support": {
  6807. "issues": "https://github.com/viossat/arraytotexttable/issues",
  6808. "source": "https://github.com/viossat/arraytotexttable/tree/v1.0.11"
  6809. },
  6810. "time": "2024-02-13T17:19:01+00:00"
  6811. },
  6812. {
  6813. "name": "mglaman/phpstan-drupal",
  6814. "version": "1.2.12",
  6815. "source": {
  6816. "type": "git",
  6817. "url": "https://github.com/mglaman/phpstan-drupal.git",
  6818. "reference": "346bdddda169a56b6ebb7dc17893f0ac8f33a4f1"
  6819. },
  6820. "dist": {
  6821. "type": "zip",
  6822. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/346bdddda169a56b6ebb7dc17893f0ac8f33a4f1",
  6823. "reference": "346bdddda169a56b6ebb7dc17893f0ac8f33a4f1",
  6824. "shasum": ""
  6825. },
  6826. "require": {
  6827. "php": "^8.1",
  6828. "phpstan/phpstan": "^1.10.56",
  6829. "phpstan/phpstan-deprecation-rules": "^1.1.4",
  6830. "symfony/finder": "^4.2 || ^5.0 || ^6.0 || ^7.0",
  6831. "symfony/yaml": "^4.2|| ^5.0 || ^6.0 || ^7.0",
  6832. "webflo/drupal-finder": "^1.2"
  6833. },
  6834. "require-dev": {
  6835. "behat/mink": "^1.8",
  6836. "composer/installers": "^1.9",
  6837. "drupal/core-recommended": "^10",
  6838. "drush/drush": "^10.0 || ^11 || ^12 || ^13@beta",
  6839. "phpstan/extension-installer": "^1.1",
  6840. "phpstan/phpstan-strict-rules": "^1.0",
  6841. "phpunit/phpunit": "^8.5 || ^9 || ^10 || ^11",
  6842. "slevomat/coding-standard": "^7.1",
  6843. "squizlabs/php_codesniffer": "^3.3",
  6844. "symfony/phpunit-bridge": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  6845. },
  6846. "suggest": {
  6847. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  6848. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  6849. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  6850. },
  6851. "type": "phpstan-extension",
  6852. "extra": {
  6853. "branch-alias": {
  6854. "dev-main": "1.0-dev"
  6855. },
  6856. "installer-paths": {
  6857. "tests/fixtures/drupal/core": [
  6858. "type:drupal-core"
  6859. ],
  6860. "tests/fixtures/drupal/libraries/{$name}": [
  6861. "type:drupal-library"
  6862. ],
  6863. "tests/fixtures/drupal/modules/contrib/{$name}": [
  6864. "type:drupal-module"
  6865. ],
  6866. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  6867. "type:drupal-profile"
  6868. ],
  6869. "tests/fixtures/drupal/themes/contrib/{$name}": [
  6870. "type:drupal-theme"
  6871. ]
  6872. },
  6873. "phpstan": {
  6874. "includes": [
  6875. "extension.neon",
  6876. "rules.neon"
  6877. ]
  6878. }
  6879. },
  6880. "autoload": {
  6881. "psr-4": {
  6882. "mglaman\\PHPStanDrupal\\": "src/"
  6883. }
  6884. },
  6885. "notification-url": "https://packagist.org/downloads/",
  6886. "license": [
  6887. "MIT"
  6888. ],
  6889. "authors": [
  6890. {
  6891. "name": "Matt Glaman",
  6892. "email": "nmd.matt@gmail.com"
  6893. }
  6894. ],
  6895. "description": "Drupal extension and rules for PHPStan",
  6896. "support": {
  6897. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  6898. "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.12"
  6899. },
  6900. "funding": [
  6901. {
  6902. "url": "https://github.com/mglaman",
  6903. "type": "github"
  6904. },
  6905. {
  6906. "url": "https://opencollective.com/phpstan-drupal",
  6907. "type": "open_collective"
  6908. },
  6909. {
  6910. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  6911. "type": "tidelift"
  6912. }
  6913. ],
  6914. "time": "2024-08-07T21:15:21+00:00"
  6915. },
  6916. {
  6917. "name": "nikic/php-parser",
  6918. "version": "v4.19.1",
  6919. "source": {
  6920. "type": "git",
  6921. "url": "https://github.com/nikic/PHP-Parser.git",
  6922. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b"
  6923. },
  6924. "dist": {
  6925. "type": "zip",
  6926. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4e1b88d21c69391150ace211e9eaf05810858d0b",
  6927. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b",
  6928. "shasum": ""
  6929. },
  6930. "require": {
  6931. "ext-tokenizer": "*",
  6932. "php": ">=7.1"
  6933. },
  6934. "require-dev": {
  6935. "ircmaxell/php-yacc": "^0.0.7",
  6936. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  6937. },
  6938. "bin": [
  6939. "bin/php-parse"
  6940. ],
  6941. "type": "library",
  6942. "extra": {
  6943. "branch-alias": {
  6944. "dev-master": "4.9-dev"
  6945. }
  6946. },
  6947. "autoload": {
  6948. "psr-4": {
  6949. "PhpParser\\": "lib/PhpParser"
  6950. }
  6951. },
  6952. "notification-url": "https://packagist.org/downloads/",
  6953. "license": [
  6954. "BSD-3-Clause"
  6955. ],
  6956. "authors": [
  6957. {
  6958. "name": "Nikita Popov"
  6959. }
  6960. ],
  6961. "description": "A PHP parser written in PHP",
  6962. "keywords": [
  6963. "parser",
  6964. "php"
  6965. ],
  6966. "support": {
  6967. "issues": "https://github.com/nikic/PHP-Parser/issues",
  6968. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.1"
  6969. },
  6970. "time": "2024-03-17T08:10:35+00:00"
  6971. },
  6972. {
  6973. "name": "pear/archive_tar",
  6974. "version": "1.4.14",
  6975. "source": {
  6976. "type": "git",
  6977. "url": "https://github.com/pear/Archive_Tar.git",
  6978. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  6979. },
  6980. "dist": {
  6981. "type": "zip",
  6982. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  6983. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  6984. "shasum": ""
  6985. },
  6986. "require": {
  6987. "pear/pear-core-minimal": "^1.10.0alpha2",
  6988. "php": ">=5.2.0"
  6989. },
  6990. "require-dev": {
  6991. "phpunit/phpunit": "*"
  6992. },
  6993. "suggest": {
  6994. "ext-bz2": "Bz2 compression support.",
  6995. "ext-xz": "Lzma2 compression support.",
  6996. "ext-zlib": "Gzip compression support."
  6997. },
  6998. "type": "library",
  6999. "extra": {
  7000. "branch-alias": {
  7001. "dev-master": "1.4.x-dev"
  7002. }
  7003. },
  7004. "autoload": {
  7005. "psr-0": {
  7006. "Archive_Tar": ""
  7007. }
  7008. },
  7009. "notification-url": "https://packagist.org/downloads/",
  7010. "include-path": [
  7011. "./"
  7012. ],
  7013. "license": [
  7014. "BSD-3-Clause"
  7015. ],
  7016. "authors": [
  7017. {
  7018. "name": "Vincent Blavet",
  7019. "email": "vincent@phpconcept.net"
  7020. },
  7021. {
  7022. "name": "Greg Beaver",
  7023. "email": "greg@chiaraquartet.net"
  7024. },
  7025. {
  7026. "name": "Michiel Rook",
  7027. "email": "mrook@php.net"
  7028. }
  7029. ],
  7030. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  7031. "homepage": "https://github.com/pear/Archive_Tar",
  7032. "keywords": [
  7033. "archive",
  7034. "tar"
  7035. ],
  7036. "support": {
  7037. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  7038. "source": "https://github.com/pear/Archive_Tar"
  7039. },
  7040. "funding": [
  7041. {
  7042. "url": "https://github.com/mrook",
  7043. "type": "github"
  7044. },
  7045. {
  7046. "url": "https://www.patreon.com/michielrook",
  7047. "type": "patreon"
  7048. }
  7049. ],
  7050. "time": "2021-07-20T13:53:39+00:00"
  7051. },
  7052. {
  7053. "name": "pear/console_getopt",
  7054. "version": "v1.4.3",
  7055. "source": {
  7056. "type": "git",
  7057. "url": "https://github.com/pear/Console_Getopt.git",
  7058. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  7059. },
  7060. "dist": {
  7061. "type": "zip",
  7062. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7063. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7064. "shasum": ""
  7065. },
  7066. "type": "library",
  7067. "autoload": {
  7068. "psr-0": {
  7069. "Console": "./"
  7070. }
  7071. },
  7072. "notification-url": "https://packagist.org/downloads/",
  7073. "include-path": [
  7074. "./"
  7075. ],
  7076. "license": [
  7077. "BSD-2-Clause"
  7078. ],
  7079. "authors": [
  7080. {
  7081. "name": "Andrei Zmievski",
  7082. "email": "andrei@php.net",
  7083. "role": "Lead"
  7084. },
  7085. {
  7086. "name": "Stig Bakken",
  7087. "email": "stig@php.net",
  7088. "role": "Developer"
  7089. },
  7090. {
  7091. "name": "Greg Beaver",
  7092. "email": "cellog@php.net",
  7093. "role": "Helper"
  7094. }
  7095. ],
  7096. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  7097. "support": {
  7098. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  7099. "source": "https://github.com/pear/Console_Getopt"
  7100. },
  7101. "time": "2019-11-20T18:27:48+00:00"
  7102. },
  7103. {
  7104. "name": "pear/pear-core-minimal",
  7105. "version": "v1.10.15",
  7106. "source": {
  7107. "type": "git",
  7108. "url": "https://github.com/pear/pear-core-minimal.git",
  7109. "reference": "ce0adade8b97561656ace07cdaac4751c271ea8c"
  7110. },
  7111. "dist": {
  7112. "type": "zip",
  7113. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/ce0adade8b97561656ace07cdaac4751c271ea8c",
  7114. "reference": "ce0adade8b97561656ace07cdaac4751c271ea8c",
  7115. "shasum": ""
  7116. },
  7117. "require": {
  7118. "pear/console_getopt": "~1.4",
  7119. "pear/pear_exception": "~1.0",
  7120. "php": ">=5.4"
  7121. },
  7122. "replace": {
  7123. "rsky/pear-core-min": "self.version"
  7124. },
  7125. "type": "library",
  7126. "autoload": {
  7127. "classmap": [
  7128. "src/"
  7129. ]
  7130. },
  7131. "notification-url": "https://packagist.org/downloads/",
  7132. "include-path": [
  7133. "src/"
  7134. ],
  7135. "license": [
  7136. "BSD-3-Clause"
  7137. ],
  7138. "authors": [
  7139. {
  7140. "name": "Christian Weiske",
  7141. "email": "cweiske@php.net",
  7142. "role": "Lead"
  7143. }
  7144. ],
  7145. "description": "Minimal set of PEAR core files to be used as composer dependency",
  7146. "support": {
  7147. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  7148. "source": "https://github.com/pear/pear-core-minimal"
  7149. },
  7150. "time": "2024-03-16T18:41:45+00:00"
  7151. },
  7152. {
  7153. "name": "pear/pear_exception",
  7154. "version": "v1.0.2",
  7155. "source": {
  7156. "type": "git",
  7157. "url": "https://github.com/pear/PEAR_Exception.git",
  7158. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  7159. },
  7160. "dist": {
  7161. "type": "zip",
  7162. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  7163. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  7164. "shasum": ""
  7165. },
  7166. "require": {
  7167. "php": ">=5.2.0"
  7168. },
  7169. "require-dev": {
  7170. "phpunit/phpunit": "<9"
  7171. },
  7172. "type": "class",
  7173. "extra": {
  7174. "branch-alias": {
  7175. "dev-master": "1.0.x-dev"
  7176. }
  7177. },
  7178. "autoload": {
  7179. "classmap": [
  7180. "PEAR/"
  7181. ]
  7182. },
  7183. "notification-url": "https://packagist.org/downloads/",
  7184. "include-path": [
  7185. "."
  7186. ],
  7187. "license": [
  7188. "BSD-2-Clause"
  7189. ],
  7190. "authors": [
  7191. {
  7192. "name": "Helgi Thormar",
  7193. "email": "dufuz@php.net"
  7194. },
  7195. {
  7196. "name": "Greg Beaver",
  7197. "email": "cellog@php.net"
  7198. }
  7199. ],
  7200. "description": "The PEAR Exception base class.",
  7201. "homepage": "https://github.com/pear/PEAR_Exception",
  7202. "keywords": [
  7203. "exception"
  7204. ],
  7205. "support": {
  7206. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  7207. "source": "https://github.com/pear/PEAR_Exception"
  7208. },
  7209. "time": "2021-03-21T15:43:46+00:00"
  7210. },
  7211. {
  7212. "name": "phpstan/phpstan",
  7213. "version": "1.12.3",
  7214. "source": {
  7215. "type": "git",
  7216. "url": "https://github.com/phpstan/phpstan.git",
  7217. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009"
  7218. },
  7219. "dist": {
  7220. "type": "zip",
  7221. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0fcbf194ab63d8159bb70d9aa3e1350051632009",
  7222. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009",
  7223. "shasum": ""
  7224. },
  7225. "require": {
  7226. "php": "^7.2|^8.0"
  7227. },
  7228. "conflict": {
  7229. "phpstan/phpstan-shim": "*"
  7230. },
  7231. "bin": [
  7232. "phpstan",
  7233. "phpstan.phar"
  7234. ],
  7235. "type": "library",
  7236. "autoload": {
  7237. "files": [
  7238. "bootstrap.php"
  7239. ]
  7240. },
  7241. "notification-url": "https://packagist.org/downloads/",
  7242. "license": [
  7243. "MIT"
  7244. ],
  7245. "description": "PHPStan - PHP Static Analysis Tool",
  7246. "keywords": [
  7247. "dev",
  7248. "static analysis"
  7249. ],
  7250. "support": {
  7251. "docs": "https://phpstan.org/user-guide/getting-started",
  7252. "forum": "https://github.com/phpstan/phpstan/discussions",
  7253. "issues": "https://github.com/phpstan/phpstan/issues",
  7254. "security": "https://github.com/phpstan/phpstan/security/policy",
  7255. "source": "https://github.com/phpstan/phpstan-src"
  7256. },
  7257. "funding": [
  7258. {
  7259. "url": "https://github.com/ondrejmirtes",
  7260. "type": "github"
  7261. },
  7262. {
  7263. "url": "https://github.com/phpstan",
  7264. "type": "github"
  7265. }
  7266. ],
  7267. "time": "2024-09-09T08:10:35+00:00"
  7268. },
  7269. {
  7270. "name": "phpstan/phpstan-deprecation-rules",
  7271. "version": "1.2.1",
  7272. "source": {
  7273. "type": "git",
  7274. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  7275. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82"
  7276. },
  7277. "dist": {
  7278. "type": "zip",
  7279. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7280. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7281. "shasum": ""
  7282. },
  7283. "require": {
  7284. "php": "^7.2 || ^8.0",
  7285. "phpstan/phpstan": "^1.12"
  7286. },
  7287. "require-dev": {
  7288. "php-parallel-lint/php-parallel-lint": "^1.2",
  7289. "phpstan/phpstan-phpunit": "^1.0",
  7290. "phpunit/phpunit": "^9.5"
  7291. },
  7292. "type": "phpstan-extension",
  7293. "extra": {
  7294. "phpstan": {
  7295. "includes": [
  7296. "rules.neon"
  7297. ]
  7298. }
  7299. },
  7300. "autoload": {
  7301. "psr-4": {
  7302. "PHPStan\\": "src/"
  7303. }
  7304. },
  7305. "notification-url": "https://packagist.org/downloads/",
  7306. "license": [
  7307. "MIT"
  7308. ],
  7309. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  7310. "support": {
  7311. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  7312. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.2.1"
  7313. },
  7314. "time": "2024-09-11T15:52:35+00:00"
  7315. },
  7316. {
  7317. "name": "psr/cache",
  7318. "version": "1.0.1",
  7319. "source": {
  7320. "type": "git",
  7321. "url": "https://github.com/php-fig/cache.git",
  7322. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  7323. },
  7324. "dist": {
  7325. "type": "zip",
  7326. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  7327. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  7328. "shasum": ""
  7329. },
  7330. "require": {
  7331. "php": ">=5.3.0"
  7332. },
  7333. "type": "library",
  7334. "extra": {
  7335. "branch-alias": {
  7336. "dev-master": "1.0.x-dev"
  7337. }
  7338. },
  7339. "autoload": {
  7340. "psr-4": {
  7341. "Psr\\Cache\\": "src/"
  7342. }
  7343. },
  7344. "notification-url": "https://packagist.org/downloads/",
  7345. "license": [
  7346. "MIT"
  7347. ],
  7348. "authors": [
  7349. {
  7350. "name": "PHP-FIG",
  7351. "homepage": "http://www.php-fig.org/"
  7352. }
  7353. ],
  7354. "description": "Common interface for caching libraries",
  7355. "keywords": [
  7356. "cache",
  7357. "psr",
  7358. "psr-6"
  7359. ],
  7360. "support": {
  7361. "source": "https://github.com/php-fig/cache/tree/master"
  7362. },
  7363. "time": "2016-08-06T20:24:11+00:00"
  7364. },
  7365. {
  7366. "name": "psr/container",
  7367. "version": "1.1.2",
  7368. "source": {
  7369. "type": "git",
  7370. "url": "https://github.com/php-fig/container.git",
  7371. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  7372. },
  7373. "dist": {
  7374. "type": "zip",
  7375. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  7376. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  7377. "shasum": ""
  7378. },
  7379. "require": {
  7380. "php": ">=7.4.0"
  7381. },
  7382. "type": "library",
  7383. "autoload": {
  7384. "psr-4": {
  7385. "Psr\\Container\\": "src/"
  7386. }
  7387. },
  7388. "notification-url": "https://packagist.org/downloads/",
  7389. "license": [
  7390. "MIT"
  7391. ],
  7392. "authors": [
  7393. {
  7394. "name": "PHP-FIG",
  7395. "homepage": "https://www.php-fig.org/"
  7396. }
  7397. ],
  7398. "description": "Common Container Interface (PHP FIG PSR-11)",
  7399. "homepage": "https://github.com/php-fig/container",
  7400. "keywords": [
  7401. "PSR-11",
  7402. "container",
  7403. "container-interface",
  7404. "container-interop",
  7405. "psr"
  7406. ],
  7407. "support": {
  7408. "issues": "https://github.com/php-fig/container/issues",
  7409. "source": "https://github.com/php-fig/container/tree/1.1.2"
  7410. },
  7411. "time": "2021-11-05T16:50:12+00:00"
  7412. },
  7413. {
  7414. "name": "psr/http-factory",
  7415. "version": "1.0.2",
  7416. "source": {
  7417. "type": "git",
  7418. "url": "https://github.com/php-fig/http-factory.git",
  7419. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  7420. },
  7421. "dist": {
  7422. "type": "zip",
  7423. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  7424. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  7425. "shasum": ""
  7426. },
  7427. "require": {
  7428. "php": ">=7.0.0",
  7429. "psr/http-message": "^1.0 || ^2.0"
  7430. },
  7431. "type": "library",
  7432. "extra": {
  7433. "branch-alias": {
  7434. "dev-master": "1.0.x-dev"
  7435. }
  7436. },
  7437. "autoload": {
  7438. "psr-4": {
  7439. "Psr\\Http\\Message\\": "src/"
  7440. }
  7441. },
  7442. "notification-url": "https://packagist.org/downloads/",
  7443. "license": [
  7444. "MIT"
  7445. ],
  7446. "authors": [
  7447. {
  7448. "name": "PHP-FIG",
  7449. "homepage": "https://www.php-fig.org/"
  7450. }
  7451. ],
  7452. "description": "Common interfaces for PSR-7 HTTP message factories",
  7453. "keywords": [
  7454. "factory",
  7455. "http",
  7456. "message",
  7457. "psr",
  7458. "psr-17",
  7459. "psr-7",
  7460. "request",
  7461. "response"
  7462. ],
  7463. "support": {
  7464. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  7465. },
  7466. "time": "2023-04-10T20:10:41+00:00"
  7467. },
  7468. {
  7469. "name": "psr/http-message",
  7470. "version": "1.0.1",
  7471. "source": {
  7472. "type": "git",
  7473. "url": "https://github.com/php-fig/http-message.git",
  7474. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  7475. },
  7476. "dist": {
  7477. "type": "zip",
  7478. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  7479. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  7480. "shasum": ""
  7481. },
  7482. "require": {
  7483. "php": ">=5.3.0"
  7484. },
  7485. "type": "library",
  7486. "extra": {
  7487. "branch-alias": {
  7488. "dev-master": "1.0.x-dev"
  7489. }
  7490. },
  7491. "autoload": {
  7492. "psr-4": {
  7493. "Psr\\Http\\Message\\": "src/"
  7494. }
  7495. },
  7496. "notification-url": "https://packagist.org/downloads/",
  7497. "license": [
  7498. "MIT"
  7499. ],
  7500. "authors": [
  7501. {
  7502. "name": "PHP-FIG",
  7503. "homepage": "http://www.php-fig.org/"
  7504. }
  7505. ],
  7506. "description": "Common interface for HTTP messages",
  7507. "homepage": "https://github.com/php-fig/http-message",
  7508. "keywords": [
  7509. "http",
  7510. "http-message",
  7511. "psr",
  7512. "psr-7",
  7513. "request",
  7514. "response"
  7515. ],
  7516. "support": {
  7517. "source": "https://github.com/php-fig/http-message/tree/master"
  7518. },
  7519. "time": "2016-08-06T14:39:51+00:00"
  7520. },
  7521. {
  7522. "name": "psr/log",
  7523. "version": "1.1.4",
  7524. "source": {
  7525. "type": "git",
  7526. "url": "https://github.com/php-fig/log.git",
  7527. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  7528. },
  7529. "dist": {
  7530. "type": "zip",
  7531. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  7532. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  7533. "shasum": ""
  7534. },
  7535. "require": {
  7536. "php": ">=5.3.0"
  7537. },
  7538. "type": "library",
  7539. "extra": {
  7540. "branch-alias": {
  7541. "dev-master": "1.1.x-dev"
  7542. }
  7543. },
  7544. "autoload": {
  7545. "psr-4": {
  7546. "Psr\\Log\\": "Psr/Log/"
  7547. }
  7548. },
  7549. "notification-url": "https://packagist.org/downloads/",
  7550. "license": [
  7551. "MIT"
  7552. ],
  7553. "authors": [
  7554. {
  7555. "name": "PHP-FIG",
  7556. "homepage": "https://www.php-fig.org/"
  7557. }
  7558. ],
  7559. "description": "Common interface for logging libraries",
  7560. "homepage": "https://github.com/php-fig/log",
  7561. "keywords": [
  7562. "log",
  7563. "psr",
  7564. "psr-3"
  7565. ],
  7566. "support": {
  7567. "source": "https://github.com/php-fig/log/tree/1.1.4"
  7568. },
  7569. "time": "2021-05-03T11:20:27+00:00"
  7570. },
  7571. {
  7572. "name": "psy/psysh",
  7573. "version": "v0.10.12",
  7574. "source": {
  7575. "type": "git",
  7576. "url": "https://github.com/bobthecow/psysh.git",
  7577. "reference": "a0d9981aa07ecfcbea28e4bfa868031cca121e7d"
  7578. },
  7579. "dist": {
  7580. "type": "zip",
  7581. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a0d9981aa07ecfcbea28e4bfa868031cca121e7d",
  7582. "reference": "a0d9981aa07ecfcbea28e4bfa868031cca121e7d",
  7583. "shasum": ""
  7584. },
  7585. "require": {
  7586. "ext-json": "*",
  7587. "ext-tokenizer": "*",
  7588. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  7589. "php": "^8.0 || ^7.0 || ^5.5.9",
  7590. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  7591. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  7592. },
  7593. "require-dev": {
  7594. "bamarni/composer-bin-plugin": "^1.2",
  7595. "hoa/console": "3.17.*"
  7596. },
  7597. "suggest": {
  7598. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7599. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  7600. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  7601. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  7602. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  7603. },
  7604. "bin": [
  7605. "bin/psysh"
  7606. ],
  7607. "type": "library",
  7608. "extra": {
  7609. "branch-alias": {
  7610. "dev-main": "0.10.x-dev"
  7611. }
  7612. },
  7613. "autoload": {
  7614. "files": [
  7615. "src/functions.php"
  7616. ],
  7617. "psr-4": {
  7618. "Psy\\": "src/"
  7619. }
  7620. },
  7621. "notification-url": "https://packagist.org/downloads/",
  7622. "license": [
  7623. "MIT"
  7624. ],
  7625. "authors": [
  7626. {
  7627. "name": "Justin Hileman",
  7628. "email": "justin@justinhileman.info",
  7629. "homepage": "http://justinhileman.com"
  7630. }
  7631. ],
  7632. "description": "An interactive shell for modern PHP.",
  7633. "homepage": "http://psysh.org",
  7634. "keywords": [
  7635. "REPL",
  7636. "console",
  7637. "interactive",
  7638. "shell"
  7639. ],
  7640. "support": {
  7641. "issues": "https://github.com/bobthecow/psysh/issues",
  7642. "source": "https://github.com/bobthecow/psysh/tree/v0.10.12"
  7643. },
  7644. "time": "2021-11-30T14:05:36+00:00"
  7645. },
  7646. {
  7647. "name": "ralouphie/getallheaders",
  7648. "version": "3.0.3",
  7649. "source": {
  7650. "type": "git",
  7651. "url": "https://github.com/ralouphie/getallheaders.git",
  7652. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7653. },
  7654. "dist": {
  7655. "type": "zip",
  7656. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7657. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7658. "shasum": ""
  7659. },
  7660. "require": {
  7661. "php": ">=5.6"
  7662. },
  7663. "require-dev": {
  7664. "php-coveralls/php-coveralls": "^2.1",
  7665. "phpunit/phpunit": "^5 || ^6.5"
  7666. },
  7667. "type": "library",
  7668. "autoload": {
  7669. "files": [
  7670. "src/getallheaders.php"
  7671. ]
  7672. },
  7673. "notification-url": "https://packagist.org/downloads/",
  7674. "license": [
  7675. "MIT"
  7676. ],
  7677. "authors": [
  7678. {
  7679. "name": "Ralph Khattar",
  7680. "email": "ralph.khattar@gmail.com"
  7681. }
  7682. ],
  7683. "description": "A polyfill for getallheaders.",
  7684. "support": {
  7685. "issues": "https://github.com/ralouphie/getallheaders/issues",
  7686. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  7687. },
  7688. "time": "2019-03-08T08:55:37+00:00"
  7689. },
  7690. {
  7691. "name": "stack/builder",
  7692. "version": "v1.0.6",
  7693. "source": {
  7694. "type": "git",
  7695. "url": "https://github.com/stackphp/builder.git",
  7696. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c"
  7697. },
  7698. "dist": {
  7699. "type": "zip",
  7700. "url": "https://api.github.com/repos/stackphp/builder/zipball/a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  7701. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  7702. "shasum": ""
  7703. },
  7704. "require": {
  7705. "php": ">=7.2.0",
  7706. "symfony/http-foundation": "~2.1|~3.0|~4.0|~5.0",
  7707. "symfony/http-kernel": "~2.1|~3.0|~4.0|~5.0"
  7708. },
  7709. "require-dev": {
  7710. "phpunit/phpunit": "~8.0",
  7711. "symfony/routing": "^5.0"
  7712. },
  7713. "type": "library",
  7714. "extra": {
  7715. "branch-alias": {
  7716. "dev-master": "1.0-dev"
  7717. }
  7718. },
  7719. "autoload": {
  7720. "psr-0": {
  7721. "Stack": "src"
  7722. }
  7723. },
  7724. "notification-url": "https://packagist.org/downloads/",
  7725. "license": [
  7726. "MIT"
  7727. ],
  7728. "authors": [
  7729. {
  7730. "name": "Igor Wiedler",
  7731. "email": "igor@wiedler.ch"
  7732. }
  7733. ],
  7734. "description": "Builder for stack middleware based on HttpKernelInterface.",
  7735. "keywords": [
  7736. "stack"
  7737. ],
  7738. "support": {
  7739. "issues": "https://github.com/stackphp/builder/issues",
  7740. "source": "https://github.com/stackphp/builder/tree/v1.0.6"
  7741. },
  7742. "abandoned": true,
  7743. "time": "2020-01-30T12:17:27+00:00"
  7744. },
  7745. {
  7746. "name": "symfony-cmf/routing",
  7747. "version": "2.3.4",
  7748. "source": {
  7749. "type": "git",
  7750. "url": "https://github.com/symfony-cmf/Routing.git",
  7751. "reference": "bbcdf2f6301d740454ba9ebb8adaefd436c36a6b"
  7752. },
  7753. "dist": {
  7754. "type": "zip",
  7755. "url": "https://api.github.com/repos/symfony-cmf/Routing/zipball/bbcdf2f6301d740454ba9ebb8adaefd436c36a6b",
  7756. "reference": "bbcdf2f6301d740454ba9ebb8adaefd436c36a6b",
  7757. "shasum": ""
  7758. },
  7759. "require": {
  7760. "php": "^7.2 || ^8.0",
  7761. "psr/log": "^1.0 || ^2.0 || ^3.0",
  7762. "symfony/http-kernel": "^4.4 || ^5.0",
  7763. "symfony/routing": "^4.4 || ^5.0"
  7764. },
  7765. "require-dev": {
  7766. "symfony-cmf/testing": "^3@dev",
  7767. "symfony/config": "^4.4 || ^5.0",
  7768. "symfony/dependency-injection": "^4.4 || ^5.0",
  7769. "symfony/event-dispatcher": "^4.4 || ^5.0",
  7770. "symfony/phpunit-bridge": "^5.0"
  7771. },
  7772. "suggest": {
  7773. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (^4.4 || ^5.0)"
  7774. },
  7775. "type": "library",
  7776. "extra": {
  7777. "branch-alias": {
  7778. "dev-master": "2.x-dev"
  7779. }
  7780. },
  7781. "autoload": {
  7782. "psr-4": {
  7783. "Symfony\\Cmf\\Component\\Routing\\": "src/"
  7784. }
  7785. },
  7786. "notification-url": "https://packagist.org/downloads/",
  7787. "license": [
  7788. "MIT"
  7789. ],
  7790. "authors": [
  7791. {
  7792. "name": "Symfony CMF Community",
  7793. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  7794. }
  7795. ],
  7796. "description": "Extends the Symfony routing component for dynamic routes and chaining several routers",
  7797. "homepage": "http://cmf.symfony.com",
  7798. "keywords": [
  7799. "database",
  7800. "routing"
  7801. ],
  7802. "support": {
  7803. "issues": "https://github.com/symfony-cmf/Routing/issues",
  7804. "source": "https://github.com/symfony-cmf/Routing/tree/2.3.4"
  7805. },
  7806. "time": "2021-11-08T16:33:10+00:00"
  7807. },
  7808. {
  7809. "name": "symfony/console",
  7810. "version": "v4.4.49",
  7811. "source": {
  7812. "type": "git",
  7813. "url": "https://github.com/symfony/console.git",
  7814. "reference": "33fa45ffc81fdcc1ca368d4946da859c8cdb58d9"
  7815. },
  7816. "dist": {
  7817. "type": "zip",
  7818. "url": "https://api.github.com/repos/symfony/console/zipball/33fa45ffc81fdcc1ca368d4946da859c8cdb58d9",
  7819. "reference": "33fa45ffc81fdcc1ca368d4946da859c8cdb58d9",
  7820. "shasum": ""
  7821. },
  7822. "require": {
  7823. "php": ">=7.1.3",
  7824. "symfony/polyfill-mbstring": "~1.0",
  7825. "symfony/polyfill-php73": "^1.8",
  7826. "symfony/polyfill-php80": "^1.16",
  7827. "symfony/service-contracts": "^1.1|^2"
  7828. },
  7829. "conflict": {
  7830. "psr/log": ">=3",
  7831. "symfony/dependency-injection": "<3.4",
  7832. "symfony/event-dispatcher": "<4.3|>=5",
  7833. "symfony/lock": "<4.4",
  7834. "symfony/process": "<3.3"
  7835. },
  7836. "provide": {
  7837. "psr/log-implementation": "1.0|2.0"
  7838. },
  7839. "require-dev": {
  7840. "psr/log": "^1|^2",
  7841. "symfony/config": "^3.4|^4.0|^5.0",
  7842. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  7843. "symfony/event-dispatcher": "^4.3",
  7844. "symfony/lock": "^4.4|^5.0",
  7845. "symfony/process": "^3.4|^4.0|^5.0",
  7846. "symfony/var-dumper": "^4.3|^5.0"
  7847. },
  7848. "suggest": {
  7849. "psr/log": "For using the console logger",
  7850. "symfony/event-dispatcher": "",
  7851. "symfony/lock": "",
  7852. "symfony/process": ""
  7853. },
  7854. "type": "library",
  7855. "autoload": {
  7856. "psr-4": {
  7857. "Symfony\\Component\\Console\\": ""
  7858. },
  7859. "exclude-from-classmap": [
  7860. "/Tests/"
  7861. ]
  7862. },
  7863. "notification-url": "https://packagist.org/downloads/",
  7864. "license": [
  7865. "MIT"
  7866. ],
  7867. "authors": [
  7868. {
  7869. "name": "Fabien Potencier",
  7870. "email": "fabien@symfony.com"
  7871. },
  7872. {
  7873. "name": "Symfony Community",
  7874. "homepage": "https://symfony.com/contributors"
  7875. }
  7876. ],
  7877. "description": "Eases the creation of beautiful and testable command line interfaces",
  7878. "homepage": "https://symfony.com",
  7879. "support": {
  7880. "source": "https://github.com/symfony/console/tree/v4.4.49"
  7881. },
  7882. "funding": [
  7883. {
  7884. "url": "https://symfony.com/sponsor",
  7885. "type": "custom"
  7886. },
  7887. {
  7888. "url": "https://github.com/fabpot",
  7889. "type": "github"
  7890. },
  7891. {
  7892. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7893. "type": "tidelift"
  7894. }
  7895. ],
  7896. "time": "2022-11-05T17:10:16+00:00"
  7897. },
  7898. {
  7899. "name": "symfony/debug",
  7900. "version": "v4.4.44",
  7901. "source": {
  7902. "type": "git",
  7903. "url": "https://github.com/symfony/debug.git",
  7904. "reference": "1a692492190773c5310bc7877cb590c04c2f05be"
  7905. },
  7906. "dist": {
  7907. "type": "zip",
  7908. "url": "https://api.github.com/repos/symfony/debug/zipball/1a692492190773c5310bc7877cb590c04c2f05be",
  7909. "reference": "1a692492190773c5310bc7877cb590c04c2f05be",
  7910. "shasum": ""
  7911. },
  7912. "require": {
  7913. "php": ">=7.1.3",
  7914. "psr/log": "^1|^2|^3"
  7915. },
  7916. "conflict": {
  7917. "symfony/http-kernel": "<3.4"
  7918. },
  7919. "require-dev": {
  7920. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  7921. },
  7922. "type": "library",
  7923. "autoload": {
  7924. "psr-4": {
  7925. "Symfony\\Component\\Debug\\": ""
  7926. },
  7927. "exclude-from-classmap": [
  7928. "/Tests/"
  7929. ]
  7930. },
  7931. "notification-url": "https://packagist.org/downloads/",
  7932. "license": [
  7933. "MIT"
  7934. ],
  7935. "authors": [
  7936. {
  7937. "name": "Fabien Potencier",
  7938. "email": "fabien@symfony.com"
  7939. },
  7940. {
  7941. "name": "Symfony Community",
  7942. "homepage": "https://symfony.com/contributors"
  7943. }
  7944. ],
  7945. "description": "Provides tools to ease debugging PHP code",
  7946. "homepage": "https://symfony.com",
  7947. "support": {
  7948. "source": "https://github.com/symfony/debug/tree/v4.4.44"
  7949. },
  7950. "funding": [
  7951. {
  7952. "url": "https://symfony.com/sponsor",
  7953. "type": "custom"
  7954. },
  7955. {
  7956. "url": "https://github.com/fabpot",
  7957. "type": "github"
  7958. },
  7959. {
  7960. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7961. "type": "tidelift"
  7962. }
  7963. ],
  7964. "abandoned": "symfony/error-handler",
  7965. "time": "2022-07-28T16:29:46+00:00"
  7966. },
  7967. {
  7968. "name": "symfony/dependency-injection",
  7969. "version": "v4.4.49",
  7970. "source": {
  7971. "type": "git",
  7972. "url": "https://github.com/symfony/dependency-injection.git",
  7973. "reference": "9065fe97dbd38a897e95ea254eb5ddfe1310f734"
  7974. },
  7975. "dist": {
  7976. "type": "zip",
  7977. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/9065fe97dbd38a897e95ea254eb5ddfe1310f734",
  7978. "reference": "9065fe97dbd38a897e95ea254eb5ddfe1310f734",
  7979. "shasum": ""
  7980. },
  7981. "require": {
  7982. "php": ">=7.1.3",
  7983. "psr/container": "^1.0",
  7984. "symfony/polyfill-php80": "^1.16",
  7985. "symfony/service-contracts": "^1.1.6|^2"
  7986. },
  7987. "conflict": {
  7988. "symfony/config": "<4.3|>=5.0",
  7989. "symfony/finder": "<3.4",
  7990. "symfony/proxy-manager-bridge": "<3.4",
  7991. "symfony/yaml": "<4.4.26"
  7992. },
  7993. "provide": {
  7994. "psr/container-implementation": "1.0",
  7995. "symfony/service-implementation": "1.0|2.0"
  7996. },
  7997. "require-dev": {
  7998. "symfony/config": "^4.3",
  7999. "symfony/expression-language": "^3.4|^4.0|^5.0",
  8000. "symfony/yaml": "^4.4.26|^5.0"
  8001. },
  8002. "suggest": {
  8003. "symfony/config": "",
  8004. "symfony/expression-language": "For using expressions in service container configuration",
  8005. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  8006. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  8007. "symfony/yaml": ""
  8008. },
  8009. "type": "library",
  8010. "autoload": {
  8011. "psr-4": {
  8012. "Symfony\\Component\\DependencyInjection\\": ""
  8013. },
  8014. "exclude-from-classmap": [
  8015. "/Tests/"
  8016. ]
  8017. },
  8018. "notification-url": "https://packagist.org/downloads/",
  8019. "license": [
  8020. "MIT"
  8021. ],
  8022. "authors": [
  8023. {
  8024. "name": "Fabien Potencier",
  8025. "email": "fabien@symfony.com"
  8026. },
  8027. {
  8028. "name": "Symfony Community",
  8029. "homepage": "https://symfony.com/contributors"
  8030. }
  8031. ],
  8032. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  8033. "homepage": "https://symfony.com",
  8034. "support": {
  8035. "source": "https://github.com/symfony/dependency-injection/tree/v4.4.49"
  8036. },
  8037. "funding": [
  8038. {
  8039. "url": "https://symfony.com/sponsor",
  8040. "type": "custom"
  8041. },
  8042. {
  8043. "url": "https://github.com/fabpot",
  8044. "type": "github"
  8045. },
  8046. {
  8047. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8048. "type": "tidelift"
  8049. }
  8050. ],
  8051. "time": "2022-11-16T16:18:09+00:00"
  8052. },
  8053. {
  8054. "name": "symfony/deprecation-contracts",
  8055. "version": "v2.5.3",
  8056. "source": {
  8057. "type": "git",
  8058. "url": "https://github.com/symfony/deprecation-contracts.git",
  8059. "reference": "80d075412b557d41002320b96a096ca65aa2c98d"
  8060. },
  8061. "dist": {
  8062. "type": "zip",
  8063. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/80d075412b557d41002320b96a096ca65aa2c98d",
  8064. "reference": "80d075412b557d41002320b96a096ca65aa2c98d",
  8065. "shasum": ""
  8066. },
  8067. "require": {
  8068. "php": ">=7.1"
  8069. },
  8070. "type": "library",
  8071. "extra": {
  8072. "branch-alias": {
  8073. "dev-main": "2.5-dev"
  8074. },
  8075. "thanks": {
  8076. "name": "symfony/contracts",
  8077. "url": "https://github.com/symfony/contracts"
  8078. }
  8079. },
  8080. "autoload": {
  8081. "files": [
  8082. "function.php"
  8083. ]
  8084. },
  8085. "notification-url": "https://packagist.org/downloads/",
  8086. "license": [
  8087. "MIT"
  8088. ],
  8089. "authors": [
  8090. {
  8091. "name": "Nicolas Grekas",
  8092. "email": "p@tchwork.com"
  8093. },
  8094. {
  8095. "name": "Symfony Community",
  8096. "homepage": "https://symfony.com/contributors"
  8097. }
  8098. ],
  8099. "description": "A generic function and convention to trigger deprecation notices",
  8100. "homepage": "https://symfony.com",
  8101. "support": {
  8102. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.3"
  8103. },
  8104. "funding": [
  8105. {
  8106. "url": "https://symfony.com/sponsor",
  8107. "type": "custom"
  8108. },
  8109. {
  8110. "url": "https://github.com/fabpot",
  8111. "type": "github"
  8112. },
  8113. {
  8114. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8115. "type": "tidelift"
  8116. }
  8117. ],
  8118. "time": "2023-01-24T14:02:46+00:00"
  8119. },
  8120. {
  8121. "name": "symfony/error-handler",
  8122. "version": "v4.4.44",
  8123. "source": {
  8124. "type": "git",
  8125. "url": "https://github.com/symfony/error-handler.git",
  8126. "reference": "be731658121ef2d8be88f3a1ec938148a9237291"
  8127. },
  8128. "dist": {
  8129. "type": "zip",
  8130. "url": "https://api.github.com/repos/symfony/error-handler/zipball/be731658121ef2d8be88f3a1ec938148a9237291",
  8131. "reference": "be731658121ef2d8be88f3a1ec938148a9237291",
  8132. "shasum": ""
  8133. },
  8134. "require": {
  8135. "php": ">=7.1.3",
  8136. "psr/log": "^1|^2|^3",
  8137. "symfony/debug": "^4.4.5",
  8138. "symfony/var-dumper": "^4.4|^5.0"
  8139. },
  8140. "require-dev": {
  8141. "symfony/http-kernel": "^4.4|^5.0",
  8142. "symfony/serializer": "^4.4|^5.0"
  8143. },
  8144. "type": "library",
  8145. "autoload": {
  8146. "psr-4": {
  8147. "Symfony\\Component\\ErrorHandler\\": ""
  8148. },
  8149. "exclude-from-classmap": [
  8150. "/Tests/"
  8151. ]
  8152. },
  8153. "notification-url": "https://packagist.org/downloads/",
  8154. "license": [
  8155. "MIT"
  8156. ],
  8157. "authors": [
  8158. {
  8159. "name": "Fabien Potencier",
  8160. "email": "fabien@symfony.com"
  8161. },
  8162. {
  8163. "name": "Symfony Community",
  8164. "homepage": "https://symfony.com/contributors"
  8165. }
  8166. ],
  8167. "description": "Provides tools to manage errors and ease debugging PHP code",
  8168. "homepage": "https://symfony.com",
  8169. "support": {
  8170. "source": "https://github.com/symfony/error-handler/tree/v4.4.44"
  8171. },
  8172. "funding": [
  8173. {
  8174. "url": "https://symfony.com/sponsor",
  8175. "type": "custom"
  8176. },
  8177. {
  8178. "url": "https://github.com/fabpot",
  8179. "type": "github"
  8180. },
  8181. {
  8182. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8183. "type": "tidelift"
  8184. }
  8185. ],
  8186. "time": "2022-07-28T16:29:46+00:00"
  8187. },
  8188. {
  8189. "name": "symfony/event-dispatcher",
  8190. "version": "v4.4.44",
  8191. "source": {
  8192. "type": "git",
  8193. "url": "https://github.com/symfony/event-dispatcher.git",
  8194. "reference": "1e866e9e5c1b22168e0ce5f0b467f19bba61266a"
  8195. },
  8196. "dist": {
  8197. "type": "zip",
  8198. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1e866e9e5c1b22168e0ce5f0b467f19bba61266a",
  8199. "reference": "1e866e9e5c1b22168e0ce5f0b467f19bba61266a",
  8200. "shasum": ""
  8201. },
  8202. "require": {
  8203. "php": ">=7.1.3",
  8204. "symfony/event-dispatcher-contracts": "^1.1",
  8205. "symfony/polyfill-php80": "^1.16"
  8206. },
  8207. "conflict": {
  8208. "symfony/dependency-injection": "<3.4"
  8209. },
  8210. "provide": {
  8211. "psr/event-dispatcher-implementation": "1.0",
  8212. "symfony/event-dispatcher-implementation": "1.1"
  8213. },
  8214. "require-dev": {
  8215. "psr/log": "^1|^2|^3",
  8216. "symfony/config": "^3.4|^4.0|^5.0",
  8217. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  8218. "symfony/error-handler": "~3.4|~4.4",
  8219. "symfony/expression-language": "^3.4|^4.0|^5.0",
  8220. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  8221. "symfony/service-contracts": "^1.1|^2",
  8222. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  8223. },
  8224. "suggest": {
  8225. "symfony/dependency-injection": "",
  8226. "symfony/http-kernel": ""
  8227. },
  8228. "type": "library",
  8229. "autoload": {
  8230. "psr-4": {
  8231. "Symfony\\Component\\EventDispatcher\\": ""
  8232. },
  8233. "exclude-from-classmap": [
  8234. "/Tests/"
  8235. ]
  8236. },
  8237. "notification-url": "https://packagist.org/downloads/",
  8238. "license": [
  8239. "MIT"
  8240. ],
  8241. "authors": [
  8242. {
  8243. "name": "Fabien Potencier",
  8244. "email": "fabien@symfony.com"
  8245. },
  8246. {
  8247. "name": "Symfony Community",
  8248. "homepage": "https://symfony.com/contributors"
  8249. }
  8250. ],
  8251. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  8252. "homepage": "https://symfony.com",
  8253. "support": {
  8254. "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.44"
  8255. },
  8256. "funding": [
  8257. {
  8258. "url": "https://symfony.com/sponsor",
  8259. "type": "custom"
  8260. },
  8261. {
  8262. "url": "https://github.com/fabpot",
  8263. "type": "github"
  8264. },
  8265. {
  8266. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8267. "type": "tidelift"
  8268. }
  8269. ],
  8270. "time": "2022-07-20T09:59:04+00:00"
  8271. },
  8272. {
  8273. "name": "symfony/event-dispatcher-contracts",
  8274. "version": "v1.1.13",
  8275. "source": {
  8276. "type": "git",
  8277. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  8278. "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e"
  8279. },
  8280. "dist": {
  8281. "type": "zip",
  8282. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/1d5cd762abaa6b2a4169d3e77610193a7157129e",
  8283. "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e",
  8284. "shasum": ""
  8285. },
  8286. "require": {
  8287. "php": ">=7.1.3"
  8288. },
  8289. "suggest": {
  8290. "psr/event-dispatcher": "",
  8291. "symfony/event-dispatcher-implementation": ""
  8292. },
  8293. "type": "library",
  8294. "extra": {
  8295. "branch-alias": {
  8296. "dev-main": "1.1-dev"
  8297. },
  8298. "thanks": {
  8299. "name": "symfony/contracts",
  8300. "url": "https://github.com/symfony/contracts"
  8301. }
  8302. },
  8303. "autoload": {
  8304. "psr-4": {
  8305. "Symfony\\Contracts\\EventDispatcher\\": ""
  8306. }
  8307. },
  8308. "notification-url": "https://packagist.org/downloads/",
  8309. "license": [
  8310. "MIT"
  8311. ],
  8312. "authors": [
  8313. {
  8314. "name": "Nicolas Grekas",
  8315. "email": "p@tchwork.com"
  8316. },
  8317. {
  8318. "name": "Symfony Community",
  8319. "homepage": "https://symfony.com/contributors"
  8320. }
  8321. ],
  8322. "description": "Generic abstractions related to dispatching event",
  8323. "homepage": "https://symfony.com",
  8324. "keywords": [
  8325. "abstractions",
  8326. "contracts",
  8327. "decoupling",
  8328. "interfaces",
  8329. "interoperability",
  8330. "standards"
  8331. ],
  8332. "support": {
  8333. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.13"
  8334. },
  8335. "funding": [
  8336. {
  8337. "url": "https://symfony.com/sponsor",
  8338. "type": "custom"
  8339. },
  8340. {
  8341. "url": "https://github.com/fabpot",
  8342. "type": "github"
  8343. },
  8344. {
  8345. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8346. "type": "tidelift"
  8347. }
  8348. ],
  8349. "time": "2022-01-02T09:41:36+00:00"
  8350. },
  8351. {
  8352. "name": "symfony/filesystem",
  8353. "version": "v4.4.42",
  8354. "source": {
  8355. "type": "git",
  8356. "url": "https://github.com/symfony/filesystem.git",
  8357. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5"
  8358. },
  8359. "dist": {
  8360. "type": "zip",
  8361. "url": "https://api.github.com/repos/symfony/filesystem/zipball/815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  8362. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  8363. "shasum": ""
  8364. },
  8365. "require": {
  8366. "php": ">=7.1.3",
  8367. "symfony/polyfill-ctype": "~1.8",
  8368. "symfony/polyfill-php80": "^1.16"
  8369. },
  8370. "type": "library",
  8371. "autoload": {
  8372. "psr-4": {
  8373. "Symfony\\Component\\Filesystem\\": ""
  8374. },
  8375. "exclude-from-classmap": [
  8376. "/Tests/"
  8377. ]
  8378. },
  8379. "notification-url": "https://packagist.org/downloads/",
  8380. "license": [
  8381. "MIT"
  8382. ],
  8383. "authors": [
  8384. {
  8385. "name": "Fabien Potencier",
  8386. "email": "fabien@symfony.com"
  8387. },
  8388. {
  8389. "name": "Symfony Community",
  8390. "homepage": "https://symfony.com/contributors"
  8391. }
  8392. ],
  8393. "description": "Provides basic utilities for the filesystem",
  8394. "homepage": "https://symfony.com",
  8395. "support": {
  8396. "source": "https://github.com/symfony/filesystem/tree/v4.4.42"
  8397. },
  8398. "funding": [
  8399. {
  8400. "url": "https://symfony.com/sponsor",
  8401. "type": "custom"
  8402. },
  8403. {
  8404. "url": "https://github.com/fabpot",
  8405. "type": "github"
  8406. },
  8407. {
  8408. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8409. "type": "tidelift"
  8410. }
  8411. ],
  8412. "time": "2022-05-20T08:49:14+00:00"
  8413. },
  8414. {
  8415. "name": "symfony/finder",
  8416. "version": "v5.4.43",
  8417. "source": {
  8418. "type": "git",
  8419. "url": "https://github.com/symfony/finder.git",
  8420. "reference": "ae25a9145a900764158d439653d5630191155ca0"
  8421. },
  8422. "dist": {
  8423. "type": "zip",
  8424. "url": "https://api.github.com/repos/symfony/finder/zipball/ae25a9145a900764158d439653d5630191155ca0",
  8425. "reference": "ae25a9145a900764158d439653d5630191155ca0",
  8426. "shasum": ""
  8427. },
  8428. "require": {
  8429. "php": ">=7.2.5",
  8430. "symfony/deprecation-contracts": "^2.1|^3",
  8431. "symfony/polyfill-php80": "^1.16"
  8432. },
  8433. "type": "library",
  8434. "autoload": {
  8435. "psr-4": {
  8436. "Symfony\\Component\\Finder\\": ""
  8437. },
  8438. "exclude-from-classmap": [
  8439. "/Tests/"
  8440. ]
  8441. },
  8442. "notification-url": "https://packagist.org/downloads/",
  8443. "license": [
  8444. "MIT"
  8445. ],
  8446. "authors": [
  8447. {
  8448. "name": "Fabien Potencier",
  8449. "email": "fabien@symfony.com"
  8450. },
  8451. {
  8452. "name": "Symfony Community",
  8453. "homepage": "https://symfony.com/contributors"
  8454. }
  8455. ],
  8456. "description": "Finds files and directories via an intuitive fluent interface",
  8457. "homepage": "https://symfony.com",
  8458. "support": {
  8459. "source": "https://github.com/symfony/finder/tree/v5.4.43"
  8460. },
  8461. "funding": [
  8462. {
  8463. "url": "https://symfony.com/sponsor",
  8464. "type": "custom"
  8465. },
  8466. {
  8467. "url": "https://github.com/fabpot",
  8468. "type": "github"
  8469. },
  8470. {
  8471. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8472. "type": "tidelift"
  8473. }
  8474. ],
  8475. "time": "2024-08-13T14:03:51+00:00"
  8476. },
  8477. {
  8478. "name": "symfony/http-client-contracts",
  8479. "version": "v2.5.3",
  8480. "source": {
  8481. "type": "git",
  8482. "url": "https://github.com/symfony/http-client-contracts.git",
  8483. "reference": "e5cc97c2b4a4db0ba26bebc154f1426e3fd1d2f1"
  8484. },
  8485. "dist": {
  8486. "type": "zip",
  8487. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/e5cc97c2b4a4db0ba26bebc154f1426e3fd1d2f1",
  8488. "reference": "e5cc97c2b4a4db0ba26bebc154f1426e3fd1d2f1",
  8489. "shasum": ""
  8490. },
  8491. "require": {
  8492. "php": ">=7.2.5"
  8493. },
  8494. "suggest": {
  8495. "symfony/http-client-implementation": ""
  8496. },
  8497. "type": "library",
  8498. "extra": {
  8499. "branch-alias": {
  8500. "dev-main": "2.5-dev"
  8501. },
  8502. "thanks": {
  8503. "name": "symfony/contracts",
  8504. "url": "https://github.com/symfony/contracts"
  8505. }
  8506. },
  8507. "autoload": {
  8508. "psr-4": {
  8509. "Symfony\\Contracts\\HttpClient\\": ""
  8510. }
  8511. },
  8512. "notification-url": "https://packagist.org/downloads/",
  8513. "license": [
  8514. "MIT"
  8515. ],
  8516. "authors": [
  8517. {
  8518. "name": "Nicolas Grekas",
  8519. "email": "p@tchwork.com"
  8520. },
  8521. {
  8522. "name": "Symfony Community",
  8523. "homepage": "https://symfony.com/contributors"
  8524. }
  8525. ],
  8526. "description": "Generic abstractions related to HTTP clients",
  8527. "homepage": "https://symfony.com",
  8528. "keywords": [
  8529. "abstractions",
  8530. "contracts",
  8531. "decoupling",
  8532. "interfaces",
  8533. "interoperability",
  8534. "standards"
  8535. ],
  8536. "support": {
  8537. "source": "https://github.com/symfony/http-client-contracts/tree/v2.5.3"
  8538. },
  8539. "funding": [
  8540. {
  8541. "url": "https://symfony.com/sponsor",
  8542. "type": "custom"
  8543. },
  8544. {
  8545. "url": "https://github.com/fabpot",
  8546. "type": "github"
  8547. },
  8548. {
  8549. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8550. "type": "tidelift"
  8551. }
  8552. ],
  8553. "time": "2024-03-26T19:42:53+00:00"
  8554. },
  8555. {
  8556. "name": "symfony/http-foundation",
  8557. "version": "v4.4.49",
  8558. "source": {
  8559. "type": "git",
  8560. "url": "https://github.com/symfony/http-foundation.git",
  8561. "reference": "191413c7b832c015bb38eae963f2e57498c3c173"
  8562. },
  8563. "dist": {
  8564. "type": "zip",
  8565. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/191413c7b832c015bb38eae963f2e57498c3c173",
  8566. "reference": "191413c7b832c015bb38eae963f2e57498c3c173",
  8567. "shasum": ""
  8568. },
  8569. "require": {
  8570. "php": ">=7.1.3",
  8571. "symfony/mime": "^4.3|^5.0",
  8572. "symfony/polyfill-mbstring": "~1.1",
  8573. "symfony/polyfill-php80": "^1.16"
  8574. },
  8575. "require-dev": {
  8576. "predis/predis": "~1.0",
  8577. "symfony/expression-language": "^3.4|^4.0|^5.0"
  8578. },
  8579. "type": "library",
  8580. "autoload": {
  8581. "psr-4": {
  8582. "Symfony\\Component\\HttpFoundation\\": ""
  8583. },
  8584. "exclude-from-classmap": [
  8585. "/Tests/"
  8586. ]
  8587. },
  8588. "notification-url": "https://packagist.org/downloads/",
  8589. "license": [
  8590. "MIT"
  8591. ],
  8592. "authors": [
  8593. {
  8594. "name": "Fabien Potencier",
  8595. "email": "fabien@symfony.com"
  8596. },
  8597. {
  8598. "name": "Symfony Community",
  8599. "homepage": "https://symfony.com/contributors"
  8600. }
  8601. ],
  8602. "description": "Defines an object-oriented layer for the HTTP specification",
  8603. "homepage": "https://symfony.com",
  8604. "support": {
  8605. "source": "https://github.com/symfony/http-foundation/tree/v4.4.49"
  8606. },
  8607. "funding": [
  8608. {
  8609. "url": "https://symfony.com/sponsor",
  8610. "type": "custom"
  8611. },
  8612. {
  8613. "url": "https://github.com/fabpot",
  8614. "type": "github"
  8615. },
  8616. {
  8617. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8618. "type": "tidelift"
  8619. }
  8620. ],
  8621. "time": "2022-11-04T16:17:57+00:00"
  8622. },
  8623. {
  8624. "name": "symfony/http-kernel",
  8625. "version": "v4.4.51",
  8626. "source": {
  8627. "type": "git",
  8628. "url": "https://github.com/symfony/http-kernel.git",
  8629. "reference": "ad8ab192cb619ff7285c95d28c69b36d718416c7"
  8630. },
  8631. "dist": {
  8632. "type": "zip",
  8633. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ad8ab192cb619ff7285c95d28c69b36d718416c7",
  8634. "reference": "ad8ab192cb619ff7285c95d28c69b36d718416c7",
  8635. "shasum": ""
  8636. },
  8637. "require": {
  8638. "php": ">=7.1.3",
  8639. "psr/log": "^1|^2",
  8640. "symfony/error-handler": "^4.4",
  8641. "symfony/event-dispatcher": "^4.4",
  8642. "symfony/http-client-contracts": "^1.1|^2",
  8643. "symfony/http-foundation": "^4.4.30|^5.3.7",
  8644. "symfony/polyfill-ctype": "^1.8",
  8645. "symfony/polyfill-php73": "^1.9",
  8646. "symfony/polyfill-php80": "^1.16"
  8647. },
  8648. "conflict": {
  8649. "symfony/browser-kit": "<4.3",
  8650. "symfony/config": "<3.4",
  8651. "symfony/console": ">=5",
  8652. "symfony/dependency-injection": "<4.3",
  8653. "symfony/translation": "<4.2",
  8654. "twig/twig": "<1.43|<2.13,>=2"
  8655. },
  8656. "provide": {
  8657. "psr/log-implementation": "1.0|2.0"
  8658. },
  8659. "require-dev": {
  8660. "psr/cache": "^1.0|^2.0|^3.0",
  8661. "symfony/browser-kit": "^4.3|^5.0",
  8662. "symfony/config": "^3.4|^4.0|^5.0",
  8663. "symfony/console": "^3.4|^4.0",
  8664. "symfony/css-selector": "^3.4|^4.0|^5.0",
  8665. "symfony/dependency-injection": "^4.3|^5.0",
  8666. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  8667. "symfony/expression-language": "^3.4|^4.0|^5.0",
  8668. "symfony/finder": "^3.4|^4.0|^5.0",
  8669. "symfony/process": "^3.4|^4.0|^5.0",
  8670. "symfony/routing": "^3.4|^4.0|^5.0",
  8671. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  8672. "symfony/templating": "^3.4|^4.0|^5.0",
  8673. "symfony/translation": "^4.2|^5.0",
  8674. "symfony/translation-contracts": "^1.1|^2",
  8675. "twig/twig": "^1.43|^2.13|^3.0.4"
  8676. },
  8677. "suggest": {
  8678. "symfony/browser-kit": "",
  8679. "symfony/config": "",
  8680. "symfony/console": "",
  8681. "symfony/dependency-injection": ""
  8682. },
  8683. "type": "library",
  8684. "autoload": {
  8685. "psr-4": {
  8686. "Symfony\\Component\\HttpKernel\\": ""
  8687. },
  8688. "exclude-from-classmap": [
  8689. "/Tests/"
  8690. ]
  8691. },
  8692. "notification-url": "https://packagist.org/downloads/",
  8693. "license": [
  8694. "MIT"
  8695. ],
  8696. "authors": [
  8697. {
  8698. "name": "Fabien Potencier",
  8699. "email": "fabien@symfony.com"
  8700. },
  8701. {
  8702. "name": "Symfony Community",
  8703. "homepage": "https://symfony.com/contributors"
  8704. }
  8705. ],
  8706. "description": "Provides a structured process for converting a Request into a Response",
  8707. "homepage": "https://symfony.com",
  8708. "support": {
  8709. "source": "https://github.com/symfony/http-kernel/tree/v4.4.51"
  8710. },
  8711. "funding": [
  8712. {
  8713. "url": "https://symfony.com/sponsor",
  8714. "type": "custom"
  8715. },
  8716. {
  8717. "url": "https://github.com/fabpot",
  8718. "type": "github"
  8719. },
  8720. {
  8721. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8722. "type": "tidelift"
  8723. }
  8724. ],
  8725. "time": "2023-11-10T13:31:29+00:00"
  8726. },
  8727. {
  8728. "name": "symfony/mime",
  8729. "version": "v5.4.13",
  8730. "source": {
  8731. "type": "git",
  8732. "url": "https://github.com/symfony/mime.git",
  8733. "reference": "bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd"
  8734. },
  8735. "dist": {
  8736. "type": "zip",
  8737. "url": "https://api.github.com/repos/symfony/mime/zipball/bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd",
  8738. "reference": "bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd",
  8739. "shasum": ""
  8740. },
  8741. "require": {
  8742. "php": ">=7.2.5",
  8743. "symfony/deprecation-contracts": "^2.1|^3",
  8744. "symfony/polyfill-intl-idn": "^1.10",
  8745. "symfony/polyfill-mbstring": "^1.0",
  8746. "symfony/polyfill-php80": "^1.16"
  8747. },
  8748. "conflict": {
  8749. "egulias/email-validator": "~3.0.0",
  8750. "phpdocumentor/reflection-docblock": "<3.2.2",
  8751. "phpdocumentor/type-resolver": "<1.4.0",
  8752. "symfony/mailer": "<4.4"
  8753. },
  8754. "require-dev": {
  8755. "egulias/email-validator": "^2.1.10|^3.1",
  8756. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  8757. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  8758. "symfony/property-access": "^4.4|^5.1|^6.0",
  8759. "symfony/property-info": "^4.4|^5.1|^6.0",
  8760. "symfony/serializer": "^5.2|^6.0"
  8761. },
  8762. "type": "library",
  8763. "autoload": {
  8764. "psr-4": {
  8765. "Symfony\\Component\\Mime\\": ""
  8766. },
  8767. "exclude-from-classmap": [
  8768. "/Tests/"
  8769. ]
  8770. },
  8771. "notification-url": "https://packagist.org/downloads/",
  8772. "license": [
  8773. "MIT"
  8774. ],
  8775. "authors": [
  8776. {
  8777. "name": "Fabien Potencier",
  8778. "email": "fabien@symfony.com"
  8779. },
  8780. {
  8781. "name": "Symfony Community",
  8782. "homepage": "https://symfony.com/contributors"
  8783. }
  8784. ],
  8785. "description": "Allows manipulating MIME messages",
  8786. "homepage": "https://symfony.com",
  8787. "keywords": [
  8788. "mime",
  8789. "mime-type"
  8790. ],
  8791. "support": {
  8792. "source": "https://github.com/symfony/mime/tree/v5.4.13"
  8793. },
  8794. "funding": [
  8795. {
  8796. "url": "https://symfony.com/sponsor",
  8797. "type": "custom"
  8798. },
  8799. {
  8800. "url": "https://github.com/fabpot",
  8801. "type": "github"
  8802. },
  8803. {
  8804. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8805. "type": "tidelift"
  8806. }
  8807. ],
  8808. "time": "2022-09-01T18:18:29+00:00"
  8809. },
  8810. {
  8811. "name": "symfony/polyfill-ctype",
  8812. "version": "v1.27.0",
  8813. "source": {
  8814. "type": "git",
  8815. "url": "https://github.com/symfony/polyfill-ctype.git",
  8816. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  8817. },
  8818. "dist": {
  8819. "type": "zip",
  8820. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  8821. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  8822. "shasum": ""
  8823. },
  8824. "require": {
  8825. "php": ">=7.1"
  8826. },
  8827. "provide": {
  8828. "ext-ctype": "*"
  8829. },
  8830. "suggest": {
  8831. "ext-ctype": "For best performance"
  8832. },
  8833. "type": "library",
  8834. "extra": {
  8835. "branch-alias": {
  8836. "dev-main": "1.27-dev"
  8837. },
  8838. "thanks": {
  8839. "name": "symfony/polyfill",
  8840. "url": "https://github.com/symfony/polyfill"
  8841. }
  8842. },
  8843. "autoload": {
  8844. "files": [
  8845. "bootstrap.php"
  8846. ],
  8847. "psr-4": {
  8848. "Symfony\\Polyfill\\Ctype\\": ""
  8849. }
  8850. },
  8851. "notification-url": "https://packagist.org/downloads/",
  8852. "license": [
  8853. "MIT"
  8854. ],
  8855. "authors": [
  8856. {
  8857. "name": "Gert de Pagter",
  8858. "email": "BackEndTea@gmail.com"
  8859. },
  8860. {
  8861. "name": "Symfony Community",
  8862. "homepage": "https://symfony.com/contributors"
  8863. }
  8864. ],
  8865. "description": "Symfony polyfill for ctype functions",
  8866. "homepage": "https://symfony.com",
  8867. "keywords": [
  8868. "compatibility",
  8869. "ctype",
  8870. "polyfill",
  8871. "portable"
  8872. ],
  8873. "support": {
  8874. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  8875. },
  8876. "funding": [
  8877. {
  8878. "url": "https://symfony.com/sponsor",
  8879. "type": "custom"
  8880. },
  8881. {
  8882. "url": "https://github.com/fabpot",
  8883. "type": "github"
  8884. },
  8885. {
  8886. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8887. "type": "tidelift"
  8888. }
  8889. ],
  8890. "time": "2022-11-03T14:55:06+00:00"
  8891. },
  8892. {
  8893. "name": "symfony/polyfill-iconv",
  8894. "version": "v1.27.0",
  8895. "source": {
  8896. "type": "git",
  8897. "url": "https://github.com/symfony/polyfill-iconv.git",
  8898. "reference": "927013f3aac555983a5059aada98e1907d842695"
  8899. },
  8900. "dist": {
  8901. "type": "zip",
  8902. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695",
  8903. "reference": "927013f3aac555983a5059aada98e1907d842695",
  8904. "shasum": ""
  8905. },
  8906. "require": {
  8907. "php": ">=7.1"
  8908. },
  8909. "provide": {
  8910. "ext-iconv": "*"
  8911. },
  8912. "suggest": {
  8913. "ext-iconv": "For best performance"
  8914. },
  8915. "type": "library",
  8916. "extra": {
  8917. "branch-alias": {
  8918. "dev-main": "1.27-dev"
  8919. },
  8920. "thanks": {
  8921. "name": "symfony/polyfill",
  8922. "url": "https://github.com/symfony/polyfill"
  8923. }
  8924. },
  8925. "autoload": {
  8926. "files": [
  8927. "bootstrap.php"
  8928. ],
  8929. "psr-4": {
  8930. "Symfony\\Polyfill\\Iconv\\": ""
  8931. }
  8932. },
  8933. "notification-url": "https://packagist.org/downloads/",
  8934. "license": [
  8935. "MIT"
  8936. ],
  8937. "authors": [
  8938. {
  8939. "name": "Nicolas Grekas",
  8940. "email": "p@tchwork.com"
  8941. },
  8942. {
  8943. "name": "Symfony Community",
  8944. "homepage": "https://symfony.com/contributors"
  8945. }
  8946. ],
  8947. "description": "Symfony polyfill for the Iconv extension",
  8948. "homepage": "https://symfony.com",
  8949. "keywords": [
  8950. "compatibility",
  8951. "iconv",
  8952. "polyfill",
  8953. "portable",
  8954. "shim"
  8955. ],
  8956. "support": {
  8957. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0"
  8958. },
  8959. "funding": [
  8960. {
  8961. "url": "https://symfony.com/sponsor",
  8962. "type": "custom"
  8963. },
  8964. {
  8965. "url": "https://github.com/fabpot",
  8966. "type": "github"
  8967. },
  8968. {
  8969. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8970. "type": "tidelift"
  8971. }
  8972. ],
  8973. "time": "2022-11-03T14:55:06+00:00"
  8974. },
  8975. {
  8976. "name": "symfony/polyfill-intl-idn",
  8977. "version": "v1.27.0",
  8978. "source": {
  8979. "type": "git",
  8980. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8981. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  8982. },
  8983. "dist": {
  8984. "type": "zip",
  8985. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  8986. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  8987. "shasum": ""
  8988. },
  8989. "require": {
  8990. "php": ">=7.1",
  8991. "symfony/polyfill-intl-normalizer": "^1.10",
  8992. "symfony/polyfill-php72": "^1.10"
  8993. },
  8994. "suggest": {
  8995. "ext-intl": "For best performance"
  8996. },
  8997. "type": "library",
  8998. "extra": {
  8999. "branch-alias": {
  9000. "dev-main": "1.27-dev"
  9001. },
  9002. "thanks": {
  9003. "name": "symfony/polyfill",
  9004. "url": "https://github.com/symfony/polyfill"
  9005. }
  9006. },
  9007. "autoload": {
  9008. "files": [
  9009. "bootstrap.php"
  9010. ],
  9011. "psr-4": {
  9012. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  9013. }
  9014. },
  9015. "notification-url": "https://packagist.org/downloads/",
  9016. "license": [
  9017. "MIT"
  9018. ],
  9019. "authors": [
  9020. {
  9021. "name": "Laurent Bassin",
  9022. "email": "laurent@bassin.info"
  9023. },
  9024. {
  9025. "name": "Trevor Rowbotham",
  9026. "email": "trevor.rowbotham@pm.me"
  9027. },
  9028. {
  9029. "name": "Symfony Community",
  9030. "homepage": "https://symfony.com/contributors"
  9031. }
  9032. ],
  9033. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  9034. "homepage": "https://symfony.com",
  9035. "keywords": [
  9036. "compatibility",
  9037. "idn",
  9038. "intl",
  9039. "polyfill",
  9040. "portable",
  9041. "shim"
  9042. ],
  9043. "support": {
  9044. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  9045. },
  9046. "funding": [
  9047. {
  9048. "url": "https://symfony.com/sponsor",
  9049. "type": "custom"
  9050. },
  9051. {
  9052. "url": "https://github.com/fabpot",
  9053. "type": "github"
  9054. },
  9055. {
  9056. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9057. "type": "tidelift"
  9058. }
  9059. ],
  9060. "time": "2022-11-03T14:55:06+00:00"
  9061. },
  9062. {
  9063. "name": "symfony/polyfill-intl-normalizer",
  9064. "version": "v1.27.0",
  9065. "source": {
  9066. "type": "git",
  9067. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  9068. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  9069. },
  9070. "dist": {
  9071. "type": "zip",
  9072. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  9073. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  9074. "shasum": ""
  9075. },
  9076. "require": {
  9077. "php": ">=7.1"
  9078. },
  9079. "suggest": {
  9080. "ext-intl": "For best performance"
  9081. },
  9082. "type": "library",
  9083. "extra": {
  9084. "branch-alias": {
  9085. "dev-main": "1.27-dev"
  9086. },
  9087. "thanks": {
  9088. "name": "symfony/polyfill",
  9089. "url": "https://github.com/symfony/polyfill"
  9090. }
  9091. },
  9092. "autoload": {
  9093. "files": [
  9094. "bootstrap.php"
  9095. ],
  9096. "psr-4": {
  9097. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  9098. },
  9099. "classmap": [
  9100. "Resources/stubs"
  9101. ]
  9102. },
  9103. "notification-url": "https://packagist.org/downloads/",
  9104. "license": [
  9105. "MIT"
  9106. ],
  9107. "authors": [
  9108. {
  9109. "name": "Nicolas Grekas",
  9110. "email": "p@tchwork.com"
  9111. },
  9112. {
  9113. "name": "Symfony Community",
  9114. "homepage": "https://symfony.com/contributors"
  9115. }
  9116. ],
  9117. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  9118. "homepage": "https://symfony.com",
  9119. "keywords": [
  9120. "compatibility",
  9121. "intl",
  9122. "normalizer",
  9123. "polyfill",
  9124. "portable",
  9125. "shim"
  9126. ],
  9127. "support": {
  9128. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  9129. },
  9130. "funding": [
  9131. {
  9132. "url": "https://symfony.com/sponsor",
  9133. "type": "custom"
  9134. },
  9135. {
  9136. "url": "https://github.com/fabpot",
  9137. "type": "github"
  9138. },
  9139. {
  9140. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9141. "type": "tidelift"
  9142. }
  9143. ],
  9144. "time": "2022-11-03T14:55:06+00:00"
  9145. },
  9146. {
  9147. "name": "symfony/polyfill-mbstring",
  9148. "version": "v1.27.0",
  9149. "source": {
  9150. "type": "git",
  9151. "url": "https://github.com/symfony/polyfill-mbstring.git",
  9152. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  9153. },
  9154. "dist": {
  9155. "type": "zip",
  9156. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  9157. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  9158. "shasum": ""
  9159. },
  9160. "require": {
  9161. "php": ">=7.1"
  9162. },
  9163. "provide": {
  9164. "ext-mbstring": "*"
  9165. },
  9166. "suggest": {
  9167. "ext-mbstring": "For best performance"
  9168. },
  9169. "type": "library",
  9170. "extra": {
  9171. "branch-alias": {
  9172. "dev-main": "1.27-dev"
  9173. },
  9174. "thanks": {
  9175. "name": "symfony/polyfill",
  9176. "url": "https://github.com/symfony/polyfill"
  9177. }
  9178. },
  9179. "autoload": {
  9180. "files": [
  9181. "bootstrap.php"
  9182. ],
  9183. "psr-4": {
  9184. "Symfony\\Polyfill\\Mbstring\\": ""
  9185. }
  9186. },
  9187. "notification-url": "https://packagist.org/downloads/",
  9188. "license": [
  9189. "MIT"
  9190. ],
  9191. "authors": [
  9192. {
  9193. "name": "Nicolas Grekas",
  9194. "email": "p@tchwork.com"
  9195. },
  9196. {
  9197. "name": "Symfony Community",
  9198. "homepage": "https://symfony.com/contributors"
  9199. }
  9200. ],
  9201. "description": "Symfony polyfill for the Mbstring extension",
  9202. "homepage": "https://symfony.com",
  9203. "keywords": [
  9204. "compatibility",
  9205. "mbstring",
  9206. "polyfill",
  9207. "portable",
  9208. "shim"
  9209. ],
  9210. "support": {
  9211. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  9212. },
  9213. "funding": [
  9214. {
  9215. "url": "https://symfony.com/sponsor",
  9216. "type": "custom"
  9217. },
  9218. {
  9219. "url": "https://github.com/fabpot",
  9220. "type": "github"
  9221. },
  9222. {
  9223. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9224. "type": "tidelift"
  9225. }
  9226. ],
  9227. "time": "2022-11-03T14:55:06+00:00"
  9228. },
  9229. {
  9230. "name": "symfony/polyfill-php72",
  9231. "version": "v1.31.0",
  9232. "source": {
  9233. "type": "git",
  9234. "url": "https://github.com/symfony/polyfill-php72.git",
  9235. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce"
  9236. },
  9237. "dist": {
  9238. "type": "zip",
  9239. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  9240. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  9241. "shasum": ""
  9242. },
  9243. "require": {
  9244. "php": ">=7.2"
  9245. },
  9246. "type": "metapackage",
  9247. "extra": {
  9248. "thanks": {
  9249. "name": "symfony/polyfill",
  9250. "url": "https://github.com/symfony/polyfill"
  9251. }
  9252. },
  9253. "notification-url": "https://packagist.org/downloads/",
  9254. "license": [
  9255. "MIT"
  9256. ],
  9257. "authors": [
  9258. {
  9259. "name": "Nicolas Grekas",
  9260. "email": "p@tchwork.com"
  9261. },
  9262. {
  9263. "name": "Symfony Community",
  9264. "homepage": "https://symfony.com/contributors"
  9265. }
  9266. ],
  9267. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  9268. "homepage": "https://symfony.com",
  9269. "keywords": [
  9270. "compatibility",
  9271. "polyfill",
  9272. "portable",
  9273. "shim"
  9274. ],
  9275. "support": {
  9276. "source": "https://github.com/symfony/polyfill-php72/tree/v1.31.0"
  9277. },
  9278. "funding": [
  9279. {
  9280. "url": "https://symfony.com/sponsor",
  9281. "type": "custom"
  9282. },
  9283. {
  9284. "url": "https://github.com/fabpot",
  9285. "type": "github"
  9286. },
  9287. {
  9288. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9289. "type": "tidelift"
  9290. }
  9291. ],
  9292. "time": "2024-09-09T11:45:10+00:00"
  9293. },
  9294. {
  9295. "name": "symfony/polyfill-php73",
  9296. "version": "v1.31.0",
  9297. "source": {
  9298. "type": "git",
  9299. "url": "https://github.com/symfony/polyfill-php73.git",
  9300. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb"
  9301. },
  9302. "dist": {
  9303. "type": "zip",
  9304. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  9305. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  9306. "shasum": ""
  9307. },
  9308. "require": {
  9309. "php": ">=7.2"
  9310. },
  9311. "type": "library",
  9312. "extra": {
  9313. "thanks": {
  9314. "name": "symfony/polyfill",
  9315. "url": "https://github.com/symfony/polyfill"
  9316. }
  9317. },
  9318. "autoload": {
  9319. "files": [
  9320. "bootstrap.php"
  9321. ],
  9322. "psr-4": {
  9323. "Symfony\\Polyfill\\Php73\\": ""
  9324. },
  9325. "classmap": [
  9326. "Resources/stubs"
  9327. ]
  9328. },
  9329. "notification-url": "https://packagist.org/downloads/",
  9330. "license": [
  9331. "MIT"
  9332. ],
  9333. "authors": [
  9334. {
  9335. "name": "Nicolas Grekas",
  9336. "email": "p@tchwork.com"
  9337. },
  9338. {
  9339. "name": "Symfony Community",
  9340. "homepage": "https://symfony.com/contributors"
  9341. }
  9342. ],
  9343. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  9344. "homepage": "https://symfony.com",
  9345. "keywords": [
  9346. "compatibility",
  9347. "polyfill",
  9348. "portable",
  9349. "shim"
  9350. ],
  9351. "support": {
  9352. "source": "https://github.com/symfony/polyfill-php73/tree/v1.31.0"
  9353. },
  9354. "funding": [
  9355. {
  9356. "url": "https://symfony.com/sponsor",
  9357. "type": "custom"
  9358. },
  9359. {
  9360. "url": "https://github.com/fabpot",
  9361. "type": "github"
  9362. },
  9363. {
  9364. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9365. "type": "tidelift"
  9366. }
  9367. ],
  9368. "time": "2024-09-09T11:45:10+00:00"
  9369. },
  9370. {
  9371. "name": "symfony/polyfill-php80",
  9372. "version": "v1.27.0",
  9373. "source": {
  9374. "type": "git",
  9375. "url": "https://github.com/symfony/polyfill-php80.git",
  9376. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  9377. },
  9378. "dist": {
  9379. "type": "zip",
  9380. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  9381. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  9382. "shasum": ""
  9383. },
  9384. "require": {
  9385. "php": ">=7.1"
  9386. },
  9387. "type": "library",
  9388. "extra": {
  9389. "branch-alias": {
  9390. "dev-main": "1.27-dev"
  9391. },
  9392. "thanks": {
  9393. "name": "symfony/polyfill",
  9394. "url": "https://github.com/symfony/polyfill"
  9395. }
  9396. },
  9397. "autoload": {
  9398. "files": [
  9399. "bootstrap.php"
  9400. ],
  9401. "psr-4": {
  9402. "Symfony\\Polyfill\\Php80\\": ""
  9403. },
  9404. "classmap": [
  9405. "Resources/stubs"
  9406. ]
  9407. },
  9408. "notification-url": "https://packagist.org/downloads/",
  9409. "license": [
  9410. "MIT"
  9411. ],
  9412. "authors": [
  9413. {
  9414. "name": "Ion Bazan",
  9415. "email": "ion.bazan@gmail.com"
  9416. },
  9417. {
  9418. "name": "Nicolas Grekas",
  9419. "email": "p@tchwork.com"
  9420. },
  9421. {
  9422. "name": "Symfony Community",
  9423. "homepage": "https://symfony.com/contributors"
  9424. }
  9425. ],
  9426. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  9427. "homepage": "https://symfony.com",
  9428. "keywords": [
  9429. "compatibility",
  9430. "polyfill",
  9431. "portable",
  9432. "shim"
  9433. ],
  9434. "support": {
  9435. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  9436. },
  9437. "funding": [
  9438. {
  9439. "url": "https://symfony.com/sponsor",
  9440. "type": "custom"
  9441. },
  9442. {
  9443. "url": "https://github.com/fabpot",
  9444. "type": "github"
  9445. },
  9446. {
  9447. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9448. "type": "tidelift"
  9449. }
  9450. ],
  9451. "time": "2022-11-03T14:55:06+00:00"
  9452. },
  9453. {
  9454. "name": "symfony/process",
  9455. "version": "v4.4.44",
  9456. "source": {
  9457. "type": "git",
  9458. "url": "https://github.com/symfony/process.git",
  9459. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2"
  9460. },
  9461. "dist": {
  9462. "type": "zip",
  9463. "url": "https://api.github.com/repos/symfony/process/zipball/5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  9464. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  9465. "shasum": ""
  9466. },
  9467. "require": {
  9468. "php": ">=7.1.3",
  9469. "symfony/polyfill-php80": "^1.16"
  9470. },
  9471. "type": "library",
  9472. "autoload": {
  9473. "psr-4": {
  9474. "Symfony\\Component\\Process\\": ""
  9475. },
  9476. "exclude-from-classmap": [
  9477. "/Tests/"
  9478. ]
  9479. },
  9480. "notification-url": "https://packagist.org/downloads/",
  9481. "license": [
  9482. "MIT"
  9483. ],
  9484. "authors": [
  9485. {
  9486. "name": "Fabien Potencier",
  9487. "email": "fabien@symfony.com"
  9488. },
  9489. {
  9490. "name": "Symfony Community",
  9491. "homepage": "https://symfony.com/contributors"
  9492. }
  9493. ],
  9494. "description": "Executes commands in sub-processes",
  9495. "homepage": "https://symfony.com",
  9496. "support": {
  9497. "source": "https://github.com/symfony/process/tree/v4.4.44"
  9498. },
  9499. "funding": [
  9500. {
  9501. "url": "https://symfony.com/sponsor",
  9502. "type": "custom"
  9503. },
  9504. {
  9505. "url": "https://github.com/fabpot",
  9506. "type": "github"
  9507. },
  9508. {
  9509. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9510. "type": "tidelift"
  9511. }
  9512. ],
  9513. "time": "2022-06-27T13:16:42+00:00"
  9514. },
  9515. {
  9516. "name": "symfony/psr-http-message-bridge",
  9517. "version": "v2.1.4",
  9518. "source": {
  9519. "type": "git",
  9520. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9521. "reference": "a125b93ef378c492e274f217874906fb9babdebb"
  9522. },
  9523. "dist": {
  9524. "type": "zip",
  9525. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a125b93ef378c492e274f217874906fb9babdebb",
  9526. "reference": "a125b93ef378c492e274f217874906fb9babdebb",
  9527. "shasum": ""
  9528. },
  9529. "require": {
  9530. "php": ">=7.1",
  9531. "psr/http-message": "^1.0",
  9532. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  9533. },
  9534. "require-dev": {
  9535. "nyholm/psr7": "^1.1",
  9536. "psr/log": "^1.1 || ^2 || ^3",
  9537. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  9538. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  9539. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  9540. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  9541. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  9542. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  9543. },
  9544. "suggest": {
  9545. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  9546. },
  9547. "type": "symfony-bridge",
  9548. "extra": {
  9549. "branch-alias": {
  9550. "dev-main": "2.1-dev"
  9551. }
  9552. },
  9553. "autoload": {
  9554. "psr-4": {
  9555. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9556. },
  9557. "exclude-from-classmap": [
  9558. "/Tests/"
  9559. ]
  9560. },
  9561. "notification-url": "https://packagist.org/downloads/",
  9562. "license": [
  9563. "MIT"
  9564. ],
  9565. "authors": [
  9566. {
  9567. "name": "Fabien Potencier",
  9568. "email": "fabien@symfony.com"
  9569. },
  9570. {
  9571. "name": "Symfony Community",
  9572. "homepage": "http://symfony.com/contributors"
  9573. }
  9574. ],
  9575. "description": "PSR HTTP message bridge",
  9576. "homepage": "http://symfony.com",
  9577. "keywords": [
  9578. "http",
  9579. "http-message",
  9580. "psr-17",
  9581. "psr-7"
  9582. ],
  9583. "support": {
  9584. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  9585. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.4"
  9586. },
  9587. "funding": [
  9588. {
  9589. "url": "https://symfony.com/sponsor",
  9590. "type": "custom"
  9591. },
  9592. {
  9593. "url": "https://github.com/fabpot",
  9594. "type": "github"
  9595. },
  9596. {
  9597. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9598. "type": "tidelift"
  9599. }
  9600. ],
  9601. "time": "2022-11-28T22:46:34+00:00"
  9602. },
  9603. {
  9604. "name": "symfony/routing",
  9605. "version": "v4.4.44",
  9606. "source": {
  9607. "type": "git",
  9608. "url": "https://github.com/symfony/routing.git",
  9609. "reference": "f7751fd8b60a07f3f349947a309b5bdfce22d6ae"
  9610. },
  9611. "dist": {
  9612. "type": "zip",
  9613. "url": "https://api.github.com/repos/symfony/routing/zipball/f7751fd8b60a07f3f349947a309b5bdfce22d6ae",
  9614. "reference": "f7751fd8b60a07f3f349947a309b5bdfce22d6ae",
  9615. "shasum": ""
  9616. },
  9617. "require": {
  9618. "php": ">=7.1.3",
  9619. "symfony/polyfill-php80": "^1.16"
  9620. },
  9621. "conflict": {
  9622. "symfony/config": "<4.2",
  9623. "symfony/dependency-injection": "<3.4",
  9624. "symfony/yaml": "<3.4"
  9625. },
  9626. "require-dev": {
  9627. "doctrine/annotations": "^1.10.4",
  9628. "psr/log": "^1|^2|^3",
  9629. "symfony/config": "^4.2|^5.0",
  9630. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  9631. "symfony/expression-language": "^3.4|^4.0|^5.0",
  9632. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  9633. "symfony/yaml": "^3.4|^4.0|^5.0"
  9634. },
  9635. "suggest": {
  9636. "doctrine/annotations": "For using the annotation loader",
  9637. "symfony/config": "For using the all-in-one router or any loader",
  9638. "symfony/expression-language": "For using expression matching",
  9639. "symfony/http-foundation": "For using a Symfony Request object",
  9640. "symfony/yaml": "For using the YAML loader"
  9641. },
  9642. "type": "library",
  9643. "autoload": {
  9644. "psr-4": {
  9645. "Symfony\\Component\\Routing\\": ""
  9646. },
  9647. "exclude-from-classmap": [
  9648. "/Tests/"
  9649. ]
  9650. },
  9651. "notification-url": "https://packagist.org/downloads/",
  9652. "license": [
  9653. "MIT"
  9654. ],
  9655. "authors": [
  9656. {
  9657. "name": "Fabien Potencier",
  9658. "email": "fabien@symfony.com"
  9659. },
  9660. {
  9661. "name": "Symfony Community",
  9662. "homepage": "https://symfony.com/contributors"
  9663. }
  9664. ],
  9665. "description": "Maps an HTTP request to a set of configuration variables",
  9666. "homepage": "https://symfony.com",
  9667. "keywords": [
  9668. "router",
  9669. "routing",
  9670. "uri",
  9671. "url"
  9672. ],
  9673. "support": {
  9674. "source": "https://github.com/symfony/routing/tree/v4.4.44"
  9675. },
  9676. "funding": [
  9677. {
  9678. "url": "https://symfony.com/sponsor",
  9679. "type": "custom"
  9680. },
  9681. {
  9682. "url": "https://github.com/fabpot",
  9683. "type": "github"
  9684. },
  9685. {
  9686. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9687. "type": "tidelift"
  9688. }
  9689. ],
  9690. "time": "2022-07-20T09:59:04+00:00"
  9691. },
  9692. {
  9693. "name": "symfony/serializer",
  9694. "version": "v4.4.47",
  9695. "source": {
  9696. "type": "git",
  9697. "url": "https://github.com/symfony/serializer.git",
  9698. "reference": "6e01d63c55657930a6de03d6e36aae50af98888d"
  9699. },
  9700. "dist": {
  9701. "type": "zip",
  9702. "url": "https://api.github.com/repos/symfony/serializer/zipball/6e01d63c55657930a6de03d6e36aae50af98888d",
  9703. "reference": "6e01d63c55657930a6de03d6e36aae50af98888d",
  9704. "shasum": ""
  9705. },
  9706. "require": {
  9707. "php": ">=7.1.3",
  9708. "symfony/polyfill-ctype": "~1.8",
  9709. "symfony/polyfill-php80": "^1.16"
  9710. },
  9711. "conflict": {
  9712. "phpdocumentor/reflection-docblock": "<3.0|>=3.2.0,<3.2.2",
  9713. "phpdocumentor/type-resolver": "<0.3.0|1.3.*",
  9714. "symfony/dependency-injection": "<3.4",
  9715. "symfony/property-access": "<3.4",
  9716. "symfony/property-info": "<3.4",
  9717. "symfony/yaml": "<3.4"
  9718. },
  9719. "require-dev": {
  9720. "doctrine/annotations": "^1.10.4",
  9721. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  9722. "symfony/cache": "^3.4|^4.0|^5.0",
  9723. "symfony/config": "^3.4|^4.0|^5.0",
  9724. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  9725. "symfony/error-handler": "^4.4|^5.0",
  9726. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  9727. "symfony/mime": "^4.4|^5.0",
  9728. "symfony/property-access": "^4.4.36|^5.3.13",
  9729. "symfony/property-info": "^3.4.13|~4.0|^5.0",
  9730. "symfony/validator": "^3.4|^4.0|^5.0",
  9731. "symfony/yaml": "^3.4|^4.0|^5.0"
  9732. },
  9733. "suggest": {
  9734. "doctrine/annotations": "For using the annotation mapping.",
  9735. "psr/cache-implementation": "For using the metadata cache.",
  9736. "symfony/config": "For using the XML mapping loader.",
  9737. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  9738. "symfony/property-access": "For using the ObjectNormalizer.",
  9739. "symfony/property-info": "To deserialize relations.",
  9740. "symfony/yaml": "For using the default YAML mapping loader."
  9741. },
  9742. "type": "library",
  9743. "autoload": {
  9744. "psr-4": {
  9745. "Symfony\\Component\\Serializer\\": ""
  9746. },
  9747. "exclude-from-classmap": [
  9748. "/Tests/"
  9749. ]
  9750. },
  9751. "notification-url": "https://packagist.org/downloads/",
  9752. "license": [
  9753. "MIT"
  9754. ],
  9755. "authors": [
  9756. {
  9757. "name": "Fabien Potencier",
  9758. "email": "fabien@symfony.com"
  9759. },
  9760. {
  9761. "name": "Symfony Community",
  9762. "homepage": "https://symfony.com/contributors"
  9763. }
  9764. ],
  9765. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  9766. "homepage": "https://symfony.com",
  9767. "support": {
  9768. "source": "https://github.com/symfony/serializer/tree/v4.4.47"
  9769. },
  9770. "funding": [
  9771. {
  9772. "url": "https://symfony.com/sponsor",
  9773. "type": "custom"
  9774. },
  9775. {
  9776. "url": "https://github.com/fabpot",
  9777. "type": "github"
  9778. },
  9779. {
  9780. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9781. "type": "tidelift"
  9782. }
  9783. ],
  9784. "time": "2022-09-19T08:38:33+00:00"
  9785. },
  9786. {
  9787. "name": "symfony/service-contracts",
  9788. "version": "v2.5.3",
  9789. "source": {
  9790. "type": "git",
  9791. "url": "https://github.com/symfony/service-contracts.git",
  9792. "reference": "a2329596ddc8fd568900e3fc76cba42489ecc7f3"
  9793. },
  9794. "dist": {
  9795. "type": "zip",
  9796. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/a2329596ddc8fd568900e3fc76cba42489ecc7f3",
  9797. "reference": "a2329596ddc8fd568900e3fc76cba42489ecc7f3",
  9798. "shasum": ""
  9799. },
  9800. "require": {
  9801. "php": ">=7.2.5",
  9802. "psr/container": "^1.1",
  9803. "symfony/deprecation-contracts": "^2.1|^3"
  9804. },
  9805. "conflict": {
  9806. "ext-psr": "<1.1|>=2"
  9807. },
  9808. "suggest": {
  9809. "symfony/service-implementation": ""
  9810. },
  9811. "type": "library",
  9812. "extra": {
  9813. "branch-alias": {
  9814. "dev-main": "2.5-dev"
  9815. },
  9816. "thanks": {
  9817. "name": "symfony/contracts",
  9818. "url": "https://github.com/symfony/contracts"
  9819. }
  9820. },
  9821. "autoload": {
  9822. "psr-4": {
  9823. "Symfony\\Contracts\\Service\\": ""
  9824. }
  9825. },
  9826. "notification-url": "https://packagist.org/downloads/",
  9827. "license": [
  9828. "MIT"
  9829. ],
  9830. "authors": [
  9831. {
  9832. "name": "Nicolas Grekas",
  9833. "email": "p@tchwork.com"
  9834. },
  9835. {
  9836. "name": "Symfony Community",
  9837. "homepage": "https://symfony.com/contributors"
  9838. }
  9839. ],
  9840. "description": "Generic abstractions related to writing services",
  9841. "homepage": "https://symfony.com",
  9842. "keywords": [
  9843. "abstractions",
  9844. "contracts",
  9845. "decoupling",
  9846. "interfaces",
  9847. "interoperability",
  9848. "standards"
  9849. ],
  9850. "support": {
  9851. "source": "https://github.com/symfony/service-contracts/tree/v2.5.3"
  9852. },
  9853. "funding": [
  9854. {
  9855. "url": "https://symfony.com/sponsor",
  9856. "type": "custom"
  9857. },
  9858. {
  9859. "url": "https://github.com/fabpot",
  9860. "type": "github"
  9861. },
  9862. {
  9863. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9864. "type": "tidelift"
  9865. }
  9866. ],
  9867. "time": "2023-04-21T15:04:16+00:00"
  9868. },
  9869. {
  9870. "name": "symfony/translation",
  9871. "version": "v4.4.47",
  9872. "source": {
  9873. "type": "git",
  9874. "url": "https://github.com/symfony/translation.git",
  9875. "reference": "45036b1d53accc48fe9bab71ccd86d57eba0dd94"
  9876. },
  9877. "dist": {
  9878. "type": "zip",
  9879. "url": "https://api.github.com/repos/symfony/translation/zipball/45036b1d53accc48fe9bab71ccd86d57eba0dd94",
  9880. "reference": "45036b1d53accc48fe9bab71ccd86d57eba0dd94",
  9881. "shasum": ""
  9882. },
  9883. "require": {
  9884. "php": ">=7.1.3",
  9885. "symfony/polyfill-mbstring": "~1.0",
  9886. "symfony/polyfill-php80": "^1.16",
  9887. "symfony/translation-contracts": "^1.1.6|^2"
  9888. },
  9889. "conflict": {
  9890. "symfony/config": "<3.4",
  9891. "symfony/dependency-injection": "<3.4",
  9892. "symfony/http-kernel": "<4.4",
  9893. "symfony/yaml": "<3.4"
  9894. },
  9895. "provide": {
  9896. "symfony/translation-implementation": "1.0|2.0"
  9897. },
  9898. "require-dev": {
  9899. "psr/log": "^1|^2|^3",
  9900. "symfony/config": "^3.4|^4.0|^5.0",
  9901. "symfony/console": "^3.4|^4.0|^5.0",
  9902. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  9903. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  9904. "symfony/http-kernel": "^4.4",
  9905. "symfony/intl": "^3.4|^4.0|^5.0",
  9906. "symfony/service-contracts": "^1.1.2|^2",
  9907. "symfony/yaml": "^3.4|^4.0|^5.0"
  9908. },
  9909. "suggest": {
  9910. "psr/log-implementation": "To use logging capability in translator",
  9911. "symfony/config": "",
  9912. "symfony/yaml": ""
  9913. },
  9914. "type": "library",
  9915. "autoload": {
  9916. "psr-4": {
  9917. "Symfony\\Component\\Translation\\": ""
  9918. },
  9919. "exclude-from-classmap": [
  9920. "/Tests/"
  9921. ]
  9922. },
  9923. "notification-url": "https://packagist.org/downloads/",
  9924. "license": [
  9925. "MIT"
  9926. ],
  9927. "authors": [
  9928. {
  9929. "name": "Fabien Potencier",
  9930. "email": "fabien@symfony.com"
  9931. },
  9932. {
  9933. "name": "Symfony Community",
  9934. "homepage": "https://symfony.com/contributors"
  9935. }
  9936. ],
  9937. "description": "Provides tools to internationalize your application",
  9938. "homepage": "https://symfony.com",
  9939. "support": {
  9940. "source": "https://github.com/symfony/translation/tree/v4.4.47"
  9941. },
  9942. "funding": [
  9943. {
  9944. "url": "https://symfony.com/sponsor",
  9945. "type": "custom"
  9946. },
  9947. {
  9948. "url": "https://github.com/fabpot",
  9949. "type": "github"
  9950. },
  9951. {
  9952. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9953. "type": "tidelift"
  9954. }
  9955. ],
  9956. "time": "2022-10-03T15:15:11+00:00"
  9957. },
  9958. {
  9959. "name": "symfony/translation-contracts",
  9960. "version": "v2.5.3",
  9961. "source": {
  9962. "type": "git",
  9963. "url": "https://github.com/symfony/translation-contracts.git",
  9964. "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664"
  9965. },
  9966. "dist": {
  9967. "type": "zip",
  9968. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b0073a77ac0b7ea55131020e87b1e3af540f4664",
  9969. "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664",
  9970. "shasum": ""
  9971. },
  9972. "require": {
  9973. "php": ">=7.2.5"
  9974. },
  9975. "suggest": {
  9976. "symfony/translation-implementation": ""
  9977. },
  9978. "type": "library",
  9979. "extra": {
  9980. "branch-alias": {
  9981. "dev-main": "2.5-dev"
  9982. },
  9983. "thanks": {
  9984. "name": "symfony/contracts",
  9985. "url": "https://github.com/symfony/contracts"
  9986. }
  9987. },
  9988. "autoload": {
  9989. "psr-4": {
  9990. "Symfony\\Contracts\\Translation\\": ""
  9991. }
  9992. },
  9993. "notification-url": "https://packagist.org/downloads/",
  9994. "license": [
  9995. "MIT"
  9996. ],
  9997. "authors": [
  9998. {
  9999. "name": "Nicolas Grekas",
  10000. "email": "p@tchwork.com"
  10001. },
  10002. {
  10003. "name": "Symfony Community",
  10004. "homepage": "https://symfony.com/contributors"
  10005. }
  10006. ],
  10007. "description": "Generic abstractions related to translation",
  10008. "homepage": "https://symfony.com",
  10009. "keywords": [
  10010. "abstractions",
  10011. "contracts",
  10012. "decoupling",
  10013. "interfaces",
  10014. "interoperability",
  10015. "standards"
  10016. ],
  10017. "support": {
  10018. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.3"
  10019. },
  10020. "funding": [
  10021. {
  10022. "url": "https://symfony.com/sponsor",
  10023. "type": "custom"
  10024. },
  10025. {
  10026. "url": "https://github.com/fabpot",
  10027. "type": "github"
  10028. },
  10029. {
  10030. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10031. "type": "tidelift"
  10032. }
  10033. ],
  10034. "time": "2024-01-23T13:51:25+00:00"
  10035. },
  10036. {
  10037. "name": "symfony/validator",
  10038. "version": "v4.4.48",
  10039. "source": {
  10040. "type": "git",
  10041. "url": "https://github.com/symfony/validator.git",
  10042. "reference": "54781a4c41efbd283b779110bf8ae7f263737775"
  10043. },
  10044. "dist": {
  10045. "type": "zip",
  10046. "url": "https://api.github.com/repos/symfony/validator/zipball/54781a4c41efbd283b779110bf8ae7f263737775",
  10047. "reference": "54781a4c41efbd283b779110bf8ae7f263737775",
  10048. "shasum": ""
  10049. },
  10050. "require": {
  10051. "php": ">=7.1.3",
  10052. "symfony/polyfill-ctype": "~1.8",
  10053. "symfony/polyfill-mbstring": "~1.0",
  10054. "symfony/polyfill-php80": "^1.16",
  10055. "symfony/translation-contracts": "^1.1|^2"
  10056. },
  10057. "conflict": {
  10058. "doctrine/lexer": "<1.1",
  10059. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  10060. "symfony/dependency-injection": "<3.4",
  10061. "symfony/http-kernel": "<4.4",
  10062. "symfony/intl": "<4.3",
  10063. "symfony/translation": ">=5.0",
  10064. "symfony/yaml": "<3.4"
  10065. },
  10066. "require-dev": {
  10067. "doctrine/annotations": "^1.10.4",
  10068. "doctrine/cache": "^1.0|^2.0",
  10069. "egulias/email-validator": "^2.1.10|^3",
  10070. "symfony/cache": "^3.4|^4.0|^5.0",
  10071. "symfony/config": "^3.4|^4.0|^5.0",
  10072. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  10073. "symfony/expression-language": "^3.4|^4.0|^5.0",
  10074. "symfony/http-client": "^4.3|^5.0",
  10075. "symfony/http-foundation": "^4.1|^5.0",
  10076. "symfony/http-kernel": "^4.4",
  10077. "symfony/intl": "^4.3|^5.0",
  10078. "symfony/mime": "^4.4|^5.0",
  10079. "symfony/property-access": "^3.4|^4.0|^5.0",
  10080. "symfony/property-info": "^3.4|^4.0|^5.0",
  10081. "symfony/translation": "^4.2",
  10082. "symfony/yaml": "^3.4|^4.0|^5.0"
  10083. },
  10084. "suggest": {
  10085. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  10086. "doctrine/cache": "For using the default cached annotation reader.",
  10087. "egulias/email-validator": "Strict (RFC compliant) email validation",
  10088. "psr/cache-implementation": "For using the mapping cache.",
  10089. "symfony/config": "",
  10090. "symfony/expression-language": "For using the Expression validator",
  10091. "symfony/http-foundation": "",
  10092. "symfony/intl": "",
  10093. "symfony/property-access": "For accessing properties within comparison constraints",
  10094. "symfony/property-info": "To automatically add NotNull and Type constraints",
  10095. "symfony/translation": "For translating validation errors.",
  10096. "symfony/yaml": ""
  10097. },
  10098. "type": "library",
  10099. "autoload": {
  10100. "psr-4": {
  10101. "Symfony\\Component\\Validator\\": ""
  10102. },
  10103. "exclude-from-classmap": [
  10104. "/Tests/"
  10105. ]
  10106. },
  10107. "notification-url": "https://packagist.org/downloads/",
  10108. "license": [
  10109. "MIT"
  10110. ],
  10111. "authors": [
  10112. {
  10113. "name": "Fabien Potencier",
  10114. "email": "fabien@symfony.com"
  10115. },
  10116. {
  10117. "name": "Symfony Community",
  10118. "homepage": "https://symfony.com/contributors"
  10119. }
  10120. ],
  10121. "description": "Provides tools to validate values",
  10122. "homepage": "https://symfony.com",
  10123. "support": {
  10124. "source": "https://github.com/symfony/validator/tree/v4.4.48"
  10125. },
  10126. "funding": [
  10127. {
  10128. "url": "https://symfony.com/sponsor",
  10129. "type": "custom"
  10130. },
  10131. {
  10132. "url": "https://github.com/fabpot",
  10133. "type": "github"
  10134. },
  10135. {
  10136. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10137. "type": "tidelift"
  10138. }
  10139. ],
  10140. "time": "2022-10-25T13:54:11+00:00"
  10141. },
  10142. {
  10143. "name": "symfony/var-dumper",
  10144. "version": "v5.4.43",
  10145. "source": {
  10146. "type": "git",
  10147. "url": "https://github.com/symfony/var-dumper.git",
  10148. "reference": "6be6a6a8af4818564e3726fc65cf936f34743cef"
  10149. },
  10150. "dist": {
  10151. "type": "zip",
  10152. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6be6a6a8af4818564e3726fc65cf936f34743cef",
  10153. "reference": "6be6a6a8af4818564e3726fc65cf936f34743cef",
  10154. "shasum": ""
  10155. },
  10156. "require": {
  10157. "php": ">=7.2.5",
  10158. "symfony/polyfill-mbstring": "~1.0",
  10159. "symfony/polyfill-php80": "^1.16"
  10160. },
  10161. "conflict": {
  10162. "symfony/console": "<4.4"
  10163. },
  10164. "require-dev": {
  10165. "ext-iconv": "*",
  10166. "symfony/console": "^4.4|^5.0|^6.0",
  10167. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  10168. "symfony/process": "^4.4|^5.0|^6.0",
  10169. "symfony/uid": "^5.1|^6.0",
  10170. "twig/twig": "^2.13|^3.0.4"
  10171. },
  10172. "suggest": {
  10173. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  10174. "ext-intl": "To show region name in time zone dump",
  10175. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  10176. },
  10177. "bin": [
  10178. "Resources/bin/var-dump-server"
  10179. ],
  10180. "type": "library",
  10181. "autoload": {
  10182. "files": [
  10183. "Resources/functions/dump.php"
  10184. ],
  10185. "psr-4": {
  10186. "Symfony\\Component\\VarDumper\\": ""
  10187. },
  10188. "exclude-from-classmap": [
  10189. "/Tests/"
  10190. ]
  10191. },
  10192. "notification-url": "https://packagist.org/downloads/",
  10193. "license": [
  10194. "MIT"
  10195. ],
  10196. "authors": [
  10197. {
  10198. "name": "Nicolas Grekas",
  10199. "email": "p@tchwork.com"
  10200. },
  10201. {
  10202. "name": "Symfony Community",
  10203. "homepage": "https://symfony.com/contributors"
  10204. }
  10205. ],
  10206. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  10207. "homepage": "https://symfony.com",
  10208. "keywords": [
  10209. "debug",
  10210. "dump"
  10211. ],
  10212. "support": {
  10213. "source": "https://github.com/symfony/var-dumper/tree/v5.4.43"
  10214. },
  10215. "funding": [
  10216. {
  10217. "url": "https://symfony.com/sponsor",
  10218. "type": "custom"
  10219. },
  10220. {
  10221. "url": "https://github.com/fabpot",
  10222. "type": "github"
  10223. },
  10224. {
  10225. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10226. "type": "tidelift"
  10227. }
  10228. ],
  10229. "time": "2024-08-30T16:01:46+00:00"
  10230. },
  10231. {
  10232. "name": "symfony/yaml",
  10233. "version": "v4.4.45",
  10234. "source": {
  10235. "type": "git",
  10236. "url": "https://github.com/symfony/yaml.git",
  10237. "reference": "aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d"
  10238. },
  10239. "dist": {
  10240. "type": "zip",
  10241. "url": "https://api.github.com/repos/symfony/yaml/zipball/aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d",
  10242. "reference": "aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d",
  10243. "shasum": ""
  10244. },
  10245. "require": {
  10246. "php": ">=7.1.3",
  10247. "symfony/polyfill-ctype": "~1.8"
  10248. },
  10249. "conflict": {
  10250. "symfony/console": "<3.4"
  10251. },
  10252. "require-dev": {
  10253. "symfony/console": "^3.4|^4.0|^5.0"
  10254. },
  10255. "suggest": {
  10256. "symfony/console": "For validating YAML files using the lint command"
  10257. },
  10258. "type": "library",
  10259. "autoload": {
  10260. "psr-4": {
  10261. "Symfony\\Component\\Yaml\\": ""
  10262. },
  10263. "exclude-from-classmap": [
  10264. "/Tests/"
  10265. ]
  10266. },
  10267. "notification-url": "https://packagist.org/downloads/",
  10268. "license": [
  10269. "MIT"
  10270. ],
  10271. "authors": [
  10272. {
  10273. "name": "Fabien Potencier",
  10274. "email": "fabien@symfony.com"
  10275. },
  10276. {
  10277. "name": "Symfony Community",
  10278. "homepage": "https://symfony.com/contributors"
  10279. }
  10280. ],
  10281. "description": "Loads and dumps YAML files",
  10282. "homepage": "https://symfony.com",
  10283. "support": {
  10284. "source": "https://github.com/symfony/yaml/tree/v4.4.45"
  10285. },
  10286. "funding": [
  10287. {
  10288. "url": "https://symfony.com/sponsor",
  10289. "type": "custom"
  10290. },
  10291. {
  10292. "url": "https://github.com/fabpot",
  10293. "type": "github"
  10294. },
  10295. {
  10296. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10297. "type": "tidelift"
  10298. }
  10299. ],
  10300. "time": "2022-08-02T15:47:23+00:00"
  10301. },
  10302. {
  10303. "name": "twig/twig",
  10304. "version": "v2.15.6",
  10305. "source": {
  10306. "type": "git",
  10307. "url": "https://github.com/twigphp/Twig.git",
  10308. "reference": "ad637405a828601a56f32ccab9a85541c4b66c9d"
  10309. },
  10310. "dist": {
  10311. "type": "zip",
  10312. "url": "https://api.github.com/repos/twigphp/Twig/zipball/ad637405a828601a56f32ccab9a85541c4b66c9d",
  10313. "reference": "ad637405a828601a56f32ccab9a85541c4b66c9d",
  10314. "shasum": ""
  10315. },
  10316. "require": {
  10317. "php": ">=7.1.3",
  10318. "symfony/polyfill-ctype": "^1.8",
  10319. "symfony/polyfill-mbstring": "^1.3",
  10320. "symfony/polyfill-php72": "^1.8"
  10321. },
  10322. "require-dev": {
  10323. "psr/container": "^1.0",
  10324. "symfony/phpunit-bridge": "^5.4.9|^6.3"
  10325. },
  10326. "type": "library",
  10327. "extra": {
  10328. "branch-alias": {
  10329. "dev-master": "2.15-dev"
  10330. }
  10331. },
  10332. "autoload": {
  10333. "psr-0": {
  10334. "Twig_": "lib/"
  10335. },
  10336. "psr-4": {
  10337. "Twig\\": "src/"
  10338. }
  10339. },
  10340. "notification-url": "https://packagist.org/downloads/",
  10341. "license": [
  10342. "BSD-3-Clause"
  10343. ],
  10344. "authors": [
  10345. {
  10346. "name": "Fabien Potencier",
  10347. "email": "fabien@symfony.com",
  10348. "homepage": "http://fabien.potencier.org",
  10349. "role": "Lead Developer"
  10350. },
  10351. {
  10352. "name": "Twig Team",
  10353. "role": "Contributors"
  10354. },
  10355. {
  10356. "name": "Armin Ronacher",
  10357. "email": "armin.ronacher@active-4.com",
  10358. "role": "Project Founder"
  10359. }
  10360. ],
  10361. "description": "Twig, the flexible, fast, and secure template language for PHP",
  10362. "homepage": "https://twig.symfony.com",
  10363. "keywords": [
  10364. "templating"
  10365. ],
  10366. "support": {
  10367. "issues": "https://github.com/twigphp/Twig/issues",
  10368. "source": "https://github.com/twigphp/Twig/tree/v2.15.6"
  10369. },
  10370. "funding": [
  10371. {
  10372. "url": "https://github.com/fabpot",
  10373. "type": "github"
  10374. },
  10375. {
  10376. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  10377. "type": "tidelift"
  10378. }
  10379. ],
  10380. "time": "2023-11-21T17:34:48+00:00"
  10381. },
  10382. {
  10383. "name": "typo3/phar-stream-wrapper",
  10384. "version": "v3.1.7",
  10385. "source": {
  10386. "type": "git",
  10387. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  10388. "reference": "5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c"
  10389. },
  10390. "dist": {
  10391. "type": "zip",
  10392. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c",
  10393. "reference": "5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c",
  10394. "shasum": ""
  10395. },
  10396. "require": {
  10397. "ext-json": "*",
  10398. "php": "^7.0 || ^8.0"
  10399. },
  10400. "require-dev": {
  10401. "ext-xdebug": "*",
  10402. "phpspec/prophecy": "^1.10",
  10403. "symfony/phpunit-bridge": "^5.1"
  10404. },
  10405. "suggest": {
  10406. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  10407. },
  10408. "type": "library",
  10409. "extra": {
  10410. "branch-alias": {
  10411. "dev-master": "v3.x-dev"
  10412. }
  10413. },
  10414. "autoload": {
  10415. "psr-4": {
  10416. "TYPO3\\PharStreamWrapper\\": "src/"
  10417. }
  10418. },
  10419. "notification-url": "https://packagist.org/downloads/",
  10420. "license": [
  10421. "MIT"
  10422. ],
  10423. "description": "Interceptors for PHP's native phar:// stream handling",
  10424. "homepage": "https://typo3.org/",
  10425. "keywords": [
  10426. "phar",
  10427. "php",
  10428. "security",
  10429. "stream-wrapper"
  10430. ],
  10431. "support": {
  10432. "issues": "https://github.com/TYPO3/phar-stream-wrapper/issues",
  10433. "source": "https://github.com/TYPO3/phar-stream-wrapper/tree/v3.1.7"
  10434. },
  10435. "time": "2021-09-20T19:19:13+00:00"
  10436. },
  10437. {
  10438. "name": "vlucas/phpdotenv",
  10439. "version": "v2.6.9",
  10440. "source": {
  10441. "type": "git",
  10442. "url": "https://github.com/vlucas/phpdotenv.git",
  10443. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141"
  10444. },
  10445. "dist": {
  10446. "type": "zip",
  10447. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  10448. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  10449. "shasum": ""
  10450. },
  10451. "require": {
  10452. "php": "^5.3.9 || ^7.0 || ^8.0",
  10453. "symfony/polyfill-ctype": "^1.17"
  10454. },
  10455. "require-dev": {
  10456. "ext-filter": "*",
  10457. "ext-pcre": "*",
  10458. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21"
  10459. },
  10460. "suggest": {
  10461. "ext-filter": "Required to use the boolean validator.",
  10462. "ext-pcre": "Required to use most of the library."
  10463. },
  10464. "type": "library",
  10465. "extra": {
  10466. "branch-alias": {
  10467. "dev-master": "2.6-dev"
  10468. }
  10469. },
  10470. "autoload": {
  10471. "psr-4": {
  10472. "Dotenv\\": "src/"
  10473. }
  10474. },
  10475. "notification-url": "https://packagist.org/downloads/",
  10476. "license": [
  10477. "BSD-3-Clause"
  10478. ],
  10479. "authors": [
  10480. {
  10481. "name": "Graham Campbell",
  10482. "email": "hello@gjcampbell.co.uk",
  10483. "homepage": "https://github.com/GrahamCampbell"
  10484. },
  10485. {
  10486. "name": "Vance Lucas",
  10487. "email": "vance@vancelucas.com",
  10488. "homepage": "https://github.com/vlucas"
  10489. }
  10490. ],
  10491. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10492. "keywords": [
  10493. "dotenv",
  10494. "env",
  10495. "environment"
  10496. ],
  10497. "support": {
  10498. "issues": "https://github.com/vlucas/phpdotenv/issues",
  10499. "source": "https://github.com/vlucas/phpdotenv/tree/v2.6.9"
  10500. },
  10501. "funding": [
  10502. {
  10503. "url": "https://github.com/GrahamCampbell",
  10504. "type": "github"
  10505. },
  10506. {
  10507. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  10508. "type": "tidelift"
  10509. }
  10510. ],
  10511. "time": "2021-12-12T22:59:22+00:00"
  10512. },
  10513. {
  10514. "name": "webflo/drupal-finder",
  10515. "version": "1.3.1",
  10516. "source": {
  10517. "type": "git",
  10518. "url": "https://github.com/webflo/drupal-finder.git",
  10519. "reference": "73045060b0894c77962a10cff047f72872d8810c"
  10520. },
  10521. "dist": {
  10522. "type": "zip",
  10523. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/73045060b0894c77962a10cff047f72872d8810c",
  10524. "reference": "73045060b0894c77962a10cff047f72872d8810c",
  10525. "shasum": ""
  10526. },
  10527. "require": {
  10528. "composer-runtime-api": "^2.2",
  10529. "php": ">=8.1"
  10530. },
  10531. "require-dev": {
  10532. "mikey179/vfsstream": "^1.6",
  10533. "phpunit/phpunit": "^10.4",
  10534. "symfony/process": "^6.4"
  10535. },
  10536. "type": "library",
  10537. "autoload": {
  10538. "psr-4": {
  10539. "DrupalFinder\\": "src/"
  10540. }
  10541. },
  10542. "notification-url": "https://packagist.org/downloads/",
  10543. "license": [
  10544. "GPL-2.0-or-later"
  10545. ],
  10546. "authors": [
  10547. {
  10548. "name": "Florian Weber",
  10549. "email": "florian@webflo.org"
  10550. }
  10551. ],
  10552. "description": "Helper class to locate a Drupal installation.",
  10553. "support": {
  10554. "issues": "https://github.com/webflo/drupal-finder/issues",
  10555. "source": "https://github.com/webflo/drupal-finder/tree/1.3.1"
  10556. },
  10557. "time": "2024-06-28T13:45:36+00:00"
  10558. },
  10559. {
  10560. "name": "webmozart/assert",
  10561. "version": "1.11.0",
  10562. "source": {
  10563. "type": "git",
  10564. "url": "https://github.com/webmozarts/assert.git",
  10565. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  10566. },
  10567. "dist": {
  10568. "type": "zip",
  10569. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10570. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10571. "shasum": ""
  10572. },
  10573. "require": {
  10574. "ext-ctype": "*",
  10575. "php": "^7.2 || ^8.0"
  10576. },
  10577. "conflict": {
  10578. "phpstan/phpstan": "<0.12.20",
  10579. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10580. },
  10581. "require-dev": {
  10582. "phpunit/phpunit": "^8.5.13"
  10583. },
  10584. "type": "library",
  10585. "extra": {
  10586. "branch-alias": {
  10587. "dev-master": "1.10-dev"
  10588. }
  10589. },
  10590. "autoload": {
  10591. "psr-4": {
  10592. "Webmozart\\Assert\\": "src/"
  10593. }
  10594. },
  10595. "notification-url": "https://packagist.org/downloads/",
  10596. "license": [
  10597. "MIT"
  10598. ],
  10599. "authors": [
  10600. {
  10601. "name": "Bernhard Schussek",
  10602. "email": "bschussek@gmail.com"
  10603. }
  10604. ],
  10605. "description": "Assertions to validate method input/output with nice error messages.",
  10606. "keywords": [
  10607. "assert",
  10608. "check",
  10609. "validate"
  10610. ],
  10611. "support": {
  10612. "issues": "https://github.com/webmozarts/assert/issues",
  10613. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  10614. },
  10615. "time": "2022-06-03T18:03:27+00:00"
  10616. },
  10617. {
  10618. "name": "webmozart/path-util",
  10619. "version": "2.3.0",
  10620. "source": {
  10621. "type": "git",
  10622. "url": "https://github.com/webmozart/path-util.git",
  10623. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  10624. },
  10625. "dist": {
  10626. "type": "zip",
  10627. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10628. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10629. "shasum": ""
  10630. },
  10631. "require": {
  10632. "php": ">=5.3.3",
  10633. "webmozart/assert": "~1.0"
  10634. },
  10635. "require-dev": {
  10636. "phpunit/phpunit": "^4.6",
  10637. "sebastian/version": "^1.0.1"
  10638. },
  10639. "type": "library",
  10640. "extra": {
  10641. "branch-alias": {
  10642. "dev-master": "2.3-dev"
  10643. }
  10644. },
  10645. "autoload": {
  10646. "psr-4": {
  10647. "Webmozart\\PathUtil\\": "src/"
  10648. }
  10649. },
  10650. "notification-url": "https://packagist.org/downloads/",
  10651. "license": [
  10652. "MIT"
  10653. ],
  10654. "authors": [
  10655. {
  10656. "name": "Bernhard Schussek",
  10657. "email": "bschussek@gmail.com"
  10658. }
  10659. ],
  10660. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  10661. "support": {
  10662. "issues": "https://github.com/webmozart/path-util/issues",
  10663. "source": "https://github.com/webmozart/path-util/tree/2.3.0"
  10664. },
  10665. "abandoned": "symfony/filesystem",
  10666. "time": "2015-12-17T08:42:14+00:00"
  10667. }
  10668. ],
  10669. "packages-dev": [],
  10670. "aliases": [],
  10671. "minimum-stability": "dev",
  10672. "stability-flags": {
  10673. "drupal/basic": 15,
  10674. "drupal/bulkdelete": 20,
  10675. "drupal/config_update": 15,
  10676. "drupal/context": 5,
  10677. "drupal/domain": 10,
  10678. "drupal/filefield_sources": 15,
  10679. "drupal/filter_perms": 15,
  10680. "drupal/linkit": 10,
  10681. "drupal/maillog": 10,
  10682. "drupal/synonyms": 15
  10683. },
  10684. "prefer-stable": true,
  10685. "prefer-lowest": false,
  10686. "platform": {
  10687. "php": ">=5.6"
  10688. },
  10689. "platform-dev": [],
  10690. "plugin-api-version": "2.6.0"
  10691. }