composer.lock 451 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398
  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": "1b8ed5e552e1c4821a632fbb95e842ed",
  8. "packages": [
  9. {
  10. "name": "alchemy/zippy",
  11. "version": "0.4.9",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/alchemy-fr/Zippy.git",
  15. "reference": "59fbeefb9a249122867ef25e53addfcce31850d7"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/alchemy-fr/Zippy/zipball/59fbeefb9a249122867ef25e53addfcce31850d7",
  20. "reference": "59fbeefb9a249122867ef25e53addfcce31850d7",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "doctrine/collections": "~1.0",
  25. "php": ">=5.5",
  26. "symfony/filesystem": "^2.0.5 || ^3.0 || ^4.0",
  27. "symfony/polyfill-mbstring": "^1.3",
  28. "symfony/process": "^2.1 || ^3.0 || ^4.0"
  29. },
  30. "require-dev": {
  31. "ext-zip": "*",
  32. "guzzle/guzzle": "~3.0",
  33. "guzzlehttp/guzzle": "^6.0",
  34. "phpunit/phpunit": "^4.0 || ^5.0",
  35. "symfony/finder": "^2.0.5 || ^3.0 || ^4.0"
  36. },
  37. "suggest": {
  38. "ext-zip": "To use the ZipExtensionAdapter",
  39. "guzzle/guzzle": "To use the GuzzleTeleporter with Guzzle 3",
  40. "guzzlehttp/guzzle": "To use the GuzzleTeleporter with Guzzle 6"
  41. },
  42. "type": "library",
  43. "extra": {
  44. "branch-alias": {
  45. "dev-master": "0.4.x-dev"
  46. }
  47. },
  48. "autoload": {
  49. "psr-4": {
  50. "Alchemy\\Zippy\\": "src/"
  51. }
  52. },
  53. "notification-url": "https://packagist.org/downloads/",
  54. "license": [
  55. "MIT"
  56. ],
  57. "authors": [
  58. {
  59. "name": "Alchemy",
  60. "email": "dev.team@alchemy.fr",
  61. "homepage": "http://www.alchemy.fr/"
  62. }
  63. ],
  64. "description": "Zippy, the archive manager companion",
  65. "keywords": [
  66. "bzip",
  67. "compression",
  68. "tar",
  69. "zip"
  70. ],
  71. "time": "2018-02-22T13:58:36+00:00"
  72. },
  73. {
  74. "name": "asm89/stack-cors",
  75. "version": "1.3.0",
  76. "source": {
  77. "type": "git",
  78. "url": "https://github.com/asm89/stack-cors.git",
  79. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08"
  80. },
  81. "dist": {
  82. "type": "zip",
  83. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/b9c31def6a83f84b4d4a40d35996d375755f0e08",
  84. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08",
  85. "shasum": ""
  86. },
  87. "require": {
  88. "php": ">=5.5.9",
  89. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  90. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  91. },
  92. "require-dev": {
  93. "phpunit/phpunit": "^5.0 || ^4.8.10",
  94. "squizlabs/php_codesniffer": "^2.3"
  95. },
  96. "type": "library",
  97. "extra": {
  98. "branch-alias": {
  99. "dev-master": "1.2-dev"
  100. }
  101. },
  102. "autoload": {
  103. "psr-4": {
  104. "Asm89\\Stack\\": "src/Asm89/Stack/"
  105. }
  106. },
  107. "notification-url": "https://packagist.org/downloads/",
  108. "license": [
  109. "MIT"
  110. ],
  111. "authors": [
  112. {
  113. "name": "Alexander",
  114. "email": "iam.asm89@gmail.com"
  115. }
  116. ],
  117. "description": "Cross-origin resource sharing library and stack middleware",
  118. "homepage": "https://github.com/asm89/stack-cors",
  119. "keywords": [
  120. "cors",
  121. "stack"
  122. ],
  123. "time": "2019-12-24T22:41:47+00:00"
  124. },
  125. {
  126. "name": "chi-teck/drupal-code-generator",
  127. "version": "1.33.1",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  131. "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/5f814e980b6f9cf1ca8c74cc9385c3d81090d388",
  136. "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "ext-json": "*",
  141. "php": ">=5.5.9",
  142. "symfony/console": "^3.4 || ^4.0",
  143. "symfony/filesystem": "^2.7 || ^3.4 || ^4.0",
  144. "twig/twig": "^1.41 || ^2.12"
  145. },
  146. "conflict": {
  147. "drush/drush": "< 10.3.2"
  148. },
  149. "bin": [
  150. "bin/dcg"
  151. ],
  152. "type": "library",
  153. "extra": {
  154. "branch-alias": {
  155. "dev-master": "1.x-dev"
  156. }
  157. },
  158. "autoload": {
  159. "files": [
  160. "src/bootstrap.php"
  161. ],
  162. "psr-4": {
  163. "DrupalCodeGenerator\\": "src"
  164. }
  165. },
  166. "notification-url": "https://packagist.org/downloads/",
  167. "license": [
  168. "GPL-2.0-or-later"
  169. ],
  170. "description": "Drupal code generator",
  171. "time": "2020-12-05T05:59:11+00:00"
  172. },
  173. {
  174. "name": "commerceguys/addressing",
  175. "version": "v1.2.0",
  176. "source": {
  177. "type": "git",
  178. "url": "https://github.com/commerceguys/addressing.git",
  179. "reference": "00c263fa945e7f78524bbb6b99d331f3b493be2a"
  180. },
  181. "dist": {
  182. "type": "zip",
  183. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/00c263fa945e7f78524bbb6b99d331f3b493be2a",
  184. "reference": "00c263fa945e7f78524bbb6b99d331f3b493be2a",
  185. "shasum": ""
  186. },
  187. "require": {
  188. "doctrine/collections": "~1.0",
  189. "php": ">=7.1.3"
  190. },
  191. "require-dev": {
  192. "mikey179/vfsstream": "1.*",
  193. "phpunit/phpunit": "^7.5",
  194. "squizlabs/php_codesniffer": "3.*",
  195. "symfony/validator": "^4.4"
  196. },
  197. "suggest": {
  198. "symfony/validator": "to validate addresses"
  199. },
  200. "type": "library",
  201. "extra": {
  202. "branch-alias": {
  203. "dev-master": "1.x-dev"
  204. }
  205. },
  206. "autoload": {
  207. "psr-4": {
  208. "CommerceGuys\\Addressing\\": "src"
  209. }
  210. },
  211. "notification-url": "https://packagist.org/downloads/",
  212. "license": [
  213. "MIT"
  214. ],
  215. "authors": [
  216. {
  217. "name": "Bojan Zivanovic"
  218. },
  219. {
  220. "name": "Damien Tournoud"
  221. }
  222. ],
  223. "description": "Addressing library powered by CLDR and Google's address data.",
  224. "keywords": [
  225. "address",
  226. "internationalization",
  227. "localization",
  228. "postal"
  229. ],
  230. "time": "2021-03-14T20:04:10+00:00"
  231. },
  232. {
  233. "name": "components/highlightjs",
  234. "version": "9.7.0",
  235. "dist": {
  236. "type": "zip",
  237. "url": "https://github.com/components/highlightjs/archive/9.7.0.zip"
  238. },
  239. "type": "drupal-library"
  240. },
  241. {
  242. "name": "composer/installers",
  243. "version": "v1.10.0",
  244. "source": {
  245. "type": "git",
  246. "url": "https://github.com/composer/installers.git",
  247. "reference": "1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d"
  248. },
  249. "dist": {
  250. "type": "zip",
  251. "url": "https://api.github.com/repos/composer/installers/zipball/1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d",
  252. "reference": "1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d",
  253. "shasum": ""
  254. },
  255. "require": {
  256. "composer-plugin-api": "^1.0 || ^2.0"
  257. },
  258. "replace": {
  259. "roundcube/plugin-installer": "*",
  260. "shama/baton": "*"
  261. },
  262. "require-dev": {
  263. "composer/composer": "1.6.* || ^2.0",
  264. "composer/semver": "^1 || ^3",
  265. "phpstan/phpstan": "^0.12.55",
  266. "phpstan/phpstan-phpunit": "^0.12.16",
  267. "symfony/phpunit-bridge": "^4.2 || ^5",
  268. "symfony/process": "^2.3"
  269. },
  270. "type": "composer-plugin",
  271. "extra": {
  272. "class": "Composer\\Installers\\Plugin",
  273. "branch-alias": {
  274. "dev-main": "1.x-dev"
  275. }
  276. },
  277. "autoload": {
  278. "psr-4": {
  279. "Composer\\Installers\\": "src/Composer/Installers"
  280. }
  281. },
  282. "notification-url": "https://packagist.org/downloads/",
  283. "license": [
  284. "MIT"
  285. ],
  286. "authors": [
  287. {
  288. "name": "Kyle Robinson Young",
  289. "email": "kyle@dontkry.com",
  290. "homepage": "https://github.com/shama"
  291. }
  292. ],
  293. "description": "A multi-framework Composer library installer",
  294. "homepage": "https://composer.github.io/installers/",
  295. "keywords": [
  296. "Craft",
  297. "Dolibarr",
  298. "Eliasis",
  299. "Hurad",
  300. "ImageCMS",
  301. "Kanboard",
  302. "Lan Management System",
  303. "MODX Evo",
  304. "MantisBT",
  305. "Mautic",
  306. "Maya",
  307. "OXID",
  308. "Plentymarkets",
  309. "Porto",
  310. "RadPHP",
  311. "SMF",
  312. "Starbug",
  313. "Thelia",
  314. "Whmcs",
  315. "WolfCMS",
  316. "agl",
  317. "aimeos",
  318. "annotatecms",
  319. "attogram",
  320. "bitrix",
  321. "cakephp",
  322. "chef",
  323. "cockpit",
  324. "codeigniter",
  325. "concrete5",
  326. "croogo",
  327. "dokuwiki",
  328. "drupal",
  329. "eZ Platform",
  330. "elgg",
  331. "expressionengine",
  332. "fuelphp",
  333. "grav",
  334. "installer",
  335. "itop",
  336. "joomla",
  337. "known",
  338. "kohana",
  339. "laravel",
  340. "lavalite",
  341. "lithium",
  342. "magento",
  343. "majima",
  344. "mako",
  345. "mediawiki",
  346. "modulework",
  347. "modx",
  348. "moodle",
  349. "osclass",
  350. "phpbb",
  351. "piwik",
  352. "ppi",
  353. "processwire",
  354. "puppet",
  355. "pxcms",
  356. "reindex",
  357. "roundcube",
  358. "shopware",
  359. "silverstripe",
  360. "sydes",
  361. "sylius",
  362. "symfony",
  363. "typo3",
  364. "wordpress",
  365. "yawik",
  366. "zend",
  367. "zikula"
  368. ],
  369. "funding": [
  370. {
  371. "url": "https://packagist.com",
  372. "type": "custom"
  373. },
  374. {
  375. "url": "https://github.com/composer",
  376. "type": "github"
  377. },
  378. {
  379. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  380. "type": "tidelift"
  381. }
  382. ],
  383. "time": "2021-01-14T11:07:16+00:00"
  384. },
  385. {
  386. "name": "composer/semver",
  387. "version": "3.2.2",
  388. "source": {
  389. "type": "git",
  390. "url": "https://github.com/composer/semver.git",
  391. "reference": "4089fddb67bcf6bf860d91b979e95be303835002"
  392. },
  393. "dist": {
  394. "type": "zip",
  395. "url": "https://api.github.com/repos/composer/semver/zipball/4089fddb67bcf6bf860d91b979e95be303835002",
  396. "reference": "4089fddb67bcf6bf860d91b979e95be303835002",
  397. "shasum": ""
  398. },
  399. "require": {
  400. "php": "^5.3.2 || ^7.0 || ^8.0"
  401. },
  402. "require-dev": {
  403. "phpstan/phpstan": "^0.12.19",
  404. "symfony/phpunit-bridge": "^4.2 || ^5"
  405. },
  406. "type": "library",
  407. "extra": {
  408. "branch-alias": {
  409. "dev-main": "3.x-dev"
  410. }
  411. },
  412. "autoload": {
  413. "psr-4": {
  414. "Composer\\Semver\\": "src"
  415. }
  416. },
  417. "notification-url": "https://packagist.org/downloads/",
  418. "license": [
  419. "MIT"
  420. ],
  421. "authors": [
  422. {
  423. "name": "Nils Adermann",
  424. "email": "naderman@naderman.de",
  425. "homepage": "http://www.naderman.de"
  426. },
  427. {
  428. "name": "Jordi Boggiano",
  429. "email": "j.boggiano@seld.be",
  430. "homepage": "http://seld.be"
  431. },
  432. {
  433. "name": "Rob Bast",
  434. "email": "rob.bast@gmail.com",
  435. "homepage": "http://robbast.nl"
  436. }
  437. ],
  438. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  439. "keywords": [
  440. "semantic",
  441. "semver",
  442. "validation",
  443. "versioning"
  444. ],
  445. "funding": [
  446. {
  447. "url": "https://packagist.com",
  448. "type": "custom"
  449. },
  450. {
  451. "url": "https://github.com/composer",
  452. "type": "github"
  453. },
  454. {
  455. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  456. "type": "tidelift"
  457. }
  458. ],
  459. "time": "2020-10-14T08:51:15+00:00"
  460. },
  461. {
  462. "name": "consolidation/annotated-command",
  463. "version": "4.2.4",
  464. "source": {
  465. "type": "git",
  466. "url": "https://github.com/consolidation/annotated-command.git",
  467. "reference": "ec297e05cb86557671c2d6cbb1bebba6c7ae2c60"
  468. },
  469. "dist": {
  470. "type": "zip",
  471. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/ec297e05cb86557671c2d6cbb1bebba6c7ae2c60",
  472. "reference": "ec297e05cb86557671c2d6cbb1bebba6c7ae2c60",
  473. "shasum": ""
  474. },
  475. "require": {
  476. "consolidation/output-formatters": "^4.1.1",
  477. "php": ">=7.1.3",
  478. "psr/log": "^1|^2",
  479. "symfony/console": "^4.4.8|~5.1.0",
  480. "symfony/event-dispatcher": "^4.4.8|^5",
  481. "symfony/finder": "^4.4.8|^5"
  482. },
  483. "require-dev": {
  484. "phpunit/phpunit": ">=7.5.20",
  485. "squizlabs/php_codesniffer": "^3",
  486. "yoast/phpunit-polyfills": "^0.2.0"
  487. },
  488. "type": "library",
  489. "extra": {
  490. "branch-alias": {
  491. "dev-main": "4.x-dev"
  492. }
  493. },
  494. "autoload": {
  495. "psr-4": {
  496. "Consolidation\\AnnotatedCommand\\": "src"
  497. }
  498. },
  499. "notification-url": "https://packagist.org/downloads/",
  500. "license": [
  501. "MIT"
  502. ],
  503. "authors": [
  504. {
  505. "name": "Greg Anderson",
  506. "email": "greg.1.anderson@greenknowe.org"
  507. }
  508. ],
  509. "description": "Initialize Symfony Console commands from annotated command class methods.",
  510. "time": "2020-12-10T16:56:39+00:00"
  511. },
  512. {
  513. "name": "consolidation/config",
  514. "version": "1.2.1",
  515. "source": {
  516. "type": "git",
  517. "url": "https://github.com/consolidation/config.git",
  518. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  519. },
  520. "dist": {
  521. "type": "zip",
  522. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  523. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  524. "shasum": ""
  525. },
  526. "require": {
  527. "dflydev/dot-access-data": "^1.1.0",
  528. "grasmash/expander": "^1",
  529. "php": ">=5.4.0"
  530. },
  531. "require-dev": {
  532. "g1a/composer-test-scenarios": "^3",
  533. "php-coveralls/php-coveralls": "^1",
  534. "phpunit/phpunit": "^5",
  535. "squizlabs/php_codesniffer": "2.*",
  536. "symfony/console": "^2.5|^3|^4",
  537. "symfony/yaml": "^2.8.11|^3|^4"
  538. },
  539. "suggest": {
  540. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  541. },
  542. "type": "library",
  543. "extra": {
  544. "scenarios": {
  545. "symfony4": {
  546. "require-dev": {
  547. "symfony/console": "^4.0"
  548. },
  549. "config": {
  550. "platform": {
  551. "php": "7.1.3"
  552. }
  553. }
  554. },
  555. "symfony2": {
  556. "require-dev": {
  557. "symfony/console": "^2.8",
  558. "symfony/event-dispatcher": "^2.8",
  559. "phpunit/phpunit": "^4.8.36"
  560. },
  561. "remove": [
  562. "php-coveralls/php-coveralls"
  563. ],
  564. "config": {
  565. "platform": {
  566. "php": "5.4.8"
  567. }
  568. }
  569. }
  570. },
  571. "branch-alias": {
  572. "dev-master": "1.x-dev"
  573. }
  574. },
  575. "autoload": {
  576. "psr-4": {
  577. "Consolidation\\Config\\": "src"
  578. }
  579. },
  580. "notification-url": "https://packagist.org/downloads/",
  581. "license": [
  582. "MIT"
  583. ],
  584. "authors": [
  585. {
  586. "name": "Greg Anderson",
  587. "email": "greg.1.anderson@greenknowe.org"
  588. }
  589. ],
  590. "description": "Provide configuration services for a commandline tool.",
  591. "time": "2019-03-03T19:37:04+00:00"
  592. },
  593. {
  594. "name": "consolidation/filter-via-dot-access-data",
  595. "version": "1.0.0",
  596. "source": {
  597. "type": "git",
  598. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  599. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  600. },
  601. "dist": {
  602. "type": "zip",
  603. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  604. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  605. "shasum": ""
  606. },
  607. "require": {
  608. "dflydev/dot-access-data": "^1.1.0",
  609. "php": ">=5.5.0"
  610. },
  611. "require-dev": {
  612. "consolidation/robo": "^1.2.3",
  613. "g1a/composer-test-scenarios": "^3",
  614. "knplabs/github-api": "^2.7",
  615. "php-coveralls/php-coveralls": "^1",
  616. "php-http/guzzle6-adapter": "^1.1",
  617. "phpunit/phpunit": "^5",
  618. "squizlabs/php_codesniffer": "^2.8",
  619. "symfony/console": "^2.8|^3|^4"
  620. },
  621. "type": "library",
  622. "extra": {
  623. "scenarios": {
  624. "phpunit5": {
  625. "require-dev": {
  626. "phpunit/phpunit": "^5.7.27"
  627. },
  628. "remove": [
  629. "php-coveralls/php-coveralls"
  630. ],
  631. "config": {
  632. "platform": {
  633. "php": "5.6.33"
  634. }
  635. }
  636. }
  637. },
  638. "branch-alias": {
  639. "dev-master": "1.x-dev"
  640. }
  641. },
  642. "autoload": {
  643. "psr-4": {
  644. "Consolidation\\Filter\\": "src"
  645. }
  646. },
  647. "notification-url": "https://packagist.org/downloads/",
  648. "license": [
  649. "MIT"
  650. ],
  651. "authors": [
  652. {
  653. "name": "Greg Anderson",
  654. "email": "greg.1.anderson@greenknowe.org"
  655. }
  656. ],
  657. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  658. "time": "2019-01-18T06:05:07+00:00"
  659. },
  660. {
  661. "name": "consolidation/log",
  662. "version": "2.0.2",
  663. "source": {
  664. "type": "git",
  665. "url": "https://github.com/consolidation/log.git",
  666. "reference": "82a2aaaa621a7b976e50a745a8d249d5085ee2b1"
  667. },
  668. "dist": {
  669. "type": "zip",
  670. "url": "https://api.github.com/repos/consolidation/log/zipball/82a2aaaa621a7b976e50a745a8d249d5085ee2b1",
  671. "reference": "82a2aaaa621a7b976e50a745a8d249d5085ee2b1",
  672. "shasum": ""
  673. },
  674. "require": {
  675. "php": ">=7.1.3",
  676. "psr/log": "^1.0",
  677. "symfony/console": "^4|^5"
  678. },
  679. "require-dev": {
  680. "phpunit/phpunit": ">=7.5.20",
  681. "squizlabs/php_codesniffer": "^3",
  682. "yoast/phpunit-polyfills": "^0.2.0"
  683. },
  684. "type": "library",
  685. "extra": {
  686. "branch-alias": {
  687. "dev-main": "2.x-dev"
  688. }
  689. },
  690. "autoload": {
  691. "psr-4": {
  692. "Consolidation\\Log\\": "src"
  693. }
  694. },
  695. "notification-url": "https://packagist.org/downloads/",
  696. "license": [
  697. "MIT"
  698. ],
  699. "authors": [
  700. {
  701. "name": "Greg Anderson",
  702. "email": "greg.1.anderson@greenknowe.org"
  703. }
  704. ],
  705. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  706. "time": "2020-12-10T16:26:23+00:00"
  707. },
  708. {
  709. "name": "consolidation/output-formatters",
  710. "version": "4.1.2",
  711. "source": {
  712. "type": "git",
  713. "url": "https://github.com/consolidation/output-formatters.git",
  714. "reference": "5821e6ae076bf690058a4de6c94dce97398a69c9"
  715. },
  716. "dist": {
  717. "type": "zip",
  718. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/5821e6ae076bf690058a4de6c94dce97398a69c9",
  719. "reference": "5821e6ae076bf690058a4de6c94dce97398a69c9",
  720. "shasum": ""
  721. },
  722. "require": {
  723. "dflydev/dot-access-data": "^1.1.0",
  724. "php": ">=7.1.3",
  725. "symfony/console": "^4|^5",
  726. "symfony/finder": "^4|^5"
  727. },
  728. "require-dev": {
  729. "php-coveralls/php-coveralls": "^2.4.2",
  730. "phpunit/phpunit": ">=7",
  731. "squizlabs/php_codesniffer": "^3",
  732. "symfony/var-dumper": "^4",
  733. "symfony/yaml": "^4",
  734. "yoast/phpunit-polyfills": "^0.2.0"
  735. },
  736. "suggest": {
  737. "symfony/var-dumper": "For using the var_dump formatter"
  738. },
  739. "type": "library",
  740. "extra": {
  741. "branch-alias": {
  742. "dev-main": "4.x-dev"
  743. }
  744. },
  745. "autoload": {
  746. "psr-4": {
  747. "Consolidation\\OutputFormatters\\": "src"
  748. }
  749. },
  750. "notification-url": "https://packagist.org/downloads/",
  751. "license": [
  752. "MIT"
  753. ],
  754. "authors": [
  755. {
  756. "name": "Greg Anderson",
  757. "email": "greg.1.anderson@greenknowe.org"
  758. }
  759. ],
  760. "description": "Format text by applying transformations provided by plug-in formatters.",
  761. "time": "2020-12-12T19:04:59+00:00"
  762. },
  763. {
  764. "name": "consolidation/robo",
  765. "version": "2.2.2",
  766. "source": {
  767. "type": "git",
  768. "url": "https://github.com/consolidation/Robo.git",
  769. "reference": "b365df174d9cfb0f5814e4f3275a1c558b17bc4c"
  770. },
  771. "dist": {
  772. "type": "zip",
  773. "url": "https://api.github.com/repos/consolidation/Robo/zipball/b365df174d9cfb0f5814e4f3275a1c558b17bc4c",
  774. "reference": "b365df174d9cfb0f5814e4f3275a1c558b17bc4c",
  775. "shasum": ""
  776. },
  777. "require": {
  778. "consolidation/annotated-command": "^4.2.1",
  779. "consolidation/config": "^1.2.1|^2",
  780. "consolidation/log": "^1.1.1|^2.0.1",
  781. "consolidation/output-formatters": "^4.1.1",
  782. "consolidation/self-update": "^1.2",
  783. "league/container": "^2.4.1",
  784. "php": ">=7.1.3",
  785. "symfony/console": "^4.4.11|^5",
  786. "symfony/event-dispatcher": "^4.4.11|^5",
  787. "symfony/filesystem": "^4.4.11|^5",
  788. "symfony/finder": "^4.4.11|^5",
  789. "symfony/process": "^4.4.11|^5",
  790. "symfony/yaml": "^4.0 || ^5.0"
  791. },
  792. "conflict": {
  793. "codegyre/robo": "*"
  794. },
  795. "require-dev": {
  796. "g1a/composer-test-scenarios": "^3",
  797. "natxet/cssmin": "3.0.4",
  798. "patchwork/jsqueeze": "^2",
  799. "pear/archive_tar": "^1.4.4",
  800. "php-coveralls/php-coveralls": "^2.2",
  801. "phpdocumentor/reflection-docblock": "^4.3.2",
  802. "phpunit/phpunit": "^6.5.14",
  803. "squizlabs/php_codesniffer": "^3"
  804. },
  805. "suggest": {
  806. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  807. "natxet/cssmin": "For minifying CSS files in taskMinify",
  808. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  809. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  810. },
  811. "bin": [
  812. "robo"
  813. ],
  814. "type": "library",
  815. "extra": {
  816. "scenarios": {
  817. "symfony4": {
  818. "require": {
  819. "symfony/console": "^4.4.11",
  820. "symfony/event-dispatcher": "^4.4.11",
  821. "symfony/filesystem": "^4.4.11",
  822. "symfony/finder": "^4.4.11",
  823. "symfony/process": "^4.4.11",
  824. "phpunit/phpunit": "^6",
  825. "nikic/php-parser": "^2"
  826. },
  827. "remove": [
  828. "codeception/phpunit-wrapper"
  829. ],
  830. "config": {
  831. "platform": {
  832. "php": "7.1.3"
  833. }
  834. }
  835. }
  836. },
  837. "branch-alias": {
  838. "dev-master": "2.x-dev",
  839. "dev-main": "2.x-dev"
  840. }
  841. },
  842. "autoload": {
  843. "psr-4": {
  844. "Robo\\": "src"
  845. }
  846. },
  847. "notification-url": "https://packagist.org/downloads/",
  848. "license": [
  849. "MIT"
  850. ],
  851. "authors": [
  852. {
  853. "name": "Davert",
  854. "email": "davert.php@resend.cc"
  855. }
  856. ],
  857. "description": "Modern task runner",
  858. "time": "2020-12-18T22:09:18+00:00"
  859. },
  860. {
  861. "name": "consolidation/self-update",
  862. "version": "1.2.0",
  863. "source": {
  864. "type": "git",
  865. "url": "https://github.com/consolidation/self-update.git",
  866. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4"
  867. },
  868. "dist": {
  869. "type": "zip",
  870. "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4",
  871. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4",
  872. "shasum": ""
  873. },
  874. "require": {
  875. "php": ">=5.5.0",
  876. "symfony/console": "^2.8|^3|^4|^5",
  877. "symfony/filesystem": "^2.5|^3|^4|^5"
  878. },
  879. "bin": [
  880. "scripts/release"
  881. ],
  882. "type": "library",
  883. "extra": {
  884. "branch-alias": {
  885. "dev-master": "1.x-dev"
  886. }
  887. },
  888. "autoload": {
  889. "psr-4": {
  890. "SelfUpdate\\": "src"
  891. }
  892. },
  893. "notification-url": "https://packagist.org/downloads/",
  894. "license": [
  895. "MIT"
  896. ],
  897. "authors": [
  898. {
  899. "name": "Alexander Menk",
  900. "email": "menk@mestrona.net"
  901. },
  902. {
  903. "name": "Greg Anderson",
  904. "email": "greg.1.anderson@greenknowe.org"
  905. }
  906. ],
  907. "description": "Provides a self:update command for Symfony Console applications.",
  908. "time": "2020-04-13T02:49:20+00:00"
  909. },
  910. {
  911. "name": "consolidation/site-alias",
  912. "version": "3.1.0",
  913. "source": {
  914. "type": "git",
  915. "url": "https://github.com/consolidation/site-alias.git",
  916. "reference": "9ed3c590be9fcf9fea69c73456c2fd4b27f5204c"
  917. },
  918. "dist": {
  919. "type": "zip",
  920. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/9ed3c590be9fcf9fea69c73456c2fd4b27f5204c",
  921. "reference": "9ed3c590be9fcf9fea69c73456c2fd4b27f5204c",
  922. "shasum": ""
  923. },
  924. "require": {
  925. "consolidation/config": "^1.2.1|^2",
  926. "php": ">=5.5.0",
  927. "symfony/finder": "~2.3|^3|^4.4|^5"
  928. },
  929. "require-dev": {
  930. "php-coveralls/php-coveralls": "^2.4.2",
  931. "phpunit/phpunit": ">=7",
  932. "squizlabs/php_codesniffer": "^3",
  933. "symfony/var-dumper": "^4",
  934. "yoast/phpunit-polyfills": "^0.2.0"
  935. },
  936. "type": "library",
  937. "extra": {
  938. "branch-alias": {
  939. "dev-main": "3.x-dev"
  940. }
  941. },
  942. "autoload": {
  943. "psr-4": {
  944. "Consolidation\\SiteAlias\\": "src"
  945. }
  946. },
  947. "notification-url": "https://packagist.org/downloads/",
  948. "license": [
  949. "MIT"
  950. ],
  951. "authors": [
  952. {
  953. "name": "Greg Anderson",
  954. "email": "greg.1.anderson@greenknowe.org"
  955. },
  956. {
  957. "name": "Moshe Weitzman",
  958. "email": "weitzman@tejasa.com"
  959. }
  960. ],
  961. "description": "Manage alias records for local and remote sites.",
  962. "time": "2021-02-20T20:03:10+00:00"
  963. },
  964. {
  965. "name": "consolidation/site-process",
  966. "version": "4.1.0",
  967. "source": {
  968. "type": "git",
  969. "url": "https://github.com/consolidation/site-process.git",
  970. "reference": "ef57711d7049f7606ce936ded16ad93f1ad7f02c"
  971. },
  972. "dist": {
  973. "type": "zip",
  974. "url": "https://api.github.com/repos/consolidation/site-process/zipball/ef57711d7049f7606ce936ded16ad93f1ad7f02c",
  975. "reference": "ef57711d7049f7606ce936ded16ad93f1ad7f02c",
  976. "shasum": ""
  977. },
  978. "require": {
  979. "consolidation/config": "^1.2.1|^2",
  980. "consolidation/site-alias": "^3",
  981. "php": ">=7.1.3",
  982. "symfony/console": "^2.8.52|^3|^4.4|^5",
  983. "symfony/process": "^4.3.4"
  984. },
  985. "require-dev": {
  986. "phpunit/phpunit": "^7.5.20|^8.5.14",
  987. "squizlabs/php_codesniffer": "^3",
  988. "yoast/phpunit-polyfills": "^0.2.0"
  989. },
  990. "type": "library",
  991. "extra": {
  992. "branch-alias": {
  993. "dev-main": "4.x-dev"
  994. }
  995. },
  996. "autoload": {
  997. "psr-4": {
  998. "Consolidation\\SiteProcess\\": "src"
  999. }
  1000. },
  1001. "notification-url": "https://packagist.org/downloads/",
  1002. "license": [
  1003. "MIT"
  1004. ],
  1005. "authors": [
  1006. {
  1007. "name": "Greg Anderson",
  1008. "email": "greg.1.anderson@greenknowe.org"
  1009. },
  1010. {
  1011. "name": "Moshe Weitzman",
  1012. "email": "weitzman@tejasa.com"
  1013. }
  1014. ],
  1015. "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.",
  1016. "time": "2021-02-21T02:53:33+00:00"
  1017. },
  1018. {
  1019. "name": "container-interop/container-interop",
  1020. "version": "1.2.0",
  1021. "source": {
  1022. "type": "git",
  1023. "url": "https://github.com/container-interop/container-interop.git",
  1024. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  1025. },
  1026. "dist": {
  1027. "type": "zip",
  1028. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1029. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1030. "shasum": ""
  1031. },
  1032. "require": {
  1033. "psr/container": "^1.0"
  1034. },
  1035. "type": "library",
  1036. "autoload": {
  1037. "psr-4": {
  1038. "Interop\\Container\\": "src/Interop/Container/"
  1039. }
  1040. },
  1041. "notification-url": "https://packagist.org/downloads/",
  1042. "license": [
  1043. "MIT"
  1044. ],
  1045. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  1046. "homepage": "https://github.com/container-interop/container-interop",
  1047. "abandoned": "psr/container",
  1048. "time": "2017-02-14T19:40:03+00:00"
  1049. },
  1050. {
  1051. "name": "cweagans/composer-patches",
  1052. "version": "1.7.0",
  1053. "source": {
  1054. "type": "git",
  1055. "url": "https://github.com/cweagans/composer-patches.git",
  1056. "reference": "ae02121445ad75f4eaff800cc532b5e6233e2ddf"
  1057. },
  1058. "dist": {
  1059. "type": "zip",
  1060. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/ae02121445ad75f4eaff800cc532b5e6233e2ddf",
  1061. "reference": "ae02121445ad75f4eaff800cc532b5e6233e2ddf",
  1062. "shasum": ""
  1063. },
  1064. "require": {
  1065. "composer-plugin-api": "^1.0 || ^2.0",
  1066. "php": ">=5.3.0"
  1067. },
  1068. "require-dev": {
  1069. "composer/composer": "~1.0 || ~2.0",
  1070. "phpunit/phpunit": "~4.6"
  1071. },
  1072. "type": "composer-plugin",
  1073. "extra": {
  1074. "class": "cweagans\\Composer\\Patches"
  1075. },
  1076. "autoload": {
  1077. "psr-4": {
  1078. "cweagans\\Composer\\": "src"
  1079. }
  1080. },
  1081. "notification-url": "https://packagist.org/downloads/",
  1082. "license": [
  1083. "BSD-3-Clause"
  1084. ],
  1085. "authors": [
  1086. {
  1087. "name": "Cameron Eagans",
  1088. "email": "me@cweagans.net"
  1089. }
  1090. ],
  1091. "description": "Provides a way to patch Composer packages.",
  1092. "time": "2020-09-30T17:56:20+00:00"
  1093. },
  1094. {
  1095. "name": "d3/d3",
  1096. "version": "v3.5.17",
  1097. "dist": {
  1098. "type": "zip",
  1099. "url": "https://github.com/d3/d3/archive/v3.5.17.zip"
  1100. },
  1101. "type": "drupal-library"
  1102. },
  1103. {
  1104. "name": "dflydev/dot-access-configuration",
  1105. "version": "v1.0.3",
  1106. "source": {
  1107. "type": "git",
  1108. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  1109. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  1110. },
  1111. "dist": {
  1112. "type": "zip",
  1113. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1114. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1115. "shasum": ""
  1116. },
  1117. "require": {
  1118. "dflydev/dot-access-data": "1.*",
  1119. "dflydev/placeholder-resolver": "1.*",
  1120. "php": ">=5.3.2"
  1121. },
  1122. "require-dev": {
  1123. "symfony/yaml": "~2.1"
  1124. },
  1125. "suggest": {
  1126. "symfony/yaml": "Required for using the YAML Configuration Builders"
  1127. },
  1128. "type": "library",
  1129. "extra": {
  1130. "branch-alias": {
  1131. "dev-master": "1.0-dev"
  1132. }
  1133. },
  1134. "autoload": {
  1135. "psr-0": {
  1136. "Dflydev\\DotAccessConfiguration": "src"
  1137. }
  1138. },
  1139. "notification-url": "https://packagist.org/downloads/",
  1140. "license": [
  1141. "MIT"
  1142. ],
  1143. "authors": [
  1144. {
  1145. "name": "Dragonfly Development Inc.",
  1146. "email": "info@dflydev.com",
  1147. "homepage": "http://dflydev.com"
  1148. },
  1149. {
  1150. "name": "Beau Simensen",
  1151. "email": "beau@dflydev.com",
  1152. "homepage": "http://beausimensen.com"
  1153. }
  1154. ],
  1155. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  1156. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  1157. "keywords": [
  1158. "config",
  1159. "configuration"
  1160. ],
  1161. "time": "2018-09-08T23:00:17+00:00"
  1162. },
  1163. {
  1164. "name": "dflydev/dot-access-data",
  1165. "version": "v1.1.0",
  1166. "source": {
  1167. "type": "git",
  1168. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1169. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1170. },
  1171. "dist": {
  1172. "type": "zip",
  1173. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1174. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1175. "shasum": ""
  1176. },
  1177. "require": {
  1178. "php": ">=5.3.2"
  1179. },
  1180. "type": "library",
  1181. "extra": {
  1182. "branch-alias": {
  1183. "dev-master": "1.0-dev"
  1184. }
  1185. },
  1186. "autoload": {
  1187. "psr-0": {
  1188. "Dflydev\\DotAccessData": "src"
  1189. }
  1190. },
  1191. "notification-url": "https://packagist.org/downloads/",
  1192. "license": [
  1193. "MIT"
  1194. ],
  1195. "authors": [
  1196. {
  1197. "name": "Dragonfly Development Inc.",
  1198. "email": "info@dflydev.com",
  1199. "homepage": "http://dflydev.com"
  1200. },
  1201. {
  1202. "name": "Beau Simensen",
  1203. "email": "beau@dflydev.com",
  1204. "homepage": "http://beausimensen.com"
  1205. },
  1206. {
  1207. "name": "Carlos Frutos",
  1208. "email": "carlos@kiwing.it",
  1209. "homepage": "https://github.com/cfrutos"
  1210. }
  1211. ],
  1212. "description": "Given a deep data structure, access data by dot notation.",
  1213. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1214. "keywords": [
  1215. "access",
  1216. "data",
  1217. "dot",
  1218. "notation"
  1219. ],
  1220. "time": "2017-01-20T21:14:22+00:00"
  1221. },
  1222. {
  1223. "name": "dflydev/placeholder-resolver",
  1224. "version": "v1.0.2",
  1225. "source": {
  1226. "type": "git",
  1227. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1228. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  1229. },
  1230. "dist": {
  1231. "type": "zip",
  1232. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1233. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1234. "shasum": ""
  1235. },
  1236. "require": {
  1237. "php": ">=5.3.2"
  1238. },
  1239. "type": "library",
  1240. "extra": {
  1241. "branch-alias": {
  1242. "dev-master": "1.0-dev"
  1243. }
  1244. },
  1245. "autoload": {
  1246. "psr-0": {
  1247. "Dflydev\\PlaceholderResolver": "src"
  1248. }
  1249. },
  1250. "notification-url": "https://packagist.org/downloads/",
  1251. "license": [
  1252. "MIT"
  1253. ],
  1254. "authors": [
  1255. {
  1256. "name": "Dragonfly Development Inc.",
  1257. "email": "info@dflydev.com",
  1258. "homepage": "http://dflydev.com"
  1259. },
  1260. {
  1261. "name": "Beau Simensen",
  1262. "email": "beau@dflydev.com",
  1263. "homepage": "http://beausimensen.com"
  1264. }
  1265. ],
  1266. "description": "Given a data source representing key => value pairs, resolve placeholders like ${foo.bar} to the value associated with the 'foo.bar' key in the data source.",
  1267. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1268. "keywords": [
  1269. "placeholder",
  1270. "resolver"
  1271. ],
  1272. "time": "2012-10-28T21:08:28+00:00"
  1273. },
  1274. {
  1275. "name": "dnoegel/php-xdg-base-dir",
  1276. "version": "v0.1.1",
  1277. "source": {
  1278. "type": "git",
  1279. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1280. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  1281. },
  1282. "dist": {
  1283. "type": "zip",
  1284. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1285. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1286. "shasum": ""
  1287. },
  1288. "require": {
  1289. "php": ">=5.3.2"
  1290. },
  1291. "require-dev": {
  1292. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  1293. },
  1294. "type": "library",
  1295. "autoload": {
  1296. "psr-4": {
  1297. "XdgBaseDir\\": "src/"
  1298. }
  1299. },
  1300. "notification-url": "https://packagist.org/downloads/",
  1301. "license": [
  1302. "MIT"
  1303. ],
  1304. "description": "implementation of xdg base directory specification for php",
  1305. "time": "2019-12-04T15:06:13+00:00"
  1306. },
  1307. {
  1308. "name": "doctrine/annotations",
  1309. "version": "1.11.1",
  1310. "source": {
  1311. "type": "git",
  1312. "url": "https://github.com/doctrine/annotations.git",
  1313. "reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad"
  1314. },
  1315. "dist": {
  1316. "type": "zip",
  1317. "url": "https://api.github.com/repos/doctrine/annotations/zipball/ce77a7ba1770462cd705a91a151b6c3746f9c6ad",
  1318. "reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad",
  1319. "shasum": ""
  1320. },
  1321. "require": {
  1322. "doctrine/lexer": "1.*",
  1323. "ext-tokenizer": "*",
  1324. "php": "^7.1 || ^8.0"
  1325. },
  1326. "require-dev": {
  1327. "doctrine/cache": "1.*",
  1328. "doctrine/coding-standard": "^6.0 || ^8.1",
  1329. "phpstan/phpstan": "^0.12.20",
  1330. "phpunit/phpunit": "^7.5 || ^9.1.5"
  1331. },
  1332. "type": "library",
  1333. "extra": {
  1334. "branch-alias": {
  1335. "dev-master": "1.11.x-dev"
  1336. }
  1337. },
  1338. "autoload": {
  1339. "psr-4": {
  1340. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1341. }
  1342. },
  1343. "notification-url": "https://packagist.org/downloads/",
  1344. "license": [
  1345. "MIT"
  1346. ],
  1347. "authors": [
  1348. {
  1349. "name": "Guilherme Blanco",
  1350. "email": "guilhermeblanco@gmail.com"
  1351. },
  1352. {
  1353. "name": "Roman Borschel",
  1354. "email": "roman@code-factory.org"
  1355. },
  1356. {
  1357. "name": "Benjamin Eberlei",
  1358. "email": "kontakt@beberlei.de"
  1359. },
  1360. {
  1361. "name": "Jonathan Wage",
  1362. "email": "jonwage@gmail.com"
  1363. },
  1364. {
  1365. "name": "Johannes Schmitt",
  1366. "email": "schmittjoh@gmail.com"
  1367. }
  1368. ],
  1369. "description": "Docblock Annotations Parser",
  1370. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1371. "keywords": [
  1372. "annotations",
  1373. "docblock",
  1374. "parser"
  1375. ],
  1376. "time": "2020-10-26T10:28:16+00:00"
  1377. },
  1378. {
  1379. "name": "doctrine/cache",
  1380. "version": "1.10.2",
  1381. "source": {
  1382. "type": "git",
  1383. "url": "https://github.com/doctrine/cache.git",
  1384. "reference": "13e3381b25847283a91948d04640543941309727"
  1385. },
  1386. "dist": {
  1387. "type": "zip",
  1388. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  1389. "reference": "13e3381b25847283a91948d04640543941309727",
  1390. "shasum": ""
  1391. },
  1392. "require": {
  1393. "php": "~7.1 || ^8.0"
  1394. },
  1395. "conflict": {
  1396. "doctrine/common": ">2.2,<2.4"
  1397. },
  1398. "require-dev": {
  1399. "alcaeus/mongo-php-adapter": "^1.1",
  1400. "doctrine/coding-standard": "^6.0",
  1401. "mongodb/mongodb": "^1.1",
  1402. "phpunit/phpunit": "^7.0",
  1403. "predis/predis": "~1.0"
  1404. },
  1405. "suggest": {
  1406. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  1407. },
  1408. "type": "library",
  1409. "extra": {
  1410. "branch-alias": {
  1411. "dev-master": "1.9.x-dev"
  1412. }
  1413. },
  1414. "autoload": {
  1415. "psr-4": {
  1416. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1417. }
  1418. },
  1419. "notification-url": "https://packagist.org/downloads/",
  1420. "license": [
  1421. "MIT"
  1422. ],
  1423. "authors": [
  1424. {
  1425. "name": "Guilherme Blanco",
  1426. "email": "guilhermeblanco@gmail.com"
  1427. },
  1428. {
  1429. "name": "Roman Borschel",
  1430. "email": "roman@code-factory.org"
  1431. },
  1432. {
  1433. "name": "Benjamin Eberlei",
  1434. "email": "kontakt@beberlei.de"
  1435. },
  1436. {
  1437. "name": "Jonathan Wage",
  1438. "email": "jonwage@gmail.com"
  1439. },
  1440. {
  1441. "name": "Johannes Schmitt",
  1442. "email": "schmittjoh@gmail.com"
  1443. }
  1444. ],
  1445. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  1446. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  1447. "keywords": [
  1448. "abstraction",
  1449. "apcu",
  1450. "cache",
  1451. "caching",
  1452. "couchdb",
  1453. "memcached",
  1454. "php",
  1455. "redis",
  1456. "xcache"
  1457. ],
  1458. "funding": [
  1459. {
  1460. "url": "https://www.doctrine-project.org/sponsorship.html",
  1461. "type": "custom"
  1462. },
  1463. {
  1464. "url": "https://www.patreon.com/phpdoctrine",
  1465. "type": "patreon"
  1466. },
  1467. {
  1468. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  1469. "type": "tidelift"
  1470. }
  1471. ],
  1472. "time": "2020-07-07T18:54:01+00:00"
  1473. },
  1474. {
  1475. "name": "doctrine/collections",
  1476. "version": "1.6.7",
  1477. "source": {
  1478. "type": "git",
  1479. "url": "https://github.com/doctrine/collections.git",
  1480. "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a"
  1481. },
  1482. "dist": {
  1483. "type": "zip",
  1484. "url": "https://api.github.com/repos/doctrine/collections/zipball/55f8b799269a1a472457bd1a41b4f379d4cfba4a",
  1485. "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a",
  1486. "shasum": ""
  1487. },
  1488. "require": {
  1489. "php": "^7.1.3 || ^8.0"
  1490. },
  1491. "require-dev": {
  1492. "doctrine/coding-standard": "^6.0",
  1493. "phpstan/phpstan-shim": "^0.9.2",
  1494. "phpunit/phpunit": "^7.0",
  1495. "vimeo/psalm": "^3.8.1"
  1496. },
  1497. "type": "library",
  1498. "autoload": {
  1499. "psr-4": {
  1500. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  1501. }
  1502. },
  1503. "notification-url": "https://packagist.org/downloads/",
  1504. "license": [
  1505. "MIT"
  1506. ],
  1507. "authors": [
  1508. {
  1509. "name": "Guilherme Blanco",
  1510. "email": "guilhermeblanco@gmail.com"
  1511. },
  1512. {
  1513. "name": "Roman Borschel",
  1514. "email": "roman@code-factory.org"
  1515. },
  1516. {
  1517. "name": "Benjamin Eberlei",
  1518. "email": "kontakt@beberlei.de"
  1519. },
  1520. {
  1521. "name": "Jonathan Wage",
  1522. "email": "jonwage@gmail.com"
  1523. },
  1524. {
  1525. "name": "Johannes Schmitt",
  1526. "email": "schmittjoh@gmail.com"
  1527. }
  1528. ],
  1529. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  1530. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  1531. "keywords": [
  1532. "array",
  1533. "collections",
  1534. "iterators",
  1535. "php"
  1536. ],
  1537. "time": "2020-07-27T17:53:49+00:00"
  1538. },
  1539. {
  1540. "name": "doctrine/common",
  1541. "version": "2.13.3",
  1542. "source": {
  1543. "type": "git",
  1544. "url": "https://github.com/doctrine/common.git",
  1545. "reference": "f3812c026e557892c34ef37f6ab808a6b567da7f"
  1546. },
  1547. "dist": {
  1548. "type": "zip",
  1549. "url": "https://api.github.com/repos/doctrine/common/zipball/f3812c026e557892c34ef37f6ab808a6b567da7f",
  1550. "reference": "f3812c026e557892c34ef37f6ab808a6b567da7f",
  1551. "shasum": ""
  1552. },
  1553. "require": {
  1554. "doctrine/annotations": "^1.0",
  1555. "doctrine/cache": "^1.0",
  1556. "doctrine/collections": "^1.0",
  1557. "doctrine/event-manager": "^1.0",
  1558. "doctrine/inflector": "^1.0",
  1559. "doctrine/lexer": "^1.0",
  1560. "doctrine/persistence": "^1.3.3",
  1561. "doctrine/reflection": "^1.0",
  1562. "php": "^7.1 || ^8.0"
  1563. },
  1564. "require-dev": {
  1565. "doctrine/coding-standard": "^1.0",
  1566. "phpstan/phpstan": "^0.11",
  1567. "phpstan/phpstan-phpunit": "^0.11",
  1568. "phpunit/phpunit": "^7.0",
  1569. "squizlabs/php_codesniffer": "^3.0",
  1570. "symfony/phpunit-bridge": "^4.0.5"
  1571. },
  1572. "type": "library",
  1573. "extra": {
  1574. "branch-alias": {
  1575. "dev-master": "2.11.x-dev"
  1576. }
  1577. },
  1578. "autoload": {
  1579. "psr-4": {
  1580. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1581. }
  1582. },
  1583. "notification-url": "https://packagist.org/downloads/",
  1584. "license": [
  1585. "MIT"
  1586. ],
  1587. "authors": [
  1588. {
  1589. "name": "Guilherme Blanco",
  1590. "email": "guilhermeblanco@gmail.com"
  1591. },
  1592. {
  1593. "name": "Roman Borschel",
  1594. "email": "roman@code-factory.org"
  1595. },
  1596. {
  1597. "name": "Benjamin Eberlei",
  1598. "email": "kontakt@beberlei.de"
  1599. },
  1600. {
  1601. "name": "Jonathan Wage",
  1602. "email": "jonwage@gmail.com"
  1603. },
  1604. {
  1605. "name": "Johannes Schmitt",
  1606. "email": "schmittjoh@gmail.com"
  1607. },
  1608. {
  1609. "name": "Marco Pivetta",
  1610. "email": "ocramius@gmail.com"
  1611. }
  1612. ],
  1613. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, persistence interfaces, proxies, event system and much more.",
  1614. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1615. "keywords": [
  1616. "common",
  1617. "doctrine",
  1618. "php"
  1619. ],
  1620. "funding": [
  1621. {
  1622. "url": "https://www.doctrine-project.org/sponsorship.html",
  1623. "type": "custom"
  1624. },
  1625. {
  1626. "url": "https://www.patreon.com/phpdoctrine",
  1627. "type": "patreon"
  1628. },
  1629. {
  1630. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1631. "type": "tidelift"
  1632. }
  1633. ],
  1634. "time": "2020-06-05T16:46:05+00:00"
  1635. },
  1636. {
  1637. "name": "doctrine/event-manager",
  1638. "version": "1.1.1",
  1639. "source": {
  1640. "type": "git",
  1641. "url": "https://github.com/doctrine/event-manager.git",
  1642. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  1643. },
  1644. "dist": {
  1645. "type": "zip",
  1646. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1647. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1648. "shasum": ""
  1649. },
  1650. "require": {
  1651. "php": "^7.1 || ^8.0"
  1652. },
  1653. "conflict": {
  1654. "doctrine/common": "<2.9@dev"
  1655. },
  1656. "require-dev": {
  1657. "doctrine/coding-standard": "^6.0",
  1658. "phpunit/phpunit": "^7.0"
  1659. },
  1660. "type": "library",
  1661. "extra": {
  1662. "branch-alias": {
  1663. "dev-master": "1.0.x-dev"
  1664. }
  1665. },
  1666. "autoload": {
  1667. "psr-4": {
  1668. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1669. }
  1670. },
  1671. "notification-url": "https://packagist.org/downloads/",
  1672. "license": [
  1673. "MIT"
  1674. ],
  1675. "authors": [
  1676. {
  1677. "name": "Guilherme Blanco",
  1678. "email": "guilhermeblanco@gmail.com"
  1679. },
  1680. {
  1681. "name": "Roman Borschel",
  1682. "email": "roman@code-factory.org"
  1683. },
  1684. {
  1685. "name": "Benjamin Eberlei",
  1686. "email": "kontakt@beberlei.de"
  1687. },
  1688. {
  1689. "name": "Jonathan Wage",
  1690. "email": "jonwage@gmail.com"
  1691. },
  1692. {
  1693. "name": "Johannes Schmitt",
  1694. "email": "schmittjoh@gmail.com"
  1695. },
  1696. {
  1697. "name": "Marco Pivetta",
  1698. "email": "ocramius@gmail.com"
  1699. }
  1700. ],
  1701. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1702. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1703. "keywords": [
  1704. "event",
  1705. "event dispatcher",
  1706. "event manager",
  1707. "event system",
  1708. "events"
  1709. ],
  1710. "funding": [
  1711. {
  1712. "url": "https://www.doctrine-project.org/sponsorship.html",
  1713. "type": "custom"
  1714. },
  1715. {
  1716. "url": "https://www.patreon.com/phpdoctrine",
  1717. "type": "patreon"
  1718. },
  1719. {
  1720. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1721. "type": "tidelift"
  1722. }
  1723. ],
  1724. "time": "2020-05-29T18:28:51+00:00"
  1725. },
  1726. {
  1727. "name": "doctrine/inflector",
  1728. "version": "1.4.3",
  1729. "source": {
  1730. "type": "git",
  1731. "url": "https://github.com/doctrine/inflector.git",
  1732. "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c"
  1733. },
  1734. "dist": {
  1735. "type": "zip",
  1736. "url": "https://api.github.com/repos/doctrine/inflector/zipball/4650c8b30c753a76bf44fb2ed00117d6f367490c",
  1737. "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c",
  1738. "shasum": ""
  1739. },
  1740. "require": {
  1741. "php": "^7.2 || ^8.0"
  1742. },
  1743. "require-dev": {
  1744. "doctrine/coding-standard": "^7.0",
  1745. "phpstan/phpstan": "^0.11",
  1746. "phpstan/phpstan-phpunit": "^0.11",
  1747. "phpstan/phpstan-strict-rules": "^0.11",
  1748. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  1749. },
  1750. "type": "library",
  1751. "extra": {
  1752. "branch-alias": {
  1753. "dev-master": "2.0.x-dev"
  1754. }
  1755. },
  1756. "autoload": {
  1757. "psr-4": {
  1758. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector",
  1759. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1760. }
  1761. },
  1762. "notification-url": "https://packagist.org/downloads/",
  1763. "license": [
  1764. "MIT"
  1765. ],
  1766. "authors": [
  1767. {
  1768. "name": "Guilherme Blanco",
  1769. "email": "guilhermeblanco@gmail.com"
  1770. },
  1771. {
  1772. "name": "Roman Borschel",
  1773. "email": "roman@code-factory.org"
  1774. },
  1775. {
  1776. "name": "Benjamin Eberlei",
  1777. "email": "kontakt@beberlei.de"
  1778. },
  1779. {
  1780. "name": "Jonathan Wage",
  1781. "email": "jonwage@gmail.com"
  1782. },
  1783. {
  1784. "name": "Johannes Schmitt",
  1785. "email": "schmittjoh@gmail.com"
  1786. }
  1787. ],
  1788. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1789. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1790. "keywords": [
  1791. "inflection",
  1792. "inflector",
  1793. "lowercase",
  1794. "manipulation",
  1795. "php",
  1796. "plural",
  1797. "singular",
  1798. "strings",
  1799. "uppercase",
  1800. "words"
  1801. ],
  1802. "funding": [
  1803. {
  1804. "url": "https://www.doctrine-project.org/sponsorship.html",
  1805. "type": "custom"
  1806. },
  1807. {
  1808. "url": "https://www.patreon.com/phpdoctrine",
  1809. "type": "patreon"
  1810. },
  1811. {
  1812. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1813. "type": "tidelift"
  1814. }
  1815. ],
  1816. "time": "2020-05-29T07:19:59+00:00"
  1817. },
  1818. {
  1819. "name": "doctrine/lexer",
  1820. "version": "1.2.1",
  1821. "source": {
  1822. "type": "git",
  1823. "url": "https://github.com/doctrine/lexer.git",
  1824. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  1825. },
  1826. "dist": {
  1827. "type": "zip",
  1828. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  1829. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  1830. "shasum": ""
  1831. },
  1832. "require": {
  1833. "php": "^7.2 || ^8.0"
  1834. },
  1835. "require-dev": {
  1836. "doctrine/coding-standard": "^6.0",
  1837. "phpstan/phpstan": "^0.11.8",
  1838. "phpunit/phpunit": "^8.2"
  1839. },
  1840. "type": "library",
  1841. "extra": {
  1842. "branch-alias": {
  1843. "dev-master": "1.2.x-dev"
  1844. }
  1845. },
  1846. "autoload": {
  1847. "psr-4": {
  1848. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1849. }
  1850. },
  1851. "notification-url": "https://packagist.org/downloads/",
  1852. "license": [
  1853. "MIT"
  1854. ],
  1855. "authors": [
  1856. {
  1857. "name": "Guilherme Blanco",
  1858. "email": "guilhermeblanco@gmail.com"
  1859. },
  1860. {
  1861. "name": "Roman Borschel",
  1862. "email": "roman@code-factory.org"
  1863. },
  1864. {
  1865. "name": "Johannes Schmitt",
  1866. "email": "schmittjoh@gmail.com"
  1867. }
  1868. ],
  1869. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1870. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1871. "keywords": [
  1872. "annotations",
  1873. "docblock",
  1874. "lexer",
  1875. "parser",
  1876. "php"
  1877. ],
  1878. "funding": [
  1879. {
  1880. "url": "https://www.doctrine-project.org/sponsorship.html",
  1881. "type": "custom"
  1882. },
  1883. {
  1884. "url": "https://www.patreon.com/phpdoctrine",
  1885. "type": "patreon"
  1886. },
  1887. {
  1888. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1889. "type": "tidelift"
  1890. }
  1891. ],
  1892. "time": "2020-05-25T17:44:05+00:00"
  1893. },
  1894. {
  1895. "name": "doctrine/persistence",
  1896. "version": "1.3.8",
  1897. "source": {
  1898. "type": "git",
  1899. "url": "https://github.com/doctrine/persistence.git",
  1900. "reference": "7a6eac9fb6f61bba91328f15aa7547f4806ca288"
  1901. },
  1902. "dist": {
  1903. "type": "zip",
  1904. "url": "https://api.github.com/repos/doctrine/persistence/zipball/7a6eac9fb6f61bba91328f15aa7547f4806ca288",
  1905. "reference": "7a6eac9fb6f61bba91328f15aa7547f4806ca288",
  1906. "shasum": ""
  1907. },
  1908. "require": {
  1909. "doctrine/annotations": "^1.0",
  1910. "doctrine/cache": "^1.0",
  1911. "doctrine/collections": "^1.0",
  1912. "doctrine/event-manager": "^1.0",
  1913. "doctrine/reflection": "^1.2",
  1914. "php": "^7.1 || ^8.0"
  1915. },
  1916. "conflict": {
  1917. "doctrine/common": "<2.10@dev"
  1918. },
  1919. "require-dev": {
  1920. "doctrine/coding-standard": "^6.0",
  1921. "phpstan/phpstan": "^0.11",
  1922. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1923. "vimeo/psalm": "^3.11"
  1924. },
  1925. "type": "library",
  1926. "extra": {
  1927. "branch-alias": {
  1928. "dev-master": "1.3.x-dev"
  1929. }
  1930. },
  1931. "autoload": {
  1932. "psr-4": {
  1933. "Doctrine\\Common\\": "lib/Doctrine/Common",
  1934. "Doctrine\\Persistence\\": "lib/Doctrine/Persistence"
  1935. }
  1936. },
  1937. "notification-url": "https://packagist.org/downloads/",
  1938. "license": [
  1939. "MIT"
  1940. ],
  1941. "authors": [
  1942. {
  1943. "name": "Guilherme Blanco",
  1944. "email": "guilhermeblanco@gmail.com"
  1945. },
  1946. {
  1947. "name": "Roman Borschel",
  1948. "email": "roman@code-factory.org"
  1949. },
  1950. {
  1951. "name": "Benjamin Eberlei",
  1952. "email": "kontakt@beberlei.de"
  1953. },
  1954. {
  1955. "name": "Jonathan Wage",
  1956. "email": "jonwage@gmail.com"
  1957. },
  1958. {
  1959. "name": "Johannes Schmitt",
  1960. "email": "schmittjoh@gmail.com"
  1961. },
  1962. {
  1963. "name": "Marco Pivetta",
  1964. "email": "ocramius@gmail.com"
  1965. }
  1966. ],
  1967. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1968. "homepage": "https://doctrine-project.org/projects/persistence.html",
  1969. "keywords": [
  1970. "mapper",
  1971. "object",
  1972. "odm",
  1973. "orm",
  1974. "persistence"
  1975. ],
  1976. "funding": [
  1977. {
  1978. "url": "https://www.doctrine-project.org/sponsorship.html",
  1979. "type": "custom"
  1980. },
  1981. {
  1982. "url": "https://www.patreon.com/phpdoctrine",
  1983. "type": "patreon"
  1984. },
  1985. {
  1986. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1987. "type": "tidelift"
  1988. }
  1989. ],
  1990. "time": "2020-06-20T12:56:16+00:00"
  1991. },
  1992. {
  1993. "name": "doctrine/reflection",
  1994. "version": "1.2.2",
  1995. "source": {
  1996. "type": "git",
  1997. "url": "https://github.com/doctrine/reflection.git",
  1998. "reference": "fa587178be682efe90d005e3a322590d6ebb59a5"
  1999. },
  2000. "dist": {
  2001. "type": "zip",
  2002. "url": "https://api.github.com/repos/doctrine/reflection/zipball/fa587178be682efe90d005e3a322590d6ebb59a5",
  2003. "reference": "fa587178be682efe90d005e3a322590d6ebb59a5",
  2004. "shasum": ""
  2005. },
  2006. "require": {
  2007. "doctrine/annotations": "^1.0",
  2008. "ext-tokenizer": "*",
  2009. "php": "^7.1 || ^8.0"
  2010. },
  2011. "conflict": {
  2012. "doctrine/common": "<2.9"
  2013. },
  2014. "require-dev": {
  2015. "doctrine/coding-standard": "^6.0 || ^8.2.0",
  2016. "doctrine/common": "^2.10",
  2017. "phpstan/phpstan": "^0.11.0 || ^0.12.20",
  2018. "phpstan/phpstan-phpunit": "^0.11.0 || ^0.12.16",
  2019. "phpunit/phpunit": "^7.5 || ^9.1.5"
  2020. },
  2021. "type": "library",
  2022. "extra": {
  2023. "branch-alias": {
  2024. "dev-master": "1.2.x-dev"
  2025. }
  2026. },
  2027. "autoload": {
  2028. "psr-4": {
  2029. "Doctrine\\Common\\": "lib/Doctrine/Common"
  2030. }
  2031. },
  2032. "notification-url": "https://packagist.org/downloads/",
  2033. "license": [
  2034. "MIT"
  2035. ],
  2036. "authors": [
  2037. {
  2038. "name": "Guilherme Blanco",
  2039. "email": "guilhermeblanco@gmail.com"
  2040. },
  2041. {
  2042. "name": "Roman Borschel",
  2043. "email": "roman@code-factory.org"
  2044. },
  2045. {
  2046. "name": "Benjamin Eberlei",
  2047. "email": "kontakt@beberlei.de"
  2048. },
  2049. {
  2050. "name": "Jonathan Wage",
  2051. "email": "jonwage@gmail.com"
  2052. },
  2053. {
  2054. "name": "Johannes Schmitt",
  2055. "email": "schmittjoh@gmail.com"
  2056. },
  2057. {
  2058. "name": "Marco Pivetta",
  2059. "email": "ocramius@gmail.com"
  2060. }
  2061. ],
  2062. "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.",
  2063. "homepage": "https://www.doctrine-project.org/projects/reflection.html",
  2064. "keywords": [
  2065. "reflection",
  2066. "static"
  2067. ],
  2068. "abandoned": "roave/better-reflection",
  2069. "time": "2020-10-27T21:46:55+00:00"
  2070. },
  2071. {
  2072. "name": "drupal/address",
  2073. "version": "1.9.0",
  2074. "source": {
  2075. "type": "git",
  2076. "url": "https://git.drupalcode.org/project/address.git",
  2077. "reference": "8.x-1.9"
  2078. },
  2079. "dist": {
  2080. "type": "zip",
  2081. "url": "https://ftp.drupal.org/files/projects/address-8.x-1.9.zip",
  2082. "reference": "8.x-1.9",
  2083. "shasum": "c7e6406d88c6d6be9e8fe0091040d67012bdbf05"
  2084. },
  2085. "require": {
  2086. "commerceguys/addressing": "^1.0.7",
  2087. "drupal/core": "^8.8 || ^9"
  2088. },
  2089. "require-dev": {
  2090. "drupal/token": "^1.0"
  2091. },
  2092. "type": "drupal-module",
  2093. "extra": {
  2094. "drupal": {
  2095. "version": "8.x-1.9",
  2096. "datestamp": "1604422821",
  2097. "security-coverage": {
  2098. "status": "covered",
  2099. "message": "Covered by Drupal's security advisory policy"
  2100. }
  2101. }
  2102. },
  2103. "notification-url": "https://packages.drupal.org/8/downloads",
  2104. "license": [
  2105. "GPL-2.0-or-later"
  2106. ],
  2107. "authors": [
  2108. {
  2109. "name": "bojanz",
  2110. "homepage": "https://www.drupal.org/user/86106"
  2111. },
  2112. {
  2113. "name": "dww",
  2114. "homepage": "https://www.drupal.org/user/46549"
  2115. },
  2116. {
  2117. "name": "googletorp",
  2118. "homepage": "https://www.drupal.org/user/386230"
  2119. },
  2120. {
  2121. "name": "jsacksick",
  2122. "homepage": "https://www.drupal.org/user/972218"
  2123. },
  2124. {
  2125. "name": "mglaman",
  2126. "homepage": "https://www.drupal.org/user/2416470"
  2127. },
  2128. {
  2129. "name": "rszrama",
  2130. "homepage": "https://www.drupal.org/user/49344"
  2131. }
  2132. ],
  2133. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  2134. "homepage": "http://drupal.org/project/address",
  2135. "support": {
  2136. "source": "https://git.drupalcode.org/project/address"
  2137. }
  2138. },
  2139. {
  2140. "name": "drupal/admin_toolbar",
  2141. "version": "2.4.0",
  2142. "source": {
  2143. "type": "git",
  2144. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  2145. "reference": "8.x-2.4"
  2146. },
  2147. "dist": {
  2148. "type": "zip",
  2149. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.4.zip",
  2150. "reference": "8.x-2.4",
  2151. "shasum": "6240047b8d91ac78f98d861ba8282af971fa0b38"
  2152. },
  2153. "require": {
  2154. "drupal/core": "^8.8.0 || ^9.0"
  2155. },
  2156. "type": "drupal-module",
  2157. "extra": {
  2158. "drupal": {
  2159. "version": "8.x-2.4",
  2160. "datestamp": "1601999178",
  2161. "security-coverage": {
  2162. "status": "covered",
  2163. "message": "Covered by Drupal's security advisory policy"
  2164. }
  2165. }
  2166. },
  2167. "notification-url": "https://packages.drupal.org/8/downloads",
  2168. "license": [
  2169. "GPL-2.0-or-later"
  2170. ],
  2171. "authors": [
  2172. {
  2173. "name": "Wilfrid Roze (eme)",
  2174. "homepage": "https://www.drupal.org/u/eme",
  2175. "role": "Maintainer"
  2176. },
  2177. {
  2178. "name": "Romain Jarraud (romainj)",
  2179. "homepage": "https://www.drupal.org/u/romainj",
  2180. "role": "Maintainer"
  2181. },
  2182. {
  2183. "name": "Adrian Cid Almaguer (adriancid)",
  2184. "homepage": "https://www.drupal.org/u/adriancid",
  2185. "email": "adriancid@gmail.com",
  2186. "role": "Maintainer"
  2187. },
  2188. {
  2189. "name": "Mohamed Anis Taktak (matio89)",
  2190. "homepage": "https://www.drupal.org/u/matio89",
  2191. "role": "Maintainer"
  2192. },
  2193. {
  2194. "name": "fethi.krout",
  2195. "homepage": "https://www.drupal.org/user/3206765"
  2196. },
  2197. {
  2198. "name": "matio89",
  2199. "homepage": "https://www.drupal.org/user/2320090"
  2200. },
  2201. {
  2202. "name": "romainj",
  2203. "homepage": "https://www.drupal.org/user/370706"
  2204. }
  2205. ],
  2206. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  2207. "homepage": "http://drupal.org/project/admin_toolbar",
  2208. "keywords": [
  2209. "Drupal",
  2210. "Toolbar"
  2211. ],
  2212. "support": {
  2213. "source": "https://git.drupalcode.org/project/admin_toolbar",
  2214. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  2215. }
  2216. },
  2217. {
  2218. "name": "drupal/adminimal_theme",
  2219. "version": "1.6.0",
  2220. "source": {
  2221. "type": "git",
  2222. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  2223. "reference": "8.x-1.6"
  2224. },
  2225. "dist": {
  2226. "type": "zip",
  2227. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.6.zip",
  2228. "reference": "8.x-1.6",
  2229. "shasum": "89132d0853388afe8dfd11fb83c69a48d8c13413"
  2230. },
  2231. "require": {
  2232. "drupal/core": "^8.8 || ^9"
  2233. },
  2234. "type": "drupal-theme",
  2235. "extra": {
  2236. "drupal": {
  2237. "version": "8.x-1.6",
  2238. "datestamp": "1602006937",
  2239. "security-coverage": {
  2240. "status": "covered",
  2241. "message": "Covered by Drupal's security advisory policy"
  2242. }
  2243. }
  2244. },
  2245. "notification-url": "https://packages.drupal.org/8/downloads",
  2246. "license": [
  2247. "GPL-2.0+"
  2248. ],
  2249. "authors": [
  2250. {
  2251. "name": "ANDiTKO",
  2252. "homepage": "https://www.drupal.org/user/1428124"
  2253. },
  2254. {
  2255. "name": "andrey.troeglazov",
  2256. "homepage": "https://www.drupal.org/user/3145389"
  2257. },
  2258. {
  2259. "name": "realityloop",
  2260. "homepage": "https://www.drupal.org/user/139189"
  2261. }
  2262. ],
  2263. "description": "Drupal administration theme with modern minimalist design.",
  2264. "homepage": "https://www.drupal.org/project/adminimal_theme",
  2265. "support": {
  2266. "source": "https://git.drupalcode.org/project/adminimal_theme",
  2267. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  2268. }
  2269. },
  2270. {
  2271. "name": "drupal/advanced_text_formatter",
  2272. "version": "2.0.0",
  2273. "source": {
  2274. "type": "git",
  2275. "url": "https://git.drupalcode.org/project/advanced_text_formatter.git",
  2276. "reference": "2.0.0"
  2277. },
  2278. "dist": {
  2279. "type": "zip",
  2280. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-2.0.0.zip",
  2281. "reference": "2.0.0",
  2282. "shasum": "ecd1d0e46dfc137251f9b71e724c6edddd5c48df"
  2283. },
  2284. "require": {
  2285. "drupal/core": "^8 || ^9"
  2286. },
  2287. "type": "drupal-module",
  2288. "extra": {
  2289. "drupal": {
  2290. "version": "2.0.0",
  2291. "datestamp": "1591030704",
  2292. "security-coverage": {
  2293. "status": "covered",
  2294. "message": "Covered by Drupal's security advisory policy"
  2295. }
  2296. }
  2297. },
  2298. "notification-url": "https://packages.drupal.org/8/downloads",
  2299. "license": [
  2300. "GPL-2.0-or-later"
  2301. ],
  2302. "authors": [
  2303. {
  2304. "name": "azovsky",
  2305. "homepage": "https://www.drupal.org/user/330533"
  2306. },
  2307. {
  2308. "name": "thmnhat",
  2309. "homepage": "https://www.drupal.org/user/998946"
  2310. }
  2311. ],
  2312. "description": "Provides an additional formatter for text field, text area and text format.",
  2313. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  2314. "support": {
  2315. "source": "https://git.drupalcode.org/project/advanced_text_formatter"
  2316. }
  2317. },
  2318. {
  2319. "name": "drupal/audiofield",
  2320. "version": "1.10.0",
  2321. "source": {
  2322. "type": "git",
  2323. "url": "https://git.drupalcode.org/project/audiofield.git",
  2324. "reference": "8.x-1.10"
  2325. },
  2326. "dist": {
  2327. "type": "zip",
  2328. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.10.zip",
  2329. "reference": "8.x-1.10",
  2330. "shasum": "0b321f6c01b77c2ff28ef8cb646af8ec223dc4c1"
  2331. },
  2332. "require": {
  2333. "drupal/core": "^8 || ^9"
  2334. },
  2335. "type": "drupal-module",
  2336. "extra": {
  2337. "drupal": {
  2338. "version": "8.x-1.10",
  2339. "datestamp": "1607014410",
  2340. "security-coverage": {
  2341. "status": "covered",
  2342. "message": "Covered by Drupal's security advisory policy"
  2343. }
  2344. },
  2345. "drush": {
  2346. "services": {
  2347. "drush.services.yml": "^9"
  2348. }
  2349. }
  2350. },
  2351. "notification-url": "https://packages.drupal.org/8/downloads",
  2352. "license": [
  2353. "GPL-2.0-or-later"
  2354. ],
  2355. "authors": [
  2356. {
  2357. "name": "Daniel Moberly",
  2358. "homepage": "https://www.drupal.org/u/danielmoberly",
  2359. "role": "Maintainer"
  2360. },
  2361. {
  2362. "name": "josipsaric",
  2363. "homepage": "https://www.drupal.org/user/3063287"
  2364. },
  2365. {
  2366. "name": "tamerzg",
  2367. "homepage": "https://www.drupal.org/user/464564"
  2368. }
  2369. ],
  2370. "description": "AudioField Module",
  2371. "homepage": "https://www.drupal.org/project/audiofield",
  2372. "support": {
  2373. "source": "https://git.drupalcode.org/project/audiofield",
  2374. "issues": "https://www.drupal.org/project/issues/audiofield"
  2375. }
  2376. },
  2377. {
  2378. "name": "drupal/autocomplete_deluxe",
  2379. "version": "2.0.0-rc1",
  2380. "source": {
  2381. "type": "git",
  2382. "url": "https://git.drupalcode.org/project/autocomplete_deluxe.git",
  2383. "reference": "2.0.0-rc1"
  2384. },
  2385. "dist": {
  2386. "type": "zip",
  2387. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-2.0.0-rc1.zip",
  2388. "reference": "2.0.0-rc1",
  2389. "shasum": "9f3c63862652862322184bb892cc1fa80c9f47c1"
  2390. },
  2391. "require": {
  2392. "drupal/core": "^8 || ^9"
  2393. },
  2394. "type": "drupal-module",
  2395. "extra": {
  2396. "drupal": {
  2397. "version": "2.0.0-rc1",
  2398. "datestamp": "1592389562",
  2399. "security-coverage": {
  2400. "status": "not-covered",
  2401. "message": "RC releases are not covered by Drupal security advisories."
  2402. }
  2403. }
  2404. },
  2405. "notification-url": "https://packages.drupal.org/8/downloads",
  2406. "license": [
  2407. "GPL-2.0-or-later"
  2408. ],
  2409. "authors": [
  2410. {
  2411. "name": "Vardot",
  2412. "homepage": "https://www.drupal.org/vardot",
  2413. "role": "Maintenance for D8 and D9 versions"
  2414. },
  2415. {
  2416. "name": "Mediacurrent",
  2417. "homepage": "https://www.drupal.org/mediacurrent",
  2418. "role": "Supporting organization"
  2419. },
  2420. {
  2421. "name": "RajabNatshah",
  2422. "homepage": "https://www.drupal.org/user/1414312"
  2423. },
  2424. {
  2425. "name": "edwardchiapet",
  2426. "homepage": "https://www.drupal.org/user/2354784"
  2427. },
  2428. {
  2429. "name": "mpriscella",
  2430. "homepage": "https://www.drupal.org/user/2354820"
  2431. },
  2432. {
  2433. "name": "sepgil",
  2434. "homepage": "https://www.drupal.org/user/512828"
  2435. }
  2436. ],
  2437. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  2438. "homepage": "https://www.drupal.org/project/autocomplete_deluxe",
  2439. "support": {
  2440. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  2441. "issues": "https://www.drupal.org/project/issues/autocomplete_deluxe"
  2442. }
  2443. },
  2444. {
  2445. "name": "drupal/autologout",
  2446. "version": "1.3.0",
  2447. "source": {
  2448. "type": "git",
  2449. "url": "https://git.drupalcode.org/project/autologout.git",
  2450. "reference": "8.x-1.3"
  2451. },
  2452. "dist": {
  2453. "type": "zip",
  2454. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.3.zip",
  2455. "reference": "8.x-1.3",
  2456. "shasum": "87733b2042d9dcdee0d8f33d206872208a8c97ea"
  2457. },
  2458. "require": {
  2459. "drupal/core": "^8 || ^9"
  2460. },
  2461. "type": "drupal-module",
  2462. "extra": {
  2463. "drupal": {
  2464. "version": "8.x-1.3",
  2465. "datestamp": "1587193798",
  2466. "security-coverage": {
  2467. "status": "covered",
  2468. "message": "Covered by Drupal's security advisory policy"
  2469. }
  2470. }
  2471. },
  2472. "notification-url": "https://packages.drupal.org/8/downloads",
  2473. "license": [
  2474. "GPL-2.0+"
  2475. ],
  2476. "authors": [
  2477. {
  2478. "name": "AjK",
  2479. "homepage": "https://www.drupal.org/user/39030"
  2480. },
  2481. {
  2482. "name": "AjitS",
  2483. "homepage": "https://www.drupal.org/user/981944"
  2484. },
  2485. {
  2486. "name": "boshtian",
  2487. "homepage": "https://www.drupal.org/user/1773456"
  2488. },
  2489. {
  2490. "name": "dandrews",
  2491. "homepage": "https://www.drupal.org/user/2014490"
  2492. },
  2493. {
  2494. "name": "darksnow",
  2495. "homepage": "https://www.drupal.org/user/391915"
  2496. },
  2497. {
  2498. "name": "johnennew",
  2499. "homepage": "https://www.drupal.org/user/1150042"
  2500. },
  2501. {
  2502. "name": "jrglasgow",
  2503. "homepage": "https://www.drupal.org/user/36590"
  2504. },
  2505. {
  2506. "name": "kmasood",
  2507. "homepage": "https://www.drupal.org/user/1262860"
  2508. },
  2509. {
  2510. "name": "levelos",
  2511. "homepage": "https://www.drupal.org/user/54135"
  2512. },
  2513. {
  2514. "name": "prabeen.giri",
  2515. "homepage": "https://www.drupal.org/user/913078"
  2516. },
  2517. {
  2518. "name": "str8",
  2519. "homepage": "https://www.drupal.org/user/2865063"
  2520. }
  2521. ],
  2522. "description": "Adds automated timed logout.",
  2523. "homepage": "http://drupal.org/project/autologout",
  2524. "support": {
  2525. "source": "https://git.drupalcode.org/project/autologout"
  2526. }
  2527. },
  2528. {
  2529. "name": "drupal/better_exposed_filters",
  2530. "version": "5.0.0-beta1",
  2531. "source": {
  2532. "type": "git",
  2533. "url": "https://git.drupalcode.org/project/better_exposed_filters.git",
  2534. "reference": "8.x-5.0-beta1"
  2535. },
  2536. "dist": {
  2537. "type": "zip",
  2538. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-8.x-5.0-beta1.zip",
  2539. "reference": "8.x-5.0-beta1",
  2540. "shasum": "bc5ce873fa699ee584fdeb2fd28ad6c5cb456b03"
  2541. },
  2542. "require": {
  2543. "drupal/core": "^8.8 || ^9",
  2544. "drupal/jquery_ui": "^1.4",
  2545. "drupal/jquery_ui_datepicker": "^1.0",
  2546. "drupal/jquery_ui_slider": "^1.1",
  2547. "drupal/jquery_ui_touch_punch": "^1.0"
  2548. },
  2549. "type": "drupal-module",
  2550. "extra": {
  2551. "drupal": {
  2552. "version": "8.x-5.0-beta1",
  2553. "datestamp": "1594141892",
  2554. "security-coverage": {
  2555. "status": "not-covered",
  2556. "message": "Beta releases are not covered by Drupal security advisories."
  2557. }
  2558. }
  2559. },
  2560. "notification-url": "https://packages.drupal.org/8/downloads",
  2561. "license": [
  2562. "GPL-2.0+"
  2563. ],
  2564. "authors": [
  2565. {
  2566. "name": "Mike Keran",
  2567. "homepage": "https://www.drupal.org/u/mikeker"
  2568. },
  2569. {
  2570. "name": "Martin Keereman",
  2571. "homepage": "https://www.drupal.org/u/etroid"
  2572. },
  2573. {
  2574. "name": "chr.fritsch",
  2575. "homepage": "https://www.drupal.org/user/2103716"
  2576. },
  2577. {
  2578. "name": "jkopel",
  2579. "homepage": "https://www.drupal.org/user/66207"
  2580. },
  2581. {
  2582. "name": "mikeker",
  2583. "homepage": "https://www.drupal.org/user/192273"
  2584. },
  2585. {
  2586. "name": "rlhawk",
  2587. "homepage": "https://www.drupal.org/user/352283"
  2588. }
  2589. ],
  2590. "description": "Replaces the Views default single- or multi-select boxes with more advanced options.",
  2591. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2592. "support": {
  2593. "source": "https://git.drupalcode.org/project/better_exposed_filters",
  2594. "issues": "https://www.drupal.org/project/issues/better_exposed_filters"
  2595. }
  2596. },
  2597. {
  2598. "name": "drupal/betterlogin",
  2599. "version": "1.5.0",
  2600. "source": {
  2601. "type": "git",
  2602. "url": "https://git.drupalcode.org/project/betterlogin.git",
  2603. "reference": "8.x-1.5"
  2604. },
  2605. "dist": {
  2606. "type": "zip",
  2607. "url": "https://ftp.drupal.org/files/projects/betterlogin-8.x-1.5.zip",
  2608. "reference": "8.x-1.5",
  2609. "shasum": "2351972813754d0d4f15e49c9a933450dc1297f0"
  2610. },
  2611. "require": {
  2612. "drupal/core": "^8 || ^9"
  2613. },
  2614. "type": "drupal-module",
  2615. "extra": {
  2616. "drupal": {
  2617. "version": "8.x-1.5",
  2618. "datestamp": "1588242718",
  2619. "security-coverage": {
  2620. "status": "covered",
  2621. "message": "Covered by Drupal's security advisory policy"
  2622. }
  2623. }
  2624. },
  2625. "notification-url": "https://packages.drupal.org/8/downloads",
  2626. "license": [
  2627. "GPL-2.0-or-later"
  2628. ],
  2629. "authors": [
  2630. {
  2631. "name": "theamoeba",
  2632. "homepage": "https://www.drupal.org/user/251700"
  2633. },
  2634. {
  2635. "name": "yogeshmpawar",
  2636. "homepage": "https://www.drupal.org/user/2922907"
  2637. }
  2638. ],
  2639. "description": "Make the login screens better :)",
  2640. "homepage": "https://www.drupal.org/project/betterlogin",
  2641. "support": {
  2642. "source": "https://git.drupalcode.org/project/betterlogin"
  2643. }
  2644. },
  2645. {
  2646. "name": "drupal/block_class",
  2647. "version": "1.3.0",
  2648. "source": {
  2649. "type": "git",
  2650. "url": "https://git.drupalcode.org/project/block_class.git",
  2651. "reference": "8.x-1.3"
  2652. },
  2653. "dist": {
  2654. "type": "zip",
  2655. "url": "https://ftp.drupal.org/files/projects/block_class-8.x-1.3.zip",
  2656. "reference": "8.x-1.3",
  2657. "shasum": "29cfdb646ef83210f0eced30b38243339158fe3f"
  2658. },
  2659. "require": {
  2660. "drupal/core": "^8 || ^9"
  2661. },
  2662. "type": "drupal-module",
  2663. "extra": {
  2664. "drupal": {
  2665. "version": "8.x-1.3",
  2666. "datestamp": "1604426178",
  2667. "security-coverage": {
  2668. "status": "covered",
  2669. "message": "Covered by Drupal's security advisory policy"
  2670. }
  2671. }
  2672. },
  2673. "notification-url": "https://packages.drupal.org/8/downloads",
  2674. "license": [
  2675. "GPL-2.0-or-later"
  2676. ],
  2677. "authors": [
  2678. {
  2679. "name": "Todd Nienkerk",
  2680. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2681. "role": "Maintainer"
  2682. },
  2683. {
  2684. "name": "Renato Gonçalves (RenatoG)",
  2685. "homepage": "https://www.drupal.org/u/RenatoG",
  2686. "email": "renatog@ciandt.com",
  2687. "role": "Maintainer"
  2688. },
  2689. {
  2690. "name": "Neslee Canil Pinto",
  2691. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  2692. "role": "Maintainer"
  2693. },
  2694. {
  2695. "name": "Aaron Stanush",
  2696. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2697. "role": "Maintainer"
  2698. },
  2699. {
  2700. "name": "David Suissa (DYdave)",
  2701. "homepage": "https://www.drupal.org/u/DYdave",
  2702. "role": "Maintainer"
  2703. },
  2704. {
  2705. "name": "Four Kitchens",
  2706. "homepage": "https://www.drupal.org/user/358502",
  2707. "role": "Maintainer"
  2708. },
  2709. {
  2710. "name": "berenddeboer",
  2711. "homepage": "https://www.drupal.org/u/berenddeboer",
  2712. "role": "Maintainer"
  2713. },
  2714. {
  2715. "name": "elliotttf",
  2716. "homepage": "https://www.drupal.org/u/elliotttf",
  2717. "role": "Maintainer"
  2718. },
  2719. {
  2720. "name": "Michal Minecki (mirzu)",
  2721. "homepage": "https://www.drupal.org/u/mirzu",
  2722. "role": "Maintainer"
  2723. },
  2724. {
  2725. "name": "Patrick Coffey (pcoffey)",
  2726. "homepage": "https://www.drupal.org/u/pcoffey",
  2727. "role": "Maintainer"
  2728. },
  2729. {
  2730. "name": "Taylor Smith (tsmith512)",
  2731. "homepage": "https://www.drupal.org/u/tsmith512",
  2732. "role": "Maintainer"
  2733. }
  2734. ],
  2735. "description": "Allows assigning classes to Blocks.",
  2736. "homepage": "https://www.drupal.org/project/block_class",
  2737. "keywords": [
  2738. "Drupal"
  2739. ],
  2740. "support": {
  2741. "source": "https://git.drupalcode.org/project/block_class",
  2742. "issues": "https://www.drupal.org/project/issues/block_class",
  2743. "irc": "irc://irc.freenode.org/drupal-contribute"
  2744. }
  2745. },
  2746. {
  2747. "name": "drupal/bulkdelete",
  2748. "version": "dev-1.x",
  2749. "source": {
  2750. "type": "git",
  2751. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2752. "reference": "36e12429e99606463b9ef15203c2018de69965b2"
  2753. },
  2754. "require": {
  2755. "drupal/core": "^8.7.7 || ^9"
  2756. },
  2757. "type": "drupal-module",
  2758. "extra": {
  2759. "branch-alias": {
  2760. "dev-1.x": "1.x-dev"
  2761. },
  2762. "drupal": {
  2763. "version": "8.x-1.x-dev",
  2764. "datestamp": "1590300128",
  2765. "security-coverage": {
  2766. "status": "not-covered",
  2767. "message": "Dev releases are not covered by Drupal security advisories."
  2768. }
  2769. }
  2770. },
  2771. "notification-url": "https://packages.drupal.org/8/downloads",
  2772. "license": [
  2773. "GPL-2.0-or-later"
  2774. ],
  2775. "authors": [
  2776. {
  2777. "name": "Kars-T",
  2778. "homepage": "https://www.drupal.org/user/224499"
  2779. },
  2780. {
  2781. "name": "Rahul Seth",
  2782. "homepage": "https://www.drupal.org/user/2694359"
  2783. },
  2784. {
  2785. "name": "adriancid",
  2786. "homepage": "https://www.drupal.org/user/1962106"
  2787. },
  2788. {
  2789. "name": "robertDouglass",
  2790. "homepage": "https://www.drupal.org/user/5449"
  2791. }
  2792. ],
  2793. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2794. "homepage": "https://www.drupal.org/project/bulkdelete",
  2795. "support": {
  2796. "source": "https://git.drupalcode.org/project/bulkdelete"
  2797. },
  2798. "time": "2020-05-24T06:01:38+00:00"
  2799. },
  2800. {
  2801. "name": "drupal/config_devel",
  2802. "version": "dev-1.x",
  2803. "source": {
  2804. "type": "git",
  2805. "url": "https://git.drupalcode.org/project/config_devel.git",
  2806. "reference": "e519faae46b88fc23a88f64c22b6146cfec863a9"
  2807. },
  2808. "require": {
  2809. "drupal/core": "^8 || ^9"
  2810. },
  2811. "type": "drupal-module",
  2812. "extra": {
  2813. "branch-alias": {
  2814. "dev-1.x": "1.x-dev"
  2815. },
  2816. "drupal": {
  2817. "version": "8.x-1.7+4-dev",
  2818. "datestamp": "1607768995",
  2819. "security-coverage": {
  2820. "status": "not-covered",
  2821. "message": "Dev releases are not covered by Drupal security advisories."
  2822. }
  2823. }
  2824. },
  2825. "notification-url": "https://packages.drupal.org/8/downloads",
  2826. "license": [
  2827. "GPL-2.0+"
  2828. ],
  2829. "authors": [
  2830. {
  2831. "name": "alexpott",
  2832. "homepage": "https://www.drupal.org/user/157725"
  2833. },
  2834. {
  2835. "name": "benjy",
  2836. "homepage": "https://www.drupal.org/user/1852732"
  2837. },
  2838. {
  2839. "name": "chx",
  2840. "homepage": "https://www.drupal.org/user/9446"
  2841. },
  2842. {
  2843. "name": "joachim",
  2844. "homepage": "https://www.drupal.org/user/107701"
  2845. },
  2846. {
  2847. "name": "nedjo",
  2848. "homepage": "https://www.drupal.org/user/4481"
  2849. },
  2850. {
  2851. "name": "tim.plunkett",
  2852. "homepage": "https://www.drupal.org/user/241634"
  2853. },
  2854. {
  2855. "name": "vijaycs85",
  2856. "homepage": "https://www.drupal.org/user/93488"
  2857. }
  2858. ],
  2859. "description": "Helps developers work with configuration.",
  2860. "homepage": "https://www.drupal.org/project/config_devel",
  2861. "support": {
  2862. "source": "https://git.drupalcode.org/project/config_devel"
  2863. },
  2864. "time": "2020-12-11T15:36:08+00:00"
  2865. },
  2866. {
  2867. "name": "drupal/config_filter",
  2868. "version": "1.8.0",
  2869. "source": {
  2870. "type": "git",
  2871. "url": "https://git.drupalcode.org/project/config_filter.git",
  2872. "reference": "8.x-1.8"
  2873. },
  2874. "dist": {
  2875. "type": "zip",
  2876. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.8.zip",
  2877. "reference": "8.x-1.8",
  2878. "shasum": "5def5f97e79d6f5af6bb7007f012443475c90bfe"
  2879. },
  2880. "require": {
  2881. "drupal/core": "^8 || ^9"
  2882. },
  2883. "suggest": {
  2884. "drupal/config_split": "Split site configuration for different environments."
  2885. },
  2886. "type": "drupal-module",
  2887. "extra": {
  2888. "drupal": {
  2889. "version": "8.x-1.8",
  2890. "datestamp": "1603870062",
  2891. "security-coverage": {
  2892. "status": "covered",
  2893. "message": "Covered by Drupal's security advisory policy"
  2894. }
  2895. }
  2896. },
  2897. "notification-url": "https://packages.drupal.org/8/downloads",
  2898. "license": [
  2899. "GPL-2.0-or-later"
  2900. ],
  2901. "authors": [
  2902. {
  2903. "name": "Fabian Bircher",
  2904. "homepage": "https://www.drupal.org/u/bircher",
  2905. "email": "opensource@fabianbircher.com",
  2906. "role": "Maintainer"
  2907. },
  2908. {
  2909. "name": "Nuvole Web",
  2910. "homepage": "http://nuvole.org",
  2911. "email": "info@nuvole.org",
  2912. "role": "Maintainer"
  2913. },
  2914. {
  2915. "name": "pescetti",
  2916. "homepage": "https://www.drupal.org/user/436244"
  2917. }
  2918. ],
  2919. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2920. "homepage": "https://www.drupal.org/project/config_filter",
  2921. "keywords": [
  2922. "Drupal",
  2923. "configuration",
  2924. "configuration management"
  2925. ],
  2926. "support": {
  2927. "source": "https://git.drupalcode.org/project/config_filter",
  2928. "issues": "https://www.drupal.org/project/issues/config_filter",
  2929. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2930. }
  2931. },
  2932. {
  2933. "name": "drupal/config_ignore",
  2934. "version": "2.3.0",
  2935. "source": {
  2936. "type": "git",
  2937. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2938. "reference": "8.x-2.3"
  2939. },
  2940. "dist": {
  2941. "type": "zip",
  2942. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.3.zip",
  2943. "reference": "8.x-2.3",
  2944. "shasum": "2e1f07a455275fb6637909921a8915646601fc00"
  2945. },
  2946. "require": {
  2947. "drupal/config_filter": "^1 || ^2",
  2948. "drupal/core": "^8 || ^9"
  2949. },
  2950. "type": "drupal-module",
  2951. "extra": {
  2952. "drupal": {
  2953. "version": "8.x-2.3",
  2954. "datestamp": "1608306489",
  2955. "security-coverage": {
  2956. "status": "covered",
  2957. "message": "Covered by Drupal's security advisory policy"
  2958. }
  2959. }
  2960. },
  2961. "notification-url": "https://packages.drupal.org/8/downloads",
  2962. "license": [
  2963. "GPL-2.0-or-later"
  2964. ],
  2965. "authors": [
  2966. {
  2967. "name": "Tommy Lynge Jørgensen",
  2968. "homepage": "https://www.drupal.org/u/tlyngej",
  2969. "email": "tlyngej@gmail.com",
  2970. "role": "Maintainer"
  2971. },
  2972. {
  2973. "name": "Fabian Bircher",
  2974. "homepage": "https://www.drupal.org/u/bircher",
  2975. "role": "Maintainer"
  2976. },
  2977. {
  2978. "name": "tlyngej",
  2979. "homepage": "https://www.drupal.org/user/413139"
  2980. }
  2981. ],
  2982. "description": "Ignore certain configuration during import.",
  2983. "homepage": "http://drupal.org/project/config_ignore",
  2984. "support": {
  2985. "source": "https://git.drupalcode.org/project/config_ignore",
  2986. "issues": "http://drupal.org/project/config_ignore",
  2987. "irc": "irc://irc.freenode.org/drupal-contribute"
  2988. }
  2989. },
  2990. {
  2991. "name": "drupal/config_update",
  2992. "version": "1.7.0",
  2993. "source": {
  2994. "type": "git",
  2995. "url": "https://git.drupalcode.org/project/config_update.git",
  2996. "reference": "8.x-1.7"
  2997. },
  2998. "dist": {
  2999. "type": "zip",
  3000. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.7.zip",
  3001. "reference": "8.x-1.7",
  3002. "shasum": "8f079abf7c2ea826a27fa5224b0770a26404c968"
  3003. },
  3004. "require": {
  3005. "drupal/core": "^8 || ^9"
  3006. },
  3007. "type": "drupal-module",
  3008. "extra": {
  3009. "drupal": {
  3010. "version": "8.x-1.7",
  3011. "datestamp": "1586355587",
  3012. "security-coverage": {
  3013. "status": "covered",
  3014. "message": "Covered by Drupal's security advisory policy"
  3015. }
  3016. }
  3017. },
  3018. "notification-url": "https://packages.drupal.org/8/downloads",
  3019. "license": [
  3020. "GPL-2.0-or-later"
  3021. ],
  3022. "authors": [
  3023. {
  3024. "name": "jhodgdon",
  3025. "homepage": "https://www.drupal.org/user/155601"
  3026. },
  3027. {
  3028. "name": "nedjo",
  3029. "homepage": "https://www.drupal.org/user/4481"
  3030. }
  3031. ],
  3032. "description": "Provides basic revert and update functionality for other modules",
  3033. "homepage": "https://www.drupal.org/project/config_update",
  3034. "support": {
  3035. "source": "https://git.drupalcode.org/project/config_update"
  3036. }
  3037. },
  3038. {
  3039. "name": "drupal/console",
  3040. "version": "1.9.7",
  3041. "source": {
  3042. "type": "git",
  3043. "url": "https://github.com/hechoendrupal/drupal-console.git",
  3044. "reference": "90053d30f52427edb4e4941a9063acb65b5a2c1e"
  3045. },
  3046. "dist": {
  3047. "type": "zip",
  3048. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/90053d30f52427edb4e4941a9063acb65b5a2c1e",
  3049. "reference": "90053d30f52427edb4e4941a9063acb65b5a2c1e",
  3050. "shasum": ""
  3051. },
  3052. "require": {
  3053. "alchemy/zippy": "~0.4",
  3054. "composer/installers": "~1.0",
  3055. "doctrine/annotations": "^1.2",
  3056. "doctrine/collections": "^1.3",
  3057. "drupal/console-core": "1.9.7",
  3058. "drupal/console-extend-plugin": "~0.9.5",
  3059. "php": ">=7.0.8",
  3060. "psy/psysh": "0.6.* || ~0.8",
  3061. "symfony/css-selector": "~3.0|~4.0",
  3062. "symfony/dom-crawler": "~3.0|~4.0",
  3063. "symfony/http-foundation": "~3.0|~4.0"
  3064. },
  3065. "suggest": {
  3066. "symfony/thanks": "Thank your favorite PHP projects on GitHub using the CLI",
  3067. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically"
  3068. },
  3069. "bin": [
  3070. "bin/drupal"
  3071. ],
  3072. "type": "library",
  3073. "autoload": {
  3074. "psr-4": {
  3075. "Drupal\\Console\\": "src"
  3076. }
  3077. },
  3078. "notification-url": "https://packagist.org/downloads/",
  3079. "license": [
  3080. "GPL-2.0-or-later"
  3081. ],
  3082. "authors": [
  3083. {
  3084. "name": "David Flores",
  3085. "email": "dmousex@gmail.com",
  3086. "homepage": "http://dmouse.net"
  3087. },
  3088. {
  3089. "name": "Jesus Manuel Olivas",
  3090. "email": "jesus.olivas@gmail.com",
  3091. "homepage": "http://jmolivas.com"
  3092. },
  3093. {
  3094. "name": "Eduardo Garcia",
  3095. "email": "enzo@enzolutions.com",
  3096. "homepage": "http://enzolutions.com/"
  3097. },
  3098. {
  3099. "name": "Omar Aguirre",
  3100. "email": "omersguchigu@gmail.com"
  3101. },
  3102. {
  3103. "name": "Drupal Console Contributors",
  3104. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  3105. }
  3106. ],
  3107. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  3108. "homepage": "http://drupalconsole.com/",
  3109. "keywords": [
  3110. "console",
  3111. "development",
  3112. "drupal",
  3113. "symfony"
  3114. ],
  3115. "funding": [
  3116. {
  3117. "url": "https://opencollective.com/drupalconsole",
  3118. "type": "open_collective"
  3119. }
  3120. ],
  3121. "time": "2020-11-30T02:09:53+00:00"
  3122. },
  3123. {
  3124. "name": "drupal/console-core",
  3125. "version": "1.9.7",
  3126. "source": {
  3127. "type": "git",
  3128. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  3129. "reference": "ab3abc2631761c9588230ba88189d9ba4eb9ed63"
  3130. },
  3131. "dist": {
  3132. "type": "zip",
  3133. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/ab3abc2631761c9588230ba88189d9ba4eb9ed63",
  3134. "reference": "ab3abc2631761c9588230ba88189d9ba4eb9ed63",
  3135. "shasum": ""
  3136. },
  3137. "require": {
  3138. "dflydev/dot-access-configuration": "^1.0",
  3139. "drupal/console-en": "1.9.7",
  3140. "guzzlehttp/guzzle": "~6.1",
  3141. "php": ">=7.0.8",
  3142. "stecman/symfony-console-completion": "~0.7",
  3143. "symfony/config": "~3.0|^4.4",
  3144. "symfony/console": "~3.0|^4.4",
  3145. "symfony/debug": "~3.0|^4.4",
  3146. "symfony/dependency-injection": "~3.0|^4.4",
  3147. "symfony/event-dispatcher": "~3.0|^4.4",
  3148. "symfony/filesystem": "~3.0|^4.4",
  3149. "symfony/finder": "~3.0|^4.4",
  3150. "symfony/process": "~3.0|^4.4",
  3151. "symfony/translation": "~3.0|^4.4",
  3152. "symfony/yaml": "~3.0|^4.4",
  3153. "twig/twig": "^1.38.2|^2.12.0",
  3154. "webflo/drupal-finder": "^1.0",
  3155. "webmozart/path-util": "^2.3"
  3156. },
  3157. "type": "library",
  3158. "autoload": {
  3159. "files": [
  3160. "src/functions.php"
  3161. ],
  3162. "psr-4": {
  3163. "Drupal\\Console\\Core\\": "src"
  3164. }
  3165. },
  3166. "notification-url": "https://packagist.org/downloads/",
  3167. "license": [
  3168. "GPL-2.0-or-later"
  3169. ],
  3170. "authors": [
  3171. {
  3172. "name": "David Flores",
  3173. "email": "dmousex@gmail.com",
  3174. "homepage": "http://dmouse.net"
  3175. },
  3176. {
  3177. "name": "Jesus Manuel Olivas",
  3178. "email": "jesus.olivas@gmail.com",
  3179. "homepage": "http://jmolivas.com"
  3180. },
  3181. {
  3182. "name": "Eduardo Garcia",
  3183. "email": "enzo@enzolutions.com",
  3184. "homepage": "http://enzolutions.com/"
  3185. },
  3186. {
  3187. "name": "Omar Aguirre",
  3188. "email": "omersguchigu@gmail.com"
  3189. },
  3190. {
  3191. "name": "Drupal Console Contributors",
  3192. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3193. }
  3194. ],
  3195. "description": "Drupal Console Core",
  3196. "homepage": "http://drupalconsole.com/",
  3197. "keywords": [
  3198. "console",
  3199. "development",
  3200. "drupal",
  3201. "symfony"
  3202. ],
  3203. "time": "2020-11-30T01:45:57+00:00"
  3204. },
  3205. {
  3206. "name": "drupal/console-en",
  3207. "version": "v1.9.7",
  3208. "source": {
  3209. "type": "git",
  3210. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  3211. "reference": "7594601fff153c2799a62bd678ff80749baeee0c"
  3212. },
  3213. "dist": {
  3214. "type": "zip",
  3215. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/7594601fff153c2799a62bd678ff80749baeee0c",
  3216. "reference": "7594601fff153c2799a62bd678ff80749baeee0c",
  3217. "shasum": ""
  3218. },
  3219. "type": "library",
  3220. "notification-url": "https://packagist.org/downloads/",
  3221. "license": [
  3222. "GPL-2.0-or-later"
  3223. ],
  3224. "authors": [
  3225. {
  3226. "name": "David Flores",
  3227. "email": "dmousex@gmail.com",
  3228. "homepage": "http://dmouse.net"
  3229. },
  3230. {
  3231. "name": "Jesus Manuel Olivas",
  3232. "email": "jesus.olivas@gmail.com",
  3233. "homepage": "http://jmolivas.com"
  3234. },
  3235. {
  3236. "name": "Eduardo Garcia",
  3237. "email": "enzo@enzolutions.com",
  3238. "homepage": "http://enzolutions.com/"
  3239. },
  3240. {
  3241. "name": "Omar Aguirre",
  3242. "email": "omersguchigu@gmail.com"
  3243. },
  3244. {
  3245. "name": "Drupal Console Contributors",
  3246. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3247. }
  3248. ],
  3249. "description": "Drupal Console English Language",
  3250. "homepage": "http://drupalconsole.com/",
  3251. "keywords": [
  3252. "console",
  3253. "development",
  3254. "drupal",
  3255. "symfony"
  3256. ],
  3257. "time": "2020-08-15T03:34:54+00:00"
  3258. },
  3259. {
  3260. "name": "drupal/console-extend-plugin",
  3261. "version": "0.9.5",
  3262. "source": {
  3263. "type": "git",
  3264. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  3265. "reference": "eff6da99cfb5fe1fc60990672d2667c402eb3585"
  3266. },
  3267. "dist": {
  3268. "type": "zip",
  3269. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/eff6da99cfb5fe1fc60990672d2667c402eb3585",
  3270. "reference": "eff6da99cfb5fe1fc60990672d2667c402eb3585",
  3271. "shasum": ""
  3272. },
  3273. "require": {
  3274. "composer-plugin-api": "^1.0 || ^2.0",
  3275. "composer/installers": "^1.2",
  3276. "symfony/finder": "~3.0|^4.4",
  3277. "symfony/yaml": "~3.0|^4.4"
  3278. },
  3279. "type": "composer-plugin",
  3280. "extra": {
  3281. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  3282. },
  3283. "autoload": {
  3284. "psr-4": {
  3285. "Drupal\\Console\\Composer\\Plugin\\": "src"
  3286. }
  3287. },
  3288. "notification-url": "https://packagist.org/downloads/",
  3289. "license": [
  3290. "GPL-2.0+"
  3291. ],
  3292. "authors": [
  3293. {
  3294. "name": "Jesus Manuel Olivas",
  3295. "email": "jesus.olivas@gmail.com"
  3296. }
  3297. ],
  3298. "description": "Drupal Console Extend Plugin",
  3299. "time": "2020-11-18T00:15:28+00:00"
  3300. },
  3301. {
  3302. "name": "drupal/content_lock",
  3303. "version": "2.2.0",
  3304. "source": {
  3305. "type": "git",
  3306. "url": "https://git.drupalcode.org/project/content_lock.git",
  3307. "reference": "8.x-2.2"
  3308. },
  3309. "dist": {
  3310. "type": "zip",
  3311. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.2.zip",
  3312. "reference": "8.x-2.2",
  3313. "shasum": "9ea5810067c0df18879a16a19236e0cb46f9fba7"
  3314. },
  3315. "require": {
  3316. "drupal/core": "^8.8|^9.0"
  3317. },
  3318. "require-dev": {
  3319. "drupal/conflict": "^2.0@ALPHA",
  3320. "drupal/prefetch_cache": "dev-1.x"
  3321. },
  3322. "type": "drupal-module",
  3323. "extra": {
  3324. "drupal": {
  3325. "version": "8.x-2.2",
  3326. "datestamp": "1607936866",
  3327. "security-coverage": {
  3328. "status": "covered",
  3329. "message": "Covered by Drupal's security advisory policy"
  3330. }
  3331. }
  3332. },
  3333. "notification-url": "https://packages.drupal.org/8/downloads",
  3334. "license": [
  3335. "GPL-2.0-or-later"
  3336. ],
  3337. "authors": [
  3338. {
  3339. "name": "chr.fritsch",
  3340. "homepage": "https://www.drupal.org/user/2103716"
  3341. },
  3342. {
  3343. "name": "ergonlogic",
  3344. "homepage": "https://www.drupal.org/user/368613"
  3345. },
  3346. {
  3347. "name": "mfb",
  3348. "homepage": "https://www.drupal.org/user/12302"
  3349. },
  3350. {
  3351. "name": "pandaski",
  3352. "homepage": "https://www.drupal.org/user/1987218"
  3353. }
  3354. ],
  3355. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  3356. "homepage": "https://www.drupal.org/project/content_lock",
  3357. "support": {
  3358. "source": "https://git.drupalcode.org/project/content_lock"
  3359. }
  3360. },
  3361. {
  3362. "name": "drupal/context",
  3363. "version": "4.0.0-beta5",
  3364. "source": {
  3365. "type": "git",
  3366. "url": "https://git.drupalcode.org/project/context.git",
  3367. "reference": "8.x-4.0-beta5"
  3368. },
  3369. "dist": {
  3370. "type": "zip",
  3371. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta5.zip",
  3372. "reference": "8.x-4.0-beta5",
  3373. "shasum": "893d7e6ce07b23764baa6fd609da811ec80c5a04"
  3374. },
  3375. "require": {
  3376. "drupal/core": "^8.8 || ^9"
  3377. },
  3378. "type": "drupal-module",
  3379. "extra": {
  3380. "drupal": {
  3381. "version": "8.x-4.0-beta5",
  3382. "datestamp": "1600783508",
  3383. "security-coverage": {
  3384. "status": "not-covered",
  3385. "message": "Beta releases are not covered by Drupal security advisories."
  3386. }
  3387. }
  3388. },
  3389. "notification-url": "https://packages.drupal.org/8/downloads",
  3390. "license": [
  3391. "MIT"
  3392. ],
  3393. "authors": [
  3394. {
  3395. "name": "Christoffer Palm",
  3396. "homepage": "http://www.oddhill.se/",
  3397. "email": "christoffer.palm@oddhill.se",
  3398. "role": "Developer"
  3399. },
  3400. {
  3401. "name": "Steven Jones",
  3402. "homepage": "https://www.drupal.org/user/99644"
  3403. },
  3404. {
  3405. "name": "alex_b",
  3406. "homepage": "https://www.drupal.org/user/53995"
  3407. },
  3408. {
  3409. "name": "boshtian",
  3410. "homepage": "https://www.drupal.org/user/1773456"
  3411. },
  3412. {
  3413. "name": "colan",
  3414. "homepage": "https://www.drupal.org/user/58704"
  3415. },
  3416. {
  3417. "name": "emanaton",
  3418. "homepage": "https://www.drupal.org/user/120853"
  3419. },
  3420. {
  3421. "name": "febbraro",
  3422. "homepage": "https://www.drupal.org/user/43670"
  3423. },
  3424. {
  3425. "name": "fizk",
  3426. "homepage": "https://www.drupal.org/user/473174"
  3427. },
  3428. {
  3429. "name": "hass",
  3430. "homepage": "https://www.drupal.org/user/85918"
  3431. },
  3432. {
  3433. "name": "hefox",
  3434. "homepage": "https://www.drupal.org/user/426416"
  3435. },
  3436. {
  3437. "name": "jmiccolis",
  3438. "homepage": "https://www.drupal.org/user/31731"
  3439. },
  3440. {
  3441. "name": "nedjo",
  3442. "homepage": "https://www.drupal.org/user/4481"
  3443. },
  3444. {
  3445. "name": "patricksettle",
  3446. "homepage": "https://www.drupal.org/user/26618"
  3447. },
  3448. {
  3449. "name": "paulocs",
  3450. "homepage": "https://www.drupal.org/user/3640109"
  3451. },
  3452. {
  3453. "name": "tekante",
  3454. "homepage": "https://www.drupal.org/user/640024"
  3455. },
  3456. {
  3457. "name": "yhahn",
  3458. "homepage": "https://www.drupal.org/user/264833"
  3459. }
  3460. ],
  3461. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3462. "homepage": "https://github.com/oddhill/context",
  3463. "keywords": [
  3464. "Drupal",
  3465. "block",
  3466. "conditions",
  3467. "context",
  3468. "visibility"
  3469. ],
  3470. "support": {
  3471. "source": "https://github.com/oddhill/context",
  3472. "issues": "https://github.com/oddhill/context/issues",
  3473. "docs": "https://github.com/oddhill/context"
  3474. }
  3475. },
  3476. {
  3477. "name": "drupal/core",
  3478. "version": "9.1.5",
  3479. "source": {
  3480. "type": "git",
  3481. "url": "https://github.com/drupal/core.git",
  3482. "reference": "075ea2e792edbe573a29f02e80d6edf445f18e14"
  3483. },
  3484. "dist": {
  3485. "type": "zip",
  3486. "url": "https://api.github.com/repos/drupal/core/zipball/075ea2e792edbe573a29f02e80d6edf445f18e14",
  3487. "reference": "075ea2e792edbe573a29f02e80d6edf445f18e14",
  3488. "shasum": ""
  3489. },
  3490. "require": {
  3491. "asm89/stack-cors": "^1.1",
  3492. "composer/semver": "^3.0",
  3493. "doctrine/annotations": "^1.4",
  3494. "doctrine/reflection": "^1.1",
  3495. "egulias/email-validator": "^2.0",
  3496. "ext-date": "*",
  3497. "ext-dom": "*",
  3498. "ext-filter": "*",
  3499. "ext-gd": "*",
  3500. "ext-hash": "*",
  3501. "ext-json": "*",
  3502. "ext-pcre": "*",
  3503. "ext-pdo": "*",
  3504. "ext-session": "*",
  3505. "ext-simplexml": "*",
  3506. "ext-spl": "*",
  3507. "ext-tokenizer": "*",
  3508. "ext-xml": "*",
  3509. "guzzlehttp/guzzle": "^6.5.2",
  3510. "laminas/laminas-diactoros": "^2.1",
  3511. "laminas/laminas-feed": "^2.12",
  3512. "masterminds/html5": "^2.1",
  3513. "pear/archive_tar": "^1.4.12",
  3514. "php": ">=7.3.0",
  3515. "psr/log": "^1.0",
  3516. "stack/builder": "^1.0",
  3517. "symfony-cmf/routing": "^2.1",
  3518. "symfony/console": "^4.4",
  3519. "symfony/dependency-injection": "^4.4",
  3520. "symfony/event-dispatcher": "^4.4",
  3521. "symfony/http-foundation": "^4.4.7",
  3522. "symfony/http-kernel": "^4.4",
  3523. "symfony/polyfill-iconv": "^1.0",
  3524. "symfony/process": "^4.4",
  3525. "symfony/psr-http-message-bridge": "^2.0",
  3526. "symfony/routing": "^4.4",
  3527. "symfony/serializer": "^4.4",
  3528. "symfony/translation": "^4.4",
  3529. "symfony/validator": "^4.4",
  3530. "symfony/yaml": "^4.4",
  3531. "twig/twig": "^2.12.0",
  3532. "typo3/phar-stream-wrapper": "^3.1.3"
  3533. },
  3534. "conflict": {
  3535. "drush/drush": "<8.1.10"
  3536. },
  3537. "replace": {
  3538. "drupal/action": "self.version",
  3539. "drupal/aggregator": "self.version",
  3540. "drupal/automated_cron": "self.version",
  3541. "drupal/ban": "self.version",
  3542. "drupal/bartik": "self.version",
  3543. "drupal/basic_auth": "self.version",
  3544. "drupal/big_pipe": "self.version",
  3545. "drupal/block": "self.version",
  3546. "drupal/block_content": "self.version",
  3547. "drupal/book": "self.version",
  3548. "drupal/breakpoint": "self.version",
  3549. "drupal/ckeditor": "self.version",
  3550. "drupal/claro": "self.version",
  3551. "drupal/classy": "self.version",
  3552. "drupal/color": "self.version",
  3553. "drupal/comment": "self.version",
  3554. "drupal/config": "self.version",
  3555. "drupal/config_translation": "self.version",
  3556. "drupal/contact": "self.version",
  3557. "drupal/content_moderation": "self.version",
  3558. "drupal/content_translation": "self.version",
  3559. "drupal/contextual": "self.version",
  3560. "drupal/core-annotation": "self.version",
  3561. "drupal/core-assertion": "self.version",
  3562. "drupal/core-bridge": "self.version",
  3563. "drupal/core-class-finder": "self.version",
  3564. "drupal/core-datetime": "self.version",
  3565. "drupal/core-dependency-injection": "self.version",
  3566. "drupal/core-diff": "self.version",
  3567. "drupal/core-discovery": "self.version",
  3568. "drupal/core-event-dispatcher": "self.version",
  3569. "drupal/core-file-cache": "self.version",
  3570. "drupal/core-file-security": "self.version",
  3571. "drupal/core-filesystem": "self.version",
  3572. "drupal/core-front-matter": "self.version",
  3573. "drupal/core-gettext": "self.version",
  3574. "drupal/core-graph": "self.version",
  3575. "drupal/core-http-foundation": "self.version",
  3576. "drupal/core-php-storage": "self.version",
  3577. "drupal/core-plugin": "self.version",
  3578. "drupal/core-proxy-builder": "self.version",
  3579. "drupal/core-render": "self.version",
  3580. "drupal/core-serialization": "self.version",
  3581. "drupal/core-transliteration": "self.version",
  3582. "drupal/core-utility": "self.version",
  3583. "drupal/core-uuid": "self.version",
  3584. "drupal/core-version": "self.version",
  3585. "drupal/datetime": "self.version",
  3586. "drupal/datetime_range": "self.version",
  3587. "drupal/dblog": "self.version",
  3588. "drupal/dynamic_page_cache": "self.version",
  3589. "drupal/editor": "self.version",
  3590. "drupal/entity_reference": "self.version",
  3591. "drupal/field": "self.version",
  3592. "drupal/field_layout": "self.version",
  3593. "drupal/field_ui": "self.version",
  3594. "drupal/file": "self.version",
  3595. "drupal/filter": "self.version",
  3596. "drupal/forum": "self.version",
  3597. "drupal/hal": "self.version",
  3598. "drupal/help": "self.version",
  3599. "drupal/help_topics": "self.version",
  3600. "drupal/history": "self.version",
  3601. "drupal/image": "self.version",
  3602. "drupal/inline_form_errors": "self.version",
  3603. "drupal/jsonapi": "self.version",
  3604. "drupal/language": "self.version",
  3605. "drupal/layout_builder": "self.version",
  3606. "drupal/layout_discovery": "self.version",
  3607. "drupal/link": "self.version",
  3608. "drupal/locale": "self.version",
  3609. "drupal/media": "self.version",
  3610. "drupal/media_library": "self.version",
  3611. "drupal/menu_link_content": "self.version",
  3612. "drupal/menu_ui": "self.version",
  3613. "drupal/migrate": "self.version",
  3614. "drupal/migrate_drupal": "self.version",
  3615. "drupal/migrate_drupal_multilingual": "self.version",
  3616. "drupal/migrate_drupal_ui": "self.version",
  3617. "drupal/minimal": "self.version",
  3618. "drupal/node": "self.version",
  3619. "drupal/olivero": "self.version",
  3620. "drupal/options": "self.version",
  3621. "drupal/page_cache": "self.version",
  3622. "drupal/path": "self.version",
  3623. "drupal/path_alias": "self.version",
  3624. "drupal/quickedit": "self.version",
  3625. "drupal/rdf": "self.version",
  3626. "drupal/responsive_image": "self.version",
  3627. "drupal/rest": "self.version",
  3628. "drupal/search": "self.version",
  3629. "drupal/serialization": "self.version",
  3630. "drupal/settings_tray": "self.version",
  3631. "drupal/seven": "self.version",
  3632. "drupal/shortcut": "self.version",
  3633. "drupal/standard": "self.version",
  3634. "drupal/stark": "self.version",
  3635. "drupal/statistics": "self.version",
  3636. "drupal/syslog": "self.version",
  3637. "drupal/system": "self.version",
  3638. "drupal/taxonomy": "self.version",
  3639. "drupal/telephone": "self.version",
  3640. "drupal/text": "self.version",
  3641. "drupal/toolbar": "self.version",
  3642. "drupal/tour": "self.version",
  3643. "drupal/tracker": "self.version",
  3644. "drupal/update": "self.version",
  3645. "drupal/user": "self.version",
  3646. "drupal/views": "self.version",
  3647. "drupal/views_ui": "self.version",
  3648. "drupal/workflows": "self.version",
  3649. "drupal/workspaces": "self.version"
  3650. },
  3651. "type": "drupal-core",
  3652. "extra": {
  3653. "drupal-scaffold": {
  3654. "file-mapping": {
  3655. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  3656. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  3657. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  3658. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  3659. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  3660. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  3661. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  3662. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  3663. "[web-root]/index.php": "assets/scaffold/files/index.php",
  3664. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  3665. "[web-root]/README.txt": "assets/scaffold/files/drupal.README.txt",
  3666. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  3667. "[web-root]/update.php": "assets/scaffold/files/update.php",
  3668. "[web-root]/web.config": "assets/scaffold/files/web.config",
  3669. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  3670. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  3671. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  3672. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  3673. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  3674. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  3675. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  3676. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  3677. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  3678. }
  3679. }
  3680. },
  3681. "autoload": {
  3682. "psr-4": {
  3683. "Drupal\\Core\\": "lib/Drupal/Core",
  3684. "Drupal\\Component\\": "lib/Drupal/Component",
  3685. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
  3686. },
  3687. "classmap": [
  3688. "lib/Drupal.php",
  3689. "lib/Drupal/Component/DependencyInjection/Container.php",
  3690. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  3691. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  3692. "lib/Drupal/Component/Utility/Timer.php",
  3693. "lib/Drupal/Component/Utility/Unicode.php",
  3694. "lib/Drupal/Core/Cache/Cache.php",
  3695. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  3696. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  3697. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  3698. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  3699. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  3700. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  3701. "lib/Drupal/Core/Database/Connection.php",
  3702. "lib/Drupal/Core/Database/Database.php",
  3703. "lib/Drupal/Core/Database/Driver/mysql/Connection.php",
  3704. "lib/Drupal/Core/Database/Driver/pgsql/Connection.php",
  3705. "lib/Drupal/Core/Database/Driver/sqlite/Connection.php",
  3706. "lib/Drupal/Core/Database/Statement.php",
  3707. "lib/Drupal/Core/Database/StatementInterface.php",
  3708. "lib/Drupal/Core/DependencyInjection/Container.php",
  3709. "lib/Drupal/Core/DrupalKernel.php",
  3710. "lib/Drupal/Core/DrupalKernelInterface.php",
  3711. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  3712. "lib/Drupal/Core/Site/Settings.php"
  3713. ],
  3714. "files": [
  3715. "includes/bootstrap.inc"
  3716. ]
  3717. },
  3718. "scripts": {
  3719. "pre-autoload-dump": [
  3720. "Drupal\\Core\\Composer\\Composer::preAutoloadDump"
  3721. ],
  3722. "post-autoload-dump": [
  3723. "Drupal\\Core\\Composer\\Composer::ensureHtaccess"
  3724. ]
  3725. },
  3726. "license": [
  3727. "GPL-2.0-or-later"
  3728. ],
  3729. "description": "Drupal is an open source content management platform powering millions of websites and applications."
  3730. },
  3731. {
  3732. "name": "drupal/core-composer-scaffold",
  3733. "version": "9.1.5",
  3734. "source": {
  3735. "type": "git",
  3736. "url": "https://github.com/drupal/core-composer-scaffold.git",
  3737. "reference": "7b125516d6568b888945ee03ac2636dcced76e8d"
  3738. },
  3739. "dist": {
  3740. "type": "zip",
  3741. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/7b125516d6568b888945ee03ac2636dcced76e8d",
  3742. "reference": "7b125516d6568b888945ee03ac2636dcced76e8d",
  3743. "shasum": ""
  3744. },
  3745. "require": {
  3746. "composer-plugin-api": "^1 || ^2",
  3747. "php": ">=7.3.0"
  3748. },
  3749. "conflict": {
  3750. "drupal-composer/drupal-scaffold": "*"
  3751. },
  3752. "require-dev": {
  3753. "composer/composer": "^1.8@stable"
  3754. },
  3755. "type": "composer-plugin",
  3756. "extra": {
  3757. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  3758. "branch-alias": {
  3759. "dev-master": "1.0.x-dev"
  3760. }
  3761. },
  3762. "autoload": {
  3763. "psr-4": {
  3764. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  3765. }
  3766. },
  3767. "license": [
  3768. "GPL-2.0-or-later"
  3769. ],
  3770. "description": "A flexible Composer project scaffold builder.",
  3771. "homepage": "https://www.drupal.org/project/drupal",
  3772. "keywords": [
  3773. "drupal"
  3774. ]
  3775. },
  3776. {
  3777. "name": "drupal/core-project-message",
  3778. "version": "9.1.5",
  3779. "source": {
  3780. "type": "git",
  3781. "url": "https://github.com/drupal/core-project-message.git",
  3782. "reference": "812d6da43dd49cc210af62e80fa92189e68e565a"
  3783. },
  3784. "dist": {
  3785. "type": "zip",
  3786. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/812d6da43dd49cc210af62e80fa92189e68e565a",
  3787. "reference": "812d6da43dd49cc210af62e80fa92189e68e565a",
  3788. "shasum": ""
  3789. },
  3790. "require": {
  3791. "composer-plugin-api": "^1.1 || ^2",
  3792. "php": ">=7.3.0"
  3793. },
  3794. "type": "composer-plugin",
  3795. "extra": {
  3796. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  3797. },
  3798. "autoload": {
  3799. "psr-4": {
  3800. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  3801. }
  3802. },
  3803. "license": [
  3804. "GPL-2.0-or-later"
  3805. ],
  3806. "description": "Adds a message after Composer installation.",
  3807. "homepage": "https://www.drupal.org/project/drupal",
  3808. "keywords": [
  3809. "drupal"
  3810. ]
  3811. },
  3812. {
  3813. "name": "drupal/core-recommended",
  3814. "version": "9.1.5",
  3815. "source": {
  3816. "type": "git",
  3817. "url": "https://github.com/drupal/core-recommended.git",
  3818. "reference": "809cd5dd382f95abf1e81abf8910c0eb9c97f012"
  3819. },
  3820. "dist": {
  3821. "type": "zip",
  3822. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/809cd5dd382f95abf1e81abf8910c0eb9c97f012",
  3823. "reference": "809cd5dd382f95abf1e81abf8910c0eb9c97f012",
  3824. "shasum": ""
  3825. },
  3826. "require": {
  3827. "asm89/stack-cors": "1.3.0",
  3828. "composer/semver": "3.2.2",
  3829. "doctrine/annotations": "1.11.1",
  3830. "doctrine/lexer": "1.2.1",
  3831. "doctrine/reflection": "1.2.2",
  3832. "drupal/core": "9.1.5",
  3833. "egulias/email-validator": "2.1.22",
  3834. "guzzlehttp/guzzle": "6.5.5",
  3835. "guzzlehttp/promises": "1.4.0",
  3836. "guzzlehttp/psr7": "1.7.0",
  3837. "laminas/laminas-diactoros": "2.5.0",
  3838. "laminas/laminas-escaper": "2.7.0",
  3839. "laminas/laminas-feed": "2.13.0",
  3840. "laminas/laminas-stdlib": "3.3.0",
  3841. "laminas/laminas-zendframework-bridge": "1.1.1",
  3842. "masterminds/html5": "2.7.4",
  3843. "pear/archive_tar": "1.4.13",
  3844. "pear/console_getopt": "v1.4.3",
  3845. "pear/pear-core-minimal": "v1.10.10",
  3846. "pear/pear_exception": "v1.0.1",
  3847. "psr/container": "1.0.0",
  3848. "psr/http-factory": "1.0.1",
  3849. "psr/http-message": "1.0.1",
  3850. "psr/log": "1.1.3",
  3851. "ralouphie/getallheaders": "3.0.3",
  3852. "stack/builder": "v1.0.6",
  3853. "symfony-cmf/routing": "2.3.3",
  3854. "symfony/console": "v4.4.16",
  3855. "symfony/debug": "v4.4.16",
  3856. "symfony/dependency-injection": "v4.4.16",
  3857. "symfony/error-handler": "v4.4.16",
  3858. "symfony/event-dispatcher": "v4.4.16",
  3859. "symfony/event-dispatcher-contracts": "v1.1.9",
  3860. "symfony/http-client-contracts": "v2.3.1",
  3861. "symfony/http-foundation": "v4.4.16",
  3862. "symfony/http-kernel": "v4.4.16",
  3863. "symfony/mime": "v5.1.8",
  3864. "symfony/polyfill-ctype": "v1.20.0",
  3865. "symfony/polyfill-iconv": "v1.20.0",
  3866. "symfony/polyfill-intl-idn": "v1.20.0",
  3867. "symfony/polyfill-intl-normalizer": "v1.20.0",
  3868. "symfony/polyfill-mbstring": "v1.20.0",
  3869. "symfony/polyfill-php80": "v1.20.0",
  3870. "symfony/process": "v4.4.16",
  3871. "symfony/psr-http-message-bridge": "v2.0.2",
  3872. "symfony/routing": "v4.4.16",
  3873. "symfony/serializer": "v4.4.16",
  3874. "symfony/service-contracts": "v2.2.0",
  3875. "symfony/translation": "v4.4.16",
  3876. "symfony/translation-contracts": "v2.3.0",
  3877. "symfony/validator": "v4.4.16",
  3878. "symfony/var-dumper": "v5.1.8",
  3879. "symfony/yaml": "v4.4.16",
  3880. "twig/twig": "v2.14.1",
  3881. "typo3/phar-stream-wrapper": "v3.1.6"
  3882. },
  3883. "conflict": {
  3884. "webflo/drupal-core-strict": "*"
  3885. },
  3886. "type": "metapackage",
  3887. "license": [
  3888. "GPL-2.0-or-later"
  3889. ],
  3890. "description": "Locked core dependencies; require this project INSTEAD OF drupal/core."
  3891. },
  3892. {
  3893. "name": "drupal/cshs",
  3894. "version": "dev-1.x",
  3895. "source": {
  3896. "type": "git",
  3897. "url": "https://git.drupalcode.org/project/cshs.git",
  3898. "reference": "fb5b1b8eff6391819b28bf9bf1cce5d1c5b7423f"
  3899. },
  3900. "require": {
  3901. "drupal/core": "^8 || ^9",
  3902. "php": ">=7.1.0"
  3903. },
  3904. "type": "drupal-module",
  3905. "extra": {
  3906. "branch-alias": {
  3907. "dev-1.x": "1.x-dev"
  3908. },
  3909. "drupal": {
  3910. "version": "8.x-1.7+0-dev",
  3911. "datestamp": "1612535860",
  3912. "security-coverage": {
  3913. "status": "not-covered",
  3914. "message": "Dev releases are not covered by Drupal security advisories."
  3915. }
  3916. }
  3917. },
  3918. "notification-url": "https://packages.drupal.org/8/downloads",
  3919. "license": [
  3920. "GPL-2.0-or-later"
  3921. ],
  3922. "authors": [
  3923. {
  3924. "name": "Walter Jenner",
  3925. "homepage": "https://drupal.org/u/valderama"
  3926. },
  3927. {
  3928. "name": "Sergii Bondarenko",
  3929. "homepage": "https://drupal.org/u/BR0kEN",
  3930. "email": "sb@firstvector.org"
  3931. },
  3932. {
  3933. "name": "Daneel Cruz",
  3934. "homepage": "https://drupal.org/u/daneelcm"
  3935. },
  3936. {
  3937. "name": "Purushotam Rai",
  3938. "homepage": "https://drupal.org/u/purushotam.rai"
  3939. }
  3940. ],
  3941. "description": "A simple client-side hierarchical select widget for taxonomy terms.",
  3942. "homepage": "https://www.drupal.org/project/cshs",
  3943. "keywords": [
  3944. "client-side-select",
  3945. "hierarchical-select",
  3946. "module",
  3947. "select",
  3948. "taxonomy"
  3949. ],
  3950. "support": {
  3951. "source": "https://git.drupalcode.org/project/cshs",
  3952. "issues": "https://www.drupal.org/project/issues/cshs"
  3953. },
  3954. "time": "2021-02-05T14:23:54+00:00"
  3955. },
  3956. {
  3957. "name": "drupal/ctools",
  3958. "version": "3.4.0",
  3959. "source": {
  3960. "type": "git",
  3961. "url": "https://git.drupalcode.org/project/ctools.git",
  3962. "reference": "8.x-3.4"
  3963. },
  3964. "dist": {
  3965. "type": "zip",
  3966. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.4.zip",
  3967. "reference": "8.x-3.4",
  3968. "shasum": "016ca5abb7ac4ca720352a72e8989f3ef0e20539"
  3969. },
  3970. "require": {
  3971. "drupal/core": "^8.7.7 || ^9"
  3972. },
  3973. "type": "drupal-module",
  3974. "extra": {
  3975. "drupal": {
  3976. "version": "8.x-3.4",
  3977. "datestamp": "1585763383",
  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+"
  3987. ],
  3988. "authors": [
  3989. {
  3990. "name": "Kris Vanderwater (EclipseGc)",
  3991. "homepage": "https://www.drupal.org/u/eclipsegc",
  3992. "role": "Maintainer"
  3993. },
  3994. {
  3995. "name": "Jakob Perry (japerry)",
  3996. "homepage": "https://www.drupal.org/u/japerry",
  3997. "role": "Maintainer"
  3998. },
  3999. {
  4000. "name": "Tim Plunkett (tim.plunkett)",
  4001. "homepage": "https://www.drupal.org/u/timplunkett",
  4002. "role": "Maintainer"
  4003. },
  4004. {
  4005. "name": "James Gilliland (neclimdul)",
  4006. "homepage": "https://www.drupal.org/u/neclimdul",
  4007. "role": "Maintainer"
  4008. },
  4009. {
  4010. "name": "Daniel Wehner (dawehner)",
  4011. "homepage": "https://www.drupal.org/u/dawehner",
  4012. "role": "Maintainer"
  4013. },
  4014. {
  4015. "name": "joelpittet",
  4016. "homepage": "https://www.drupal.org/user/160302"
  4017. },
  4018. {
  4019. "name": "merlinofchaos",
  4020. "homepage": "https://www.drupal.org/user/26979"
  4021. },
  4022. {
  4023. "name": "neclimdul",
  4024. "homepage": "https://www.drupal.org/user/48673"
  4025. },
  4026. {
  4027. "name": "sdboyer",
  4028. "homepage": "https://www.drupal.org/user/146719"
  4029. },
  4030. {
  4031. "name": "sun",
  4032. "homepage": "https://www.drupal.org/user/54136"
  4033. },
  4034. {
  4035. "name": "tim.plunkett",
  4036. "homepage": "https://www.drupal.org/user/241634"
  4037. }
  4038. ],
  4039. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  4040. "homepage": "https://www.drupal.org/project/ctools",
  4041. "support": {
  4042. "source": "https://git.drupalcode.org/project/ctools",
  4043. "issues": "https://www.drupal.org/project/issues/ctools"
  4044. }
  4045. },
  4046. {
  4047. "name": "drupal/date_range_formatter",
  4048. "version": "dev-9.0.x",
  4049. "source": {
  4050. "type": "git",
  4051. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  4052. "reference": "c34acb20c37e6210099bf3080352a6da7227b867"
  4053. },
  4054. "require": {
  4055. "drupal/core": "^8 || ^9"
  4056. },
  4057. "type": "drupal-module",
  4058. "extra": {
  4059. "branch-alias": {
  4060. "dev-9.0.x": "9.0.x-dev"
  4061. },
  4062. "drupal": {
  4063. "version": "9.0.x-dev",
  4064. "datestamp": "1589956448",
  4065. "security-coverage": {
  4066. "status": "not-covered",
  4067. "message": "Dev releases are not covered by Drupal security advisories."
  4068. }
  4069. }
  4070. },
  4071. "notification-url": "https://packages.drupal.org/8/downloads",
  4072. "license": [
  4073. "GPL-2.0-or-later"
  4074. ],
  4075. "authors": [
  4076. {
  4077. "name": "maximpodorov",
  4078. "homepage": "https://www.drupal.org/user/515310"
  4079. },
  4080. {
  4081. "name": "sudishth",
  4082. "homepage": "https://www.drupal.org/user/1440562"
  4083. }
  4084. ],
  4085. "description": "Formats date ranges.",
  4086. "homepage": "https://www.drupal.org/project/date_range_formatter",
  4087. "support": {
  4088. "source": "https://git.drupalcode.org/project/date_range_formatter"
  4089. },
  4090. "time": "2020-05-20T06:32:37+00:00"
  4091. },
  4092. {
  4093. "name": "drupal/devel",
  4094. "version": "4.1.1",
  4095. "source": {
  4096. "type": "git",
  4097. "url": "https://git.drupalcode.org/project/devel.git",
  4098. "reference": "4.1.1"
  4099. },
  4100. "dist": {
  4101. "type": "zip",
  4102. "url": "https://ftp.drupal.org/files/projects/devel-4.1.1.zip",
  4103. "reference": "4.1.1",
  4104. "shasum": "88e5d49dda26a3136291ecd97bc6c8e897b24198"
  4105. },
  4106. "require": {
  4107. "doctrine/common": "^2.7",
  4108. "drupal/core": "^8.8 || ^9",
  4109. "symfony/var-dumper": "^4 || ^5"
  4110. },
  4111. "conflict": {
  4112. "kint-php/kint": "<3"
  4113. },
  4114. "require-dev": {
  4115. "drush/drush": "^10"
  4116. },
  4117. "suggest": {
  4118. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  4119. },
  4120. "type": "drupal-module",
  4121. "extra": {
  4122. "drupal": {
  4123. "version": "4.1.1",
  4124. "datestamp": "1609419527",
  4125. "security-coverage": {
  4126. "status": "covered",
  4127. "message": "Covered by Drupal's security advisory policy"
  4128. }
  4129. },
  4130. "drush": {
  4131. "services": {
  4132. "drush.services.yml": "^9 || ^10"
  4133. }
  4134. }
  4135. },
  4136. "notification-url": "https://packages.drupal.org/8/downloads",
  4137. "license": [
  4138. "GPL-2.0-or-later"
  4139. ],
  4140. "authors": [
  4141. {
  4142. "name": "drupalspoons",
  4143. "homepage": "https://www.drupal.org/user/3647684"
  4144. },
  4145. {
  4146. "name": "moshe weitzman",
  4147. "homepage": "https://www.drupal.org/user/23"
  4148. }
  4149. ],
  4150. "description": "Various blocks, pages, and functions for developers.",
  4151. "homepage": "https://www.drupal.org/project/devel",
  4152. "support": {
  4153. "source": "https://gitlab.com/drupalspoons/devel",
  4154. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  4155. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  4156. }
  4157. },
  4158. {
  4159. "name": "drupal/domain",
  4160. "version": "dev-1.x",
  4161. "source": {
  4162. "type": "git",
  4163. "url": "https://git.drupalcode.org/project/domain.git",
  4164. "reference": "699198404cee4688650639ac11c1b9f30cd57cec"
  4165. },
  4166. "require": {
  4167. "drupal/core": "^8 || ^9"
  4168. },
  4169. "require-dev": {
  4170. "drupal/domain_access": "*",
  4171. "drupal/domain_config": "*"
  4172. },
  4173. "type": "drupal-module",
  4174. "extra": {
  4175. "branch-alias": {
  4176. "dev-1.x": "1.x-dev"
  4177. },
  4178. "drupal": {
  4179. "version": "8.x-1.x-dev",
  4180. "datestamp": "1614265913",
  4181. "security-coverage": {
  4182. "status": "not-covered",
  4183. "message": "Dev releases are not covered by Drupal security advisories."
  4184. }
  4185. }
  4186. },
  4187. "notification-url": "https://packages.drupal.org/8/downloads",
  4188. "license": [
  4189. "GPL-2.0-or-later"
  4190. ],
  4191. "authors": [
  4192. {
  4193. "name": "agentrickard",
  4194. "homepage": "https://www.drupal.org/user/20975"
  4195. },
  4196. {
  4197. "name": "nonsie",
  4198. "homepage": "https://www.drupal.org/user/29899"
  4199. }
  4200. ],
  4201. "description": "Creates domain records within a Drupal installation.",
  4202. "homepage": "https://www.drupal.org/project/domain",
  4203. "support": {
  4204. "source": "https://git.drupalcode.org/project/domain"
  4205. },
  4206. "time": "2021-02-25T15:11:26+00:00"
  4207. },
  4208. {
  4209. "name": "drupal/domain_alias",
  4210. "version": "dev-1.x",
  4211. "require": {
  4212. "drupal/core": "^8 || ^9",
  4213. "drupal/domain": "*"
  4214. },
  4215. "type": "metapackage",
  4216. "extra": {
  4217. "branch-alias": {
  4218. "dev-1.x": "1.x-dev"
  4219. },
  4220. "drupal": {
  4221. "version": "8.x-1.x-dev",
  4222. "datestamp": "1614265913",
  4223. "security-coverage": {
  4224. "status": "not-covered",
  4225. "message": "Dev releases are not covered by Drupal security advisories."
  4226. }
  4227. }
  4228. },
  4229. "notification-url": "https://packages.drupal.org/8/downloads",
  4230. "license": [
  4231. "GPL-2.0-or-later"
  4232. ],
  4233. "authors": [
  4234. {
  4235. "name": "agentrickard",
  4236. "homepage": "https://www.drupal.org/user/20975"
  4237. },
  4238. {
  4239. "name": "nonsie",
  4240. "homepage": "https://www.drupal.org/user/29899"
  4241. }
  4242. ],
  4243. "description": "Maps multiple host requests to a single domain record.",
  4244. "homepage": "https://www.drupal.org/project/domain",
  4245. "support": {
  4246. "source": "https://git.drupalcode.org/project/domain"
  4247. }
  4248. },
  4249. {
  4250. "name": "drupal/domain_config",
  4251. "version": "dev-1.x",
  4252. "require": {
  4253. "drupal/core": "^8 || ^9",
  4254. "drupal/domain": "*"
  4255. },
  4256. "type": "metapackage",
  4257. "extra": {
  4258. "branch-alias": {
  4259. "dev-1.x": "1.x-dev"
  4260. },
  4261. "drupal": {
  4262. "version": "8.x-1.x-dev",
  4263. "datestamp": "1614265913",
  4264. "security-coverage": {
  4265. "status": "not-covered",
  4266. "message": "Dev releases are not covered by Drupal security advisories."
  4267. }
  4268. }
  4269. },
  4270. "notification-url": "https://packages.drupal.org/8/downloads",
  4271. "license": [
  4272. "GPL-2.0-or-later"
  4273. ],
  4274. "authors": [
  4275. {
  4276. "name": "agentrickard",
  4277. "homepage": "https://www.drupal.org/user/20975"
  4278. },
  4279. {
  4280. "name": "nonsie",
  4281. "homepage": "https://www.drupal.org/user/29899"
  4282. }
  4283. ],
  4284. "description": "Allows domain specific configuration.",
  4285. "homepage": "https://www.drupal.org/project/domain",
  4286. "support": {
  4287. "source": "https://git.drupalcode.org/project/domain"
  4288. }
  4289. },
  4290. {
  4291. "name": "drupal/domain_site_settings",
  4292. "version": "dev-1.x",
  4293. "source": {
  4294. "type": "git",
  4295. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  4296. "reference": "b3177fc7257cae13fe9c6ff6f65d86257a194d84"
  4297. },
  4298. "require": {
  4299. "drupal/core": "^8 || ^9",
  4300. "drupal/domain": "*",
  4301. "drupal/domain_config": "*"
  4302. },
  4303. "type": "drupal-module",
  4304. "extra": {
  4305. "branch-alias": {
  4306. "dev-1.x": "1.x-dev"
  4307. },
  4308. "drupal": {
  4309. "version": "8.x-1.3+7-dev",
  4310. "datestamp": "1584297727",
  4311. "security-coverage": {
  4312. "status": "not-covered",
  4313. "message": "Dev releases are not covered by Drupal security advisories."
  4314. }
  4315. }
  4316. },
  4317. "notification-url": "https://packages.drupal.org/8/downloads",
  4318. "license": [
  4319. "GPL-2.0+"
  4320. ],
  4321. "authors": [
  4322. {
  4323. "name": "aloknarwaria",
  4324. "homepage": "https://www.drupal.org/user/906640"
  4325. },
  4326. {
  4327. "name": "malaynayak",
  4328. "homepage": "https://www.drupal.org/user/3529755"
  4329. }
  4330. ],
  4331. "description": "Basic Site Setting for Domains.",
  4332. "homepage": "https://www.drupal.org/project/domain_site_settings",
  4333. "keywords": [
  4334. "Drupal"
  4335. ],
  4336. "support": {
  4337. "source": "http://cgit.drupalcode.org/domain_site_settings",
  4338. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  4339. },
  4340. "time": "2020-03-15T18:41:41+00:00"
  4341. },
  4342. {
  4343. "name": "drupal/email_registration",
  4344. "version": "1.1.0",
  4345. "source": {
  4346. "type": "git",
  4347. "url": "https://git.drupalcode.org/project/email_registration.git",
  4348. "reference": "8.x-1.1"
  4349. },
  4350. "dist": {
  4351. "type": "zip",
  4352. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.1.zip",
  4353. "reference": "8.x-1.1",
  4354. "shasum": "cc0eef597216a6d025d9017df104f2693b029f96"
  4355. },
  4356. "require": {
  4357. "drupal/core": "^8.7.7 || ^9"
  4358. },
  4359. "conflict": {
  4360. "drupal/commerce": "<2.12"
  4361. },
  4362. "require-dev": {
  4363. "drupal/commerce": "^2.0"
  4364. },
  4365. "type": "drupal-module",
  4366. "extra": {
  4367. "drupal": {
  4368. "version": "8.x-1.1",
  4369. "datestamp": "1592317072",
  4370. "security-coverage": {
  4371. "status": "covered",
  4372. "message": "Covered by Drupal's security advisory policy"
  4373. }
  4374. }
  4375. },
  4376. "notification-url": "https://packages.drupal.org/8/downloads",
  4377. "license": [
  4378. "GPL-2.0-or-later"
  4379. ],
  4380. "authors": [
  4381. {
  4382. "name": "Greg Knaddison (greggles)",
  4383. "homepage": "https://www.drupal.org/u/greggles",
  4384. "role": "Maintainer"
  4385. },
  4386. {
  4387. "name": "Andrey Postnikov (andypost)",
  4388. "homepage": "https://www.drupal.org/u/andypost",
  4389. "role": "Maintainer"
  4390. },
  4391. {
  4392. "name": "Chris Herberte",
  4393. "homepage": "https://www.drupal.org/u/chris-herberte",
  4394. "role": "Maintainer"
  4395. },
  4396. {
  4397. "name": "Moshe Weitzman (moshe weitzman)",
  4398. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  4399. "role": "Maintainer"
  4400. }
  4401. ],
  4402. "description": "Allows users to register with an email address as their username.",
  4403. "homepage": "https://www.drupal.org/project/email_registration",
  4404. "support": {
  4405. "source": "https://git.drupalcode.org/project/email_registration",
  4406. "issues": "http://drupal.org/project/issues/email_registration"
  4407. }
  4408. },
  4409. {
  4410. "name": "drupal/embed",
  4411. "version": "1.4.0",
  4412. "source": {
  4413. "type": "git",
  4414. "url": "https://git.drupalcode.org/project/embed.git",
  4415. "reference": "8.x-1.4"
  4416. },
  4417. "dist": {
  4418. "type": "zip",
  4419. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.4.zip",
  4420. "reference": "8.x-1.4",
  4421. "shasum": "09a2bda039bfbb3fff01c91964384bf3d924b8c5"
  4422. },
  4423. "require": {
  4424. "drupal/core": "^8.7.7 || ^9"
  4425. },
  4426. "type": "drupal-module",
  4427. "extra": {
  4428. "drupal": {
  4429. "version": "8.x-1.4",
  4430. "datestamp": "1590176831",
  4431. "security-coverage": {
  4432. "status": "covered",
  4433. "message": "Covered by Drupal's security advisory policy"
  4434. }
  4435. }
  4436. },
  4437. "notification-url": "https://packages.drupal.org/8/downloads",
  4438. "license": [
  4439. "GPL-2.0-or-later"
  4440. ],
  4441. "authors": [
  4442. {
  4443. "name": "Dave Reid",
  4444. "homepage": "https://www.drupal.org/user/53892"
  4445. },
  4446. {
  4447. "name": "Devin Carlson",
  4448. "homepage": "https://www.drupal.org/user/290182"
  4449. },
  4450. {
  4451. "name": "Drupal Media Team",
  4452. "homepage": "https://www.drupal.org/user/3260690"
  4453. },
  4454. {
  4455. "name": "cs_shadow",
  4456. "homepage": "https://www.drupal.org/user/2828287"
  4457. },
  4458. {
  4459. "name": "phenaproxima",
  4460. "homepage": "https://www.drupal.org/user/205645"
  4461. },
  4462. {
  4463. "name": "slashrsm",
  4464. "homepage": "https://www.drupal.org/user/744628"
  4465. }
  4466. ],
  4467. "description": "Provides a framework for different types of embeds in text editors.",
  4468. "homepage": "https://www.drupal.org/project/embed",
  4469. "support": {
  4470. "source": "https://git.drupalcode.org/project/embed"
  4471. }
  4472. },
  4473. {
  4474. "name": "drupal/entity",
  4475. "version": "1.2.0",
  4476. "source": {
  4477. "type": "git",
  4478. "url": "https://git.drupalcode.org/project/entity.git",
  4479. "reference": "8.x-1.2"
  4480. },
  4481. "dist": {
  4482. "type": "zip",
  4483. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.2.zip",
  4484. "reference": "8.x-1.2",
  4485. "shasum": "7e7cb12ea65d9f986b59935eda316387cf511079"
  4486. },
  4487. "require": {
  4488. "drupal/core": "^8.8 || ^9"
  4489. },
  4490. "type": "drupal-module",
  4491. "extra": {
  4492. "drupal": {
  4493. "version": "8.x-1.2",
  4494. "datestamp": "1606399149",
  4495. "security-coverage": {
  4496. "status": "covered",
  4497. "message": "Covered by Drupal's security advisory policy"
  4498. }
  4499. }
  4500. },
  4501. "notification-url": "https://packages.drupal.org/8/downloads",
  4502. "license": [
  4503. "GPL-2.0-or-later"
  4504. ],
  4505. "authors": [
  4506. {
  4507. "name": "Berdir",
  4508. "homepage": "https://www.drupal.org/user/214652"
  4509. },
  4510. {
  4511. "name": "bojanz",
  4512. "homepage": "https://www.drupal.org/user/86106"
  4513. },
  4514. {
  4515. "name": "dawehner",
  4516. "homepage": "https://www.drupal.org/user/99340"
  4517. },
  4518. {
  4519. "name": "dixon_",
  4520. "homepage": "https://www.drupal.org/user/239911"
  4521. },
  4522. {
  4523. "name": "fago",
  4524. "homepage": "https://www.drupal.org/user/16747"
  4525. },
  4526. {
  4527. "name": "mglaman",
  4528. "homepage": "https://www.drupal.org/user/2416470"
  4529. }
  4530. ],
  4531. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  4532. "homepage": "http://drupal.org/project/entity",
  4533. "support": {
  4534. "source": "https://git.drupalcode.org/project/entity"
  4535. }
  4536. },
  4537. {
  4538. "name": "drupal/entity_browser",
  4539. "version": "2.5.0",
  4540. "source": {
  4541. "type": "git",
  4542. "url": "https://git.drupalcode.org/project/entity_browser.git",
  4543. "reference": "8.x-2.5"
  4544. },
  4545. "dist": {
  4546. "type": "zip",
  4547. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.5.zip",
  4548. "reference": "8.x-2.5",
  4549. "shasum": "29456b961f0f90ff064601ab8a382446a8143774"
  4550. },
  4551. "require": {
  4552. "drupal/core": "^8.8 || ^9"
  4553. },
  4554. "require-dev": {
  4555. "drupal/embed": "~1.0",
  4556. "drupal/entity_embed": "1.x-dev",
  4557. "drupal/entity_reference_revisions": "1.x-dev",
  4558. "drupal/entityqueue": "1.x-dev",
  4559. "drupal/inline_entity_form": "1.x-dev",
  4560. "drupal/paragraphs": "1.x-dev",
  4561. "drupal/token": "~1.0"
  4562. },
  4563. "type": "drupal-module",
  4564. "extra": {
  4565. "drupal": {
  4566. "version": "8.x-2.5",
  4567. "datestamp": "1588015429",
  4568. "security-coverage": {
  4569. "status": "covered",
  4570. "message": "Covered by Drupal's security advisory policy"
  4571. }
  4572. }
  4573. },
  4574. "notification-url": "https://packages.drupal.org/8/downloads",
  4575. "license": [
  4576. "GPL-2.0+"
  4577. ],
  4578. "authors": [
  4579. {
  4580. "name": "Janez Urevc",
  4581. "homepage": "https://github.com/slashrsm",
  4582. "role": "Maintainer"
  4583. },
  4584. {
  4585. "name": "Primoz Hmeljak",
  4586. "homepage": "https://github.com/primsi",
  4587. "role": "Maintainer"
  4588. },
  4589. {
  4590. "name": "See other contributors",
  4591. "homepage": "https://www.drupal.org/node/1943336/committers",
  4592. "role": "contributor"
  4593. },
  4594. {
  4595. "name": "Drupal Media Team",
  4596. "homepage": "https://www.drupal.org/user/3260690"
  4597. },
  4598. {
  4599. "name": "Primsi",
  4600. "homepage": "https://www.drupal.org/user/282629"
  4601. },
  4602. {
  4603. "name": "marcingy",
  4604. "homepage": "https://www.drupal.org/user/77320"
  4605. },
  4606. {
  4607. "name": "oknate",
  4608. "homepage": "https://www.drupal.org/user/471638"
  4609. },
  4610. {
  4611. "name": "samuel.mortenson",
  4612. "homepage": "https://www.drupal.org/user/2582268"
  4613. },
  4614. {
  4615. "name": "slashrsm",
  4616. "homepage": "https://www.drupal.org/user/744628"
  4617. }
  4618. ],
  4619. "description": "Entity browsing and selecting component.",
  4620. "homepage": "http://drupal.org/project/entity_browser",
  4621. "support": {
  4622. "source": "https://git.drupalcode.org/project/entity_browser",
  4623. "issues": "https://www.drupal.org/project/issues/entity_browser",
  4624. "irc": "irc://irc.freenode.org/drupal-contribute"
  4625. }
  4626. },
  4627. {
  4628. "name": "drupal/entity_browser_enhanced",
  4629. "version": "1.0.0",
  4630. "source": {
  4631. "type": "git",
  4632. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  4633. "reference": "8.x-1.0"
  4634. },
  4635. "dist": {
  4636. "type": "zip",
  4637. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-8.x-1.0.zip",
  4638. "reference": "8.x-1.0",
  4639. "shasum": "c309e3c3eb65c358fafc577de68f3cbb8c118865"
  4640. },
  4641. "require": {
  4642. "drupal/core": "^8 || ^9",
  4643. "drupal/entity_browser": "~2.0"
  4644. },
  4645. "type": "drupal-module",
  4646. "extra": {
  4647. "drupal": {
  4648. "version": "8.x-1.0",
  4649. "datestamp": "1581940931",
  4650. "security-coverage": {
  4651. "status": "covered",
  4652. "message": "Covered by Drupal's security advisory policy"
  4653. }
  4654. },
  4655. "branch-alias": {
  4656. "dev-8.x-1.x": "8.1.x-dev"
  4657. }
  4658. },
  4659. "notification-url": "https://packages.drupal.org/8/downloads",
  4660. "license": [
  4661. "GPL-2.0-or-later"
  4662. ],
  4663. "authors": [
  4664. {
  4665. "name": "Vardot",
  4666. "homepage": "https://www.drupal.org/vardot",
  4667. "role": "Maintainer"
  4668. },
  4669. {
  4670. "name": "RajabNatshah",
  4671. "homepage": "https://www.drupal.org/user/1414312"
  4672. }
  4673. ],
  4674. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  4675. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  4676. "support": {
  4677. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  4678. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  4679. }
  4680. },
  4681. {
  4682. "name": "drupal/entity_clone",
  4683. "version": "1.0.0-beta4",
  4684. "source": {
  4685. "type": "git",
  4686. "url": "https://git.drupalcode.org/project/entity_clone.git",
  4687. "reference": "8.x-1.0-beta4"
  4688. },
  4689. "dist": {
  4690. "type": "zip",
  4691. "url": "https://ftp.drupal.org/files/projects/entity_clone-8.x-1.0-beta4.zip",
  4692. "reference": "8.x-1.0-beta4",
  4693. "shasum": "4568ca25634d4ce4f142f56156259ba1f0d9f3c1"
  4694. },
  4695. "require": {
  4696. "drupal/core": "^8 || ^9"
  4697. },
  4698. "type": "drupal-module",
  4699. "extra": {
  4700. "drupal": {
  4701. "version": "8.x-1.0-beta4",
  4702. "datestamp": "1588605099",
  4703. "security-coverage": {
  4704. "status": "not-covered",
  4705. "message": "Beta releases are not covered by Drupal security advisories."
  4706. }
  4707. }
  4708. },
  4709. "notification-url": "https://packages.drupal.org/8/downloads",
  4710. "license": [
  4711. "GPL-2.0-or-later"
  4712. ],
  4713. "authors": [
  4714. {
  4715. "name": "vpeltot",
  4716. "homepage": "https://www.drupal.org/user/1361586"
  4717. }
  4718. ],
  4719. "description": "Add a clone action for all entities",
  4720. "homepage": "https://www.drupal.org/project/entity_clone",
  4721. "support": {
  4722. "source": "https://git.drupalcode.org/project/entity_clone"
  4723. }
  4724. },
  4725. {
  4726. "name": "drupal/extlink",
  4727. "version": "1.6.0",
  4728. "source": {
  4729. "type": "git",
  4730. "url": "https://git.drupalcode.org/project/extlink.git",
  4731. "reference": "8.x-1.6"
  4732. },
  4733. "dist": {
  4734. "type": "zip",
  4735. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.6.zip",
  4736. "reference": "8.x-1.6",
  4737. "shasum": "92c2794b1d5ece7978f5f6fa37f719c0b37d470e"
  4738. },
  4739. "require": {
  4740. "drupal/core": "^8 || ^9"
  4741. },
  4742. "type": "drupal-module",
  4743. "extra": {
  4744. "drupal": {
  4745. "version": "8.x-1.6",
  4746. "datestamp": "1614961993",
  4747. "security-coverage": {
  4748. "status": "covered",
  4749. "message": "Covered by Drupal's security advisory policy"
  4750. }
  4751. }
  4752. },
  4753. "notification-url": "https://packages.drupal.org/8/downloads",
  4754. "license": [
  4755. "GPL-2.0-or-later"
  4756. ],
  4757. "authors": [
  4758. {
  4759. "name": "Nate Lampton",
  4760. "homepage": "https://www.drupal.org/u/quicksketch",
  4761. "role": "Maintainer"
  4762. },
  4763. {
  4764. "name": "Lachlan Ennis",
  4765. "homepage": "https://www.drupal.org/u/elachlan",
  4766. "role": "Maintainer"
  4767. },
  4768. {
  4769. "name": "Neslee Canil Pinto",
  4770. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  4771. "role": "Maintainer"
  4772. }
  4773. ],
  4774. "description": "Modify behavior and appearance of external links.",
  4775. "homepage": "https://www.drupal.org/project/extlink",
  4776. "keywords": [
  4777. "Drupal",
  4778. "External Links"
  4779. ],
  4780. "support": {
  4781. "source": "https://git.drupalcode.org/project/extlink",
  4782. "issues": "https://www.drupal.org/project/issues/extlink"
  4783. }
  4784. },
  4785. {
  4786. "name": "drupal/field_group",
  4787. "version": "3.1.0",
  4788. "source": {
  4789. "type": "git",
  4790. "url": "https://git.drupalcode.org/project/field_group.git",
  4791. "reference": "8.x-3.1"
  4792. },
  4793. "dist": {
  4794. "type": "zip",
  4795. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.1.zip",
  4796. "reference": "8.x-3.1",
  4797. "shasum": "8a719eaea594f0ba874172831cb28da93c66b77a"
  4798. },
  4799. "require": {
  4800. "drupal/core": "^8.8 || ^9"
  4801. },
  4802. "require-dev": {
  4803. "drupal/jquery_ui_accordion": "^1.0"
  4804. },
  4805. "type": "drupal-module",
  4806. "extra": {
  4807. "drupal": {
  4808. "version": "8.x-3.1",
  4809. "datestamp": "1591772567",
  4810. "security-coverage": {
  4811. "status": "covered",
  4812. "message": "Covered by Drupal's security advisory policy"
  4813. }
  4814. }
  4815. },
  4816. "notification-url": "https://packages.drupal.org/8/downloads",
  4817. "license": [
  4818. "GPL-2.0-or-later"
  4819. ],
  4820. "authors": [
  4821. {
  4822. "name": "Hydra",
  4823. "homepage": "https://www.drupal.org/user/647364"
  4824. },
  4825. {
  4826. "name": "Stalski",
  4827. "homepage": "https://www.drupal.org/user/322618"
  4828. },
  4829. {
  4830. "name": "jyve",
  4831. "homepage": "https://www.drupal.org/user/591438"
  4832. },
  4833. {
  4834. "name": "nils.destoop",
  4835. "homepage": "https://www.drupal.org/user/361625"
  4836. },
  4837. {
  4838. "name": "swentel",
  4839. "homepage": "https://www.drupal.org/user/107403"
  4840. }
  4841. ],
  4842. "description": "Provides the field_group module.",
  4843. "homepage": "https://www.drupal.org/project/field_group",
  4844. "support": {
  4845. "source": "https://git.drupalcode.org/project/field_group",
  4846. "issues": "https://www.drupal.org/project/issues/field_group"
  4847. }
  4848. },
  4849. {
  4850. "name": "drupal/file_mdm",
  4851. "version": "2.1.0",
  4852. "source": {
  4853. "type": "git",
  4854. "url": "https://git.drupalcode.org/project/file_mdm.git",
  4855. "reference": "8.x-2.1"
  4856. },
  4857. "dist": {
  4858. "type": "zip",
  4859. "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-2.1.zip",
  4860. "reference": "8.x-2.1",
  4861. "shasum": "5c3d75622299ebddc0e8456bb08bb371da8771bd"
  4862. },
  4863. "require": {
  4864. "drupal/core": "^8.8 || ^9",
  4865. "lsolesen/pel": "^0.9.8",
  4866. "phenx/php-font-lib": "^0.5.2",
  4867. "php": ">=7"
  4868. },
  4869. "require-dev": {
  4870. "drupal/image_effects": "*"
  4871. },
  4872. "type": "drupal-module",
  4873. "extra": {
  4874. "drupal": {
  4875. "version": "8.x-2.1",
  4876. "datestamp": "1586801064",
  4877. "security-coverage": {
  4878. "status": "covered",
  4879. "message": "Covered by Drupal's security advisory policy"
  4880. }
  4881. }
  4882. },
  4883. "notification-url": "https://packages.drupal.org/8/downloads",
  4884. "license": [
  4885. "GPL-2.0-or-later"
  4886. ],
  4887. "authors": [
  4888. {
  4889. "name": "mondrake",
  4890. "homepage": "https://www.drupal.org/user/1307444"
  4891. }
  4892. ],
  4893. "description": "Provides a service to manage file metadata.",
  4894. "homepage": "https://www.drupal.org/project/file_mdm",
  4895. "support": {
  4896. "source": "https://git.drupalcode.org/project/file_mdm"
  4897. }
  4898. },
  4899. {
  4900. "name": "drupal/filefield_sources",
  4901. "version": "dev-1.x",
  4902. "source": {
  4903. "type": "git",
  4904. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  4905. "reference": "bbcd869d2d3430235ec88b06b4dacaae1a9256d5"
  4906. },
  4907. "require": {
  4908. "drupal/core": "^8 || ^9"
  4909. },
  4910. "require-dev": {
  4911. "drupal/imce": "^2.3"
  4912. },
  4913. "type": "drupal-module",
  4914. "extra": {
  4915. "branch-alias": {
  4916. "dev-1.x": "1.x-dev"
  4917. },
  4918. "drupal": {
  4919. "version": "8.x-1.0-alpha4+2-dev",
  4920. "datestamp": "1610733921",
  4921. "security-coverage": {
  4922. "status": "not-covered",
  4923. "message": "Dev releases are not covered by Drupal security advisories."
  4924. }
  4925. }
  4926. },
  4927. "notification-url": "https://packages.drupal.org/8/downloads",
  4928. "license": [
  4929. "GPL-2.0-or-later"
  4930. ],
  4931. "authors": [
  4932. {
  4933. "name": "Nate Lampton (quicksketch)",
  4934. "homepage": "https://www.drupal.org/u/quicksketch",
  4935. "role": "Maintainer"
  4936. },
  4937. {
  4938. "name": "Andrey Khromyshev (profak)",
  4939. "homepage": "https://www.drupal.org/u/profak",
  4940. "role": "Maintainer"
  4941. },
  4942. {
  4943. "name": "David Valdez (gnuget)",
  4944. "homepage": "https://www.drupal.org/u/gnuget",
  4945. "role": "Maintainer"
  4946. }
  4947. ],
  4948. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  4949. "homepage": "https://www.drupal.org/project/filefield_sources",
  4950. "support": {
  4951. "source": "https://git.drupalcode.org/project/filefield_sources",
  4952. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  4953. "irc": "irc://irc.freenode.org/drupal-contribute"
  4954. },
  4955. "time": "2021-01-15T18:15:00+00:00"
  4956. },
  4957. {
  4958. "name": "drupal/filter_perms",
  4959. "version": "dev-1.x",
  4960. "source": {
  4961. "type": "git",
  4962. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4963. "reference": "f9abe65da2236de801902256f8388291bc3d2c83"
  4964. },
  4965. "require": {
  4966. "drupal/core": "^8 || ^9"
  4967. },
  4968. "type": "drupal-module",
  4969. "extra": {
  4970. "branch-alias": {
  4971. "dev-1.x": "1.x-dev"
  4972. },
  4973. "drupal": {
  4974. "version": "8.x-1.0-alpha1+2-dev",
  4975. "datestamp": "1599239698",
  4976. "security-coverage": {
  4977. "status": "not-covered",
  4978. "message": "Dev releases are not covered by Drupal security advisories."
  4979. }
  4980. }
  4981. },
  4982. "notification-url": "https://packages.drupal.org/8/downloads",
  4983. "license": [
  4984. "GPL-2.0-or-later"
  4985. ],
  4986. "authors": [
  4987. {
  4988. "name": "cYu",
  4989. "homepage": "https://www.drupal.org/user/202205"
  4990. },
  4991. {
  4992. "name": "deekayen",
  4993. "homepage": "https://www.drupal.org/user/972"
  4994. },
  4995. {
  4996. "name": "ivagold",
  4997. "homepage": "https://www.drupal.org/user/3061533"
  4998. },
  4999. {
  5000. "name": "mgbellaire",
  5001. "homepage": "https://www.drupal.org/user/1831932"
  5002. },
  5003. {
  5004. "name": "willzyx",
  5005. "homepage": "https://www.drupal.org/user/1043862"
  5006. }
  5007. ],
  5008. "description": "Provides role and module filters to simplify the user permissions page.",
  5009. "homepage": "https://www.drupal.org/project/filter_perms",
  5010. "support": {
  5011. "source": "https://git.drupalcode.org/project/filter_perms"
  5012. },
  5013. "time": "2020-11-17T18:20:11+00:00"
  5014. },
  5015. {
  5016. "name": "drupal/honeypot",
  5017. "version": "2.0.1",
  5018. "source": {
  5019. "type": "git",
  5020. "url": "https://git.drupalcode.org/project/honeypot.git",
  5021. "reference": "2.0.1"
  5022. },
  5023. "dist": {
  5024. "type": "zip",
  5025. "url": "https://ftp.drupal.org/files/projects/honeypot-2.0.1.zip",
  5026. "reference": "2.0.1",
  5027. "shasum": "c29d248c0fdcdf733a31b9214355acfa73716632"
  5028. },
  5029. "require": {
  5030. "drupal/core": "^8.0 || ^9.0"
  5031. },
  5032. "type": "drupal-module",
  5033. "extra": {
  5034. "drupal": {
  5035. "version": "2.0.1",
  5036. "datestamp": "1597855128",
  5037. "security-coverage": {
  5038. "status": "covered",
  5039. "message": "Covered by Drupal's security advisory policy"
  5040. }
  5041. }
  5042. },
  5043. "notification-url": "https://packages.drupal.org/8/downloads",
  5044. "license": [
  5045. "GPL-2.0-or-later"
  5046. ],
  5047. "authors": [
  5048. {
  5049. "name": "Jeff Geerling",
  5050. "homepage": "https://www.drupal.org/user/213194",
  5051. "email": "geerlingguy@mac.com"
  5052. },
  5053. {
  5054. "name": "geerlingguy",
  5055. "homepage": "https://www.drupal.org/user/389011"
  5056. },
  5057. {
  5058. "name": "vijaycs85",
  5059. "homepage": "https://www.drupal.org/user/93488"
  5060. }
  5061. ],
  5062. "description": "Mitigates spam form submissions using the honeypot method.",
  5063. "homepage": "https://www.drupal.org/project/honeypot",
  5064. "keywords": [
  5065. "deterrent",
  5066. "form",
  5067. "honeypot",
  5068. "honeytrap",
  5069. "php",
  5070. "spam"
  5071. ],
  5072. "support": {
  5073. "source": "https://git.drupalcode.org/project/honeypot",
  5074. "issues": "https://www.drupal.org/project/issues/honeypot"
  5075. }
  5076. },
  5077. {
  5078. "name": "drupal/imagemagick",
  5079. "version": "3.1.0",
  5080. "source": {
  5081. "type": "git",
  5082. "url": "https://git.drupalcode.org/project/imagemagick.git",
  5083. "reference": "8.x-3.1"
  5084. },
  5085. "dist": {
  5086. "type": "zip",
  5087. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-3.1.zip",
  5088. "reference": "8.x-3.1",
  5089. "shasum": "f427b06312325aa667c549fed261f73f29e231e7"
  5090. },
  5091. "require": {
  5092. "drupal/core": "^8.8 || ^9",
  5093. "drupal/file_mdm": "^2",
  5094. "drupal/sophron": "^1",
  5095. "php": ">=7"
  5096. },
  5097. "type": "drupal-module",
  5098. "extra": {
  5099. "drupal": {
  5100. "version": "8.x-3.1",
  5101. "datestamp": "1581420882",
  5102. "security-coverage": {
  5103. "status": "covered",
  5104. "message": "Covered by Drupal's security advisory policy"
  5105. }
  5106. }
  5107. },
  5108. "notification-url": "https://packages.drupal.org/8/downloads",
  5109. "license": [
  5110. "GPL-2.0-or-later"
  5111. ],
  5112. "authors": [
  5113. {
  5114. "name": "Chris Charlton",
  5115. "homepage": "https://www.drupal.org/user/17089"
  5116. },
  5117. {
  5118. "name": "chx",
  5119. "homepage": "https://www.drupal.org/user/9446"
  5120. },
  5121. {
  5122. "name": "claudiu.cristea",
  5123. "homepage": "https://www.drupal.org/user/56348"
  5124. },
  5125. {
  5126. "name": "dman",
  5127. "homepage": "https://www.drupal.org/user/33240"
  5128. },
  5129. {
  5130. "name": "dopry",
  5131. "homepage": "https://www.drupal.org/user/22202"
  5132. },
  5133. {
  5134. "name": "drewish",
  5135. "homepage": "https://www.drupal.org/user/34869"
  5136. },
  5137. {
  5138. "name": "gdl",
  5139. "homepage": "https://www.drupal.org/user/507326"
  5140. },
  5141. {
  5142. "name": "mondrake",
  5143. "homepage": "https://www.drupal.org/user/1307444"
  5144. },
  5145. {
  5146. "name": "quicksketch",
  5147. "homepage": "https://www.drupal.org/user/35821"
  5148. },
  5149. {
  5150. "name": "sun",
  5151. "homepage": "https://www.drupal.org/user/54136"
  5152. },
  5153. {
  5154. "name": "walkah",
  5155. "homepage": "https://www.drupal.org/user/1531"
  5156. }
  5157. ],
  5158. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  5159. "homepage": "https://www.drupal.org/project/imagemagick",
  5160. "support": {
  5161. "source": "https://git.drupalcode.org/project/imagemagick"
  5162. }
  5163. },
  5164. {
  5165. "name": "drupal/inline_entity_form",
  5166. "version": "1.0.0-rc8",
  5167. "source": {
  5168. "type": "git",
  5169. "url": "https://git.drupalcode.org/project/inline_entity_form.git",
  5170. "reference": "8.x-1.0-rc8"
  5171. },
  5172. "dist": {
  5173. "type": "zip",
  5174. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc8.zip",
  5175. "reference": "8.x-1.0-rc8",
  5176. "shasum": "103de382dd07b4acdd6bacd5ad76628fdf0eefda"
  5177. },
  5178. "require": {
  5179. "drupal/core": "^8.7.7 || ^9"
  5180. },
  5181. "require-dev": {
  5182. "drupal/entity_reference_revisions": "^1.0"
  5183. },
  5184. "type": "drupal-module",
  5185. "extra": {
  5186. "drupal": {
  5187. "version": "8.x-1.0-rc8",
  5188. "datestamp": "1602172716",
  5189. "security-coverage": {
  5190. "status": "not-covered",
  5191. "message": "RC releases are not covered by Drupal security advisories."
  5192. }
  5193. }
  5194. },
  5195. "notification-url": "https://packages.drupal.org/8/downloads",
  5196. "license": [
  5197. "GPL-2.0-or-later"
  5198. ],
  5199. "authors": [
  5200. {
  5201. "name": "bojanz",
  5202. "homepage": "https://www.drupal.org/user/86106"
  5203. },
  5204. {
  5205. "name": "dawehner",
  5206. "homepage": "https://www.drupal.org/user/99340"
  5207. },
  5208. {
  5209. "name": "geek-merlin",
  5210. "homepage": "https://www.drupal.org/user/229048"
  5211. },
  5212. {
  5213. "name": "joachim",
  5214. "homepage": "https://www.drupal.org/user/107701"
  5215. },
  5216. {
  5217. "name": "jsacksick",
  5218. "homepage": "https://www.drupal.org/user/972218"
  5219. },
  5220. {
  5221. "name": "kaythay",
  5222. "homepage": "https://www.drupal.org/user/2182186"
  5223. },
  5224. {
  5225. "name": "oknate",
  5226. "homepage": "https://www.drupal.org/user/471638"
  5227. },
  5228. {
  5229. "name": "rszrama",
  5230. "homepage": "https://www.drupal.org/user/49344"
  5231. },
  5232. {
  5233. "name": "slashrsm",
  5234. "homepage": "https://www.drupal.org/user/744628"
  5235. },
  5236. {
  5237. "name": "webflo",
  5238. "homepage": "https://www.drupal.org/user/254778"
  5239. }
  5240. ],
  5241. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  5242. "homepage": "https://www.drupal.org/project/inline_entity_form",
  5243. "support": {
  5244. "source": "https://git.drupalcode.org/project/inline_entity_form"
  5245. }
  5246. },
  5247. {
  5248. "name": "drupal/jquery_ui",
  5249. "version": "1.4.0",
  5250. "source": {
  5251. "type": "git",
  5252. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  5253. "reference": "8.x-1.4"
  5254. },
  5255. "dist": {
  5256. "type": "zip",
  5257. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.4.zip",
  5258. "reference": "8.x-1.4",
  5259. "shasum": "64c19ecc8902e2b4b1ab0cc5f5fe28dbc83bfebe"
  5260. },
  5261. "require": {
  5262. "drupal/core": "^8 || ^9"
  5263. },
  5264. "type": "drupal-module",
  5265. "extra": {
  5266. "drupal": {
  5267. "version": "8.x-1.4",
  5268. "datestamp": "1582149957",
  5269. "security-coverage": {
  5270. "status": "covered",
  5271. "message": "Covered by Drupal's security advisory policy"
  5272. }
  5273. }
  5274. },
  5275. "notification-url": "https://packages.drupal.org/8/downloads",
  5276. "license": [
  5277. "GPL-2.0-or-later"
  5278. ],
  5279. "authors": [
  5280. {
  5281. "name": "RobLoach",
  5282. "homepage": "https://www.drupal.org/user/61114"
  5283. },
  5284. {
  5285. "name": "jjeff",
  5286. "homepage": "https://www.drupal.org/user/17190"
  5287. },
  5288. {
  5289. "name": "lauriii",
  5290. "homepage": "https://www.drupal.org/user/1078742"
  5291. },
  5292. {
  5293. "name": "litwol",
  5294. "homepage": "https://www.drupal.org/user/78134"
  5295. },
  5296. {
  5297. "name": "mfb",
  5298. "homepage": "https://www.drupal.org/user/12302"
  5299. },
  5300. {
  5301. "name": "mfer",
  5302. "homepage": "https://www.drupal.org/user/25701"
  5303. },
  5304. {
  5305. "name": "mikelutz",
  5306. "homepage": "https://www.drupal.org/user/2972409"
  5307. },
  5308. {
  5309. "name": "sun",
  5310. "homepage": "https://www.drupal.org/user/54136"
  5311. },
  5312. {
  5313. "name": "webchick",
  5314. "homepage": "https://www.drupal.org/user/24967"
  5315. },
  5316. {
  5317. "name": "zrpnr",
  5318. "homepage": "https://www.drupal.org/user/1448368"
  5319. }
  5320. ],
  5321. "description": "Provides jQuery UI library.",
  5322. "homepage": "https://www.drupal.org/project/jquery_ui",
  5323. "support": {
  5324. "source": "https://git.drupalcode.org/project/jquery_ui"
  5325. }
  5326. },
  5327. {
  5328. "name": "drupal/jquery_ui_button",
  5329. "version": "1.1.0",
  5330. "source": {
  5331. "type": "git",
  5332. "url": "https://git.drupalcode.org/project/jquery_ui_button.git",
  5333. "reference": "8.x-1.1"
  5334. },
  5335. "dist": {
  5336. "type": "zip",
  5337. "url": "https://ftp.drupal.org/files/projects/jquery_ui_button-8.x-1.1.zip",
  5338. "reference": "8.x-1.1",
  5339. "shasum": "70175a96c9034cc1cb2f28c415b2a9828355cc1a"
  5340. },
  5341. "require": {
  5342. "drupal/core": "^8 || ^9",
  5343. "drupal/jquery_ui": "*",
  5344. "drupal/jquery_ui_checkboxradio": "*",
  5345. "drupal/jquery_ui_controlgroup": "*"
  5346. },
  5347. "type": "drupal-module",
  5348. "extra": {
  5349. "drupal": {
  5350. "version": "8.x-1.1",
  5351. "datestamp": "1584106807",
  5352. "security-coverage": {
  5353. "status": "covered",
  5354. "message": "Covered by Drupal's security advisory policy"
  5355. }
  5356. }
  5357. },
  5358. "notification-url": "https://packages.drupal.org/8/downloads",
  5359. "license": [
  5360. "GPL-2.0-or-later"
  5361. ],
  5362. "authors": [
  5363. {
  5364. "name": "bnjmnm",
  5365. "homepage": "https://www.drupal.org/user/2369194"
  5366. },
  5367. {
  5368. "name": "lauriii",
  5369. "homepage": "https://www.drupal.org/user/1078742"
  5370. },
  5371. {
  5372. "name": "zrpnr",
  5373. "homepage": "https://www.drupal.org/user/1448368"
  5374. }
  5375. ],
  5376. "description": "Provides jQuery UI Button library.",
  5377. "homepage": "https://www.drupal.org/project/jquery_ui_button",
  5378. "support": {
  5379. "source": "https://git.drupalcode.org/project/jquery_ui_button"
  5380. }
  5381. },
  5382. {
  5383. "name": "drupal/jquery_ui_checkboxradio",
  5384. "version": "1.2.0",
  5385. "source": {
  5386. "type": "git",
  5387. "url": "https://git.drupalcode.org/project/jquery_ui_checkboxradio.git",
  5388. "reference": "8.x-1.2"
  5389. },
  5390. "dist": {
  5391. "type": "zip",
  5392. "url": "https://ftp.drupal.org/files/projects/jquery_ui_checkboxradio-8.x-1.2.zip",
  5393. "reference": "8.x-1.2",
  5394. "shasum": "8edb088cb89f4a0f95aa9d43894bf506dc5f6fe1"
  5395. },
  5396. "require": {
  5397. "drupal/core": "^8 || ^9",
  5398. "drupal/jquery_ui": "*"
  5399. },
  5400. "type": "drupal-module",
  5401. "extra": {
  5402. "drupal": {
  5403. "version": "8.x-1.2",
  5404. "datestamp": "1584106406",
  5405. "security-coverage": {
  5406. "status": "covered",
  5407. "message": "Covered by Drupal's security advisory policy"
  5408. }
  5409. }
  5410. },
  5411. "notification-url": "https://packages.drupal.org/8/downloads",
  5412. "license": [
  5413. "GPL-2.0-or-later"
  5414. ],
  5415. "authors": [
  5416. {
  5417. "name": "bnjmnm",
  5418. "homepage": "https://www.drupal.org/user/2369194"
  5419. },
  5420. {
  5421. "name": "lauriii",
  5422. "homepage": "https://www.drupal.org/user/1078742"
  5423. },
  5424. {
  5425. "name": "zrpnr",
  5426. "homepage": "https://www.drupal.org/user/1448368"
  5427. }
  5428. ],
  5429. "description": "Provides jQuery UI Checkboxradio library.",
  5430. "homepage": "https://www.drupal.org/project/jquery_ui_checkboxradio",
  5431. "support": {
  5432. "source": "https://git.drupalcode.org/project/jquery_ui_checkboxradio"
  5433. }
  5434. },
  5435. {
  5436. "name": "drupal/jquery_ui_controlgroup",
  5437. "version": "1.1.0",
  5438. "source": {
  5439. "type": "git",
  5440. "url": "https://git.drupalcode.org/project/jquery_ui_controlgroup.git",
  5441. "reference": "8.x-1.1"
  5442. },
  5443. "dist": {
  5444. "type": "zip",
  5445. "url": "https://ftp.drupal.org/files/projects/jquery_ui_controlgroup-8.x-1.1.zip",
  5446. "reference": "8.x-1.1",
  5447. "shasum": "ddbd4f01df4e3c9566aa76ba256217a27f45f48a"
  5448. },
  5449. "require": {
  5450. "drupal/core": "^8 || ^9",
  5451. "drupal/jquery_ui": "*"
  5452. },
  5453. "type": "drupal-module",
  5454. "extra": {
  5455. "drupal": {
  5456. "version": "8.x-1.1",
  5457. "datestamp": "1584106616",
  5458. "security-coverage": {
  5459. "status": "covered",
  5460. "message": "Covered by Drupal's security advisory policy"
  5461. }
  5462. }
  5463. },
  5464. "notification-url": "https://packages.drupal.org/8/downloads",
  5465. "license": [
  5466. "GPL-2.0-or-later"
  5467. ],
  5468. "authors": [
  5469. {
  5470. "name": "bnjmnm",
  5471. "homepage": "https://www.drupal.org/user/2369194"
  5472. },
  5473. {
  5474. "name": "lauriii",
  5475. "homepage": "https://www.drupal.org/user/1078742"
  5476. },
  5477. {
  5478. "name": "zrpnr",
  5479. "homepage": "https://www.drupal.org/user/1448368"
  5480. }
  5481. ],
  5482. "description": "Provides jQuery UI Controlgroup library.",
  5483. "homepage": "https://www.drupal.org/project/jquery_ui_controlgroup",
  5484. "support": {
  5485. "source": "https://git.drupalcode.org/project/jquery_ui_controlgroup"
  5486. }
  5487. },
  5488. {
  5489. "name": "drupal/jquery_ui_datepicker",
  5490. "version": "1.0.0",
  5491. "source": {
  5492. "type": "git",
  5493. "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
  5494. "reference": "8.x-1.0"
  5495. },
  5496. "dist": {
  5497. "type": "zip",
  5498. "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-8.x-1.0.zip",
  5499. "reference": "8.x-1.0",
  5500. "shasum": "954f12f93e82b6c93e6797fe2e6e66604ad1d2b2"
  5501. },
  5502. "require": {
  5503. "drupal/core": "^8 || ^9",
  5504. "drupal/jquery_ui": "*"
  5505. },
  5506. "type": "drupal-module",
  5507. "extra": {
  5508. "drupal": {
  5509. "version": "8.x-1.0",
  5510. "datestamp": "1589684301",
  5511. "security-coverage": {
  5512. "status": "covered",
  5513. "message": "Covered by Drupal's security advisory policy"
  5514. }
  5515. }
  5516. },
  5517. "notification-url": "https://packages.drupal.org/8/downloads",
  5518. "license": [
  5519. "GPL-2.0-or-later"
  5520. ],
  5521. "authors": [
  5522. {
  5523. "name": "jrockowitz",
  5524. "homepage": "https://www.drupal.org/user/371407"
  5525. },
  5526. {
  5527. "name": "zrpnr",
  5528. "homepage": "https://www.drupal.org/user/1448368"
  5529. }
  5530. ],
  5531. "description": "Provides jQuery UI Datepicker library.",
  5532. "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
  5533. "support": {
  5534. "source": "https://git.drupalcode.org/project/jquery_ui_datepicker"
  5535. }
  5536. },
  5537. {
  5538. "name": "drupal/jquery_ui_slider",
  5539. "version": "1.1.0",
  5540. "source": {
  5541. "type": "git",
  5542. "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
  5543. "reference": "8.x-1.1"
  5544. },
  5545. "dist": {
  5546. "type": "zip",
  5547. "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-8.x-1.1.zip",
  5548. "reference": "8.x-1.1",
  5549. "shasum": "79b90cf60d45fc33ffdaa84bb2d6563f78a7d3d1"
  5550. },
  5551. "require": {
  5552. "drupal/core": "^8 || ^9",
  5553. "drupal/jquery_ui": "*"
  5554. },
  5555. "type": "drupal-module",
  5556. "extra": {
  5557. "drupal": {
  5558. "version": "8.x-1.1",
  5559. "datestamp": "1584107817",
  5560. "security-coverage": {
  5561. "status": "covered",
  5562. "message": "Covered by Drupal's security advisory policy"
  5563. }
  5564. }
  5565. },
  5566. "notification-url": "https://packages.drupal.org/8/downloads",
  5567. "license": [
  5568. "GPL-2.0-or-later"
  5569. ],
  5570. "authors": [
  5571. {
  5572. "name": "bnjmnm",
  5573. "homepage": "https://www.drupal.org/user/2369194"
  5574. },
  5575. {
  5576. "name": "lauriii",
  5577. "homepage": "https://www.drupal.org/user/1078742"
  5578. },
  5579. {
  5580. "name": "zrpnr",
  5581. "homepage": "https://www.drupal.org/user/1448368"
  5582. }
  5583. ],
  5584. "description": "Provides jQuery UI Slider library.",
  5585. "homepage": "https://www.drupal.org/project/jquery_ui_slider",
  5586. "support": {
  5587. "source": "https://git.drupalcode.org/project/jquery_ui_slider"
  5588. }
  5589. },
  5590. {
  5591. "name": "drupal/jquery_ui_touch_punch",
  5592. "version": "1.0.0",
  5593. "source": {
  5594. "type": "git",
  5595. "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
  5596. "reference": "1.0.0"
  5597. },
  5598. "dist": {
  5599. "type": "zip",
  5600. "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.0.0.zip",
  5601. "reference": "1.0.0",
  5602. "shasum": "8444a0ed897ba3d8e8876a9602ec8b3dca678cd1"
  5603. },
  5604. "require": {
  5605. "drupal/core": "^8 || ^9",
  5606. "drupal/jquery_ui": "^1.0"
  5607. },
  5608. "suggest": {
  5609. "furf/jquery-ui-touch-punch": "Required to use drupal/jquery_ui_touch_punch module."
  5610. },
  5611. "type": "drupal-module",
  5612. "extra": {
  5613. "drupal": {
  5614. "version": "1.0.0",
  5615. "datestamp": "1591893292",
  5616. "security-coverage": {
  5617. "status": "not-covered",
  5618. "message": "Project has not opted into security advisory coverage!"
  5619. }
  5620. }
  5621. },
  5622. "notification-url": "https://packages.drupal.org/8/downloads",
  5623. "license": [
  5624. "GPL-2.0+"
  5625. ],
  5626. "authors": [
  5627. {
  5628. "name": "Naveen Valecha",
  5629. "homepage": "https://drupal.org/u/naveenvalecha",
  5630. "role": "Maintainer"
  5631. }
  5632. ],
  5633. "description": "Provides jQuery UI Touch Punch library.",
  5634. "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5635. "keywords": [
  5636. "Drupal",
  5637. "jquery_ui_touch_punch"
  5638. ],
  5639. "support": {
  5640. "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5641. "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch",
  5642. "irc": "irc://irc.freenode.org/drupal-contribute"
  5643. }
  5644. },
  5645. {
  5646. "name": "drupal/link_attributes",
  5647. "version": "1.11.0",
  5648. "source": {
  5649. "type": "git",
  5650. "url": "https://git.drupalcode.org/project/link_attributes.git",
  5651. "reference": "8.x-1.11"
  5652. },
  5653. "dist": {
  5654. "type": "zip",
  5655. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.11.zip",
  5656. "reference": "8.x-1.11",
  5657. "shasum": "ca8c7e71c38350e3784dc3d1f779d700f55df818"
  5658. },
  5659. "require": {
  5660. "drupal/core": "^8 || ^9"
  5661. },
  5662. "type": "drupal-module",
  5663. "extra": {
  5664. "drupal": {
  5665. "version": "8.x-1.11",
  5666. "datestamp": "1598323550",
  5667. "security-coverage": {
  5668. "status": "covered",
  5669. "message": "Covered by Drupal's security advisory policy"
  5670. }
  5671. }
  5672. },
  5673. "notification-url": "https://packages.drupal.org/8/downloads",
  5674. "license": [
  5675. "GPL-2.0-or-later"
  5676. ],
  5677. "authors": [
  5678. {
  5679. "name": "larowlan",
  5680. "homepage": "https://www.drupal.org/user/395439"
  5681. }
  5682. ],
  5683. "description": "Provides a widget to allow settings of link attributes for menu links.",
  5684. "homepage": "https://www.drupal.org/project/link_attributes",
  5685. "support": {
  5686. "source": "https://git.drupalcode.org/project/link_attributes"
  5687. }
  5688. },
  5689. {
  5690. "name": "drupal/linkit",
  5691. "version": "5.0.0-beta12",
  5692. "source": {
  5693. "type": "git",
  5694. "url": "https://git.drupalcode.org/project/linkit.git",
  5695. "reference": "8.x-5.0-beta12"
  5696. },
  5697. "dist": {
  5698. "type": "zip",
  5699. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta12.zip",
  5700. "reference": "8.x-5.0-beta12",
  5701. "shasum": "9e03975b476f893112d8b12d8b8610926a4e7f2c"
  5702. },
  5703. "require": {
  5704. "drupal/core": "^8.7.7 || ^9"
  5705. },
  5706. "require-dev": {
  5707. "drupal/imce": "*"
  5708. },
  5709. "type": "drupal-module",
  5710. "extra": {
  5711. "drupal": {
  5712. "version": "8.x-5.0-beta12",
  5713. "datestamp": "1608957625",
  5714. "security-coverage": {
  5715. "status": "not-covered",
  5716. "message": "Beta releases are not covered by Drupal security advisories."
  5717. }
  5718. }
  5719. },
  5720. "notification-url": "https://packages.drupal.org/8/downloads",
  5721. "license": [
  5722. "GPL-2.0-or-later"
  5723. ],
  5724. "authors": [
  5725. {
  5726. "name": "Emil Stjerneman",
  5727. "homepage": "https://stjerneman.com",
  5728. "email": "emil@stjerneman.com",
  5729. "role": "Maintainer"
  5730. }
  5731. ],
  5732. "description": "Linkit - Enriched linking experience",
  5733. "homepage": "http://drupal.org/project/linkit",
  5734. "support": {
  5735. "source": "http://cgit.drupalcode.org/linkit",
  5736. "issues": "http://drupal.org/project/linkit"
  5737. }
  5738. },
  5739. {
  5740. "name": "drupal/login_destination",
  5741. "version": "dev-2.x",
  5742. "source": {
  5743. "type": "git",
  5744. "url": "https://git.drupalcode.org/project/login_destination.git",
  5745. "reference": "0a2c46abd451b4c83e2f5a50cb791e68b141a8ab"
  5746. },
  5747. "require": {
  5748. "drupal/core": "^8.7.10 || ^9"
  5749. },
  5750. "require-dev": {
  5751. "drupal/admin_toolbar": "^1.23",
  5752. "drupal/admin_toolbar_tools": "*"
  5753. },
  5754. "type": "drupal-module",
  5755. "extra": {
  5756. "branch-alias": {
  5757. "dev-2.x": "2.x-dev"
  5758. },
  5759. "drupal": {
  5760. "version": "8.x-2.0-alpha3+8-dev",
  5761. "datestamp": "1603450565",
  5762. "security-coverage": {
  5763. "status": "not-covered",
  5764. "message": "Dev releases are not covered by Drupal security advisories."
  5765. }
  5766. }
  5767. },
  5768. "notification-url": "https://packages.drupal.org/8/downloads",
  5769. "license": [
  5770. "GPL-2.0-or-later"
  5771. ],
  5772. "authors": [
  5773. {
  5774. "name": "3CWebDev",
  5775. "homepage": "https://www.drupal.org/user/61221"
  5776. },
  5777. {
  5778. "name": "Oliver Huynh",
  5779. "homepage": "https://www.drupal.org/user/243730"
  5780. },
  5781. {
  5782. "name": "beautifulmind",
  5783. "homepage": "https://www.drupal.org/user/219482"
  5784. },
  5785. {
  5786. "name": "ddrozdik",
  5787. "homepage": "https://www.drupal.org/user/574124"
  5788. },
  5789. {
  5790. "name": "jng12",
  5791. "homepage": "https://www.drupal.org/user/204316"
  5792. },
  5793. {
  5794. "name": "marcp",
  5795. "homepage": "https://www.drupal.org/user/20885"
  5796. },
  5797. {
  5798. "name": "mithy",
  5799. "homepage": "https://www.drupal.org/user/258911"
  5800. },
  5801. {
  5802. "name": "moshe weitzman",
  5803. "homepage": "https://www.drupal.org/user/23"
  5804. },
  5805. {
  5806. "name": "perennial.sky",
  5807. "homepage": "https://www.drupal.org/user/2622667"
  5808. },
  5809. {
  5810. "name": "rsvelko",
  5811. "homepage": "https://www.drupal.org/user/337401"
  5812. }
  5813. ],
  5814. "description": "The Login Destination module add possibility customize the destination that the user is redirected to after login.",
  5815. "homepage": "https://www.drupal.org/project/login_destination",
  5816. "support": {
  5817. "source": "https://git.drupalcode.org/project/login_destination"
  5818. },
  5819. "time": "2020-10-23T10:55:36+00:00"
  5820. },
  5821. {
  5822. "name": "drupal/maillog",
  5823. "version": "dev-1.x",
  5824. "source": {
  5825. "type": "git",
  5826. "url": "https://git.drupalcode.org/project/maillog.git",
  5827. "reference": "053d0b4a53aea4f848be75b02fc8974bb7b053b3"
  5828. },
  5829. "require": {
  5830. "drupal/core": "^8 || ^9"
  5831. },
  5832. "type": "drupal-module",
  5833. "extra": {
  5834. "branch-alias": {
  5835. "dev-1.x": "1.x-dev"
  5836. },
  5837. "drupal": {
  5838. "version": "8.x-1.0-beta1+0-dev",
  5839. "datestamp": "1600799873",
  5840. "security-coverage": {
  5841. "status": "not-covered",
  5842. "message": "Dev releases are not covered by Drupal security advisories."
  5843. }
  5844. }
  5845. },
  5846. "notification-url": "https://packages.drupal.org/8/downloads",
  5847. "license": [
  5848. "GPL-2.0-or-later"
  5849. ],
  5850. "authors": [
  5851. {
  5852. "name": "Berdir",
  5853. "homepage": "https://www.drupal.org/user/214652"
  5854. },
  5855. {
  5856. "name": "DamienMcKenna",
  5857. "homepage": "https://www.drupal.org/user/108450"
  5858. },
  5859. {
  5860. "name": "miro_dietiker",
  5861. "homepage": "https://www.drupal.org/user/227761"
  5862. },
  5863. {
  5864. "name": "pluess",
  5865. "homepage": "https://www.drupal.org/user/84659"
  5866. }
  5867. ],
  5868. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  5869. "homepage": "https://www.drupal.org/project/maillog",
  5870. "support": {
  5871. "source": "https://git.drupalcode.org/project/maillog"
  5872. },
  5873. "time": "2020-09-22T18:37:31+00:00"
  5874. },
  5875. {
  5876. "name": "drupal/mailsystem",
  5877. "version": "4.3.0",
  5878. "source": {
  5879. "type": "git",
  5880. "url": "https://git.drupalcode.org/project/mailsystem.git",
  5881. "reference": "8.x-4.3"
  5882. },
  5883. "dist": {
  5884. "type": "zip",
  5885. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.3.zip",
  5886. "reference": "8.x-4.3",
  5887. "shasum": "1a74016e268ff207535be5d5e42ac8f72ac89050"
  5888. },
  5889. "require": {
  5890. "drupal/core": "^8.7.7 || ^9"
  5891. },
  5892. "type": "drupal-module",
  5893. "extra": {
  5894. "drupal": {
  5895. "version": "8.x-4.3",
  5896. "datestamp": "1586203024",
  5897. "security-coverage": {
  5898. "status": "covered",
  5899. "message": "Covered by Drupal's security advisory policy"
  5900. }
  5901. }
  5902. },
  5903. "notification-url": "https://packages.drupal.org/8/downloads",
  5904. "license": [
  5905. "GPL-2.0+"
  5906. ],
  5907. "authors": [
  5908. {
  5909. "name": "Berdir",
  5910. "homepage": "https://www.drupal.org/user/214652"
  5911. },
  5912. {
  5913. "name": "Les Lim",
  5914. "homepage": "https://www.drupal.org/user/84263"
  5915. },
  5916. {
  5917. "name": "Manuel Garcia",
  5918. "homepage": "https://www.drupal.org/user/213194"
  5919. },
  5920. {
  5921. "name": "Nafes",
  5922. "homepage": "https://www.drupal.org/user/2489926"
  5923. },
  5924. {
  5925. "name": "miro_dietiker",
  5926. "homepage": "https://www.drupal.org/user/227761"
  5927. },
  5928. {
  5929. "name": "pillarsdotnet",
  5930. "homepage": "https://www.drupal.org/user/36148"
  5931. }
  5932. ],
  5933. "description": "Mail System",
  5934. "homepage": "https://www.drupal.org/project/mailsystem",
  5935. "support": {
  5936. "source": "https://git.drupalcode.org/project/mailsystem"
  5937. }
  5938. },
  5939. {
  5940. "name": "drupal/matomo",
  5941. "version": "1.11.0",
  5942. "source": {
  5943. "type": "git",
  5944. "url": "https://git.drupalcode.org/project/matomo.git",
  5945. "reference": "8.x-1.11"
  5946. },
  5947. "dist": {
  5948. "type": "zip",
  5949. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.11.zip",
  5950. "reference": "8.x-1.11",
  5951. "shasum": "82be96c20ab15df03d199ab98d047cef6e67d40b"
  5952. },
  5953. "require": {
  5954. "drupal/core": "^8 || ^9"
  5955. },
  5956. "require-dev": {
  5957. "drupal/php": "*",
  5958. "drupal/token": "*"
  5959. },
  5960. "type": "drupal-module",
  5961. "extra": {
  5962. "drupal": {
  5963. "version": "8.x-1.11",
  5964. "datestamp": "1601651459",
  5965. "security-coverage": {
  5966. "status": "covered",
  5967. "message": "Covered by Drupal's security advisory policy"
  5968. }
  5969. }
  5970. },
  5971. "notification-url": "https://packages.drupal.org/8/downloads",
  5972. "license": [
  5973. "GPL-2.0-or-later"
  5974. ],
  5975. "authors": [
  5976. {
  5977. "name": "Carsten Logemann",
  5978. "homepage": "https://www.drupal.org/u/C_Logemann"
  5979. },
  5980. {
  5981. "name": "Shelane French",
  5982. "homepage": "https://www.drupal.org/u/shelane"
  5983. },
  5984. {
  5985. "name": "See other contributors",
  5986. "homepage": "https://www.drupal.org/node/247808/committers"
  5987. }
  5988. ],
  5989. "description": "Adds Matomo javascript tracking code to all your site's pages",
  5990. "homepage": "https://www.drupal.org/project/matomo",
  5991. "support": {
  5992. "source": "https://git.drupal.org/project/matomo.git",
  5993. "issues": "https://www.drupal.org/project/issues/matomo"
  5994. }
  5995. },
  5996. {
  5997. "name": "drupal/maxlength",
  5998. "version": "1.0.0-rc1",
  5999. "source": {
  6000. "type": "git",
  6001. "url": "https://git.drupalcode.org/project/maxlength.git",
  6002. "reference": "8.x-1.0-rc1"
  6003. },
  6004. "dist": {
  6005. "type": "zip",
  6006. "url": "https://ftp.drupal.org/files/projects/maxlength-8.x-1.0-rc1.zip",
  6007. "reference": "8.x-1.0-rc1",
  6008. "shasum": "44eb9d79d9814cd786c2c9874c28033759665a99"
  6009. },
  6010. "require": {
  6011. "drupal/core": "^8.8 || ^9"
  6012. },
  6013. "type": "drupal-module",
  6014. "extra": {
  6015. "drupal": {
  6016. "version": "8.x-1.0-rc1",
  6017. "datestamp": "1593198218",
  6018. "security-coverage": {
  6019. "status": "not-covered",
  6020. "message": "RC releases are not covered by Drupal security advisories."
  6021. }
  6022. }
  6023. },
  6024. "notification-url": "https://packages.drupal.org/8/downloads",
  6025. "license": [
  6026. "GPL-2.0-or-later"
  6027. ],
  6028. "authors": [
  6029. {
  6030. "name": "Aron Novak",
  6031. "homepage": "https://www.drupal.org/user/61864"
  6032. },
  6033. {
  6034. "name": "Schnitzel",
  6035. "homepage": "https://www.drupal.org/user/643820"
  6036. },
  6037. {
  6038. "name": "a_c_m",
  6039. "homepage": "https://www.drupal.org/user/195063"
  6040. },
  6041. {
  6042. "name": "barneytech",
  6043. "homepage": "https://www.drupal.org/user/669922"
  6044. },
  6045. {
  6046. "name": "claudiu_cristea",
  6047. "homepage": "https://www.drupal.org/user/2623935"
  6048. },
  6049. {
  6050. "name": "dawehner",
  6051. "homepage": "https://www.drupal.org/user/99340"
  6052. },
  6053. {
  6054. "name": "derhasi",
  6055. "homepage": "https://www.drupal.org/user/83474"
  6056. },
  6057. {
  6058. "name": "frjo",
  6059. "homepage": "https://www.drupal.org/user/5546"
  6060. },
  6061. {
  6062. "name": "hefox",
  6063. "homepage": "https://www.drupal.org/user/426416"
  6064. },
  6065. {
  6066. "name": "jm.federico",
  6067. "homepage": "https://www.drupal.org/user/509892"
  6068. },
  6069. {
  6070. "name": "k4v",
  6071. "homepage": "https://www.drupal.org/user/744246"
  6072. },
  6073. {
  6074. "name": "mariano73",
  6075. "homepage": "https://www.drupal.org/user/1324866"
  6076. },
  6077. {
  6078. "name": "mariuss",
  6079. "homepage": "https://www.drupal.org/user/28539"
  6080. },
  6081. {
  6082. "name": "sanduhrs",
  6083. "homepage": "https://www.drupal.org/user/28074"
  6084. },
  6085. {
  6086. "name": "vasi1186",
  6087. "homepage": "https://www.drupal.org/user/342104"
  6088. },
  6089. {
  6090. "name": "webiator GmbH",
  6091. "homepage": "https://www.drupal.org/user/2390554"
  6092. }
  6093. ],
  6094. "description": "Limit the number of characters in textfields and textareas and shows the amount of characters left.",
  6095. "homepage": "https://www.drupal.org/project/maxlength",
  6096. "support": {
  6097. "source": "https://git.drupalcode.org/project/maxlength"
  6098. }
  6099. },
  6100. {
  6101. "name": "drupal/menu_admin_per_menu",
  6102. "version": "1.3.0",
  6103. "source": {
  6104. "type": "git",
  6105. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  6106. "reference": "8.x-1.3"
  6107. },
  6108. "dist": {
  6109. "type": "zip",
  6110. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.3.zip",
  6111. "reference": "8.x-1.3",
  6112. "shasum": "cb967bdd9ca6f5692d670d5c7c8d77587e7fd38c"
  6113. },
  6114. "require": {
  6115. "drupal/core": "^8 || ^9"
  6116. },
  6117. "type": "drupal-module",
  6118. "extra": {
  6119. "drupal": {
  6120. "version": "8.x-1.3",
  6121. "datestamp": "1593436060",
  6122. "security-coverage": {
  6123. "status": "covered",
  6124. "message": "Covered by Drupal's security advisory policy"
  6125. }
  6126. }
  6127. },
  6128. "notification-url": "https://packages.drupal.org/8/downloads",
  6129. "license": [
  6130. "GPL-2.0-or-later"
  6131. ],
  6132. "authors": [
  6133. {
  6134. "name": "JeroenT",
  6135. "homepage": "https://www.drupal.org/user/2228934"
  6136. },
  6137. {
  6138. "name": "anrikun",
  6139. "homepage": "https://www.drupal.org/user/410199"
  6140. },
  6141. {
  6142. "name": "jonas139",
  6143. "homepage": "https://www.drupal.org/user/2873401"
  6144. },
  6145. {
  6146. "name": "mkdok",
  6147. "homepage": "https://www.drupal.org/user/3308753"
  6148. }
  6149. ],
  6150. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  6151. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  6152. "support": {
  6153. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  6154. }
  6155. },
  6156. {
  6157. "name": "drupal/menu_block",
  6158. "version": "dev-1.x",
  6159. "source": {
  6160. "type": "git",
  6161. "url": "https://git.drupalcode.org/project/menu_block.git",
  6162. "reference": "17bc5a2094dec85a921fdac6aff0030bfe004744"
  6163. },
  6164. "require": {
  6165. "drupal/core": "^8 || ^9"
  6166. },
  6167. "type": "drupal-module",
  6168. "extra": {
  6169. "branch-alias": {
  6170. "dev-1.x": "1.x-dev"
  6171. },
  6172. "drupal": {
  6173. "version": "8.x-1.6+8-dev",
  6174. "datestamp": "1609550251",
  6175. "security-coverage": {
  6176. "status": "not-covered",
  6177. "message": "Dev releases are not covered by Drupal security advisories."
  6178. }
  6179. }
  6180. },
  6181. "notification-url": "https://packages.drupal.org/8/downloads",
  6182. "license": [
  6183. "GPL-2.0-or-later"
  6184. ],
  6185. "authors": [
  6186. {
  6187. "name": "Dave Reid",
  6188. "homepage": "https://www.drupal.org/user/53892"
  6189. },
  6190. {
  6191. "name": "JohnAlbin",
  6192. "homepage": "https://www.drupal.org/user/32095"
  6193. },
  6194. {
  6195. "name": "RenatoG",
  6196. "homepage": "https://www.drupal.org/user/3326031"
  6197. },
  6198. {
  6199. "name": "joelpittet",
  6200. "homepage": "https://www.drupal.org/user/160302"
  6201. },
  6202. {
  6203. "name": "kim.pepper",
  6204. "homepage": "https://www.drupal.org/user/370574"
  6205. },
  6206. {
  6207. "name": "rrrob",
  6208. "homepage": "https://www.drupal.org/user/273533"
  6209. }
  6210. ],
  6211. "description": "Provides configurable blocks of menu links.",
  6212. "homepage": "https://www.drupal.org/project/menu_block",
  6213. "support": {
  6214. "source": "https://git.drupalcode.org/project/menu_block"
  6215. },
  6216. "time": "2021-01-31T01:08:45+00:00"
  6217. },
  6218. {
  6219. "name": "drupal/menu_position",
  6220. "version": "dev-1.x",
  6221. "source": {
  6222. "type": "git",
  6223. "url": "https://git.drupalcode.org/project/menu_position.git",
  6224. "reference": "bce075f4ea167a851d7401602394de557b76c85f"
  6225. },
  6226. "require": {
  6227. "drupal/core": "^8 || ^9"
  6228. },
  6229. "type": "drupal-module",
  6230. "extra": {
  6231. "branch-alias": {
  6232. "dev-1.x": "1.x-dev"
  6233. },
  6234. "drupal": {
  6235. "version": "8.x-1.0-alpha4+4-dev",
  6236. "datestamp": "1587797468",
  6237. "security-coverage": {
  6238. "status": "not-covered",
  6239. "message": "Dev releases are not covered by Drupal security advisories."
  6240. }
  6241. }
  6242. },
  6243. "notification-url": "https://packages.drupal.org/8/downloads",
  6244. "license": [
  6245. "GPL-2.0+"
  6246. ],
  6247. "authors": [
  6248. {
  6249. "name": "BarisW",
  6250. "homepage": "https://www.drupal.org/user/107229"
  6251. },
  6252. {
  6253. "name": "JohnAlbin",
  6254. "homepage": "https://www.drupal.org/user/32095"
  6255. },
  6256. {
  6257. "name": "Sutharsan",
  6258. "homepage": "https://www.drupal.org/user/73854"
  6259. },
  6260. {
  6261. "name": "joelpittet",
  6262. "homepage": "https://www.drupal.org/user/160302"
  6263. },
  6264. {
  6265. "name": "lbainbridge",
  6266. "homepage": "https://www.drupal.org/user/2406996"
  6267. }
  6268. ],
  6269. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  6270. "homepage": "https://www.drupal.org/project/menu_position",
  6271. "support": {
  6272. "source": "https://git.drupalcode.org/project/menu_position",
  6273. "issues": "https://www.drupal.org/project/issues/menu_position"
  6274. },
  6275. "time": "2020-04-25T06:50:43+00:00"
  6276. },
  6277. {
  6278. "name": "drupal/pagerer",
  6279. "version": "2.0.0",
  6280. "source": {
  6281. "type": "git",
  6282. "url": "https://git.drupalcode.org/project/pagerer.git",
  6283. "reference": "8.x-2.0"
  6284. },
  6285. "dist": {
  6286. "type": "zip",
  6287. "url": "https://ftp.drupal.org/files/projects/pagerer-8.x-2.0.zip",
  6288. "reference": "8.x-2.0",
  6289. "shasum": "de54dee5aa1336c1d6e6c5aeccfbd602d5898c7f"
  6290. },
  6291. "require": {
  6292. "drupal/core": "^8.8 || ^9",
  6293. "drupal/jquery_ui_button": "*",
  6294. "drupal/jquery_ui_slider": "*",
  6295. "php": ">=7.1"
  6296. },
  6297. "type": "drupal-module",
  6298. "extra": {
  6299. "drupal": {
  6300. "version": "8.x-2.0",
  6301. "datestamp": "1589289359",
  6302. "security-coverage": {
  6303. "status": "covered",
  6304. "message": "Covered by Drupal's security advisory policy"
  6305. }
  6306. }
  6307. },
  6308. "notification-url": "https://packages.drupal.org/8/downloads",
  6309. "license": [
  6310. "GPL-2.0-or-later"
  6311. ],
  6312. "authors": [
  6313. {
  6314. "name": "mondrake",
  6315. "homepage": "https://www.drupal.org/user/1307444"
  6316. }
  6317. ],
  6318. "description": "Configurable pager styles.",
  6319. "homepage": "https://www.drupal.org/project/pagerer",
  6320. "support": {
  6321. "source": "https://git.drupalcode.org/project/pagerer"
  6322. }
  6323. },
  6324. {
  6325. "name": "drupal/path_alias_xt",
  6326. "version": "dev-1.x",
  6327. "source": {
  6328. "type": "git",
  6329. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  6330. "reference": "10ef76dd3eb25bc1342195336291ded3f2d8cc7e"
  6331. },
  6332. "require": {
  6333. "drupal/core": "^8.7.7 || ^9"
  6334. },
  6335. "type": "drupal-module",
  6336. "extra": {
  6337. "branch-alias": {
  6338. "dev-1.x": "1.x-dev"
  6339. },
  6340. "drupal": {
  6341. "version": "8.x-1.x-dev",
  6342. "datestamp": "1590299862",
  6343. "security-coverage": {
  6344. "status": "not-covered",
  6345. "message": "Dev releases are not covered by Drupal security advisories."
  6346. }
  6347. }
  6348. },
  6349. "notification-url": "https://packages.drupal.org/8/downloads",
  6350. "license": [
  6351. "GPL-2.0-or-later"
  6352. ],
  6353. "authors": [
  6354. {
  6355. "name": "RdeBoer",
  6356. "homepage": "https://www.drupal.org/user/404007"
  6357. },
  6358. {
  6359. "name": "adriancid",
  6360. "homepage": "https://www.drupal.org/user/1962106"
  6361. },
  6362. {
  6363. "name": "sdstyles",
  6364. "homepage": "https://www.drupal.org/user/1420228"
  6365. }
  6366. ],
  6367. "description": "Automatically extend path aliases to include tabs, like <em>about-us/edit</em> for <em>node/123/edit</em>.<br> Allow these aliases to be entered in page specification wild-cards, <em>about-us*</em>, e.g for block visibility.",
  6368. "homepage": "https://www.drupal.org/project/path_alias_xt",
  6369. "support": {
  6370. "source": "https://git.drupalcode.org/project/path_alias_xt"
  6371. },
  6372. "time": "2020-05-24T05:57:09+00:00"
  6373. },
  6374. {
  6375. "name": "drupal/pathauto",
  6376. "version": "1.8.0",
  6377. "source": {
  6378. "type": "git",
  6379. "url": "https://git.drupalcode.org/project/pathauto.git",
  6380. "reference": "8.x-1.8"
  6381. },
  6382. "dist": {
  6383. "type": "zip",
  6384. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.8.zip",
  6385. "reference": "8.x-1.8",
  6386. "shasum": "ede3216abb9c4f77709338d9147334c595046329"
  6387. },
  6388. "require": {
  6389. "drupal/core": "^8.8 || ^9",
  6390. "drupal/ctools": "*",
  6391. "drupal/token": "*"
  6392. },
  6393. "suggest": {
  6394. "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."
  6395. },
  6396. "type": "drupal-module",
  6397. "extra": {
  6398. "drupal": {
  6399. "version": "8.x-1.8",
  6400. "datestamp": "1588103046",
  6401. "security-coverage": {
  6402. "status": "covered",
  6403. "message": "Covered by Drupal's security advisory policy"
  6404. }
  6405. },
  6406. "drush": {
  6407. "services": {
  6408. "drush.services.yml": "^9 || ^10"
  6409. }
  6410. }
  6411. },
  6412. "notification-url": "https://packages.drupal.org/8/downloads",
  6413. "license": [
  6414. "GPL-2.0-or-later"
  6415. ],
  6416. "authors": [
  6417. {
  6418. "name": "Berdir",
  6419. "homepage": "https://www.drupal.org/user/214652"
  6420. },
  6421. {
  6422. "name": "Dave Reid",
  6423. "homepage": "https://www.drupal.org/user/53892"
  6424. },
  6425. {
  6426. "name": "Freso",
  6427. "homepage": "https://www.drupal.org/user/27504"
  6428. },
  6429. {
  6430. "name": "greggles",
  6431. "homepage": "https://www.drupal.org/user/36762"
  6432. }
  6433. ],
  6434. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  6435. "homepage": "https://www.drupal.org/project/pathauto",
  6436. "support": {
  6437. "source": "https://cgit.drupalcode.org/pathauto",
  6438. "issues": "https://www.drupal.org/project/issues/pathauto",
  6439. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  6440. }
  6441. },
  6442. {
  6443. "name": "drupal/pathologic",
  6444. "version": "1.0.0-alpha2",
  6445. "source": {
  6446. "type": "git",
  6447. "url": "https://git.drupalcode.org/project/pathologic.git",
  6448. "reference": "8.x-1.0-alpha2"
  6449. },
  6450. "dist": {
  6451. "type": "zip",
  6452. "url": "https://ftp.drupal.org/files/projects/pathologic-8.x-1.0-alpha2.zip",
  6453. "reference": "8.x-1.0-alpha2",
  6454. "shasum": "5b1b6846ab72e24a90dcd4cafbe855fba069e56b"
  6455. },
  6456. "require": {
  6457. "drupal/core": "^8 || ^9"
  6458. },
  6459. "type": "drupal-module",
  6460. "extra": {
  6461. "drupal": {
  6462. "version": "8.x-1.0-alpha2",
  6463. "datestamp": "1593911470",
  6464. "security-coverage": {
  6465. "status": "not-covered",
  6466. "message": "Alpha releases are not covered by Drupal security advisories."
  6467. }
  6468. }
  6469. },
  6470. "notification-url": "https://packages.drupal.org/8/downloads",
  6471. "license": [
  6472. "GPL-2.0-or-later"
  6473. ],
  6474. "authors": [
  6475. {
  6476. "name": "Berdir",
  6477. "homepage": "https://www.drupal.org/user/214652"
  6478. },
  6479. {
  6480. "name": "Garrett Albright",
  6481. "homepage": "https://www.drupal.org/user/191212"
  6482. },
  6483. {
  6484. "name": "dww",
  6485. "homepage": "https://www.drupal.org/user/46549"
  6486. }
  6487. ],
  6488. "description": "Helps avoid broken links and incorrect paths in content.",
  6489. "homepage": "https://www.drupal.org/project/pathologic",
  6490. "support": {
  6491. "source": "https://git.drupalcode.org/project/pathologic"
  6492. }
  6493. },
  6494. {
  6495. "name": "drupal/persistent_login",
  6496. "version": "1.3.0",
  6497. "source": {
  6498. "type": "git",
  6499. "url": "https://git.drupalcode.org/project/persistent_login.git",
  6500. "reference": "8.x-1.3"
  6501. },
  6502. "dist": {
  6503. "type": "zip",
  6504. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.3.zip",
  6505. "reference": "8.x-1.3",
  6506. "shasum": "dfff4cb76d6b3888073dd992bcf4d51b1bb47696"
  6507. },
  6508. "require": {
  6509. "drupal/core": "^8.3 || ^9.0"
  6510. },
  6511. "type": "drupal-module",
  6512. "extra": {
  6513. "drupal": {
  6514. "version": "8.x-1.3",
  6515. "datestamp": "1591597823",
  6516. "security-coverage": {
  6517. "status": "covered",
  6518. "message": "Covered by Drupal's security advisory policy"
  6519. }
  6520. }
  6521. },
  6522. "notification-url": "https://packages.drupal.org/8/downloads",
  6523. "license": [
  6524. "GPL-2.0-or-later"
  6525. ],
  6526. "authors": [
  6527. {
  6528. "name": "gapple",
  6529. "homepage": "https://www.drupal.org/user/490940"
  6530. }
  6531. ],
  6532. "description": "Provides a \"Remember Me\" feature on the login form.",
  6533. "homepage": "https://www.drupal.org/project/persistent_login",
  6534. "keywords": [
  6535. "Drupal"
  6536. ],
  6537. "support": {
  6538. "source": "https://git.drupalcode.org/project/persistent_login",
  6539. "issues": "https://www.drupal.org/project/issues/persistent_login"
  6540. }
  6541. },
  6542. {
  6543. "name": "drupal/profile",
  6544. "version": "1.2.0",
  6545. "source": {
  6546. "type": "git",
  6547. "url": "https://git.drupalcode.org/project/profile.git",
  6548. "reference": "8.x-1.2"
  6549. },
  6550. "dist": {
  6551. "type": "zip",
  6552. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.2.zip",
  6553. "reference": "8.x-1.2",
  6554. "shasum": "5ea5167ed6cc5b47761ea497fe20bae0fbea1cf2"
  6555. },
  6556. "require": {
  6557. "drupal/core": "^8.8 || ^9",
  6558. "drupal/entity": "^1.0-rc2"
  6559. },
  6560. "require-dev": {
  6561. "drupal/token": "^1.7"
  6562. },
  6563. "type": "drupal-module",
  6564. "extra": {
  6565. "drupal": {
  6566. "version": "8.x-1.2",
  6567. "datestamp": "1604422701",
  6568. "security-coverage": {
  6569. "status": "covered",
  6570. "message": "Covered by Drupal's security advisory policy"
  6571. }
  6572. }
  6573. },
  6574. "notification-url": "https://packages.drupal.org/8/downloads",
  6575. "license": [
  6576. "GPL-2.0-or-later"
  6577. ],
  6578. "authors": [
  6579. {
  6580. "name": "bojanz",
  6581. "homepage": "https://www.drupal.org/user/86106"
  6582. },
  6583. {
  6584. "name": "daggerhart",
  6585. "homepage": "https://www.drupal.org/user/167806"
  6586. },
  6587. {
  6588. "name": "fago",
  6589. "homepage": "https://www.drupal.org/user/16747"
  6590. },
  6591. {
  6592. "name": "jsacksick",
  6593. "homepage": "https://www.drupal.org/user/972218"
  6594. },
  6595. {
  6596. "name": "mglaman",
  6597. "homepage": "https://www.drupal.org/user/2416470"
  6598. },
  6599. {
  6600. "name": "pcambra",
  6601. "homepage": "https://www.drupal.org/user/122101"
  6602. }
  6603. ],
  6604. "description": "Provides configurable user profiles.",
  6605. "homepage": "http://drupal.org/project/profile",
  6606. "support": {
  6607. "source": "https://git.drupalcode.org/project/profile"
  6608. }
  6609. },
  6610. {
  6611. "name": "drupal/redirect",
  6612. "version": "1.6.0",
  6613. "source": {
  6614. "type": "git",
  6615. "url": "https://git.drupalcode.org/project/redirect.git",
  6616. "reference": "8.x-1.6"
  6617. },
  6618. "dist": {
  6619. "type": "zip",
  6620. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.6.zip",
  6621. "reference": "8.x-1.6",
  6622. "shasum": "f848e001deac8425ae57d4b9397087c491d37294"
  6623. },
  6624. "require": {
  6625. "drupal/core": "^8.8 || ^9"
  6626. },
  6627. "type": "drupal-module",
  6628. "extra": {
  6629. "drupal": {
  6630. "version": "8.x-1.6",
  6631. "datestamp": "1589312204",
  6632. "security-coverage": {
  6633. "status": "covered",
  6634. "message": "Covered by Drupal's security advisory policy"
  6635. }
  6636. }
  6637. },
  6638. "notification-url": "https://packages.drupal.org/8/downloads",
  6639. "license": [
  6640. "GPL-2.0-or-later"
  6641. ],
  6642. "authors": [
  6643. {
  6644. "name": "Berdir",
  6645. "homepage": "https://www.drupal.org/user/214652"
  6646. },
  6647. {
  6648. "name": "Dave Reid",
  6649. "homepage": "https://www.drupal.org/user/53892"
  6650. },
  6651. {
  6652. "name": "pifagor",
  6653. "homepage": "https://www.drupal.org/user/2375692"
  6654. }
  6655. ],
  6656. "description": "Allows users to redirect from old URLs to new URLs.",
  6657. "homepage": "https://www.drupal.org/project/redirect",
  6658. "support": {
  6659. "source": "https://git.drupalcode.org/project/redirect"
  6660. }
  6661. },
  6662. {
  6663. "name": "drupal/redis",
  6664. "version": "1.5.0",
  6665. "source": {
  6666. "type": "git",
  6667. "url": "https://git.drupalcode.org/project/redis.git",
  6668. "reference": "8.x-1.5"
  6669. },
  6670. "dist": {
  6671. "type": "zip",
  6672. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.5.zip",
  6673. "reference": "8.x-1.5",
  6674. "shasum": "4283333dc2bf405045765b83ca662acc409a6543"
  6675. },
  6676. "require": {
  6677. "drupal/core": "^8.8 || ^9"
  6678. },
  6679. "suggest": {
  6680. "predis/predis": "^1.1.1"
  6681. },
  6682. "type": "drupal-module",
  6683. "extra": {
  6684. "drupal": {
  6685. "version": "8.x-1.5",
  6686. "datestamp": "1609972488",
  6687. "security-coverage": {
  6688. "status": "covered",
  6689. "message": "Covered by Drupal's security advisory policy"
  6690. }
  6691. }
  6692. },
  6693. "autoload": {
  6694. "psr-4": {
  6695. "Drupal\\redis\\": "src"
  6696. }
  6697. },
  6698. "notification-url": "https://packages.drupal.org/8/downloads",
  6699. "license": [
  6700. "GPL-2.0-or-later"
  6701. ],
  6702. "authors": [
  6703. {
  6704. "name": "Berdir",
  6705. "homepage": "https://www.drupal.org/user/214652"
  6706. },
  6707. {
  6708. "name": "pounard",
  6709. "homepage": "https://www.drupal.org/user/240164"
  6710. }
  6711. ],
  6712. "description": "Integration of Drupal with the Redis key-value store.",
  6713. "homepage": "https://www.drupal.org/project/redis",
  6714. "support": {
  6715. "source": "https://git.drupalcode.org/project/redis"
  6716. }
  6717. },
  6718. {
  6719. "name": "drupal/search_api",
  6720. "version": "1.19.0",
  6721. "source": {
  6722. "type": "git",
  6723. "url": "https://git.drupalcode.org/project/search_api.git",
  6724. "reference": "8.x-1.19"
  6725. },
  6726. "dist": {
  6727. "type": "zip",
  6728. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.19.zip",
  6729. "reference": "8.x-1.19",
  6730. "shasum": "5654e9d02117e28c585d89a25ea3cc40d20c5019"
  6731. },
  6732. "require": {
  6733. "drupal/core": "^8.8 || ^9"
  6734. },
  6735. "conflict": {
  6736. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  6737. },
  6738. "require-dev": {
  6739. "drupal/language_fallback_fix": "@dev",
  6740. "drupal/search_api_autocomplete": "@dev",
  6741. "drupal/search_api_db": "*"
  6742. },
  6743. "suggest": {
  6744. "drupal/facets": "Adds the ability to create faceted searches.",
  6745. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  6746. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  6747. },
  6748. "type": "drupal-module",
  6749. "extra": {
  6750. "drupal": {
  6751. "version": "8.x-1.19",
  6752. "datestamp": "1612192040",
  6753. "security-coverage": {
  6754. "status": "covered",
  6755. "message": "Covered by Drupal's security advisory policy"
  6756. }
  6757. },
  6758. "drush": {
  6759. "services": {
  6760. "drush.services.yml": "^9"
  6761. }
  6762. }
  6763. },
  6764. "notification-url": "https://packages.drupal.org/8/downloads",
  6765. "license": [
  6766. "GPL-2.0-or-later"
  6767. ],
  6768. "authors": [
  6769. {
  6770. "name": "Thomas Seidl",
  6771. "homepage": "https://www.drupal.org/u/drunken-monkey"
  6772. },
  6773. {
  6774. "name": "Nick Veenhof",
  6775. "homepage": "https://www.drupal.org/u/nick_vh"
  6776. },
  6777. {
  6778. "name": "See other contributors",
  6779. "homepage": "https://www.drupal.org/node/790418/committers"
  6780. }
  6781. ],
  6782. "description": "Provides a generic framework for modules offering search capabilities.",
  6783. "homepage": "https://www.drupal.org/project/search_api",
  6784. "support": {
  6785. "source": "https://git.drupalcode.org/project/search_api",
  6786. "issues": "https://www.drupal.org/project/issues/search_api",
  6787. "irc": "irc://irc.freenode.org/drupal-search-api"
  6788. }
  6789. },
  6790. {
  6791. "name": "drupal/search_api_db",
  6792. "version": "1.19.0",
  6793. "require": {
  6794. "drupal/core": "^8.8 || ^9",
  6795. "drupal/search_api": "*"
  6796. },
  6797. "type": "metapackage",
  6798. "extra": {
  6799. "drupal": {
  6800. "version": "8.x-1.19",
  6801. "datestamp": "1612192040",
  6802. "security-coverage": {
  6803. "status": "covered",
  6804. "message": "Covered by Drupal's security advisory policy"
  6805. }
  6806. }
  6807. },
  6808. "notification-url": "https://packages.drupal.org/8/downloads",
  6809. "license": [
  6810. "GPL-2.0-or-later"
  6811. ],
  6812. "authors": [
  6813. {
  6814. "name": "Nick_vh",
  6815. "homepage": "https://www.drupal.org/user/122682"
  6816. },
  6817. {
  6818. "name": "borisson_",
  6819. "homepage": "https://www.drupal.org/user/2393360"
  6820. },
  6821. {
  6822. "name": "drunken monkey",
  6823. "homepage": "https://www.drupal.org/user/205582"
  6824. }
  6825. ],
  6826. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  6827. "homepage": "https://www.drupal.org/project/search_api",
  6828. "support": {
  6829. "source": "https://git.drupalcode.org/project/search_api"
  6830. }
  6831. },
  6832. {
  6833. "name": "drupal/smart_trim",
  6834. "version": "1.3.0",
  6835. "source": {
  6836. "type": "git",
  6837. "url": "https://git.drupalcode.org/project/smart_trim.git",
  6838. "reference": "8.x-1.3"
  6839. },
  6840. "dist": {
  6841. "type": "zip",
  6842. "url": "https://ftp.drupal.org/files/projects/smart_trim-8.x-1.3.zip",
  6843. "reference": "8.x-1.3",
  6844. "shasum": "5894aa067fba19a3452ed8ce749f33bd9ae91907"
  6845. },
  6846. "require": {
  6847. "drupal/core": "^8 || ^9"
  6848. },
  6849. "type": "drupal-module",
  6850. "extra": {
  6851. "drupal": {
  6852. "version": "8.x-1.3",
  6853. "datestamp": "1589766531",
  6854. "security-coverage": {
  6855. "status": "covered",
  6856. "message": "Covered by Drupal's security advisory policy"
  6857. }
  6858. }
  6859. },
  6860. "notification-url": "https://packages.drupal.org/8/downloads",
  6861. "license": [
  6862. "GPL-2.0-or-later"
  6863. ],
  6864. "authors": [
  6865. {
  6866. "name": "Mark Casias (markie)",
  6867. "homepage": "https://www.drupal.org/u/markie",
  6868. "role": "Maintainer"
  6869. },
  6870. {
  6871. "name": "newsignature",
  6872. "homepage": "https://www.drupal.org/user/765518"
  6873. },
  6874. {
  6875. "name": "ultimike",
  6876. "homepage": "https://www.drupal.org/user/51132"
  6877. },
  6878. {
  6879. "name": "volkswagenchick",
  6880. "homepage": "https://www.drupal.org/user/3332522"
  6881. }
  6882. ],
  6883. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  6884. "homepage": "https://drupal.org/project/smart_trim",
  6885. "support": {
  6886. "source": "https://cgit.drupalcode.org/smart_trim",
  6887. "issues": "https://drupal.org/project/issues/smart_trim"
  6888. }
  6889. },
  6890. {
  6891. "name": "drupal/smtp",
  6892. "version": "1.0.0",
  6893. "source": {
  6894. "type": "git",
  6895. "url": "https://git.drupalcode.org/project/smtp.git",
  6896. "reference": "8.x-1.0"
  6897. },
  6898. "dist": {
  6899. "type": "zip",
  6900. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.0.zip",
  6901. "reference": "8.x-1.0",
  6902. "shasum": "c40cc7a3c20d3f743e3a4e53f4cc296748da89fd"
  6903. },
  6904. "require": {
  6905. "drupal/core": "^8.8 || ^9",
  6906. "phpmailer/phpmailer": "^6.1.7"
  6907. },
  6908. "suggest": {
  6909. "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
  6910. },
  6911. "type": "drupal-module",
  6912. "extra": {
  6913. "drupal": {
  6914. "version": "8.x-1.0",
  6915. "datestamp": "1601070985",
  6916. "security-coverage": {
  6917. "status": "covered",
  6918. "message": "Covered by Drupal's security advisory policy"
  6919. }
  6920. },
  6921. "branch-alias": {
  6922. "dev-8.x-1.x": "1.x-dev"
  6923. }
  6924. },
  6925. "notification-url": "https://packages.drupal.org/8/downloads",
  6926. "license": [
  6927. "GPL-2.0-or-later"
  6928. ],
  6929. "authors": [
  6930. {
  6931. "name": "LukeLast",
  6932. "homepage": "https://www.drupal.org/user/30151"
  6933. },
  6934. {
  6935. "name": "japerry",
  6936. "homepage": "https://www.drupal.org/user/45640"
  6937. },
  6938. {
  6939. "name": "josesanmartin",
  6940. "homepage": "https://www.drupal.org/user/72012"
  6941. },
  6942. {
  6943. "name": "oadaeh",
  6944. "homepage": "https://www.drupal.org/user/4649"
  6945. },
  6946. {
  6947. "name": "sadashiv",
  6948. "homepage": "https://www.drupal.org/user/1773304"
  6949. },
  6950. {
  6951. "name": "wundo",
  6952. "homepage": "https://www.drupal.org/user/25523"
  6953. },
  6954. {
  6955. "name": "yettyn",
  6956. "homepage": "https://www.drupal.org/user/93281"
  6957. }
  6958. ],
  6959. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  6960. "homepage": "https://www.drupal.org/project/smtp",
  6961. "support": {
  6962. "source": "https://git.drupalcode.org/project/smtp",
  6963. "issues": "https://www.drupal.org/project/issues/smtp"
  6964. }
  6965. },
  6966. {
  6967. "name": "drupal/sophron",
  6968. "version": "1.1.0",
  6969. "source": {
  6970. "type": "git",
  6971. "url": "https://git.drupalcode.org/project/sophron.git",
  6972. "reference": "8.x-1.1"
  6973. },
  6974. "dist": {
  6975. "type": "zip",
  6976. "url": "https://ftp.drupal.org/files/projects/sophron-8.x-1.1.zip",
  6977. "reference": "8.x-1.1",
  6978. "shasum": "afb3650458b15b87918471defa763f24880622ca"
  6979. },
  6980. "require": {
  6981. "drupal/core": "^8.9 || ^9",
  6982. "fileeye/mimemap": "^1.1.4",
  6983. "php": ">=7.1"
  6984. },
  6985. "type": "drupal-module",
  6986. "extra": {
  6987. "drupal": {
  6988. "version": "8.x-1.1",
  6989. "datestamp": "1606047077",
  6990. "security-coverage": {
  6991. "status": "covered",
  6992. "message": "Covered by Drupal's security advisory policy"
  6993. }
  6994. }
  6995. },
  6996. "autoload": {
  6997. "psr-4": {
  6998. "Drupal\\sophron\\": "src/"
  6999. }
  7000. },
  7001. "notification-url": "https://packages.drupal.org/8/downloads",
  7002. "license": [
  7003. "GPL-2.0-or-later"
  7004. ],
  7005. "authors": [
  7006. {
  7007. "name": "mondrake",
  7008. "homepage": "https://www.drupal.org/user/1307444"
  7009. }
  7010. ],
  7011. "description": "Provides an extensive MIME types management API",
  7012. "homepage": "https://www.drupal.org/project/sophron",
  7013. "support": {
  7014. "source": "https://git.drupalcode.org/project/sophron"
  7015. }
  7016. },
  7017. {
  7018. "name": "drupal/synonyms",
  7019. "version": "dev-1.x",
  7020. "source": {
  7021. "type": "git",
  7022. "url": "https://git.drupalcode.org/project/synonyms.git",
  7023. "reference": "d9c7956405622c5630284f15633845771e84ae54"
  7024. },
  7025. "require": {
  7026. "drupal/core": "^8 || ^9"
  7027. },
  7028. "type": "drupal-module",
  7029. "extra": {
  7030. "branch-alias": {
  7031. "dev-1.x": "1.x-dev"
  7032. },
  7033. "drupal": {
  7034. "version": "8.x-1.0-alpha3+4-dev",
  7035. "datestamp": "1613107043",
  7036. "security-coverage": {
  7037. "status": "not-covered",
  7038. "message": "Dev releases are not covered by Drupal security advisories."
  7039. }
  7040. }
  7041. },
  7042. "notification-url": "https://packages.drupal.org/8/downloads",
  7043. "license": [
  7044. "GPL-2.0-or-later"
  7045. ],
  7046. "authors": [
  7047. {
  7048. "name": "Zen",
  7049. "homepage": "https://www.drupal.org/user/21209"
  7050. },
  7051. {
  7052. "name": "bojanz",
  7053. "homepage": "https://www.drupal.org/user/86106"
  7054. },
  7055. {
  7056. "name": "bucefal91",
  7057. "homepage": "https://www.drupal.org/user/504128"
  7058. },
  7059. {
  7060. "name": "devad",
  7061. "homepage": "https://www.drupal.org/user/2268520"
  7062. }
  7063. ],
  7064. "description": "Provides synonyms feature for content entities.",
  7065. "homepage": "https://www.drupal.org/project/synonyms",
  7066. "support": {
  7067. "source": "https://git.drupalcode.org/project/synonyms"
  7068. },
  7069. "time": "2021-01-17T02:58:49+00:00"
  7070. },
  7071. {
  7072. "name": "drupal/token",
  7073. "version": "1.9.0",
  7074. "source": {
  7075. "type": "git",
  7076. "url": "https://git.drupalcode.org/project/token.git",
  7077. "reference": "8.x-1.9"
  7078. },
  7079. "dist": {
  7080. "type": "zip",
  7081. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.9.zip",
  7082. "reference": "8.x-1.9",
  7083. "shasum": "a5d234382a1a0e4ba61d4c7a2fa10671ca656be4"
  7084. },
  7085. "require": {
  7086. "drupal/core": "^8.8 || ^9"
  7087. },
  7088. "type": "drupal-module",
  7089. "extra": {
  7090. "drupal": {
  7091. "version": "8.x-1.9",
  7092. "datestamp": "1608284866",
  7093. "security-coverage": {
  7094. "status": "covered",
  7095. "message": "Covered by Drupal's security advisory policy"
  7096. }
  7097. },
  7098. "drush": {
  7099. "services": {
  7100. "drush.services.yml": "^9 || ^10"
  7101. }
  7102. }
  7103. },
  7104. "notification-url": "https://packages.drupal.org/8/downloads",
  7105. "license": [
  7106. "GPL-2.0-or-later"
  7107. ],
  7108. "authors": [
  7109. {
  7110. "name": "Berdir",
  7111. "homepage": "https://www.drupal.org/user/214652"
  7112. },
  7113. {
  7114. "name": "Dave Reid",
  7115. "homepage": "https://www.drupal.org/user/53892"
  7116. },
  7117. {
  7118. "name": "eaton",
  7119. "homepage": "https://www.drupal.org/user/16496"
  7120. },
  7121. {
  7122. "name": "fago",
  7123. "homepage": "https://www.drupal.org/user/16747"
  7124. },
  7125. {
  7126. "name": "greggles",
  7127. "homepage": "https://www.drupal.org/user/36762"
  7128. },
  7129. {
  7130. "name": "mikeryan",
  7131. "homepage": "https://www.drupal.org/user/4420"
  7132. }
  7133. ],
  7134. "description": "Provides a user interface for the Token API, some missing core tokens.",
  7135. "homepage": "https://www.drupal.org/project/token",
  7136. "support": {
  7137. "source": "https://git.drupalcode.org/project/token"
  7138. }
  7139. },
  7140. {
  7141. "name": "drupal/translation_views",
  7142. "version": "1.0.0-alpha10",
  7143. "source": {
  7144. "type": "git",
  7145. "url": "https://git.drupalcode.org/project/translation_views.git",
  7146. "reference": "8.x-1.0-alpha10"
  7147. },
  7148. "dist": {
  7149. "type": "zip",
  7150. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha10.zip",
  7151. "reference": "8.x-1.0-alpha10",
  7152. "shasum": "ca1a6d4bf16293b1b094db6439f9f065de1dbbd5"
  7153. },
  7154. "require": {
  7155. "drupal/core": "^8.8 || ^9"
  7156. },
  7157. "require-dev": {
  7158. "drupal/translators": "*",
  7159. "drupal/translators_content": "*"
  7160. },
  7161. "type": "drupal-module",
  7162. "extra": {
  7163. "drupal": {
  7164. "version": "8.x-1.0-alpha10",
  7165. "datestamp": "1584303687",
  7166. "security-coverage": {
  7167. "status": "not-covered",
  7168. "message": "Project has not opted into security advisory coverage!"
  7169. }
  7170. }
  7171. },
  7172. "notification-url": "https://packages.drupal.org/8/downloads",
  7173. "license": [
  7174. "GPL-2.0-or-later"
  7175. ],
  7176. "authors": [
  7177. {
  7178. "name": "matsbla",
  7179. "homepage": "https://www.drupal.org/user/2325394"
  7180. },
  7181. {
  7182. "name": "vlad.dancer",
  7183. "homepage": "https://www.drupal.org/user/903844"
  7184. }
  7185. ],
  7186. "description": "Create customized lists and queries of translations from your database.",
  7187. "homepage": "https://www.drupal.org/project/translation_views",
  7188. "support": {
  7189. "source": "https://git.drupalcode.org/project/translation_views"
  7190. }
  7191. },
  7192. {
  7193. "name": "drupal/ultimate_cron",
  7194. "version": "2.0.0-alpha5",
  7195. "source": {
  7196. "type": "git",
  7197. "url": "https://git.drupalcode.org/project/ultimate_cron.git",
  7198. "reference": "8.x-2.0-alpha5"
  7199. },
  7200. "dist": {
  7201. "type": "zip",
  7202. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha5.zip",
  7203. "reference": "8.x-2.0-alpha5",
  7204. "shasum": "0f10464fff29eca89024e7afa5b6d8d07bd52f75"
  7205. },
  7206. "require": {
  7207. "drupal/core": "^8.7.7 || ^9"
  7208. },
  7209. "type": "drupal-module",
  7210. "extra": {
  7211. "drupal": {
  7212. "version": "8.x-2.0-alpha5",
  7213. "datestamp": "1600928948",
  7214. "security-coverage": {
  7215. "status": "not-covered",
  7216. "message": "Alpha releases are not covered by Drupal security advisories."
  7217. }
  7218. },
  7219. "drush": {
  7220. "services": {
  7221. "drush.services.yml": "^9 || ^10"
  7222. }
  7223. }
  7224. },
  7225. "notification-url": "https://packages.drupal.org/8/downloads",
  7226. "license": [
  7227. "GPL-2.0+"
  7228. ],
  7229. "authors": [
  7230. {
  7231. "name": "Berdir",
  7232. "homepage": "https://www.drupal.org/user/214652"
  7233. },
  7234. {
  7235. "name": "Dane Powell",
  7236. "homepage": "https://www.drupal.org/user/339326"
  7237. },
  7238. {
  7239. "name": "Primsi",
  7240. "homepage": "https://www.drupal.org/user/282629"
  7241. },
  7242. {
  7243. "name": "arnested",
  7244. "homepage": "https://www.drupal.org/user/245635"
  7245. },
  7246. {
  7247. "name": "gielfeldt",
  7248. "homepage": "https://www.drupal.org/user/366993"
  7249. },
  7250. {
  7251. "name": "miro_dietiker",
  7252. "homepage": "https://www.drupal.org/user/227761"
  7253. }
  7254. ],
  7255. "description": "Ultimate cron",
  7256. "homepage": "https://www.drupal.org/project/ultimate_cron",
  7257. "support": {
  7258. "source": "https://git.drupalcode.org/project/ultimate_cron"
  7259. }
  7260. },
  7261. {
  7262. "name": "drupal/url_to_video_filter",
  7263. "version": "2.0.0",
  7264. "source": {
  7265. "type": "git",
  7266. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  7267. "reference": "2.0.0"
  7268. },
  7269. "dist": {
  7270. "type": "zip",
  7271. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-2.0.0.zip",
  7272. "reference": "2.0.0",
  7273. "shasum": "ac728919cc220846d8ef2ce61dbe1b94fbbf479b"
  7274. },
  7275. "require": {
  7276. "drupal/core": "^8 || ^9"
  7277. },
  7278. "type": "drupal-module",
  7279. "extra": {
  7280. "drupal": {
  7281. "version": "2.0.0",
  7282. "datestamp": "1607298389",
  7283. "security-coverage": {
  7284. "status": "covered",
  7285. "message": "Covered by Drupal's security advisory policy"
  7286. }
  7287. }
  7288. },
  7289. "notification-url": "https://packages.drupal.org/8/downloads",
  7290. "license": [
  7291. "GPL-2.0-or-later"
  7292. ],
  7293. "authors": [
  7294. {
  7295. "name": "Jaypan",
  7296. "homepage": "https://www.drupal.org/user/324696"
  7297. }
  7298. ],
  7299. "description": "Text filter to convert URLs to embedded videos",
  7300. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  7301. "support": {
  7302. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  7303. }
  7304. },
  7305. {
  7306. "name": "drupal/video_embed_field",
  7307. "version": "2.4.0",
  7308. "source": {
  7309. "type": "git",
  7310. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  7311. "reference": "8.x-2.4"
  7312. },
  7313. "dist": {
  7314. "type": "zip",
  7315. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.4.zip",
  7316. "reference": "8.x-2.4",
  7317. "shasum": "96b14bb93c1bb6a07b84315a4f87367870f8b574"
  7318. },
  7319. "require": {
  7320. "drupal/core": "^8.8 || ^9"
  7321. },
  7322. "require-dev": {
  7323. "drupal/colorbox": "^1.0",
  7324. "drupal/video_embed_media": "*"
  7325. },
  7326. "type": "drupal-module",
  7327. "extra": {
  7328. "drupal": {
  7329. "version": "8.x-2.4",
  7330. "datestamp": "1587686337",
  7331. "security-coverage": {
  7332. "status": "covered",
  7333. "message": "Covered by Drupal's security advisory policy"
  7334. }
  7335. }
  7336. },
  7337. "notification-url": "https://packages.drupal.org/8/downloads",
  7338. "license": [
  7339. "GPL-2.0+"
  7340. ],
  7341. "authors": [
  7342. {
  7343. "name": "Sam152",
  7344. "homepage": "https://www.drupal.org/user/1485048"
  7345. },
  7346. {
  7347. "name": "jec006",
  7348. "homepage": "https://www.drupal.org/user/855980"
  7349. },
  7350. {
  7351. "name": "plopesc",
  7352. "homepage": "https://www.drupal.org/user/282415"
  7353. }
  7354. ],
  7355. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  7356. "homepage": "https://www.drupal.org/project/video_embed_field",
  7357. "support": {
  7358. "source": "https://git.drupalcode.org/project/video_embed_field"
  7359. }
  7360. },
  7361. {
  7362. "name": "drupal/views_bulk_edit",
  7363. "version": "2.5.0",
  7364. "source": {
  7365. "type": "git",
  7366. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  7367. "reference": "8.x-2.5"
  7368. },
  7369. "dist": {
  7370. "type": "zip",
  7371. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.5.zip",
  7372. "reference": "8.x-2.5",
  7373. "shasum": "5f268f532e070fd3d1bffcb135d90f395f303a37"
  7374. },
  7375. "require": {
  7376. "drupal/core": "^8 || ^9"
  7377. },
  7378. "require-dev": {
  7379. "drupal/views_bulk_operations": "~3.0"
  7380. },
  7381. "suggest": {
  7382. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  7383. },
  7384. "type": "drupal-module",
  7385. "extra": {
  7386. "drupal": {
  7387. "version": "8.x-2.5",
  7388. "datestamp": "1606726163",
  7389. "security-coverage": {
  7390. "status": "covered",
  7391. "message": "Covered by Drupal's security advisory policy"
  7392. }
  7393. }
  7394. },
  7395. "notification-url": "https://packages.drupal.org/8/downloads",
  7396. "license": [
  7397. "GPL-2.0+"
  7398. ],
  7399. "authors": [
  7400. {
  7401. "name": "Marcin Grabias",
  7402. "homepage": "https://www.drupal.org/u/graber"
  7403. },
  7404. {
  7405. "name": "benjy",
  7406. "homepage": "https://www.drupal.org/user/1852732"
  7407. }
  7408. ],
  7409. "description": "Allows bulk edition of entity field values.",
  7410. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  7411. "support": {
  7412. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  7413. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  7414. }
  7415. },
  7416. {
  7417. "name": "drupal/views_bulk_operations",
  7418. "version": "3.10.0",
  7419. "source": {
  7420. "type": "git",
  7421. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  7422. "reference": "8.x-3.10"
  7423. },
  7424. "dist": {
  7425. "type": "zip",
  7426. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.10.zip",
  7427. "reference": "8.x-3.10",
  7428. "shasum": "e346c2a72fc9a1ae8af418e6a02076f52c0fcc7b"
  7429. },
  7430. "require": {
  7431. "drupal/core": "^8.8 || ^9"
  7432. },
  7433. "require-dev": {
  7434. "drush/drush": "^10"
  7435. },
  7436. "suggest": {
  7437. "drush/drush": "^9 || ^10"
  7438. },
  7439. "type": "drupal-module",
  7440. "extra": {
  7441. "drupal": {
  7442. "version": "8.x-3.10",
  7443. "datestamp": "1608795018",
  7444. "security-coverage": {
  7445. "status": "covered",
  7446. "message": "Covered by Drupal's security advisory policy"
  7447. }
  7448. },
  7449. "drush": {
  7450. "services": {
  7451. "drush.services.yml": "^9 || ^10"
  7452. }
  7453. }
  7454. },
  7455. "notification-url": "https://packages.drupal.org/8/downloads",
  7456. "license": [
  7457. "GPL-2.0-or-later"
  7458. ],
  7459. "authors": [
  7460. {
  7461. "name": "Marcin Grabias",
  7462. "homepage": "https://www.drupal.org/u/graber"
  7463. },
  7464. {
  7465. "name": "Jon Pugh",
  7466. "homepage": "https://www.drupal.org/user/17028"
  7467. },
  7468. {
  7469. "name": "bojanz",
  7470. "homepage": "https://www.drupal.org/user/86106"
  7471. },
  7472. {
  7473. "name": "infojunkie",
  7474. "homepage": "https://www.drupal.org/user/48424"
  7475. },
  7476. {
  7477. "name": "joelpittet",
  7478. "homepage": "https://www.drupal.org/user/160302"
  7479. }
  7480. ],
  7481. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  7482. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  7483. "support": {
  7484. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  7485. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  7486. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  7487. }
  7488. },
  7489. {
  7490. "name": "drupal/views_ef_fieldset",
  7491. "version": "1.5.0",
  7492. "source": {
  7493. "type": "git",
  7494. "url": "https://git.drupalcode.org/project/views_ef_fieldset.git",
  7495. "reference": "8.x-1.5"
  7496. },
  7497. "dist": {
  7498. "type": "zip",
  7499. "url": "https://ftp.drupal.org/files/projects/views_ef_fieldset-8.x-1.5.zip",
  7500. "reference": "8.x-1.5",
  7501. "shasum": "72ca0b63028d0fe65e13c8472546a8803aa0d079"
  7502. },
  7503. "require": {
  7504. "drupal/core": "^8 || ^9",
  7505. "php": ">=7"
  7506. },
  7507. "type": "drupal-module",
  7508. "extra": {
  7509. "drupal": {
  7510. "version": "8.x-1.5",
  7511. "datestamp": "1604567512",
  7512. "security-coverage": {
  7513. "status": "covered",
  7514. "message": "Covered by Drupal's security advisory policy"
  7515. }
  7516. },
  7517. "composer-exit-on-patch-failure": true,
  7518. "enable-patching": true,
  7519. "patches": {
  7520. "drupal/core": {
  7521. "https://www.drupal.org/project/drupal/issues/2943172": "https://www.drupal.org/files/issues/2018-07-05/2943172-kernel-test-base-3.patch"
  7522. }
  7523. }
  7524. },
  7525. "autoload-dev": {
  7526. "psr-4": {
  7527. "Drupal\\Tests\\views_ef_fieldset\\": "./tests/"
  7528. }
  7529. },
  7530. "notification-url": "https://packages.drupal.org/8/downloads",
  7531. "scripts": {
  7532. "grumphp": [
  7533. "./vendor/bin/grumphp run"
  7534. ]
  7535. },
  7536. "license": [
  7537. "GPL-2.0+"
  7538. ],
  7539. "authors": [
  7540. {
  7541. "name": "Pol Dellaiera",
  7542. "homepage": "https://www.drupal.org/user/47194",
  7543. "email": "pol.dellaiera@protonmail.com"
  7544. },
  7545. {
  7546. "name": "ciss",
  7547. "homepage": "https://www.drupal.org/user/1632364"
  7548. }
  7549. ],
  7550. "description": "Provide an option to render the 'exposed form widgets' in a fieldset.",
  7551. "homepage": "https://drupal.org/project/views_field_formatter",
  7552. "support": {
  7553. "source": "https://git.drupalcode.org/project/views_ef_fieldset"
  7554. }
  7555. },
  7556. {
  7557. "name": "drush/drush",
  7558. "version": "10.4.0",
  7559. "source": {
  7560. "type": "git",
  7561. "url": "https://github.com/drush-ops/drush.git",
  7562. "reference": "507cecd32b05850cf2f70c8922ddad247cd9ce10"
  7563. },
  7564. "dist": {
  7565. "type": "zip",
  7566. "url": "https://api.github.com/repos/drush-ops/drush/zipball/507cecd32b05850cf2f70c8922ddad247cd9ce10",
  7567. "reference": "507cecd32b05850cf2f70c8922ddad247cd9ce10",
  7568. "shasum": ""
  7569. },
  7570. "require": {
  7571. "chi-teck/drupal-code-generator": "^1.32.1",
  7572. "composer/semver": "^1.4 || ^3",
  7573. "consolidation/config": "^1.2",
  7574. "consolidation/filter-via-dot-access-data": "^1",
  7575. "consolidation/robo": "^1.4.11 || ^2",
  7576. "consolidation/site-alias": "^3.0.0@stable",
  7577. "consolidation/site-process": "^2.1 || ^4",
  7578. "enlightn/security-checker": "^1",
  7579. "ext-dom": "*",
  7580. "grasmash/yaml-expander": "^1.1.1",
  7581. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  7582. "league/container": "~2",
  7583. "php": ">=7.1.3",
  7584. "psr/log": "~1.0",
  7585. "psy/psysh": "~0.6",
  7586. "symfony/event-dispatcher": "^3.4 || ^4.0",
  7587. "symfony/finder": "^3.4 || ^4.0 || ^5",
  7588. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0",
  7589. "symfony/yaml": "^3.4 || ^4.0",
  7590. "webflo/drupal-finder": "^1.2",
  7591. "webmozart/path-util": "^2.1.0"
  7592. },
  7593. "conflict": {
  7594. "drupal/migrate_run": "*",
  7595. "drupal/migrate_tools": "<= 5"
  7596. },
  7597. "require-dev": {
  7598. "composer/installers": "^1.7",
  7599. "cweagans/composer-patches": "~1.0",
  7600. "david-garcia/phpwhois": "4.3.0",
  7601. "drupal/alinks": "1.0.0",
  7602. "drupal/core-recommended": "^8.8",
  7603. "lox/xhprof": "dev-master",
  7604. "phpunit/phpunit": ">=7.5.20",
  7605. "squizlabs/php_codesniffer": "^2.7 || ^3",
  7606. "vlucas/phpdotenv": "^2.4",
  7607. "yoast/phpunit-polyfills": "^0.2.0"
  7608. },
  7609. "bin": [
  7610. "drush"
  7611. ],
  7612. "type": "library",
  7613. "extra": {
  7614. "installer-paths": {
  7615. "sut/core": [
  7616. "type:drupal-core"
  7617. ],
  7618. "sut/libraries/{$name}": [
  7619. "type:drupal-library"
  7620. ],
  7621. "sut/modules/unish/{$name}": [
  7622. "drupal/devel"
  7623. ],
  7624. "sut/themes/unish/{$name}": [
  7625. "drupal/empty_theme"
  7626. ],
  7627. "sut/modules/contrib/{$name}": [
  7628. "type:drupal-module"
  7629. ],
  7630. "sut/profiles/contrib/{$name}": [
  7631. "type:drupal-profile"
  7632. ],
  7633. "sut/themes/contrib/{$name}": [
  7634. "type:drupal-theme"
  7635. ],
  7636. "sut/drush/contrib/{$name}": [
  7637. "type:drupal-drush"
  7638. ]
  7639. }
  7640. },
  7641. "autoload": {
  7642. "psr-4": {
  7643. "Drush\\": "src/",
  7644. "Drush\\Internal\\": "src/internal-forks"
  7645. }
  7646. },
  7647. "notification-url": "https://packagist.org/downloads/",
  7648. "license": [
  7649. "GPL-2.0-or-later"
  7650. ],
  7651. "authors": [
  7652. {
  7653. "name": "Moshe Weitzman",
  7654. "email": "weitzman@tejasa.com"
  7655. },
  7656. {
  7657. "name": "Owen Barton",
  7658. "email": "drupal@owenbarton.com"
  7659. },
  7660. {
  7661. "name": "Greg Anderson",
  7662. "email": "greg.1.anderson@greenknowe.org"
  7663. },
  7664. {
  7665. "name": "Jonathan Araña Cruz",
  7666. "email": "jonhattan@faita.net"
  7667. },
  7668. {
  7669. "name": "Jonathan Hedstrom",
  7670. "email": "jhedstrom@gmail.com"
  7671. },
  7672. {
  7673. "name": "Christopher Gervais",
  7674. "email": "chris@ergonlogic.com"
  7675. },
  7676. {
  7677. "name": "Dave Reid",
  7678. "email": "dave@davereid.net"
  7679. },
  7680. {
  7681. "name": "Damian Lee",
  7682. "email": "damiankloip@googlemail.com"
  7683. }
  7684. ],
  7685. "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.",
  7686. "homepage": "http://www.drush.org",
  7687. "funding": [
  7688. {
  7689. "url": "https://github.com/weitzman",
  7690. "type": "github"
  7691. }
  7692. ],
  7693. "time": "2021-02-15T20:26:00+00:00"
  7694. },
  7695. {
  7696. "name": "egulias/email-validator",
  7697. "version": "2.1.22",
  7698. "source": {
  7699. "type": "git",
  7700. "url": "https://github.com/egulias/EmailValidator.git",
  7701. "reference": "68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5"
  7702. },
  7703. "dist": {
  7704. "type": "zip",
  7705. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5",
  7706. "reference": "68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5",
  7707. "shasum": ""
  7708. },
  7709. "require": {
  7710. "doctrine/lexer": "^1.0.1",
  7711. "php": ">=5.5",
  7712. "symfony/polyfill-intl-idn": "^1.10"
  7713. },
  7714. "require-dev": {
  7715. "dominicsayers/isemail": "^3.0.7",
  7716. "phpunit/phpunit": "^4.8.36|^7.5.15",
  7717. "satooshi/php-coveralls": "^1.0.1"
  7718. },
  7719. "suggest": {
  7720. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  7721. },
  7722. "type": "library",
  7723. "extra": {
  7724. "branch-alias": {
  7725. "dev-master": "2.1.x-dev"
  7726. }
  7727. },
  7728. "autoload": {
  7729. "psr-4": {
  7730. "Egulias\\EmailValidator\\": "src"
  7731. }
  7732. },
  7733. "notification-url": "https://packagist.org/downloads/",
  7734. "license": [
  7735. "MIT"
  7736. ],
  7737. "authors": [
  7738. {
  7739. "name": "Eduardo Gulias Davis"
  7740. }
  7741. ],
  7742. "description": "A library for validating emails against several RFCs",
  7743. "homepage": "https://github.com/egulias/EmailValidator",
  7744. "keywords": [
  7745. "email",
  7746. "emailvalidation",
  7747. "emailvalidator",
  7748. "validation",
  7749. "validator"
  7750. ],
  7751. "time": "2020-09-26T15:48:38+00:00"
  7752. },
  7753. {
  7754. "name": "enlightn/security-checker",
  7755. "version": "v1.7.0",
  7756. "source": {
  7757. "type": "git",
  7758. "url": "https://github.com/enlightn/security-checker.git",
  7759. "reference": "1ac108ba278ba0c2e71d2ce2ac4fac07ed6e8a29"
  7760. },
  7761. "dist": {
  7762. "type": "zip",
  7763. "url": "https://api.github.com/repos/enlightn/security-checker/zipball/1ac108ba278ba0c2e71d2ce2ac4fac07ed6e8a29",
  7764. "reference": "1ac108ba278ba0c2e71d2ce2ac4fac07ed6e8a29",
  7765. "shasum": ""
  7766. },
  7767. "require": {
  7768. "ext-json": "*",
  7769. "ext-zip": "*",
  7770. "guzzlehttp/guzzle": "^6.3|^7.0",
  7771. "php": ">=5.6",
  7772. "symfony/console": "^3.4|^4|^5",
  7773. "symfony/finder": "^3|^4|^5",
  7774. "symfony/yaml": "^3.4|^4|^5"
  7775. },
  7776. "require-dev": {
  7777. "friendsofphp/php-cs-fixer": "^2.18",
  7778. "phpunit/phpunit": "^5.5|^6|^7|^8|^9"
  7779. },
  7780. "bin": [
  7781. "security-checker"
  7782. ],
  7783. "type": "library",
  7784. "autoload": {
  7785. "psr-4": {
  7786. "Enlightn\\SecurityChecker\\": "src"
  7787. }
  7788. },
  7789. "notification-url": "https://packagist.org/downloads/",
  7790. "license": [
  7791. "MIT"
  7792. ],
  7793. "authors": [
  7794. {
  7795. "name": "Paras Malhotra",
  7796. "email": "paras@laravel-enlightn.com"
  7797. },
  7798. {
  7799. "name": "Miguel Piedrafita",
  7800. "email": "soy@miguelpiedrafita.com"
  7801. }
  7802. ],
  7803. "description": "A PHP dependency vulnerabilities scanner based on the Security Advisories Database.",
  7804. "keywords": [
  7805. "package",
  7806. "php",
  7807. "scanner",
  7808. "security",
  7809. "security advisories",
  7810. "vulnerability scanner"
  7811. ],
  7812. "time": "2021-03-03T11:56:26+00:00"
  7813. },
  7814. {
  7815. "name": "fileeye/mimemap",
  7816. "version": "1.1.4",
  7817. "source": {
  7818. "type": "git",
  7819. "url": "https://github.com/FileEye/MimeMap.git",
  7820. "reference": "3a0ddb71f06d8fb3f84f0a3c45348af81803b16d"
  7821. },
  7822. "dist": {
  7823. "type": "zip",
  7824. "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/3a0ddb71f06d8fb3f84f0a3c45348af81803b16d",
  7825. "reference": "3a0ddb71f06d8fb3f84f0a3c45348af81803b16d",
  7826. "shasum": ""
  7827. },
  7828. "require": {
  7829. "php": ">=5.4"
  7830. },
  7831. "require-dev": {
  7832. "phpunit/phpunit": "<10",
  7833. "sebastian/comparator": "*",
  7834. "sebastian/diff": "*",
  7835. "squizlabs/php_codesniffer": "*",
  7836. "symfony/console": "*",
  7837. "symfony/filesystem": "*",
  7838. "symfony/var-dumper": "*",
  7839. "symfony/yaml": "*"
  7840. },
  7841. "bin": [
  7842. "bin/fileeye-mimemap"
  7843. ],
  7844. "type": "library",
  7845. "extra": {
  7846. "branch-alias": {
  7847. "dev-master": "1.x-dev"
  7848. }
  7849. },
  7850. "autoload": {
  7851. "psr-4": {
  7852. "FileEye\\MimeMap\\": "src/"
  7853. }
  7854. },
  7855. "notification-url": "https://packagist.org/downloads/",
  7856. "license": [
  7857. "LGPL-3.0-or-later"
  7858. ],
  7859. "description": "A PHP library to handle MIME Content-Type fields and their related file extensions.",
  7860. "homepage": "https://github.com/FileEye/MimeMap",
  7861. "keywords": [
  7862. "mime",
  7863. "mime-database",
  7864. "mime-parser",
  7865. "mime-type"
  7866. ],
  7867. "time": "2020-05-16T10:19:16+00:00"
  7868. },
  7869. {
  7870. "name": "grasmash/expander",
  7871. "version": "1.0.0",
  7872. "source": {
  7873. "type": "git",
  7874. "url": "https://github.com/grasmash/expander.git",
  7875. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  7876. },
  7877. "dist": {
  7878. "type": "zip",
  7879. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  7880. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  7881. "shasum": ""
  7882. },
  7883. "require": {
  7884. "dflydev/dot-access-data": "^1.1.0",
  7885. "php": ">=5.4"
  7886. },
  7887. "require-dev": {
  7888. "greg-1-anderson/composer-test-scenarios": "^1",
  7889. "phpunit/phpunit": "^4|^5.5.4",
  7890. "satooshi/php-coveralls": "^1.0.2|dev-master",
  7891. "squizlabs/php_codesniffer": "^2.7"
  7892. },
  7893. "type": "library",
  7894. "extra": {
  7895. "branch-alias": {
  7896. "dev-master": "1.x-dev"
  7897. }
  7898. },
  7899. "autoload": {
  7900. "psr-4": {
  7901. "Grasmash\\Expander\\": "src/"
  7902. }
  7903. },
  7904. "notification-url": "https://packagist.org/downloads/",
  7905. "license": [
  7906. "MIT"
  7907. ],
  7908. "authors": [
  7909. {
  7910. "name": "Matthew Grasmick"
  7911. }
  7912. ],
  7913. "description": "Expands internal property references in PHP arrays file.",
  7914. "time": "2017-12-21T22:14:55+00:00"
  7915. },
  7916. {
  7917. "name": "grasmash/yaml-expander",
  7918. "version": "1.4.0",
  7919. "source": {
  7920. "type": "git",
  7921. "url": "https://github.com/grasmash/yaml-expander.git",
  7922. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  7923. },
  7924. "dist": {
  7925. "type": "zip",
  7926. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  7927. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  7928. "shasum": ""
  7929. },
  7930. "require": {
  7931. "dflydev/dot-access-data": "^1.1.0",
  7932. "php": ">=5.4",
  7933. "symfony/yaml": "^2.8.11|^3|^4"
  7934. },
  7935. "require-dev": {
  7936. "greg-1-anderson/composer-test-scenarios": "^1",
  7937. "phpunit/phpunit": "^4.8|^5.5.4",
  7938. "satooshi/php-coveralls": "^1.0.2|dev-master",
  7939. "squizlabs/php_codesniffer": "^2.7"
  7940. },
  7941. "type": "library",
  7942. "extra": {
  7943. "branch-alias": {
  7944. "dev-master": "1.x-dev"
  7945. }
  7946. },
  7947. "autoload": {
  7948. "psr-4": {
  7949. "Grasmash\\YamlExpander\\": "src/"
  7950. }
  7951. },
  7952. "notification-url": "https://packagist.org/downloads/",
  7953. "license": [
  7954. "MIT"
  7955. ],
  7956. "authors": [
  7957. {
  7958. "name": "Matthew Grasmick"
  7959. }
  7960. ],
  7961. "description": "Expands internal property references in a yaml file.",
  7962. "time": "2017-12-16T16:06:03+00:00"
  7963. },
  7964. {
  7965. "name": "guzzlehttp/guzzle",
  7966. "version": "6.5.5",
  7967. "source": {
  7968. "type": "git",
  7969. "url": "https://github.com/guzzle/guzzle.git",
  7970. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  7971. },
  7972. "dist": {
  7973. "type": "zip",
  7974. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  7975. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  7976. "shasum": ""
  7977. },
  7978. "require": {
  7979. "ext-json": "*",
  7980. "guzzlehttp/promises": "^1.0",
  7981. "guzzlehttp/psr7": "^1.6.1",
  7982. "php": ">=5.5",
  7983. "symfony/polyfill-intl-idn": "^1.17.0"
  7984. },
  7985. "require-dev": {
  7986. "ext-curl": "*",
  7987. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  7988. "psr/log": "^1.1"
  7989. },
  7990. "suggest": {
  7991. "psr/log": "Required for using the Log middleware"
  7992. },
  7993. "type": "library",
  7994. "extra": {
  7995. "branch-alias": {
  7996. "dev-master": "6.5-dev"
  7997. }
  7998. },
  7999. "autoload": {
  8000. "psr-4": {
  8001. "GuzzleHttp\\": "src/"
  8002. },
  8003. "files": [
  8004. "src/functions_include.php"
  8005. ]
  8006. },
  8007. "notification-url": "https://packagist.org/downloads/",
  8008. "license": [
  8009. "MIT"
  8010. ],
  8011. "authors": [
  8012. {
  8013. "name": "Michael Dowling",
  8014. "email": "mtdowling@gmail.com",
  8015. "homepage": "https://github.com/mtdowling"
  8016. }
  8017. ],
  8018. "description": "Guzzle is a PHP HTTP client library",
  8019. "homepage": "http://guzzlephp.org/",
  8020. "keywords": [
  8021. "client",
  8022. "curl",
  8023. "framework",
  8024. "http",
  8025. "http client",
  8026. "rest",
  8027. "web service"
  8028. ],
  8029. "time": "2020-06-16T21:01:06+00:00"
  8030. },
  8031. {
  8032. "name": "guzzlehttp/promises",
  8033. "version": "1.4.0",
  8034. "source": {
  8035. "type": "git",
  8036. "url": "https://github.com/guzzle/promises.git",
  8037. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  8038. },
  8039. "dist": {
  8040. "type": "zip",
  8041. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  8042. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  8043. "shasum": ""
  8044. },
  8045. "require": {
  8046. "php": ">=5.5"
  8047. },
  8048. "require-dev": {
  8049. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  8050. },
  8051. "type": "library",
  8052. "extra": {
  8053. "branch-alias": {
  8054. "dev-master": "1.4-dev"
  8055. }
  8056. },
  8057. "autoload": {
  8058. "psr-4": {
  8059. "GuzzleHttp\\Promise\\": "src/"
  8060. },
  8061. "files": [
  8062. "src/functions_include.php"
  8063. ]
  8064. },
  8065. "notification-url": "https://packagist.org/downloads/",
  8066. "license": [
  8067. "MIT"
  8068. ],
  8069. "authors": [
  8070. {
  8071. "name": "Michael Dowling",
  8072. "email": "mtdowling@gmail.com",
  8073. "homepage": "https://github.com/mtdowling"
  8074. }
  8075. ],
  8076. "description": "Guzzle promises library",
  8077. "keywords": [
  8078. "promise"
  8079. ],
  8080. "time": "2020-09-30T07:37:28+00:00"
  8081. },
  8082. {
  8083. "name": "guzzlehttp/psr7",
  8084. "version": "1.7.0",
  8085. "source": {
  8086. "type": "git",
  8087. "url": "https://github.com/guzzle/psr7.git",
  8088. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  8089. },
  8090. "dist": {
  8091. "type": "zip",
  8092. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  8093. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  8094. "shasum": ""
  8095. },
  8096. "require": {
  8097. "php": ">=5.4.0",
  8098. "psr/http-message": "~1.0",
  8099. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  8100. },
  8101. "provide": {
  8102. "psr/http-message-implementation": "1.0"
  8103. },
  8104. "require-dev": {
  8105. "ext-zlib": "*",
  8106. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  8107. },
  8108. "suggest": {
  8109. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  8110. },
  8111. "type": "library",
  8112. "extra": {
  8113. "branch-alias": {
  8114. "dev-master": "1.7-dev"
  8115. }
  8116. },
  8117. "autoload": {
  8118. "psr-4": {
  8119. "GuzzleHttp\\Psr7\\": "src/"
  8120. },
  8121. "files": [
  8122. "src/functions_include.php"
  8123. ]
  8124. },
  8125. "notification-url": "https://packagist.org/downloads/",
  8126. "license": [
  8127. "MIT"
  8128. ],
  8129. "authors": [
  8130. {
  8131. "name": "Michael Dowling",
  8132. "email": "mtdowling@gmail.com",
  8133. "homepage": "https://github.com/mtdowling"
  8134. },
  8135. {
  8136. "name": "Tobias Schultze",
  8137. "homepage": "https://github.com/Tobion"
  8138. }
  8139. ],
  8140. "description": "PSR-7 message implementation that also provides common utility methods",
  8141. "keywords": [
  8142. "http",
  8143. "message",
  8144. "psr-7",
  8145. "request",
  8146. "response",
  8147. "stream",
  8148. "uri",
  8149. "url"
  8150. ],
  8151. "time": "2020-09-30T07:37:11+00:00"
  8152. },
  8153. {
  8154. "name": "laminas/laminas-diactoros",
  8155. "version": "2.5.0",
  8156. "source": {
  8157. "type": "git",
  8158. "url": "https://github.com/laminas/laminas-diactoros.git",
  8159. "reference": "4ff7400c1c12e404144992ef43c8b733fd9ad516"
  8160. },
  8161. "dist": {
  8162. "type": "zip",
  8163. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/4ff7400c1c12e404144992ef43c8b733fd9ad516",
  8164. "reference": "4ff7400c1c12e404144992ef43c8b733fd9ad516",
  8165. "shasum": ""
  8166. },
  8167. "require": {
  8168. "laminas/laminas-zendframework-bridge": "^1.0",
  8169. "php": "^7.3 || ~8.0.0",
  8170. "psr/http-factory": "^1.0",
  8171. "psr/http-message": "^1.0"
  8172. },
  8173. "conflict": {
  8174. "phpspec/prophecy": "<1.9.0"
  8175. },
  8176. "provide": {
  8177. "psr/http-factory-implementation": "1.0",
  8178. "psr/http-message-implementation": "1.0"
  8179. },
  8180. "replace": {
  8181. "zendframework/zend-diactoros": "^2.2.1"
  8182. },
  8183. "require-dev": {
  8184. "ext-curl": "*",
  8185. "ext-dom": "*",
  8186. "ext-gd": "*",
  8187. "ext-libxml": "*",
  8188. "http-interop/http-factory-tests": "^0.8.0",
  8189. "laminas/laminas-coding-standard": "~1.0.0",
  8190. "php-http/psr7-integration-tests": "^1.1",
  8191. "phpspec/prophecy-phpunit": "^2.0",
  8192. "phpunit/phpunit": "^9.1"
  8193. },
  8194. "type": "library",
  8195. "extra": {
  8196. "laminas": {
  8197. "config-provider": "Laminas\\Diactoros\\ConfigProvider",
  8198. "module": "Laminas\\Diactoros"
  8199. }
  8200. },
  8201. "autoload": {
  8202. "files": [
  8203. "src/functions/create_uploaded_file.php",
  8204. "src/functions/marshal_headers_from_sapi.php",
  8205. "src/functions/marshal_method_from_sapi.php",
  8206. "src/functions/marshal_protocol_version_from_sapi.php",
  8207. "src/functions/marshal_uri_from_sapi.php",
  8208. "src/functions/normalize_server.php",
  8209. "src/functions/normalize_uploaded_files.php",
  8210. "src/functions/parse_cookie_header.php",
  8211. "src/functions/create_uploaded_file.legacy.php",
  8212. "src/functions/marshal_headers_from_sapi.legacy.php",
  8213. "src/functions/marshal_method_from_sapi.legacy.php",
  8214. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  8215. "src/functions/marshal_uri_from_sapi.legacy.php",
  8216. "src/functions/normalize_server.legacy.php",
  8217. "src/functions/normalize_uploaded_files.legacy.php",
  8218. "src/functions/parse_cookie_header.legacy.php"
  8219. ],
  8220. "psr-4": {
  8221. "Laminas\\Diactoros\\": "src/"
  8222. }
  8223. },
  8224. "notification-url": "https://packagist.org/downloads/",
  8225. "license": [
  8226. "BSD-3-Clause"
  8227. ],
  8228. "description": "PSR HTTP Message implementations",
  8229. "homepage": "https://laminas.dev",
  8230. "keywords": [
  8231. "http",
  8232. "laminas",
  8233. "psr",
  8234. "psr-17",
  8235. "psr-7"
  8236. ],
  8237. "funding": [
  8238. {
  8239. "url": "https://funding.communitybridge.org/projects/laminas-project",
  8240. "type": "community_bridge"
  8241. }
  8242. ],
  8243. "time": "2020-11-18T18:39:28+00:00"
  8244. },
  8245. {
  8246. "name": "laminas/laminas-escaper",
  8247. "version": "2.7.0",
  8248. "source": {
  8249. "type": "git",
  8250. "url": "https://github.com/laminas/laminas-escaper.git",
  8251. "reference": "5e04bc5ae5990b17159d79d331055e2c645e5cc5"
  8252. },
  8253. "dist": {
  8254. "type": "zip",
  8255. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/5e04bc5ae5990b17159d79d331055e2c645e5cc5",
  8256. "reference": "5e04bc5ae5990b17159d79d331055e2c645e5cc5",
  8257. "shasum": ""
  8258. },
  8259. "require": {
  8260. "laminas/laminas-zendframework-bridge": "^1.0",
  8261. "php": "^7.3 || ~8.0.0"
  8262. },
  8263. "replace": {
  8264. "zendframework/zend-escaper": "^2.6.1"
  8265. },
  8266. "require-dev": {
  8267. "laminas/laminas-coding-standard": "~1.0.0",
  8268. "phpunit/phpunit": "^9.3",
  8269. "psalm/plugin-phpunit": "^0.12.2",
  8270. "vimeo/psalm": "^3.16"
  8271. },
  8272. "suggest": {
  8273. "ext-iconv": "*",
  8274. "ext-mbstring": "*"
  8275. },
  8276. "type": "library",
  8277. "autoload": {
  8278. "psr-4": {
  8279. "Laminas\\Escaper\\": "src/"
  8280. }
  8281. },
  8282. "notification-url": "https://packagist.org/downloads/",
  8283. "license": [
  8284. "BSD-3-Clause"
  8285. ],
  8286. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  8287. "homepage": "https://laminas.dev",
  8288. "keywords": [
  8289. "escaper",
  8290. "laminas"
  8291. ],
  8292. "funding": [
  8293. {
  8294. "url": "https://funding.communitybridge.org/projects/laminas-project",
  8295. "type": "community_bridge"
  8296. }
  8297. ],
  8298. "time": "2020-11-17T21:26:43+00:00"
  8299. },
  8300. {
  8301. "name": "laminas/laminas-feed",
  8302. "version": "2.13.0",
  8303. "source": {
  8304. "type": "git",
  8305. "url": "https://github.com/laminas/laminas-feed.git",
  8306. "reference": "fb89aac1984222227f37792dd193d34829a0762f"
  8307. },
  8308. "dist": {
  8309. "type": "zip",
  8310. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/fb89aac1984222227f37792dd193d34829a0762f",
  8311. "reference": "fb89aac1984222227f37792dd193d34829a0762f",
  8312. "shasum": ""
  8313. },
  8314. "require": {
  8315. "ext-dom": "*",
  8316. "ext-libxml": "*",
  8317. "laminas/laminas-escaper": "^2.5.2",
  8318. "laminas/laminas-stdlib": "^3.2.1",
  8319. "laminas/laminas-zendframework-bridge": "^1.0",
  8320. "php": "^7.3 || ~8.0.0"
  8321. },
  8322. "conflict": {
  8323. "laminas/laminas-servicemanager": "<3.3"
  8324. },
  8325. "replace": {
  8326. "zendframework/zend-feed": "^2.12.0"
  8327. },
  8328. "require-dev": {
  8329. "laminas/laminas-cache": "^2.7.2",
  8330. "laminas/laminas-coding-standard": "~1.0.0",
  8331. "laminas/laminas-db": "^2.8.2",
  8332. "laminas/laminas-http": "^2.7",
  8333. "laminas/laminas-servicemanager": "^3.3",
  8334. "laminas/laminas-validator": "^2.10.1",
  8335. "phpunit/phpunit": "^9.3",
  8336. "psalm/plugin-phpunit": "^0.13.0",
  8337. "psr/http-message": "^1.0.1",
  8338. "vimeo/psalm": "^4.1"
  8339. },
  8340. "suggest": {
  8341. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  8342. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  8343. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  8344. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  8345. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  8346. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  8347. },
  8348. "type": "library",
  8349. "autoload": {
  8350. "psr-4": {
  8351. "Laminas\\Feed\\": "src/"
  8352. }
  8353. },
  8354. "notification-url": "https://packagist.org/downloads/",
  8355. "license": [
  8356. "BSD-3-Clause"
  8357. ],
  8358. "description": "provides functionality for consuming RSS and Atom feeds",
  8359. "homepage": "https://laminas.dev",
  8360. "keywords": [
  8361. "feed",
  8362. "laminas"
  8363. ],
  8364. "funding": [
  8365. {
  8366. "url": "https://funding.communitybridge.org/projects/laminas-project",
  8367. "type": "community_bridge"
  8368. }
  8369. ],
  8370. "time": "2020-11-18T21:02:52+00:00"
  8371. },
  8372. {
  8373. "name": "laminas/laminas-stdlib",
  8374. "version": "3.3.0",
  8375. "source": {
  8376. "type": "git",
  8377. "url": "https://github.com/laminas/laminas-stdlib.git",
  8378. "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6"
  8379. },
  8380. "dist": {
  8381. "type": "zip",
  8382. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/b9d84eaa39fde733356ea948cdef36c631f202b6",
  8383. "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6",
  8384. "shasum": ""
  8385. },
  8386. "require": {
  8387. "laminas/laminas-zendframework-bridge": "^1.0",
  8388. "php": "^7.3 || ^8.0"
  8389. },
  8390. "replace": {
  8391. "zendframework/zend-stdlib": "^3.2.1"
  8392. },
  8393. "require-dev": {
  8394. "laminas/laminas-coding-standard": "~1.0.0",
  8395. "phpbench/phpbench": "^0.17.1",
  8396. "phpunit/phpunit": "^9.3.7"
  8397. },
  8398. "type": "library",
  8399. "extra": {
  8400. "branch-alias": {
  8401. "dev-master": "3.3.x-dev",
  8402. "dev-develop": "3.4.x-dev"
  8403. }
  8404. },
  8405. "autoload": {
  8406. "psr-4": {
  8407. "Laminas\\Stdlib\\": "src/"
  8408. }
  8409. },
  8410. "notification-url": "https://packagist.org/downloads/",
  8411. "license": [
  8412. "BSD-3-Clause"
  8413. ],
  8414. "description": "SPL extensions, array utilities, error handlers, and more",
  8415. "homepage": "https://laminas.dev",
  8416. "keywords": [
  8417. "laminas",
  8418. "stdlib"
  8419. ],
  8420. "funding": [
  8421. {
  8422. "url": "https://funding.communitybridge.org/projects/laminas-project",
  8423. "type": "community_bridge"
  8424. }
  8425. ],
  8426. "time": "2020-08-25T09:08:16+00:00"
  8427. },
  8428. {
  8429. "name": "laminas/laminas-zendframework-bridge",
  8430. "version": "1.1.1",
  8431. "source": {
  8432. "type": "git",
  8433. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  8434. "reference": "6ede70583e101030bcace4dcddd648f760ddf642"
  8435. },
  8436. "dist": {
  8437. "type": "zip",
  8438. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/6ede70583e101030bcace4dcddd648f760ddf642",
  8439. "reference": "6ede70583e101030bcace4dcddd648f760ddf642",
  8440. "shasum": ""
  8441. },
  8442. "require": {
  8443. "php": "^5.6 || ^7.0 || ^8.0"
  8444. },
  8445. "require-dev": {
  8446. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1 || ^9.3",
  8447. "squizlabs/php_codesniffer": "^3.5"
  8448. },
  8449. "type": "library",
  8450. "extra": {
  8451. "laminas": {
  8452. "module": "Laminas\\ZendFrameworkBridge"
  8453. }
  8454. },
  8455. "autoload": {
  8456. "files": [
  8457. "src/autoload.php"
  8458. ],
  8459. "psr-4": {
  8460. "Laminas\\ZendFrameworkBridge\\": "src//"
  8461. }
  8462. },
  8463. "notification-url": "https://packagist.org/downloads/",
  8464. "license": [
  8465. "BSD-3-Clause"
  8466. ],
  8467. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  8468. "keywords": [
  8469. "ZendFramework",
  8470. "autoloading",
  8471. "laminas",
  8472. "zf"
  8473. ],
  8474. "funding": [
  8475. {
  8476. "url": "https://funding.communitybridge.org/projects/laminas-project",
  8477. "type": "community_bridge"
  8478. }
  8479. ],
  8480. "time": "2020-09-14T14:23:00+00:00"
  8481. },
  8482. {
  8483. "name": "league/container",
  8484. "version": "2.5.0",
  8485. "source": {
  8486. "type": "git",
  8487. "url": "https://github.com/thephpleague/container.git",
  8488. "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3"
  8489. },
  8490. "dist": {
  8491. "type": "zip",
  8492. "url": "https://api.github.com/repos/thephpleague/container/zipball/8438dc47a0674e3378bcce893a0a04d79a2c22b3",
  8493. "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3",
  8494. "shasum": ""
  8495. },
  8496. "require": {
  8497. "container-interop/container-interop": "^1.2",
  8498. "php": "^5.4 || ^7.0 || ^8.0"
  8499. },
  8500. "provide": {
  8501. "container-interop/container-interop-implementation": "^1.2",
  8502. "psr/container-implementation": "^1.0"
  8503. },
  8504. "replace": {
  8505. "orno/di": "~2.0"
  8506. },
  8507. "require-dev": {
  8508. "phpunit/phpunit": "^4.8.36",
  8509. "scrutinizer/ocular": "^1.3",
  8510. "squizlabs/php_codesniffer": "^3.5"
  8511. },
  8512. "type": "library",
  8513. "extra": {
  8514. "branch-alias": {
  8515. "dev-2.x": "2.x-dev",
  8516. "dev-1.x": "1.x-dev"
  8517. }
  8518. },
  8519. "autoload": {
  8520. "psr-4": {
  8521. "League\\Container\\": "src"
  8522. }
  8523. },
  8524. "notification-url": "https://packagist.org/downloads/",
  8525. "license": [
  8526. "MIT"
  8527. ],
  8528. "authors": [
  8529. {
  8530. "name": "Phil Bennett",
  8531. "email": "philipobenito@gmail.com",
  8532. "homepage": "http://www.philipobenito.com",
  8533. "role": "Developer"
  8534. }
  8535. ],
  8536. "description": "A fast and intuitive dependency injection container.",
  8537. "homepage": "https://github.com/thephpleague/container",
  8538. "keywords": [
  8539. "container",
  8540. "dependency",
  8541. "di",
  8542. "injection",
  8543. "league",
  8544. "provider",
  8545. "service"
  8546. ],
  8547. "funding": [
  8548. {
  8549. "url": "https://github.com/philipobenito",
  8550. "type": "github"
  8551. }
  8552. ],
  8553. "time": "2021-02-22T09:20:06+00:00"
  8554. },
  8555. {
  8556. "name": "lsolesen/pel",
  8557. "version": "0.9.10",
  8558. "source": {
  8559. "type": "git",
  8560. "url": "https://github.com/pel/pel.git",
  8561. "reference": "04ecb8a29e4b1628414193b0df9294232a44f8a9"
  8562. },
  8563. "dist": {
  8564. "type": "zip",
  8565. "url": "https://api.github.com/repos/pel/pel/zipball/04ecb8a29e4b1628414193b0df9294232a44f8a9",
  8566. "reference": "04ecb8a29e4b1628414193b0df9294232a44f8a9",
  8567. "shasum": ""
  8568. },
  8569. "require": {
  8570. "php": ">=7.1.0"
  8571. },
  8572. "require-dev": {
  8573. "ext-exif": "*",
  8574. "ext-gd": "*",
  8575. "php-coveralls/php-coveralls": ">2.4",
  8576. "squizlabs/php_codesniffer": ">3.5",
  8577. "symfony/phpunit-bridge": "^4 || ^5"
  8578. },
  8579. "type": "library",
  8580. "autoload": {
  8581. "psr-4": {
  8582. "lsolesen\\pel\\": "src/"
  8583. }
  8584. },
  8585. "notification-url": "https://packagist.org/downloads/",
  8586. "license": [
  8587. "GPL-2.0"
  8588. ],
  8589. "authors": [
  8590. {
  8591. "name": "Lars Olesen",
  8592. "email": "lars@intraface.dk",
  8593. "homepage": "http://intraface.dk",
  8594. "role": "Developer"
  8595. },
  8596. {
  8597. "name": "Martin Geisler",
  8598. "email": "martin@geisler.net",
  8599. "homepage": "http://geisler.net",
  8600. "role": "Developer"
  8601. }
  8602. ],
  8603. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  8604. "homepage": "http://pel.github.com/pel/",
  8605. "keywords": [
  8606. "exif",
  8607. "image"
  8608. ],
  8609. "time": "2021-01-01T22:15:50+00:00"
  8610. },
  8611. {
  8612. "name": "masterminds/html5",
  8613. "version": "2.7.4",
  8614. "source": {
  8615. "type": "git",
  8616. "url": "https://github.com/Masterminds/html5-php.git",
  8617. "reference": "9227822783c75406cfe400984b2f095cdf03d417"
  8618. },
  8619. "dist": {
  8620. "type": "zip",
  8621. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/9227822783c75406cfe400984b2f095cdf03d417",
  8622. "reference": "9227822783c75406cfe400984b2f095cdf03d417",
  8623. "shasum": ""
  8624. },
  8625. "require": {
  8626. "ext-ctype": "*",
  8627. "ext-dom": "*",
  8628. "ext-libxml": "*",
  8629. "php": ">=5.3.0"
  8630. },
  8631. "require-dev": {
  8632. "phpunit/phpunit": "^4.8.35"
  8633. },
  8634. "type": "library",
  8635. "extra": {
  8636. "branch-alias": {
  8637. "dev-master": "2.7-dev"
  8638. }
  8639. },
  8640. "autoload": {
  8641. "psr-4": {
  8642. "Masterminds\\": "src"
  8643. }
  8644. },
  8645. "notification-url": "https://packagist.org/downloads/",
  8646. "license": [
  8647. "MIT"
  8648. ],
  8649. "authors": [
  8650. {
  8651. "name": "Matt Butcher",
  8652. "email": "technosophos@gmail.com"
  8653. },
  8654. {
  8655. "name": "Matt Farina",
  8656. "email": "matt@mattfarina.com"
  8657. },
  8658. {
  8659. "name": "Asmir Mustafic",
  8660. "email": "goetas@gmail.com"
  8661. }
  8662. ],
  8663. "description": "An HTML5 parser and serializer.",
  8664. "homepage": "http://masterminds.github.io/html5-php",
  8665. "keywords": [
  8666. "HTML5",
  8667. "dom",
  8668. "html",
  8669. "parser",
  8670. "querypath",
  8671. "serializer",
  8672. "xml"
  8673. ],
  8674. "time": "2020-10-01T13:52:52+00:00"
  8675. },
  8676. {
  8677. "name": "nikic/php-parser",
  8678. "version": "v4.10.4",
  8679. "source": {
  8680. "type": "git",
  8681. "url": "https://github.com/nikic/PHP-Parser.git",
  8682. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e"
  8683. },
  8684. "dist": {
  8685. "type": "zip",
  8686. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  8687. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  8688. "shasum": ""
  8689. },
  8690. "require": {
  8691. "ext-tokenizer": "*",
  8692. "php": ">=7.0"
  8693. },
  8694. "require-dev": {
  8695. "ircmaxell/php-yacc": "^0.0.7",
  8696. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  8697. },
  8698. "bin": [
  8699. "bin/php-parse"
  8700. ],
  8701. "type": "library",
  8702. "extra": {
  8703. "branch-alias": {
  8704. "dev-master": "4.9-dev"
  8705. }
  8706. },
  8707. "autoload": {
  8708. "psr-4": {
  8709. "PhpParser\\": "lib/PhpParser"
  8710. }
  8711. },
  8712. "notification-url": "https://packagist.org/downloads/",
  8713. "license": [
  8714. "BSD-3-Clause"
  8715. ],
  8716. "authors": [
  8717. {
  8718. "name": "Nikita Popov"
  8719. }
  8720. ],
  8721. "description": "A PHP parser written in PHP",
  8722. "keywords": [
  8723. "parser",
  8724. "php"
  8725. ],
  8726. "time": "2020-12-20T10:01:03+00:00"
  8727. },
  8728. {
  8729. "name": "pear/archive_tar",
  8730. "version": "1.4.13",
  8731. "source": {
  8732. "type": "git",
  8733. "url": "https://github.com/pear/Archive_Tar.git",
  8734. "reference": "2b87b41178cc6d4ad3cba678a46a1cae49786011"
  8735. },
  8736. "dist": {
  8737. "type": "zip",
  8738. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/2b87b41178cc6d4ad3cba678a46a1cae49786011",
  8739. "reference": "2b87b41178cc6d4ad3cba678a46a1cae49786011",
  8740. "shasum": ""
  8741. },
  8742. "require": {
  8743. "pear/pear-core-minimal": "^1.10.0alpha2",
  8744. "php": ">=5.2.0"
  8745. },
  8746. "require-dev": {
  8747. "phpunit/phpunit": "*"
  8748. },
  8749. "suggest": {
  8750. "ext-bz2": "Bz2 compression support.",
  8751. "ext-xz": "Lzma2 compression support.",
  8752. "ext-zlib": "Gzip compression support."
  8753. },
  8754. "type": "library",
  8755. "extra": {
  8756. "branch-alias": {
  8757. "dev-master": "1.4.x-dev"
  8758. }
  8759. },
  8760. "autoload": {
  8761. "psr-0": {
  8762. "Archive_Tar": ""
  8763. }
  8764. },
  8765. "notification-url": "https://packagist.org/downloads/",
  8766. "include-path": [
  8767. "./"
  8768. ],
  8769. "license": [
  8770. "BSD-3-Clause"
  8771. ],
  8772. "authors": [
  8773. {
  8774. "name": "Vincent Blavet",
  8775. "email": "vincent@phpconcept.net"
  8776. },
  8777. {
  8778. "name": "Greg Beaver",
  8779. "email": "greg@chiaraquartet.net"
  8780. },
  8781. {
  8782. "name": "Michiel Rook",
  8783. "email": "mrook@php.net"
  8784. }
  8785. ],
  8786. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  8787. "homepage": "https://github.com/pear/Archive_Tar",
  8788. "keywords": [
  8789. "archive",
  8790. "tar"
  8791. ],
  8792. "funding": [
  8793. {
  8794. "url": "https://github.com/mrook",
  8795. "type": "github"
  8796. },
  8797. {
  8798. "url": "https://www.patreon.com/michielrook",
  8799. "type": "patreon"
  8800. }
  8801. ],
  8802. "time": "2021-02-16T10:50:50+00:00"
  8803. },
  8804. {
  8805. "name": "pear/console_getopt",
  8806. "version": "v1.4.3",
  8807. "source": {
  8808. "type": "git",
  8809. "url": "https://github.com/pear/Console_Getopt.git",
  8810. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  8811. },
  8812. "dist": {
  8813. "type": "zip",
  8814. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  8815. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  8816. "shasum": ""
  8817. },
  8818. "type": "library",
  8819. "autoload": {
  8820. "psr-0": {
  8821. "Console": "./"
  8822. }
  8823. },
  8824. "notification-url": "https://packagist.org/downloads/",
  8825. "include-path": [
  8826. "./"
  8827. ],
  8828. "license": [
  8829. "BSD-2-Clause"
  8830. ],
  8831. "authors": [
  8832. {
  8833. "name": "Andrei Zmievski",
  8834. "email": "andrei@php.net",
  8835. "role": "Lead"
  8836. },
  8837. {
  8838. "name": "Stig Bakken",
  8839. "email": "stig@php.net",
  8840. "role": "Developer"
  8841. },
  8842. {
  8843. "name": "Greg Beaver",
  8844. "email": "cellog@php.net",
  8845. "role": "Helper"
  8846. }
  8847. ],
  8848. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  8849. "time": "2019-11-20T18:27:48+00:00"
  8850. },
  8851. {
  8852. "name": "pear/pear-core-minimal",
  8853. "version": "v1.10.10",
  8854. "source": {
  8855. "type": "git",
  8856. "url": "https://github.com/pear/pear-core-minimal.git",
  8857. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  8858. },
  8859. "dist": {
  8860. "type": "zip",
  8861. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  8862. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  8863. "shasum": ""
  8864. },
  8865. "require": {
  8866. "pear/console_getopt": "~1.4",
  8867. "pear/pear_exception": "~1.0"
  8868. },
  8869. "replace": {
  8870. "rsky/pear-core-min": "self.version"
  8871. },
  8872. "type": "library",
  8873. "autoload": {
  8874. "psr-0": {
  8875. "": "src/"
  8876. }
  8877. },
  8878. "notification-url": "https://packagist.org/downloads/",
  8879. "include-path": [
  8880. "src/"
  8881. ],
  8882. "license": [
  8883. "BSD-3-Clause"
  8884. ],
  8885. "authors": [
  8886. {
  8887. "name": "Christian Weiske",
  8888. "email": "cweiske@php.net",
  8889. "role": "Lead"
  8890. }
  8891. ],
  8892. "description": "Minimal set of PEAR core files to be used as composer dependency",
  8893. "time": "2019-11-19T19:00:24+00:00"
  8894. },
  8895. {
  8896. "name": "pear/pear_exception",
  8897. "version": "v1.0.1",
  8898. "source": {
  8899. "type": "git",
  8900. "url": "https://github.com/pear/PEAR_Exception.git",
  8901. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7"
  8902. },
  8903. "dist": {
  8904. "type": "zip",
  8905. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  8906. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  8907. "shasum": ""
  8908. },
  8909. "require": {
  8910. "php": ">=4.4.0"
  8911. },
  8912. "require-dev": {
  8913. "phpunit/phpunit": "*"
  8914. },
  8915. "type": "class",
  8916. "extra": {
  8917. "branch-alias": {
  8918. "dev-master": "1.0.x-dev"
  8919. }
  8920. },
  8921. "autoload": {
  8922. "classmap": [
  8923. "PEAR/"
  8924. ]
  8925. },
  8926. "notification-url": "https://packagist.org/downloads/",
  8927. "include-path": [
  8928. "."
  8929. ],
  8930. "license": [
  8931. "BSD-2-Clause"
  8932. ],
  8933. "authors": [
  8934. {
  8935. "name": "Helgi Thormar",
  8936. "email": "dufuz@php.net"
  8937. },
  8938. {
  8939. "name": "Greg Beaver",
  8940. "email": "cellog@php.net"
  8941. }
  8942. ],
  8943. "description": "The PEAR Exception base class.",
  8944. "homepage": "https://github.com/pear/PEAR_Exception",
  8945. "keywords": [
  8946. "exception"
  8947. ],
  8948. "time": "2019-12-10T10:24:42+00:00"
  8949. },
  8950. {
  8951. "name": "phenx/php-font-lib",
  8952. "version": "0.5.2",
  8953. "source": {
  8954. "type": "git",
  8955. "url": "https://github.com/PhenX/php-font-lib.git",
  8956. "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8"
  8957. },
  8958. "dist": {
  8959. "type": "zip",
  8960. "url": "https://api.github.com/repos/PhenX/php-font-lib/zipball/ca6ad461f032145fff5971b5985e5af9e7fa88d8",
  8961. "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8",
  8962. "shasum": ""
  8963. },
  8964. "require-dev": {
  8965. "phpunit/phpunit": "^4.8.35 || ^5 || ^6 || ^7"
  8966. },
  8967. "type": "library",
  8968. "autoload": {
  8969. "psr-4": {
  8970. "FontLib\\": "src/FontLib"
  8971. }
  8972. },
  8973. "notification-url": "https://packagist.org/downloads/",
  8974. "license": [
  8975. "LGPL-3.0"
  8976. ],
  8977. "authors": [
  8978. {
  8979. "name": "Fabien Ménager",
  8980. "email": "fabien.menager@gmail.com"
  8981. }
  8982. ],
  8983. "description": "A library to read, parse, export and make subsets of different types of font files.",
  8984. "homepage": "https://github.com/PhenX/php-font-lib",
  8985. "time": "2020-03-08T15:31:32+00:00"
  8986. },
  8987. {
  8988. "name": "phpmailer/phpmailer",
  8989. "version": "v6.3.0",
  8990. "source": {
  8991. "type": "git",
  8992. "url": "https://github.com/PHPMailer/PHPMailer.git",
  8993. "reference": "4a08cf4cdd2c38d12ee2b9fa69e5d235f37a6dcb"
  8994. },
  8995. "dist": {
  8996. "type": "zip",
  8997. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/4a08cf4cdd2c38d12ee2b9fa69e5d235f37a6dcb",
  8998. "reference": "4a08cf4cdd2c38d12ee2b9fa69e5d235f37a6dcb",
  8999. "shasum": ""
  9000. },
  9001. "require": {
  9002. "ext-ctype": "*",
  9003. "ext-filter": "*",
  9004. "ext-hash": "*",
  9005. "php": ">=5.5.0"
  9006. },
  9007. "require-dev": {
  9008. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  9009. "doctrine/annotations": "^1.2",
  9010. "phpcompatibility/php-compatibility": "^9.3.5",
  9011. "roave/security-advisories": "dev-latest",
  9012. "squizlabs/php_codesniffer": "^3.5.6",
  9013. "yoast/phpunit-polyfills": "^0.2.0"
  9014. },
  9015. "suggest": {
  9016. "ext-mbstring": "Needed to send email in multibyte encoding charset",
  9017. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  9018. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  9019. "psr/log": "For optional PSR-3 debug logging",
  9020. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  9021. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  9022. },
  9023. "type": "library",
  9024. "autoload": {
  9025. "psr-4": {
  9026. "PHPMailer\\PHPMailer\\": "src/"
  9027. }
  9028. },
  9029. "notification-url": "https://packagist.org/downloads/",
  9030. "license": [
  9031. "LGPL-2.1-only"
  9032. ],
  9033. "authors": [
  9034. {
  9035. "name": "Marcus Bointon",
  9036. "email": "phpmailer@synchromedia.co.uk"
  9037. },
  9038. {
  9039. "name": "Jim Jagielski",
  9040. "email": "jimjag@gmail.com"
  9041. },
  9042. {
  9043. "name": "Andy Prevost",
  9044. "email": "codeworxtech@users.sourceforge.net"
  9045. },
  9046. {
  9047. "name": "Brent R. Matzelle"
  9048. }
  9049. ],
  9050. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  9051. "funding": [
  9052. {
  9053. "url": "https://github.com/Synchro",
  9054. "type": "github"
  9055. }
  9056. ],
  9057. "time": "2021-02-19T15:28:08+00:00"
  9058. },
  9059. {
  9060. "name": "psr/container",
  9061. "version": "1.0.0",
  9062. "source": {
  9063. "type": "git",
  9064. "url": "https://github.com/php-fig/container.git",
  9065. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  9066. },
  9067. "dist": {
  9068. "type": "zip",
  9069. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  9070. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  9071. "shasum": ""
  9072. },
  9073. "require": {
  9074. "php": ">=5.3.0"
  9075. },
  9076. "type": "library",
  9077. "extra": {
  9078. "branch-alias": {
  9079. "dev-master": "1.0.x-dev"
  9080. }
  9081. },
  9082. "autoload": {
  9083. "psr-4": {
  9084. "Psr\\Container\\": "src/"
  9085. }
  9086. },
  9087. "notification-url": "https://packagist.org/downloads/",
  9088. "license": [
  9089. "MIT"
  9090. ],
  9091. "authors": [
  9092. {
  9093. "name": "PHP-FIG",
  9094. "homepage": "http://www.php-fig.org/"
  9095. }
  9096. ],
  9097. "description": "Common Container Interface (PHP FIG PSR-11)",
  9098. "homepage": "https://github.com/php-fig/container",
  9099. "keywords": [
  9100. "PSR-11",
  9101. "container",
  9102. "container-interface",
  9103. "container-interop",
  9104. "psr"
  9105. ],
  9106. "time": "2017-02-14T16:28:37+00:00"
  9107. },
  9108. {
  9109. "name": "psr/http-factory",
  9110. "version": "1.0.1",
  9111. "source": {
  9112. "type": "git",
  9113. "url": "https://github.com/php-fig/http-factory.git",
  9114. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  9115. },
  9116. "dist": {
  9117. "type": "zip",
  9118. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  9119. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  9120. "shasum": ""
  9121. },
  9122. "require": {
  9123. "php": ">=7.0.0",
  9124. "psr/http-message": "^1.0"
  9125. },
  9126. "type": "library",
  9127. "extra": {
  9128. "branch-alias": {
  9129. "dev-master": "1.0.x-dev"
  9130. }
  9131. },
  9132. "autoload": {
  9133. "psr-4": {
  9134. "Psr\\Http\\Message\\": "src/"
  9135. }
  9136. },
  9137. "notification-url": "https://packagist.org/downloads/",
  9138. "license": [
  9139. "MIT"
  9140. ],
  9141. "authors": [
  9142. {
  9143. "name": "PHP-FIG",
  9144. "homepage": "http://www.php-fig.org/"
  9145. }
  9146. ],
  9147. "description": "Common interfaces for PSR-7 HTTP message factories",
  9148. "keywords": [
  9149. "factory",
  9150. "http",
  9151. "message",
  9152. "psr",
  9153. "psr-17",
  9154. "psr-7",
  9155. "request",
  9156. "response"
  9157. ],
  9158. "time": "2019-04-30T12:38:16+00:00"
  9159. },
  9160. {
  9161. "name": "psr/http-message",
  9162. "version": "1.0.1",
  9163. "source": {
  9164. "type": "git",
  9165. "url": "https://github.com/php-fig/http-message.git",
  9166. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  9167. },
  9168. "dist": {
  9169. "type": "zip",
  9170. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  9171. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  9172. "shasum": ""
  9173. },
  9174. "require": {
  9175. "php": ">=5.3.0"
  9176. },
  9177. "type": "library",
  9178. "extra": {
  9179. "branch-alias": {
  9180. "dev-master": "1.0.x-dev"
  9181. }
  9182. },
  9183. "autoload": {
  9184. "psr-4": {
  9185. "Psr\\Http\\Message\\": "src/"
  9186. }
  9187. },
  9188. "notification-url": "https://packagist.org/downloads/",
  9189. "license": [
  9190. "MIT"
  9191. ],
  9192. "authors": [
  9193. {
  9194. "name": "PHP-FIG",
  9195. "homepage": "http://www.php-fig.org/"
  9196. }
  9197. ],
  9198. "description": "Common interface for HTTP messages",
  9199. "homepage": "https://github.com/php-fig/http-message",
  9200. "keywords": [
  9201. "http",
  9202. "http-message",
  9203. "psr",
  9204. "psr-7",
  9205. "request",
  9206. "response"
  9207. ],
  9208. "time": "2016-08-06T14:39:51+00:00"
  9209. },
  9210. {
  9211. "name": "psr/log",
  9212. "version": "1.1.3",
  9213. "source": {
  9214. "type": "git",
  9215. "url": "https://github.com/php-fig/log.git",
  9216. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  9217. },
  9218. "dist": {
  9219. "type": "zip",
  9220. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  9221. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  9222. "shasum": ""
  9223. },
  9224. "require": {
  9225. "php": ">=5.3.0"
  9226. },
  9227. "type": "library",
  9228. "extra": {
  9229. "branch-alias": {
  9230. "dev-master": "1.1.x-dev"
  9231. }
  9232. },
  9233. "autoload": {
  9234. "psr-4": {
  9235. "Psr\\Log\\": "Psr/Log/"
  9236. }
  9237. },
  9238. "notification-url": "https://packagist.org/downloads/",
  9239. "license": [
  9240. "MIT"
  9241. ],
  9242. "authors": [
  9243. {
  9244. "name": "PHP-FIG",
  9245. "homepage": "http://www.php-fig.org/"
  9246. }
  9247. ],
  9248. "description": "Common interface for logging libraries",
  9249. "homepage": "https://github.com/php-fig/log",
  9250. "keywords": [
  9251. "log",
  9252. "psr",
  9253. "psr-3"
  9254. ],
  9255. "time": "2020-03-23T09:12:05+00:00"
  9256. },
  9257. {
  9258. "name": "psy/psysh",
  9259. "version": "v0.10.7",
  9260. "source": {
  9261. "type": "git",
  9262. "url": "https://github.com/bobthecow/psysh.git",
  9263. "reference": "a395af46999a12006213c0c8346c9445eb31640c"
  9264. },
  9265. "dist": {
  9266. "type": "zip",
  9267. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a395af46999a12006213c0c8346c9445eb31640c",
  9268. "reference": "a395af46999a12006213c0c8346c9445eb31640c",
  9269. "shasum": ""
  9270. },
  9271. "require": {
  9272. "dnoegel/php-xdg-base-dir": "0.1.*",
  9273. "ext-json": "*",
  9274. "ext-tokenizer": "*",
  9275. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  9276. "php": "^8.0 || ^7.0 || ^5.5.9",
  9277. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  9278. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  9279. },
  9280. "require-dev": {
  9281. "bamarni/composer-bin-plugin": "^1.2",
  9282. "hoa/console": "3.17.*"
  9283. },
  9284. "suggest": {
  9285. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  9286. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  9287. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  9288. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  9289. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  9290. },
  9291. "bin": [
  9292. "bin/psysh"
  9293. ],
  9294. "type": "library",
  9295. "extra": {
  9296. "branch-alias": {
  9297. "dev-main": "0.10.x-dev"
  9298. }
  9299. },
  9300. "autoload": {
  9301. "files": [
  9302. "src/functions.php"
  9303. ],
  9304. "psr-4": {
  9305. "Psy\\": "src/"
  9306. }
  9307. },
  9308. "notification-url": "https://packagist.org/downloads/",
  9309. "license": [
  9310. "MIT"
  9311. ],
  9312. "authors": [
  9313. {
  9314. "name": "Justin Hileman",
  9315. "email": "justin@justinhileman.info",
  9316. "homepage": "http://justinhileman.com"
  9317. }
  9318. ],
  9319. "description": "An interactive shell for modern PHP.",
  9320. "homepage": "http://psysh.org",
  9321. "keywords": [
  9322. "REPL",
  9323. "console",
  9324. "interactive",
  9325. "shell"
  9326. ],
  9327. "time": "2021-03-14T02:14:56+00:00"
  9328. },
  9329. {
  9330. "name": "ralouphie/getallheaders",
  9331. "version": "3.0.3",
  9332. "source": {
  9333. "type": "git",
  9334. "url": "https://github.com/ralouphie/getallheaders.git",
  9335. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  9336. },
  9337. "dist": {
  9338. "type": "zip",
  9339. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  9340. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  9341. "shasum": ""
  9342. },
  9343. "require": {
  9344. "php": ">=5.6"
  9345. },
  9346. "require-dev": {
  9347. "php-coveralls/php-coveralls": "^2.1",
  9348. "phpunit/phpunit": "^5 || ^6.5"
  9349. },
  9350. "type": "library",
  9351. "autoload": {
  9352. "files": [
  9353. "src/getallheaders.php"
  9354. ]
  9355. },
  9356. "notification-url": "https://packagist.org/downloads/",
  9357. "license": [
  9358. "MIT"
  9359. ],
  9360. "authors": [
  9361. {
  9362. "name": "Ralph Khattar",
  9363. "email": "ralph.khattar@gmail.com"
  9364. }
  9365. ],
  9366. "description": "A polyfill for getallheaders.",
  9367. "time": "2019-03-08T08:55:37+00:00"
  9368. },
  9369. {
  9370. "name": "stack/builder",
  9371. "version": "v1.0.6",
  9372. "source": {
  9373. "type": "git",
  9374. "url": "https://github.com/stackphp/builder.git",
  9375. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c"
  9376. },
  9377. "dist": {
  9378. "type": "zip",
  9379. "url": "https://api.github.com/repos/stackphp/builder/zipball/a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  9380. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  9381. "shasum": ""
  9382. },
  9383. "require": {
  9384. "php": ">=7.2.0",
  9385. "symfony/http-foundation": "~2.1|~3.0|~4.0|~5.0",
  9386. "symfony/http-kernel": "~2.1|~3.0|~4.0|~5.0"
  9387. },
  9388. "require-dev": {
  9389. "phpunit/phpunit": "~8.0",
  9390. "symfony/routing": "^5.0"
  9391. },
  9392. "type": "library",
  9393. "extra": {
  9394. "branch-alias": {
  9395. "dev-master": "1.0-dev"
  9396. }
  9397. },
  9398. "autoload": {
  9399. "psr-0": {
  9400. "Stack": "src"
  9401. }
  9402. },
  9403. "notification-url": "https://packagist.org/downloads/",
  9404. "license": [
  9405. "MIT"
  9406. ],
  9407. "authors": [
  9408. {
  9409. "name": "Igor Wiedler",
  9410. "email": "igor@wiedler.ch"
  9411. }
  9412. ],
  9413. "description": "Builder for stack middleware based on HttpKernelInterface.",
  9414. "keywords": [
  9415. "stack"
  9416. ],
  9417. "time": "2020-01-30T12:17:27+00:00"
  9418. },
  9419. {
  9420. "name": "stecman/symfony-console-completion",
  9421. "version": "0.11.0",
  9422. "source": {
  9423. "type": "git",
  9424. "url": "https://github.com/stecman/symfony-console-completion.git",
  9425. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518"
  9426. },
  9427. "dist": {
  9428. "type": "zip",
  9429. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/a9502dab59405e275a9f264536c4e1cb61fc3518",
  9430. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518",
  9431. "shasum": ""
  9432. },
  9433. "require": {
  9434. "php": ">=5.3.2",
  9435. "symfony/console": "~2.3 || ~3.0 || ~4.0 || ~5.0"
  9436. },
  9437. "require-dev": {
  9438. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  9439. },
  9440. "type": "library",
  9441. "extra": {
  9442. "branch-alias": {
  9443. "dev-master": "0.10.x-dev"
  9444. }
  9445. },
  9446. "autoload": {
  9447. "psr-4": {
  9448. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  9449. }
  9450. },
  9451. "notification-url": "https://packagist.org/downloads/",
  9452. "license": [
  9453. "MIT"
  9454. ],
  9455. "authors": [
  9456. {
  9457. "name": "Stephen Holdaway",
  9458. "email": "stephen@stecman.co.nz"
  9459. }
  9460. ],
  9461. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  9462. "time": "2019-11-24T17:03:06+00:00"
  9463. },
  9464. {
  9465. "name": "symfony-cmf/routing",
  9466. "version": "2.3.3",
  9467. "source": {
  9468. "type": "git",
  9469. "url": "https://github.com/symfony-cmf/Routing.git",
  9470. "reference": "3c97e7b7709b313cecfb76d691ad4cc22acbf3f5"
  9471. },
  9472. "dist": {
  9473. "type": "zip",
  9474. "url": "https://api.github.com/repos/symfony-cmf/Routing/zipball/3c97e7b7709b313cecfb76d691ad4cc22acbf3f5",
  9475. "reference": "3c97e7b7709b313cecfb76d691ad4cc22acbf3f5",
  9476. "shasum": ""
  9477. },
  9478. "require": {
  9479. "php": "^7.2 || ^8.0",
  9480. "psr/log": "^1.0",
  9481. "symfony/http-kernel": "^4.4 || ^5.0",
  9482. "symfony/routing": "^4.4 || ^5.0"
  9483. },
  9484. "require-dev": {
  9485. "symfony-cmf/testing": "^3@dev",
  9486. "symfony/config": "^4.4 || ^5.0",
  9487. "symfony/dependency-injection": "^4.4 || ^5.0",
  9488. "symfony/event-dispatcher": "^4.4 || ^5.0",
  9489. "symfony/phpunit-bridge": "^5.0"
  9490. },
  9491. "suggest": {
  9492. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (^4.4 || ^5.0)"
  9493. },
  9494. "type": "library",
  9495. "extra": {
  9496. "branch-alias": {
  9497. "dev-master": "2.x-dev"
  9498. }
  9499. },
  9500. "autoload": {
  9501. "psr-4": {
  9502. "Symfony\\Cmf\\Component\\Routing\\": "src/"
  9503. }
  9504. },
  9505. "notification-url": "https://packagist.org/downloads/",
  9506. "license": [
  9507. "MIT"
  9508. ],
  9509. "authors": [
  9510. {
  9511. "name": "Symfony CMF Community",
  9512. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  9513. }
  9514. ],
  9515. "description": "Extends the Symfony routing component for dynamic routes and chaining several routers",
  9516. "homepage": "http://cmf.symfony.com",
  9517. "keywords": [
  9518. "database",
  9519. "routing"
  9520. ],
  9521. "time": "2020-10-06T10:15:37+00:00"
  9522. },
  9523. {
  9524. "name": "symfony/config",
  9525. "version": "v4.4.20",
  9526. "source": {
  9527. "type": "git",
  9528. "url": "https://github.com/symfony/config.git",
  9529. "reference": "98606c6fa1a8f55ff964ccdd704275bf5b9f71b3"
  9530. },
  9531. "dist": {
  9532. "type": "zip",
  9533. "url": "https://api.github.com/repos/symfony/config/zipball/98606c6fa1a8f55ff964ccdd704275bf5b9f71b3",
  9534. "reference": "98606c6fa1a8f55ff964ccdd704275bf5b9f71b3",
  9535. "shasum": ""
  9536. },
  9537. "require": {
  9538. "php": ">=7.1.3",
  9539. "symfony/filesystem": "^3.4|^4.0|^5.0",
  9540. "symfony/polyfill-ctype": "~1.8"
  9541. },
  9542. "conflict": {
  9543. "symfony/finder": "<3.4"
  9544. },
  9545. "require-dev": {
  9546. "symfony/event-dispatcher": "^3.4|^4.0|^5.0",
  9547. "symfony/finder": "^3.4|^4.0|^5.0",
  9548. "symfony/messenger": "^4.1|^5.0",
  9549. "symfony/service-contracts": "^1.1|^2",
  9550. "symfony/yaml": "^3.4|^4.0|^5.0"
  9551. },
  9552. "suggest": {
  9553. "symfony/yaml": "To use the yaml reference dumper"
  9554. },
  9555. "type": "library",
  9556. "autoload": {
  9557. "psr-4": {
  9558. "Symfony\\Component\\Config\\": ""
  9559. },
  9560. "exclude-from-classmap": [
  9561. "/Tests/"
  9562. ]
  9563. },
  9564. "notification-url": "https://packagist.org/downloads/",
  9565. "license": [
  9566. "MIT"
  9567. ],
  9568. "authors": [
  9569. {
  9570. "name": "Fabien Potencier",
  9571. "email": "fabien@symfony.com"
  9572. },
  9573. {
  9574. "name": "Symfony Community",
  9575. "homepage": "https://symfony.com/contributors"
  9576. }
  9577. ],
  9578. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  9579. "homepage": "https://symfony.com",
  9580. "funding": [
  9581. {
  9582. "url": "https://symfony.com/sponsor",
  9583. "type": "custom"
  9584. },
  9585. {
  9586. "url": "https://github.com/fabpot",
  9587. "type": "github"
  9588. },
  9589. {
  9590. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9591. "type": "tidelift"
  9592. }
  9593. ],
  9594. "time": "2021-02-22T15:36:50+00:00"
  9595. },
  9596. {
  9597. "name": "symfony/console",
  9598. "version": "v4.4.16",
  9599. "source": {
  9600. "type": "git",
  9601. "url": "https://github.com/symfony/console.git",
  9602. "reference": "20f73dd143a5815d475e0838ff867bce1eebd9d5"
  9603. },
  9604. "dist": {
  9605. "type": "zip",
  9606. "url": "https://api.github.com/repos/symfony/console/zipball/20f73dd143a5815d475e0838ff867bce1eebd9d5",
  9607. "reference": "20f73dd143a5815d475e0838ff867bce1eebd9d5",
  9608. "shasum": ""
  9609. },
  9610. "require": {
  9611. "php": ">=7.1.3",
  9612. "symfony/polyfill-mbstring": "~1.0",
  9613. "symfony/polyfill-php73": "^1.8",
  9614. "symfony/polyfill-php80": "^1.15",
  9615. "symfony/service-contracts": "^1.1|^2"
  9616. },
  9617. "conflict": {
  9618. "symfony/dependency-injection": "<3.4",
  9619. "symfony/event-dispatcher": "<4.3|>=5",
  9620. "symfony/lock": "<4.4",
  9621. "symfony/process": "<3.3"
  9622. },
  9623. "provide": {
  9624. "psr/log-implementation": "1.0"
  9625. },
  9626. "require-dev": {
  9627. "psr/log": "~1.0",
  9628. "symfony/config": "^3.4|^4.0|^5.0",
  9629. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  9630. "symfony/event-dispatcher": "^4.3",
  9631. "symfony/lock": "^4.4|^5.0",
  9632. "symfony/process": "^3.4|^4.0|^5.0",
  9633. "symfony/var-dumper": "^4.3|^5.0"
  9634. },
  9635. "suggest": {
  9636. "psr/log": "For using the console logger",
  9637. "symfony/event-dispatcher": "",
  9638. "symfony/lock": "",
  9639. "symfony/process": ""
  9640. },
  9641. "type": "library",
  9642. "autoload": {
  9643. "psr-4": {
  9644. "Symfony\\Component\\Console\\": ""
  9645. },
  9646. "exclude-from-classmap": [
  9647. "/Tests/"
  9648. ]
  9649. },
  9650. "notification-url": "https://packagist.org/downloads/",
  9651. "license": [
  9652. "MIT"
  9653. ],
  9654. "authors": [
  9655. {
  9656. "name": "Fabien Potencier",
  9657. "email": "fabien@symfony.com"
  9658. },
  9659. {
  9660. "name": "Symfony Community",
  9661. "homepage": "https://symfony.com/contributors"
  9662. }
  9663. ],
  9664. "description": "Symfony Console Component",
  9665. "homepage": "https://symfony.com",
  9666. "funding": [
  9667. {
  9668. "url": "https://symfony.com/sponsor",
  9669. "type": "custom"
  9670. },
  9671. {
  9672. "url": "https://github.com/fabpot",
  9673. "type": "github"
  9674. },
  9675. {
  9676. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9677. "type": "tidelift"
  9678. }
  9679. ],
  9680. "time": "2020-10-24T11:50:19+00:00"
  9681. },
  9682. {
  9683. "name": "symfony/css-selector",
  9684. "version": "v4.4.20",
  9685. "source": {
  9686. "type": "git",
  9687. "url": "https://github.com/symfony/css-selector.git",
  9688. "reference": "f907d3e53ecb2a5fad8609eb2f30525287a734c8"
  9689. },
  9690. "dist": {
  9691. "type": "zip",
  9692. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f907d3e53ecb2a5fad8609eb2f30525287a734c8",
  9693. "reference": "f907d3e53ecb2a5fad8609eb2f30525287a734c8",
  9694. "shasum": ""
  9695. },
  9696. "require": {
  9697. "php": ">=7.1.3"
  9698. },
  9699. "type": "library",
  9700. "autoload": {
  9701. "psr-4": {
  9702. "Symfony\\Component\\CssSelector\\": ""
  9703. },
  9704. "exclude-from-classmap": [
  9705. "/Tests/"
  9706. ]
  9707. },
  9708. "notification-url": "https://packagist.org/downloads/",
  9709. "license": [
  9710. "MIT"
  9711. ],
  9712. "authors": [
  9713. {
  9714. "name": "Fabien Potencier",
  9715. "email": "fabien@symfony.com"
  9716. },
  9717. {
  9718. "name": "Jean-François Simon",
  9719. "email": "jeanfrancois.simon@sensiolabs.com"
  9720. },
  9721. {
  9722. "name": "Symfony Community",
  9723. "homepage": "https://symfony.com/contributors"
  9724. }
  9725. ],
  9726. "description": "Converts CSS selectors to XPath expressions",
  9727. "homepage": "https://symfony.com",
  9728. "funding": [
  9729. {
  9730. "url": "https://symfony.com/sponsor",
  9731. "type": "custom"
  9732. },
  9733. {
  9734. "url": "https://github.com/fabpot",
  9735. "type": "github"
  9736. },
  9737. {
  9738. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9739. "type": "tidelift"
  9740. }
  9741. ],
  9742. "time": "2021-01-27T09:09:26+00:00"
  9743. },
  9744. {
  9745. "name": "symfony/debug",
  9746. "version": "v4.4.16",
  9747. "source": {
  9748. "type": "git",
  9749. "url": "https://github.com/symfony/debug.git",
  9750. "reference": "c87adf3fc1cd0bf4758316a3a150d50a8f957ef4"
  9751. },
  9752. "dist": {
  9753. "type": "zip",
  9754. "url": "https://api.github.com/repos/symfony/debug/zipball/c87adf3fc1cd0bf4758316a3a150d50a8f957ef4",
  9755. "reference": "c87adf3fc1cd0bf4758316a3a150d50a8f957ef4",
  9756. "shasum": ""
  9757. },
  9758. "require": {
  9759. "php": ">=7.1.3",
  9760. "psr/log": "~1.0",
  9761. "symfony/polyfill-php80": "^1.15"
  9762. },
  9763. "conflict": {
  9764. "symfony/http-kernel": "<3.4"
  9765. },
  9766. "require-dev": {
  9767. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  9768. },
  9769. "type": "library",
  9770. "autoload": {
  9771. "psr-4": {
  9772. "Symfony\\Component\\Debug\\": ""
  9773. },
  9774. "exclude-from-classmap": [
  9775. "/Tests/"
  9776. ]
  9777. },
  9778. "notification-url": "https://packagist.org/downloads/",
  9779. "license": [
  9780. "MIT"
  9781. ],
  9782. "authors": [
  9783. {
  9784. "name": "Fabien Potencier",
  9785. "email": "fabien@symfony.com"
  9786. },
  9787. {
  9788. "name": "Symfony Community",
  9789. "homepage": "https://symfony.com/contributors"
  9790. }
  9791. ],
  9792. "description": "Symfony Debug Component",
  9793. "homepage": "https://symfony.com",
  9794. "funding": [
  9795. {
  9796. "url": "https://symfony.com/sponsor",
  9797. "type": "custom"
  9798. },
  9799. {
  9800. "url": "https://github.com/fabpot",
  9801. "type": "github"
  9802. },
  9803. {
  9804. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9805. "type": "tidelift"
  9806. }
  9807. ],
  9808. "time": "2020-10-24T11:50:19+00:00"
  9809. },
  9810. {
  9811. "name": "symfony/dependency-injection",
  9812. "version": "v4.4.16",
  9813. "source": {
  9814. "type": "git",
  9815. "url": "https://github.com/symfony/dependency-injection.git",
  9816. "reference": "4c41ad68924fd8f9e55e1cd77fd6bc28daa3fe89"
  9817. },
  9818. "dist": {
  9819. "type": "zip",
  9820. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/4c41ad68924fd8f9e55e1cd77fd6bc28daa3fe89",
  9821. "reference": "4c41ad68924fd8f9e55e1cd77fd6bc28daa3fe89",
  9822. "shasum": ""
  9823. },
  9824. "require": {
  9825. "php": ">=7.1.3",
  9826. "psr/container": "^1.0",
  9827. "symfony/service-contracts": "^1.1.6|^2"
  9828. },
  9829. "conflict": {
  9830. "symfony/config": "<4.3|>=5.0",
  9831. "symfony/finder": "<3.4",
  9832. "symfony/proxy-manager-bridge": "<3.4",
  9833. "symfony/yaml": "<3.4"
  9834. },
  9835. "provide": {
  9836. "psr/container-implementation": "1.0",
  9837. "symfony/service-implementation": "1.0"
  9838. },
  9839. "require-dev": {
  9840. "symfony/config": "^4.3",
  9841. "symfony/expression-language": "^3.4|^4.0|^5.0",
  9842. "symfony/yaml": "^3.4|^4.0|^5.0"
  9843. },
  9844. "suggest": {
  9845. "symfony/config": "",
  9846. "symfony/expression-language": "For using expressions in service container configuration",
  9847. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  9848. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  9849. "symfony/yaml": ""
  9850. },
  9851. "type": "library",
  9852. "autoload": {
  9853. "psr-4": {
  9854. "Symfony\\Component\\DependencyInjection\\": ""
  9855. },
  9856. "exclude-from-classmap": [
  9857. "/Tests/"
  9858. ]
  9859. },
  9860. "notification-url": "https://packagist.org/downloads/",
  9861. "license": [
  9862. "MIT"
  9863. ],
  9864. "authors": [
  9865. {
  9866. "name": "Fabien Potencier",
  9867. "email": "fabien@symfony.com"
  9868. },
  9869. {
  9870. "name": "Symfony Community",
  9871. "homepage": "https://symfony.com/contributors"
  9872. }
  9873. ],
  9874. "description": "Symfony DependencyInjection Component",
  9875. "homepage": "https://symfony.com",
  9876. "funding": [
  9877. {
  9878. "url": "https://symfony.com/sponsor",
  9879. "type": "custom"
  9880. },
  9881. {
  9882. "url": "https://github.com/fabpot",
  9883. "type": "github"
  9884. },
  9885. {
  9886. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9887. "type": "tidelift"
  9888. }
  9889. ],
  9890. "time": "2020-10-27T10:05:40+00:00"
  9891. },
  9892. {
  9893. "name": "symfony/dom-crawler",
  9894. "version": "v4.4.20",
  9895. "source": {
  9896. "type": "git",
  9897. "url": "https://github.com/symfony/dom-crawler.git",
  9898. "reference": "be133557f1b0e6672367325b508e65da5513a311"
  9899. },
  9900. "dist": {
  9901. "type": "zip",
  9902. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/be133557f1b0e6672367325b508e65da5513a311",
  9903. "reference": "be133557f1b0e6672367325b508e65da5513a311",
  9904. "shasum": ""
  9905. },
  9906. "require": {
  9907. "php": ">=7.1.3",
  9908. "symfony/polyfill-ctype": "~1.8",
  9909. "symfony/polyfill-mbstring": "~1.0"
  9910. },
  9911. "conflict": {
  9912. "masterminds/html5": "<2.6"
  9913. },
  9914. "require-dev": {
  9915. "masterminds/html5": "^2.6",
  9916. "symfony/css-selector": "^3.4|^4.0|^5.0"
  9917. },
  9918. "suggest": {
  9919. "symfony/css-selector": ""
  9920. },
  9921. "type": "library",
  9922. "autoload": {
  9923. "psr-4": {
  9924. "Symfony\\Component\\DomCrawler\\": ""
  9925. },
  9926. "exclude-from-classmap": [
  9927. "/Tests/"
  9928. ]
  9929. },
  9930. "notification-url": "https://packagist.org/downloads/",
  9931. "license": [
  9932. "MIT"
  9933. ],
  9934. "authors": [
  9935. {
  9936. "name": "Fabien Potencier",
  9937. "email": "fabien@symfony.com"
  9938. },
  9939. {
  9940. "name": "Symfony Community",
  9941. "homepage": "https://symfony.com/contributors"
  9942. }
  9943. ],
  9944. "description": "Eases DOM navigation for HTML and XML documents",
  9945. "homepage": "https://symfony.com",
  9946. "funding": [
  9947. {
  9948. "url": "https://symfony.com/sponsor",
  9949. "type": "custom"
  9950. },
  9951. {
  9952. "url": "https://github.com/fabpot",
  9953. "type": "github"
  9954. },
  9955. {
  9956. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9957. "type": "tidelift"
  9958. }
  9959. ],
  9960. "time": "2021-02-14T12:29:41+00:00"
  9961. },
  9962. {
  9963. "name": "symfony/error-handler",
  9964. "version": "v4.4.16",
  9965. "source": {
  9966. "type": "git",
  9967. "url": "https://github.com/symfony/error-handler.git",
  9968. "reference": "363cca01cabf98e4f1c447b14d0a68617f003613"
  9969. },
  9970. "dist": {
  9971. "type": "zip",
  9972. "url": "https://api.github.com/repos/symfony/error-handler/zipball/363cca01cabf98e4f1c447b14d0a68617f003613",
  9973. "reference": "363cca01cabf98e4f1c447b14d0a68617f003613",
  9974. "shasum": ""
  9975. },
  9976. "require": {
  9977. "php": ">=7.1.3",
  9978. "psr/log": "~1.0",
  9979. "symfony/debug": "^4.4.5",
  9980. "symfony/polyfill-php80": "^1.15",
  9981. "symfony/var-dumper": "^4.4|^5.0"
  9982. },
  9983. "require-dev": {
  9984. "symfony/http-kernel": "^4.4|^5.0",
  9985. "symfony/serializer": "^4.4|^5.0"
  9986. },
  9987. "type": "library",
  9988. "autoload": {
  9989. "psr-4": {
  9990. "Symfony\\Component\\ErrorHandler\\": ""
  9991. },
  9992. "exclude-from-classmap": [
  9993. "/Tests/"
  9994. ]
  9995. },
  9996. "notification-url": "https://packagist.org/downloads/",
  9997. "license": [
  9998. "MIT"
  9999. ],
  10000. "authors": [
  10001. {
  10002. "name": "Fabien Potencier",
  10003. "email": "fabien@symfony.com"
  10004. },
  10005. {
  10006. "name": "Symfony Community",
  10007. "homepage": "https://symfony.com/contributors"
  10008. }
  10009. ],
  10010. "description": "Symfony ErrorHandler Component",
  10011. "homepage": "https://symfony.com",
  10012. "funding": [
  10013. {
  10014. "url": "https://symfony.com/sponsor",
  10015. "type": "custom"
  10016. },
  10017. {
  10018. "url": "https://github.com/fabpot",
  10019. "type": "github"
  10020. },
  10021. {
  10022. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10023. "type": "tidelift"
  10024. }
  10025. ],
  10026. "time": "2020-10-24T11:50:19+00:00"
  10027. },
  10028. {
  10029. "name": "symfony/event-dispatcher",
  10030. "version": "v4.4.16",
  10031. "source": {
  10032. "type": "git",
  10033. "url": "https://github.com/symfony/event-dispatcher.git",
  10034. "reference": "4204f13d2d0b7ad09454f221bb2195fccdf1fe98"
  10035. },
  10036. "dist": {
  10037. "type": "zip",
  10038. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/4204f13d2d0b7ad09454f221bb2195fccdf1fe98",
  10039. "reference": "4204f13d2d0b7ad09454f221bb2195fccdf1fe98",
  10040. "shasum": ""
  10041. },
  10042. "require": {
  10043. "php": ">=7.1.3",
  10044. "symfony/event-dispatcher-contracts": "^1.1"
  10045. },
  10046. "conflict": {
  10047. "symfony/dependency-injection": "<3.4"
  10048. },
  10049. "provide": {
  10050. "psr/event-dispatcher-implementation": "1.0",
  10051. "symfony/event-dispatcher-implementation": "1.1"
  10052. },
  10053. "require-dev": {
  10054. "psr/log": "~1.0",
  10055. "symfony/config": "^3.4|^4.0|^5.0",
  10056. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  10057. "symfony/error-handler": "~3.4|~4.4",
  10058. "symfony/expression-language": "^3.4|^4.0|^5.0",
  10059. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  10060. "symfony/service-contracts": "^1.1|^2",
  10061. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  10062. },
  10063. "suggest": {
  10064. "symfony/dependency-injection": "",
  10065. "symfony/http-kernel": ""
  10066. },
  10067. "type": "library",
  10068. "autoload": {
  10069. "psr-4": {
  10070. "Symfony\\Component\\EventDispatcher\\": ""
  10071. },
  10072. "exclude-from-classmap": [
  10073. "/Tests/"
  10074. ]
  10075. },
  10076. "notification-url": "https://packagist.org/downloads/",
  10077. "license": [
  10078. "MIT"
  10079. ],
  10080. "authors": [
  10081. {
  10082. "name": "Fabien Potencier",
  10083. "email": "fabien@symfony.com"
  10084. },
  10085. {
  10086. "name": "Symfony Community",
  10087. "homepage": "https://symfony.com/contributors"
  10088. }
  10089. ],
  10090. "description": "Symfony EventDispatcher Component",
  10091. "homepage": "https://symfony.com",
  10092. "funding": [
  10093. {
  10094. "url": "https://symfony.com/sponsor",
  10095. "type": "custom"
  10096. },
  10097. {
  10098. "url": "https://github.com/fabpot",
  10099. "type": "github"
  10100. },
  10101. {
  10102. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10103. "type": "tidelift"
  10104. }
  10105. ],
  10106. "time": "2020-10-24T11:50:19+00:00"
  10107. },
  10108. {
  10109. "name": "symfony/event-dispatcher-contracts",
  10110. "version": "v1.1.9",
  10111. "source": {
  10112. "type": "git",
  10113. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10114. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7"
  10115. },
  10116. "dist": {
  10117. "type": "zip",
  10118. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  10119. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  10120. "shasum": ""
  10121. },
  10122. "require": {
  10123. "php": ">=7.1.3"
  10124. },
  10125. "suggest": {
  10126. "psr/event-dispatcher": "",
  10127. "symfony/event-dispatcher-implementation": ""
  10128. },
  10129. "type": "library",
  10130. "extra": {
  10131. "branch-alias": {
  10132. "dev-master": "1.1-dev"
  10133. },
  10134. "thanks": {
  10135. "name": "symfony/contracts",
  10136. "url": "https://github.com/symfony/contracts"
  10137. }
  10138. },
  10139. "autoload": {
  10140. "psr-4": {
  10141. "Symfony\\Contracts\\EventDispatcher\\": ""
  10142. }
  10143. },
  10144. "notification-url": "https://packagist.org/downloads/",
  10145. "license": [
  10146. "MIT"
  10147. ],
  10148. "authors": [
  10149. {
  10150. "name": "Nicolas Grekas",
  10151. "email": "p@tchwork.com"
  10152. },
  10153. {
  10154. "name": "Symfony Community",
  10155. "homepage": "https://symfony.com/contributors"
  10156. }
  10157. ],
  10158. "description": "Generic abstractions related to dispatching event",
  10159. "homepage": "https://symfony.com",
  10160. "keywords": [
  10161. "abstractions",
  10162. "contracts",
  10163. "decoupling",
  10164. "interfaces",
  10165. "interoperability",
  10166. "standards"
  10167. ],
  10168. "funding": [
  10169. {
  10170. "url": "https://symfony.com/sponsor",
  10171. "type": "custom"
  10172. },
  10173. {
  10174. "url": "https://github.com/fabpot",
  10175. "type": "github"
  10176. },
  10177. {
  10178. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10179. "type": "tidelift"
  10180. }
  10181. ],
  10182. "time": "2020-07-06T13:19:58+00:00"
  10183. },
  10184. {
  10185. "name": "symfony/filesystem",
  10186. "version": "v4.4.20",
  10187. "source": {
  10188. "type": "git",
  10189. "url": "https://github.com/symfony/filesystem.git",
  10190. "reference": "715e7a531bdae109a828f9e91629e5b3b2926beb"
  10191. },
  10192. "dist": {
  10193. "type": "zip",
  10194. "url": "https://api.github.com/repos/symfony/filesystem/zipball/715e7a531bdae109a828f9e91629e5b3b2926beb",
  10195. "reference": "715e7a531bdae109a828f9e91629e5b3b2926beb",
  10196. "shasum": ""
  10197. },
  10198. "require": {
  10199. "php": ">=7.1.3",
  10200. "symfony/polyfill-ctype": "~1.8"
  10201. },
  10202. "type": "library",
  10203. "autoload": {
  10204. "psr-4": {
  10205. "Symfony\\Component\\Filesystem\\": ""
  10206. },
  10207. "exclude-from-classmap": [
  10208. "/Tests/"
  10209. ]
  10210. },
  10211. "notification-url": "https://packagist.org/downloads/",
  10212. "license": [
  10213. "MIT"
  10214. ],
  10215. "authors": [
  10216. {
  10217. "name": "Fabien Potencier",
  10218. "email": "fabien@symfony.com"
  10219. },
  10220. {
  10221. "name": "Symfony Community",
  10222. "homepage": "https://symfony.com/contributors"
  10223. }
  10224. ],
  10225. "description": "Provides basic utilities for the filesystem",
  10226. "homepage": "https://symfony.com",
  10227. "funding": [
  10228. {
  10229. "url": "https://symfony.com/sponsor",
  10230. "type": "custom"
  10231. },
  10232. {
  10233. "url": "https://github.com/fabpot",
  10234. "type": "github"
  10235. },
  10236. {
  10237. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10238. "type": "tidelift"
  10239. }
  10240. ],
  10241. "time": "2021-02-11T19:34:41+00:00"
  10242. },
  10243. {
  10244. "name": "symfony/finder",
  10245. "version": "v4.4.20",
  10246. "source": {
  10247. "type": "git",
  10248. "url": "https://github.com/symfony/finder.git",
  10249. "reference": "2543795ab1570df588b9bbd31e1a2bd7037b94f6"
  10250. },
  10251. "dist": {
  10252. "type": "zip",
  10253. "url": "https://api.github.com/repos/symfony/finder/zipball/2543795ab1570df588b9bbd31e1a2bd7037b94f6",
  10254. "reference": "2543795ab1570df588b9bbd31e1a2bd7037b94f6",
  10255. "shasum": ""
  10256. },
  10257. "require": {
  10258. "php": ">=7.1.3"
  10259. },
  10260. "type": "library",
  10261. "autoload": {
  10262. "psr-4": {
  10263. "Symfony\\Component\\Finder\\": ""
  10264. },
  10265. "exclude-from-classmap": [
  10266. "/Tests/"
  10267. ]
  10268. },
  10269. "notification-url": "https://packagist.org/downloads/",
  10270. "license": [
  10271. "MIT"
  10272. ],
  10273. "authors": [
  10274. {
  10275. "name": "Fabien Potencier",
  10276. "email": "fabien@symfony.com"
  10277. },
  10278. {
  10279. "name": "Symfony Community",
  10280. "homepage": "https://symfony.com/contributors"
  10281. }
  10282. ],
  10283. "description": "Finds files and directories via an intuitive fluent interface",
  10284. "homepage": "https://symfony.com",
  10285. "funding": [
  10286. {
  10287. "url": "https://symfony.com/sponsor",
  10288. "type": "custom"
  10289. },
  10290. {
  10291. "url": "https://github.com/fabpot",
  10292. "type": "github"
  10293. },
  10294. {
  10295. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10296. "type": "tidelift"
  10297. }
  10298. ],
  10299. "time": "2021-02-12T10:48:09+00:00"
  10300. },
  10301. {
  10302. "name": "symfony/http-client-contracts",
  10303. "version": "v2.3.1",
  10304. "source": {
  10305. "type": "git",
  10306. "url": "https://github.com/symfony/http-client-contracts.git",
  10307. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  10308. },
  10309. "dist": {
  10310. "type": "zip",
  10311. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  10312. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  10313. "shasum": ""
  10314. },
  10315. "require": {
  10316. "php": ">=7.2.5"
  10317. },
  10318. "suggest": {
  10319. "symfony/http-client-implementation": ""
  10320. },
  10321. "type": "library",
  10322. "extra": {
  10323. "branch-version": "2.3",
  10324. "branch-alias": {
  10325. "dev-main": "2.3-dev"
  10326. },
  10327. "thanks": {
  10328. "name": "symfony/contracts",
  10329. "url": "https://github.com/symfony/contracts"
  10330. }
  10331. },
  10332. "autoload": {
  10333. "psr-4": {
  10334. "Symfony\\Contracts\\HttpClient\\": ""
  10335. }
  10336. },
  10337. "notification-url": "https://packagist.org/downloads/",
  10338. "license": [
  10339. "MIT"
  10340. ],
  10341. "authors": [
  10342. {
  10343. "name": "Nicolas Grekas",
  10344. "email": "p@tchwork.com"
  10345. },
  10346. {
  10347. "name": "Symfony Community",
  10348. "homepage": "https://symfony.com/contributors"
  10349. }
  10350. ],
  10351. "description": "Generic abstractions related to HTTP clients",
  10352. "homepage": "https://symfony.com",
  10353. "keywords": [
  10354. "abstractions",
  10355. "contracts",
  10356. "decoupling",
  10357. "interfaces",
  10358. "interoperability",
  10359. "standards"
  10360. ],
  10361. "funding": [
  10362. {
  10363. "url": "https://symfony.com/sponsor",
  10364. "type": "custom"
  10365. },
  10366. {
  10367. "url": "https://github.com/fabpot",
  10368. "type": "github"
  10369. },
  10370. {
  10371. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10372. "type": "tidelift"
  10373. }
  10374. ],
  10375. "time": "2020-10-14T17:08:19+00:00"
  10376. },
  10377. {
  10378. "name": "symfony/http-foundation",
  10379. "version": "v4.4.16",
  10380. "source": {
  10381. "type": "git",
  10382. "url": "https://github.com/symfony/http-foundation.git",
  10383. "reference": "827a00811ef699e809a201ceafac0b2b246bf38a"
  10384. },
  10385. "dist": {
  10386. "type": "zip",
  10387. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/827a00811ef699e809a201ceafac0b2b246bf38a",
  10388. "reference": "827a00811ef699e809a201ceafac0b2b246bf38a",
  10389. "shasum": ""
  10390. },
  10391. "require": {
  10392. "php": ">=7.1.3",
  10393. "symfony/mime": "^4.3|^5.0",
  10394. "symfony/polyfill-mbstring": "~1.1"
  10395. },
  10396. "require-dev": {
  10397. "predis/predis": "~1.0",
  10398. "symfony/expression-language": "^3.4|^4.0|^5.0"
  10399. },
  10400. "type": "library",
  10401. "autoload": {
  10402. "psr-4": {
  10403. "Symfony\\Component\\HttpFoundation\\": ""
  10404. },
  10405. "exclude-from-classmap": [
  10406. "/Tests/"
  10407. ]
  10408. },
  10409. "notification-url": "https://packagist.org/downloads/",
  10410. "license": [
  10411. "MIT"
  10412. ],
  10413. "authors": [
  10414. {
  10415. "name": "Fabien Potencier",
  10416. "email": "fabien@symfony.com"
  10417. },
  10418. {
  10419. "name": "Symfony Community",
  10420. "homepage": "https://symfony.com/contributors"
  10421. }
  10422. ],
  10423. "description": "Symfony HttpFoundation Component",
  10424. "homepage": "https://symfony.com",
  10425. "funding": [
  10426. {
  10427. "url": "https://symfony.com/sponsor",
  10428. "type": "custom"
  10429. },
  10430. {
  10431. "url": "https://github.com/fabpot",
  10432. "type": "github"
  10433. },
  10434. {
  10435. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10436. "type": "tidelift"
  10437. }
  10438. ],
  10439. "time": "2020-10-24T11:50:19+00:00"
  10440. },
  10441. {
  10442. "name": "symfony/http-kernel",
  10443. "version": "v4.4.16",
  10444. "source": {
  10445. "type": "git",
  10446. "url": "https://github.com/symfony/http-kernel.git",
  10447. "reference": "109b2a46e470a487ec8b0ffea4b0bb993aaf42ed"
  10448. },
  10449. "dist": {
  10450. "type": "zip",
  10451. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/109b2a46e470a487ec8b0ffea4b0bb993aaf42ed",
  10452. "reference": "109b2a46e470a487ec8b0ffea4b0bb993aaf42ed",
  10453. "shasum": ""
  10454. },
  10455. "require": {
  10456. "php": ">=7.1.3",
  10457. "psr/log": "~1.0",
  10458. "symfony/error-handler": "^4.4",
  10459. "symfony/event-dispatcher": "^4.4",
  10460. "symfony/http-client-contracts": "^1.1|^2",
  10461. "symfony/http-foundation": "^4.4|^5.0",
  10462. "symfony/polyfill-ctype": "^1.8",
  10463. "symfony/polyfill-php73": "^1.9",
  10464. "symfony/polyfill-php80": "^1.15"
  10465. },
  10466. "conflict": {
  10467. "symfony/browser-kit": "<4.3",
  10468. "symfony/config": "<3.4",
  10469. "symfony/console": ">=5",
  10470. "symfony/dependency-injection": "<4.3",
  10471. "symfony/translation": "<4.2",
  10472. "twig/twig": "<1.34|<2.4,>=2"
  10473. },
  10474. "provide": {
  10475. "psr/log-implementation": "1.0"
  10476. },
  10477. "require-dev": {
  10478. "psr/cache": "~1.0",
  10479. "symfony/browser-kit": "^4.3|^5.0",
  10480. "symfony/config": "^3.4|^4.0|^5.0",
  10481. "symfony/console": "^3.4|^4.0",
  10482. "symfony/css-selector": "^3.4|^4.0|^5.0",
  10483. "symfony/dependency-injection": "^4.3|^5.0",
  10484. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  10485. "symfony/expression-language": "^3.4|^4.0|^5.0",
  10486. "symfony/finder": "^3.4|^4.0|^5.0",
  10487. "symfony/process": "^3.4|^4.0|^5.0",
  10488. "symfony/routing": "^3.4|^4.0|^5.0",
  10489. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  10490. "symfony/templating": "^3.4|^4.0|^5.0",
  10491. "symfony/translation": "^4.2|^5.0",
  10492. "symfony/translation-contracts": "^1.1|^2",
  10493. "twig/twig": "^1.34|^2.4|^3.0"
  10494. },
  10495. "suggest": {
  10496. "symfony/browser-kit": "",
  10497. "symfony/config": "",
  10498. "symfony/console": "",
  10499. "symfony/dependency-injection": ""
  10500. },
  10501. "type": "library",
  10502. "autoload": {
  10503. "psr-4": {
  10504. "Symfony\\Component\\HttpKernel\\": ""
  10505. },
  10506. "exclude-from-classmap": [
  10507. "/Tests/"
  10508. ]
  10509. },
  10510. "notification-url": "https://packagist.org/downloads/",
  10511. "license": [
  10512. "MIT"
  10513. ],
  10514. "authors": [
  10515. {
  10516. "name": "Fabien Potencier",
  10517. "email": "fabien@symfony.com"
  10518. },
  10519. {
  10520. "name": "Symfony Community",
  10521. "homepage": "https://symfony.com/contributors"
  10522. }
  10523. ],
  10524. "description": "Symfony HttpKernel Component",
  10525. "homepage": "https://symfony.com",
  10526. "funding": [
  10527. {
  10528. "url": "https://symfony.com/sponsor",
  10529. "type": "custom"
  10530. },
  10531. {
  10532. "url": "https://github.com/fabpot",
  10533. "type": "github"
  10534. },
  10535. {
  10536. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10537. "type": "tidelift"
  10538. }
  10539. ],
  10540. "time": "2020-10-28T05:50:56+00:00"
  10541. },
  10542. {
  10543. "name": "symfony/mime",
  10544. "version": "v5.1.8",
  10545. "source": {
  10546. "type": "git",
  10547. "url": "https://github.com/symfony/mime.git",
  10548. "reference": "f5485a92c24d4bcfc2f3fc648744fb398482ff1b"
  10549. },
  10550. "dist": {
  10551. "type": "zip",
  10552. "url": "https://api.github.com/repos/symfony/mime/zipball/f5485a92c24d4bcfc2f3fc648744fb398482ff1b",
  10553. "reference": "f5485a92c24d4bcfc2f3fc648744fb398482ff1b",
  10554. "shasum": ""
  10555. },
  10556. "require": {
  10557. "php": ">=7.2.5",
  10558. "symfony/polyfill-intl-idn": "^1.10",
  10559. "symfony/polyfill-mbstring": "^1.0",
  10560. "symfony/polyfill-php80": "^1.15"
  10561. },
  10562. "conflict": {
  10563. "symfony/mailer": "<4.4"
  10564. },
  10565. "require-dev": {
  10566. "egulias/email-validator": "^2.1.10",
  10567. "symfony/dependency-injection": "^4.4|^5.0"
  10568. },
  10569. "type": "library",
  10570. "autoload": {
  10571. "psr-4": {
  10572. "Symfony\\Component\\Mime\\": ""
  10573. },
  10574. "exclude-from-classmap": [
  10575. "/Tests/"
  10576. ]
  10577. },
  10578. "notification-url": "https://packagist.org/downloads/",
  10579. "license": [
  10580. "MIT"
  10581. ],
  10582. "authors": [
  10583. {
  10584. "name": "Fabien Potencier",
  10585. "email": "fabien@symfony.com"
  10586. },
  10587. {
  10588. "name": "Symfony Community",
  10589. "homepage": "https://symfony.com/contributors"
  10590. }
  10591. ],
  10592. "description": "A library to manipulate MIME messages",
  10593. "homepage": "https://symfony.com",
  10594. "keywords": [
  10595. "mime",
  10596. "mime-type"
  10597. ],
  10598. "funding": [
  10599. {
  10600. "url": "https://symfony.com/sponsor",
  10601. "type": "custom"
  10602. },
  10603. {
  10604. "url": "https://github.com/fabpot",
  10605. "type": "github"
  10606. },
  10607. {
  10608. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10609. "type": "tidelift"
  10610. }
  10611. ],
  10612. "time": "2020-10-24T12:01:57+00:00"
  10613. },
  10614. {
  10615. "name": "symfony/polyfill-ctype",
  10616. "version": "v1.20.0",
  10617. "source": {
  10618. "type": "git",
  10619. "url": "https://github.com/symfony/polyfill-ctype.git",
  10620. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
  10621. },
  10622. "dist": {
  10623. "type": "zip",
  10624. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  10625. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  10626. "shasum": ""
  10627. },
  10628. "require": {
  10629. "php": ">=7.1"
  10630. },
  10631. "suggest": {
  10632. "ext-ctype": "For best performance"
  10633. },
  10634. "type": "library",
  10635. "extra": {
  10636. "branch-alias": {
  10637. "dev-main": "1.20-dev"
  10638. },
  10639. "thanks": {
  10640. "name": "symfony/polyfill",
  10641. "url": "https://github.com/symfony/polyfill"
  10642. }
  10643. },
  10644. "autoload": {
  10645. "psr-4": {
  10646. "Symfony\\Polyfill\\Ctype\\": ""
  10647. },
  10648. "files": [
  10649. "bootstrap.php"
  10650. ]
  10651. },
  10652. "notification-url": "https://packagist.org/downloads/",
  10653. "license": [
  10654. "MIT"
  10655. ],
  10656. "authors": [
  10657. {
  10658. "name": "Gert de Pagter",
  10659. "email": "BackEndTea@gmail.com"
  10660. },
  10661. {
  10662. "name": "Symfony Community",
  10663. "homepage": "https://symfony.com/contributors"
  10664. }
  10665. ],
  10666. "description": "Symfony polyfill for ctype functions",
  10667. "homepage": "https://symfony.com",
  10668. "keywords": [
  10669. "compatibility",
  10670. "ctype",
  10671. "polyfill",
  10672. "portable"
  10673. ],
  10674. "funding": [
  10675. {
  10676. "url": "https://symfony.com/sponsor",
  10677. "type": "custom"
  10678. },
  10679. {
  10680. "url": "https://github.com/fabpot",
  10681. "type": "github"
  10682. },
  10683. {
  10684. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10685. "type": "tidelift"
  10686. }
  10687. ],
  10688. "time": "2020-10-23T14:02:19+00:00"
  10689. },
  10690. {
  10691. "name": "symfony/polyfill-iconv",
  10692. "version": "v1.20.0",
  10693. "source": {
  10694. "type": "git",
  10695. "url": "https://github.com/symfony/polyfill-iconv.git",
  10696. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024"
  10697. },
  10698. "dist": {
  10699. "type": "zip",
  10700. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c536646fdb4f29104dd26effc2fdcb9a5b085024",
  10701. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024",
  10702. "shasum": ""
  10703. },
  10704. "require": {
  10705. "php": ">=7.1"
  10706. },
  10707. "suggest": {
  10708. "ext-iconv": "For best performance"
  10709. },
  10710. "type": "library",
  10711. "extra": {
  10712. "branch-alias": {
  10713. "dev-main": "1.20-dev"
  10714. },
  10715. "thanks": {
  10716. "name": "symfony/polyfill",
  10717. "url": "https://github.com/symfony/polyfill"
  10718. }
  10719. },
  10720. "autoload": {
  10721. "psr-4": {
  10722. "Symfony\\Polyfill\\Iconv\\": ""
  10723. },
  10724. "files": [
  10725. "bootstrap.php"
  10726. ]
  10727. },
  10728. "notification-url": "https://packagist.org/downloads/",
  10729. "license": [
  10730. "MIT"
  10731. ],
  10732. "authors": [
  10733. {
  10734. "name": "Nicolas Grekas",
  10735. "email": "p@tchwork.com"
  10736. },
  10737. {
  10738. "name": "Symfony Community",
  10739. "homepage": "https://symfony.com/contributors"
  10740. }
  10741. ],
  10742. "description": "Symfony polyfill for the Iconv extension",
  10743. "homepage": "https://symfony.com",
  10744. "keywords": [
  10745. "compatibility",
  10746. "iconv",
  10747. "polyfill",
  10748. "portable",
  10749. "shim"
  10750. ],
  10751. "funding": [
  10752. {
  10753. "url": "https://symfony.com/sponsor",
  10754. "type": "custom"
  10755. },
  10756. {
  10757. "url": "https://github.com/fabpot",
  10758. "type": "github"
  10759. },
  10760. {
  10761. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10762. "type": "tidelift"
  10763. }
  10764. ],
  10765. "time": "2020-10-23T14:02:19+00:00"
  10766. },
  10767. {
  10768. "name": "symfony/polyfill-intl-idn",
  10769. "version": "v1.20.0",
  10770. "source": {
  10771. "type": "git",
  10772. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  10773. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117"
  10774. },
  10775. "dist": {
  10776. "type": "zip",
  10777. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117",
  10778. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117",
  10779. "shasum": ""
  10780. },
  10781. "require": {
  10782. "php": ">=7.1",
  10783. "symfony/polyfill-intl-normalizer": "^1.10",
  10784. "symfony/polyfill-php72": "^1.10"
  10785. },
  10786. "suggest": {
  10787. "ext-intl": "For best performance"
  10788. },
  10789. "type": "library",
  10790. "extra": {
  10791. "branch-alias": {
  10792. "dev-main": "1.20-dev"
  10793. },
  10794. "thanks": {
  10795. "name": "symfony/polyfill",
  10796. "url": "https://github.com/symfony/polyfill"
  10797. }
  10798. },
  10799. "autoload": {
  10800. "psr-4": {
  10801. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  10802. },
  10803. "files": [
  10804. "bootstrap.php"
  10805. ]
  10806. },
  10807. "notification-url": "https://packagist.org/downloads/",
  10808. "license": [
  10809. "MIT"
  10810. ],
  10811. "authors": [
  10812. {
  10813. "name": "Laurent Bassin",
  10814. "email": "laurent@bassin.info"
  10815. },
  10816. {
  10817. "name": "Trevor Rowbotham",
  10818. "email": "trevor.rowbotham@pm.me"
  10819. },
  10820. {
  10821. "name": "Symfony Community",
  10822. "homepage": "https://symfony.com/contributors"
  10823. }
  10824. ],
  10825. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  10826. "homepage": "https://symfony.com",
  10827. "keywords": [
  10828. "compatibility",
  10829. "idn",
  10830. "intl",
  10831. "polyfill",
  10832. "portable",
  10833. "shim"
  10834. ],
  10835. "funding": [
  10836. {
  10837. "url": "https://symfony.com/sponsor",
  10838. "type": "custom"
  10839. },
  10840. {
  10841. "url": "https://github.com/fabpot",
  10842. "type": "github"
  10843. },
  10844. {
  10845. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10846. "type": "tidelift"
  10847. }
  10848. ],
  10849. "time": "2020-10-23T14:02:19+00:00"
  10850. },
  10851. {
  10852. "name": "symfony/polyfill-intl-normalizer",
  10853. "version": "v1.20.0",
  10854. "source": {
  10855. "type": "git",
  10856. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  10857. "reference": "727d1096295d807c309fb01a851577302394c897"
  10858. },
  10859. "dist": {
  10860. "type": "zip",
  10861. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897",
  10862. "reference": "727d1096295d807c309fb01a851577302394c897",
  10863. "shasum": ""
  10864. },
  10865. "require": {
  10866. "php": ">=7.1"
  10867. },
  10868. "suggest": {
  10869. "ext-intl": "For best performance"
  10870. },
  10871. "type": "library",
  10872. "extra": {
  10873. "branch-alias": {
  10874. "dev-main": "1.20-dev"
  10875. },
  10876. "thanks": {
  10877. "name": "symfony/polyfill",
  10878. "url": "https://github.com/symfony/polyfill"
  10879. }
  10880. },
  10881. "autoload": {
  10882. "psr-4": {
  10883. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  10884. },
  10885. "files": [
  10886. "bootstrap.php"
  10887. ],
  10888. "classmap": [
  10889. "Resources/stubs"
  10890. ]
  10891. },
  10892. "notification-url": "https://packagist.org/downloads/",
  10893. "license": [
  10894. "MIT"
  10895. ],
  10896. "authors": [
  10897. {
  10898. "name": "Nicolas Grekas",
  10899. "email": "p@tchwork.com"
  10900. },
  10901. {
  10902. "name": "Symfony Community",
  10903. "homepage": "https://symfony.com/contributors"
  10904. }
  10905. ],
  10906. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  10907. "homepage": "https://symfony.com",
  10908. "keywords": [
  10909. "compatibility",
  10910. "intl",
  10911. "normalizer",
  10912. "polyfill",
  10913. "portable",
  10914. "shim"
  10915. ],
  10916. "funding": [
  10917. {
  10918. "url": "https://symfony.com/sponsor",
  10919. "type": "custom"
  10920. },
  10921. {
  10922. "url": "https://github.com/fabpot",
  10923. "type": "github"
  10924. },
  10925. {
  10926. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10927. "type": "tidelift"
  10928. }
  10929. ],
  10930. "time": "2020-10-23T14:02:19+00:00"
  10931. },
  10932. {
  10933. "name": "symfony/polyfill-mbstring",
  10934. "version": "v1.20.0",
  10935. "source": {
  10936. "type": "git",
  10937. "url": "https://github.com/symfony/polyfill-mbstring.git",
  10938. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
  10939. },
  10940. "dist": {
  10941. "type": "zip",
  10942. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
  10943. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
  10944. "shasum": ""
  10945. },
  10946. "require": {
  10947. "php": ">=7.1"
  10948. },
  10949. "suggest": {
  10950. "ext-mbstring": "For best performance"
  10951. },
  10952. "type": "library",
  10953. "extra": {
  10954. "branch-alias": {
  10955. "dev-main": "1.20-dev"
  10956. },
  10957. "thanks": {
  10958. "name": "symfony/polyfill",
  10959. "url": "https://github.com/symfony/polyfill"
  10960. }
  10961. },
  10962. "autoload": {
  10963. "psr-4": {
  10964. "Symfony\\Polyfill\\Mbstring\\": ""
  10965. },
  10966. "files": [
  10967. "bootstrap.php"
  10968. ]
  10969. },
  10970. "notification-url": "https://packagist.org/downloads/",
  10971. "license": [
  10972. "MIT"
  10973. ],
  10974. "authors": [
  10975. {
  10976. "name": "Nicolas Grekas",
  10977. "email": "p@tchwork.com"
  10978. },
  10979. {
  10980. "name": "Symfony Community",
  10981. "homepage": "https://symfony.com/contributors"
  10982. }
  10983. ],
  10984. "description": "Symfony polyfill for the Mbstring extension",
  10985. "homepage": "https://symfony.com",
  10986. "keywords": [
  10987. "compatibility",
  10988. "mbstring",
  10989. "polyfill",
  10990. "portable",
  10991. "shim"
  10992. ],
  10993. "funding": [
  10994. {
  10995. "url": "https://symfony.com/sponsor",
  10996. "type": "custom"
  10997. },
  10998. {
  10999. "url": "https://github.com/fabpot",
  11000. "type": "github"
  11001. },
  11002. {
  11003. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11004. "type": "tidelift"
  11005. }
  11006. ],
  11007. "time": "2020-10-23T14:02:19+00:00"
  11008. },
  11009. {
  11010. "name": "symfony/polyfill-php72",
  11011. "version": "v1.22.1",
  11012. "source": {
  11013. "type": "git",
  11014. "url": "https://github.com/symfony/polyfill-php72.git",
  11015. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"
  11016. },
  11017. "dist": {
  11018. "type": "zip",
  11019. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  11020. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  11021. "shasum": ""
  11022. },
  11023. "require": {
  11024. "php": ">=7.1"
  11025. },
  11026. "type": "library",
  11027. "extra": {
  11028. "branch-alias": {
  11029. "dev-main": "1.22-dev"
  11030. },
  11031. "thanks": {
  11032. "name": "symfony/polyfill",
  11033. "url": "https://github.com/symfony/polyfill"
  11034. }
  11035. },
  11036. "autoload": {
  11037. "psr-4": {
  11038. "Symfony\\Polyfill\\Php72\\": ""
  11039. },
  11040. "files": [
  11041. "bootstrap.php"
  11042. ]
  11043. },
  11044. "notification-url": "https://packagist.org/downloads/",
  11045. "license": [
  11046. "MIT"
  11047. ],
  11048. "authors": [
  11049. {
  11050. "name": "Nicolas Grekas",
  11051. "email": "p@tchwork.com"
  11052. },
  11053. {
  11054. "name": "Symfony Community",
  11055. "homepage": "https://symfony.com/contributors"
  11056. }
  11057. ],
  11058. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  11059. "homepage": "https://symfony.com",
  11060. "keywords": [
  11061. "compatibility",
  11062. "polyfill",
  11063. "portable",
  11064. "shim"
  11065. ],
  11066. "funding": [
  11067. {
  11068. "url": "https://symfony.com/sponsor",
  11069. "type": "custom"
  11070. },
  11071. {
  11072. "url": "https://github.com/fabpot",
  11073. "type": "github"
  11074. },
  11075. {
  11076. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11077. "type": "tidelift"
  11078. }
  11079. ],
  11080. "time": "2021-01-07T16:49:33+00:00"
  11081. },
  11082. {
  11083. "name": "symfony/polyfill-php73",
  11084. "version": "v1.22.1",
  11085. "source": {
  11086. "type": "git",
  11087. "url": "https://github.com/symfony/polyfill-php73.git",
  11088. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2"
  11089. },
  11090. "dist": {
  11091. "type": "zip",
  11092. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  11093. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  11094. "shasum": ""
  11095. },
  11096. "require": {
  11097. "php": ">=7.1"
  11098. },
  11099. "type": "library",
  11100. "extra": {
  11101. "branch-alias": {
  11102. "dev-main": "1.22-dev"
  11103. },
  11104. "thanks": {
  11105. "name": "symfony/polyfill",
  11106. "url": "https://github.com/symfony/polyfill"
  11107. }
  11108. },
  11109. "autoload": {
  11110. "psr-4": {
  11111. "Symfony\\Polyfill\\Php73\\": ""
  11112. },
  11113. "files": [
  11114. "bootstrap.php"
  11115. ],
  11116. "classmap": [
  11117. "Resources/stubs"
  11118. ]
  11119. },
  11120. "notification-url": "https://packagist.org/downloads/",
  11121. "license": [
  11122. "MIT"
  11123. ],
  11124. "authors": [
  11125. {
  11126. "name": "Nicolas Grekas",
  11127. "email": "p@tchwork.com"
  11128. },
  11129. {
  11130. "name": "Symfony Community",
  11131. "homepage": "https://symfony.com/contributors"
  11132. }
  11133. ],
  11134. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  11135. "homepage": "https://symfony.com",
  11136. "keywords": [
  11137. "compatibility",
  11138. "polyfill",
  11139. "portable",
  11140. "shim"
  11141. ],
  11142. "funding": [
  11143. {
  11144. "url": "https://symfony.com/sponsor",
  11145. "type": "custom"
  11146. },
  11147. {
  11148. "url": "https://github.com/fabpot",
  11149. "type": "github"
  11150. },
  11151. {
  11152. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11153. "type": "tidelift"
  11154. }
  11155. ],
  11156. "time": "2021-01-07T16:49:33+00:00"
  11157. },
  11158. {
  11159. "name": "symfony/polyfill-php80",
  11160. "version": "v1.20.0",
  11161. "source": {
  11162. "type": "git",
  11163. "url": "https://github.com/symfony/polyfill-php80.git",
  11164. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de"
  11165. },
  11166. "dist": {
  11167. "type": "zip",
  11168. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  11169. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  11170. "shasum": ""
  11171. },
  11172. "require": {
  11173. "php": ">=7.1"
  11174. },
  11175. "type": "library",
  11176. "extra": {
  11177. "branch-alias": {
  11178. "dev-main": "1.20-dev"
  11179. },
  11180. "thanks": {
  11181. "name": "symfony/polyfill",
  11182. "url": "https://github.com/symfony/polyfill"
  11183. }
  11184. },
  11185. "autoload": {
  11186. "psr-4": {
  11187. "Symfony\\Polyfill\\Php80\\": ""
  11188. },
  11189. "files": [
  11190. "bootstrap.php"
  11191. ],
  11192. "classmap": [
  11193. "Resources/stubs"
  11194. ]
  11195. },
  11196. "notification-url": "https://packagist.org/downloads/",
  11197. "license": [
  11198. "MIT"
  11199. ],
  11200. "authors": [
  11201. {
  11202. "name": "Ion Bazan",
  11203. "email": "ion.bazan@gmail.com"
  11204. },
  11205. {
  11206. "name": "Nicolas Grekas",
  11207. "email": "p@tchwork.com"
  11208. },
  11209. {
  11210. "name": "Symfony Community",
  11211. "homepage": "https://symfony.com/contributors"
  11212. }
  11213. ],
  11214. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  11215. "homepage": "https://symfony.com",
  11216. "keywords": [
  11217. "compatibility",
  11218. "polyfill",
  11219. "portable",
  11220. "shim"
  11221. ],
  11222. "funding": [
  11223. {
  11224. "url": "https://symfony.com/sponsor",
  11225. "type": "custom"
  11226. },
  11227. {
  11228. "url": "https://github.com/fabpot",
  11229. "type": "github"
  11230. },
  11231. {
  11232. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11233. "type": "tidelift"
  11234. }
  11235. ],
  11236. "time": "2020-10-23T14:02:19+00:00"
  11237. },
  11238. {
  11239. "name": "symfony/process",
  11240. "version": "v4.4.16",
  11241. "source": {
  11242. "type": "git",
  11243. "url": "https://github.com/symfony/process.git",
  11244. "reference": "2f4b049fb80ca5e9874615a2a85dc2a502090f05"
  11245. },
  11246. "dist": {
  11247. "type": "zip",
  11248. "url": "https://api.github.com/repos/symfony/process/zipball/2f4b049fb80ca5e9874615a2a85dc2a502090f05",
  11249. "reference": "2f4b049fb80ca5e9874615a2a85dc2a502090f05",
  11250. "shasum": ""
  11251. },
  11252. "require": {
  11253. "php": ">=7.1.3"
  11254. },
  11255. "type": "library",
  11256. "autoload": {
  11257. "psr-4": {
  11258. "Symfony\\Component\\Process\\": ""
  11259. },
  11260. "exclude-from-classmap": [
  11261. "/Tests/"
  11262. ]
  11263. },
  11264. "notification-url": "https://packagist.org/downloads/",
  11265. "license": [
  11266. "MIT"
  11267. ],
  11268. "authors": [
  11269. {
  11270. "name": "Fabien Potencier",
  11271. "email": "fabien@symfony.com"
  11272. },
  11273. {
  11274. "name": "Symfony Community",
  11275. "homepage": "https://symfony.com/contributors"
  11276. }
  11277. ],
  11278. "description": "Symfony Process Component",
  11279. "homepage": "https://symfony.com",
  11280. "funding": [
  11281. {
  11282. "url": "https://symfony.com/sponsor",
  11283. "type": "custom"
  11284. },
  11285. {
  11286. "url": "https://github.com/fabpot",
  11287. "type": "github"
  11288. },
  11289. {
  11290. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11291. "type": "tidelift"
  11292. }
  11293. ],
  11294. "time": "2020-10-24T11:50:19+00:00"
  11295. },
  11296. {
  11297. "name": "symfony/psr-http-message-bridge",
  11298. "version": "v2.0.2",
  11299. "source": {
  11300. "type": "git",
  11301. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  11302. "reference": "51a21cb3ba3927d4b4bf8f25cc55763351af5f2e"
  11303. },
  11304. "dist": {
  11305. "type": "zip",
  11306. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/51a21cb3ba3927d4b4bf8f25cc55763351af5f2e",
  11307. "reference": "51a21cb3ba3927d4b4bf8f25cc55763351af5f2e",
  11308. "shasum": ""
  11309. },
  11310. "require": {
  11311. "php": ">=7.1",
  11312. "psr/http-message": "^1.0",
  11313. "symfony/http-foundation": "^4.4 || ^5.0"
  11314. },
  11315. "require-dev": {
  11316. "nyholm/psr7": "^1.1",
  11317. "symfony/phpunit-bridge": "^4.4 || ^5.0"
  11318. },
  11319. "suggest": {
  11320. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  11321. },
  11322. "type": "symfony-bridge",
  11323. "extra": {
  11324. "branch-alias": {
  11325. "dev-master": "2.0-dev"
  11326. }
  11327. },
  11328. "autoload": {
  11329. "psr-4": {
  11330. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  11331. },
  11332. "exclude-from-classmap": [
  11333. "/Tests/"
  11334. ]
  11335. },
  11336. "notification-url": "https://packagist.org/downloads/",
  11337. "license": [
  11338. "MIT"
  11339. ],
  11340. "authors": [
  11341. {
  11342. "name": "Fabien Potencier",
  11343. "email": "fabien@symfony.com"
  11344. },
  11345. {
  11346. "name": "Symfony Community",
  11347. "homepage": "http://symfony.com/contributors"
  11348. }
  11349. ],
  11350. "description": "PSR HTTP message bridge",
  11351. "homepage": "http://symfony.com",
  11352. "keywords": [
  11353. "http",
  11354. "http-message",
  11355. "psr-17",
  11356. "psr-7"
  11357. ],
  11358. "funding": [
  11359. {
  11360. "url": "https://symfony.com/sponsor",
  11361. "type": "custom"
  11362. },
  11363. {
  11364. "url": "https://github.com/fabpot",
  11365. "type": "github"
  11366. },
  11367. {
  11368. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11369. "type": "tidelift"
  11370. }
  11371. ],
  11372. "time": "2020-09-29T08:17:46+00:00"
  11373. },
  11374. {
  11375. "name": "symfony/routing",
  11376. "version": "v4.4.16",
  11377. "source": {
  11378. "type": "git",
  11379. "url": "https://github.com/symfony/routing.git",
  11380. "reference": "826794f2e9305fe73cba859c60d2a336851bd202"
  11381. },
  11382. "dist": {
  11383. "type": "zip",
  11384. "url": "https://api.github.com/repos/symfony/routing/zipball/826794f2e9305fe73cba859c60d2a336851bd202",
  11385. "reference": "826794f2e9305fe73cba859c60d2a336851bd202",
  11386. "shasum": ""
  11387. },
  11388. "require": {
  11389. "php": ">=7.1.3"
  11390. },
  11391. "conflict": {
  11392. "symfony/config": "<4.2",
  11393. "symfony/dependency-injection": "<3.4",
  11394. "symfony/yaml": "<3.4"
  11395. },
  11396. "require-dev": {
  11397. "doctrine/annotations": "~1.2",
  11398. "psr/log": "~1.0",
  11399. "symfony/config": "^4.2|^5.0",
  11400. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  11401. "symfony/expression-language": "^3.4|^4.0|^5.0",
  11402. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  11403. "symfony/yaml": "^3.4|^4.0|^5.0"
  11404. },
  11405. "suggest": {
  11406. "doctrine/annotations": "For using the annotation loader",
  11407. "symfony/config": "For using the all-in-one router or any loader",
  11408. "symfony/expression-language": "For using expression matching",
  11409. "symfony/http-foundation": "For using a Symfony Request object",
  11410. "symfony/yaml": "For using the YAML loader"
  11411. },
  11412. "type": "library",
  11413. "autoload": {
  11414. "psr-4": {
  11415. "Symfony\\Component\\Routing\\": ""
  11416. },
  11417. "exclude-from-classmap": [
  11418. "/Tests/"
  11419. ]
  11420. },
  11421. "notification-url": "https://packagist.org/downloads/",
  11422. "license": [
  11423. "MIT"
  11424. ],
  11425. "authors": [
  11426. {
  11427. "name": "Fabien Potencier",
  11428. "email": "fabien@symfony.com"
  11429. },
  11430. {
  11431. "name": "Symfony Community",
  11432. "homepage": "https://symfony.com/contributors"
  11433. }
  11434. ],
  11435. "description": "Symfony Routing Component",
  11436. "homepage": "https://symfony.com",
  11437. "keywords": [
  11438. "router",
  11439. "routing",
  11440. "uri",
  11441. "url"
  11442. ],
  11443. "funding": [
  11444. {
  11445. "url": "https://symfony.com/sponsor",
  11446. "type": "custom"
  11447. },
  11448. {
  11449. "url": "https://github.com/fabpot",
  11450. "type": "github"
  11451. },
  11452. {
  11453. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11454. "type": "tidelift"
  11455. }
  11456. ],
  11457. "time": "2020-10-24T11:50:19+00:00"
  11458. },
  11459. {
  11460. "name": "symfony/serializer",
  11461. "version": "v4.4.16",
  11462. "source": {
  11463. "type": "git",
  11464. "url": "https://github.com/symfony/serializer.git",
  11465. "reference": "2af7e86db04ee65fdf1991b17ee0b3e955c93de9"
  11466. },
  11467. "dist": {
  11468. "type": "zip",
  11469. "url": "https://api.github.com/repos/symfony/serializer/zipball/2af7e86db04ee65fdf1991b17ee0b3e955c93de9",
  11470. "reference": "2af7e86db04ee65fdf1991b17ee0b3e955c93de9",
  11471. "shasum": ""
  11472. },
  11473. "require": {
  11474. "php": ">=7.1.3",
  11475. "symfony/polyfill-ctype": "~1.8"
  11476. },
  11477. "conflict": {
  11478. "phpdocumentor/type-resolver": "<0.2.1",
  11479. "symfony/dependency-injection": "<3.4",
  11480. "symfony/property-access": "<3.4",
  11481. "symfony/property-info": "<3.4",
  11482. "symfony/yaml": "<3.4"
  11483. },
  11484. "require-dev": {
  11485. "doctrine/annotations": "~1.0",
  11486. "doctrine/cache": "~1.0",
  11487. "phpdocumentor/reflection-docblock": "^3.2|^4.0",
  11488. "symfony/cache": "^3.4|^4.0|^5.0",
  11489. "symfony/config": "^3.4|^4.0|^5.0",
  11490. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  11491. "symfony/error-handler": "^4.4|^5.0",
  11492. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  11493. "symfony/mime": "^4.4|^5.0",
  11494. "symfony/property-access": "^3.4|^4.0|^5.0",
  11495. "symfony/property-info": "^3.4.13|~4.0|^5.0",
  11496. "symfony/validator": "^3.4|^4.0|^5.0",
  11497. "symfony/yaml": "^3.4|^4.0|^5.0"
  11498. },
  11499. "suggest": {
  11500. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  11501. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  11502. "psr/cache-implementation": "For using the metadata cache.",
  11503. "symfony/config": "For using the XML mapping loader.",
  11504. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  11505. "symfony/property-access": "For using the ObjectNormalizer.",
  11506. "symfony/property-info": "To deserialize relations.",
  11507. "symfony/yaml": "For using the default YAML mapping loader."
  11508. },
  11509. "type": "library",
  11510. "autoload": {
  11511. "psr-4": {
  11512. "Symfony\\Component\\Serializer\\": ""
  11513. },
  11514. "exclude-from-classmap": [
  11515. "/Tests/"
  11516. ]
  11517. },
  11518. "notification-url": "https://packagist.org/downloads/",
  11519. "license": [
  11520. "MIT"
  11521. ],
  11522. "authors": [
  11523. {
  11524. "name": "Fabien Potencier",
  11525. "email": "fabien@symfony.com"
  11526. },
  11527. {
  11528. "name": "Symfony Community",
  11529. "homepage": "https://symfony.com/contributors"
  11530. }
  11531. ],
  11532. "description": "Symfony Serializer Component",
  11533. "homepage": "https://symfony.com",
  11534. "funding": [
  11535. {
  11536. "url": "https://symfony.com/sponsor",
  11537. "type": "custom"
  11538. },
  11539. {
  11540. "url": "https://github.com/fabpot",
  11541. "type": "github"
  11542. },
  11543. {
  11544. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11545. "type": "tidelift"
  11546. }
  11547. ],
  11548. "time": "2020-10-24T11:50:19+00:00"
  11549. },
  11550. {
  11551. "name": "symfony/service-contracts",
  11552. "version": "v2.2.0",
  11553. "source": {
  11554. "type": "git",
  11555. "url": "https://github.com/symfony/service-contracts.git",
  11556. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  11557. },
  11558. "dist": {
  11559. "type": "zip",
  11560. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  11561. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  11562. "shasum": ""
  11563. },
  11564. "require": {
  11565. "php": ">=7.2.5",
  11566. "psr/container": "^1.0"
  11567. },
  11568. "suggest": {
  11569. "symfony/service-implementation": ""
  11570. },
  11571. "type": "library",
  11572. "extra": {
  11573. "branch-alias": {
  11574. "dev-master": "2.2-dev"
  11575. },
  11576. "thanks": {
  11577. "name": "symfony/contracts",
  11578. "url": "https://github.com/symfony/contracts"
  11579. }
  11580. },
  11581. "autoload": {
  11582. "psr-4": {
  11583. "Symfony\\Contracts\\Service\\": ""
  11584. }
  11585. },
  11586. "notification-url": "https://packagist.org/downloads/",
  11587. "license": [
  11588. "MIT"
  11589. ],
  11590. "authors": [
  11591. {
  11592. "name": "Nicolas Grekas",
  11593. "email": "p@tchwork.com"
  11594. },
  11595. {
  11596. "name": "Symfony Community",
  11597. "homepage": "https://symfony.com/contributors"
  11598. }
  11599. ],
  11600. "description": "Generic abstractions related to writing services",
  11601. "homepage": "https://symfony.com",
  11602. "keywords": [
  11603. "abstractions",
  11604. "contracts",
  11605. "decoupling",
  11606. "interfaces",
  11607. "interoperability",
  11608. "standards"
  11609. ],
  11610. "funding": [
  11611. {
  11612. "url": "https://symfony.com/sponsor",
  11613. "type": "custom"
  11614. },
  11615. {
  11616. "url": "https://github.com/fabpot",
  11617. "type": "github"
  11618. },
  11619. {
  11620. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11621. "type": "tidelift"
  11622. }
  11623. ],
  11624. "time": "2020-09-07T11:33:47+00:00"
  11625. },
  11626. {
  11627. "name": "symfony/translation",
  11628. "version": "v4.4.16",
  11629. "source": {
  11630. "type": "git",
  11631. "url": "https://github.com/symfony/translation.git",
  11632. "reference": "73095716af79f610f3b6338b911357393fdd10ab"
  11633. },
  11634. "dist": {
  11635. "type": "zip",
  11636. "url": "https://api.github.com/repos/symfony/translation/zipball/73095716af79f610f3b6338b911357393fdd10ab",
  11637. "reference": "73095716af79f610f3b6338b911357393fdd10ab",
  11638. "shasum": ""
  11639. },
  11640. "require": {
  11641. "php": ">=7.1.3",
  11642. "symfony/polyfill-mbstring": "~1.0",
  11643. "symfony/translation-contracts": "^1.1.6|^2"
  11644. },
  11645. "conflict": {
  11646. "symfony/config": "<3.4",
  11647. "symfony/dependency-injection": "<3.4",
  11648. "symfony/http-kernel": "<4.4",
  11649. "symfony/yaml": "<3.4"
  11650. },
  11651. "provide": {
  11652. "symfony/translation-implementation": "1.0"
  11653. },
  11654. "require-dev": {
  11655. "psr/log": "~1.0",
  11656. "symfony/config": "^3.4|^4.0|^5.0",
  11657. "symfony/console": "^3.4|^4.0|^5.0",
  11658. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  11659. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  11660. "symfony/http-kernel": "^4.4",
  11661. "symfony/intl": "^3.4|^4.0|^5.0",
  11662. "symfony/service-contracts": "^1.1.2|^2",
  11663. "symfony/yaml": "^3.4|^4.0|^5.0"
  11664. },
  11665. "suggest": {
  11666. "psr/log-implementation": "To use logging capability in translator",
  11667. "symfony/config": "",
  11668. "symfony/yaml": ""
  11669. },
  11670. "type": "library",
  11671. "autoload": {
  11672. "psr-4": {
  11673. "Symfony\\Component\\Translation\\": ""
  11674. },
  11675. "exclude-from-classmap": [
  11676. "/Tests/"
  11677. ]
  11678. },
  11679. "notification-url": "https://packagist.org/downloads/",
  11680. "license": [
  11681. "MIT"
  11682. ],
  11683. "authors": [
  11684. {
  11685. "name": "Fabien Potencier",
  11686. "email": "fabien@symfony.com"
  11687. },
  11688. {
  11689. "name": "Symfony Community",
  11690. "homepage": "https://symfony.com/contributors"
  11691. }
  11692. ],
  11693. "description": "Symfony Translation Component",
  11694. "homepage": "https://symfony.com",
  11695. "funding": [
  11696. {
  11697. "url": "https://symfony.com/sponsor",
  11698. "type": "custom"
  11699. },
  11700. {
  11701. "url": "https://github.com/fabpot",
  11702. "type": "github"
  11703. },
  11704. {
  11705. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11706. "type": "tidelift"
  11707. }
  11708. ],
  11709. "time": "2020-10-24T11:50:19+00:00"
  11710. },
  11711. {
  11712. "name": "symfony/translation-contracts",
  11713. "version": "v2.3.0",
  11714. "source": {
  11715. "type": "git",
  11716. "url": "https://github.com/symfony/translation-contracts.git",
  11717. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  11718. },
  11719. "dist": {
  11720. "type": "zip",
  11721. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  11722. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  11723. "shasum": ""
  11724. },
  11725. "require": {
  11726. "php": ">=7.2.5"
  11727. },
  11728. "suggest": {
  11729. "symfony/translation-implementation": ""
  11730. },
  11731. "type": "library",
  11732. "extra": {
  11733. "branch-alias": {
  11734. "dev-master": "2.3-dev"
  11735. },
  11736. "thanks": {
  11737. "name": "symfony/contracts",
  11738. "url": "https://github.com/symfony/contracts"
  11739. }
  11740. },
  11741. "autoload": {
  11742. "psr-4": {
  11743. "Symfony\\Contracts\\Translation\\": ""
  11744. }
  11745. },
  11746. "notification-url": "https://packagist.org/downloads/",
  11747. "license": [
  11748. "MIT"
  11749. ],
  11750. "authors": [
  11751. {
  11752. "name": "Nicolas Grekas",
  11753. "email": "p@tchwork.com"
  11754. },
  11755. {
  11756. "name": "Symfony Community",
  11757. "homepage": "https://symfony.com/contributors"
  11758. }
  11759. ],
  11760. "description": "Generic abstractions related to translation",
  11761. "homepage": "https://symfony.com",
  11762. "keywords": [
  11763. "abstractions",
  11764. "contracts",
  11765. "decoupling",
  11766. "interfaces",
  11767. "interoperability",
  11768. "standards"
  11769. ],
  11770. "funding": [
  11771. {
  11772. "url": "https://symfony.com/sponsor",
  11773. "type": "custom"
  11774. },
  11775. {
  11776. "url": "https://github.com/fabpot",
  11777. "type": "github"
  11778. },
  11779. {
  11780. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11781. "type": "tidelift"
  11782. }
  11783. ],
  11784. "time": "2020-09-28T13:05:58+00:00"
  11785. },
  11786. {
  11787. "name": "symfony/validator",
  11788. "version": "v4.4.16",
  11789. "source": {
  11790. "type": "git",
  11791. "url": "https://github.com/symfony/validator.git",
  11792. "reference": "1d214a3aaa0753b19f94cf0479d8c315d957a10d"
  11793. },
  11794. "dist": {
  11795. "type": "zip",
  11796. "url": "https://api.github.com/repos/symfony/validator/zipball/1d214a3aaa0753b19f94cf0479d8c315d957a10d",
  11797. "reference": "1d214a3aaa0753b19f94cf0479d8c315d957a10d",
  11798. "shasum": ""
  11799. },
  11800. "require": {
  11801. "php": ">=7.1.3",
  11802. "symfony/polyfill-ctype": "~1.8",
  11803. "symfony/polyfill-mbstring": "~1.0",
  11804. "symfony/translation-contracts": "^1.1|^2"
  11805. },
  11806. "conflict": {
  11807. "doctrine/lexer": "<1.0.2",
  11808. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  11809. "symfony/dependency-injection": "<3.4",
  11810. "symfony/http-kernel": "<4.4",
  11811. "symfony/intl": "<4.3",
  11812. "symfony/translation": ">=5.0",
  11813. "symfony/yaml": "<3.4"
  11814. },
  11815. "require-dev": {
  11816. "doctrine/annotations": "~1.7",
  11817. "doctrine/cache": "~1.0",
  11818. "egulias/email-validator": "^2.1.10",
  11819. "symfony/cache": "^3.4|^4.0|^5.0",
  11820. "symfony/config": "^3.4|^4.0|^5.0",
  11821. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  11822. "symfony/expression-language": "^3.4|^4.0|^5.0",
  11823. "symfony/http-client": "^4.3|^5.0",
  11824. "symfony/http-foundation": "^4.1|^5.0",
  11825. "symfony/http-kernel": "^4.4",
  11826. "symfony/intl": "^4.3|^5.0",
  11827. "symfony/mime": "^4.4|^5.0",
  11828. "symfony/property-access": "^3.4|^4.0|^5.0",
  11829. "symfony/property-info": "^3.4|^4.0|^5.0",
  11830. "symfony/translation": "^4.2",
  11831. "symfony/yaml": "^3.4|^4.0|^5.0"
  11832. },
  11833. "suggest": {
  11834. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  11835. "doctrine/cache": "For using the default cached annotation reader.",
  11836. "egulias/email-validator": "Strict (RFC compliant) email validation",
  11837. "psr/cache-implementation": "For using the mapping cache.",
  11838. "symfony/config": "",
  11839. "symfony/expression-language": "For using the Expression validator",
  11840. "symfony/http-foundation": "",
  11841. "symfony/intl": "",
  11842. "symfony/property-access": "For accessing properties within comparison constraints",
  11843. "symfony/property-info": "To automatically add NotNull and Type constraints",
  11844. "symfony/translation": "For translating validation errors.",
  11845. "symfony/yaml": ""
  11846. },
  11847. "type": "library",
  11848. "autoload": {
  11849. "psr-4": {
  11850. "Symfony\\Component\\Validator\\": ""
  11851. },
  11852. "exclude-from-classmap": [
  11853. "/Tests/"
  11854. ]
  11855. },
  11856. "notification-url": "https://packagist.org/downloads/",
  11857. "license": [
  11858. "MIT"
  11859. ],
  11860. "authors": [
  11861. {
  11862. "name": "Fabien Potencier",
  11863. "email": "fabien@symfony.com"
  11864. },
  11865. {
  11866. "name": "Symfony Community",
  11867. "homepage": "https://symfony.com/contributors"
  11868. }
  11869. ],
  11870. "description": "Symfony Validator Component",
  11871. "homepage": "https://symfony.com",
  11872. "funding": [
  11873. {
  11874. "url": "https://symfony.com/sponsor",
  11875. "type": "custom"
  11876. },
  11877. {
  11878. "url": "https://github.com/fabpot",
  11879. "type": "github"
  11880. },
  11881. {
  11882. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11883. "type": "tidelift"
  11884. }
  11885. ],
  11886. "time": "2020-10-28T05:25:24+00:00"
  11887. },
  11888. {
  11889. "name": "symfony/var-dumper",
  11890. "version": "v5.1.8",
  11891. "source": {
  11892. "type": "git",
  11893. "url": "https://github.com/symfony/var-dumper.git",
  11894. "reference": "4e13f3fcefb1fcaaa5efb5403581406f4e840b9a"
  11895. },
  11896. "dist": {
  11897. "type": "zip",
  11898. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/4e13f3fcefb1fcaaa5efb5403581406f4e840b9a",
  11899. "reference": "4e13f3fcefb1fcaaa5efb5403581406f4e840b9a",
  11900. "shasum": ""
  11901. },
  11902. "require": {
  11903. "php": ">=7.2.5",
  11904. "symfony/polyfill-mbstring": "~1.0",
  11905. "symfony/polyfill-php80": "^1.15"
  11906. },
  11907. "conflict": {
  11908. "phpunit/phpunit": "<5.4.3",
  11909. "symfony/console": "<4.4"
  11910. },
  11911. "require-dev": {
  11912. "ext-iconv": "*",
  11913. "symfony/console": "^4.4|^5.0",
  11914. "symfony/process": "^4.4|^5.0",
  11915. "twig/twig": "^2.4|^3.0"
  11916. },
  11917. "suggest": {
  11918. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  11919. "ext-intl": "To show region name in time zone dump",
  11920. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  11921. },
  11922. "bin": [
  11923. "Resources/bin/var-dump-server"
  11924. ],
  11925. "type": "library",
  11926. "autoload": {
  11927. "files": [
  11928. "Resources/functions/dump.php"
  11929. ],
  11930. "psr-4": {
  11931. "Symfony\\Component\\VarDumper\\": ""
  11932. },
  11933. "exclude-from-classmap": [
  11934. "/Tests/"
  11935. ]
  11936. },
  11937. "notification-url": "https://packagist.org/downloads/",
  11938. "license": [
  11939. "MIT"
  11940. ],
  11941. "authors": [
  11942. {
  11943. "name": "Nicolas Grekas",
  11944. "email": "p@tchwork.com"
  11945. },
  11946. {
  11947. "name": "Symfony Community",
  11948. "homepage": "https://symfony.com/contributors"
  11949. }
  11950. ],
  11951. "description": "Symfony mechanism for exploring and dumping PHP variables",
  11952. "homepage": "https://symfony.com",
  11953. "keywords": [
  11954. "debug",
  11955. "dump"
  11956. ],
  11957. "funding": [
  11958. {
  11959. "url": "https://symfony.com/sponsor",
  11960. "type": "custom"
  11961. },
  11962. {
  11963. "url": "https://github.com/fabpot",
  11964. "type": "github"
  11965. },
  11966. {
  11967. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11968. "type": "tidelift"
  11969. }
  11970. ],
  11971. "time": "2020-10-27T10:11:13+00:00"
  11972. },
  11973. {
  11974. "name": "symfony/yaml",
  11975. "version": "v4.4.16",
  11976. "source": {
  11977. "type": "git",
  11978. "url": "https://github.com/symfony/yaml.git",
  11979. "reference": "543cb4dbd45ed803f08a9a65f27fb149b5dd20c2"
  11980. },
  11981. "dist": {
  11982. "type": "zip",
  11983. "url": "https://api.github.com/repos/symfony/yaml/zipball/543cb4dbd45ed803f08a9a65f27fb149b5dd20c2",
  11984. "reference": "543cb4dbd45ed803f08a9a65f27fb149b5dd20c2",
  11985. "shasum": ""
  11986. },
  11987. "require": {
  11988. "php": ">=7.1.3",
  11989. "symfony/polyfill-ctype": "~1.8"
  11990. },
  11991. "conflict": {
  11992. "symfony/console": "<3.4"
  11993. },
  11994. "require-dev": {
  11995. "symfony/console": "^3.4|^4.0|^5.0"
  11996. },
  11997. "suggest": {
  11998. "symfony/console": "For validating YAML files using the lint command"
  11999. },
  12000. "type": "library",
  12001. "autoload": {
  12002. "psr-4": {
  12003. "Symfony\\Component\\Yaml\\": ""
  12004. },
  12005. "exclude-from-classmap": [
  12006. "/Tests/"
  12007. ]
  12008. },
  12009. "notification-url": "https://packagist.org/downloads/",
  12010. "license": [
  12011. "MIT"
  12012. ],
  12013. "authors": [
  12014. {
  12015. "name": "Fabien Potencier",
  12016. "email": "fabien@symfony.com"
  12017. },
  12018. {
  12019. "name": "Symfony Community",
  12020. "homepage": "https://symfony.com/contributors"
  12021. }
  12022. ],
  12023. "description": "Symfony Yaml Component",
  12024. "homepage": "https://symfony.com",
  12025. "funding": [
  12026. {
  12027. "url": "https://symfony.com/sponsor",
  12028. "type": "custom"
  12029. },
  12030. {
  12031. "url": "https://github.com/fabpot",
  12032. "type": "github"
  12033. },
  12034. {
  12035. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12036. "type": "tidelift"
  12037. }
  12038. ],
  12039. "time": "2020-10-24T11:50:19+00:00"
  12040. },
  12041. {
  12042. "name": "twig/twig",
  12043. "version": "v2.14.1",
  12044. "source": {
  12045. "type": "git",
  12046. "url": "https://github.com/twigphp/Twig.git",
  12047. "reference": "5eb9ac5dfdd20c3f59495c22841adc5da980d312"
  12048. },
  12049. "dist": {
  12050. "type": "zip",
  12051. "url": "https://api.github.com/repos/twigphp/Twig/zipball/5eb9ac5dfdd20c3f59495c22841adc5da980d312",
  12052. "reference": "5eb9ac5dfdd20c3f59495c22841adc5da980d312",
  12053. "shasum": ""
  12054. },
  12055. "require": {
  12056. "php": ">=7.2.5",
  12057. "symfony/polyfill-ctype": "^1.8",
  12058. "symfony/polyfill-mbstring": "^1.3"
  12059. },
  12060. "require-dev": {
  12061. "psr/container": "^1.0",
  12062. "symfony/phpunit-bridge": "^4.4.9|^5.0.9"
  12063. },
  12064. "type": "library",
  12065. "extra": {
  12066. "branch-alias": {
  12067. "dev-master": "2.14-dev"
  12068. }
  12069. },
  12070. "autoload": {
  12071. "psr-0": {
  12072. "Twig_": "lib/"
  12073. },
  12074. "psr-4": {
  12075. "Twig\\": "src/"
  12076. }
  12077. },
  12078. "notification-url": "https://packagist.org/downloads/",
  12079. "license": [
  12080. "BSD-3-Clause"
  12081. ],
  12082. "authors": [
  12083. {
  12084. "name": "Fabien Potencier",
  12085. "email": "fabien@symfony.com",
  12086. "homepage": "http://fabien.potencier.org",
  12087. "role": "Lead Developer"
  12088. },
  12089. {
  12090. "name": "Twig Team",
  12091. "role": "Contributors"
  12092. },
  12093. {
  12094. "name": "Armin Ronacher",
  12095. "email": "armin.ronacher@active-4.com",
  12096. "role": "Project Founder"
  12097. }
  12098. ],
  12099. "description": "Twig, the flexible, fast, and secure template language for PHP",
  12100. "homepage": "https://twig.symfony.com",
  12101. "keywords": [
  12102. "templating"
  12103. ],
  12104. "funding": [
  12105. {
  12106. "url": "https://github.com/fabpot",
  12107. "type": "github"
  12108. },
  12109. {
  12110. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  12111. "type": "tidelift"
  12112. }
  12113. ],
  12114. "time": "2020-10-27T19:25:29+00:00"
  12115. },
  12116. {
  12117. "name": "typo3/phar-stream-wrapper",
  12118. "version": "v3.1.6",
  12119. "source": {
  12120. "type": "git",
  12121. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  12122. "reference": "60131cb573a1e478cfecd34e4ea38e3b31505f75"
  12123. },
  12124. "dist": {
  12125. "type": "zip",
  12126. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/60131cb573a1e478cfecd34e4ea38e3b31505f75",
  12127. "reference": "60131cb573a1e478cfecd34e4ea38e3b31505f75",
  12128. "shasum": ""
  12129. },
  12130. "require": {
  12131. "ext-json": "*",
  12132. "php": "^7.0 || ^8.0"
  12133. },
  12134. "require-dev": {
  12135. "ext-xdebug": "*",
  12136. "phpspec/prophecy": "^1.10",
  12137. "symfony/phpunit-bridge": "^5.1"
  12138. },
  12139. "suggest": {
  12140. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  12141. },
  12142. "type": "library",
  12143. "extra": {
  12144. "branch-alias": {
  12145. "dev-master": "v3.x-dev"
  12146. }
  12147. },
  12148. "autoload": {
  12149. "psr-4": {
  12150. "TYPO3\\PharStreamWrapper\\": "src/"
  12151. }
  12152. },
  12153. "notification-url": "https://packagist.org/downloads/",
  12154. "license": [
  12155. "MIT"
  12156. ],
  12157. "description": "Interceptors for PHP's native phar:// stream handling",
  12158. "homepage": "https://typo3.org/",
  12159. "keywords": [
  12160. "phar",
  12161. "php",
  12162. "security",
  12163. "stream-wrapper"
  12164. ],
  12165. "time": "2020-11-07T09:06:16+00:00"
  12166. },
  12167. {
  12168. "name": "webflo/drupal-finder",
  12169. "version": "1.2.2",
  12170. "source": {
  12171. "type": "git",
  12172. "url": "https://github.com/webflo/drupal-finder.git",
  12173. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  12174. },
  12175. "dist": {
  12176. "type": "zip",
  12177. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  12178. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  12179. "shasum": ""
  12180. },
  12181. "require": {
  12182. "ext-json": "*"
  12183. },
  12184. "require-dev": {
  12185. "mikey179/vfsstream": "^1.6",
  12186. "phpunit/phpunit": "^4.8"
  12187. },
  12188. "type": "library",
  12189. "autoload": {
  12190. "classmap": [
  12191. "src/DrupalFinder.php"
  12192. ]
  12193. },
  12194. "notification-url": "https://packagist.org/downloads/",
  12195. "license": [
  12196. "GPL-2.0-or-later"
  12197. ],
  12198. "authors": [
  12199. {
  12200. "name": "Florian Weber",
  12201. "email": "florian@webflo.org"
  12202. }
  12203. ],
  12204. "description": "Helper class to locate a Drupal installation from a given path.",
  12205. "time": "2020-10-27T09:42:17+00:00"
  12206. },
  12207. {
  12208. "name": "webmozart/assert",
  12209. "version": "1.10.0",
  12210. "source": {
  12211. "type": "git",
  12212. "url": "https://github.com/webmozarts/assert.git",
  12213. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  12214. },
  12215. "dist": {
  12216. "type": "zip",
  12217. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  12218. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  12219. "shasum": ""
  12220. },
  12221. "require": {
  12222. "php": "^7.2 || ^8.0",
  12223. "symfony/polyfill-ctype": "^1.8"
  12224. },
  12225. "conflict": {
  12226. "phpstan/phpstan": "<0.12.20",
  12227. "vimeo/psalm": "<4.6.1 || 4.6.2"
  12228. },
  12229. "require-dev": {
  12230. "phpunit/phpunit": "^8.5.13"
  12231. },
  12232. "type": "library",
  12233. "extra": {
  12234. "branch-alias": {
  12235. "dev-master": "1.10-dev"
  12236. }
  12237. },
  12238. "autoload": {
  12239. "psr-4": {
  12240. "Webmozart\\Assert\\": "src/"
  12241. }
  12242. },
  12243. "notification-url": "https://packagist.org/downloads/",
  12244. "license": [
  12245. "MIT"
  12246. ],
  12247. "authors": [
  12248. {
  12249. "name": "Bernhard Schussek",
  12250. "email": "bschussek@gmail.com"
  12251. }
  12252. ],
  12253. "description": "Assertions to validate method input/output with nice error messages.",
  12254. "keywords": [
  12255. "assert",
  12256. "check",
  12257. "validate"
  12258. ],
  12259. "time": "2021-03-09T10:59:23+00:00"
  12260. },
  12261. {
  12262. "name": "webmozart/path-util",
  12263. "version": "2.3.0",
  12264. "source": {
  12265. "type": "git",
  12266. "url": "https://github.com/webmozart/path-util.git",
  12267. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  12268. },
  12269. "dist": {
  12270. "type": "zip",
  12271. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  12272. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  12273. "shasum": ""
  12274. },
  12275. "require": {
  12276. "php": ">=5.3.3",
  12277. "webmozart/assert": "~1.0"
  12278. },
  12279. "require-dev": {
  12280. "phpunit/phpunit": "^4.6",
  12281. "sebastian/version": "^1.0.1"
  12282. },
  12283. "type": "library",
  12284. "extra": {
  12285. "branch-alias": {
  12286. "dev-master": "2.3-dev"
  12287. }
  12288. },
  12289. "autoload": {
  12290. "psr-4": {
  12291. "Webmozart\\PathUtil\\": "src/"
  12292. }
  12293. },
  12294. "notification-url": "https://packagist.org/downloads/",
  12295. "license": [
  12296. "MIT"
  12297. ],
  12298. "authors": [
  12299. {
  12300. "name": "Bernhard Schussek",
  12301. "email": "bschussek@gmail.com"
  12302. }
  12303. ],
  12304. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  12305. "time": "2015-12-17T08:42:14+00:00"
  12306. },
  12307. {
  12308. "name": "wikimedia/composer-merge-plugin",
  12309. "version": "v2.0.1",
  12310. "source": {
  12311. "type": "git",
  12312. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  12313. "reference": "8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912"
  12314. },
  12315. "dist": {
  12316. "type": "zip",
  12317. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912",
  12318. "reference": "8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912",
  12319. "shasum": ""
  12320. },
  12321. "require": {
  12322. "composer-plugin-api": "^1.1||^2.0",
  12323. "php": ">=7.2.0"
  12324. },
  12325. "require-dev": {
  12326. "composer/composer": "^1.1||^2.0",
  12327. "php-parallel-lint/php-parallel-lint": "~1.1.0",
  12328. "phpunit/phpunit": "^8.5||^9.0",
  12329. "squizlabs/php_codesniffer": "~3.5.4"
  12330. },
  12331. "type": "composer-plugin",
  12332. "extra": {
  12333. "branch-alias": {
  12334. "dev-master": "2.x-dev"
  12335. },
  12336. "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin"
  12337. },
  12338. "autoload": {
  12339. "psr-4": {
  12340. "Wikimedia\\Composer\\Merge\\V2\\": "src/"
  12341. }
  12342. },
  12343. "notification-url": "https://packagist.org/downloads/",
  12344. "license": [
  12345. "MIT"
  12346. ],
  12347. "authors": [
  12348. {
  12349. "name": "Bryan Davis",
  12350. "email": "bd808@wikimedia.org"
  12351. }
  12352. ],
  12353. "description": "Composer plugin to merge multiple composer.json files",
  12354. "time": "2021-02-24T05:28:06+00:00"
  12355. }
  12356. ],
  12357. "packages-dev": [],
  12358. "aliases": [],
  12359. "minimum-stability": "stable",
  12360. "stability-flags": {
  12361. "drupal/autocomplete_deluxe": 5,
  12362. "drupal/better_exposed_filters": 10,
  12363. "drupal/bulkdelete": 20,
  12364. "drupal/cshs": 20,
  12365. "drupal/config_ignore": 5,
  12366. "drupal/config_devel": 20,
  12367. "drupal/context": 10,
  12368. "drupal/date_range_formatter": 20,
  12369. "drupal/domain": 20,
  12370. "drupal/domain_alias": 20,
  12371. "drupal/domain_config": 20,
  12372. "drupal/domain_site_settings": 20,
  12373. "drupal/email_registration": 5,
  12374. "drupal/entity_browser_enhanced": 5,
  12375. "drupal/entity_clone": 15,
  12376. "drupal/filefield_sources": 20,
  12377. "drupal/filter_perms": 20,
  12378. "drupal/inline_entity_form": 5,
  12379. "drupal/linkit": 10,
  12380. "drupal/login_destination": 20,
  12381. "drupal/maillog": 20,
  12382. "drupal/maxlength": 10,
  12383. "drupal/menu_block": 20,
  12384. "drupal/menu_position": 20,
  12385. "drupal/path_alias_xt": 20,
  12386. "drupal/pathologic": 15,
  12387. "drupal/profile": 5,
  12388. "drupal/smtp": 10,
  12389. "drupal/synonyms": 20,
  12390. "drupal/translation_views": 15,
  12391. "drupal/ultimate_cron": 15
  12392. },
  12393. "prefer-stable": true,
  12394. "prefer-lowest": false,
  12395. "platform": [],
  12396. "platform-dev": [],
  12397. "plugin-api-version": "1.1.0"
  12398. }