composer.lock 390 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631
  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": "6f88170d270f862d1b00ce2bf9d901cb",
  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/bulkdelete",
  2159. "version": "dev-1.x",
  2160. "source": {
  2161. "type": "git",
  2162. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2163. "reference": "95a7ff49f152021be88ba562c247347ff36392c7"
  2164. },
  2165. "require": {
  2166. "drupal/core": "^8.7.7 || ^9 || ^10"
  2167. },
  2168. "type": "drupal-module",
  2169. "extra": {
  2170. "branch-alias": {
  2171. "dev-1.x": "1.x-dev"
  2172. },
  2173. "drupal": {
  2174. "version": "8.x-1.x-dev",
  2175. "datestamp": "1655322426",
  2176. "security-coverage": {
  2177. "status": "not-covered",
  2178. "message": "Dev releases are not covered by Drupal security advisories."
  2179. }
  2180. }
  2181. },
  2182. "notification-url": "https://packages.drupal.org/8/downloads",
  2183. "license": [
  2184. "GPL-2.0-or-later"
  2185. ],
  2186. "authors": [
  2187. {
  2188. "name": "Kars-T",
  2189. "homepage": "https://www.drupal.org/user/224499"
  2190. },
  2191. {
  2192. "name": "Rahul Seth",
  2193. "homepage": "https://www.drupal.org/user/2694359"
  2194. },
  2195. {
  2196. "name": "adriancid",
  2197. "homepage": "https://www.drupal.org/user/1962106"
  2198. },
  2199. {
  2200. "name": "robertDouglass",
  2201. "homepage": "https://www.drupal.org/user/5449"
  2202. }
  2203. ],
  2204. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2205. "homepage": "https://www.drupal.org/project/bulkdelete",
  2206. "support": {
  2207. "source": "https://git.drupalcode.org/project/bulkdelete"
  2208. }
  2209. },
  2210. {
  2211. "name": "drupal/color_field",
  2212. "version": "3.0.1",
  2213. "source": {
  2214. "type": "git",
  2215. "url": "https://git.drupalcode.org/project/color_field.git",
  2216. "reference": "3.0.1"
  2217. },
  2218. "dist": {
  2219. "type": "zip",
  2220. "url": "https://ftp.drupal.org/files/projects/color_field-3.0.1.zip",
  2221. "reference": "3.0.1",
  2222. "shasum": "fd2f75db74063f817d81a537221fa1c8398e4d8f"
  2223. },
  2224. "require": {
  2225. "drupal/core": "^9 || ^10 || ^11"
  2226. },
  2227. "require-dev": {
  2228. "drupal/core-recommended": "^9 || ^10",
  2229. "drupal/feeds": "^3.0@beta",
  2230. "drupal/token": "~1.3"
  2231. },
  2232. "suggest": {
  2233. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  2234. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  2235. },
  2236. "type": "drupal-module",
  2237. "extra": {
  2238. "drupal": {
  2239. "version": "3.0.1",
  2240. "datestamp": "1717506868",
  2241. "security-coverage": {
  2242. "status": "covered",
  2243. "message": "Covered by Drupal's security advisory policy"
  2244. }
  2245. }
  2246. },
  2247. "notification-url": "https://packages.drupal.org/8/downloads",
  2248. "license": [
  2249. "GPL-2.0-or-later"
  2250. ],
  2251. "authors": [
  2252. {
  2253. "name": "targoo",
  2254. "homepage": "https://www.drupal.org/user/431910",
  2255. "role": "Maintainer"
  2256. },
  2257. {
  2258. "name": "Nick Wilde",
  2259. "homepage": "https://www.drupal.org/user/nickwilde",
  2260. "role": "Maintainer"
  2261. },
  2262. {
  2263. "name": "targoo",
  2264. "homepage": "https://www.drupal.org/user/431910"
  2265. }
  2266. ],
  2267. "description": "Provides a color field type to store the color value and opacity",
  2268. "homepage": "https://www.drupal.org/project/color_field",
  2269. "support": {
  2270. "source": "https://git.drupalcode.org/project/color_field",
  2271. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2272. }
  2273. },
  2274. {
  2275. "name": "drupal/composer_deploy",
  2276. "version": "1.7.0",
  2277. "source": {
  2278. "type": "git",
  2279. "url": "https://git.drupalcode.org/project/composer_deploy.git",
  2280. "reference": "8.x-1.7"
  2281. },
  2282. "dist": {
  2283. "type": "zip",
  2284. "url": "https://ftp.drupal.org/files/projects/composer_deploy-8.x-1.7.zip",
  2285. "reference": "8.x-1.7",
  2286. "shasum": "545cb7d83c701fb68f4d95522f24d7270332ce8a"
  2287. },
  2288. "require": {
  2289. "drupal/core": "^8.8 || ^9 || ^10",
  2290. "webflo/drupal-finder": "^1.2"
  2291. },
  2292. "type": "drupal-module",
  2293. "extra": {
  2294. "drupal": {
  2295. "version": "8.x-1.7",
  2296. "datestamp": "1660818349",
  2297. "security-coverage": {
  2298. "status": "covered",
  2299. "message": "Covered by Drupal's security advisory policy"
  2300. }
  2301. }
  2302. },
  2303. "notification-url": "https://packages.drupal.org/8/downloads",
  2304. "license": [
  2305. "GPL-2.0+"
  2306. ],
  2307. "authors": [
  2308. {
  2309. "name": "jhedstrom",
  2310. "homepage": "https://www.drupal.org/user/208732"
  2311. },
  2312. {
  2313. "name": "joelpittet",
  2314. "homepage": "https://www.drupal.org/user/160302"
  2315. },
  2316. {
  2317. "name": "nerdstein",
  2318. "homepage": "https://www.drupal.org/user/1557710"
  2319. },
  2320. {
  2321. "name": "webflo",
  2322. "homepage": "https://www.drupal.org/user/254778"
  2323. }
  2324. ],
  2325. "description": "Provide version number from composers lockfile.",
  2326. "homepage": "https://www.drupal.org/project/composer_deploy",
  2327. "support": {
  2328. "source": "https://git.drupalcode.org/project/composer_deploy"
  2329. }
  2330. },
  2331. {
  2332. "name": "drupal/config_devel",
  2333. "version": "1.9.0",
  2334. "source": {
  2335. "type": "git",
  2336. "url": "https://git.drupalcode.org/project/config_devel.git",
  2337. "reference": "8.x-1.9"
  2338. },
  2339. "dist": {
  2340. "type": "zip",
  2341. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.9.zip",
  2342. "reference": "8.x-1.9",
  2343. "shasum": "a9cb90575ec854b8d8adb4633a0ddc47c490ca87"
  2344. },
  2345. "require": {
  2346. "drupal/core": "^9.3 || ^10"
  2347. },
  2348. "type": "drupal-module",
  2349. "extra": {
  2350. "drupal": {
  2351. "version": "8.x-1.9",
  2352. "datestamp": "1678264813",
  2353. "security-coverage": {
  2354. "status": "covered",
  2355. "message": "Covered by Drupal's security advisory policy"
  2356. }
  2357. }
  2358. },
  2359. "notification-url": "https://packages.drupal.org/8/downloads",
  2360. "license": [
  2361. "GPL-2.0+"
  2362. ],
  2363. "authors": [
  2364. {
  2365. "name": "alexpott",
  2366. "homepage": "https://www.drupal.org/user/157725"
  2367. },
  2368. {
  2369. "name": "benjy",
  2370. "homepage": "https://www.drupal.org/user/1852732"
  2371. },
  2372. {
  2373. "name": "chx",
  2374. "homepage": "https://www.drupal.org/user/9446"
  2375. },
  2376. {
  2377. "name": "joachim",
  2378. "homepage": "https://www.drupal.org/user/107701"
  2379. },
  2380. {
  2381. "name": "vijaycs85",
  2382. "homepage": "https://www.drupal.org/user/93488"
  2383. }
  2384. ],
  2385. "description": "Helps developers work with configuration.",
  2386. "homepage": "https://www.drupal.org/project/config_devel",
  2387. "support": {
  2388. "source": "https://git.drupalcode.org/project/config_devel"
  2389. }
  2390. },
  2391. {
  2392. "name": "drupal/config_filter",
  2393. "version": "1.12.0",
  2394. "source": {
  2395. "type": "git",
  2396. "url": "https://git.drupalcode.org/project/config_filter.git",
  2397. "reference": "8.x-1.12"
  2398. },
  2399. "dist": {
  2400. "type": "zip",
  2401. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.12.zip",
  2402. "reference": "8.x-1.12",
  2403. "shasum": "364581700ca3a298f62950ff37dd309d0bfb8381"
  2404. },
  2405. "require": {
  2406. "drupal/core": "^8.8 || ^9 || ^10"
  2407. },
  2408. "suggest": {
  2409. "drupal/config_split": "Split site configuration for different environments."
  2410. },
  2411. "type": "drupal-module",
  2412. "extra": {
  2413. "drupal": {
  2414. "version": "8.x-1.12",
  2415. "datestamp": "1698308496",
  2416. "security-coverage": {
  2417. "status": "covered",
  2418. "message": "Covered by Drupal's security advisory policy"
  2419. }
  2420. }
  2421. },
  2422. "notification-url": "https://packages.drupal.org/8/downloads",
  2423. "license": [
  2424. "GPL-2.0-or-later"
  2425. ],
  2426. "authors": [
  2427. {
  2428. "name": "Fabian Bircher",
  2429. "homepage": "https://www.drupal.org/u/bircher",
  2430. "email": "opensource@fabianbircher.com",
  2431. "role": "Maintainer"
  2432. },
  2433. {
  2434. "name": "Nuvole Web",
  2435. "homepage": "http://nuvole.org",
  2436. "email": "info@nuvole.org",
  2437. "role": "Maintainer"
  2438. },
  2439. {
  2440. "name": "pescetti",
  2441. "homepage": "https://www.drupal.org/user/436244"
  2442. }
  2443. ],
  2444. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2445. "homepage": "https://www.drupal.org/project/config_filter",
  2446. "keywords": [
  2447. "Drupal",
  2448. "configuration",
  2449. "configuration management"
  2450. ],
  2451. "support": {
  2452. "source": "https://git.drupalcode.org/project/config_filter",
  2453. "issues": "https://www.drupal.org/project/issues/config_filter",
  2454. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2455. }
  2456. },
  2457. {
  2458. "name": "drupal/config_ignore",
  2459. "version": "3.3.0",
  2460. "source": {
  2461. "type": "git",
  2462. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2463. "reference": "8.x-3.3"
  2464. },
  2465. "dist": {
  2466. "type": "zip",
  2467. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-3.3.zip",
  2468. "reference": "8.x-3.3",
  2469. "shasum": "4446811ecb023820a57c227d35c034e0d4363a70"
  2470. },
  2471. "require": {
  2472. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2473. },
  2474. "require-dev": {
  2475. "drupal/config_filter": "^1.8||^2.2",
  2476. "drush/drush": "^10 || ^11 || ^12"
  2477. },
  2478. "type": "drupal-module",
  2479. "extra": {
  2480. "drupal": {
  2481. "version": "8.x-3.3",
  2482. "datestamp": "1713299496",
  2483. "security-coverage": {
  2484. "status": "covered",
  2485. "message": "Covered by Drupal's security advisory policy"
  2486. }
  2487. }
  2488. },
  2489. "notification-url": "https://packages.drupal.org/8/downloads",
  2490. "license": [
  2491. "GPL-2.0-or-later"
  2492. ],
  2493. "authors": [
  2494. {
  2495. "name": "Tommy Lynge Jørgensen",
  2496. "homepage": "https://www.drupal.org/u/tlyngej",
  2497. "email": "tlyngej@gmail.com",
  2498. "role": "Maintainer"
  2499. },
  2500. {
  2501. "name": "Fabian Bircher",
  2502. "homepage": "https://www.drupal.org/u/bircher",
  2503. "role": "Maintainer"
  2504. },
  2505. {
  2506. "name": "tlyngej",
  2507. "homepage": "https://www.drupal.org/user/413139"
  2508. }
  2509. ],
  2510. "description": "Ignore certain configuration during import and export.",
  2511. "homepage": "http://drupal.org/project/config_ignore",
  2512. "support": {
  2513. "source": "https://git.drupalcode.org/project/config_ignore",
  2514. "issues": "http://drupal.org/project/config_ignore"
  2515. }
  2516. },
  2517. {
  2518. "name": "drupal/config_update",
  2519. "version": "2.0.0-alpha4",
  2520. "source": {
  2521. "type": "git",
  2522. "url": "https://git.drupalcode.org/project/config_update.git",
  2523. "reference": "2.0.0-alpha4"
  2524. },
  2525. "dist": {
  2526. "type": "zip",
  2527. "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha4.zip",
  2528. "reference": "2.0.0-alpha4",
  2529. "shasum": "d8ea528b0b3e24918356bb72bef61408f650aa8e"
  2530. },
  2531. "require": {
  2532. "drupal/core": "^9.4 || ^10 || ^11"
  2533. },
  2534. "type": "drupal-module",
  2535. "extra": {
  2536. "drupal": {
  2537. "version": "2.0.0-alpha4",
  2538. "datestamp": "1724596931",
  2539. "security-coverage": {
  2540. "status": "not-covered",
  2541. "message": "Alpha releases are not covered by Drupal security advisories."
  2542. }
  2543. }
  2544. },
  2545. "notification-url": "https://packages.drupal.org/8/downloads",
  2546. "license": [
  2547. "GPL-2.0-or-later"
  2548. ],
  2549. "authors": [
  2550. {
  2551. "name": "codebymikey",
  2552. "homepage": "https://www.drupal.org/user/3573206"
  2553. },
  2554. {
  2555. "name": "pasqualle",
  2556. "homepage": "https://www.drupal.org/user/80733"
  2557. },
  2558. {
  2559. "name": "vishalkhode",
  2560. "homepage": "https://www.drupal.org/user/2439156"
  2561. }
  2562. ],
  2563. "description": "Provides basic revert and update functionality for other modules.",
  2564. "homepage": "https://www.drupal.org/project/config_update",
  2565. "support": {
  2566. "source": "https://git.drupalcode.org/project/config_update"
  2567. }
  2568. },
  2569. {
  2570. "name": "drupal/context",
  2571. "version": "5.0.0-rc1",
  2572. "source": {
  2573. "type": "git",
  2574. "url": "https://git.drupalcode.org/project/context.git",
  2575. "reference": "5.0.0-rc1"
  2576. },
  2577. "dist": {
  2578. "type": "zip",
  2579. "url": "https://ftp.drupal.org/files/projects/context-5.0.0-rc1.zip",
  2580. "reference": "5.0.0-rc1",
  2581. "shasum": "ae1549bc5e5c75c0c6799b7b737d7391cfc5be73"
  2582. },
  2583. "require": {
  2584. "drupal/core": "^9.3 || ^10"
  2585. },
  2586. "type": "drupal-module",
  2587. "extra": {
  2588. "drupal": {
  2589. "version": "5.0.0-rc1",
  2590. "datestamp": "1677054769",
  2591. "security-coverage": {
  2592. "status": "not-covered",
  2593. "message": "RC releases are not covered by Drupal security advisories."
  2594. }
  2595. }
  2596. },
  2597. "notification-url": "https://packages.drupal.org/8/downloads",
  2598. "license": [
  2599. "MIT"
  2600. ],
  2601. "authors": [
  2602. {
  2603. "name": "Christoffer Palm",
  2604. "homepage": "http://www.oddhill.se/",
  2605. "email": "christoffer.palm@oddhill.se",
  2606. "role": "Developer"
  2607. },
  2608. {
  2609. "name": "boshtian",
  2610. "homepage": "https://www.drupal.org/user/1773456"
  2611. },
  2612. {
  2613. "name": "colan",
  2614. "homepage": "https://www.drupal.org/user/58704"
  2615. },
  2616. {
  2617. "name": "emanaton",
  2618. "homepage": "https://www.drupal.org/user/120853"
  2619. },
  2620. {
  2621. "name": "febbraro",
  2622. "homepage": "https://www.drupal.org/user/43670"
  2623. },
  2624. {
  2625. "name": "fizk",
  2626. "homepage": "https://www.drupal.org/user/473174"
  2627. },
  2628. {
  2629. "name": "hass",
  2630. "homepage": "https://www.drupal.org/user/85918"
  2631. },
  2632. {
  2633. "name": "hefox",
  2634. "homepage": "https://www.drupal.org/user/426416"
  2635. },
  2636. {
  2637. "name": "jmiccolis",
  2638. "homepage": "https://www.drupal.org/user/31731"
  2639. },
  2640. {
  2641. "name": "Kristen Pol",
  2642. "homepage": "https://www.drupal.org/user/8389"
  2643. },
  2644. {
  2645. "name": "nedjo",
  2646. "homepage": "https://www.drupal.org/user/4481"
  2647. },
  2648. {
  2649. "name": "NormySan",
  2650. "homepage": "https://www.drupal.org/user/112352"
  2651. },
  2652. {
  2653. "name": "patricksettle",
  2654. "homepage": "https://www.drupal.org/user/26618"
  2655. },
  2656. {
  2657. "name": "paulocs",
  2658. "homepage": "https://www.drupal.org/user/3640109"
  2659. },
  2660. {
  2661. "name": "Steven Jones",
  2662. "homepage": "https://www.drupal.org/user/99644"
  2663. },
  2664. {
  2665. "name": "tekante",
  2666. "homepage": "https://www.drupal.org/user/640024"
  2667. },
  2668. {
  2669. "name": "yhahn",
  2670. "homepage": "https://www.drupal.org/user/264833"
  2671. }
  2672. ],
  2673. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2674. "homepage": "https://github.com/oddhill/context",
  2675. "keywords": [
  2676. "Drupal",
  2677. "block",
  2678. "conditions",
  2679. "context",
  2680. "visibility"
  2681. ],
  2682. "support": {
  2683. "source": "https://github.com/oddhill/context",
  2684. "issues": "https://github.com/oddhill/context/issues",
  2685. "docs": "https://github.com/oddhill/context"
  2686. }
  2687. },
  2688. {
  2689. "name": "drupal/core",
  2690. "version": "9.5.11",
  2691. "source": {
  2692. "type": "git",
  2693. "url": "https://github.com/drupal/core.git",
  2694. "reference": "8afcb233c2a71501b35fed2713167c37831d5c19"
  2695. },
  2696. "dist": {
  2697. "type": "zip",
  2698. "url": "https://api.github.com/repos/drupal/core/zipball/8afcb233c2a71501b35fed2713167c37831d5c19",
  2699. "reference": "8afcb233c2a71501b35fed2713167c37831d5c19",
  2700. "shasum": ""
  2701. },
  2702. "require": {
  2703. "asm89/stack-cors": "^1.3",
  2704. "composer/semver": "^3.3",
  2705. "doctrine/annotations": "^1.13",
  2706. "doctrine/reflection": "^1.2",
  2707. "egulias/email-validator": "^2.1.22|^3.2",
  2708. "ext-date": "*",
  2709. "ext-dom": "*",
  2710. "ext-filter": "*",
  2711. "ext-gd": "*",
  2712. "ext-hash": "*",
  2713. "ext-json": "*",
  2714. "ext-pcre": "*",
  2715. "ext-pdo": "*",
  2716. "ext-session": "*",
  2717. "ext-simplexml": "*",
  2718. "ext-spl": "*",
  2719. "ext-tokenizer": "*",
  2720. "ext-xml": "*",
  2721. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  2722. "laminas/laminas-feed": "^2.17",
  2723. "longwave/laminas-diactoros": "^2.14",
  2724. "masterminds/html5": "^2.7",
  2725. "pear/archive_tar": "^1.4.14",
  2726. "php": ">=7.3.0",
  2727. "psr/log": "^1.1",
  2728. "stack/builder": "^1.0",
  2729. "symfony-cmf/routing": "^2.3",
  2730. "symfony/console": "^4.4",
  2731. "symfony/dependency-injection": "^4.4",
  2732. "symfony/event-dispatcher": "^4.4",
  2733. "symfony/http-foundation": "^4.4.7",
  2734. "symfony/http-kernel": "^4.4",
  2735. "symfony/mime": "^5.4",
  2736. "symfony/polyfill-iconv": "^1.26",
  2737. "symfony/polyfill-php80": "^1.26",
  2738. "symfony/process": "^4.4",
  2739. "symfony/psr-http-message-bridge": "^2.1",
  2740. "symfony/routing": "^4.4",
  2741. "symfony/serializer": "^4.4",
  2742. "symfony/translation": "^4.4",
  2743. "symfony/validator": "^4.4",
  2744. "symfony/yaml": "^4.4.19",
  2745. "twig/twig": "^2.15.3",
  2746. "typo3/phar-stream-wrapper": "^3.1.3"
  2747. },
  2748. "conflict": {
  2749. "drush/drush": "<8.1.10",
  2750. "symfony/http-foundation": "4.4.42"
  2751. },
  2752. "replace": {
  2753. "drupal/core-annotation": "self.version",
  2754. "drupal/core-assertion": "self.version",
  2755. "drupal/core-bridge": "self.version",
  2756. "drupal/core-class-finder": "self.version",
  2757. "drupal/core-datetime": "self.version",
  2758. "drupal/core-dependency-injection": "self.version",
  2759. "drupal/core-diff": "self.version",
  2760. "drupal/core-discovery": "self.version",
  2761. "drupal/core-event-dispatcher": "self.version",
  2762. "drupal/core-file-cache": "self.version",
  2763. "drupal/core-file-security": "self.version",
  2764. "drupal/core-filesystem": "self.version",
  2765. "drupal/core-front-matter": "self.version",
  2766. "drupal/core-gettext": "self.version",
  2767. "drupal/core-graph": "self.version",
  2768. "drupal/core-http-foundation": "self.version",
  2769. "drupal/core-php-storage": "self.version",
  2770. "drupal/core-plugin": "self.version",
  2771. "drupal/core-proxy-builder": "self.version",
  2772. "drupal/core-render": "self.version",
  2773. "drupal/core-serialization": "self.version",
  2774. "drupal/core-transliteration": "self.version",
  2775. "drupal/core-utility": "self.version",
  2776. "drupal/core-uuid": "self.version",
  2777. "drupal/core-version": "self.version"
  2778. },
  2779. "type": "drupal-core",
  2780. "extra": {
  2781. "drupal-scaffold": {
  2782. "file-mapping": {
  2783. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  2784. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  2785. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  2786. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  2787. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  2788. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  2789. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  2790. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  2791. "[web-root]/index.php": "assets/scaffold/files/index.php",
  2792. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  2793. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  2794. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  2795. "[web-root]/update.php": "assets/scaffold/files/update.php",
  2796. "[web-root]/web.config": "assets/scaffold/files/web.config",
  2797. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  2798. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  2799. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  2800. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  2801. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  2802. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  2803. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  2804. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  2805. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  2806. }
  2807. }
  2808. },
  2809. "autoload": {
  2810. "files": [
  2811. "includes/bootstrap.inc",
  2812. "includes/guzzle_php81_shim.php"
  2813. ],
  2814. "psr-4": {
  2815. "Drupal\\Core\\": "lib/Drupal/Core",
  2816. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver",
  2817. "Drupal\\Component\\": "lib/Drupal/Component"
  2818. },
  2819. "classmap": [
  2820. "lib/Drupal.php",
  2821. "lib/Drupal/Component/DependencyInjection/Container.php",
  2822. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  2823. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  2824. "lib/Drupal/Component/Utility/Timer.php",
  2825. "lib/Drupal/Component/Utility/Unicode.php",
  2826. "lib/Drupal/Core/Cache/Cache.php",
  2827. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  2828. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  2829. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  2830. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  2831. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  2832. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  2833. "lib/Drupal/Core/Database/Connection.php",
  2834. "lib/Drupal/Core/Database/Database.php",
  2835. "lib/Drupal/Core/Database/Statement.php",
  2836. "lib/Drupal/Core/Database/StatementInterface.php",
  2837. "lib/Drupal/Core/DependencyInjection/Container.php",
  2838. "lib/Drupal/Core/DrupalKernel.php",
  2839. "lib/Drupal/Core/DrupalKernelInterface.php",
  2840. "lib/Drupal/Core/Http/InputBag.php",
  2841. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  2842. "lib/Drupal/Core/Site/Settings.php"
  2843. ]
  2844. },
  2845. "notification-url": "https://packagist.org/downloads/",
  2846. "license": [
  2847. "GPL-2.0-or-later"
  2848. ],
  2849. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  2850. "support": {
  2851. "source": "https://github.com/drupal/core/tree/9.5.11"
  2852. },
  2853. "time": "2023-09-19T17:58:28+00:00"
  2854. },
  2855. {
  2856. "name": "drupal/core-composer-scaffold",
  2857. "version": "9.5.11",
  2858. "source": {
  2859. "type": "git",
  2860. "url": "https://github.com/drupal/core-composer-scaffold.git",
  2861. "reference": "08da8e59c6f1bd0b1a58d18f8addc0d937bbacc7"
  2862. },
  2863. "dist": {
  2864. "type": "zip",
  2865. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/08da8e59c6f1bd0b1a58d18f8addc0d937bbacc7",
  2866. "reference": "08da8e59c6f1bd0b1a58d18f8addc0d937bbacc7",
  2867. "shasum": ""
  2868. },
  2869. "require": {
  2870. "composer-plugin-api": "^1 || ^2",
  2871. "php": ">=7.3.0"
  2872. },
  2873. "conflict": {
  2874. "drupal-composer/drupal-scaffold": "*"
  2875. },
  2876. "require-dev": {
  2877. "composer/composer": "^1.8@stable"
  2878. },
  2879. "type": "composer-plugin",
  2880. "extra": {
  2881. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  2882. "branch-alias": {
  2883. "dev-master": "1.0.x-dev"
  2884. }
  2885. },
  2886. "autoload": {
  2887. "psr-4": {
  2888. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  2889. }
  2890. },
  2891. "notification-url": "https://packagist.org/downloads/",
  2892. "license": [
  2893. "GPL-2.0-or-later"
  2894. ],
  2895. "description": "A flexible Composer project scaffold builder.",
  2896. "homepage": "https://www.drupal.org/project/drupal",
  2897. "keywords": [
  2898. "drupal"
  2899. ],
  2900. "support": {
  2901. "source": "https://github.com/drupal/core-composer-scaffold/tree/9.5.11"
  2902. },
  2903. "time": "2023-04-30T16:17:33+00:00"
  2904. },
  2905. {
  2906. "name": "drupal/core-project-message",
  2907. "version": "9.5.11",
  2908. "source": {
  2909. "type": "git",
  2910. "url": "https://github.com/drupal/core-project-message.git",
  2911. "reference": "5dfa0b75a057caf6542be67f61e7531c737db48c"
  2912. },
  2913. "dist": {
  2914. "type": "zip",
  2915. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/5dfa0b75a057caf6542be67f61e7531c737db48c",
  2916. "reference": "5dfa0b75a057caf6542be67f61e7531c737db48c",
  2917. "shasum": ""
  2918. },
  2919. "require": {
  2920. "composer-plugin-api": "^1.1 || ^2",
  2921. "php": ">=7.3.0"
  2922. },
  2923. "type": "composer-plugin",
  2924. "extra": {
  2925. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  2926. },
  2927. "autoload": {
  2928. "psr-4": {
  2929. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  2930. }
  2931. },
  2932. "notification-url": "https://packagist.org/downloads/",
  2933. "license": [
  2934. "GPL-2.0-or-later"
  2935. ],
  2936. "description": "Adds a message after Composer installation.",
  2937. "homepage": "https://www.drupal.org/project/drupal",
  2938. "keywords": [
  2939. "drupal"
  2940. ],
  2941. "support": {
  2942. "source": "https://github.com/drupal/core-project-message/tree/9.5.11"
  2943. },
  2944. "time": "2022-02-24T17:40:53+00:00"
  2945. },
  2946. {
  2947. "name": "drupal/core-recommended",
  2948. "version": "9.5.11",
  2949. "source": {
  2950. "type": "git",
  2951. "url": "https://github.com/drupal/core-recommended.git",
  2952. "reference": "af3521be5376e333ddcdbd31c5a169f16423b46f"
  2953. },
  2954. "dist": {
  2955. "type": "zip",
  2956. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/af3521be5376e333ddcdbd31c5a169f16423b46f",
  2957. "reference": "af3521be5376e333ddcdbd31c5a169f16423b46f",
  2958. "shasum": ""
  2959. },
  2960. "require": {
  2961. "asm89/stack-cors": "~1.3.0",
  2962. "composer/semver": "~3.3.2",
  2963. "doctrine/annotations": "~1.13.3",
  2964. "doctrine/lexer": "~1.2.3",
  2965. "doctrine/reflection": "~1.2.3",
  2966. "drupal/core": "9.5.11",
  2967. "egulias/email-validator": "~3.2.1",
  2968. "guzzlehttp/guzzle": "~6.5.8",
  2969. "guzzlehttp/promises": "~1.5.2",
  2970. "guzzlehttp/psr7": "~1.9.1",
  2971. "longwave/laminas-diactoros": "~2.14.2",
  2972. "masterminds/html5": "~2.7.6",
  2973. "pear/archive_tar": "~1.4.14",
  2974. "pear/console_getopt": "~v1.4.3",
  2975. "pear/pear-core-minimal": "~v1.10.11",
  2976. "pear/pear_exception": "~v1.0.2",
  2977. "psr/cache": "~1.0.1",
  2978. "psr/container": "~1.1.1",
  2979. "psr/http-factory": "~1.0.1",
  2980. "psr/http-message": "~1.0.1",
  2981. "psr/log": "~1.1.4",
  2982. "ralouphie/getallheaders": "~3.0.3",
  2983. "stack/builder": "~v1.0.6",
  2984. "symfony-cmf/routing": "~2.3.4",
  2985. "symfony/console": "~v4.4.49",
  2986. "symfony/debug": "~v4.4.44",
  2987. "symfony/dependency-injection": "~v4.4.49",
  2988. "symfony/deprecation-contracts": "~v2.5.2",
  2989. "symfony/error-handler": "~v4.4.44",
  2990. "symfony/event-dispatcher": "~v4.4.44",
  2991. "symfony/event-dispatcher-contracts": "~v1.1.13",
  2992. "symfony/http-client-contracts": "~v2.5.2",
  2993. "symfony/http-foundation": "~v4.4.49",
  2994. "symfony/http-kernel": "~v4.4.50",
  2995. "symfony/mime": "~v5.4.13",
  2996. "symfony/polyfill-ctype": "~v1.27.0",
  2997. "symfony/polyfill-iconv": "~v1.27.0",
  2998. "symfony/polyfill-intl-idn": "~v1.27.0",
  2999. "symfony/polyfill-intl-normalizer": "~v1.27.0",
  3000. "symfony/polyfill-mbstring": "~v1.27.0",
  3001. "symfony/polyfill-php80": "~v1.27.0",
  3002. "symfony/process": "~v4.4.44",
  3003. "symfony/psr-http-message-bridge": "~v2.1.4",
  3004. "symfony/routing": "~v4.4.44",
  3005. "symfony/serializer": "~v4.4.47",
  3006. "symfony/service-contracts": "~v2.5.2",
  3007. "symfony/translation": "~v4.4.47",
  3008. "symfony/translation-contracts": "~v2.5.2",
  3009. "symfony/validator": "~v4.4.48",
  3010. "symfony/var-dumper": "~v5.4.19",
  3011. "symfony/yaml": "~v4.4.45",
  3012. "twig/twig": "~v2.15.4",
  3013. "typo3/phar-stream-wrapper": "~v3.1.7"
  3014. },
  3015. "conflict": {
  3016. "webflo/drupal-core-strict": "*"
  3017. },
  3018. "type": "metapackage",
  3019. "notification-url": "https://packagist.org/downloads/",
  3020. "license": [
  3021. "GPL-2.0-or-later"
  3022. ],
  3023. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  3024. "support": {
  3025. "source": "https://github.com/drupal/core-recommended/tree/9.5.11"
  3026. },
  3027. "time": "2023-09-19T17:58:28+00:00"
  3028. },
  3029. {
  3030. "name": "drupal/ctools",
  3031. "version": "4.1.0",
  3032. "source": {
  3033. "type": "git",
  3034. "url": "https://git.drupalcode.org/project/ctools.git",
  3035. "reference": "4.1.0"
  3036. },
  3037. "dist": {
  3038. "type": "zip",
  3039. "url": "https://ftp.drupal.org/files/projects/ctools-4.1.0.zip",
  3040. "reference": "4.1.0",
  3041. "shasum": "69f5889cf557df9e55519390e6a95cfa31b67874"
  3042. },
  3043. "require": {
  3044. "drupal/core": "^9.5 || ^10 || ^11"
  3045. },
  3046. "type": "drupal-module",
  3047. "extra": {
  3048. "drupal": {
  3049. "version": "4.1.0",
  3050. "datestamp": "1718144949",
  3051. "security-coverage": {
  3052. "status": "covered",
  3053. "message": "Covered by Drupal's security advisory policy"
  3054. }
  3055. },
  3056. "branch-alias": {
  3057. "dev-8.x-3.x": "3.x-dev"
  3058. }
  3059. },
  3060. "notification-url": "https://packages.drupal.org/8/downloads",
  3061. "license": [
  3062. "GPL-2.0-or-later"
  3063. ],
  3064. "authors": [
  3065. {
  3066. "name": "Kris Vanderwater (EclipseGc)",
  3067. "homepage": "https://www.drupal.org/u/eclipsegc",
  3068. "role": "Maintainer"
  3069. },
  3070. {
  3071. "name": "Jakob Perry (japerry)",
  3072. "homepage": "https://www.drupal.org/u/japerry",
  3073. "role": "Maintainer"
  3074. },
  3075. {
  3076. "name": "Tim Plunkett (tim.plunkett)",
  3077. "homepage": "https://www.drupal.org/u/timplunkett",
  3078. "role": "Maintainer"
  3079. },
  3080. {
  3081. "name": "James Gilliland (neclimdul)",
  3082. "homepage": "https://www.drupal.org/u/neclimdul",
  3083. "role": "Maintainer"
  3084. },
  3085. {
  3086. "name": "Daniel Wehner (dawehner)",
  3087. "homepage": "https://www.drupal.org/u/dawehner",
  3088. "role": "Maintainer"
  3089. },
  3090. {
  3091. "name": "joelpittet",
  3092. "homepage": "https://www.drupal.org/user/160302"
  3093. },
  3094. {
  3095. "name": "merlinofchaos",
  3096. "homepage": "https://www.drupal.org/user/26979"
  3097. },
  3098. {
  3099. "name": "neclimdul",
  3100. "homepage": "https://www.drupal.org/user/48673"
  3101. },
  3102. {
  3103. "name": "sdboyer",
  3104. "homepage": "https://www.drupal.org/user/146719"
  3105. },
  3106. {
  3107. "name": "sun",
  3108. "homepage": "https://www.drupal.org/user/54136"
  3109. },
  3110. {
  3111. "name": "tim.plunkett",
  3112. "homepage": "https://www.drupal.org/user/241634"
  3113. }
  3114. ],
  3115. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3116. "homepage": "https://www.drupal.org/project/ctools",
  3117. "support": {
  3118. "source": "https://git.drupalcode.org/project/ctools",
  3119. "issues": "https://www.drupal.org/project/issues/ctools"
  3120. }
  3121. },
  3122. {
  3123. "name": "drupal/date_range_formatter",
  3124. "version": "4.0.2",
  3125. "source": {
  3126. "type": "git",
  3127. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3128. "reference": "4.0.2"
  3129. },
  3130. "dist": {
  3131. "type": "zip",
  3132. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-4.0.2.zip",
  3133. "reference": "4.0.2",
  3134. "shasum": "0d953912148e384aed6a6cee64115faf170319c0"
  3135. },
  3136. "require": {
  3137. "drupal/core": "^8 || ^9 || ^10"
  3138. },
  3139. "type": "drupal-module",
  3140. "extra": {
  3141. "drupal": {
  3142. "version": "4.0.2",
  3143. "datestamp": "1703156621",
  3144. "security-coverage": {
  3145. "status": "covered",
  3146. "message": "Covered by Drupal's security advisory policy"
  3147. }
  3148. }
  3149. },
  3150. "notification-url": "https://packages.drupal.org/8/downloads",
  3151. "license": [
  3152. "GPL-2.0-or-later"
  3153. ],
  3154. "authors": [
  3155. {
  3156. "name": "maximpodorov",
  3157. "homepage": "https://www.drupal.org/user/515310"
  3158. },
  3159. {
  3160. "name": "sudishth",
  3161. "homepage": "https://www.drupal.org/user/1440562"
  3162. }
  3163. ],
  3164. "description": "Formats date ranges.",
  3165. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3166. "support": {
  3167. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3168. }
  3169. },
  3170. {
  3171. "name": "drupal/devel",
  3172. "version": "5.1.2",
  3173. "source": {
  3174. "type": "git",
  3175. "url": "https://git.drupalcode.org/project/devel.git",
  3176. "reference": "5.1.2"
  3177. },
  3178. "dist": {
  3179. "type": "zip",
  3180. "url": "https://ftp.drupal.org/files/projects/devel-5.1.2.zip",
  3181. "reference": "5.1.2",
  3182. "shasum": "9b35e38bf2043bf87f88585b3d9100f38da8f07f"
  3183. },
  3184. "require": {
  3185. "doctrine/common": "^2.7 || ^3.4",
  3186. "drupal/core": "^9 || ^10",
  3187. "php": ">=7.4",
  3188. "symfony/var-dumper": "^4 || ^5 || ^6"
  3189. },
  3190. "conflict": {
  3191. "kint-php/kint": "<3"
  3192. },
  3193. "require-dev": {
  3194. "drush/drush": "^11"
  3195. },
  3196. "suggest": {
  3197. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3198. },
  3199. "type": "drupal-module",
  3200. "extra": {
  3201. "drupal": {
  3202. "version": "5.1.2",
  3203. "datestamp": "1686161028",
  3204. "security-coverage": {
  3205. "status": "covered",
  3206. "message": "Covered by Drupal's security advisory policy"
  3207. }
  3208. },
  3209. "drush": {
  3210. "services": {
  3211. "drush.services.yml": "^9 || ^10 || ^11"
  3212. }
  3213. }
  3214. },
  3215. "notification-url": "https://packages.drupal.org/8/downloads",
  3216. "license": [
  3217. "GPL-2.0-or-later"
  3218. ],
  3219. "authors": [
  3220. {
  3221. "name": "moshe weitzman",
  3222. "homepage": "https://www.drupal.org/user/23"
  3223. }
  3224. ],
  3225. "description": "Various blocks, pages, and functions for developers.",
  3226. "homepage": "https://www.drupal.org/project/devel",
  3227. "support": {
  3228. "source": "https://gitlab.com/drupalspoons/devel",
  3229. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3230. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3231. }
  3232. },
  3233. {
  3234. "name": "drupal/domain",
  3235. "version": "2.0.0-beta1",
  3236. "source": {
  3237. "type": "git",
  3238. "url": "https://git.drupalcode.org/project/domain.git",
  3239. "reference": "2.0.0-beta1"
  3240. },
  3241. "dist": {
  3242. "type": "zip",
  3243. "url": "https://ftp.drupal.org/files/projects/domain-2.0.0-beta1.zip",
  3244. "reference": "2.0.0-beta1",
  3245. "shasum": "0edbc9d6c79cb0a61c08c656e9258c2450710664"
  3246. },
  3247. "require": {
  3248. "drupal/core": "^9 || ^10"
  3249. },
  3250. "require-dev": {
  3251. "drupal/domain_access": "*",
  3252. "drupal/domain_config": "*"
  3253. },
  3254. "type": "drupal-module",
  3255. "extra": {
  3256. "drupal": {
  3257. "version": "2.0.0-beta1",
  3258. "datestamp": "1686067462",
  3259. "security-coverage": {
  3260. "status": "not-covered",
  3261. "message": "Beta releases are not covered by Drupal security advisories."
  3262. }
  3263. }
  3264. },
  3265. "notification-url": "https://packages.drupal.org/8/downloads",
  3266. "license": [
  3267. "GPL-2.0-or-later"
  3268. ],
  3269. "authors": [
  3270. {
  3271. "name": "agentrickard",
  3272. "homepage": "https://www.drupal.org/user/20975"
  3273. },
  3274. {
  3275. "name": "nonsie",
  3276. "homepage": "https://www.drupal.org/user/29899"
  3277. },
  3278. {
  3279. "name": "webflo",
  3280. "homepage": "https://www.drupal.org/user/254778"
  3281. }
  3282. ],
  3283. "description": "Creates domain records within a Drupal installation.",
  3284. "homepage": "https://www.drupal.org/project/domain",
  3285. "support": {
  3286. "source": "https://git.drupalcode.org/project/domain"
  3287. }
  3288. },
  3289. {
  3290. "name": "drupal/domain_config",
  3291. "version": "1.0.0-beta8",
  3292. "require": {
  3293. "drupal/core": "^8 || ^9",
  3294. "drupal/domain": "*"
  3295. },
  3296. "type": "metapackage",
  3297. "extra": {
  3298. "drupal": {
  3299. "version": "8.x-1.0-beta8",
  3300. "datestamp": "1677511311",
  3301. "security-coverage": {
  3302. "status": "not-covered",
  3303. "message": "Beta releases are not covered by Drupal security advisories."
  3304. }
  3305. }
  3306. },
  3307. "notification-url": "https://packages.drupal.org/8/downloads",
  3308. "license": [
  3309. "GPL-2.0-or-later"
  3310. ],
  3311. "authors": [
  3312. {
  3313. "name": "agentrickard",
  3314. "homepage": "https://www.drupal.org/user/20975"
  3315. },
  3316. {
  3317. "name": "nonsie",
  3318. "homepage": "https://www.drupal.org/user/29899"
  3319. },
  3320. {
  3321. "name": "webflo",
  3322. "homepage": "https://www.drupal.org/user/254778"
  3323. }
  3324. ],
  3325. "description": "Allows domain specific configuration.",
  3326. "homepage": "https://www.drupal.org/project/domain",
  3327. "support": {
  3328. "source": "https://git.drupalcode.org/project/domain"
  3329. }
  3330. },
  3331. {
  3332. "name": "drupal/domain_site_settings",
  3333. "version": "1.6.0",
  3334. "source": {
  3335. "type": "git",
  3336. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  3337. "reference": "8.x-1.6"
  3338. },
  3339. "dist": {
  3340. "type": "zip",
  3341. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.6.zip",
  3342. "reference": "8.x-1.6",
  3343. "shasum": "d0f89411c5dd934a63a1a5991fbc0f76c1515cb2"
  3344. },
  3345. "require": {
  3346. "drupal/core": "^8.8 || ^9 || ^10 || ^11",
  3347. "drupal/domain": "^1.0 || ^2.0",
  3348. "drupal/domain_config": "*"
  3349. },
  3350. "type": "drupal-module",
  3351. "extra": {
  3352. "drupal": {
  3353. "version": "8.x-1.6",
  3354. "datestamp": "1726238712",
  3355. "security-coverage": {
  3356. "status": "covered",
  3357. "message": "Covered by Drupal's security advisory policy"
  3358. }
  3359. }
  3360. },
  3361. "notification-url": "https://packages.drupal.org/8/downloads",
  3362. "license": [
  3363. "GPL-2.0+"
  3364. ],
  3365. "authors": [
  3366. {
  3367. "name": "aloknarwaria",
  3368. "homepage": "https://www.drupal.org/user/906640"
  3369. },
  3370. {
  3371. "name": "jeroent",
  3372. "homepage": "https://www.drupal.org/user/2228934"
  3373. },
  3374. {
  3375. "name": "malaynayak",
  3376. "homepage": "https://www.drupal.org/user/3529755"
  3377. }
  3378. ],
  3379. "description": "Basic Site Setting for Domains.",
  3380. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3381. "keywords": [
  3382. "Drupal"
  3383. ],
  3384. "support": {
  3385. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3386. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3387. }
  3388. },
  3389. {
  3390. "name": "drupal/email_registration",
  3391. "version": "1.4.0",
  3392. "source": {
  3393. "type": "git",
  3394. "url": "https://git.drupalcode.org/project/email_registration.git",
  3395. "reference": "8.x-1.4"
  3396. },
  3397. "dist": {
  3398. "type": "zip",
  3399. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.4.zip",
  3400. "reference": "8.x-1.4",
  3401. "shasum": "fe7a91b858a98533fc1d7550b0917fc80523f186"
  3402. },
  3403. "require": {
  3404. "drupal/core": "^9.1 || ^10"
  3405. },
  3406. "conflict": {
  3407. "drupal/commerce": "<2.12"
  3408. },
  3409. "require-dev": {
  3410. "drupal/commerce": "^2.0",
  3411. "drupal/token": "*"
  3412. },
  3413. "type": "drupal-module",
  3414. "extra": {
  3415. "drupal": {
  3416. "version": "8.x-1.4",
  3417. "datestamp": "1700548925",
  3418. "security-coverage": {
  3419. "status": "covered",
  3420. "message": "Covered by Drupal's security advisory policy"
  3421. }
  3422. }
  3423. },
  3424. "notification-url": "https://packages.drupal.org/8/downloads",
  3425. "license": [
  3426. "GPL-2.0-or-later"
  3427. ],
  3428. "authors": [
  3429. {
  3430. "name": "Greg Knaddison (greggles)",
  3431. "homepage": "https://www.drupal.org/u/greggles",
  3432. "role": "Maintainer"
  3433. },
  3434. {
  3435. "name": "Andrey Postnikov (andypost)",
  3436. "homepage": "https://www.drupal.org/u/andypost",
  3437. "role": "Maintainer"
  3438. },
  3439. {
  3440. "name": "Chris Herberte",
  3441. "homepage": "https://www.drupal.org/u/chris-herberte",
  3442. "role": "Maintainer"
  3443. },
  3444. {
  3445. "name": "Moshe Weitzman (moshe weitzman)",
  3446. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3447. "role": "Maintainer"
  3448. },
  3449. {
  3450. "name": "Grevil",
  3451. "homepage": "https://www.drupal.org/user/3668491"
  3452. },
  3453. {
  3454. "name": "moshe weitzman",
  3455. "homepage": "https://www.drupal.org/user/23"
  3456. }
  3457. ],
  3458. "description": "Allows users to register with an email address as their username.",
  3459. "homepage": "https://www.drupal.org/project/email_registration",
  3460. "support": {
  3461. "source": "https://git.drupalcode.org/project/email_registration",
  3462. "issues": "http://drupal.org/project/issues/email_registration"
  3463. }
  3464. },
  3465. {
  3466. "name": "drupal/entity",
  3467. "version": "1.4.0",
  3468. "source": {
  3469. "type": "git",
  3470. "url": "https://git.drupalcode.org/project/entity.git",
  3471. "reference": "8.x-1.4"
  3472. },
  3473. "dist": {
  3474. "type": "zip",
  3475. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.4.zip",
  3476. "reference": "8.x-1.4",
  3477. "shasum": "1cf7712318fad144eab106a8fcfcd396aeb5676f"
  3478. },
  3479. "require": {
  3480. "drupal/core": "^9.2|^10.0"
  3481. },
  3482. "type": "drupal-module",
  3483. "extra": {
  3484. "drupal": {
  3485. "version": "8.x-1.4",
  3486. "datestamp": "1661898023",
  3487. "security-coverage": {
  3488. "status": "covered",
  3489. "message": "Covered by Drupal's security advisory policy"
  3490. }
  3491. }
  3492. },
  3493. "notification-url": "https://packages.drupal.org/8/downloads",
  3494. "license": [
  3495. "GPL-2.0-or-later"
  3496. ],
  3497. "authors": [
  3498. {
  3499. "name": "berdir",
  3500. "homepage": "https://www.drupal.org/user/214652"
  3501. },
  3502. {
  3503. "name": "bojanz",
  3504. "homepage": "https://www.drupal.org/user/86106"
  3505. },
  3506. {
  3507. "name": "dawehner",
  3508. "homepage": "https://www.drupal.org/user/99340"
  3509. },
  3510. {
  3511. "name": "dixon_",
  3512. "homepage": "https://www.drupal.org/user/239911"
  3513. },
  3514. {
  3515. "name": "fago",
  3516. "homepage": "https://www.drupal.org/user/16747"
  3517. },
  3518. {
  3519. "name": "mglaman",
  3520. "homepage": "https://www.drupal.org/user/2416470"
  3521. },
  3522. {
  3523. "name": "TR",
  3524. "homepage": "https://www.drupal.org/user/202830"
  3525. }
  3526. ],
  3527. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3528. "homepage": "https://www.drupal.org/project/entity",
  3529. "support": {
  3530. "source": "https://git.drupalcode.org/project/entity",
  3531. "issues": "https://www.drupal.org/project/issues/entity"
  3532. }
  3533. },
  3534. {
  3535. "name": "drupal/field_group",
  3536. "version": "3.6.0",
  3537. "source": {
  3538. "type": "git",
  3539. "url": "https://git.drupalcode.org/project/field_group.git",
  3540. "reference": "8.x-3.6"
  3541. },
  3542. "dist": {
  3543. "type": "zip",
  3544. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.6.zip",
  3545. "reference": "8.x-3.6",
  3546. "shasum": "427c0a65dc1936e69e60c120776056cfe5b43e86"
  3547. },
  3548. "require": {
  3549. "drupal/core": "^9.2 || ^10 || ^11"
  3550. },
  3551. "require-dev": {
  3552. "drupal/jquery_ui_accordion": "*"
  3553. },
  3554. "type": "drupal-module",
  3555. "extra": {
  3556. "drupal": {
  3557. "version": "8.x-3.6",
  3558. "datestamp": "1722672510",
  3559. "security-coverage": {
  3560. "status": "covered",
  3561. "message": "Covered by Drupal's security advisory policy"
  3562. }
  3563. }
  3564. },
  3565. "notification-url": "https://packages.drupal.org/8/downloads",
  3566. "license": [
  3567. "GPL-2.0-or-later"
  3568. ],
  3569. "authors": [
  3570. {
  3571. "name": "anybody",
  3572. "homepage": "https://www.drupal.org/user/291091"
  3573. },
  3574. {
  3575. "name": "grevil",
  3576. "homepage": "https://www.drupal.org/user/3668491"
  3577. },
  3578. {
  3579. "name": "hydra",
  3580. "homepage": "https://www.drupal.org/user/647364"
  3581. },
  3582. {
  3583. "name": "joevagyok",
  3584. "homepage": "https://www.drupal.org/user/2876343"
  3585. },
  3586. {
  3587. "name": "jyve",
  3588. "homepage": "https://www.drupal.org/user/591438"
  3589. },
  3590. {
  3591. "name": "nils.destoop",
  3592. "homepage": "https://www.drupal.org/user/361625"
  3593. },
  3594. {
  3595. "name": "Stalski",
  3596. "homepage": "https://www.drupal.org/user/322618"
  3597. },
  3598. {
  3599. "name": "swentel",
  3600. "homepage": "https://www.drupal.org/user/107403"
  3601. }
  3602. ],
  3603. "description": "Provides the field_group module.",
  3604. "homepage": "https://www.drupal.org/project/field_group",
  3605. "support": {
  3606. "source": "https://git.drupalcode.org/project/field_group",
  3607. "issues": "https://www.drupal.org/project/issues/field_group"
  3608. }
  3609. },
  3610. {
  3611. "name": "drupal/filefield_sources",
  3612. "version": "dev-2.0.x",
  3613. "source": {
  3614. "type": "git",
  3615. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  3616. "reference": "3905bb005c2f96f7391abcd91004a81f13e83477"
  3617. },
  3618. "require": {
  3619. "drupal/core": "^9.2.0 | ^10"
  3620. },
  3621. "require-dev": {
  3622. "drupal/imce": "^3.0"
  3623. },
  3624. "type": "drupal-module",
  3625. "extra": {
  3626. "branch-alias": {
  3627. "dev-2.0.x": "2.0.x-dev"
  3628. },
  3629. "drupal": {
  3630. "version": "2.0.x-dev",
  3631. "datestamp": "1714083250",
  3632. "security-coverage": {
  3633. "status": "not-covered",
  3634. "message": "Dev releases are not covered by Drupal security advisories."
  3635. }
  3636. }
  3637. },
  3638. "notification-url": "https://packages.drupal.org/8/downloads",
  3639. "license": [
  3640. "GPL-2.0-or-later"
  3641. ],
  3642. "authors": [
  3643. {
  3644. "name": "Nate Lampton (quicksketch)",
  3645. "homepage": "https://www.drupal.org/u/quicksketch",
  3646. "role": "Maintainer"
  3647. },
  3648. {
  3649. "name": "Andrey Khromyshev (profak)",
  3650. "homepage": "https://www.drupal.org/u/profak",
  3651. "role": "Maintainer"
  3652. },
  3653. {
  3654. "name": "David Valdez (gnuget)",
  3655. "homepage": "https://www.drupal.org/u/gnuget",
  3656. "role": "Maintainer"
  3657. },
  3658. {
  3659. "name": "quicksketch",
  3660. "homepage": "https://www.drupal.org/user/35821"
  3661. }
  3662. ],
  3663. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  3664. "homepage": "https://www.drupal.org/project/filefield_sources",
  3665. "support": {
  3666. "source": "https://git.drupalcode.org/project/filefield_sources",
  3667. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  3668. "irc": "irc://irc.freenode.org/drupal-contribute"
  3669. }
  3670. },
  3671. {
  3672. "name": "drupal/filter_perms",
  3673. "version": "2.0.1",
  3674. "source": {
  3675. "type": "git",
  3676. "url": "https://git.drupalcode.org/project/filter_perms.git",
  3677. "reference": "2.0.1"
  3678. },
  3679. "dist": {
  3680. "type": "zip",
  3681. "url": "https://ftp.drupal.org/files/projects/filter_perms-2.0.1.zip",
  3682. "reference": "2.0.1",
  3683. "shasum": "76949486b0a730c1fdfd9a8d773a3a96d2e0de7b"
  3684. },
  3685. "require": {
  3686. "drupal/core": "^9.0 || ^10.0 || ^11"
  3687. },
  3688. "type": "drupal-module",
  3689. "extra": {
  3690. "drupal": {
  3691. "version": "2.0.1",
  3692. "datestamp": "1722444219",
  3693. "security-coverage": {
  3694. "status": "covered",
  3695. "message": "Covered by Drupal's security advisory policy"
  3696. }
  3697. }
  3698. },
  3699. "notification-url": "https://packages.drupal.org/8/downloads",
  3700. "license": [
  3701. "GPL-2.0+"
  3702. ],
  3703. "authors": [
  3704. {
  3705. "name": "cYu",
  3706. "homepage": "https://www.drupal.org/user/202205"
  3707. },
  3708. {
  3709. "name": "deekayen",
  3710. "homepage": "https://www.drupal.org/user/972"
  3711. },
  3712. {
  3713. "name": "ivavictoria",
  3714. "homepage": "https://www.drupal.org/user/3061533"
  3715. },
  3716. {
  3717. "name": "justcaldwell",
  3718. "homepage": "https://www.drupal.org/user/290069"
  3719. },
  3720. {
  3721. "name": "mgbellaire",
  3722. "homepage": "https://www.drupal.org/user/1831932"
  3723. },
  3724. {
  3725. "name": "willzyx",
  3726. "homepage": "https://www.drupal.org/user/1043862"
  3727. }
  3728. ],
  3729. "description": "Provides role and module filters to simplify the user permissions page.",
  3730. "homepage": "https://www.drupal.org/project/filter_perms",
  3731. "support": {
  3732. "source": "http://cgit.drupalcode.org/filter_perms",
  3733. "issues": "https://www.drupal.org/project/issues/filter_perms?categories=All"
  3734. }
  3735. },
  3736. {
  3737. "name": "drupal/honeypot",
  3738. "version": "2.1.4",
  3739. "source": {
  3740. "type": "git",
  3741. "url": "https://git.drupalcode.org/project/honeypot.git",
  3742. "reference": "2.1.4"
  3743. },
  3744. "dist": {
  3745. "type": "zip",
  3746. "url": "https://ftp.drupal.org/files/projects/honeypot-2.1.4.zip",
  3747. "reference": "2.1.4",
  3748. "shasum": "adf76c3520c0e458177dbe6d638aa2d6ae40a95b"
  3749. },
  3750. "require": {
  3751. "drupal/core": "^9.2 || ^10"
  3752. },
  3753. "require-dev": {
  3754. "drupal/rules": "^3.x-dev"
  3755. },
  3756. "type": "drupal-module",
  3757. "extra": {
  3758. "drupal": {
  3759. "version": "2.1.4",
  3760. "datestamp": "1723489062",
  3761. "security-coverage": {
  3762. "status": "covered",
  3763. "message": "Covered by Drupal's security advisory policy"
  3764. }
  3765. }
  3766. },
  3767. "notification-url": "https://packages.drupal.org/8/downloads",
  3768. "license": [
  3769. "GPL-2.0-or-later"
  3770. ],
  3771. "authors": [
  3772. {
  3773. "name": "Jeff Geerling",
  3774. "homepage": "https://www.drupal.org/user/389011",
  3775. "email": "geerlingguy@mac.com"
  3776. },
  3777. {
  3778. "name": "Manuel Garcia",
  3779. "homepage": "https://www.drupal.org/user/213194"
  3780. },
  3781. {
  3782. "name": "tr",
  3783. "homepage": "https://www.drupal.org/user/202830"
  3784. },
  3785. {
  3786. "name": "vijaycs85",
  3787. "homepage": "https://www.drupal.org/user/93488"
  3788. }
  3789. ],
  3790. "description": "Mitigates spam form submissions using the honeypot method.",
  3791. "homepage": "https://www.drupal.org/project/honeypot",
  3792. "keywords": [
  3793. "deterrent",
  3794. "form",
  3795. "honeypot",
  3796. "honeytrap",
  3797. "php",
  3798. "spam"
  3799. ],
  3800. "support": {
  3801. "source": "https://git.drupalcode.org/project/honeypot",
  3802. "issues": "https://www.drupal.org/project/issues/honeypot"
  3803. }
  3804. },
  3805. {
  3806. "name": "drupal/jquery_ui",
  3807. "version": "1.7.0",
  3808. "source": {
  3809. "type": "git",
  3810. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  3811. "reference": "8.x-1.7"
  3812. },
  3813. "dist": {
  3814. "type": "zip",
  3815. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.7.zip",
  3816. "reference": "8.x-1.7",
  3817. "shasum": "3f893843ec30fed18fa1b0cb326e51880b0cb686"
  3818. },
  3819. "require": {
  3820. "drupal/core": "^9.2 || ^10 || ^11"
  3821. },
  3822. "type": "drupal-module",
  3823. "extra": {
  3824. "drupal": {
  3825. "version": "8.x-1.7",
  3826. "datestamp": "1717002098",
  3827. "security-coverage": {
  3828. "status": "covered",
  3829. "message": "Covered by Drupal's security advisory policy"
  3830. }
  3831. }
  3832. },
  3833. "notification-url": "https://packages.drupal.org/8/downloads",
  3834. "license": [
  3835. "GPL-2.0-or-later"
  3836. ],
  3837. "authors": [
  3838. {
  3839. "name": "bnjmnm",
  3840. "homepage": "https://www.drupal.org/user/2369194"
  3841. },
  3842. {
  3843. "name": "jjeff",
  3844. "homepage": "https://www.drupal.org/user/17190"
  3845. },
  3846. {
  3847. "name": "lauriii",
  3848. "homepage": "https://www.drupal.org/user/1078742"
  3849. },
  3850. {
  3851. "name": "litwol",
  3852. "homepage": "https://www.drupal.org/user/78134"
  3853. },
  3854. {
  3855. "name": "mfb",
  3856. "homepage": "https://www.drupal.org/user/12302"
  3857. },
  3858. {
  3859. "name": "mfer",
  3860. "homepage": "https://www.drupal.org/user/25701"
  3861. },
  3862. {
  3863. "name": "mikelutz",
  3864. "homepage": "https://www.drupal.org/user/2972409"
  3865. },
  3866. {
  3867. "name": "nod_",
  3868. "homepage": "https://www.drupal.org/user/598310"
  3869. },
  3870. {
  3871. "name": "phenaproxima",
  3872. "homepage": "https://www.drupal.org/user/205645"
  3873. },
  3874. {
  3875. "name": "RobLoach",
  3876. "homepage": "https://www.drupal.org/user/61114"
  3877. },
  3878. {
  3879. "name": "sun",
  3880. "homepage": "https://www.drupal.org/user/54136"
  3881. },
  3882. {
  3883. "name": "webchick",
  3884. "homepage": "https://www.drupal.org/user/24967"
  3885. },
  3886. {
  3887. "name": "Wim Leers",
  3888. "homepage": "https://www.drupal.org/user/99777"
  3889. },
  3890. {
  3891. "name": "zrpnr",
  3892. "homepage": "https://www.drupal.org/user/1448368"
  3893. }
  3894. ],
  3895. "description": "Provides jQuery UI library.",
  3896. "homepage": "https://www.drupal.org/project/jquery_ui",
  3897. "support": {
  3898. "source": "https://git.drupalcode.org/project/jquery_ui"
  3899. }
  3900. },
  3901. {
  3902. "name": "drupal/jquery_ui_draggable",
  3903. "version": "2.1.0",
  3904. "source": {
  3905. "type": "git",
  3906. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  3907. "reference": "2.1.0"
  3908. },
  3909. "dist": {
  3910. "type": "zip",
  3911. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.1.0.zip",
  3912. "reference": "2.1.0",
  3913. "shasum": "0d014cfff20993d8051efb8f6c9093a4fe5136f3"
  3914. },
  3915. "require": {
  3916. "drupal/core": "^9.2 || ^10 || ^11",
  3917. "drupal/jquery_ui": "^1.7"
  3918. },
  3919. "type": "drupal-module",
  3920. "extra": {
  3921. "drupal": {
  3922. "version": "2.1.0",
  3923. "datestamp": "1717015492",
  3924. "security-coverage": {
  3925. "status": "covered",
  3926. "message": "Covered by Drupal's security advisory policy"
  3927. }
  3928. }
  3929. },
  3930. "notification-url": "https://packages.drupal.org/8/downloads",
  3931. "license": [
  3932. "GPL-2.0-or-later"
  3933. ],
  3934. "authors": [
  3935. {
  3936. "name": "bnjmnm",
  3937. "homepage": "https://www.drupal.org/user/2369194"
  3938. },
  3939. {
  3940. "name": "lauriii",
  3941. "homepage": "https://www.drupal.org/user/1078742"
  3942. },
  3943. {
  3944. "name": "zrpnr",
  3945. "homepage": "https://www.drupal.org/user/1448368"
  3946. }
  3947. ],
  3948. "description": "Provides jQuery UI Draggable library.",
  3949. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  3950. "support": {
  3951. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  3952. }
  3953. },
  3954. {
  3955. "name": "drupal/jquery_ui_droppable",
  3956. "version": "2.1.0",
  3957. "source": {
  3958. "type": "git",
  3959. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  3960. "reference": "2.1.0"
  3961. },
  3962. "dist": {
  3963. "type": "zip",
  3964. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-2.1.0.zip",
  3965. "reference": "2.1.0",
  3966. "shasum": "4a254056d13d7f4208929142d1a37464404c0870"
  3967. },
  3968. "require": {
  3969. "drupal/core": "^9.2 || ^10 || ^11",
  3970. "drupal/jquery_ui": "^1.7",
  3971. "drupal/jquery_ui_draggable": "^2.1"
  3972. },
  3973. "type": "drupal-module",
  3974. "extra": {
  3975. "drupal": {
  3976. "version": "2.1.0",
  3977. "datestamp": "1717031391",
  3978. "security-coverage": {
  3979. "status": "covered",
  3980. "message": "Covered by Drupal's security advisory policy"
  3981. }
  3982. }
  3983. },
  3984. "notification-url": "https://packages.drupal.org/8/downloads",
  3985. "license": [
  3986. "GPL-2.0-or-later"
  3987. ],
  3988. "authors": [
  3989. {
  3990. "name": "bnjmnm",
  3991. "homepage": "https://www.drupal.org/user/2369194"
  3992. },
  3993. {
  3994. "name": "lauriii",
  3995. "homepage": "https://www.drupal.org/user/1078742"
  3996. },
  3997. {
  3998. "name": "zrpnr",
  3999. "homepage": "https://www.drupal.org/user/1448368"
  4000. }
  4001. ],
  4002. "description": "Provides jQuery UI Droppable library.",
  4003. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  4004. "support": {
  4005. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  4006. }
  4007. },
  4008. {
  4009. "name": "drupal/jquery_ui_sortable",
  4010. "version": "2.0.1",
  4011. "source": {
  4012. "type": "git",
  4013. "url": "https://git.drupalcode.org/project/jquery_ui_sortable.git",
  4014. "reference": "2.0.1"
  4015. },
  4016. "dist": {
  4017. "type": "zip",
  4018. "url": "https://ftp.drupal.org/files/projects/jquery_ui_sortable-2.0.1.zip",
  4019. "reference": "2.0.1",
  4020. "shasum": "4e244c03b2b8324193f685677da8847aa3609522"
  4021. },
  4022. "require": {
  4023. "drupal/core": "^9.2 || ^10",
  4024. "drupal/jquery_ui": "^1.5"
  4025. },
  4026. "type": "drupal-module",
  4027. "extra": {
  4028. "drupal": {
  4029. "version": "2.0.1",
  4030. "datestamp": "1694604335",
  4031. "security-coverage": {
  4032. "status": "covered",
  4033. "message": "Covered by Drupal's security advisory policy"
  4034. }
  4035. }
  4036. },
  4037. "notification-url": "https://packages.drupal.org/8/downloads",
  4038. "license": [
  4039. "GPL-2.0-or-later"
  4040. ],
  4041. "authors": [
  4042. {
  4043. "name": "bnjmnm",
  4044. "homepage": "https://www.drupal.org/user/2369194"
  4045. },
  4046. {
  4047. "name": "lauriii",
  4048. "homepage": "https://www.drupal.org/user/1078742"
  4049. },
  4050. {
  4051. "name": "zrpnr",
  4052. "homepage": "https://www.drupal.org/user/1448368"
  4053. }
  4054. ],
  4055. "description": "Provides jQuery UI Sortable library.",
  4056. "homepage": "https://www.drupal.org/project/jquery_ui_sortable",
  4057. "support": {
  4058. "source": "https://git.drupalcode.org/project/jquery_ui_sortable"
  4059. }
  4060. },
  4061. {
  4062. "name": "drupal/js_cookie",
  4063. "version": "1.0.1",
  4064. "source": {
  4065. "type": "git",
  4066. "url": "https://git.drupalcode.org/project/js_cookie.git",
  4067. "reference": "1.0.1"
  4068. },
  4069. "dist": {
  4070. "type": "zip",
  4071. "url": "https://ftp.drupal.org/files/projects/js_cookie-1.0.1.zip",
  4072. "reference": "1.0.1",
  4073. "shasum": "e010b3de64a0d57eef9c1773c4dd7e3d9bd9118c"
  4074. },
  4075. "require": {
  4076. "drupal/core": "^9 || ^10 || ^11"
  4077. },
  4078. "type": "drupal-module",
  4079. "extra": {
  4080. "drupal": {
  4081. "version": "1.0.1",
  4082. "datestamp": "1693951097",
  4083. "security-coverage": {
  4084. "status": "covered",
  4085. "message": "Covered by Drupal's security advisory policy"
  4086. }
  4087. }
  4088. },
  4089. "notification-url": "https://packages.drupal.org/8/downloads",
  4090. "license": [
  4091. "GPL-2.0-or-later"
  4092. ],
  4093. "authors": [
  4094. {
  4095. "name": "Dave Reid",
  4096. "homepage": "https://www.drupal.org/user/53892"
  4097. }
  4098. ],
  4099. "description": "Provides the js-cookie library as a dependency.",
  4100. "homepage": "https://www.drupal.org/project/js_cookie",
  4101. "support": {
  4102. "source": "https://git.drupalcode.org/project/js_cookie"
  4103. }
  4104. },
  4105. {
  4106. "name": "drupal/linkit",
  4107. "version": "6.0.2",
  4108. "source": {
  4109. "type": "git",
  4110. "url": "https://git.drupalcode.org/project/linkit.git",
  4111. "reference": "6.0.2"
  4112. },
  4113. "dist": {
  4114. "type": "zip",
  4115. "url": "https://ftp.drupal.org/files/projects/linkit-6.0.2.zip",
  4116. "reference": "6.0.2",
  4117. "shasum": "b7d965d122403c0d1cd8b891db3ea56004026804"
  4118. },
  4119. "require": {
  4120. "drupal/core": "^9.4 || ^10.0.0"
  4121. },
  4122. "conflict": {
  4123. "drupal/core": ">=10.1"
  4124. },
  4125. "require-dev": {
  4126. "drupal/ckeditor": "*",
  4127. "drupal/imce": "*"
  4128. },
  4129. "type": "drupal-module",
  4130. "extra": {
  4131. "drupal": {
  4132. "version": "6.0.2",
  4133. "datestamp": "1696865395",
  4134. "security-coverage": {
  4135. "status": "covered",
  4136. "message": "Covered by Drupal's security advisory policy"
  4137. }
  4138. }
  4139. },
  4140. "notification-url": "https://packages.drupal.org/8/downloads",
  4141. "license": [
  4142. "GPL-2.0-or-later"
  4143. ],
  4144. "authors": [
  4145. {
  4146. "name": "Emil Stjerneman",
  4147. "homepage": "https://stjerneman.com",
  4148. "email": "emil@stjerneman.com",
  4149. "role": "Maintainer"
  4150. },
  4151. {
  4152. "name": "johnwebdev",
  4153. "homepage": "https://www.drupal.org/user/3331569"
  4154. },
  4155. {
  4156. "name": "mark_fullmer",
  4157. "homepage": "https://www.drupal.org/user/2612816"
  4158. }
  4159. ],
  4160. "description": "Linkit - Enriched linking experience",
  4161. "homepage": "http://drupal.org/project/linkit",
  4162. "support": {
  4163. "source": "http://cgit.drupalcode.org/linkit",
  4164. "issues": "http://drupal.org/project/linkit"
  4165. }
  4166. },
  4167. {
  4168. "name": "drupal/login_emailusername",
  4169. "version": "2.1.0",
  4170. "source": {
  4171. "type": "git",
  4172. "url": "https://git.drupalcode.org/project/login_emailusername.git",
  4173. "reference": "2.1.0"
  4174. },
  4175. "dist": {
  4176. "type": "zip",
  4177. "url": "https://ftp.drupal.org/files/projects/login_emailusername-2.1.0.zip",
  4178. "reference": "2.1.0",
  4179. "shasum": "5a3858d06e7d67110a6cd8eda38cbfeb350f115c"
  4180. },
  4181. "require": {
  4182. "drupal/core": "^8.8 || ^9 || ^10"
  4183. },
  4184. "type": "drupal-module",
  4185. "extra": {
  4186. "drupal": {
  4187. "version": "2.1.0",
  4188. "datestamp": "1677072401",
  4189. "security-coverage": {
  4190. "status": "covered",
  4191. "message": "Covered by Drupal's security advisory policy"
  4192. }
  4193. },
  4194. "branch-alias": {
  4195. "dev-8.x-1.x": "8.1.x-dev"
  4196. }
  4197. },
  4198. "notification-url": "https://packages.drupal.org/8/downloads",
  4199. "license": [
  4200. "GPL-2.0-or-later"
  4201. ],
  4202. "authors": [
  4203. {
  4204. "name": "See contributors",
  4205. "homepage": "https://www.drupal.org/node/2820429/committers",
  4206. "role": "contributor"
  4207. },
  4208. {
  4209. "name": "rjjakes",
  4210. "homepage": "https://www.drupal.org/user/3457245"
  4211. },
  4212. {
  4213. "name": "VladimirAus",
  4214. "homepage": "https://www.drupal.org/user/673120"
  4215. }
  4216. ],
  4217. "description": "Login with the email as username.",
  4218. "homepage": "https://drupal.org/project/login_emailusername",
  4219. "support": {
  4220. "source": "https://git.drupalcode.org/project/login_emailusername",
  4221. "issues": "https://drupal.org/project/issues/login_emailusername"
  4222. }
  4223. },
  4224. {
  4225. "name": "drupal/maillog",
  4226. "version": "1.1.0",
  4227. "source": {
  4228. "type": "git",
  4229. "url": "https://git.drupalcode.org/project/maillog.git",
  4230. "reference": "8.x-1.1"
  4231. },
  4232. "dist": {
  4233. "type": "zip",
  4234. "url": "https://ftp.drupal.org/files/projects/maillog-8.x-1.1.zip",
  4235. "reference": "8.x-1.1",
  4236. "shasum": "50199b2b37325f4a167a82ec2d1de366cda6f898"
  4237. },
  4238. "require": {
  4239. "drupal/core": "^9 || ^10"
  4240. },
  4241. "type": "drupal-module",
  4242. "extra": {
  4243. "drupal": {
  4244. "version": "8.x-1.1",
  4245. "datestamp": "1685616898",
  4246. "security-coverage": {
  4247. "status": "covered",
  4248. "message": "Covered by Drupal's security advisory policy"
  4249. }
  4250. }
  4251. },
  4252. "notification-url": "https://packages.drupal.org/8/downloads",
  4253. "license": [
  4254. "GPL-2.0-or-later"
  4255. ],
  4256. "authors": [
  4257. {
  4258. "name": "berdir",
  4259. "homepage": "https://www.drupal.org/user/214652"
  4260. },
  4261. {
  4262. "name": "damienmckenna",
  4263. "homepage": "https://www.drupal.org/user/108450"
  4264. },
  4265. {
  4266. "name": "miro_dietiker",
  4267. "homepage": "https://www.drupal.org/user/227761"
  4268. },
  4269. {
  4270. "name": "pluess",
  4271. "homepage": "https://www.drupal.org/user/84659"
  4272. }
  4273. ],
  4274. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4275. "homepage": "https://www.drupal.org/project/maillog",
  4276. "support": {
  4277. "source": "https://git.drupalcode.org/project/maillog"
  4278. }
  4279. },
  4280. {
  4281. "name": "drupal/menu_admin_per_menu",
  4282. "version": "1.5.0",
  4283. "source": {
  4284. "type": "git",
  4285. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4286. "reference": "8.x-1.5"
  4287. },
  4288. "dist": {
  4289. "type": "zip",
  4290. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.5.zip",
  4291. "reference": "8.x-1.5",
  4292. "shasum": "ec8c7a4a064aa285dfb722dad264da9936fc81b6"
  4293. },
  4294. "require": {
  4295. "drupal/core": "^9 || ^10"
  4296. },
  4297. "type": "drupal-module",
  4298. "extra": {
  4299. "drupal": {
  4300. "version": "8.x-1.5",
  4301. "datestamp": "1660918821",
  4302. "security-coverage": {
  4303. "status": "covered",
  4304. "message": "Covered by Drupal's security advisory policy"
  4305. }
  4306. }
  4307. },
  4308. "notification-url": "https://packages.drupal.org/8/downloads",
  4309. "license": [
  4310. "GPL-2.0-or-later"
  4311. ],
  4312. "authors": [
  4313. {
  4314. "name": "anrikun",
  4315. "homepage": "https://www.drupal.org/user/410199"
  4316. },
  4317. {
  4318. "name": "jeroent",
  4319. "homepage": "https://www.drupal.org/user/2228934"
  4320. },
  4321. {
  4322. "name": "jonas139",
  4323. "homepage": "https://www.drupal.org/user/2873401"
  4324. },
  4325. {
  4326. "name": "mkdok",
  4327. "homepage": "https://www.drupal.org/user/3308753"
  4328. }
  4329. ],
  4330. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4331. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4332. "support": {
  4333. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  4334. }
  4335. },
  4336. {
  4337. "name": "drupal/metatag",
  4338. "version": "2.0.2",
  4339. "source": {
  4340. "type": "git",
  4341. "url": "https://git.drupalcode.org/project/metatag.git",
  4342. "reference": "2.0.2"
  4343. },
  4344. "dist": {
  4345. "type": "zip",
  4346. "url": "https://ftp.drupal.org/files/projects/metatag-2.0.2.zip",
  4347. "reference": "2.0.2",
  4348. "shasum": "748013c50a0ed5e10359413bb3481392a0bf0d3f"
  4349. },
  4350. "require": {
  4351. "drupal/core": "^9.4 || ^10 || ^11",
  4352. "drupal/token": "^1.0",
  4353. "php": ">=8.0"
  4354. },
  4355. "require-dev": {
  4356. "drupal/hal": "^1 || ^2 || ^9",
  4357. "drupal/metatag_dc": "*",
  4358. "drupal/metatag_open_graph": "*",
  4359. "drupal/page_manager": "^4.0",
  4360. "drupal/redirect": "^1.0",
  4361. "ergebnis/composer-normalize": "*",
  4362. "mpyw/phpunit-patch-serializable-comparison": "*"
  4363. },
  4364. "type": "drupal-module",
  4365. "extra": {
  4366. "drupal": {
  4367. "version": "2.0.2",
  4368. "datestamp": "1722869772",
  4369. "security-coverage": {
  4370. "status": "covered",
  4371. "message": "Covered by Drupal's security advisory policy"
  4372. }
  4373. },
  4374. "composer-normalize": {
  4375. "indent-size": 2,
  4376. "indent-style": "space"
  4377. }
  4378. },
  4379. "notification-url": "https://packages.drupal.org/8/downloads",
  4380. "license": [
  4381. "GPL-2.0-or-later"
  4382. ],
  4383. "authors": [
  4384. {
  4385. "name": "See contributors",
  4386. "homepage": "https://www.drupal.org/node/640498/committers",
  4387. "role": "Developer"
  4388. },
  4389. {
  4390. "name": "dave reid",
  4391. "homepage": "https://www.drupal.org/user/53892"
  4392. }
  4393. ],
  4394. "description": "Manage meta tags for all entities.",
  4395. "homepage": "https://www.drupal.org/project/metatag",
  4396. "keywords": [
  4397. "Drupal",
  4398. "seo"
  4399. ],
  4400. "support": {
  4401. "source": "https://git.drupalcode.org/project/metatag",
  4402. "issues": "https://www.drupal.org/project/issues/metatag",
  4403. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  4404. }
  4405. },
  4406. {
  4407. "name": "drupal/pathauto",
  4408. "version": "1.13.0",
  4409. "source": {
  4410. "type": "git",
  4411. "url": "https://git.drupalcode.org/project/pathauto.git",
  4412. "reference": "8.x-1.13"
  4413. },
  4414. "dist": {
  4415. "type": "zip",
  4416. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.13.zip",
  4417. "reference": "8.x-1.13",
  4418. "shasum": "e64b5a82cf1b8ab48bce400b21ae6fc99c8078fd"
  4419. },
  4420. "require": {
  4421. "drupal/core": "^9.4 || ^10 || ^11",
  4422. "drupal/ctools": "*",
  4423. "drupal/token": "*"
  4424. },
  4425. "require-dev": {
  4426. "drupal/forum": "*"
  4427. },
  4428. "suggest": {
  4429. "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."
  4430. },
  4431. "type": "drupal-module",
  4432. "extra": {
  4433. "drupal": {
  4434. "version": "8.x-1.13",
  4435. "datestamp": "1722507672",
  4436. "security-coverage": {
  4437. "status": "covered",
  4438. "message": "Covered by Drupal's security advisory policy"
  4439. }
  4440. },
  4441. "drush": {
  4442. "services": {
  4443. "drush.services.yml": "^9 || ^10"
  4444. }
  4445. }
  4446. },
  4447. "notification-url": "https://packages.drupal.org/8/downloads",
  4448. "license": [
  4449. "GPL-2.0-or-later"
  4450. ],
  4451. "authors": [
  4452. {
  4453. "name": "Berdir",
  4454. "homepage": "https://www.drupal.org/user/214652"
  4455. },
  4456. {
  4457. "name": "Dave Reid",
  4458. "homepage": "https://www.drupal.org/user/53892"
  4459. },
  4460. {
  4461. "name": "Freso",
  4462. "homepage": "https://www.drupal.org/user/27504"
  4463. },
  4464. {
  4465. "name": "greggles",
  4466. "homepage": "https://www.drupal.org/user/36762"
  4467. }
  4468. ],
  4469. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4470. "homepage": "https://www.drupal.org/project/pathauto",
  4471. "support": {
  4472. "source": "https://cgit.drupalcode.org/pathauto",
  4473. "issues": "https://www.drupal.org/project/issues/pathauto",
  4474. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  4475. }
  4476. },
  4477. {
  4478. "name": "drupal/profile",
  4479. "version": "1.4.0",
  4480. "source": {
  4481. "type": "git",
  4482. "url": "https://git.drupalcode.org/project/profile.git",
  4483. "reference": "8.x-1.4"
  4484. },
  4485. "dist": {
  4486. "type": "zip",
  4487. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.4.zip",
  4488. "reference": "8.x-1.4",
  4489. "shasum": "253fd577c3b791c93747bb910ad2ae8e67d71eed"
  4490. },
  4491. "require": {
  4492. "drupal/core": "^8.9 || ^9 || ^10",
  4493. "drupal/entity": "^1.0-rc2"
  4494. },
  4495. "require-dev": {
  4496. "drupal/token": "^1.7"
  4497. },
  4498. "type": "drupal-module",
  4499. "extra": {
  4500. "drupal": {
  4501. "version": "8.x-1.4",
  4502. "datestamp": "1652430373",
  4503. "security-coverage": {
  4504. "status": "covered",
  4505. "message": "Covered by Drupal's security advisory policy"
  4506. }
  4507. }
  4508. },
  4509. "notification-url": "https://packages.drupal.org/8/downloads",
  4510. "license": [
  4511. "GPL-2.0-or-later"
  4512. ],
  4513. "authors": [
  4514. {
  4515. "name": "bojanz",
  4516. "homepage": "https://www.drupal.org/user/86106"
  4517. },
  4518. {
  4519. "name": "daggerhart",
  4520. "homepage": "https://www.drupal.org/user/167806"
  4521. },
  4522. {
  4523. "name": "fago",
  4524. "homepage": "https://www.drupal.org/user/16747"
  4525. },
  4526. {
  4527. "name": "jsacksick",
  4528. "homepage": "https://www.drupal.org/user/972218"
  4529. },
  4530. {
  4531. "name": "mglaman",
  4532. "homepage": "https://www.drupal.org/user/2416470"
  4533. },
  4534. {
  4535. "name": "pcambra",
  4536. "homepage": "https://www.drupal.org/user/122101"
  4537. }
  4538. ],
  4539. "description": "Provides configurable user profiles.",
  4540. "homepage": "http://drupal.org/project/profile",
  4541. "support": {
  4542. "source": "https://git.drupalcode.org/project/profile"
  4543. }
  4544. },
  4545. {
  4546. "name": "drupal/redirect",
  4547. "version": "1.10.0",
  4548. "source": {
  4549. "type": "git",
  4550. "url": "https://git.drupalcode.org/project/redirect.git",
  4551. "reference": "8.x-1.10"
  4552. },
  4553. "dist": {
  4554. "type": "zip",
  4555. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.10.zip",
  4556. "reference": "8.x-1.10",
  4557. "shasum": "9d72d7e0717dbdea3ab3306c5d6840da5bd3024c"
  4558. },
  4559. "require": {
  4560. "drupal/core": "^9.2 || ^10 || ^11"
  4561. },
  4562. "type": "drupal-module",
  4563. "extra": {
  4564. "drupal": {
  4565. "version": "8.x-1.10",
  4566. "datestamp": "1723277641",
  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": "Berdir",
  4580. "homepage": "https://www.drupal.org/user/214652"
  4581. },
  4582. {
  4583. "name": "dave reid",
  4584. "homepage": "https://www.drupal.org/user/53892"
  4585. },
  4586. {
  4587. "name": "Kristen Pol",
  4588. "homepage": "https://www.drupal.org/user/8389"
  4589. },
  4590. {
  4591. "name": "pifagor",
  4592. "homepage": "https://www.drupal.org/user/2375692"
  4593. }
  4594. ],
  4595. "description": "Allows users to redirect from old URLs to new URLs.",
  4596. "homepage": "https://www.drupal.org/project/redirect",
  4597. "support": {
  4598. "source": "https://git.drupalcode.org/project/redirect"
  4599. }
  4600. },
  4601. {
  4602. "name": "drupal/redis",
  4603. "version": "1.8.0",
  4604. "source": {
  4605. "type": "git",
  4606. "url": "https://git.drupalcode.org/project/redis.git",
  4607. "reference": "8.x-1.8"
  4608. },
  4609. "dist": {
  4610. "type": "zip",
  4611. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.8.zip",
  4612. "reference": "8.x-1.8",
  4613. "shasum": "6de73086d29de3b041594bae97c74401cbf05c3d"
  4614. },
  4615. "require": {
  4616. "drupal/core": "^9.3 || ^10 || ^11"
  4617. },
  4618. "suggest": {
  4619. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  4620. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  4621. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  4622. },
  4623. "type": "drupal-module",
  4624. "extra": {
  4625. "drupal": {
  4626. "version": "8.x-1.8",
  4627. "datestamp": "1723934771",
  4628. "security-coverage": {
  4629. "status": "covered",
  4630. "message": "Covered by Drupal's security advisory policy"
  4631. }
  4632. }
  4633. },
  4634. "autoload": {
  4635. "psr-4": {
  4636. "Drupal\\redis\\": "src"
  4637. }
  4638. },
  4639. "notification-url": "https://packages.drupal.org/8/downloads",
  4640. "license": [
  4641. "GPL-2.0-or-later"
  4642. ],
  4643. "authors": [
  4644. {
  4645. "name": "berdir",
  4646. "homepage": "https://www.drupal.org/user/214652"
  4647. },
  4648. {
  4649. "name": "greg.1.anderson",
  4650. "homepage": "https://www.drupal.org/user/438598"
  4651. },
  4652. {
  4653. "name": "kporras07",
  4654. "homepage": "https://www.drupal.org/user/1349780"
  4655. },
  4656. {
  4657. "name": "pounard",
  4658. "homepage": "https://www.drupal.org/user/240164"
  4659. }
  4660. ],
  4661. "description": "Integration of Drupal with the Redis key-value store.",
  4662. "homepage": "https://www.drupal.org/project/redis",
  4663. "support": {
  4664. "source": "https://git.drupalcode.org/project/redis"
  4665. }
  4666. },
  4667. {
  4668. "name": "drupal/restui",
  4669. "version": "1.21.0",
  4670. "source": {
  4671. "type": "git",
  4672. "url": "https://git.drupalcode.org/project/restui.git",
  4673. "reference": "8.x-1.21"
  4674. },
  4675. "dist": {
  4676. "type": "zip",
  4677. "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.21.zip",
  4678. "reference": "8.x-1.21",
  4679. "shasum": "2a67dc2c1953dced0bddaff25e5c60784ee0178c"
  4680. },
  4681. "require": {
  4682. "drupal/core": "^8.7.7 || ^9 || ^10"
  4683. },
  4684. "type": "drupal-module",
  4685. "extra": {
  4686. "drupal": {
  4687. "version": "8.x-1.21",
  4688. "datestamp": "1659086914",
  4689. "security-coverage": {
  4690. "status": "covered",
  4691. "message": "Covered by Drupal's security advisory policy"
  4692. }
  4693. }
  4694. },
  4695. "notification-url": "https://packages.drupal.org/8/downloads",
  4696. "license": [
  4697. "GPL-2.0-or-later"
  4698. ],
  4699. "authors": [
  4700. {
  4701. "name": "-enzo-",
  4702. "homepage": "https://www.drupal.org/user/294937"
  4703. },
  4704. {
  4705. "name": "clemens.tolboom",
  4706. "homepage": "https://www.drupal.org/user/125814"
  4707. },
  4708. {
  4709. "name": "juampynr",
  4710. "homepage": "https://www.drupal.org/user/682736"
  4711. },
  4712. {
  4713. "name": "kamkejj",
  4714. "homepage": "https://www.drupal.org/user/81043"
  4715. },
  4716. {
  4717. "name": "vipin.mittal18",
  4718. "homepage": "https://www.drupal.org/user/319716"
  4719. }
  4720. ],
  4721. "description": "Provides a user interface to manage REST resources.",
  4722. "homepage": "https://www.drupal.org/project/restui",
  4723. "support": {
  4724. "source": "https://git.drupalcode.org/project/restui"
  4725. }
  4726. },
  4727. {
  4728. "name": "drupal/search_api",
  4729. "version": "1.30.0",
  4730. "source": {
  4731. "type": "git",
  4732. "url": "https://git.drupalcode.org/project/search_api.git",
  4733. "reference": "8.x-1.30"
  4734. },
  4735. "dist": {
  4736. "type": "zip",
  4737. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.30.zip",
  4738. "reference": "8.x-1.30",
  4739. "shasum": "25bd2cfab6a6332c595fbc8be1c4cfff33a85ce8"
  4740. },
  4741. "require": {
  4742. "drupal/core": "^9.3 || ^10.0"
  4743. },
  4744. "conflict": {
  4745. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  4746. },
  4747. "require-dev": {
  4748. "drupal/language_fallback_fix": "@dev",
  4749. "drupal/search_api_autocomplete": "@dev",
  4750. "drupal/search_api_db": "*"
  4751. },
  4752. "suggest": {
  4753. "drupal/facets": "Adds the ability to create faceted searches.",
  4754. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  4755. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  4756. },
  4757. "type": "drupal-module",
  4758. "extra": {
  4759. "drupal": {
  4760. "version": "8.x-1.30",
  4761. "datestamp": "1700925904",
  4762. "security-coverage": {
  4763. "status": "covered",
  4764. "message": "Covered by Drupal's security advisory policy"
  4765. }
  4766. },
  4767. "drush": {
  4768. "services": {
  4769. "drush.services.yml": "^9 || ^10 || ^11"
  4770. }
  4771. }
  4772. },
  4773. "notification-url": "https://packages.drupal.org/8/downloads",
  4774. "license": [
  4775. "GPL-2.0-or-later"
  4776. ],
  4777. "authors": [
  4778. {
  4779. "name": "Thomas Seidl",
  4780. "homepage": "https://www.drupal.org/u/drunken-monkey"
  4781. },
  4782. {
  4783. "name": "Nick Veenhof",
  4784. "homepage": "https://www.drupal.org/u/nick_vh"
  4785. },
  4786. {
  4787. "name": "See other contributors",
  4788. "homepage": "https://www.drupal.org/node/790418/committers"
  4789. }
  4790. ],
  4791. "description": "Provides a generic framework for modules offering search capabilities.",
  4792. "homepage": "https://www.drupal.org/project/search_api",
  4793. "support": {
  4794. "source": "https://git.drupalcode.org/project/search_api",
  4795. "issues": "https://www.drupal.org/project/issues/search_api",
  4796. "irc": "irc://irc.freenode.org/drupal-search-api"
  4797. }
  4798. },
  4799. {
  4800. "name": "drupal/seven",
  4801. "version": "1.0.0",
  4802. "source": {
  4803. "type": "git",
  4804. "url": "https://git.drupalcode.org/project/seven.git",
  4805. "reference": "1.0.0"
  4806. },
  4807. "dist": {
  4808. "type": "zip",
  4809. "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip",
  4810. "reference": "1.0.0",
  4811. "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd"
  4812. },
  4813. "require": {
  4814. "drupal/core": "^9 || ^10"
  4815. },
  4816. "type": "drupal-theme",
  4817. "extra": {
  4818. "drupal": {
  4819. "version": "1.0.0",
  4820. "datestamp": "1683652106",
  4821. "security-coverage": {
  4822. "status": "covered",
  4823. "message": "Covered by Drupal's security advisory policy"
  4824. }
  4825. }
  4826. },
  4827. "notification-url": "https://packages.drupal.org/8/downloads",
  4828. "license": [
  4829. "GPL-2.0-or-later"
  4830. ],
  4831. "authors": [
  4832. {
  4833. "name": "bnjmnm",
  4834. "homepage": "https://www.drupal.org/user/2369194"
  4835. },
  4836. {
  4837. "name": "lauriii",
  4838. "homepage": "https://www.drupal.org/user/1078742"
  4839. },
  4840. {
  4841. "name": "mcrittenden",
  4842. "homepage": "https://www.drupal.org/user/420631"
  4843. },
  4844. {
  4845. "name": "mrfelton",
  4846. "homepage": "https://www.drupal.org/user/305669"
  4847. },
  4848. {
  4849. "name": "TravisCarden",
  4850. "homepage": "https://www.drupal.org/user/236758"
  4851. }
  4852. ],
  4853. "description": "The Seven theme from Drupal 8/9 moved to contrib",
  4854. "homepage": "https://www.drupal.org/project/seven",
  4855. "support": {
  4856. "source": "https://git.drupalcode.org/project/seven"
  4857. }
  4858. },
  4859. {
  4860. "name": "drupal/simple_sitemap",
  4861. "version": "4.1.9",
  4862. "source": {
  4863. "type": "git",
  4864. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  4865. "reference": "4.1.9"
  4866. },
  4867. "dist": {
  4868. "type": "zip",
  4869. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-4.1.9.zip",
  4870. "reference": "4.1.9",
  4871. "shasum": "d86d90408b334cd7470ea631e3be5acca2103377"
  4872. },
  4873. "require": {
  4874. "drupal/core": "^9.3 || ^10",
  4875. "ext-xmlwriter": "*"
  4876. },
  4877. "type": "drupal-module",
  4878. "extra": {
  4879. "drupal": {
  4880. "version": "4.1.9",
  4881. "datestamp": "1712441608",
  4882. "security-coverage": {
  4883. "status": "covered",
  4884. "message": "Covered by Drupal's security advisory policy"
  4885. }
  4886. },
  4887. "drush": {
  4888. "services": {
  4889. "drush.services.yml": ">=9"
  4890. }
  4891. }
  4892. },
  4893. "notification-url": "https://packages.drupal.org/8/downloads",
  4894. "license": [
  4895. "GPL-2.0-or-later"
  4896. ],
  4897. "authors": [
  4898. {
  4899. "name": "Pawel Ginalski (gbyte)",
  4900. "homepage": "https://www.drupal.org/u/gbyte",
  4901. "email": "contact@gbyte.dev",
  4902. "role": "Maintainer"
  4903. },
  4904. {
  4905. "name": "walkingdexter",
  4906. "homepage": "https://www.drupal.org/user/3251330"
  4907. }
  4908. ],
  4909. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  4910. "homepage": "https://drupal.org/project/simple_sitemap",
  4911. "support": {
  4912. "source": "https://cgit.drupalcode.org/simple_sitemap",
  4913. "issues": "https://drupal.org/project/issues/simple_sitemap"
  4914. }
  4915. },
  4916. {
  4917. "name": "drupal/synonyms",
  4918. "version": "2.1.4",
  4919. "source": {
  4920. "type": "git",
  4921. "url": "https://git.drupalcode.org/project/synonyms.git",
  4922. "reference": "2.1.4"
  4923. },
  4924. "dist": {
  4925. "type": "zip",
  4926. "url": "https://ftp.drupal.org/files/projects/synonyms-2.1.4.zip",
  4927. "reference": "2.1.4",
  4928. "shasum": "ee0f1a7e0d1f565c35cafeb437b59366b76684b3"
  4929. },
  4930. "require": {
  4931. "drupal/core": "^9 || ^10 || ^11"
  4932. },
  4933. "require-dev": {
  4934. "drupal/synonyms_list_field": "*"
  4935. },
  4936. "type": "drupal-module",
  4937. "extra": {
  4938. "drupal": {
  4939. "version": "2.1.4",
  4940. "datestamp": "1723069842",
  4941. "security-coverage": {
  4942. "status": "covered",
  4943. "message": "Covered by Drupal's security advisory policy"
  4944. }
  4945. }
  4946. },
  4947. "notification-url": "https://packages.drupal.org/8/downloads",
  4948. "license": [
  4949. "GPL-2.0-or-later"
  4950. ],
  4951. "authors": [
  4952. {
  4953. "name": "Bojan Zivanovic",
  4954. "homepage": "https://www.drupal.org/u/bojanz",
  4955. "role": "Author and D5, D6 and D7 versions developer."
  4956. },
  4957. {
  4958. "name": "Alex Trosenko",
  4959. "homepage": "https://www.drupal.org/u/bucefal91",
  4960. "role": "D7 and D8 versions developer."
  4961. },
  4962. {
  4963. "name": "Duro Arezina",
  4964. "homepage": "https://www.drupal.org/u/devad",
  4965. "role": "D8+ versions maintenance"
  4966. },
  4967. {
  4968. "name": "See other contributors",
  4969. "homepage": "https://www.drupal.org/node/148775/committers"
  4970. }
  4971. ],
  4972. "description": "Provides synonyms feature for all entities.",
  4973. "homepage": "https://www.drupal.org/project/synonyms",
  4974. "support": {
  4975. "source": "https://git.drupalcode.org/project/synonyms",
  4976. "issues": "https://www.drupal.org/project/issues/synonyms"
  4977. }
  4978. },
  4979. {
  4980. "name": "drupal/token",
  4981. "version": "1.15.0",
  4982. "source": {
  4983. "type": "git",
  4984. "url": "https://git.drupalcode.org/project/token.git",
  4985. "reference": "8.x-1.15"
  4986. },
  4987. "dist": {
  4988. "type": "zip",
  4989. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.15.zip",
  4990. "reference": "8.x-1.15",
  4991. "shasum": "5916fbccc86458a5f51e71f832ac70ff4c84ebdf"
  4992. },
  4993. "require": {
  4994. "drupal/core": "^9.2 || ^10 || ^11"
  4995. },
  4996. "require-dev": {
  4997. "drupal/book": "*"
  4998. },
  4999. "type": "drupal-module",
  5000. "extra": {
  5001. "drupal": {
  5002. "version": "8.x-1.15",
  5003. "datestamp": "1722206211",
  5004. "security-coverage": {
  5005. "status": "covered",
  5006. "message": "Covered by Drupal's security advisory policy"
  5007. }
  5008. },
  5009. "drush": {
  5010. "services": {
  5011. "drush.services.yml": ">=9"
  5012. }
  5013. }
  5014. },
  5015. "notification-url": "https://packages.drupal.org/8/downloads",
  5016. "license": [
  5017. "GPL-2.0-or-later"
  5018. ],
  5019. "authors": [
  5020. {
  5021. "name": "Berdir",
  5022. "homepage": "https://www.drupal.org/user/214652"
  5023. },
  5024. {
  5025. "name": "Dave Reid",
  5026. "homepage": "https://www.drupal.org/user/53892"
  5027. },
  5028. {
  5029. "name": "eaton",
  5030. "homepage": "https://www.drupal.org/user/16496"
  5031. },
  5032. {
  5033. "name": "fago",
  5034. "homepage": "https://www.drupal.org/user/16747"
  5035. },
  5036. {
  5037. "name": "greggles",
  5038. "homepage": "https://www.drupal.org/user/36762"
  5039. },
  5040. {
  5041. "name": "mikeryan",
  5042. "homepage": "https://www.drupal.org/user/4420"
  5043. }
  5044. ],
  5045. "description": "Provides a user interface for the Token API, some missing core tokens.",
  5046. "homepage": "https://www.drupal.org/project/token",
  5047. "support": {
  5048. "source": "https://git.drupalcode.org/project/token"
  5049. }
  5050. },
  5051. {
  5052. "name": "drupal/translation_views",
  5053. "version": "1.0.0-alpha11",
  5054. "source": {
  5055. "type": "git",
  5056. "url": "https://git.drupalcode.org/project/translation_views.git",
  5057. "reference": "8.x-1.0-alpha11"
  5058. },
  5059. "dist": {
  5060. "type": "zip",
  5061. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  5062. "reference": "8.x-1.0-alpha11",
  5063. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  5064. },
  5065. "require": {
  5066. "drupal/core": "^8.8 || ^9 || ^10"
  5067. },
  5068. "require-dev": {
  5069. "drupal/translators_content": "^1.0@alpha"
  5070. },
  5071. "type": "drupal-module",
  5072. "extra": {
  5073. "drupal": {
  5074. "version": "8.x-1.0-alpha11",
  5075. "datestamp": "1679660668",
  5076. "security-coverage": {
  5077. "status": "not-covered",
  5078. "message": "Project has not opted into security advisory coverage!"
  5079. }
  5080. }
  5081. },
  5082. "notification-url": "https://packages.drupal.org/8/downloads",
  5083. "license": [
  5084. "GPL-2.0-or-later"
  5085. ],
  5086. "authors": [
  5087. {
  5088. "name": "matsbla",
  5089. "homepage": "https://www.drupal.org/user/2325394"
  5090. },
  5091. {
  5092. "name": "vlad.dancer",
  5093. "homepage": "https://www.drupal.org/user/903844"
  5094. }
  5095. ],
  5096. "description": "Create customized lists and queries of translations from your database.",
  5097. "homepage": "https://www.drupal.org/project/translation_views",
  5098. "support": {
  5099. "source": "https://git.drupalcode.org/project/translation_views"
  5100. }
  5101. },
  5102. {
  5103. "name": "drupal/upgrade_status",
  5104. "version": "3.19.0",
  5105. "source": {
  5106. "type": "git",
  5107. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  5108. "reference": "8.x-3.19"
  5109. },
  5110. "dist": {
  5111. "type": "zip",
  5112. "url": "https://ftp.drupal.org/files/projects/upgrade_status-8.x-3.19.zip",
  5113. "reference": "8.x-3.19",
  5114. "shasum": "e155b34b80f2782778b841d72639bd0ac8b923f9"
  5115. },
  5116. "require": {
  5117. "drupal/core": "^8 || ^9",
  5118. "mathieuviossat/arraytotexttable": "~1.0.0",
  5119. "mglaman/phpstan-drupal": "^1.0.0",
  5120. "nikic/php-parser": "^4.0.0",
  5121. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  5122. "symfony/process": "^3.4|^4.0|^5.0|^6.0",
  5123. "webflo/drupal-finder": "^1.2"
  5124. },
  5125. "type": "drupal-module",
  5126. "extra": {
  5127. "drupal": {
  5128. "version": "8.x-3.19",
  5129. "datestamp": "1678815320",
  5130. "security-coverage": {
  5131. "status": "covered",
  5132. "message": "Covered by Drupal's security advisory policy"
  5133. }
  5134. },
  5135. "drush": {
  5136. "services": {
  5137. "drush.services.yml": "^9 || ^10"
  5138. }
  5139. }
  5140. },
  5141. "notification-url": "https://packages.drupal.org/8/downloads",
  5142. "license": [
  5143. "GPL-2.0-or-later"
  5144. ],
  5145. "authors": [
  5146. {
  5147. "name": "Gábor Hojtsy",
  5148. "homepage": "https://www.drupal.org/user/4166"
  5149. }
  5150. ],
  5151. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  5152. "homepage": "http://drupal.org/project/upgrade_status",
  5153. "support": {
  5154. "source": "https://git.drupalcode.org/project/upgrade_status"
  5155. }
  5156. },
  5157. {
  5158. "name": "drupal/views_bulk_edit",
  5159. "version": "2.9.0",
  5160. "source": {
  5161. "type": "git",
  5162. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5163. "reference": "8.x-2.9"
  5164. },
  5165. "dist": {
  5166. "type": "zip",
  5167. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.9.zip",
  5168. "reference": "8.x-2.9",
  5169. "shasum": "db45a8cc9ac629859374b24974eafcef257e4387"
  5170. },
  5171. "require": {
  5172. "drupal/core": "^9.4 || ^10"
  5173. },
  5174. "require-dev": {
  5175. "drupal/views_bulk_operations": "~4.2.4"
  5176. },
  5177. "suggest": {
  5178. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  5179. },
  5180. "type": "drupal-module",
  5181. "extra": {
  5182. "drupal": {
  5183. "version": "8.x-2.9",
  5184. "datestamp": "1690222256",
  5185. "security-coverage": {
  5186. "status": "covered",
  5187. "message": "Covered by Drupal's security advisory policy"
  5188. }
  5189. }
  5190. },
  5191. "notification-url": "https://packages.drupal.org/8/downloads",
  5192. "license": [
  5193. "GPL-2.0+"
  5194. ],
  5195. "authors": [
  5196. {
  5197. "name": "Marcin Grabias",
  5198. "homepage": "https://www.drupal.org/u/graber"
  5199. },
  5200. {
  5201. "name": "benjy",
  5202. "homepage": "https://www.drupal.org/user/1852732"
  5203. },
  5204. {
  5205. "name": "graber",
  5206. "homepage": "https://www.drupal.org/user/1599440"
  5207. },
  5208. {
  5209. "name": "grevil",
  5210. "homepage": "https://www.drupal.org/user/3668491"
  5211. },
  5212. {
  5213. "name": "joseph.olstad",
  5214. "homepage": "https://www.drupal.org/user/1321830"
  5215. }
  5216. ],
  5217. "description": "Allows bulk edition of entity field values.",
  5218. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5219. "support": {
  5220. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5221. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5222. }
  5223. },
  5224. {
  5225. "name": "drupal/views_bulk_operations",
  5226. "version": "4.2.7",
  5227. "source": {
  5228. "type": "git",
  5229. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5230. "reference": "4.2.7"
  5231. },
  5232. "dist": {
  5233. "type": "zip",
  5234. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.2.7.zip",
  5235. "reference": "4.2.7",
  5236. "shasum": "25c9fa531ac49664a361fdd2202eec0a6e53bc61"
  5237. },
  5238. "require": {
  5239. "drupal/core": "^9.4 || ^10 || ^11",
  5240. "php": ">=7.4.0"
  5241. },
  5242. "require-dev": {
  5243. "drush/drush": "^12"
  5244. },
  5245. "suggest": {
  5246. "drush/drush": "^11 || ^12"
  5247. },
  5248. "type": "drupal-module",
  5249. "extra": {
  5250. "drupal": {
  5251. "version": "4.2.7",
  5252. "datestamp": "1717665214",
  5253. "security-coverage": {
  5254. "status": "covered",
  5255. "message": "Covered by Drupal's security advisory policy"
  5256. }
  5257. },
  5258. "drush": {
  5259. "services": {
  5260. "drush.services.yml": "^10 || ^11"
  5261. }
  5262. }
  5263. },
  5264. "notification-url": "https://packages.drupal.org/8/downloads",
  5265. "license": [
  5266. "GPL-2.0-or-later"
  5267. ],
  5268. "authors": [
  5269. {
  5270. "name": "Marcin Grabias",
  5271. "homepage": "https://www.drupal.org/u/graber"
  5272. },
  5273. {
  5274. "name": "Graber",
  5275. "homepage": "https://www.drupal.org/user/1599440"
  5276. },
  5277. {
  5278. "name": "joelpittet",
  5279. "homepage": "https://www.drupal.org/user/160302"
  5280. }
  5281. ],
  5282. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5283. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5284. "support": {
  5285. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  5286. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5287. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5288. }
  5289. },
  5290. {
  5291. "name": "drupal/workflow",
  5292. "version": "1.8.0",
  5293. "source": {
  5294. "type": "git",
  5295. "url": "https://git.drupalcode.org/project/workflow.git",
  5296. "reference": "8.x-1.8"
  5297. },
  5298. "dist": {
  5299. "type": "zip",
  5300. "url": "https://ftp.drupal.org/files/projects/workflow-8.x-1.8.zip",
  5301. "reference": "8.x-1.8",
  5302. "shasum": "29ae25889eba4920a7e44df8b882a0a1f2e2b172"
  5303. },
  5304. "require": {
  5305. "drupal/core": ">=8.8"
  5306. },
  5307. "type": "drupal-module",
  5308. "extra": {
  5309. "drupal": {
  5310. "version": "8.x-1.8",
  5311. "datestamp": "1717579628",
  5312. "security-coverage": {
  5313. "status": "covered",
  5314. "message": "Covered by Drupal's security advisory policy"
  5315. }
  5316. }
  5317. },
  5318. "notification-url": "https://packages.drupal.org/8/downloads",
  5319. "license": [
  5320. "GPL-2.0-or-later"
  5321. ],
  5322. "authors": [
  5323. {
  5324. "name": "Bastlynn",
  5325. "homepage": "https://www.drupal.org/user/275249"
  5326. },
  5327. {
  5328. "name": "eaton",
  5329. "homepage": "https://www.drupal.org/user/16496"
  5330. },
  5331. {
  5332. "name": "Heine",
  5333. "homepage": "https://www.drupal.org/user/17943"
  5334. },
  5335. {
  5336. "name": "JacobSingh",
  5337. "homepage": "https://www.drupal.org/user/68912"
  5338. },
  5339. {
  5340. "name": "johnv",
  5341. "homepage": "https://www.drupal.org/user/591042"
  5342. },
  5343. {
  5344. "name": "jvandyk",
  5345. "homepage": "https://www.drupal.org/user/2375"
  5346. },
  5347. {
  5348. "name": "mfredrickson",
  5349. "homepage": "https://www.drupal.org/user/31994"
  5350. },
  5351. {
  5352. "name": "NancyDru",
  5353. "homepage": "https://www.drupal.org/user/101412"
  5354. },
  5355. {
  5356. "name": "q0rban",
  5357. "homepage": "https://www.drupal.org/user/31022"
  5358. }
  5359. ],
  5360. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5361. "homepage": "https://www.drupal.org/project/workflow",
  5362. "support": {
  5363. "source": "https://git.drupalcode.org/project/workflow"
  5364. }
  5365. },
  5366. {
  5367. "name": "drush/drush",
  5368. "version": "10.6.2",
  5369. "source": {
  5370. "type": "git",
  5371. "url": "https://github.com/drush-ops/drush.git",
  5372. "reference": "0a570a16ec63259eb71195aba5feab532318b337"
  5373. },
  5374. "dist": {
  5375. "type": "zip",
  5376. "url": "https://api.github.com/repos/drush-ops/drush/zipball/0a570a16ec63259eb71195aba5feab532318b337",
  5377. "reference": "0a570a16ec63259eb71195aba5feab532318b337",
  5378. "shasum": ""
  5379. },
  5380. "require": {
  5381. "chi-teck/drupal-code-generator": "^1.32.1",
  5382. "composer/semver": "^1.4 || ^3",
  5383. "consolidation/config": "^1.2",
  5384. "consolidation/filter-via-dot-access-data": "^1",
  5385. "consolidation/robo": "^1.4.11 || ^2 || ^3",
  5386. "consolidation/site-alias": "^3.0.0@stable",
  5387. "consolidation/site-process": "^2.1 || ^4",
  5388. "enlightn/security-checker": "^1",
  5389. "ext-dom": "*",
  5390. "grasmash/yaml-expander": "^1.1.1",
  5391. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  5392. "league/container": "^2.5 || ^3.4",
  5393. "php": ">=7.1.3",
  5394. "psr/log": "~1.0",
  5395. "psy/psysh": ">=0.6 <0.11",
  5396. "symfony/event-dispatcher": "^3.4 || ^4.0",
  5397. "symfony/finder": "^3.4 || ^4.0 || ^5",
  5398. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0",
  5399. "symfony/yaml": "^3.4 || ^4.0",
  5400. "webflo/drupal-finder": "^1.2",
  5401. "webmozart/path-util": "^2.1.0"
  5402. },
  5403. "conflict": {
  5404. "drupal/migrate_run": "*",
  5405. "drupal/migrate_tools": "<= 5"
  5406. },
  5407. "require-dev": {
  5408. "composer/installers": "^1.7",
  5409. "cweagans/composer-patches": "~1.0",
  5410. "david-garcia/phpwhois": "4.3.0",
  5411. "drupal/alinks": "1.0.0",
  5412. "drupal/core-recommended": "^8.8",
  5413. "phpunit/phpunit": ">=7.5.20",
  5414. "squizlabs/php_codesniffer": "^2.7 || ^3",
  5415. "vlucas/phpdotenv": "^2.4",
  5416. "yoast/phpunit-polyfills": "^0.2.0"
  5417. },
  5418. "bin": [
  5419. "drush"
  5420. ],
  5421. "type": "library",
  5422. "extra": {
  5423. "installer-paths": {
  5424. "sut/core": [
  5425. "type:drupal-core"
  5426. ],
  5427. "sut/libraries/{$name}": [
  5428. "type:drupal-library"
  5429. ],
  5430. "sut/modules/unish/{$name}": [
  5431. "drupal/devel"
  5432. ],
  5433. "sut/themes/unish/{$name}": [
  5434. "drupal/empty_theme"
  5435. ],
  5436. "sut/modules/contrib/{$name}": [
  5437. "type:drupal-module"
  5438. ],
  5439. "sut/profiles/contrib/{$name}": [
  5440. "type:drupal-profile"
  5441. ],
  5442. "sut/themes/contrib/{$name}": [
  5443. "type:drupal-theme"
  5444. ],
  5445. "sut/drush/contrib/{$name}": [
  5446. "type:drupal-drush"
  5447. ]
  5448. }
  5449. },
  5450. "autoload": {
  5451. "psr-4": {
  5452. "Drush\\": "src/",
  5453. "Drush\\Internal\\": "src/internal-forks"
  5454. }
  5455. },
  5456. "notification-url": "https://packagist.org/downloads/",
  5457. "license": [
  5458. "GPL-2.0-or-later"
  5459. ],
  5460. "authors": [
  5461. {
  5462. "name": "Moshe Weitzman",
  5463. "email": "weitzman@tejasa.com"
  5464. },
  5465. {
  5466. "name": "Owen Barton",
  5467. "email": "drupal@owenbarton.com"
  5468. },
  5469. {
  5470. "name": "Greg Anderson",
  5471. "email": "greg.1.anderson@greenknowe.org"
  5472. },
  5473. {
  5474. "name": "Jonathan Araña Cruz",
  5475. "email": "jonhattan@faita.net"
  5476. },
  5477. {
  5478. "name": "Jonathan Hedstrom",
  5479. "email": "jhedstrom@gmail.com"
  5480. },
  5481. {
  5482. "name": "Christopher Gervais",
  5483. "email": "chris@ergonlogic.com"
  5484. },
  5485. {
  5486. "name": "Dave Reid",
  5487. "email": "dave@davereid.net"
  5488. },
  5489. {
  5490. "name": "Damian Lee",
  5491. "email": "damiankloip@googlemail.com"
  5492. }
  5493. ],
  5494. "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.",
  5495. "homepage": "http://www.drush.org",
  5496. "support": {
  5497. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  5498. "irc": "irc://irc.freenode.org/drush",
  5499. "issues": "https://github.com/drush-ops/drush/issues",
  5500. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  5501. "source": "https://github.com/drush-ops/drush/tree/10.6.2"
  5502. },
  5503. "funding": [
  5504. {
  5505. "url": "https://github.com/weitzman",
  5506. "type": "github"
  5507. }
  5508. ],
  5509. "time": "2021-12-15T17:09:54+00:00"
  5510. },
  5511. {
  5512. "name": "egulias/email-validator",
  5513. "version": "3.2.6",
  5514. "source": {
  5515. "type": "git",
  5516. "url": "https://github.com/egulias/EmailValidator.git",
  5517. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7"
  5518. },
  5519. "dist": {
  5520. "type": "zip",
  5521. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  5522. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  5523. "shasum": ""
  5524. },
  5525. "require": {
  5526. "doctrine/lexer": "^1.2|^2",
  5527. "php": ">=7.2",
  5528. "symfony/polyfill-intl-idn": "^1.15"
  5529. },
  5530. "require-dev": {
  5531. "phpunit/phpunit": "^8.5.8|^9.3.3",
  5532. "vimeo/psalm": "^4"
  5533. },
  5534. "suggest": {
  5535. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  5536. },
  5537. "type": "library",
  5538. "extra": {
  5539. "branch-alias": {
  5540. "dev-master": "3.0.x-dev"
  5541. }
  5542. },
  5543. "autoload": {
  5544. "psr-4": {
  5545. "Egulias\\EmailValidator\\": "src"
  5546. }
  5547. },
  5548. "notification-url": "https://packagist.org/downloads/",
  5549. "license": [
  5550. "MIT"
  5551. ],
  5552. "authors": [
  5553. {
  5554. "name": "Eduardo Gulias Davis"
  5555. }
  5556. ],
  5557. "description": "A library for validating emails against several RFCs",
  5558. "homepage": "https://github.com/egulias/EmailValidator",
  5559. "keywords": [
  5560. "email",
  5561. "emailvalidation",
  5562. "emailvalidator",
  5563. "validation",
  5564. "validator"
  5565. ],
  5566. "support": {
  5567. "issues": "https://github.com/egulias/EmailValidator/issues",
  5568. "source": "https://github.com/egulias/EmailValidator/tree/3.2.6"
  5569. },
  5570. "funding": [
  5571. {
  5572. "url": "https://github.com/egulias",
  5573. "type": "github"
  5574. }
  5575. ],
  5576. "time": "2023-06-01T07:04:22+00:00"
  5577. },
  5578. {
  5579. "name": "enlightn/security-checker",
  5580. "version": "v1.11.0",
  5581. "source": {
  5582. "type": "git",
  5583. "url": "https://github.com/enlightn/security-checker.git",
  5584. "reference": "68df5c7256c84b428bf8fcff0d249de06ce362d2"
  5585. },
  5586. "dist": {
  5587. "type": "zip",
  5588. "url": "https://api.github.com/repos/enlightn/security-checker/zipball/68df5c7256c84b428bf8fcff0d249de06ce362d2",
  5589. "reference": "68df5c7256c84b428bf8fcff0d249de06ce362d2",
  5590. "shasum": ""
  5591. },
  5592. "require": {
  5593. "ext-json": "*",
  5594. "guzzlehttp/guzzle": "^6.3|^7.0",
  5595. "php": ">=5.6",
  5596. "symfony/console": "^3.4|^4|^5|^6|^7",
  5597. "symfony/finder": "^3|^4|^5|^6|^7",
  5598. "symfony/process": "^3.4|^4|^5|^6|^7",
  5599. "symfony/yaml": "^3.4|^4|^5|^6|^7"
  5600. },
  5601. "require-dev": {
  5602. "ext-zip": "*",
  5603. "friendsofphp/php-cs-fixer": "^2.18|^3.0",
  5604. "phpunit/phpunit": "^5.5|^6|^7|^8|^9"
  5605. },
  5606. "bin": [
  5607. "security-checker"
  5608. ],
  5609. "type": "library",
  5610. "autoload": {
  5611. "psr-4": {
  5612. "Enlightn\\SecurityChecker\\": "src"
  5613. }
  5614. },
  5615. "notification-url": "https://packagist.org/downloads/",
  5616. "license": [
  5617. "MIT"
  5618. ],
  5619. "authors": [
  5620. {
  5621. "name": "Paras Malhotra",
  5622. "email": "paras@laravel-enlightn.com"
  5623. },
  5624. {
  5625. "name": "Miguel Piedrafita",
  5626. "email": "soy@miguelpiedrafita.com"
  5627. }
  5628. ],
  5629. "description": "A PHP dependency vulnerabilities scanner based on the Security Advisories Database.",
  5630. "keywords": [
  5631. "package",
  5632. "php",
  5633. "scanner",
  5634. "security",
  5635. "security advisories",
  5636. "vulnerability scanner"
  5637. ],
  5638. "support": {
  5639. "issues": "https://github.com/enlightn/security-checker/issues",
  5640. "source": "https://github.com/enlightn/security-checker/tree/v1.11.0"
  5641. },
  5642. "time": "2023-11-17T07:53:29+00:00"
  5643. },
  5644. {
  5645. "name": "grasmash/expander",
  5646. "version": "1.0.0",
  5647. "source": {
  5648. "type": "git",
  5649. "url": "https://github.com/grasmash/expander.git",
  5650. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  5651. },
  5652. "dist": {
  5653. "type": "zip",
  5654. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5655. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5656. "shasum": ""
  5657. },
  5658. "require": {
  5659. "dflydev/dot-access-data": "^1.1.0",
  5660. "php": ">=5.4"
  5661. },
  5662. "require-dev": {
  5663. "greg-1-anderson/composer-test-scenarios": "^1",
  5664. "phpunit/phpunit": "^4|^5.5.4",
  5665. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5666. "squizlabs/php_codesniffer": "^2.7"
  5667. },
  5668. "type": "library",
  5669. "extra": {
  5670. "branch-alias": {
  5671. "dev-master": "1.x-dev"
  5672. }
  5673. },
  5674. "autoload": {
  5675. "psr-4": {
  5676. "Grasmash\\Expander\\": "src/"
  5677. }
  5678. },
  5679. "notification-url": "https://packagist.org/downloads/",
  5680. "license": [
  5681. "MIT"
  5682. ],
  5683. "authors": [
  5684. {
  5685. "name": "Matthew Grasmick"
  5686. }
  5687. ],
  5688. "description": "Expands internal property references in PHP arrays file.",
  5689. "support": {
  5690. "issues": "https://github.com/grasmash/expander/issues",
  5691. "source": "https://github.com/grasmash/expander/tree/master"
  5692. },
  5693. "time": "2017-12-21T22:14:55+00:00"
  5694. },
  5695. {
  5696. "name": "grasmash/yaml-expander",
  5697. "version": "1.4.0",
  5698. "source": {
  5699. "type": "git",
  5700. "url": "https://github.com/grasmash/yaml-expander.git",
  5701. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  5702. },
  5703. "dist": {
  5704. "type": "zip",
  5705. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5706. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5707. "shasum": ""
  5708. },
  5709. "require": {
  5710. "dflydev/dot-access-data": "^1.1.0",
  5711. "php": ">=5.4",
  5712. "symfony/yaml": "^2.8.11|^3|^4"
  5713. },
  5714. "require-dev": {
  5715. "greg-1-anderson/composer-test-scenarios": "^1",
  5716. "phpunit/phpunit": "^4.8|^5.5.4",
  5717. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5718. "squizlabs/php_codesniffer": "^2.7"
  5719. },
  5720. "type": "library",
  5721. "extra": {
  5722. "branch-alias": {
  5723. "dev-master": "1.x-dev"
  5724. }
  5725. },
  5726. "autoload": {
  5727. "psr-4": {
  5728. "Grasmash\\YamlExpander\\": "src/"
  5729. }
  5730. },
  5731. "notification-url": "https://packagist.org/downloads/",
  5732. "license": [
  5733. "MIT"
  5734. ],
  5735. "authors": [
  5736. {
  5737. "name": "Matthew Grasmick"
  5738. }
  5739. ],
  5740. "description": "Expands internal property references in a yaml file.",
  5741. "support": {
  5742. "issues": "https://github.com/grasmash/yaml-expander/issues",
  5743. "source": "https://github.com/grasmash/yaml-expander/tree/master"
  5744. },
  5745. "time": "2017-12-16T16:06:03+00:00"
  5746. },
  5747. {
  5748. "name": "guzzlehttp/guzzle",
  5749. "version": "6.5.8",
  5750. "source": {
  5751. "type": "git",
  5752. "url": "https://github.com/guzzle/guzzle.git",
  5753. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981"
  5754. },
  5755. "dist": {
  5756. "type": "zip",
  5757. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a52f0440530b54fa079ce76e8c5d196a42cad981",
  5758. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981",
  5759. "shasum": ""
  5760. },
  5761. "require": {
  5762. "ext-json": "*",
  5763. "guzzlehttp/promises": "^1.0",
  5764. "guzzlehttp/psr7": "^1.9",
  5765. "php": ">=5.5",
  5766. "symfony/polyfill-intl-idn": "^1.17"
  5767. },
  5768. "require-dev": {
  5769. "ext-curl": "*",
  5770. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  5771. "psr/log": "^1.1"
  5772. },
  5773. "suggest": {
  5774. "psr/log": "Required for using the Log middleware"
  5775. },
  5776. "type": "library",
  5777. "extra": {
  5778. "branch-alias": {
  5779. "dev-master": "6.5-dev"
  5780. }
  5781. },
  5782. "autoload": {
  5783. "files": [
  5784. "src/functions_include.php"
  5785. ],
  5786. "psr-4": {
  5787. "GuzzleHttp\\": "src/"
  5788. }
  5789. },
  5790. "notification-url": "https://packagist.org/downloads/",
  5791. "license": [
  5792. "MIT"
  5793. ],
  5794. "authors": [
  5795. {
  5796. "name": "Graham Campbell",
  5797. "email": "hello@gjcampbell.co.uk",
  5798. "homepage": "https://github.com/GrahamCampbell"
  5799. },
  5800. {
  5801. "name": "Michael Dowling",
  5802. "email": "mtdowling@gmail.com",
  5803. "homepage": "https://github.com/mtdowling"
  5804. },
  5805. {
  5806. "name": "Jeremy Lindblom",
  5807. "email": "jeremeamia@gmail.com",
  5808. "homepage": "https://github.com/jeremeamia"
  5809. },
  5810. {
  5811. "name": "George Mponos",
  5812. "email": "gmponos@gmail.com",
  5813. "homepage": "https://github.com/gmponos"
  5814. },
  5815. {
  5816. "name": "Tobias Nyholm",
  5817. "email": "tobias.nyholm@gmail.com",
  5818. "homepage": "https://github.com/Nyholm"
  5819. },
  5820. {
  5821. "name": "Márk Sági-Kazár",
  5822. "email": "mark.sagikazar@gmail.com",
  5823. "homepage": "https://github.com/sagikazarmark"
  5824. },
  5825. {
  5826. "name": "Tobias Schultze",
  5827. "email": "webmaster@tubo-world.de",
  5828. "homepage": "https://github.com/Tobion"
  5829. }
  5830. ],
  5831. "description": "Guzzle is a PHP HTTP client library",
  5832. "homepage": "http://guzzlephp.org/",
  5833. "keywords": [
  5834. "client",
  5835. "curl",
  5836. "framework",
  5837. "http",
  5838. "http client",
  5839. "rest",
  5840. "web service"
  5841. ],
  5842. "support": {
  5843. "issues": "https://github.com/guzzle/guzzle/issues",
  5844. "source": "https://github.com/guzzle/guzzle/tree/6.5.8"
  5845. },
  5846. "funding": [
  5847. {
  5848. "url": "https://github.com/GrahamCampbell",
  5849. "type": "github"
  5850. },
  5851. {
  5852. "url": "https://github.com/Nyholm",
  5853. "type": "github"
  5854. },
  5855. {
  5856. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  5857. "type": "tidelift"
  5858. }
  5859. ],
  5860. "time": "2022-06-20T22:16:07+00:00"
  5861. },
  5862. {
  5863. "name": "guzzlehttp/promises",
  5864. "version": "1.5.3",
  5865. "source": {
  5866. "type": "git",
  5867. "url": "https://github.com/guzzle/promises.git",
  5868. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e"
  5869. },
  5870. "dist": {
  5871. "type": "zip",
  5872. "url": "https://api.github.com/repos/guzzle/promises/zipball/67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  5873. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  5874. "shasum": ""
  5875. },
  5876. "require": {
  5877. "php": ">=5.5"
  5878. },
  5879. "require-dev": {
  5880. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  5881. },
  5882. "type": "library",
  5883. "autoload": {
  5884. "files": [
  5885. "src/functions_include.php"
  5886. ],
  5887. "psr-4": {
  5888. "GuzzleHttp\\Promise\\": "src/"
  5889. }
  5890. },
  5891. "notification-url": "https://packagist.org/downloads/",
  5892. "license": [
  5893. "MIT"
  5894. ],
  5895. "authors": [
  5896. {
  5897. "name": "Graham Campbell",
  5898. "email": "hello@gjcampbell.co.uk",
  5899. "homepage": "https://github.com/GrahamCampbell"
  5900. },
  5901. {
  5902. "name": "Michael Dowling",
  5903. "email": "mtdowling@gmail.com",
  5904. "homepage": "https://github.com/mtdowling"
  5905. },
  5906. {
  5907. "name": "Tobias Nyholm",
  5908. "email": "tobias.nyholm@gmail.com",
  5909. "homepage": "https://github.com/Nyholm"
  5910. },
  5911. {
  5912. "name": "Tobias Schultze",
  5913. "email": "webmaster@tubo-world.de",
  5914. "homepage": "https://github.com/Tobion"
  5915. }
  5916. ],
  5917. "description": "Guzzle promises library",
  5918. "keywords": [
  5919. "promise"
  5920. ],
  5921. "support": {
  5922. "issues": "https://github.com/guzzle/promises/issues",
  5923. "source": "https://github.com/guzzle/promises/tree/1.5.3"
  5924. },
  5925. "funding": [
  5926. {
  5927. "url": "https://github.com/GrahamCampbell",
  5928. "type": "github"
  5929. },
  5930. {
  5931. "url": "https://github.com/Nyholm",
  5932. "type": "github"
  5933. },
  5934. {
  5935. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  5936. "type": "tidelift"
  5937. }
  5938. ],
  5939. "time": "2023-05-21T12:31:43+00:00"
  5940. },
  5941. {
  5942. "name": "guzzlehttp/psr7",
  5943. "version": "1.9.1",
  5944. "source": {
  5945. "type": "git",
  5946. "url": "https://github.com/guzzle/psr7.git",
  5947. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b"
  5948. },
  5949. "dist": {
  5950. "type": "zip",
  5951. "url": "https://api.github.com/repos/guzzle/psr7/zipball/e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  5952. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  5953. "shasum": ""
  5954. },
  5955. "require": {
  5956. "php": ">=5.4.0",
  5957. "psr/http-message": "~1.0",
  5958. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  5959. },
  5960. "provide": {
  5961. "psr/http-message-implementation": "1.0"
  5962. },
  5963. "require-dev": {
  5964. "ext-zlib": "*",
  5965. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  5966. },
  5967. "suggest": {
  5968. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  5969. },
  5970. "type": "library",
  5971. "autoload": {
  5972. "files": [
  5973. "src/functions_include.php"
  5974. ],
  5975. "psr-4": {
  5976. "GuzzleHttp\\Psr7\\": "src/"
  5977. }
  5978. },
  5979. "notification-url": "https://packagist.org/downloads/",
  5980. "license": [
  5981. "MIT"
  5982. ],
  5983. "authors": [
  5984. {
  5985. "name": "Graham Campbell",
  5986. "email": "hello@gjcampbell.co.uk",
  5987. "homepage": "https://github.com/GrahamCampbell"
  5988. },
  5989. {
  5990. "name": "Michael Dowling",
  5991. "email": "mtdowling@gmail.com",
  5992. "homepage": "https://github.com/mtdowling"
  5993. },
  5994. {
  5995. "name": "George Mponos",
  5996. "email": "gmponos@gmail.com",
  5997. "homepage": "https://github.com/gmponos"
  5998. },
  5999. {
  6000. "name": "Tobias Nyholm",
  6001. "email": "tobias.nyholm@gmail.com",
  6002. "homepage": "https://github.com/Nyholm"
  6003. },
  6004. {
  6005. "name": "Márk Sági-Kazár",
  6006. "email": "mark.sagikazar@gmail.com",
  6007. "homepage": "https://github.com/sagikazarmark"
  6008. },
  6009. {
  6010. "name": "Tobias Schultze",
  6011. "email": "webmaster@tubo-world.de",
  6012. "homepage": "https://github.com/Tobion"
  6013. }
  6014. ],
  6015. "description": "PSR-7 message implementation that also provides common utility methods",
  6016. "keywords": [
  6017. "http",
  6018. "message",
  6019. "psr-7",
  6020. "request",
  6021. "response",
  6022. "stream",
  6023. "uri",
  6024. "url"
  6025. ],
  6026. "support": {
  6027. "issues": "https://github.com/guzzle/psr7/issues",
  6028. "source": "https://github.com/guzzle/psr7/tree/1.9.1"
  6029. },
  6030. "funding": [
  6031. {
  6032. "url": "https://github.com/GrahamCampbell",
  6033. "type": "github"
  6034. },
  6035. {
  6036. "url": "https://github.com/Nyholm",
  6037. "type": "github"
  6038. },
  6039. {
  6040. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  6041. "type": "tidelift"
  6042. }
  6043. ],
  6044. "time": "2023-04-17T16:00:37+00:00"
  6045. },
  6046. {
  6047. "name": "kint-php/kint",
  6048. "version": "5.1.1",
  6049. "source": {
  6050. "type": "git",
  6051. "url": "https://github.com/kint-php/kint.git",
  6052. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b"
  6053. },
  6054. "dist": {
  6055. "type": "zip",
  6056. "url": "https://api.github.com/repos/kint-php/kint/zipball/8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  6057. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  6058. "shasum": ""
  6059. },
  6060. "require": {
  6061. "php": ">=7.1"
  6062. },
  6063. "require-dev": {
  6064. "friendsofphp/php-cs-fixer": "^3",
  6065. "phpspec/prophecy-phpunit": "^2",
  6066. "phpunit/phpunit": "^9",
  6067. "seld/phar-utils": "^1",
  6068. "symfony/finder": ">=4.0",
  6069. "vimeo/psalm": "^5"
  6070. },
  6071. "suggest": {
  6072. "kint-php/kint-helpers": "Provides extra helper functions",
  6073. "kint-php/kint-twig": "Provides d() and s() functions in twig templates"
  6074. },
  6075. "type": "library",
  6076. "autoload": {
  6077. "files": [
  6078. "init.php"
  6079. ],
  6080. "psr-4": {
  6081. "Kint\\": "src/"
  6082. }
  6083. },
  6084. "notification-url": "https://packagist.org/downloads/",
  6085. "license": [
  6086. "MIT"
  6087. ],
  6088. "authors": [
  6089. {
  6090. "name": "Jonathan Vollebregt",
  6091. "homepage": "https://github.com/jnvsor"
  6092. },
  6093. {
  6094. "name": "Contributors",
  6095. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  6096. }
  6097. ],
  6098. "description": "Kint - debugging tool for PHP developers",
  6099. "homepage": "https://kint-php.github.io/kint/",
  6100. "keywords": [
  6101. "debug",
  6102. "kint",
  6103. "php"
  6104. ],
  6105. "support": {
  6106. "issues": "https://github.com/kint-php/kint/issues",
  6107. "source": "https://github.com/kint-php/kint/tree/5.1.1"
  6108. },
  6109. "time": "2024-04-26T14:20:09+00:00"
  6110. },
  6111. {
  6112. "name": "laminas/laminas-escaper",
  6113. "version": "2.13.0",
  6114. "source": {
  6115. "type": "git",
  6116. "url": "https://github.com/laminas/laminas-escaper.git",
  6117. "reference": "af459883f4018d0f8a0c69c7a209daef3bf973ba"
  6118. },
  6119. "dist": {
  6120. "type": "zip",
  6121. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/af459883f4018d0f8a0c69c7a209daef3bf973ba",
  6122. "reference": "af459883f4018d0f8a0c69c7a209daef3bf973ba",
  6123. "shasum": ""
  6124. },
  6125. "require": {
  6126. "ext-ctype": "*",
  6127. "ext-mbstring": "*",
  6128. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  6129. },
  6130. "conflict": {
  6131. "zendframework/zend-escaper": "*"
  6132. },
  6133. "require-dev": {
  6134. "infection/infection": "^0.27.0",
  6135. "laminas/laminas-coding-standard": "~2.5.0",
  6136. "maglnet/composer-require-checker": "^3.8.0",
  6137. "phpunit/phpunit": "^9.6.7",
  6138. "psalm/plugin-phpunit": "^0.18.4",
  6139. "vimeo/psalm": "^5.9"
  6140. },
  6141. "type": "library",
  6142. "autoload": {
  6143. "psr-4": {
  6144. "Laminas\\Escaper\\": "src/"
  6145. }
  6146. },
  6147. "notification-url": "https://packagist.org/downloads/",
  6148. "license": [
  6149. "BSD-3-Clause"
  6150. ],
  6151. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  6152. "homepage": "https://laminas.dev",
  6153. "keywords": [
  6154. "escaper",
  6155. "laminas"
  6156. ],
  6157. "support": {
  6158. "chat": "https://laminas.dev/chat",
  6159. "docs": "https://docs.laminas.dev/laminas-escaper/",
  6160. "forum": "https://discourse.laminas.dev",
  6161. "issues": "https://github.com/laminas/laminas-escaper/issues",
  6162. "rss": "https://github.com/laminas/laminas-escaper/releases.atom",
  6163. "source": "https://github.com/laminas/laminas-escaper"
  6164. },
  6165. "funding": [
  6166. {
  6167. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6168. "type": "community_bridge"
  6169. }
  6170. ],
  6171. "time": "2023-10-10T08:35:13+00:00"
  6172. },
  6173. {
  6174. "name": "laminas/laminas-feed",
  6175. "version": "2.22.0",
  6176. "source": {
  6177. "type": "git",
  6178. "url": "https://github.com/laminas/laminas-feed.git",
  6179. "reference": "669792b819fca7274698147ad7a2ecc1b0a9b141"
  6180. },
  6181. "dist": {
  6182. "type": "zip",
  6183. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/669792b819fca7274698147ad7a2ecc1b0a9b141",
  6184. "reference": "669792b819fca7274698147ad7a2ecc1b0a9b141",
  6185. "shasum": ""
  6186. },
  6187. "require": {
  6188. "ext-dom": "*",
  6189. "ext-libxml": "*",
  6190. "laminas/laminas-escaper": "^2.9",
  6191. "laminas/laminas-stdlib": "^3.6",
  6192. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  6193. },
  6194. "conflict": {
  6195. "laminas/laminas-servicemanager": "<3.3",
  6196. "zendframework/zend-feed": "*"
  6197. },
  6198. "require-dev": {
  6199. "laminas/laminas-cache": "^2.13.2 || ^3.11",
  6200. "laminas/laminas-cache-storage-adapter-memory": "^1.1.0 || ^2.2",
  6201. "laminas/laminas-coding-standard": "~2.5.0",
  6202. "laminas/laminas-db": "^2.18",
  6203. "laminas/laminas-http": "^2.18",
  6204. "laminas/laminas-servicemanager": "^3.21.0",
  6205. "laminas/laminas-validator": "^2.38",
  6206. "phpunit/phpunit": "^10.3.1",
  6207. "psalm/plugin-phpunit": "^0.18.4",
  6208. "psr/http-message": "^2.0",
  6209. "vimeo/psalm": "^5.14.1"
  6210. },
  6211. "suggest": {
  6212. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  6213. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  6214. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  6215. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  6216. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  6217. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  6218. },
  6219. "type": "library",
  6220. "autoload": {
  6221. "psr-4": {
  6222. "Laminas\\Feed\\": "src/"
  6223. }
  6224. },
  6225. "notification-url": "https://packagist.org/downloads/",
  6226. "license": [
  6227. "BSD-3-Clause"
  6228. ],
  6229. "description": "provides functionality for creating and consuming RSS and Atom feeds",
  6230. "homepage": "https://laminas.dev",
  6231. "keywords": [
  6232. "atom",
  6233. "feed",
  6234. "laminas",
  6235. "rss"
  6236. ],
  6237. "support": {
  6238. "chat": "https://laminas.dev/chat",
  6239. "docs": "https://docs.laminas.dev/laminas-feed/",
  6240. "forum": "https://discourse.laminas.dev",
  6241. "issues": "https://github.com/laminas/laminas-feed/issues",
  6242. "rss": "https://github.com/laminas/laminas-feed/releases.atom",
  6243. "source": "https://github.com/laminas/laminas-feed"
  6244. },
  6245. "funding": [
  6246. {
  6247. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6248. "type": "community_bridge"
  6249. }
  6250. ],
  6251. "time": "2023-10-11T20:16:37+00:00"
  6252. },
  6253. {
  6254. "name": "laminas/laminas-servicemanager",
  6255. "version": "3.22.1",
  6256. "source": {
  6257. "type": "git",
  6258. "url": "https://github.com/laminas/laminas-servicemanager.git",
  6259. "reference": "de98d297d4743956a0558a6d71616979ff779328"
  6260. },
  6261. "dist": {
  6262. "type": "zip",
  6263. "url": "https://api.github.com/repos/laminas/laminas-servicemanager/zipball/de98d297d4743956a0558a6d71616979ff779328",
  6264. "reference": "de98d297d4743956a0558a6d71616979ff779328",
  6265. "shasum": ""
  6266. },
  6267. "require": {
  6268. "laminas/laminas-stdlib": "^3.17",
  6269. "php": "~8.1.0 || ~8.2.0 || ~8.3.0",
  6270. "psr/container": "^1.0"
  6271. },
  6272. "conflict": {
  6273. "ext-psr": "*",
  6274. "laminas/laminas-code": "<4.10.0",
  6275. "zendframework/zend-code": "<3.3.1",
  6276. "zendframework/zend-servicemanager": "*"
  6277. },
  6278. "provide": {
  6279. "psr/container-implementation": "^1.0"
  6280. },
  6281. "replace": {
  6282. "container-interop/container-interop": "^1.2.0"
  6283. },
  6284. "require-dev": {
  6285. "composer/package-versions-deprecated": "^1.11.99.5",
  6286. "friendsofphp/proxy-manager-lts": "^1.0.14",
  6287. "laminas/laminas-code": "^4.10.0",
  6288. "laminas/laminas-coding-standard": "~2.5.0",
  6289. "laminas/laminas-container-config-test": "^0.8",
  6290. "mikey179/vfsstream": "^1.6.11",
  6291. "phpbench/phpbench": "^1.2.9",
  6292. "phpunit/phpunit": "^10.4",
  6293. "psalm/plugin-phpunit": "^0.18.4",
  6294. "vimeo/psalm": "^5.8.0"
  6295. },
  6296. "suggest": {
  6297. "friendsofphp/proxy-manager-lts": "ProxyManager ^2.1.1 to handle lazy initialization of services"
  6298. },
  6299. "bin": [
  6300. "bin/generate-deps-for-config-factory",
  6301. "bin/generate-factory-for-class"
  6302. ],
  6303. "type": "library",
  6304. "autoload": {
  6305. "files": [
  6306. "src/autoload.php"
  6307. ],
  6308. "psr-4": {
  6309. "Laminas\\ServiceManager\\": "src/"
  6310. }
  6311. },
  6312. "notification-url": "https://packagist.org/downloads/",
  6313. "license": [
  6314. "BSD-3-Clause"
  6315. ],
  6316. "description": "Factory-Driven Dependency Injection Container",
  6317. "homepage": "https://laminas.dev",
  6318. "keywords": [
  6319. "PSR-11",
  6320. "dependency-injection",
  6321. "di",
  6322. "dic",
  6323. "laminas",
  6324. "service-manager",
  6325. "servicemanager"
  6326. ],
  6327. "support": {
  6328. "chat": "https://laminas.dev/chat",
  6329. "docs": "https://docs.laminas.dev/laminas-servicemanager/",
  6330. "forum": "https://discourse.laminas.dev",
  6331. "issues": "https://github.com/laminas/laminas-servicemanager/issues",
  6332. "rss": "https://github.com/laminas/laminas-servicemanager/releases.atom",
  6333. "source": "https://github.com/laminas/laminas-servicemanager"
  6334. },
  6335. "funding": [
  6336. {
  6337. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6338. "type": "community_bridge"
  6339. }
  6340. ],
  6341. "time": "2023-10-24T11:19:47+00:00"
  6342. },
  6343. {
  6344. "name": "laminas/laminas-stdlib",
  6345. "version": "3.19.0",
  6346. "source": {
  6347. "type": "git",
  6348. "url": "https://github.com/laminas/laminas-stdlib.git",
  6349. "reference": "6a192dd0882b514e45506f533b833b623b78fff3"
  6350. },
  6351. "dist": {
  6352. "type": "zip",
  6353. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/6a192dd0882b514e45506f533b833b623b78fff3",
  6354. "reference": "6a192dd0882b514e45506f533b833b623b78fff3",
  6355. "shasum": ""
  6356. },
  6357. "require": {
  6358. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  6359. },
  6360. "conflict": {
  6361. "zendframework/zend-stdlib": "*"
  6362. },
  6363. "require-dev": {
  6364. "laminas/laminas-coding-standard": "^2.5",
  6365. "phpbench/phpbench": "^1.2.15",
  6366. "phpunit/phpunit": "^10.5.8",
  6367. "psalm/plugin-phpunit": "^0.18.4",
  6368. "vimeo/psalm": "^5.20.0"
  6369. },
  6370. "type": "library",
  6371. "autoload": {
  6372. "psr-4": {
  6373. "Laminas\\Stdlib\\": "src/"
  6374. }
  6375. },
  6376. "notification-url": "https://packagist.org/downloads/",
  6377. "license": [
  6378. "BSD-3-Clause"
  6379. ],
  6380. "description": "SPL extensions, array utilities, error handlers, and more",
  6381. "homepage": "https://laminas.dev",
  6382. "keywords": [
  6383. "laminas",
  6384. "stdlib"
  6385. ],
  6386. "support": {
  6387. "chat": "https://laminas.dev/chat",
  6388. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  6389. "forum": "https://discourse.laminas.dev",
  6390. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  6391. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  6392. "source": "https://github.com/laminas/laminas-stdlib"
  6393. },
  6394. "funding": [
  6395. {
  6396. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6397. "type": "community_bridge"
  6398. }
  6399. ],
  6400. "time": "2024-01-19T12:39:49+00:00"
  6401. },
  6402. {
  6403. "name": "laminas/laminas-text",
  6404. "version": "2.11.0",
  6405. "source": {
  6406. "type": "git",
  6407. "url": "https://github.com/laminas/laminas-text.git",
  6408. "reference": "d799f3ccb3547e9e6ab313447138bae7009c7cc7"
  6409. },
  6410. "dist": {
  6411. "type": "zip",
  6412. "url": "https://api.github.com/repos/laminas/laminas-text/zipball/d799f3ccb3547e9e6ab313447138bae7009c7cc7",
  6413. "reference": "d799f3ccb3547e9e6ab313447138bae7009c7cc7",
  6414. "shasum": ""
  6415. },
  6416. "require": {
  6417. "laminas/laminas-servicemanager": "^3.22.0",
  6418. "laminas/laminas-stdlib": "^3.7.1",
  6419. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  6420. },
  6421. "conflict": {
  6422. "zendframework/zend-text": "*"
  6423. },
  6424. "require-dev": {
  6425. "laminas/laminas-coding-standard": "~2.5.0",
  6426. "phpunit/phpunit": "^9.5",
  6427. "psalm/plugin-phpunit": "^0.18.4",
  6428. "vimeo/psalm": "^5.1"
  6429. },
  6430. "type": "library",
  6431. "autoload": {
  6432. "psr-4": {
  6433. "Laminas\\Text\\": "src/"
  6434. }
  6435. },
  6436. "notification-url": "https://packagist.org/downloads/",
  6437. "license": [
  6438. "BSD-3-Clause"
  6439. ],
  6440. "description": "Create FIGlets and text-based tables",
  6441. "homepage": "https://laminas.dev",
  6442. "keywords": [
  6443. "laminas",
  6444. "text"
  6445. ],
  6446. "support": {
  6447. "chat": "https://laminas.dev/chat",
  6448. "docs": "https://docs.laminas.dev/laminas-text/",
  6449. "forum": "https://discourse.laminas.dev",
  6450. "issues": "https://github.com/laminas/laminas-text/issues",
  6451. "rss": "https://github.com/laminas/laminas-text/releases.atom",
  6452. "source": "https://github.com/laminas/laminas-text"
  6453. },
  6454. "funding": [
  6455. {
  6456. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6457. "type": "community_bridge"
  6458. }
  6459. ],
  6460. "time": "2023-11-07T16:45:45+00:00"
  6461. },
  6462. {
  6463. "name": "league/container",
  6464. "version": "2.5.0",
  6465. "source": {
  6466. "type": "git",
  6467. "url": "https://github.com/thephpleague/container.git",
  6468. "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3"
  6469. },
  6470. "dist": {
  6471. "type": "zip",
  6472. "url": "https://api.github.com/repos/thephpleague/container/zipball/8438dc47a0674e3378bcce893a0a04d79a2c22b3",
  6473. "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3",
  6474. "shasum": ""
  6475. },
  6476. "require": {
  6477. "container-interop/container-interop": "^1.2",
  6478. "php": "^5.4 || ^7.0 || ^8.0"
  6479. },
  6480. "provide": {
  6481. "container-interop/container-interop-implementation": "^1.2",
  6482. "psr/container-implementation": "^1.0"
  6483. },
  6484. "replace": {
  6485. "orno/di": "~2.0"
  6486. },
  6487. "require-dev": {
  6488. "phpunit/phpunit": "^4.8.36",
  6489. "scrutinizer/ocular": "^1.3",
  6490. "squizlabs/php_codesniffer": "^3.5"
  6491. },
  6492. "type": "library",
  6493. "extra": {
  6494. "branch-alias": {
  6495. "dev-2.x": "2.x-dev",
  6496. "dev-1.x": "1.x-dev"
  6497. }
  6498. },
  6499. "autoload": {
  6500. "psr-4": {
  6501. "League\\Container\\": "src"
  6502. }
  6503. },
  6504. "notification-url": "https://packagist.org/downloads/",
  6505. "license": [
  6506. "MIT"
  6507. ],
  6508. "authors": [
  6509. {
  6510. "name": "Phil Bennett",
  6511. "email": "philipobenito@gmail.com",
  6512. "homepage": "http://www.philipobenito.com",
  6513. "role": "Developer"
  6514. }
  6515. ],
  6516. "description": "A fast and intuitive dependency injection container.",
  6517. "homepage": "https://github.com/thephpleague/container",
  6518. "keywords": [
  6519. "container",
  6520. "dependency",
  6521. "di",
  6522. "injection",
  6523. "league",
  6524. "provider",
  6525. "service"
  6526. ],
  6527. "support": {
  6528. "issues": "https://github.com/thephpleague/container/issues",
  6529. "source": "https://github.com/thephpleague/container/tree/2.5.0"
  6530. },
  6531. "funding": [
  6532. {
  6533. "url": "https://github.com/philipobenito",
  6534. "type": "github"
  6535. }
  6536. ],
  6537. "time": "2021-02-22T09:20:06+00:00"
  6538. },
  6539. {
  6540. "name": "longwave/laminas-diactoros",
  6541. "version": "2.14.3",
  6542. "source": {
  6543. "type": "git",
  6544. "url": "https://github.com/longwave/laminas-diactoros.git",
  6545. "reference": "2bd6b47a090ae924ecc298657d01f8a462f7507b"
  6546. },
  6547. "dist": {
  6548. "type": "zip",
  6549. "url": "https://api.github.com/repos/longwave/laminas-diactoros/zipball/2bd6b47a090ae924ecc298657d01f8a462f7507b",
  6550. "reference": "2bd6b47a090ae924ecc298657d01f8a462f7507b",
  6551. "shasum": ""
  6552. },
  6553. "require": {
  6554. "php": "^7.3 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
  6555. "psr/http-factory": "^1.0",
  6556. "psr/http-message": "^1.0"
  6557. },
  6558. "conflict": {
  6559. "phpspec/prophecy": "<1.9.0",
  6560. "zendframework/zend-diactoros": "*"
  6561. },
  6562. "provide": {
  6563. "psr/http-factory-implementation": "1.0",
  6564. "psr/http-message-implementation": "1.0"
  6565. },
  6566. "replace": {
  6567. "laminas/laminas-diactoros": "2.18.1"
  6568. },
  6569. "require-dev": {
  6570. "ext-curl": "*",
  6571. "ext-dom": "*",
  6572. "ext-gd": "*",
  6573. "ext-libxml": "*",
  6574. "http-interop/http-factory-tests": "^0.9.0",
  6575. "laminas/laminas-coding-standard": "~2.3.0",
  6576. "php-http/psr7-integration-tests": "^1.1.1",
  6577. "phpspec/prophecy-phpunit": "^2.0",
  6578. "phpunit/phpunit": "^9.5",
  6579. "psalm/plugin-phpunit": "^0.17.0",
  6580. "vimeo/psalm": "^4.24.0"
  6581. },
  6582. "type": "library",
  6583. "extra": {
  6584. "laminas": {
  6585. "config-provider": "Laminas\\Diactoros\\ConfigProvider",
  6586. "module": "Laminas\\Diactoros"
  6587. }
  6588. },
  6589. "autoload": {
  6590. "files": [
  6591. "src/functions/create_uploaded_file.php",
  6592. "src/functions/marshal_headers_from_sapi.php",
  6593. "src/functions/marshal_method_from_sapi.php",
  6594. "src/functions/marshal_protocol_version_from_sapi.php",
  6595. "src/functions/marshal_uri_from_sapi.php",
  6596. "src/functions/normalize_server.php",
  6597. "src/functions/normalize_uploaded_files.php",
  6598. "src/functions/parse_cookie_header.php",
  6599. "src/functions/create_uploaded_file.legacy.php",
  6600. "src/functions/marshal_headers_from_sapi.legacy.php",
  6601. "src/functions/marshal_method_from_sapi.legacy.php",
  6602. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  6603. "src/functions/marshal_uri_from_sapi.legacy.php",
  6604. "src/functions/normalize_server.legacy.php",
  6605. "src/functions/normalize_uploaded_files.legacy.php",
  6606. "src/functions/parse_cookie_header.legacy.php"
  6607. ],
  6608. "psr-4": {
  6609. "Laminas\\Diactoros\\": "src/"
  6610. }
  6611. },
  6612. "notification-url": "https://packagist.org/downloads/",
  6613. "license": [
  6614. "BSD-3-Clause"
  6615. ],
  6616. "description": "PSR HTTP Message implementations",
  6617. "homepage": "https://laminas.dev",
  6618. "keywords": [
  6619. "http",
  6620. "laminas",
  6621. "psr",
  6622. "psr-17",
  6623. "psr-7"
  6624. ],
  6625. "support": {
  6626. "chat": "https://laminas.dev/chat",
  6627. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  6628. "forum": "https://discourse.laminas.dev",
  6629. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  6630. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  6631. "source": "https://github.com/laminas/laminas-diactoros"
  6632. },
  6633. "time": "2024-09-11T14:26:18+00:00"
  6634. },
  6635. {
  6636. "name": "masterminds/html5",
  6637. "version": "2.7.6",
  6638. "source": {
  6639. "type": "git",
  6640. "url": "https://github.com/Masterminds/html5-php.git",
  6641. "reference": "897eb517a343a2281f11bc5556d6548db7d93947"
  6642. },
  6643. "dist": {
  6644. "type": "zip",
  6645. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/897eb517a343a2281f11bc5556d6548db7d93947",
  6646. "reference": "897eb517a343a2281f11bc5556d6548db7d93947",
  6647. "shasum": ""
  6648. },
  6649. "require": {
  6650. "ext-ctype": "*",
  6651. "ext-dom": "*",
  6652. "ext-libxml": "*",
  6653. "php": ">=5.3.0"
  6654. },
  6655. "require-dev": {
  6656. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7"
  6657. },
  6658. "type": "library",
  6659. "extra": {
  6660. "branch-alias": {
  6661. "dev-master": "2.7-dev"
  6662. }
  6663. },
  6664. "autoload": {
  6665. "psr-4": {
  6666. "Masterminds\\": "src"
  6667. }
  6668. },
  6669. "notification-url": "https://packagist.org/downloads/",
  6670. "license": [
  6671. "MIT"
  6672. ],
  6673. "authors": [
  6674. {
  6675. "name": "Matt Butcher",
  6676. "email": "technosophos@gmail.com"
  6677. },
  6678. {
  6679. "name": "Matt Farina",
  6680. "email": "matt@mattfarina.com"
  6681. },
  6682. {
  6683. "name": "Asmir Mustafic",
  6684. "email": "goetas@gmail.com"
  6685. }
  6686. ],
  6687. "description": "An HTML5 parser and serializer.",
  6688. "homepage": "http://masterminds.github.io/html5-php",
  6689. "keywords": [
  6690. "HTML5",
  6691. "dom",
  6692. "html",
  6693. "parser",
  6694. "querypath",
  6695. "serializer",
  6696. "xml"
  6697. ],
  6698. "support": {
  6699. "issues": "https://github.com/Masterminds/html5-php/issues",
  6700. "source": "https://github.com/Masterminds/html5-php/tree/2.7.6"
  6701. },
  6702. "time": "2022-08-18T16:18:26+00:00"
  6703. },
  6704. {
  6705. "name": "mathieuviossat/arraytotexttable",
  6706. "version": "v1.0.11",
  6707. "source": {
  6708. "type": "git",
  6709. "url": "https://github.com/viossat/arraytotexttable.git",
  6710. "reference": "069561a0895fb69ea1939fcd09262ccea081cbb8"
  6711. },
  6712. "dist": {
  6713. "type": "zip",
  6714. "url": "https://api.github.com/repos/viossat/arraytotexttable/zipball/069561a0895fb69ea1939fcd09262ccea081cbb8",
  6715. "reference": "069561a0895fb69ea1939fcd09262ccea081cbb8",
  6716. "shasum": ""
  6717. },
  6718. "require": {
  6719. "laminas/laminas-text": "^2.10",
  6720. "php": ">=8.0.0"
  6721. },
  6722. "type": "library",
  6723. "autoload": {
  6724. "psr-4": {
  6725. "MathieuViossat\\Util\\": "src/"
  6726. }
  6727. },
  6728. "notification-url": "https://packagist.org/downloads/",
  6729. "license": [
  6730. "MIT"
  6731. ],
  6732. "authors": [
  6733. {
  6734. "name": "Mathieu Viossat",
  6735. "email": "mathieu@viossat.fr",
  6736. "homepage": "https://viossat.fr"
  6737. }
  6738. ],
  6739. "description": "Display arrays in terminal",
  6740. "homepage": "https://github.com/viossat/arraytotexttable",
  6741. "keywords": [
  6742. "array",
  6743. "ascii",
  6744. "table",
  6745. "terminal",
  6746. "text",
  6747. "unicode"
  6748. ],
  6749. "support": {
  6750. "issues": "https://github.com/viossat/arraytotexttable/issues",
  6751. "source": "https://github.com/viossat/arraytotexttable/tree/v1.0.11"
  6752. },
  6753. "time": "2024-02-13T17:19:01+00:00"
  6754. },
  6755. {
  6756. "name": "mglaman/phpstan-drupal",
  6757. "version": "1.2.12",
  6758. "source": {
  6759. "type": "git",
  6760. "url": "https://github.com/mglaman/phpstan-drupal.git",
  6761. "reference": "346bdddda169a56b6ebb7dc17893f0ac8f33a4f1"
  6762. },
  6763. "dist": {
  6764. "type": "zip",
  6765. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/346bdddda169a56b6ebb7dc17893f0ac8f33a4f1",
  6766. "reference": "346bdddda169a56b6ebb7dc17893f0ac8f33a4f1",
  6767. "shasum": ""
  6768. },
  6769. "require": {
  6770. "php": "^8.1",
  6771. "phpstan/phpstan": "^1.10.56",
  6772. "phpstan/phpstan-deprecation-rules": "^1.1.4",
  6773. "symfony/finder": "^4.2 || ^5.0 || ^6.0 || ^7.0",
  6774. "symfony/yaml": "^4.2|| ^5.0 || ^6.0 || ^7.0",
  6775. "webflo/drupal-finder": "^1.2"
  6776. },
  6777. "require-dev": {
  6778. "behat/mink": "^1.8",
  6779. "composer/installers": "^1.9",
  6780. "drupal/core-recommended": "^10",
  6781. "drush/drush": "^10.0 || ^11 || ^12 || ^13@beta",
  6782. "phpstan/extension-installer": "^1.1",
  6783. "phpstan/phpstan-strict-rules": "^1.0",
  6784. "phpunit/phpunit": "^8.5 || ^9 || ^10 || ^11",
  6785. "slevomat/coding-standard": "^7.1",
  6786. "squizlabs/php_codesniffer": "^3.3",
  6787. "symfony/phpunit-bridge": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  6788. },
  6789. "suggest": {
  6790. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  6791. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  6792. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  6793. },
  6794. "type": "phpstan-extension",
  6795. "extra": {
  6796. "branch-alias": {
  6797. "dev-main": "1.0-dev"
  6798. },
  6799. "installer-paths": {
  6800. "tests/fixtures/drupal/core": [
  6801. "type:drupal-core"
  6802. ],
  6803. "tests/fixtures/drupal/libraries/{$name}": [
  6804. "type:drupal-library"
  6805. ],
  6806. "tests/fixtures/drupal/modules/contrib/{$name}": [
  6807. "type:drupal-module"
  6808. ],
  6809. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  6810. "type:drupal-profile"
  6811. ],
  6812. "tests/fixtures/drupal/themes/contrib/{$name}": [
  6813. "type:drupal-theme"
  6814. ]
  6815. },
  6816. "phpstan": {
  6817. "includes": [
  6818. "extension.neon",
  6819. "rules.neon"
  6820. ]
  6821. }
  6822. },
  6823. "autoload": {
  6824. "psr-4": {
  6825. "mglaman\\PHPStanDrupal\\": "src/"
  6826. }
  6827. },
  6828. "notification-url": "https://packagist.org/downloads/",
  6829. "license": [
  6830. "MIT"
  6831. ],
  6832. "authors": [
  6833. {
  6834. "name": "Matt Glaman",
  6835. "email": "nmd.matt@gmail.com"
  6836. }
  6837. ],
  6838. "description": "Drupal extension and rules for PHPStan",
  6839. "support": {
  6840. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  6841. "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.12"
  6842. },
  6843. "funding": [
  6844. {
  6845. "url": "https://github.com/mglaman",
  6846. "type": "github"
  6847. },
  6848. {
  6849. "url": "https://opencollective.com/phpstan-drupal",
  6850. "type": "open_collective"
  6851. },
  6852. {
  6853. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  6854. "type": "tidelift"
  6855. }
  6856. ],
  6857. "time": "2024-08-07T21:15:21+00:00"
  6858. },
  6859. {
  6860. "name": "nikic/php-parser",
  6861. "version": "v4.19.1",
  6862. "source": {
  6863. "type": "git",
  6864. "url": "https://github.com/nikic/PHP-Parser.git",
  6865. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b"
  6866. },
  6867. "dist": {
  6868. "type": "zip",
  6869. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4e1b88d21c69391150ace211e9eaf05810858d0b",
  6870. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b",
  6871. "shasum": ""
  6872. },
  6873. "require": {
  6874. "ext-tokenizer": "*",
  6875. "php": ">=7.1"
  6876. },
  6877. "require-dev": {
  6878. "ircmaxell/php-yacc": "^0.0.7",
  6879. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  6880. },
  6881. "bin": [
  6882. "bin/php-parse"
  6883. ],
  6884. "type": "library",
  6885. "extra": {
  6886. "branch-alias": {
  6887. "dev-master": "4.9-dev"
  6888. }
  6889. },
  6890. "autoload": {
  6891. "psr-4": {
  6892. "PhpParser\\": "lib/PhpParser"
  6893. }
  6894. },
  6895. "notification-url": "https://packagist.org/downloads/",
  6896. "license": [
  6897. "BSD-3-Clause"
  6898. ],
  6899. "authors": [
  6900. {
  6901. "name": "Nikita Popov"
  6902. }
  6903. ],
  6904. "description": "A PHP parser written in PHP",
  6905. "keywords": [
  6906. "parser",
  6907. "php"
  6908. ],
  6909. "support": {
  6910. "issues": "https://github.com/nikic/PHP-Parser/issues",
  6911. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.1"
  6912. },
  6913. "time": "2024-03-17T08:10:35+00:00"
  6914. },
  6915. {
  6916. "name": "pear/archive_tar",
  6917. "version": "1.4.14",
  6918. "source": {
  6919. "type": "git",
  6920. "url": "https://github.com/pear/Archive_Tar.git",
  6921. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  6922. },
  6923. "dist": {
  6924. "type": "zip",
  6925. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  6926. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  6927. "shasum": ""
  6928. },
  6929. "require": {
  6930. "pear/pear-core-minimal": "^1.10.0alpha2",
  6931. "php": ">=5.2.0"
  6932. },
  6933. "require-dev": {
  6934. "phpunit/phpunit": "*"
  6935. },
  6936. "suggest": {
  6937. "ext-bz2": "Bz2 compression support.",
  6938. "ext-xz": "Lzma2 compression support.",
  6939. "ext-zlib": "Gzip compression support."
  6940. },
  6941. "type": "library",
  6942. "extra": {
  6943. "branch-alias": {
  6944. "dev-master": "1.4.x-dev"
  6945. }
  6946. },
  6947. "autoload": {
  6948. "psr-0": {
  6949. "Archive_Tar": ""
  6950. }
  6951. },
  6952. "notification-url": "https://packagist.org/downloads/",
  6953. "include-path": [
  6954. "./"
  6955. ],
  6956. "license": [
  6957. "BSD-3-Clause"
  6958. ],
  6959. "authors": [
  6960. {
  6961. "name": "Vincent Blavet",
  6962. "email": "vincent@phpconcept.net"
  6963. },
  6964. {
  6965. "name": "Greg Beaver",
  6966. "email": "greg@chiaraquartet.net"
  6967. },
  6968. {
  6969. "name": "Michiel Rook",
  6970. "email": "mrook@php.net"
  6971. }
  6972. ],
  6973. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  6974. "homepage": "https://github.com/pear/Archive_Tar",
  6975. "keywords": [
  6976. "archive",
  6977. "tar"
  6978. ],
  6979. "support": {
  6980. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  6981. "source": "https://github.com/pear/Archive_Tar"
  6982. },
  6983. "funding": [
  6984. {
  6985. "url": "https://github.com/mrook",
  6986. "type": "github"
  6987. },
  6988. {
  6989. "url": "https://www.patreon.com/michielrook",
  6990. "type": "patreon"
  6991. }
  6992. ],
  6993. "time": "2021-07-20T13:53:39+00:00"
  6994. },
  6995. {
  6996. "name": "pear/console_getopt",
  6997. "version": "v1.4.3",
  6998. "source": {
  6999. "type": "git",
  7000. "url": "https://github.com/pear/Console_Getopt.git",
  7001. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  7002. },
  7003. "dist": {
  7004. "type": "zip",
  7005. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7006. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7007. "shasum": ""
  7008. },
  7009. "type": "library",
  7010. "autoload": {
  7011. "psr-0": {
  7012. "Console": "./"
  7013. }
  7014. },
  7015. "notification-url": "https://packagist.org/downloads/",
  7016. "include-path": [
  7017. "./"
  7018. ],
  7019. "license": [
  7020. "BSD-2-Clause"
  7021. ],
  7022. "authors": [
  7023. {
  7024. "name": "Andrei Zmievski",
  7025. "email": "andrei@php.net",
  7026. "role": "Lead"
  7027. },
  7028. {
  7029. "name": "Stig Bakken",
  7030. "email": "stig@php.net",
  7031. "role": "Developer"
  7032. },
  7033. {
  7034. "name": "Greg Beaver",
  7035. "email": "cellog@php.net",
  7036. "role": "Helper"
  7037. }
  7038. ],
  7039. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  7040. "support": {
  7041. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  7042. "source": "https://github.com/pear/Console_Getopt"
  7043. },
  7044. "time": "2019-11-20T18:27:48+00:00"
  7045. },
  7046. {
  7047. "name": "pear/pear-core-minimal",
  7048. "version": "v1.10.15",
  7049. "source": {
  7050. "type": "git",
  7051. "url": "https://github.com/pear/pear-core-minimal.git",
  7052. "reference": "ce0adade8b97561656ace07cdaac4751c271ea8c"
  7053. },
  7054. "dist": {
  7055. "type": "zip",
  7056. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/ce0adade8b97561656ace07cdaac4751c271ea8c",
  7057. "reference": "ce0adade8b97561656ace07cdaac4751c271ea8c",
  7058. "shasum": ""
  7059. },
  7060. "require": {
  7061. "pear/console_getopt": "~1.4",
  7062. "pear/pear_exception": "~1.0",
  7063. "php": ">=5.4"
  7064. },
  7065. "replace": {
  7066. "rsky/pear-core-min": "self.version"
  7067. },
  7068. "type": "library",
  7069. "autoload": {
  7070. "classmap": [
  7071. "src/"
  7072. ]
  7073. },
  7074. "notification-url": "https://packagist.org/downloads/",
  7075. "include-path": [
  7076. "src/"
  7077. ],
  7078. "license": [
  7079. "BSD-3-Clause"
  7080. ],
  7081. "authors": [
  7082. {
  7083. "name": "Christian Weiske",
  7084. "email": "cweiske@php.net",
  7085. "role": "Lead"
  7086. }
  7087. ],
  7088. "description": "Minimal set of PEAR core files to be used as composer dependency",
  7089. "support": {
  7090. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  7091. "source": "https://github.com/pear/pear-core-minimal"
  7092. },
  7093. "time": "2024-03-16T18:41:45+00:00"
  7094. },
  7095. {
  7096. "name": "pear/pear_exception",
  7097. "version": "v1.0.2",
  7098. "source": {
  7099. "type": "git",
  7100. "url": "https://github.com/pear/PEAR_Exception.git",
  7101. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  7102. },
  7103. "dist": {
  7104. "type": "zip",
  7105. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  7106. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  7107. "shasum": ""
  7108. },
  7109. "require": {
  7110. "php": ">=5.2.0"
  7111. },
  7112. "require-dev": {
  7113. "phpunit/phpunit": "<9"
  7114. },
  7115. "type": "class",
  7116. "extra": {
  7117. "branch-alias": {
  7118. "dev-master": "1.0.x-dev"
  7119. }
  7120. },
  7121. "autoload": {
  7122. "classmap": [
  7123. "PEAR/"
  7124. ]
  7125. },
  7126. "notification-url": "https://packagist.org/downloads/",
  7127. "include-path": [
  7128. "."
  7129. ],
  7130. "license": [
  7131. "BSD-2-Clause"
  7132. ],
  7133. "authors": [
  7134. {
  7135. "name": "Helgi Thormar",
  7136. "email": "dufuz@php.net"
  7137. },
  7138. {
  7139. "name": "Greg Beaver",
  7140. "email": "cellog@php.net"
  7141. }
  7142. ],
  7143. "description": "The PEAR Exception base class.",
  7144. "homepage": "https://github.com/pear/PEAR_Exception",
  7145. "keywords": [
  7146. "exception"
  7147. ],
  7148. "support": {
  7149. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  7150. "source": "https://github.com/pear/PEAR_Exception"
  7151. },
  7152. "time": "2021-03-21T15:43:46+00:00"
  7153. },
  7154. {
  7155. "name": "phpstan/phpstan",
  7156. "version": "1.12.3",
  7157. "source": {
  7158. "type": "git",
  7159. "url": "https://github.com/phpstan/phpstan.git",
  7160. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009"
  7161. },
  7162. "dist": {
  7163. "type": "zip",
  7164. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0fcbf194ab63d8159bb70d9aa3e1350051632009",
  7165. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009",
  7166. "shasum": ""
  7167. },
  7168. "require": {
  7169. "php": "^7.2|^8.0"
  7170. },
  7171. "conflict": {
  7172. "phpstan/phpstan-shim": "*"
  7173. },
  7174. "bin": [
  7175. "phpstan",
  7176. "phpstan.phar"
  7177. ],
  7178. "type": "library",
  7179. "autoload": {
  7180. "files": [
  7181. "bootstrap.php"
  7182. ]
  7183. },
  7184. "notification-url": "https://packagist.org/downloads/",
  7185. "license": [
  7186. "MIT"
  7187. ],
  7188. "description": "PHPStan - PHP Static Analysis Tool",
  7189. "keywords": [
  7190. "dev",
  7191. "static analysis"
  7192. ],
  7193. "support": {
  7194. "docs": "https://phpstan.org/user-guide/getting-started",
  7195. "forum": "https://github.com/phpstan/phpstan/discussions",
  7196. "issues": "https://github.com/phpstan/phpstan/issues",
  7197. "security": "https://github.com/phpstan/phpstan/security/policy",
  7198. "source": "https://github.com/phpstan/phpstan-src"
  7199. },
  7200. "funding": [
  7201. {
  7202. "url": "https://github.com/ondrejmirtes",
  7203. "type": "github"
  7204. },
  7205. {
  7206. "url": "https://github.com/phpstan",
  7207. "type": "github"
  7208. }
  7209. ],
  7210. "time": "2024-09-09T08:10:35+00:00"
  7211. },
  7212. {
  7213. "name": "phpstan/phpstan-deprecation-rules",
  7214. "version": "1.2.1",
  7215. "source": {
  7216. "type": "git",
  7217. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  7218. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82"
  7219. },
  7220. "dist": {
  7221. "type": "zip",
  7222. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7223. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7224. "shasum": ""
  7225. },
  7226. "require": {
  7227. "php": "^7.2 || ^8.0",
  7228. "phpstan/phpstan": "^1.12"
  7229. },
  7230. "require-dev": {
  7231. "php-parallel-lint/php-parallel-lint": "^1.2",
  7232. "phpstan/phpstan-phpunit": "^1.0",
  7233. "phpunit/phpunit": "^9.5"
  7234. },
  7235. "type": "phpstan-extension",
  7236. "extra": {
  7237. "phpstan": {
  7238. "includes": [
  7239. "rules.neon"
  7240. ]
  7241. }
  7242. },
  7243. "autoload": {
  7244. "psr-4": {
  7245. "PHPStan\\": "src/"
  7246. }
  7247. },
  7248. "notification-url": "https://packagist.org/downloads/",
  7249. "license": [
  7250. "MIT"
  7251. ],
  7252. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  7253. "support": {
  7254. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  7255. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.2.1"
  7256. },
  7257. "time": "2024-09-11T15:52:35+00:00"
  7258. },
  7259. {
  7260. "name": "psr/cache",
  7261. "version": "1.0.1",
  7262. "source": {
  7263. "type": "git",
  7264. "url": "https://github.com/php-fig/cache.git",
  7265. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  7266. },
  7267. "dist": {
  7268. "type": "zip",
  7269. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  7270. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  7271. "shasum": ""
  7272. },
  7273. "require": {
  7274. "php": ">=5.3.0"
  7275. },
  7276. "type": "library",
  7277. "extra": {
  7278. "branch-alias": {
  7279. "dev-master": "1.0.x-dev"
  7280. }
  7281. },
  7282. "autoload": {
  7283. "psr-4": {
  7284. "Psr\\Cache\\": "src/"
  7285. }
  7286. },
  7287. "notification-url": "https://packagist.org/downloads/",
  7288. "license": [
  7289. "MIT"
  7290. ],
  7291. "authors": [
  7292. {
  7293. "name": "PHP-FIG",
  7294. "homepage": "http://www.php-fig.org/"
  7295. }
  7296. ],
  7297. "description": "Common interface for caching libraries",
  7298. "keywords": [
  7299. "cache",
  7300. "psr",
  7301. "psr-6"
  7302. ],
  7303. "support": {
  7304. "source": "https://github.com/php-fig/cache/tree/master"
  7305. },
  7306. "time": "2016-08-06T20:24:11+00:00"
  7307. },
  7308. {
  7309. "name": "psr/container",
  7310. "version": "1.1.2",
  7311. "source": {
  7312. "type": "git",
  7313. "url": "https://github.com/php-fig/container.git",
  7314. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  7315. },
  7316. "dist": {
  7317. "type": "zip",
  7318. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  7319. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  7320. "shasum": ""
  7321. },
  7322. "require": {
  7323. "php": ">=7.4.0"
  7324. },
  7325. "type": "library",
  7326. "autoload": {
  7327. "psr-4": {
  7328. "Psr\\Container\\": "src/"
  7329. }
  7330. },
  7331. "notification-url": "https://packagist.org/downloads/",
  7332. "license": [
  7333. "MIT"
  7334. ],
  7335. "authors": [
  7336. {
  7337. "name": "PHP-FIG",
  7338. "homepage": "https://www.php-fig.org/"
  7339. }
  7340. ],
  7341. "description": "Common Container Interface (PHP FIG PSR-11)",
  7342. "homepage": "https://github.com/php-fig/container",
  7343. "keywords": [
  7344. "PSR-11",
  7345. "container",
  7346. "container-interface",
  7347. "container-interop",
  7348. "psr"
  7349. ],
  7350. "support": {
  7351. "issues": "https://github.com/php-fig/container/issues",
  7352. "source": "https://github.com/php-fig/container/tree/1.1.2"
  7353. },
  7354. "time": "2021-11-05T16:50:12+00:00"
  7355. },
  7356. {
  7357. "name": "psr/http-factory",
  7358. "version": "1.0.2",
  7359. "source": {
  7360. "type": "git",
  7361. "url": "https://github.com/php-fig/http-factory.git",
  7362. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  7363. },
  7364. "dist": {
  7365. "type": "zip",
  7366. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  7367. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  7368. "shasum": ""
  7369. },
  7370. "require": {
  7371. "php": ">=7.0.0",
  7372. "psr/http-message": "^1.0 || ^2.0"
  7373. },
  7374. "type": "library",
  7375. "extra": {
  7376. "branch-alias": {
  7377. "dev-master": "1.0.x-dev"
  7378. }
  7379. },
  7380. "autoload": {
  7381. "psr-4": {
  7382. "Psr\\Http\\Message\\": "src/"
  7383. }
  7384. },
  7385. "notification-url": "https://packagist.org/downloads/",
  7386. "license": [
  7387. "MIT"
  7388. ],
  7389. "authors": [
  7390. {
  7391. "name": "PHP-FIG",
  7392. "homepage": "https://www.php-fig.org/"
  7393. }
  7394. ],
  7395. "description": "Common interfaces for PSR-7 HTTP message factories",
  7396. "keywords": [
  7397. "factory",
  7398. "http",
  7399. "message",
  7400. "psr",
  7401. "psr-17",
  7402. "psr-7",
  7403. "request",
  7404. "response"
  7405. ],
  7406. "support": {
  7407. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  7408. },
  7409. "time": "2023-04-10T20:10:41+00:00"
  7410. },
  7411. {
  7412. "name": "psr/http-message",
  7413. "version": "1.0.1",
  7414. "source": {
  7415. "type": "git",
  7416. "url": "https://github.com/php-fig/http-message.git",
  7417. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  7418. },
  7419. "dist": {
  7420. "type": "zip",
  7421. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  7422. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  7423. "shasum": ""
  7424. },
  7425. "require": {
  7426. "php": ">=5.3.0"
  7427. },
  7428. "type": "library",
  7429. "extra": {
  7430. "branch-alias": {
  7431. "dev-master": "1.0.x-dev"
  7432. }
  7433. },
  7434. "autoload": {
  7435. "psr-4": {
  7436. "Psr\\Http\\Message\\": "src/"
  7437. }
  7438. },
  7439. "notification-url": "https://packagist.org/downloads/",
  7440. "license": [
  7441. "MIT"
  7442. ],
  7443. "authors": [
  7444. {
  7445. "name": "PHP-FIG",
  7446. "homepage": "http://www.php-fig.org/"
  7447. }
  7448. ],
  7449. "description": "Common interface for HTTP messages",
  7450. "homepage": "https://github.com/php-fig/http-message",
  7451. "keywords": [
  7452. "http",
  7453. "http-message",
  7454. "psr",
  7455. "psr-7",
  7456. "request",
  7457. "response"
  7458. ],
  7459. "support": {
  7460. "source": "https://github.com/php-fig/http-message/tree/master"
  7461. },
  7462. "time": "2016-08-06T14:39:51+00:00"
  7463. },
  7464. {
  7465. "name": "psr/log",
  7466. "version": "1.1.4",
  7467. "source": {
  7468. "type": "git",
  7469. "url": "https://github.com/php-fig/log.git",
  7470. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  7471. },
  7472. "dist": {
  7473. "type": "zip",
  7474. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  7475. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  7476. "shasum": ""
  7477. },
  7478. "require": {
  7479. "php": ">=5.3.0"
  7480. },
  7481. "type": "library",
  7482. "extra": {
  7483. "branch-alias": {
  7484. "dev-master": "1.1.x-dev"
  7485. }
  7486. },
  7487. "autoload": {
  7488. "psr-4": {
  7489. "Psr\\Log\\": "Psr/Log/"
  7490. }
  7491. },
  7492. "notification-url": "https://packagist.org/downloads/",
  7493. "license": [
  7494. "MIT"
  7495. ],
  7496. "authors": [
  7497. {
  7498. "name": "PHP-FIG",
  7499. "homepage": "https://www.php-fig.org/"
  7500. }
  7501. ],
  7502. "description": "Common interface for logging libraries",
  7503. "homepage": "https://github.com/php-fig/log",
  7504. "keywords": [
  7505. "log",
  7506. "psr",
  7507. "psr-3"
  7508. ],
  7509. "support": {
  7510. "source": "https://github.com/php-fig/log/tree/1.1.4"
  7511. },
  7512. "time": "2021-05-03T11:20:27+00:00"
  7513. },
  7514. {
  7515. "name": "psy/psysh",
  7516. "version": "v0.10.12",
  7517. "source": {
  7518. "type": "git",
  7519. "url": "https://github.com/bobthecow/psysh.git",
  7520. "reference": "a0d9981aa07ecfcbea28e4bfa868031cca121e7d"
  7521. },
  7522. "dist": {
  7523. "type": "zip",
  7524. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a0d9981aa07ecfcbea28e4bfa868031cca121e7d",
  7525. "reference": "a0d9981aa07ecfcbea28e4bfa868031cca121e7d",
  7526. "shasum": ""
  7527. },
  7528. "require": {
  7529. "ext-json": "*",
  7530. "ext-tokenizer": "*",
  7531. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  7532. "php": "^8.0 || ^7.0 || ^5.5.9",
  7533. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  7534. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  7535. },
  7536. "require-dev": {
  7537. "bamarni/composer-bin-plugin": "^1.2",
  7538. "hoa/console": "3.17.*"
  7539. },
  7540. "suggest": {
  7541. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7542. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  7543. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  7544. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  7545. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  7546. },
  7547. "bin": [
  7548. "bin/psysh"
  7549. ],
  7550. "type": "library",
  7551. "extra": {
  7552. "branch-alias": {
  7553. "dev-main": "0.10.x-dev"
  7554. }
  7555. },
  7556. "autoload": {
  7557. "files": [
  7558. "src/functions.php"
  7559. ],
  7560. "psr-4": {
  7561. "Psy\\": "src/"
  7562. }
  7563. },
  7564. "notification-url": "https://packagist.org/downloads/",
  7565. "license": [
  7566. "MIT"
  7567. ],
  7568. "authors": [
  7569. {
  7570. "name": "Justin Hileman",
  7571. "email": "justin@justinhileman.info",
  7572. "homepage": "http://justinhileman.com"
  7573. }
  7574. ],
  7575. "description": "An interactive shell for modern PHP.",
  7576. "homepage": "http://psysh.org",
  7577. "keywords": [
  7578. "REPL",
  7579. "console",
  7580. "interactive",
  7581. "shell"
  7582. ],
  7583. "support": {
  7584. "issues": "https://github.com/bobthecow/psysh/issues",
  7585. "source": "https://github.com/bobthecow/psysh/tree/v0.10.12"
  7586. },
  7587. "time": "2021-11-30T14:05:36+00:00"
  7588. },
  7589. {
  7590. "name": "ralouphie/getallheaders",
  7591. "version": "3.0.3",
  7592. "source": {
  7593. "type": "git",
  7594. "url": "https://github.com/ralouphie/getallheaders.git",
  7595. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7596. },
  7597. "dist": {
  7598. "type": "zip",
  7599. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7600. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7601. "shasum": ""
  7602. },
  7603. "require": {
  7604. "php": ">=5.6"
  7605. },
  7606. "require-dev": {
  7607. "php-coveralls/php-coveralls": "^2.1",
  7608. "phpunit/phpunit": "^5 || ^6.5"
  7609. },
  7610. "type": "library",
  7611. "autoload": {
  7612. "files": [
  7613. "src/getallheaders.php"
  7614. ]
  7615. },
  7616. "notification-url": "https://packagist.org/downloads/",
  7617. "license": [
  7618. "MIT"
  7619. ],
  7620. "authors": [
  7621. {
  7622. "name": "Ralph Khattar",
  7623. "email": "ralph.khattar@gmail.com"
  7624. }
  7625. ],
  7626. "description": "A polyfill for getallheaders.",
  7627. "support": {
  7628. "issues": "https://github.com/ralouphie/getallheaders/issues",
  7629. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  7630. },
  7631. "time": "2019-03-08T08:55:37+00:00"
  7632. },
  7633. {
  7634. "name": "stack/builder",
  7635. "version": "v1.0.6",
  7636. "source": {
  7637. "type": "git",
  7638. "url": "https://github.com/stackphp/builder.git",
  7639. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c"
  7640. },
  7641. "dist": {
  7642. "type": "zip",
  7643. "url": "https://api.github.com/repos/stackphp/builder/zipball/a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  7644. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  7645. "shasum": ""
  7646. },
  7647. "require": {
  7648. "php": ">=7.2.0",
  7649. "symfony/http-foundation": "~2.1|~3.0|~4.0|~5.0",
  7650. "symfony/http-kernel": "~2.1|~3.0|~4.0|~5.0"
  7651. },
  7652. "require-dev": {
  7653. "phpunit/phpunit": "~8.0",
  7654. "symfony/routing": "^5.0"
  7655. },
  7656. "type": "library",
  7657. "extra": {
  7658. "branch-alias": {
  7659. "dev-master": "1.0-dev"
  7660. }
  7661. },
  7662. "autoload": {
  7663. "psr-0": {
  7664. "Stack": "src"
  7665. }
  7666. },
  7667. "notification-url": "https://packagist.org/downloads/",
  7668. "license": [
  7669. "MIT"
  7670. ],
  7671. "authors": [
  7672. {
  7673. "name": "Igor Wiedler",
  7674. "email": "igor@wiedler.ch"
  7675. }
  7676. ],
  7677. "description": "Builder for stack middleware based on HttpKernelInterface.",
  7678. "keywords": [
  7679. "stack"
  7680. ],
  7681. "support": {
  7682. "issues": "https://github.com/stackphp/builder/issues",
  7683. "source": "https://github.com/stackphp/builder/tree/v1.0.6"
  7684. },
  7685. "abandoned": true,
  7686. "time": "2020-01-30T12:17:27+00:00"
  7687. },
  7688. {
  7689. "name": "symfony-cmf/routing",
  7690. "version": "2.3.4",
  7691. "source": {
  7692. "type": "git",
  7693. "url": "https://github.com/symfony-cmf/Routing.git",
  7694. "reference": "bbcdf2f6301d740454ba9ebb8adaefd436c36a6b"
  7695. },
  7696. "dist": {
  7697. "type": "zip",
  7698. "url": "https://api.github.com/repos/symfony-cmf/Routing/zipball/bbcdf2f6301d740454ba9ebb8adaefd436c36a6b",
  7699. "reference": "bbcdf2f6301d740454ba9ebb8adaefd436c36a6b",
  7700. "shasum": ""
  7701. },
  7702. "require": {
  7703. "php": "^7.2 || ^8.0",
  7704. "psr/log": "^1.0 || ^2.0 || ^3.0",
  7705. "symfony/http-kernel": "^4.4 || ^5.0",
  7706. "symfony/routing": "^4.4 || ^5.0"
  7707. },
  7708. "require-dev": {
  7709. "symfony-cmf/testing": "^3@dev",
  7710. "symfony/config": "^4.4 || ^5.0",
  7711. "symfony/dependency-injection": "^4.4 || ^5.0",
  7712. "symfony/event-dispatcher": "^4.4 || ^5.0",
  7713. "symfony/phpunit-bridge": "^5.0"
  7714. },
  7715. "suggest": {
  7716. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (^4.4 || ^5.0)"
  7717. },
  7718. "type": "library",
  7719. "extra": {
  7720. "branch-alias": {
  7721. "dev-master": "2.x-dev"
  7722. }
  7723. },
  7724. "autoload": {
  7725. "psr-4": {
  7726. "Symfony\\Cmf\\Component\\Routing\\": "src/"
  7727. }
  7728. },
  7729. "notification-url": "https://packagist.org/downloads/",
  7730. "license": [
  7731. "MIT"
  7732. ],
  7733. "authors": [
  7734. {
  7735. "name": "Symfony CMF Community",
  7736. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  7737. }
  7738. ],
  7739. "description": "Extends the Symfony routing component for dynamic routes and chaining several routers",
  7740. "homepage": "http://cmf.symfony.com",
  7741. "keywords": [
  7742. "database",
  7743. "routing"
  7744. ],
  7745. "support": {
  7746. "issues": "https://github.com/symfony-cmf/Routing/issues",
  7747. "source": "https://github.com/symfony-cmf/Routing/tree/2.3.4"
  7748. },
  7749. "time": "2021-11-08T16:33:10+00:00"
  7750. },
  7751. {
  7752. "name": "symfony/console",
  7753. "version": "v4.4.49",
  7754. "source": {
  7755. "type": "git",
  7756. "url": "https://github.com/symfony/console.git",
  7757. "reference": "33fa45ffc81fdcc1ca368d4946da859c8cdb58d9"
  7758. },
  7759. "dist": {
  7760. "type": "zip",
  7761. "url": "https://api.github.com/repos/symfony/console/zipball/33fa45ffc81fdcc1ca368d4946da859c8cdb58d9",
  7762. "reference": "33fa45ffc81fdcc1ca368d4946da859c8cdb58d9",
  7763. "shasum": ""
  7764. },
  7765. "require": {
  7766. "php": ">=7.1.3",
  7767. "symfony/polyfill-mbstring": "~1.0",
  7768. "symfony/polyfill-php73": "^1.8",
  7769. "symfony/polyfill-php80": "^1.16",
  7770. "symfony/service-contracts": "^1.1|^2"
  7771. },
  7772. "conflict": {
  7773. "psr/log": ">=3",
  7774. "symfony/dependency-injection": "<3.4",
  7775. "symfony/event-dispatcher": "<4.3|>=5",
  7776. "symfony/lock": "<4.4",
  7777. "symfony/process": "<3.3"
  7778. },
  7779. "provide": {
  7780. "psr/log-implementation": "1.0|2.0"
  7781. },
  7782. "require-dev": {
  7783. "psr/log": "^1|^2",
  7784. "symfony/config": "^3.4|^4.0|^5.0",
  7785. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  7786. "symfony/event-dispatcher": "^4.3",
  7787. "symfony/lock": "^4.4|^5.0",
  7788. "symfony/process": "^3.4|^4.0|^5.0",
  7789. "symfony/var-dumper": "^4.3|^5.0"
  7790. },
  7791. "suggest": {
  7792. "psr/log": "For using the console logger",
  7793. "symfony/event-dispatcher": "",
  7794. "symfony/lock": "",
  7795. "symfony/process": ""
  7796. },
  7797. "type": "library",
  7798. "autoload": {
  7799. "psr-4": {
  7800. "Symfony\\Component\\Console\\": ""
  7801. },
  7802. "exclude-from-classmap": [
  7803. "/Tests/"
  7804. ]
  7805. },
  7806. "notification-url": "https://packagist.org/downloads/",
  7807. "license": [
  7808. "MIT"
  7809. ],
  7810. "authors": [
  7811. {
  7812. "name": "Fabien Potencier",
  7813. "email": "fabien@symfony.com"
  7814. },
  7815. {
  7816. "name": "Symfony Community",
  7817. "homepage": "https://symfony.com/contributors"
  7818. }
  7819. ],
  7820. "description": "Eases the creation of beautiful and testable command line interfaces",
  7821. "homepage": "https://symfony.com",
  7822. "support": {
  7823. "source": "https://github.com/symfony/console/tree/v4.4.49"
  7824. },
  7825. "funding": [
  7826. {
  7827. "url": "https://symfony.com/sponsor",
  7828. "type": "custom"
  7829. },
  7830. {
  7831. "url": "https://github.com/fabpot",
  7832. "type": "github"
  7833. },
  7834. {
  7835. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7836. "type": "tidelift"
  7837. }
  7838. ],
  7839. "time": "2022-11-05T17:10:16+00:00"
  7840. },
  7841. {
  7842. "name": "symfony/debug",
  7843. "version": "v4.4.44",
  7844. "source": {
  7845. "type": "git",
  7846. "url": "https://github.com/symfony/debug.git",
  7847. "reference": "1a692492190773c5310bc7877cb590c04c2f05be"
  7848. },
  7849. "dist": {
  7850. "type": "zip",
  7851. "url": "https://api.github.com/repos/symfony/debug/zipball/1a692492190773c5310bc7877cb590c04c2f05be",
  7852. "reference": "1a692492190773c5310bc7877cb590c04c2f05be",
  7853. "shasum": ""
  7854. },
  7855. "require": {
  7856. "php": ">=7.1.3",
  7857. "psr/log": "^1|^2|^3"
  7858. },
  7859. "conflict": {
  7860. "symfony/http-kernel": "<3.4"
  7861. },
  7862. "require-dev": {
  7863. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  7864. },
  7865. "type": "library",
  7866. "autoload": {
  7867. "psr-4": {
  7868. "Symfony\\Component\\Debug\\": ""
  7869. },
  7870. "exclude-from-classmap": [
  7871. "/Tests/"
  7872. ]
  7873. },
  7874. "notification-url": "https://packagist.org/downloads/",
  7875. "license": [
  7876. "MIT"
  7877. ],
  7878. "authors": [
  7879. {
  7880. "name": "Fabien Potencier",
  7881. "email": "fabien@symfony.com"
  7882. },
  7883. {
  7884. "name": "Symfony Community",
  7885. "homepage": "https://symfony.com/contributors"
  7886. }
  7887. ],
  7888. "description": "Provides tools to ease debugging PHP code",
  7889. "homepage": "https://symfony.com",
  7890. "support": {
  7891. "source": "https://github.com/symfony/debug/tree/v4.4.44"
  7892. },
  7893. "funding": [
  7894. {
  7895. "url": "https://symfony.com/sponsor",
  7896. "type": "custom"
  7897. },
  7898. {
  7899. "url": "https://github.com/fabpot",
  7900. "type": "github"
  7901. },
  7902. {
  7903. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7904. "type": "tidelift"
  7905. }
  7906. ],
  7907. "abandoned": "symfony/error-handler",
  7908. "time": "2022-07-28T16:29:46+00:00"
  7909. },
  7910. {
  7911. "name": "symfony/dependency-injection",
  7912. "version": "v4.4.49",
  7913. "source": {
  7914. "type": "git",
  7915. "url": "https://github.com/symfony/dependency-injection.git",
  7916. "reference": "9065fe97dbd38a897e95ea254eb5ddfe1310f734"
  7917. },
  7918. "dist": {
  7919. "type": "zip",
  7920. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/9065fe97dbd38a897e95ea254eb5ddfe1310f734",
  7921. "reference": "9065fe97dbd38a897e95ea254eb5ddfe1310f734",
  7922. "shasum": ""
  7923. },
  7924. "require": {
  7925. "php": ">=7.1.3",
  7926. "psr/container": "^1.0",
  7927. "symfony/polyfill-php80": "^1.16",
  7928. "symfony/service-contracts": "^1.1.6|^2"
  7929. },
  7930. "conflict": {
  7931. "symfony/config": "<4.3|>=5.0",
  7932. "symfony/finder": "<3.4",
  7933. "symfony/proxy-manager-bridge": "<3.4",
  7934. "symfony/yaml": "<4.4.26"
  7935. },
  7936. "provide": {
  7937. "psr/container-implementation": "1.0",
  7938. "symfony/service-implementation": "1.0|2.0"
  7939. },
  7940. "require-dev": {
  7941. "symfony/config": "^4.3",
  7942. "symfony/expression-language": "^3.4|^4.0|^5.0",
  7943. "symfony/yaml": "^4.4.26|^5.0"
  7944. },
  7945. "suggest": {
  7946. "symfony/config": "",
  7947. "symfony/expression-language": "For using expressions in service container configuration",
  7948. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  7949. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  7950. "symfony/yaml": ""
  7951. },
  7952. "type": "library",
  7953. "autoload": {
  7954. "psr-4": {
  7955. "Symfony\\Component\\DependencyInjection\\": ""
  7956. },
  7957. "exclude-from-classmap": [
  7958. "/Tests/"
  7959. ]
  7960. },
  7961. "notification-url": "https://packagist.org/downloads/",
  7962. "license": [
  7963. "MIT"
  7964. ],
  7965. "authors": [
  7966. {
  7967. "name": "Fabien Potencier",
  7968. "email": "fabien@symfony.com"
  7969. },
  7970. {
  7971. "name": "Symfony Community",
  7972. "homepage": "https://symfony.com/contributors"
  7973. }
  7974. ],
  7975. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  7976. "homepage": "https://symfony.com",
  7977. "support": {
  7978. "source": "https://github.com/symfony/dependency-injection/tree/v4.4.49"
  7979. },
  7980. "funding": [
  7981. {
  7982. "url": "https://symfony.com/sponsor",
  7983. "type": "custom"
  7984. },
  7985. {
  7986. "url": "https://github.com/fabpot",
  7987. "type": "github"
  7988. },
  7989. {
  7990. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7991. "type": "tidelift"
  7992. }
  7993. ],
  7994. "time": "2022-11-16T16:18:09+00:00"
  7995. },
  7996. {
  7997. "name": "symfony/deprecation-contracts",
  7998. "version": "v2.5.3",
  7999. "source": {
  8000. "type": "git",
  8001. "url": "https://github.com/symfony/deprecation-contracts.git",
  8002. "reference": "80d075412b557d41002320b96a096ca65aa2c98d"
  8003. },
  8004. "dist": {
  8005. "type": "zip",
  8006. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/80d075412b557d41002320b96a096ca65aa2c98d",
  8007. "reference": "80d075412b557d41002320b96a096ca65aa2c98d",
  8008. "shasum": ""
  8009. },
  8010. "require": {
  8011. "php": ">=7.1"
  8012. },
  8013. "type": "library",
  8014. "extra": {
  8015. "branch-alias": {
  8016. "dev-main": "2.5-dev"
  8017. },
  8018. "thanks": {
  8019. "name": "symfony/contracts",
  8020. "url": "https://github.com/symfony/contracts"
  8021. }
  8022. },
  8023. "autoload": {
  8024. "files": [
  8025. "function.php"
  8026. ]
  8027. },
  8028. "notification-url": "https://packagist.org/downloads/",
  8029. "license": [
  8030. "MIT"
  8031. ],
  8032. "authors": [
  8033. {
  8034. "name": "Nicolas Grekas",
  8035. "email": "p@tchwork.com"
  8036. },
  8037. {
  8038. "name": "Symfony Community",
  8039. "homepage": "https://symfony.com/contributors"
  8040. }
  8041. ],
  8042. "description": "A generic function and convention to trigger deprecation notices",
  8043. "homepage": "https://symfony.com",
  8044. "support": {
  8045. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.3"
  8046. },
  8047. "funding": [
  8048. {
  8049. "url": "https://symfony.com/sponsor",
  8050. "type": "custom"
  8051. },
  8052. {
  8053. "url": "https://github.com/fabpot",
  8054. "type": "github"
  8055. },
  8056. {
  8057. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8058. "type": "tidelift"
  8059. }
  8060. ],
  8061. "time": "2023-01-24T14:02:46+00:00"
  8062. },
  8063. {
  8064. "name": "symfony/error-handler",
  8065. "version": "v4.4.44",
  8066. "source": {
  8067. "type": "git",
  8068. "url": "https://github.com/symfony/error-handler.git",
  8069. "reference": "be731658121ef2d8be88f3a1ec938148a9237291"
  8070. },
  8071. "dist": {
  8072. "type": "zip",
  8073. "url": "https://api.github.com/repos/symfony/error-handler/zipball/be731658121ef2d8be88f3a1ec938148a9237291",
  8074. "reference": "be731658121ef2d8be88f3a1ec938148a9237291",
  8075. "shasum": ""
  8076. },
  8077. "require": {
  8078. "php": ">=7.1.3",
  8079. "psr/log": "^1|^2|^3",
  8080. "symfony/debug": "^4.4.5",
  8081. "symfony/var-dumper": "^4.4|^5.0"
  8082. },
  8083. "require-dev": {
  8084. "symfony/http-kernel": "^4.4|^5.0",
  8085. "symfony/serializer": "^4.4|^5.0"
  8086. },
  8087. "type": "library",
  8088. "autoload": {
  8089. "psr-4": {
  8090. "Symfony\\Component\\ErrorHandler\\": ""
  8091. },
  8092. "exclude-from-classmap": [
  8093. "/Tests/"
  8094. ]
  8095. },
  8096. "notification-url": "https://packagist.org/downloads/",
  8097. "license": [
  8098. "MIT"
  8099. ],
  8100. "authors": [
  8101. {
  8102. "name": "Fabien Potencier",
  8103. "email": "fabien@symfony.com"
  8104. },
  8105. {
  8106. "name": "Symfony Community",
  8107. "homepage": "https://symfony.com/contributors"
  8108. }
  8109. ],
  8110. "description": "Provides tools to manage errors and ease debugging PHP code",
  8111. "homepage": "https://symfony.com",
  8112. "support": {
  8113. "source": "https://github.com/symfony/error-handler/tree/v4.4.44"
  8114. },
  8115. "funding": [
  8116. {
  8117. "url": "https://symfony.com/sponsor",
  8118. "type": "custom"
  8119. },
  8120. {
  8121. "url": "https://github.com/fabpot",
  8122. "type": "github"
  8123. },
  8124. {
  8125. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8126. "type": "tidelift"
  8127. }
  8128. ],
  8129. "time": "2022-07-28T16:29:46+00:00"
  8130. },
  8131. {
  8132. "name": "symfony/event-dispatcher",
  8133. "version": "v4.4.44",
  8134. "source": {
  8135. "type": "git",
  8136. "url": "https://github.com/symfony/event-dispatcher.git",
  8137. "reference": "1e866e9e5c1b22168e0ce5f0b467f19bba61266a"
  8138. },
  8139. "dist": {
  8140. "type": "zip",
  8141. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1e866e9e5c1b22168e0ce5f0b467f19bba61266a",
  8142. "reference": "1e866e9e5c1b22168e0ce5f0b467f19bba61266a",
  8143. "shasum": ""
  8144. },
  8145. "require": {
  8146. "php": ">=7.1.3",
  8147. "symfony/event-dispatcher-contracts": "^1.1",
  8148. "symfony/polyfill-php80": "^1.16"
  8149. },
  8150. "conflict": {
  8151. "symfony/dependency-injection": "<3.4"
  8152. },
  8153. "provide": {
  8154. "psr/event-dispatcher-implementation": "1.0",
  8155. "symfony/event-dispatcher-implementation": "1.1"
  8156. },
  8157. "require-dev": {
  8158. "psr/log": "^1|^2|^3",
  8159. "symfony/config": "^3.4|^4.0|^5.0",
  8160. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  8161. "symfony/error-handler": "~3.4|~4.4",
  8162. "symfony/expression-language": "^3.4|^4.0|^5.0",
  8163. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  8164. "symfony/service-contracts": "^1.1|^2",
  8165. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  8166. },
  8167. "suggest": {
  8168. "symfony/dependency-injection": "",
  8169. "symfony/http-kernel": ""
  8170. },
  8171. "type": "library",
  8172. "autoload": {
  8173. "psr-4": {
  8174. "Symfony\\Component\\EventDispatcher\\": ""
  8175. },
  8176. "exclude-from-classmap": [
  8177. "/Tests/"
  8178. ]
  8179. },
  8180. "notification-url": "https://packagist.org/downloads/",
  8181. "license": [
  8182. "MIT"
  8183. ],
  8184. "authors": [
  8185. {
  8186. "name": "Fabien Potencier",
  8187. "email": "fabien@symfony.com"
  8188. },
  8189. {
  8190. "name": "Symfony Community",
  8191. "homepage": "https://symfony.com/contributors"
  8192. }
  8193. ],
  8194. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  8195. "homepage": "https://symfony.com",
  8196. "support": {
  8197. "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.44"
  8198. },
  8199. "funding": [
  8200. {
  8201. "url": "https://symfony.com/sponsor",
  8202. "type": "custom"
  8203. },
  8204. {
  8205. "url": "https://github.com/fabpot",
  8206. "type": "github"
  8207. },
  8208. {
  8209. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8210. "type": "tidelift"
  8211. }
  8212. ],
  8213. "time": "2022-07-20T09:59:04+00:00"
  8214. },
  8215. {
  8216. "name": "symfony/event-dispatcher-contracts",
  8217. "version": "v1.1.13",
  8218. "source": {
  8219. "type": "git",
  8220. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  8221. "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e"
  8222. },
  8223. "dist": {
  8224. "type": "zip",
  8225. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/1d5cd762abaa6b2a4169d3e77610193a7157129e",
  8226. "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e",
  8227. "shasum": ""
  8228. },
  8229. "require": {
  8230. "php": ">=7.1.3"
  8231. },
  8232. "suggest": {
  8233. "psr/event-dispatcher": "",
  8234. "symfony/event-dispatcher-implementation": ""
  8235. },
  8236. "type": "library",
  8237. "extra": {
  8238. "branch-alias": {
  8239. "dev-main": "1.1-dev"
  8240. },
  8241. "thanks": {
  8242. "name": "symfony/contracts",
  8243. "url": "https://github.com/symfony/contracts"
  8244. }
  8245. },
  8246. "autoload": {
  8247. "psr-4": {
  8248. "Symfony\\Contracts\\EventDispatcher\\": ""
  8249. }
  8250. },
  8251. "notification-url": "https://packagist.org/downloads/",
  8252. "license": [
  8253. "MIT"
  8254. ],
  8255. "authors": [
  8256. {
  8257. "name": "Nicolas Grekas",
  8258. "email": "p@tchwork.com"
  8259. },
  8260. {
  8261. "name": "Symfony Community",
  8262. "homepage": "https://symfony.com/contributors"
  8263. }
  8264. ],
  8265. "description": "Generic abstractions related to dispatching event",
  8266. "homepage": "https://symfony.com",
  8267. "keywords": [
  8268. "abstractions",
  8269. "contracts",
  8270. "decoupling",
  8271. "interfaces",
  8272. "interoperability",
  8273. "standards"
  8274. ],
  8275. "support": {
  8276. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.13"
  8277. },
  8278. "funding": [
  8279. {
  8280. "url": "https://symfony.com/sponsor",
  8281. "type": "custom"
  8282. },
  8283. {
  8284. "url": "https://github.com/fabpot",
  8285. "type": "github"
  8286. },
  8287. {
  8288. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8289. "type": "tidelift"
  8290. }
  8291. ],
  8292. "time": "2022-01-02T09:41:36+00:00"
  8293. },
  8294. {
  8295. "name": "symfony/filesystem",
  8296. "version": "v4.4.42",
  8297. "source": {
  8298. "type": "git",
  8299. "url": "https://github.com/symfony/filesystem.git",
  8300. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5"
  8301. },
  8302. "dist": {
  8303. "type": "zip",
  8304. "url": "https://api.github.com/repos/symfony/filesystem/zipball/815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  8305. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  8306. "shasum": ""
  8307. },
  8308. "require": {
  8309. "php": ">=7.1.3",
  8310. "symfony/polyfill-ctype": "~1.8",
  8311. "symfony/polyfill-php80": "^1.16"
  8312. },
  8313. "type": "library",
  8314. "autoload": {
  8315. "psr-4": {
  8316. "Symfony\\Component\\Filesystem\\": ""
  8317. },
  8318. "exclude-from-classmap": [
  8319. "/Tests/"
  8320. ]
  8321. },
  8322. "notification-url": "https://packagist.org/downloads/",
  8323. "license": [
  8324. "MIT"
  8325. ],
  8326. "authors": [
  8327. {
  8328. "name": "Fabien Potencier",
  8329. "email": "fabien@symfony.com"
  8330. },
  8331. {
  8332. "name": "Symfony Community",
  8333. "homepage": "https://symfony.com/contributors"
  8334. }
  8335. ],
  8336. "description": "Provides basic utilities for the filesystem",
  8337. "homepage": "https://symfony.com",
  8338. "support": {
  8339. "source": "https://github.com/symfony/filesystem/tree/v4.4.42"
  8340. },
  8341. "funding": [
  8342. {
  8343. "url": "https://symfony.com/sponsor",
  8344. "type": "custom"
  8345. },
  8346. {
  8347. "url": "https://github.com/fabpot",
  8348. "type": "github"
  8349. },
  8350. {
  8351. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8352. "type": "tidelift"
  8353. }
  8354. ],
  8355. "time": "2022-05-20T08:49:14+00:00"
  8356. },
  8357. {
  8358. "name": "symfony/finder",
  8359. "version": "v5.4.43",
  8360. "source": {
  8361. "type": "git",
  8362. "url": "https://github.com/symfony/finder.git",
  8363. "reference": "ae25a9145a900764158d439653d5630191155ca0"
  8364. },
  8365. "dist": {
  8366. "type": "zip",
  8367. "url": "https://api.github.com/repos/symfony/finder/zipball/ae25a9145a900764158d439653d5630191155ca0",
  8368. "reference": "ae25a9145a900764158d439653d5630191155ca0",
  8369. "shasum": ""
  8370. },
  8371. "require": {
  8372. "php": ">=7.2.5",
  8373. "symfony/deprecation-contracts": "^2.1|^3",
  8374. "symfony/polyfill-php80": "^1.16"
  8375. },
  8376. "type": "library",
  8377. "autoload": {
  8378. "psr-4": {
  8379. "Symfony\\Component\\Finder\\": ""
  8380. },
  8381. "exclude-from-classmap": [
  8382. "/Tests/"
  8383. ]
  8384. },
  8385. "notification-url": "https://packagist.org/downloads/",
  8386. "license": [
  8387. "MIT"
  8388. ],
  8389. "authors": [
  8390. {
  8391. "name": "Fabien Potencier",
  8392. "email": "fabien@symfony.com"
  8393. },
  8394. {
  8395. "name": "Symfony Community",
  8396. "homepage": "https://symfony.com/contributors"
  8397. }
  8398. ],
  8399. "description": "Finds files and directories via an intuitive fluent interface",
  8400. "homepage": "https://symfony.com",
  8401. "support": {
  8402. "source": "https://github.com/symfony/finder/tree/v5.4.43"
  8403. },
  8404. "funding": [
  8405. {
  8406. "url": "https://symfony.com/sponsor",
  8407. "type": "custom"
  8408. },
  8409. {
  8410. "url": "https://github.com/fabpot",
  8411. "type": "github"
  8412. },
  8413. {
  8414. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8415. "type": "tidelift"
  8416. }
  8417. ],
  8418. "time": "2024-08-13T14:03:51+00:00"
  8419. },
  8420. {
  8421. "name": "symfony/http-client-contracts",
  8422. "version": "v2.5.3",
  8423. "source": {
  8424. "type": "git",
  8425. "url": "https://github.com/symfony/http-client-contracts.git",
  8426. "reference": "e5cc97c2b4a4db0ba26bebc154f1426e3fd1d2f1"
  8427. },
  8428. "dist": {
  8429. "type": "zip",
  8430. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/e5cc97c2b4a4db0ba26bebc154f1426e3fd1d2f1",
  8431. "reference": "e5cc97c2b4a4db0ba26bebc154f1426e3fd1d2f1",
  8432. "shasum": ""
  8433. },
  8434. "require": {
  8435. "php": ">=7.2.5"
  8436. },
  8437. "suggest": {
  8438. "symfony/http-client-implementation": ""
  8439. },
  8440. "type": "library",
  8441. "extra": {
  8442. "branch-alias": {
  8443. "dev-main": "2.5-dev"
  8444. },
  8445. "thanks": {
  8446. "name": "symfony/contracts",
  8447. "url": "https://github.com/symfony/contracts"
  8448. }
  8449. },
  8450. "autoload": {
  8451. "psr-4": {
  8452. "Symfony\\Contracts\\HttpClient\\": ""
  8453. }
  8454. },
  8455. "notification-url": "https://packagist.org/downloads/",
  8456. "license": [
  8457. "MIT"
  8458. ],
  8459. "authors": [
  8460. {
  8461. "name": "Nicolas Grekas",
  8462. "email": "p@tchwork.com"
  8463. },
  8464. {
  8465. "name": "Symfony Community",
  8466. "homepage": "https://symfony.com/contributors"
  8467. }
  8468. ],
  8469. "description": "Generic abstractions related to HTTP clients",
  8470. "homepage": "https://symfony.com",
  8471. "keywords": [
  8472. "abstractions",
  8473. "contracts",
  8474. "decoupling",
  8475. "interfaces",
  8476. "interoperability",
  8477. "standards"
  8478. ],
  8479. "support": {
  8480. "source": "https://github.com/symfony/http-client-contracts/tree/v2.5.3"
  8481. },
  8482. "funding": [
  8483. {
  8484. "url": "https://symfony.com/sponsor",
  8485. "type": "custom"
  8486. },
  8487. {
  8488. "url": "https://github.com/fabpot",
  8489. "type": "github"
  8490. },
  8491. {
  8492. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8493. "type": "tidelift"
  8494. }
  8495. ],
  8496. "time": "2024-03-26T19:42:53+00:00"
  8497. },
  8498. {
  8499. "name": "symfony/http-foundation",
  8500. "version": "v4.4.49",
  8501. "source": {
  8502. "type": "git",
  8503. "url": "https://github.com/symfony/http-foundation.git",
  8504. "reference": "191413c7b832c015bb38eae963f2e57498c3c173"
  8505. },
  8506. "dist": {
  8507. "type": "zip",
  8508. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/191413c7b832c015bb38eae963f2e57498c3c173",
  8509. "reference": "191413c7b832c015bb38eae963f2e57498c3c173",
  8510. "shasum": ""
  8511. },
  8512. "require": {
  8513. "php": ">=7.1.3",
  8514. "symfony/mime": "^4.3|^5.0",
  8515. "symfony/polyfill-mbstring": "~1.1",
  8516. "symfony/polyfill-php80": "^1.16"
  8517. },
  8518. "require-dev": {
  8519. "predis/predis": "~1.0",
  8520. "symfony/expression-language": "^3.4|^4.0|^5.0"
  8521. },
  8522. "type": "library",
  8523. "autoload": {
  8524. "psr-4": {
  8525. "Symfony\\Component\\HttpFoundation\\": ""
  8526. },
  8527. "exclude-from-classmap": [
  8528. "/Tests/"
  8529. ]
  8530. },
  8531. "notification-url": "https://packagist.org/downloads/",
  8532. "license": [
  8533. "MIT"
  8534. ],
  8535. "authors": [
  8536. {
  8537. "name": "Fabien Potencier",
  8538. "email": "fabien@symfony.com"
  8539. },
  8540. {
  8541. "name": "Symfony Community",
  8542. "homepage": "https://symfony.com/contributors"
  8543. }
  8544. ],
  8545. "description": "Defines an object-oriented layer for the HTTP specification",
  8546. "homepage": "https://symfony.com",
  8547. "support": {
  8548. "source": "https://github.com/symfony/http-foundation/tree/v4.4.49"
  8549. },
  8550. "funding": [
  8551. {
  8552. "url": "https://symfony.com/sponsor",
  8553. "type": "custom"
  8554. },
  8555. {
  8556. "url": "https://github.com/fabpot",
  8557. "type": "github"
  8558. },
  8559. {
  8560. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8561. "type": "tidelift"
  8562. }
  8563. ],
  8564. "time": "2022-11-04T16:17:57+00:00"
  8565. },
  8566. {
  8567. "name": "symfony/http-kernel",
  8568. "version": "v4.4.51",
  8569. "source": {
  8570. "type": "git",
  8571. "url": "https://github.com/symfony/http-kernel.git",
  8572. "reference": "ad8ab192cb619ff7285c95d28c69b36d718416c7"
  8573. },
  8574. "dist": {
  8575. "type": "zip",
  8576. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ad8ab192cb619ff7285c95d28c69b36d718416c7",
  8577. "reference": "ad8ab192cb619ff7285c95d28c69b36d718416c7",
  8578. "shasum": ""
  8579. },
  8580. "require": {
  8581. "php": ">=7.1.3",
  8582. "psr/log": "^1|^2",
  8583. "symfony/error-handler": "^4.4",
  8584. "symfony/event-dispatcher": "^4.4",
  8585. "symfony/http-client-contracts": "^1.1|^2",
  8586. "symfony/http-foundation": "^4.4.30|^5.3.7",
  8587. "symfony/polyfill-ctype": "^1.8",
  8588. "symfony/polyfill-php73": "^1.9",
  8589. "symfony/polyfill-php80": "^1.16"
  8590. },
  8591. "conflict": {
  8592. "symfony/browser-kit": "<4.3",
  8593. "symfony/config": "<3.4",
  8594. "symfony/console": ">=5",
  8595. "symfony/dependency-injection": "<4.3",
  8596. "symfony/translation": "<4.2",
  8597. "twig/twig": "<1.43|<2.13,>=2"
  8598. },
  8599. "provide": {
  8600. "psr/log-implementation": "1.0|2.0"
  8601. },
  8602. "require-dev": {
  8603. "psr/cache": "^1.0|^2.0|^3.0",
  8604. "symfony/browser-kit": "^4.3|^5.0",
  8605. "symfony/config": "^3.4|^4.0|^5.0",
  8606. "symfony/console": "^3.4|^4.0",
  8607. "symfony/css-selector": "^3.4|^4.0|^5.0",
  8608. "symfony/dependency-injection": "^4.3|^5.0",
  8609. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  8610. "symfony/expression-language": "^3.4|^4.0|^5.0",
  8611. "symfony/finder": "^3.4|^4.0|^5.0",
  8612. "symfony/process": "^3.4|^4.0|^5.0",
  8613. "symfony/routing": "^3.4|^4.0|^5.0",
  8614. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  8615. "symfony/templating": "^3.4|^4.0|^5.0",
  8616. "symfony/translation": "^4.2|^5.0",
  8617. "symfony/translation-contracts": "^1.1|^2",
  8618. "twig/twig": "^1.43|^2.13|^3.0.4"
  8619. },
  8620. "suggest": {
  8621. "symfony/browser-kit": "",
  8622. "symfony/config": "",
  8623. "symfony/console": "",
  8624. "symfony/dependency-injection": ""
  8625. },
  8626. "type": "library",
  8627. "autoload": {
  8628. "psr-4": {
  8629. "Symfony\\Component\\HttpKernel\\": ""
  8630. },
  8631. "exclude-from-classmap": [
  8632. "/Tests/"
  8633. ]
  8634. },
  8635. "notification-url": "https://packagist.org/downloads/",
  8636. "license": [
  8637. "MIT"
  8638. ],
  8639. "authors": [
  8640. {
  8641. "name": "Fabien Potencier",
  8642. "email": "fabien@symfony.com"
  8643. },
  8644. {
  8645. "name": "Symfony Community",
  8646. "homepage": "https://symfony.com/contributors"
  8647. }
  8648. ],
  8649. "description": "Provides a structured process for converting a Request into a Response",
  8650. "homepage": "https://symfony.com",
  8651. "support": {
  8652. "source": "https://github.com/symfony/http-kernel/tree/v4.4.51"
  8653. },
  8654. "funding": [
  8655. {
  8656. "url": "https://symfony.com/sponsor",
  8657. "type": "custom"
  8658. },
  8659. {
  8660. "url": "https://github.com/fabpot",
  8661. "type": "github"
  8662. },
  8663. {
  8664. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8665. "type": "tidelift"
  8666. }
  8667. ],
  8668. "time": "2023-11-10T13:31:29+00:00"
  8669. },
  8670. {
  8671. "name": "symfony/mime",
  8672. "version": "v5.4.13",
  8673. "source": {
  8674. "type": "git",
  8675. "url": "https://github.com/symfony/mime.git",
  8676. "reference": "bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd"
  8677. },
  8678. "dist": {
  8679. "type": "zip",
  8680. "url": "https://api.github.com/repos/symfony/mime/zipball/bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd",
  8681. "reference": "bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd",
  8682. "shasum": ""
  8683. },
  8684. "require": {
  8685. "php": ">=7.2.5",
  8686. "symfony/deprecation-contracts": "^2.1|^3",
  8687. "symfony/polyfill-intl-idn": "^1.10",
  8688. "symfony/polyfill-mbstring": "^1.0",
  8689. "symfony/polyfill-php80": "^1.16"
  8690. },
  8691. "conflict": {
  8692. "egulias/email-validator": "~3.0.0",
  8693. "phpdocumentor/reflection-docblock": "<3.2.2",
  8694. "phpdocumentor/type-resolver": "<1.4.0",
  8695. "symfony/mailer": "<4.4"
  8696. },
  8697. "require-dev": {
  8698. "egulias/email-validator": "^2.1.10|^3.1",
  8699. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  8700. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  8701. "symfony/property-access": "^4.4|^5.1|^6.0",
  8702. "symfony/property-info": "^4.4|^5.1|^6.0",
  8703. "symfony/serializer": "^5.2|^6.0"
  8704. },
  8705. "type": "library",
  8706. "autoload": {
  8707. "psr-4": {
  8708. "Symfony\\Component\\Mime\\": ""
  8709. },
  8710. "exclude-from-classmap": [
  8711. "/Tests/"
  8712. ]
  8713. },
  8714. "notification-url": "https://packagist.org/downloads/",
  8715. "license": [
  8716. "MIT"
  8717. ],
  8718. "authors": [
  8719. {
  8720. "name": "Fabien Potencier",
  8721. "email": "fabien@symfony.com"
  8722. },
  8723. {
  8724. "name": "Symfony Community",
  8725. "homepage": "https://symfony.com/contributors"
  8726. }
  8727. ],
  8728. "description": "Allows manipulating MIME messages",
  8729. "homepage": "https://symfony.com",
  8730. "keywords": [
  8731. "mime",
  8732. "mime-type"
  8733. ],
  8734. "support": {
  8735. "source": "https://github.com/symfony/mime/tree/v5.4.13"
  8736. },
  8737. "funding": [
  8738. {
  8739. "url": "https://symfony.com/sponsor",
  8740. "type": "custom"
  8741. },
  8742. {
  8743. "url": "https://github.com/fabpot",
  8744. "type": "github"
  8745. },
  8746. {
  8747. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8748. "type": "tidelift"
  8749. }
  8750. ],
  8751. "time": "2022-09-01T18:18:29+00:00"
  8752. },
  8753. {
  8754. "name": "symfony/polyfill-ctype",
  8755. "version": "v1.27.0",
  8756. "source": {
  8757. "type": "git",
  8758. "url": "https://github.com/symfony/polyfill-ctype.git",
  8759. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  8760. },
  8761. "dist": {
  8762. "type": "zip",
  8763. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  8764. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  8765. "shasum": ""
  8766. },
  8767. "require": {
  8768. "php": ">=7.1"
  8769. },
  8770. "provide": {
  8771. "ext-ctype": "*"
  8772. },
  8773. "suggest": {
  8774. "ext-ctype": "For best performance"
  8775. },
  8776. "type": "library",
  8777. "extra": {
  8778. "branch-alias": {
  8779. "dev-main": "1.27-dev"
  8780. },
  8781. "thanks": {
  8782. "name": "symfony/polyfill",
  8783. "url": "https://github.com/symfony/polyfill"
  8784. }
  8785. },
  8786. "autoload": {
  8787. "files": [
  8788. "bootstrap.php"
  8789. ],
  8790. "psr-4": {
  8791. "Symfony\\Polyfill\\Ctype\\": ""
  8792. }
  8793. },
  8794. "notification-url": "https://packagist.org/downloads/",
  8795. "license": [
  8796. "MIT"
  8797. ],
  8798. "authors": [
  8799. {
  8800. "name": "Gert de Pagter",
  8801. "email": "BackEndTea@gmail.com"
  8802. },
  8803. {
  8804. "name": "Symfony Community",
  8805. "homepage": "https://symfony.com/contributors"
  8806. }
  8807. ],
  8808. "description": "Symfony polyfill for ctype functions",
  8809. "homepage": "https://symfony.com",
  8810. "keywords": [
  8811. "compatibility",
  8812. "ctype",
  8813. "polyfill",
  8814. "portable"
  8815. ],
  8816. "support": {
  8817. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  8818. },
  8819. "funding": [
  8820. {
  8821. "url": "https://symfony.com/sponsor",
  8822. "type": "custom"
  8823. },
  8824. {
  8825. "url": "https://github.com/fabpot",
  8826. "type": "github"
  8827. },
  8828. {
  8829. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8830. "type": "tidelift"
  8831. }
  8832. ],
  8833. "time": "2022-11-03T14:55:06+00:00"
  8834. },
  8835. {
  8836. "name": "symfony/polyfill-iconv",
  8837. "version": "v1.27.0",
  8838. "source": {
  8839. "type": "git",
  8840. "url": "https://github.com/symfony/polyfill-iconv.git",
  8841. "reference": "927013f3aac555983a5059aada98e1907d842695"
  8842. },
  8843. "dist": {
  8844. "type": "zip",
  8845. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695",
  8846. "reference": "927013f3aac555983a5059aada98e1907d842695",
  8847. "shasum": ""
  8848. },
  8849. "require": {
  8850. "php": ">=7.1"
  8851. },
  8852. "provide": {
  8853. "ext-iconv": "*"
  8854. },
  8855. "suggest": {
  8856. "ext-iconv": "For best performance"
  8857. },
  8858. "type": "library",
  8859. "extra": {
  8860. "branch-alias": {
  8861. "dev-main": "1.27-dev"
  8862. },
  8863. "thanks": {
  8864. "name": "symfony/polyfill",
  8865. "url": "https://github.com/symfony/polyfill"
  8866. }
  8867. },
  8868. "autoload": {
  8869. "files": [
  8870. "bootstrap.php"
  8871. ],
  8872. "psr-4": {
  8873. "Symfony\\Polyfill\\Iconv\\": ""
  8874. }
  8875. },
  8876. "notification-url": "https://packagist.org/downloads/",
  8877. "license": [
  8878. "MIT"
  8879. ],
  8880. "authors": [
  8881. {
  8882. "name": "Nicolas Grekas",
  8883. "email": "p@tchwork.com"
  8884. },
  8885. {
  8886. "name": "Symfony Community",
  8887. "homepage": "https://symfony.com/contributors"
  8888. }
  8889. ],
  8890. "description": "Symfony polyfill for the Iconv extension",
  8891. "homepage": "https://symfony.com",
  8892. "keywords": [
  8893. "compatibility",
  8894. "iconv",
  8895. "polyfill",
  8896. "portable",
  8897. "shim"
  8898. ],
  8899. "support": {
  8900. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0"
  8901. },
  8902. "funding": [
  8903. {
  8904. "url": "https://symfony.com/sponsor",
  8905. "type": "custom"
  8906. },
  8907. {
  8908. "url": "https://github.com/fabpot",
  8909. "type": "github"
  8910. },
  8911. {
  8912. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8913. "type": "tidelift"
  8914. }
  8915. ],
  8916. "time": "2022-11-03T14:55:06+00:00"
  8917. },
  8918. {
  8919. "name": "symfony/polyfill-intl-idn",
  8920. "version": "v1.27.0",
  8921. "source": {
  8922. "type": "git",
  8923. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8924. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  8925. },
  8926. "dist": {
  8927. "type": "zip",
  8928. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  8929. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  8930. "shasum": ""
  8931. },
  8932. "require": {
  8933. "php": ">=7.1",
  8934. "symfony/polyfill-intl-normalizer": "^1.10",
  8935. "symfony/polyfill-php72": "^1.10"
  8936. },
  8937. "suggest": {
  8938. "ext-intl": "For best performance"
  8939. },
  8940. "type": "library",
  8941. "extra": {
  8942. "branch-alias": {
  8943. "dev-main": "1.27-dev"
  8944. },
  8945. "thanks": {
  8946. "name": "symfony/polyfill",
  8947. "url": "https://github.com/symfony/polyfill"
  8948. }
  8949. },
  8950. "autoload": {
  8951. "files": [
  8952. "bootstrap.php"
  8953. ],
  8954. "psr-4": {
  8955. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8956. }
  8957. },
  8958. "notification-url": "https://packagist.org/downloads/",
  8959. "license": [
  8960. "MIT"
  8961. ],
  8962. "authors": [
  8963. {
  8964. "name": "Laurent Bassin",
  8965. "email": "laurent@bassin.info"
  8966. },
  8967. {
  8968. "name": "Trevor Rowbotham",
  8969. "email": "trevor.rowbotham@pm.me"
  8970. },
  8971. {
  8972. "name": "Symfony Community",
  8973. "homepage": "https://symfony.com/contributors"
  8974. }
  8975. ],
  8976. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8977. "homepage": "https://symfony.com",
  8978. "keywords": [
  8979. "compatibility",
  8980. "idn",
  8981. "intl",
  8982. "polyfill",
  8983. "portable",
  8984. "shim"
  8985. ],
  8986. "support": {
  8987. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  8988. },
  8989. "funding": [
  8990. {
  8991. "url": "https://symfony.com/sponsor",
  8992. "type": "custom"
  8993. },
  8994. {
  8995. "url": "https://github.com/fabpot",
  8996. "type": "github"
  8997. },
  8998. {
  8999. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9000. "type": "tidelift"
  9001. }
  9002. ],
  9003. "time": "2022-11-03T14:55:06+00:00"
  9004. },
  9005. {
  9006. "name": "symfony/polyfill-intl-normalizer",
  9007. "version": "v1.27.0",
  9008. "source": {
  9009. "type": "git",
  9010. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  9011. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  9012. },
  9013. "dist": {
  9014. "type": "zip",
  9015. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  9016. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  9017. "shasum": ""
  9018. },
  9019. "require": {
  9020. "php": ">=7.1"
  9021. },
  9022. "suggest": {
  9023. "ext-intl": "For best performance"
  9024. },
  9025. "type": "library",
  9026. "extra": {
  9027. "branch-alias": {
  9028. "dev-main": "1.27-dev"
  9029. },
  9030. "thanks": {
  9031. "name": "symfony/polyfill",
  9032. "url": "https://github.com/symfony/polyfill"
  9033. }
  9034. },
  9035. "autoload": {
  9036. "files": [
  9037. "bootstrap.php"
  9038. ],
  9039. "psr-4": {
  9040. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  9041. },
  9042. "classmap": [
  9043. "Resources/stubs"
  9044. ]
  9045. },
  9046. "notification-url": "https://packagist.org/downloads/",
  9047. "license": [
  9048. "MIT"
  9049. ],
  9050. "authors": [
  9051. {
  9052. "name": "Nicolas Grekas",
  9053. "email": "p@tchwork.com"
  9054. },
  9055. {
  9056. "name": "Symfony Community",
  9057. "homepage": "https://symfony.com/contributors"
  9058. }
  9059. ],
  9060. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  9061. "homepage": "https://symfony.com",
  9062. "keywords": [
  9063. "compatibility",
  9064. "intl",
  9065. "normalizer",
  9066. "polyfill",
  9067. "portable",
  9068. "shim"
  9069. ],
  9070. "support": {
  9071. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  9072. },
  9073. "funding": [
  9074. {
  9075. "url": "https://symfony.com/sponsor",
  9076. "type": "custom"
  9077. },
  9078. {
  9079. "url": "https://github.com/fabpot",
  9080. "type": "github"
  9081. },
  9082. {
  9083. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9084. "type": "tidelift"
  9085. }
  9086. ],
  9087. "time": "2022-11-03T14:55:06+00:00"
  9088. },
  9089. {
  9090. "name": "symfony/polyfill-mbstring",
  9091. "version": "v1.27.0",
  9092. "source": {
  9093. "type": "git",
  9094. "url": "https://github.com/symfony/polyfill-mbstring.git",
  9095. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  9096. },
  9097. "dist": {
  9098. "type": "zip",
  9099. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  9100. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  9101. "shasum": ""
  9102. },
  9103. "require": {
  9104. "php": ">=7.1"
  9105. },
  9106. "provide": {
  9107. "ext-mbstring": "*"
  9108. },
  9109. "suggest": {
  9110. "ext-mbstring": "For best performance"
  9111. },
  9112. "type": "library",
  9113. "extra": {
  9114. "branch-alias": {
  9115. "dev-main": "1.27-dev"
  9116. },
  9117. "thanks": {
  9118. "name": "symfony/polyfill",
  9119. "url": "https://github.com/symfony/polyfill"
  9120. }
  9121. },
  9122. "autoload": {
  9123. "files": [
  9124. "bootstrap.php"
  9125. ],
  9126. "psr-4": {
  9127. "Symfony\\Polyfill\\Mbstring\\": ""
  9128. }
  9129. },
  9130. "notification-url": "https://packagist.org/downloads/",
  9131. "license": [
  9132. "MIT"
  9133. ],
  9134. "authors": [
  9135. {
  9136. "name": "Nicolas Grekas",
  9137. "email": "p@tchwork.com"
  9138. },
  9139. {
  9140. "name": "Symfony Community",
  9141. "homepage": "https://symfony.com/contributors"
  9142. }
  9143. ],
  9144. "description": "Symfony polyfill for the Mbstring extension",
  9145. "homepage": "https://symfony.com",
  9146. "keywords": [
  9147. "compatibility",
  9148. "mbstring",
  9149. "polyfill",
  9150. "portable",
  9151. "shim"
  9152. ],
  9153. "support": {
  9154. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  9155. },
  9156. "funding": [
  9157. {
  9158. "url": "https://symfony.com/sponsor",
  9159. "type": "custom"
  9160. },
  9161. {
  9162. "url": "https://github.com/fabpot",
  9163. "type": "github"
  9164. },
  9165. {
  9166. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9167. "type": "tidelift"
  9168. }
  9169. ],
  9170. "time": "2022-11-03T14:55:06+00:00"
  9171. },
  9172. {
  9173. "name": "symfony/polyfill-php72",
  9174. "version": "v1.31.0",
  9175. "source": {
  9176. "type": "git",
  9177. "url": "https://github.com/symfony/polyfill-php72.git",
  9178. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce"
  9179. },
  9180. "dist": {
  9181. "type": "zip",
  9182. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  9183. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  9184. "shasum": ""
  9185. },
  9186. "require": {
  9187. "php": ">=7.2"
  9188. },
  9189. "type": "metapackage",
  9190. "extra": {
  9191. "thanks": {
  9192. "name": "symfony/polyfill",
  9193. "url": "https://github.com/symfony/polyfill"
  9194. }
  9195. },
  9196. "notification-url": "https://packagist.org/downloads/",
  9197. "license": [
  9198. "MIT"
  9199. ],
  9200. "authors": [
  9201. {
  9202. "name": "Nicolas Grekas",
  9203. "email": "p@tchwork.com"
  9204. },
  9205. {
  9206. "name": "Symfony Community",
  9207. "homepage": "https://symfony.com/contributors"
  9208. }
  9209. ],
  9210. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  9211. "homepage": "https://symfony.com",
  9212. "keywords": [
  9213. "compatibility",
  9214. "polyfill",
  9215. "portable",
  9216. "shim"
  9217. ],
  9218. "support": {
  9219. "source": "https://github.com/symfony/polyfill-php72/tree/v1.31.0"
  9220. },
  9221. "funding": [
  9222. {
  9223. "url": "https://symfony.com/sponsor",
  9224. "type": "custom"
  9225. },
  9226. {
  9227. "url": "https://github.com/fabpot",
  9228. "type": "github"
  9229. },
  9230. {
  9231. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9232. "type": "tidelift"
  9233. }
  9234. ],
  9235. "time": "2024-09-09T11:45:10+00:00"
  9236. },
  9237. {
  9238. "name": "symfony/polyfill-php73",
  9239. "version": "v1.31.0",
  9240. "source": {
  9241. "type": "git",
  9242. "url": "https://github.com/symfony/polyfill-php73.git",
  9243. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb"
  9244. },
  9245. "dist": {
  9246. "type": "zip",
  9247. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  9248. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  9249. "shasum": ""
  9250. },
  9251. "require": {
  9252. "php": ">=7.2"
  9253. },
  9254. "type": "library",
  9255. "extra": {
  9256. "thanks": {
  9257. "name": "symfony/polyfill",
  9258. "url": "https://github.com/symfony/polyfill"
  9259. }
  9260. },
  9261. "autoload": {
  9262. "files": [
  9263. "bootstrap.php"
  9264. ],
  9265. "psr-4": {
  9266. "Symfony\\Polyfill\\Php73\\": ""
  9267. },
  9268. "classmap": [
  9269. "Resources/stubs"
  9270. ]
  9271. },
  9272. "notification-url": "https://packagist.org/downloads/",
  9273. "license": [
  9274. "MIT"
  9275. ],
  9276. "authors": [
  9277. {
  9278. "name": "Nicolas Grekas",
  9279. "email": "p@tchwork.com"
  9280. },
  9281. {
  9282. "name": "Symfony Community",
  9283. "homepage": "https://symfony.com/contributors"
  9284. }
  9285. ],
  9286. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  9287. "homepage": "https://symfony.com",
  9288. "keywords": [
  9289. "compatibility",
  9290. "polyfill",
  9291. "portable",
  9292. "shim"
  9293. ],
  9294. "support": {
  9295. "source": "https://github.com/symfony/polyfill-php73/tree/v1.31.0"
  9296. },
  9297. "funding": [
  9298. {
  9299. "url": "https://symfony.com/sponsor",
  9300. "type": "custom"
  9301. },
  9302. {
  9303. "url": "https://github.com/fabpot",
  9304. "type": "github"
  9305. },
  9306. {
  9307. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9308. "type": "tidelift"
  9309. }
  9310. ],
  9311. "time": "2024-09-09T11:45:10+00:00"
  9312. },
  9313. {
  9314. "name": "symfony/polyfill-php80",
  9315. "version": "v1.27.0",
  9316. "source": {
  9317. "type": "git",
  9318. "url": "https://github.com/symfony/polyfill-php80.git",
  9319. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  9320. },
  9321. "dist": {
  9322. "type": "zip",
  9323. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  9324. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  9325. "shasum": ""
  9326. },
  9327. "require": {
  9328. "php": ">=7.1"
  9329. },
  9330. "type": "library",
  9331. "extra": {
  9332. "branch-alias": {
  9333. "dev-main": "1.27-dev"
  9334. },
  9335. "thanks": {
  9336. "name": "symfony/polyfill",
  9337. "url": "https://github.com/symfony/polyfill"
  9338. }
  9339. },
  9340. "autoload": {
  9341. "files": [
  9342. "bootstrap.php"
  9343. ],
  9344. "psr-4": {
  9345. "Symfony\\Polyfill\\Php80\\": ""
  9346. },
  9347. "classmap": [
  9348. "Resources/stubs"
  9349. ]
  9350. },
  9351. "notification-url": "https://packagist.org/downloads/",
  9352. "license": [
  9353. "MIT"
  9354. ],
  9355. "authors": [
  9356. {
  9357. "name": "Ion Bazan",
  9358. "email": "ion.bazan@gmail.com"
  9359. },
  9360. {
  9361. "name": "Nicolas Grekas",
  9362. "email": "p@tchwork.com"
  9363. },
  9364. {
  9365. "name": "Symfony Community",
  9366. "homepage": "https://symfony.com/contributors"
  9367. }
  9368. ],
  9369. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  9370. "homepage": "https://symfony.com",
  9371. "keywords": [
  9372. "compatibility",
  9373. "polyfill",
  9374. "portable",
  9375. "shim"
  9376. ],
  9377. "support": {
  9378. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  9379. },
  9380. "funding": [
  9381. {
  9382. "url": "https://symfony.com/sponsor",
  9383. "type": "custom"
  9384. },
  9385. {
  9386. "url": "https://github.com/fabpot",
  9387. "type": "github"
  9388. },
  9389. {
  9390. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9391. "type": "tidelift"
  9392. }
  9393. ],
  9394. "time": "2022-11-03T14:55:06+00:00"
  9395. },
  9396. {
  9397. "name": "symfony/process",
  9398. "version": "v4.4.44",
  9399. "source": {
  9400. "type": "git",
  9401. "url": "https://github.com/symfony/process.git",
  9402. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2"
  9403. },
  9404. "dist": {
  9405. "type": "zip",
  9406. "url": "https://api.github.com/repos/symfony/process/zipball/5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  9407. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  9408. "shasum": ""
  9409. },
  9410. "require": {
  9411. "php": ">=7.1.3",
  9412. "symfony/polyfill-php80": "^1.16"
  9413. },
  9414. "type": "library",
  9415. "autoload": {
  9416. "psr-4": {
  9417. "Symfony\\Component\\Process\\": ""
  9418. },
  9419. "exclude-from-classmap": [
  9420. "/Tests/"
  9421. ]
  9422. },
  9423. "notification-url": "https://packagist.org/downloads/",
  9424. "license": [
  9425. "MIT"
  9426. ],
  9427. "authors": [
  9428. {
  9429. "name": "Fabien Potencier",
  9430. "email": "fabien@symfony.com"
  9431. },
  9432. {
  9433. "name": "Symfony Community",
  9434. "homepage": "https://symfony.com/contributors"
  9435. }
  9436. ],
  9437. "description": "Executes commands in sub-processes",
  9438. "homepage": "https://symfony.com",
  9439. "support": {
  9440. "source": "https://github.com/symfony/process/tree/v4.4.44"
  9441. },
  9442. "funding": [
  9443. {
  9444. "url": "https://symfony.com/sponsor",
  9445. "type": "custom"
  9446. },
  9447. {
  9448. "url": "https://github.com/fabpot",
  9449. "type": "github"
  9450. },
  9451. {
  9452. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9453. "type": "tidelift"
  9454. }
  9455. ],
  9456. "time": "2022-06-27T13:16:42+00:00"
  9457. },
  9458. {
  9459. "name": "symfony/psr-http-message-bridge",
  9460. "version": "v2.1.4",
  9461. "source": {
  9462. "type": "git",
  9463. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9464. "reference": "a125b93ef378c492e274f217874906fb9babdebb"
  9465. },
  9466. "dist": {
  9467. "type": "zip",
  9468. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a125b93ef378c492e274f217874906fb9babdebb",
  9469. "reference": "a125b93ef378c492e274f217874906fb9babdebb",
  9470. "shasum": ""
  9471. },
  9472. "require": {
  9473. "php": ">=7.1",
  9474. "psr/http-message": "^1.0",
  9475. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  9476. },
  9477. "require-dev": {
  9478. "nyholm/psr7": "^1.1",
  9479. "psr/log": "^1.1 || ^2 || ^3",
  9480. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  9481. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  9482. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  9483. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  9484. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  9485. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  9486. },
  9487. "suggest": {
  9488. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  9489. },
  9490. "type": "symfony-bridge",
  9491. "extra": {
  9492. "branch-alias": {
  9493. "dev-main": "2.1-dev"
  9494. }
  9495. },
  9496. "autoload": {
  9497. "psr-4": {
  9498. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9499. },
  9500. "exclude-from-classmap": [
  9501. "/Tests/"
  9502. ]
  9503. },
  9504. "notification-url": "https://packagist.org/downloads/",
  9505. "license": [
  9506. "MIT"
  9507. ],
  9508. "authors": [
  9509. {
  9510. "name": "Fabien Potencier",
  9511. "email": "fabien@symfony.com"
  9512. },
  9513. {
  9514. "name": "Symfony Community",
  9515. "homepage": "http://symfony.com/contributors"
  9516. }
  9517. ],
  9518. "description": "PSR HTTP message bridge",
  9519. "homepage": "http://symfony.com",
  9520. "keywords": [
  9521. "http",
  9522. "http-message",
  9523. "psr-17",
  9524. "psr-7"
  9525. ],
  9526. "support": {
  9527. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  9528. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.4"
  9529. },
  9530. "funding": [
  9531. {
  9532. "url": "https://symfony.com/sponsor",
  9533. "type": "custom"
  9534. },
  9535. {
  9536. "url": "https://github.com/fabpot",
  9537. "type": "github"
  9538. },
  9539. {
  9540. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9541. "type": "tidelift"
  9542. }
  9543. ],
  9544. "time": "2022-11-28T22:46:34+00:00"
  9545. },
  9546. {
  9547. "name": "symfony/routing",
  9548. "version": "v4.4.44",
  9549. "source": {
  9550. "type": "git",
  9551. "url": "https://github.com/symfony/routing.git",
  9552. "reference": "f7751fd8b60a07f3f349947a309b5bdfce22d6ae"
  9553. },
  9554. "dist": {
  9555. "type": "zip",
  9556. "url": "https://api.github.com/repos/symfony/routing/zipball/f7751fd8b60a07f3f349947a309b5bdfce22d6ae",
  9557. "reference": "f7751fd8b60a07f3f349947a309b5bdfce22d6ae",
  9558. "shasum": ""
  9559. },
  9560. "require": {
  9561. "php": ">=7.1.3",
  9562. "symfony/polyfill-php80": "^1.16"
  9563. },
  9564. "conflict": {
  9565. "symfony/config": "<4.2",
  9566. "symfony/dependency-injection": "<3.4",
  9567. "symfony/yaml": "<3.4"
  9568. },
  9569. "require-dev": {
  9570. "doctrine/annotations": "^1.10.4",
  9571. "psr/log": "^1|^2|^3",
  9572. "symfony/config": "^4.2|^5.0",
  9573. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  9574. "symfony/expression-language": "^3.4|^4.0|^5.0",
  9575. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  9576. "symfony/yaml": "^3.4|^4.0|^5.0"
  9577. },
  9578. "suggest": {
  9579. "doctrine/annotations": "For using the annotation loader",
  9580. "symfony/config": "For using the all-in-one router or any loader",
  9581. "symfony/expression-language": "For using expression matching",
  9582. "symfony/http-foundation": "For using a Symfony Request object",
  9583. "symfony/yaml": "For using the YAML loader"
  9584. },
  9585. "type": "library",
  9586. "autoload": {
  9587. "psr-4": {
  9588. "Symfony\\Component\\Routing\\": ""
  9589. },
  9590. "exclude-from-classmap": [
  9591. "/Tests/"
  9592. ]
  9593. },
  9594. "notification-url": "https://packagist.org/downloads/",
  9595. "license": [
  9596. "MIT"
  9597. ],
  9598. "authors": [
  9599. {
  9600. "name": "Fabien Potencier",
  9601. "email": "fabien@symfony.com"
  9602. },
  9603. {
  9604. "name": "Symfony Community",
  9605. "homepage": "https://symfony.com/contributors"
  9606. }
  9607. ],
  9608. "description": "Maps an HTTP request to a set of configuration variables",
  9609. "homepage": "https://symfony.com",
  9610. "keywords": [
  9611. "router",
  9612. "routing",
  9613. "uri",
  9614. "url"
  9615. ],
  9616. "support": {
  9617. "source": "https://github.com/symfony/routing/tree/v4.4.44"
  9618. },
  9619. "funding": [
  9620. {
  9621. "url": "https://symfony.com/sponsor",
  9622. "type": "custom"
  9623. },
  9624. {
  9625. "url": "https://github.com/fabpot",
  9626. "type": "github"
  9627. },
  9628. {
  9629. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9630. "type": "tidelift"
  9631. }
  9632. ],
  9633. "time": "2022-07-20T09:59:04+00:00"
  9634. },
  9635. {
  9636. "name": "symfony/serializer",
  9637. "version": "v4.4.47",
  9638. "source": {
  9639. "type": "git",
  9640. "url": "https://github.com/symfony/serializer.git",
  9641. "reference": "6e01d63c55657930a6de03d6e36aae50af98888d"
  9642. },
  9643. "dist": {
  9644. "type": "zip",
  9645. "url": "https://api.github.com/repos/symfony/serializer/zipball/6e01d63c55657930a6de03d6e36aae50af98888d",
  9646. "reference": "6e01d63c55657930a6de03d6e36aae50af98888d",
  9647. "shasum": ""
  9648. },
  9649. "require": {
  9650. "php": ">=7.1.3",
  9651. "symfony/polyfill-ctype": "~1.8",
  9652. "symfony/polyfill-php80": "^1.16"
  9653. },
  9654. "conflict": {
  9655. "phpdocumentor/reflection-docblock": "<3.0|>=3.2.0,<3.2.2",
  9656. "phpdocumentor/type-resolver": "<0.3.0|1.3.*",
  9657. "symfony/dependency-injection": "<3.4",
  9658. "symfony/property-access": "<3.4",
  9659. "symfony/property-info": "<3.4",
  9660. "symfony/yaml": "<3.4"
  9661. },
  9662. "require-dev": {
  9663. "doctrine/annotations": "^1.10.4",
  9664. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  9665. "symfony/cache": "^3.4|^4.0|^5.0",
  9666. "symfony/config": "^3.4|^4.0|^5.0",
  9667. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  9668. "symfony/error-handler": "^4.4|^5.0",
  9669. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  9670. "symfony/mime": "^4.4|^5.0",
  9671. "symfony/property-access": "^4.4.36|^5.3.13",
  9672. "symfony/property-info": "^3.4.13|~4.0|^5.0",
  9673. "symfony/validator": "^3.4|^4.0|^5.0",
  9674. "symfony/yaml": "^3.4|^4.0|^5.0"
  9675. },
  9676. "suggest": {
  9677. "doctrine/annotations": "For using the annotation mapping.",
  9678. "psr/cache-implementation": "For using the metadata cache.",
  9679. "symfony/config": "For using the XML mapping loader.",
  9680. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  9681. "symfony/property-access": "For using the ObjectNormalizer.",
  9682. "symfony/property-info": "To deserialize relations.",
  9683. "symfony/yaml": "For using the default YAML mapping loader."
  9684. },
  9685. "type": "library",
  9686. "autoload": {
  9687. "psr-4": {
  9688. "Symfony\\Component\\Serializer\\": ""
  9689. },
  9690. "exclude-from-classmap": [
  9691. "/Tests/"
  9692. ]
  9693. },
  9694. "notification-url": "https://packagist.org/downloads/",
  9695. "license": [
  9696. "MIT"
  9697. ],
  9698. "authors": [
  9699. {
  9700. "name": "Fabien Potencier",
  9701. "email": "fabien@symfony.com"
  9702. },
  9703. {
  9704. "name": "Symfony Community",
  9705. "homepage": "https://symfony.com/contributors"
  9706. }
  9707. ],
  9708. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  9709. "homepage": "https://symfony.com",
  9710. "support": {
  9711. "source": "https://github.com/symfony/serializer/tree/v4.4.47"
  9712. },
  9713. "funding": [
  9714. {
  9715. "url": "https://symfony.com/sponsor",
  9716. "type": "custom"
  9717. },
  9718. {
  9719. "url": "https://github.com/fabpot",
  9720. "type": "github"
  9721. },
  9722. {
  9723. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9724. "type": "tidelift"
  9725. }
  9726. ],
  9727. "time": "2022-09-19T08:38:33+00:00"
  9728. },
  9729. {
  9730. "name": "symfony/service-contracts",
  9731. "version": "v2.5.3",
  9732. "source": {
  9733. "type": "git",
  9734. "url": "https://github.com/symfony/service-contracts.git",
  9735. "reference": "a2329596ddc8fd568900e3fc76cba42489ecc7f3"
  9736. },
  9737. "dist": {
  9738. "type": "zip",
  9739. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/a2329596ddc8fd568900e3fc76cba42489ecc7f3",
  9740. "reference": "a2329596ddc8fd568900e3fc76cba42489ecc7f3",
  9741. "shasum": ""
  9742. },
  9743. "require": {
  9744. "php": ">=7.2.5",
  9745. "psr/container": "^1.1",
  9746. "symfony/deprecation-contracts": "^2.1|^3"
  9747. },
  9748. "conflict": {
  9749. "ext-psr": "<1.1|>=2"
  9750. },
  9751. "suggest": {
  9752. "symfony/service-implementation": ""
  9753. },
  9754. "type": "library",
  9755. "extra": {
  9756. "branch-alias": {
  9757. "dev-main": "2.5-dev"
  9758. },
  9759. "thanks": {
  9760. "name": "symfony/contracts",
  9761. "url": "https://github.com/symfony/contracts"
  9762. }
  9763. },
  9764. "autoload": {
  9765. "psr-4": {
  9766. "Symfony\\Contracts\\Service\\": ""
  9767. }
  9768. },
  9769. "notification-url": "https://packagist.org/downloads/",
  9770. "license": [
  9771. "MIT"
  9772. ],
  9773. "authors": [
  9774. {
  9775. "name": "Nicolas Grekas",
  9776. "email": "p@tchwork.com"
  9777. },
  9778. {
  9779. "name": "Symfony Community",
  9780. "homepage": "https://symfony.com/contributors"
  9781. }
  9782. ],
  9783. "description": "Generic abstractions related to writing services",
  9784. "homepage": "https://symfony.com",
  9785. "keywords": [
  9786. "abstractions",
  9787. "contracts",
  9788. "decoupling",
  9789. "interfaces",
  9790. "interoperability",
  9791. "standards"
  9792. ],
  9793. "support": {
  9794. "source": "https://github.com/symfony/service-contracts/tree/v2.5.3"
  9795. },
  9796. "funding": [
  9797. {
  9798. "url": "https://symfony.com/sponsor",
  9799. "type": "custom"
  9800. },
  9801. {
  9802. "url": "https://github.com/fabpot",
  9803. "type": "github"
  9804. },
  9805. {
  9806. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9807. "type": "tidelift"
  9808. }
  9809. ],
  9810. "time": "2023-04-21T15:04:16+00:00"
  9811. },
  9812. {
  9813. "name": "symfony/translation",
  9814. "version": "v4.4.47",
  9815. "source": {
  9816. "type": "git",
  9817. "url": "https://github.com/symfony/translation.git",
  9818. "reference": "45036b1d53accc48fe9bab71ccd86d57eba0dd94"
  9819. },
  9820. "dist": {
  9821. "type": "zip",
  9822. "url": "https://api.github.com/repos/symfony/translation/zipball/45036b1d53accc48fe9bab71ccd86d57eba0dd94",
  9823. "reference": "45036b1d53accc48fe9bab71ccd86d57eba0dd94",
  9824. "shasum": ""
  9825. },
  9826. "require": {
  9827. "php": ">=7.1.3",
  9828. "symfony/polyfill-mbstring": "~1.0",
  9829. "symfony/polyfill-php80": "^1.16",
  9830. "symfony/translation-contracts": "^1.1.6|^2"
  9831. },
  9832. "conflict": {
  9833. "symfony/config": "<3.4",
  9834. "symfony/dependency-injection": "<3.4",
  9835. "symfony/http-kernel": "<4.4",
  9836. "symfony/yaml": "<3.4"
  9837. },
  9838. "provide": {
  9839. "symfony/translation-implementation": "1.0|2.0"
  9840. },
  9841. "require-dev": {
  9842. "psr/log": "^1|^2|^3",
  9843. "symfony/config": "^3.4|^4.0|^5.0",
  9844. "symfony/console": "^3.4|^4.0|^5.0",
  9845. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  9846. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  9847. "symfony/http-kernel": "^4.4",
  9848. "symfony/intl": "^3.4|^4.0|^5.0",
  9849. "symfony/service-contracts": "^1.1.2|^2",
  9850. "symfony/yaml": "^3.4|^4.0|^5.0"
  9851. },
  9852. "suggest": {
  9853. "psr/log-implementation": "To use logging capability in translator",
  9854. "symfony/config": "",
  9855. "symfony/yaml": ""
  9856. },
  9857. "type": "library",
  9858. "autoload": {
  9859. "psr-4": {
  9860. "Symfony\\Component\\Translation\\": ""
  9861. },
  9862. "exclude-from-classmap": [
  9863. "/Tests/"
  9864. ]
  9865. },
  9866. "notification-url": "https://packagist.org/downloads/",
  9867. "license": [
  9868. "MIT"
  9869. ],
  9870. "authors": [
  9871. {
  9872. "name": "Fabien Potencier",
  9873. "email": "fabien@symfony.com"
  9874. },
  9875. {
  9876. "name": "Symfony Community",
  9877. "homepage": "https://symfony.com/contributors"
  9878. }
  9879. ],
  9880. "description": "Provides tools to internationalize your application",
  9881. "homepage": "https://symfony.com",
  9882. "support": {
  9883. "source": "https://github.com/symfony/translation/tree/v4.4.47"
  9884. },
  9885. "funding": [
  9886. {
  9887. "url": "https://symfony.com/sponsor",
  9888. "type": "custom"
  9889. },
  9890. {
  9891. "url": "https://github.com/fabpot",
  9892. "type": "github"
  9893. },
  9894. {
  9895. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9896. "type": "tidelift"
  9897. }
  9898. ],
  9899. "time": "2022-10-03T15:15:11+00:00"
  9900. },
  9901. {
  9902. "name": "symfony/translation-contracts",
  9903. "version": "v2.5.3",
  9904. "source": {
  9905. "type": "git",
  9906. "url": "https://github.com/symfony/translation-contracts.git",
  9907. "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664"
  9908. },
  9909. "dist": {
  9910. "type": "zip",
  9911. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b0073a77ac0b7ea55131020e87b1e3af540f4664",
  9912. "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664",
  9913. "shasum": ""
  9914. },
  9915. "require": {
  9916. "php": ">=7.2.5"
  9917. },
  9918. "suggest": {
  9919. "symfony/translation-implementation": ""
  9920. },
  9921. "type": "library",
  9922. "extra": {
  9923. "branch-alias": {
  9924. "dev-main": "2.5-dev"
  9925. },
  9926. "thanks": {
  9927. "name": "symfony/contracts",
  9928. "url": "https://github.com/symfony/contracts"
  9929. }
  9930. },
  9931. "autoload": {
  9932. "psr-4": {
  9933. "Symfony\\Contracts\\Translation\\": ""
  9934. }
  9935. },
  9936. "notification-url": "https://packagist.org/downloads/",
  9937. "license": [
  9938. "MIT"
  9939. ],
  9940. "authors": [
  9941. {
  9942. "name": "Nicolas Grekas",
  9943. "email": "p@tchwork.com"
  9944. },
  9945. {
  9946. "name": "Symfony Community",
  9947. "homepage": "https://symfony.com/contributors"
  9948. }
  9949. ],
  9950. "description": "Generic abstractions related to translation",
  9951. "homepage": "https://symfony.com",
  9952. "keywords": [
  9953. "abstractions",
  9954. "contracts",
  9955. "decoupling",
  9956. "interfaces",
  9957. "interoperability",
  9958. "standards"
  9959. ],
  9960. "support": {
  9961. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.3"
  9962. },
  9963. "funding": [
  9964. {
  9965. "url": "https://symfony.com/sponsor",
  9966. "type": "custom"
  9967. },
  9968. {
  9969. "url": "https://github.com/fabpot",
  9970. "type": "github"
  9971. },
  9972. {
  9973. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9974. "type": "tidelift"
  9975. }
  9976. ],
  9977. "time": "2024-01-23T13:51:25+00:00"
  9978. },
  9979. {
  9980. "name": "symfony/validator",
  9981. "version": "v4.4.48",
  9982. "source": {
  9983. "type": "git",
  9984. "url": "https://github.com/symfony/validator.git",
  9985. "reference": "54781a4c41efbd283b779110bf8ae7f263737775"
  9986. },
  9987. "dist": {
  9988. "type": "zip",
  9989. "url": "https://api.github.com/repos/symfony/validator/zipball/54781a4c41efbd283b779110bf8ae7f263737775",
  9990. "reference": "54781a4c41efbd283b779110bf8ae7f263737775",
  9991. "shasum": ""
  9992. },
  9993. "require": {
  9994. "php": ">=7.1.3",
  9995. "symfony/polyfill-ctype": "~1.8",
  9996. "symfony/polyfill-mbstring": "~1.0",
  9997. "symfony/polyfill-php80": "^1.16",
  9998. "symfony/translation-contracts": "^1.1|^2"
  9999. },
  10000. "conflict": {
  10001. "doctrine/lexer": "<1.1",
  10002. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  10003. "symfony/dependency-injection": "<3.4",
  10004. "symfony/http-kernel": "<4.4",
  10005. "symfony/intl": "<4.3",
  10006. "symfony/translation": ">=5.0",
  10007. "symfony/yaml": "<3.4"
  10008. },
  10009. "require-dev": {
  10010. "doctrine/annotations": "^1.10.4",
  10011. "doctrine/cache": "^1.0|^2.0",
  10012. "egulias/email-validator": "^2.1.10|^3",
  10013. "symfony/cache": "^3.4|^4.0|^5.0",
  10014. "symfony/config": "^3.4|^4.0|^5.0",
  10015. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  10016. "symfony/expression-language": "^3.4|^4.0|^5.0",
  10017. "symfony/http-client": "^4.3|^5.0",
  10018. "symfony/http-foundation": "^4.1|^5.0",
  10019. "symfony/http-kernel": "^4.4",
  10020. "symfony/intl": "^4.3|^5.0",
  10021. "symfony/mime": "^4.4|^5.0",
  10022. "symfony/property-access": "^3.4|^4.0|^5.0",
  10023. "symfony/property-info": "^3.4|^4.0|^5.0",
  10024. "symfony/translation": "^4.2",
  10025. "symfony/yaml": "^3.4|^4.0|^5.0"
  10026. },
  10027. "suggest": {
  10028. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  10029. "doctrine/cache": "For using the default cached annotation reader.",
  10030. "egulias/email-validator": "Strict (RFC compliant) email validation",
  10031. "psr/cache-implementation": "For using the mapping cache.",
  10032. "symfony/config": "",
  10033. "symfony/expression-language": "For using the Expression validator",
  10034. "symfony/http-foundation": "",
  10035. "symfony/intl": "",
  10036. "symfony/property-access": "For accessing properties within comparison constraints",
  10037. "symfony/property-info": "To automatically add NotNull and Type constraints",
  10038. "symfony/translation": "For translating validation errors.",
  10039. "symfony/yaml": ""
  10040. },
  10041. "type": "library",
  10042. "autoload": {
  10043. "psr-4": {
  10044. "Symfony\\Component\\Validator\\": ""
  10045. },
  10046. "exclude-from-classmap": [
  10047. "/Tests/"
  10048. ]
  10049. },
  10050. "notification-url": "https://packagist.org/downloads/",
  10051. "license": [
  10052. "MIT"
  10053. ],
  10054. "authors": [
  10055. {
  10056. "name": "Fabien Potencier",
  10057. "email": "fabien@symfony.com"
  10058. },
  10059. {
  10060. "name": "Symfony Community",
  10061. "homepage": "https://symfony.com/contributors"
  10062. }
  10063. ],
  10064. "description": "Provides tools to validate values",
  10065. "homepage": "https://symfony.com",
  10066. "support": {
  10067. "source": "https://github.com/symfony/validator/tree/v4.4.48"
  10068. },
  10069. "funding": [
  10070. {
  10071. "url": "https://symfony.com/sponsor",
  10072. "type": "custom"
  10073. },
  10074. {
  10075. "url": "https://github.com/fabpot",
  10076. "type": "github"
  10077. },
  10078. {
  10079. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10080. "type": "tidelift"
  10081. }
  10082. ],
  10083. "time": "2022-10-25T13:54:11+00:00"
  10084. },
  10085. {
  10086. "name": "symfony/var-dumper",
  10087. "version": "v5.4.43",
  10088. "source": {
  10089. "type": "git",
  10090. "url": "https://github.com/symfony/var-dumper.git",
  10091. "reference": "6be6a6a8af4818564e3726fc65cf936f34743cef"
  10092. },
  10093. "dist": {
  10094. "type": "zip",
  10095. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6be6a6a8af4818564e3726fc65cf936f34743cef",
  10096. "reference": "6be6a6a8af4818564e3726fc65cf936f34743cef",
  10097. "shasum": ""
  10098. },
  10099. "require": {
  10100. "php": ">=7.2.5",
  10101. "symfony/polyfill-mbstring": "~1.0",
  10102. "symfony/polyfill-php80": "^1.16"
  10103. },
  10104. "conflict": {
  10105. "symfony/console": "<4.4"
  10106. },
  10107. "require-dev": {
  10108. "ext-iconv": "*",
  10109. "symfony/console": "^4.4|^5.0|^6.0",
  10110. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  10111. "symfony/process": "^4.4|^5.0|^6.0",
  10112. "symfony/uid": "^5.1|^6.0",
  10113. "twig/twig": "^2.13|^3.0.4"
  10114. },
  10115. "suggest": {
  10116. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  10117. "ext-intl": "To show region name in time zone dump",
  10118. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  10119. },
  10120. "bin": [
  10121. "Resources/bin/var-dump-server"
  10122. ],
  10123. "type": "library",
  10124. "autoload": {
  10125. "files": [
  10126. "Resources/functions/dump.php"
  10127. ],
  10128. "psr-4": {
  10129. "Symfony\\Component\\VarDumper\\": ""
  10130. },
  10131. "exclude-from-classmap": [
  10132. "/Tests/"
  10133. ]
  10134. },
  10135. "notification-url": "https://packagist.org/downloads/",
  10136. "license": [
  10137. "MIT"
  10138. ],
  10139. "authors": [
  10140. {
  10141. "name": "Nicolas Grekas",
  10142. "email": "p@tchwork.com"
  10143. },
  10144. {
  10145. "name": "Symfony Community",
  10146. "homepage": "https://symfony.com/contributors"
  10147. }
  10148. ],
  10149. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  10150. "homepage": "https://symfony.com",
  10151. "keywords": [
  10152. "debug",
  10153. "dump"
  10154. ],
  10155. "support": {
  10156. "source": "https://github.com/symfony/var-dumper/tree/v5.4.43"
  10157. },
  10158. "funding": [
  10159. {
  10160. "url": "https://symfony.com/sponsor",
  10161. "type": "custom"
  10162. },
  10163. {
  10164. "url": "https://github.com/fabpot",
  10165. "type": "github"
  10166. },
  10167. {
  10168. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10169. "type": "tidelift"
  10170. }
  10171. ],
  10172. "time": "2024-08-30T16:01:46+00:00"
  10173. },
  10174. {
  10175. "name": "symfony/yaml",
  10176. "version": "v4.4.45",
  10177. "source": {
  10178. "type": "git",
  10179. "url": "https://github.com/symfony/yaml.git",
  10180. "reference": "aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d"
  10181. },
  10182. "dist": {
  10183. "type": "zip",
  10184. "url": "https://api.github.com/repos/symfony/yaml/zipball/aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d",
  10185. "reference": "aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d",
  10186. "shasum": ""
  10187. },
  10188. "require": {
  10189. "php": ">=7.1.3",
  10190. "symfony/polyfill-ctype": "~1.8"
  10191. },
  10192. "conflict": {
  10193. "symfony/console": "<3.4"
  10194. },
  10195. "require-dev": {
  10196. "symfony/console": "^3.4|^4.0|^5.0"
  10197. },
  10198. "suggest": {
  10199. "symfony/console": "For validating YAML files using the lint command"
  10200. },
  10201. "type": "library",
  10202. "autoload": {
  10203. "psr-4": {
  10204. "Symfony\\Component\\Yaml\\": ""
  10205. },
  10206. "exclude-from-classmap": [
  10207. "/Tests/"
  10208. ]
  10209. },
  10210. "notification-url": "https://packagist.org/downloads/",
  10211. "license": [
  10212. "MIT"
  10213. ],
  10214. "authors": [
  10215. {
  10216. "name": "Fabien Potencier",
  10217. "email": "fabien@symfony.com"
  10218. },
  10219. {
  10220. "name": "Symfony Community",
  10221. "homepage": "https://symfony.com/contributors"
  10222. }
  10223. ],
  10224. "description": "Loads and dumps YAML files",
  10225. "homepage": "https://symfony.com",
  10226. "support": {
  10227. "source": "https://github.com/symfony/yaml/tree/v4.4.45"
  10228. },
  10229. "funding": [
  10230. {
  10231. "url": "https://symfony.com/sponsor",
  10232. "type": "custom"
  10233. },
  10234. {
  10235. "url": "https://github.com/fabpot",
  10236. "type": "github"
  10237. },
  10238. {
  10239. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10240. "type": "tidelift"
  10241. }
  10242. ],
  10243. "time": "2022-08-02T15:47:23+00:00"
  10244. },
  10245. {
  10246. "name": "twig/twig",
  10247. "version": "v2.15.6",
  10248. "source": {
  10249. "type": "git",
  10250. "url": "https://github.com/twigphp/Twig.git",
  10251. "reference": "ad637405a828601a56f32ccab9a85541c4b66c9d"
  10252. },
  10253. "dist": {
  10254. "type": "zip",
  10255. "url": "https://api.github.com/repos/twigphp/Twig/zipball/ad637405a828601a56f32ccab9a85541c4b66c9d",
  10256. "reference": "ad637405a828601a56f32ccab9a85541c4b66c9d",
  10257. "shasum": ""
  10258. },
  10259. "require": {
  10260. "php": ">=7.1.3",
  10261. "symfony/polyfill-ctype": "^1.8",
  10262. "symfony/polyfill-mbstring": "^1.3",
  10263. "symfony/polyfill-php72": "^1.8"
  10264. },
  10265. "require-dev": {
  10266. "psr/container": "^1.0",
  10267. "symfony/phpunit-bridge": "^5.4.9|^6.3"
  10268. },
  10269. "type": "library",
  10270. "extra": {
  10271. "branch-alias": {
  10272. "dev-master": "2.15-dev"
  10273. }
  10274. },
  10275. "autoload": {
  10276. "psr-0": {
  10277. "Twig_": "lib/"
  10278. },
  10279. "psr-4": {
  10280. "Twig\\": "src/"
  10281. }
  10282. },
  10283. "notification-url": "https://packagist.org/downloads/",
  10284. "license": [
  10285. "BSD-3-Clause"
  10286. ],
  10287. "authors": [
  10288. {
  10289. "name": "Fabien Potencier",
  10290. "email": "fabien@symfony.com",
  10291. "homepage": "http://fabien.potencier.org",
  10292. "role": "Lead Developer"
  10293. },
  10294. {
  10295. "name": "Twig Team",
  10296. "role": "Contributors"
  10297. },
  10298. {
  10299. "name": "Armin Ronacher",
  10300. "email": "armin.ronacher@active-4.com",
  10301. "role": "Project Founder"
  10302. }
  10303. ],
  10304. "description": "Twig, the flexible, fast, and secure template language for PHP",
  10305. "homepage": "https://twig.symfony.com",
  10306. "keywords": [
  10307. "templating"
  10308. ],
  10309. "support": {
  10310. "issues": "https://github.com/twigphp/Twig/issues",
  10311. "source": "https://github.com/twigphp/Twig/tree/v2.15.6"
  10312. },
  10313. "funding": [
  10314. {
  10315. "url": "https://github.com/fabpot",
  10316. "type": "github"
  10317. },
  10318. {
  10319. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  10320. "type": "tidelift"
  10321. }
  10322. ],
  10323. "time": "2023-11-21T17:34:48+00:00"
  10324. },
  10325. {
  10326. "name": "typo3/phar-stream-wrapper",
  10327. "version": "v3.1.7",
  10328. "source": {
  10329. "type": "git",
  10330. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  10331. "reference": "5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c"
  10332. },
  10333. "dist": {
  10334. "type": "zip",
  10335. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c",
  10336. "reference": "5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c",
  10337. "shasum": ""
  10338. },
  10339. "require": {
  10340. "ext-json": "*",
  10341. "php": "^7.0 || ^8.0"
  10342. },
  10343. "require-dev": {
  10344. "ext-xdebug": "*",
  10345. "phpspec/prophecy": "^1.10",
  10346. "symfony/phpunit-bridge": "^5.1"
  10347. },
  10348. "suggest": {
  10349. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  10350. },
  10351. "type": "library",
  10352. "extra": {
  10353. "branch-alias": {
  10354. "dev-master": "v3.x-dev"
  10355. }
  10356. },
  10357. "autoload": {
  10358. "psr-4": {
  10359. "TYPO3\\PharStreamWrapper\\": "src/"
  10360. }
  10361. },
  10362. "notification-url": "https://packagist.org/downloads/",
  10363. "license": [
  10364. "MIT"
  10365. ],
  10366. "description": "Interceptors for PHP's native phar:// stream handling",
  10367. "homepage": "https://typo3.org/",
  10368. "keywords": [
  10369. "phar",
  10370. "php",
  10371. "security",
  10372. "stream-wrapper"
  10373. ],
  10374. "support": {
  10375. "issues": "https://github.com/TYPO3/phar-stream-wrapper/issues",
  10376. "source": "https://github.com/TYPO3/phar-stream-wrapper/tree/v3.1.7"
  10377. },
  10378. "time": "2021-09-20T19:19:13+00:00"
  10379. },
  10380. {
  10381. "name": "vlucas/phpdotenv",
  10382. "version": "v2.6.9",
  10383. "source": {
  10384. "type": "git",
  10385. "url": "https://github.com/vlucas/phpdotenv.git",
  10386. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141"
  10387. },
  10388. "dist": {
  10389. "type": "zip",
  10390. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  10391. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  10392. "shasum": ""
  10393. },
  10394. "require": {
  10395. "php": "^5.3.9 || ^7.0 || ^8.0",
  10396. "symfony/polyfill-ctype": "^1.17"
  10397. },
  10398. "require-dev": {
  10399. "ext-filter": "*",
  10400. "ext-pcre": "*",
  10401. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21"
  10402. },
  10403. "suggest": {
  10404. "ext-filter": "Required to use the boolean validator.",
  10405. "ext-pcre": "Required to use most of the library."
  10406. },
  10407. "type": "library",
  10408. "extra": {
  10409. "branch-alias": {
  10410. "dev-master": "2.6-dev"
  10411. }
  10412. },
  10413. "autoload": {
  10414. "psr-4": {
  10415. "Dotenv\\": "src/"
  10416. }
  10417. },
  10418. "notification-url": "https://packagist.org/downloads/",
  10419. "license": [
  10420. "BSD-3-Clause"
  10421. ],
  10422. "authors": [
  10423. {
  10424. "name": "Graham Campbell",
  10425. "email": "hello@gjcampbell.co.uk",
  10426. "homepage": "https://github.com/GrahamCampbell"
  10427. },
  10428. {
  10429. "name": "Vance Lucas",
  10430. "email": "vance@vancelucas.com",
  10431. "homepage": "https://github.com/vlucas"
  10432. }
  10433. ],
  10434. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10435. "keywords": [
  10436. "dotenv",
  10437. "env",
  10438. "environment"
  10439. ],
  10440. "support": {
  10441. "issues": "https://github.com/vlucas/phpdotenv/issues",
  10442. "source": "https://github.com/vlucas/phpdotenv/tree/v2.6.9"
  10443. },
  10444. "funding": [
  10445. {
  10446. "url": "https://github.com/GrahamCampbell",
  10447. "type": "github"
  10448. },
  10449. {
  10450. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  10451. "type": "tidelift"
  10452. }
  10453. ],
  10454. "time": "2021-12-12T22:59:22+00:00"
  10455. },
  10456. {
  10457. "name": "webflo/drupal-finder",
  10458. "version": "1.3.1",
  10459. "source": {
  10460. "type": "git",
  10461. "url": "https://github.com/webflo/drupal-finder.git",
  10462. "reference": "73045060b0894c77962a10cff047f72872d8810c"
  10463. },
  10464. "dist": {
  10465. "type": "zip",
  10466. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/73045060b0894c77962a10cff047f72872d8810c",
  10467. "reference": "73045060b0894c77962a10cff047f72872d8810c",
  10468. "shasum": ""
  10469. },
  10470. "require": {
  10471. "composer-runtime-api": "^2.2",
  10472. "php": ">=8.1"
  10473. },
  10474. "require-dev": {
  10475. "mikey179/vfsstream": "^1.6",
  10476. "phpunit/phpunit": "^10.4",
  10477. "symfony/process": "^6.4"
  10478. },
  10479. "type": "library",
  10480. "autoload": {
  10481. "psr-4": {
  10482. "DrupalFinder\\": "src/"
  10483. }
  10484. },
  10485. "notification-url": "https://packagist.org/downloads/",
  10486. "license": [
  10487. "GPL-2.0-or-later"
  10488. ],
  10489. "authors": [
  10490. {
  10491. "name": "Florian Weber",
  10492. "email": "florian@webflo.org"
  10493. }
  10494. ],
  10495. "description": "Helper class to locate a Drupal installation.",
  10496. "support": {
  10497. "issues": "https://github.com/webflo/drupal-finder/issues",
  10498. "source": "https://github.com/webflo/drupal-finder/tree/1.3.1"
  10499. },
  10500. "time": "2024-06-28T13:45:36+00:00"
  10501. },
  10502. {
  10503. "name": "webmozart/assert",
  10504. "version": "1.11.0",
  10505. "source": {
  10506. "type": "git",
  10507. "url": "https://github.com/webmozarts/assert.git",
  10508. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  10509. },
  10510. "dist": {
  10511. "type": "zip",
  10512. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10513. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10514. "shasum": ""
  10515. },
  10516. "require": {
  10517. "ext-ctype": "*",
  10518. "php": "^7.2 || ^8.0"
  10519. },
  10520. "conflict": {
  10521. "phpstan/phpstan": "<0.12.20",
  10522. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10523. },
  10524. "require-dev": {
  10525. "phpunit/phpunit": "^8.5.13"
  10526. },
  10527. "type": "library",
  10528. "extra": {
  10529. "branch-alias": {
  10530. "dev-master": "1.10-dev"
  10531. }
  10532. },
  10533. "autoload": {
  10534. "psr-4": {
  10535. "Webmozart\\Assert\\": "src/"
  10536. }
  10537. },
  10538. "notification-url": "https://packagist.org/downloads/",
  10539. "license": [
  10540. "MIT"
  10541. ],
  10542. "authors": [
  10543. {
  10544. "name": "Bernhard Schussek",
  10545. "email": "bschussek@gmail.com"
  10546. }
  10547. ],
  10548. "description": "Assertions to validate method input/output with nice error messages.",
  10549. "keywords": [
  10550. "assert",
  10551. "check",
  10552. "validate"
  10553. ],
  10554. "support": {
  10555. "issues": "https://github.com/webmozarts/assert/issues",
  10556. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  10557. },
  10558. "time": "2022-06-03T18:03:27+00:00"
  10559. },
  10560. {
  10561. "name": "webmozart/path-util",
  10562. "version": "2.3.0",
  10563. "source": {
  10564. "type": "git",
  10565. "url": "https://github.com/webmozart/path-util.git",
  10566. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  10567. },
  10568. "dist": {
  10569. "type": "zip",
  10570. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10571. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10572. "shasum": ""
  10573. },
  10574. "require": {
  10575. "php": ">=5.3.3",
  10576. "webmozart/assert": "~1.0"
  10577. },
  10578. "require-dev": {
  10579. "phpunit/phpunit": "^4.6",
  10580. "sebastian/version": "^1.0.1"
  10581. },
  10582. "type": "library",
  10583. "extra": {
  10584. "branch-alias": {
  10585. "dev-master": "2.3-dev"
  10586. }
  10587. },
  10588. "autoload": {
  10589. "psr-4": {
  10590. "Webmozart\\PathUtil\\": "src/"
  10591. }
  10592. },
  10593. "notification-url": "https://packagist.org/downloads/",
  10594. "license": [
  10595. "MIT"
  10596. ],
  10597. "authors": [
  10598. {
  10599. "name": "Bernhard Schussek",
  10600. "email": "bschussek@gmail.com"
  10601. }
  10602. ],
  10603. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  10604. "support": {
  10605. "issues": "https://github.com/webmozart/path-util/issues",
  10606. "source": "https://github.com/webmozart/path-util/tree/2.3.0"
  10607. },
  10608. "abandoned": "symfony/filesystem",
  10609. "time": "2015-12-17T08:42:14+00:00"
  10610. }
  10611. ],
  10612. "packages-dev": [],
  10613. "aliases": [],
  10614. "minimum-stability": "dev",
  10615. "stability-flags": {
  10616. "drupal/basic": 15,
  10617. "drupal/bulkdelete": 20,
  10618. "drupal/config_update": 15,
  10619. "drupal/context": 5,
  10620. "drupal/domain": 10,
  10621. "drupal/filefield_sources": 20,
  10622. "drupal/linkit": 10
  10623. },
  10624. "prefer-stable": true,
  10625. "prefer-lowest": false,
  10626. "platform": {
  10627. "php": ">=5.6"
  10628. },
  10629. "platform-dev": [],
  10630. "plugin-api-version": "2.6.0"
  10631. }