composer.lock 456 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536
  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": "bf40fb4c18c43b5383e36a3a960d49d7",
  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/entity_reference_revisions",
  4727. "version": "1.9.0",
  4728. "source": {
  4729. "type": "git",
  4730. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  4731. "reference": "8.x-1.9"
  4732. },
  4733. "dist": {
  4734. "type": "zip",
  4735. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.9.zip",
  4736. "reference": "8.x-1.9",
  4737. "shasum": "e1c51bdea495eb3b458130d6f0a00c347f5637df"
  4738. },
  4739. "require": {
  4740. "drupal/core": "^8.7.7 || ^9"
  4741. },
  4742. "require-dev": {
  4743. "drupal/diff": "1.x-dev"
  4744. },
  4745. "type": "drupal-module",
  4746. "extra": {
  4747. "drupal": {
  4748. "version": "8.x-1.9",
  4749. "datestamp": "1614805871",
  4750. "security-coverage": {
  4751. "status": "covered",
  4752. "message": "Covered by Drupal's security advisory policy"
  4753. }
  4754. }
  4755. },
  4756. "notification-url": "https://packages.drupal.org/8/downloads",
  4757. "license": [
  4758. "GPL-2.0-or-later"
  4759. ],
  4760. "authors": [
  4761. {
  4762. "name": "Berdir",
  4763. "homepage": "https://www.drupal.org/user/214652"
  4764. },
  4765. {
  4766. "name": "Frans",
  4767. "homepage": "https://www.drupal.org/user/514222"
  4768. },
  4769. {
  4770. "name": "jeroen.b",
  4771. "homepage": "https://www.drupal.org/user/1853532"
  4772. },
  4773. {
  4774. "name": "miro_dietiker",
  4775. "homepage": "https://www.drupal.org/user/227761"
  4776. }
  4777. ],
  4778. "description": "Entity Reference Revisions",
  4779. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  4780. "support": {
  4781. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  4782. }
  4783. },
  4784. {
  4785. "name": "drupal/extlink",
  4786. "version": "1.6.0",
  4787. "source": {
  4788. "type": "git",
  4789. "url": "https://git.drupalcode.org/project/extlink.git",
  4790. "reference": "8.x-1.6"
  4791. },
  4792. "dist": {
  4793. "type": "zip",
  4794. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.6.zip",
  4795. "reference": "8.x-1.6",
  4796. "shasum": "92c2794b1d5ece7978f5f6fa37f719c0b37d470e"
  4797. },
  4798. "require": {
  4799. "drupal/core": "^8 || ^9"
  4800. },
  4801. "type": "drupal-module",
  4802. "extra": {
  4803. "drupal": {
  4804. "version": "8.x-1.6",
  4805. "datestamp": "1614961993",
  4806. "security-coverage": {
  4807. "status": "covered",
  4808. "message": "Covered by Drupal's security advisory policy"
  4809. }
  4810. }
  4811. },
  4812. "notification-url": "https://packages.drupal.org/8/downloads",
  4813. "license": [
  4814. "GPL-2.0-or-later"
  4815. ],
  4816. "authors": [
  4817. {
  4818. "name": "Nate Lampton",
  4819. "homepage": "https://www.drupal.org/u/quicksketch",
  4820. "role": "Maintainer"
  4821. },
  4822. {
  4823. "name": "Lachlan Ennis",
  4824. "homepage": "https://www.drupal.org/u/elachlan",
  4825. "role": "Maintainer"
  4826. },
  4827. {
  4828. "name": "Neslee Canil Pinto",
  4829. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  4830. "role": "Maintainer"
  4831. }
  4832. ],
  4833. "description": "Modify behavior and appearance of external links.",
  4834. "homepage": "https://www.drupal.org/project/extlink",
  4835. "keywords": [
  4836. "Drupal",
  4837. "External Links"
  4838. ],
  4839. "support": {
  4840. "source": "https://git.drupalcode.org/project/extlink",
  4841. "issues": "https://www.drupal.org/project/issues/extlink"
  4842. }
  4843. },
  4844. {
  4845. "name": "drupal/field_group",
  4846. "version": "3.1.0",
  4847. "source": {
  4848. "type": "git",
  4849. "url": "https://git.drupalcode.org/project/field_group.git",
  4850. "reference": "8.x-3.1"
  4851. },
  4852. "dist": {
  4853. "type": "zip",
  4854. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.1.zip",
  4855. "reference": "8.x-3.1",
  4856. "shasum": "8a719eaea594f0ba874172831cb28da93c66b77a"
  4857. },
  4858. "require": {
  4859. "drupal/core": "^8.8 || ^9"
  4860. },
  4861. "require-dev": {
  4862. "drupal/jquery_ui_accordion": "^1.0"
  4863. },
  4864. "type": "drupal-module",
  4865. "extra": {
  4866. "drupal": {
  4867. "version": "8.x-3.1",
  4868. "datestamp": "1591772567",
  4869. "security-coverage": {
  4870. "status": "covered",
  4871. "message": "Covered by Drupal's security advisory policy"
  4872. }
  4873. }
  4874. },
  4875. "notification-url": "https://packages.drupal.org/8/downloads",
  4876. "license": [
  4877. "GPL-2.0-or-later"
  4878. ],
  4879. "authors": [
  4880. {
  4881. "name": "Hydra",
  4882. "homepage": "https://www.drupal.org/user/647364"
  4883. },
  4884. {
  4885. "name": "Stalski",
  4886. "homepage": "https://www.drupal.org/user/322618"
  4887. },
  4888. {
  4889. "name": "jyve",
  4890. "homepage": "https://www.drupal.org/user/591438"
  4891. },
  4892. {
  4893. "name": "nils.destoop",
  4894. "homepage": "https://www.drupal.org/user/361625"
  4895. },
  4896. {
  4897. "name": "swentel",
  4898. "homepage": "https://www.drupal.org/user/107403"
  4899. }
  4900. ],
  4901. "description": "Provides the field_group module.",
  4902. "homepage": "https://www.drupal.org/project/field_group",
  4903. "support": {
  4904. "source": "https://git.drupalcode.org/project/field_group",
  4905. "issues": "https://www.drupal.org/project/issues/field_group"
  4906. }
  4907. },
  4908. {
  4909. "name": "drupal/file_mdm",
  4910. "version": "2.1.0",
  4911. "source": {
  4912. "type": "git",
  4913. "url": "https://git.drupalcode.org/project/file_mdm.git",
  4914. "reference": "8.x-2.1"
  4915. },
  4916. "dist": {
  4917. "type": "zip",
  4918. "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-2.1.zip",
  4919. "reference": "8.x-2.1",
  4920. "shasum": "5c3d75622299ebddc0e8456bb08bb371da8771bd"
  4921. },
  4922. "require": {
  4923. "drupal/core": "^8.8 || ^9",
  4924. "lsolesen/pel": "^0.9.8",
  4925. "phenx/php-font-lib": "^0.5.2",
  4926. "php": ">=7"
  4927. },
  4928. "require-dev": {
  4929. "drupal/image_effects": "*"
  4930. },
  4931. "type": "drupal-module",
  4932. "extra": {
  4933. "drupal": {
  4934. "version": "8.x-2.1",
  4935. "datestamp": "1586801064",
  4936. "security-coverage": {
  4937. "status": "covered",
  4938. "message": "Covered by Drupal's security advisory policy"
  4939. }
  4940. }
  4941. },
  4942. "notification-url": "https://packages.drupal.org/8/downloads",
  4943. "license": [
  4944. "GPL-2.0-or-later"
  4945. ],
  4946. "authors": [
  4947. {
  4948. "name": "mondrake",
  4949. "homepage": "https://www.drupal.org/user/1307444"
  4950. }
  4951. ],
  4952. "description": "Provides a service to manage file metadata.",
  4953. "homepage": "https://www.drupal.org/project/file_mdm",
  4954. "support": {
  4955. "source": "https://git.drupalcode.org/project/file_mdm"
  4956. }
  4957. },
  4958. {
  4959. "name": "drupal/filefield_sources",
  4960. "version": "dev-1.x",
  4961. "source": {
  4962. "type": "git",
  4963. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  4964. "reference": "bbcd869d2d3430235ec88b06b4dacaae1a9256d5"
  4965. },
  4966. "require": {
  4967. "drupal/core": "^8 || ^9"
  4968. },
  4969. "require-dev": {
  4970. "drupal/imce": "^2.3"
  4971. },
  4972. "type": "drupal-module",
  4973. "extra": {
  4974. "branch-alias": {
  4975. "dev-1.x": "1.x-dev"
  4976. },
  4977. "drupal": {
  4978. "version": "8.x-1.0-alpha4+2-dev",
  4979. "datestamp": "1610733921",
  4980. "security-coverage": {
  4981. "status": "not-covered",
  4982. "message": "Dev releases are not covered by Drupal security advisories."
  4983. }
  4984. }
  4985. },
  4986. "notification-url": "https://packages.drupal.org/8/downloads",
  4987. "license": [
  4988. "GPL-2.0-or-later"
  4989. ],
  4990. "authors": [
  4991. {
  4992. "name": "Nate Lampton (quicksketch)",
  4993. "homepage": "https://www.drupal.org/u/quicksketch",
  4994. "role": "Maintainer"
  4995. },
  4996. {
  4997. "name": "Andrey Khromyshev (profak)",
  4998. "homepage": "https://www.drupal.org/u/profak",
  4999. "role": "Maintainer"
  5000. },
  5001. {
  5002. "name": "David Valdez (gnuget)",
  5003. "homepage": "https://www.drupal.org/u/gnuget",
  5004. "role": "Maintainer"
  5005. }
  5006. ],
  5007. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  5008. "homepage": "https://www.drupal.org/project/filefield_sources",
  5009. "support": {
  5010. "source": "https://git.drupalcode.org/project/filefield_sources",
  5011. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  5012. "irc": "irc://irc.freenode.org/drupal-contribute"
  5013. },
  5014. "time": "2021-01-15T18:15:00+00:00"
  5015. },
  5016. {
  5017. "name": "drupal/filter_perms",
  5018. "version": "dev-1.x",
  5019. "source": {
  5020. "type": "git",
  5021. "url": "https://git.drupalcode.org/project/filter_perms.git",
  5022. "reference": "f9abe65da2236de801902256f8388291bc3d2c83"
  5023. },
  5024. "require": {
  5025. "drupal/core": "^8 || ^9"
  5026. },
  5027. "type": "drupal-module",
  5028. "extra": {
  5029. "branch-alias": {
  5030. "dev-1.x": "1.x-dev"
  5031. },
  5032. "drupal": {
  5033. "version": "8.x-1.0-alpha1+2-dev",
  5034. "datestamp": "1599239698",
  5035. "security-coverage": {
  5036. "status": "not-covered",
  5037. "message": "Dev releases are not covered by Drupal security advisories."
  5038. }
  5039. }
  5040. },
  5041. "notification-url": "https://packages.drupal.org/8/downloads",
  5042. "license": [
  5043. "GPL-2.0-or-later"
  5044. ],
  5045. "authors": [
  5046. {
  5047. "name": "cYu",
  5048. "homepage": "https://www.drupal.org/user/202205"
  5049. },
  5050. {
  5051. "name": "deekayen",
  5052. "homepage": "https://www.drupal.org/user/972"
  5053. },
  5054. {
  5055. "name": "ivagold",
  5056. "homepage": "https://www.drupal.org/user/3061533"
  5057. },
  5058. {
  5059. "name": "mgbellaire",
  5060. "homepage": "https://www.drupal.org/user/1831932"
  5061. },
  5062. {
  5063. "name": "willzyx",
  5064. "homepage": "https://www.drupal.org/user/1043862"
  5065. }
  5066. ],
  5067. "description": "Provides role and module filters to simplify the user permissions page.",
  5068. "homepage": "https://www.drupal.org/project/filter_perms",
  5069. "support": {
  5070. "source": "https://git.drupalcode.org/project/filter_perms"
  5071. },
  5072. "time": "2020-11-17T18:20:11+00:00"
  5073. },
  5074. {
  5075. "name": "drupal/honeypot",
  5076. "version": "2.0.1",
  5077. "source": {
  5078. "type": "git",
  5079. "url": "https://git.drupalcode.org/project/honeypot.git",
  5080. "reference": "2.0.1"
  5081. },
  5082. "dist": {
  5083. "type": "zip",
  5084. "url": "https://ftp.drupal.org/files/projects/honeypot-2.0.1.zip",
  5085. "reference": "2.0.1",
  5086. "shasum": "c29d248c0fdcdf733a31b9214355acfa73716632"
  5087. },
  5088. "require": {
  5089. "drupal/core": "^8.0 || ^9.0"
  5090. },
  5091. "type": "drupal-module",
  5092. "extra": {
  5093. "drupal": {
  5094. "version": "2.0.1",
  5095. "datestamp": "1597855128",
  5096. "security-coverage": {
  5097. "status": "covered",
  5098. "message": "Covered by Drupal's security advisory policy"
  5099. }
  5100. }
  5101. },
  5102. "notification-url": "https://packages.drupal.org/8/downloads",
  5103. "license": [
  5104. "GPL-2.0-or-later"
  5105. ],
  5106. "authors": [
  5107. {
  5108. "name": "Jeff Geerling",
  5109. "homepage": "https://www.drupal.org/user/213194",
  5110. "email": "geerlingguy@mac.com"
  5111. },
  5112. {
  5113. "name": "geerlingguy",
  5114. "homepage": "https://www.drupal.org/user/389011"
  5115. },
  5116. {
  5117. "name": "vijaycs85",
  5118. "homepage": "https://www.drupal.org/user/93488"
  5119. }
  5120. ],
  5121. "description": "Mitigates spam form submissions using the honeypot method.",
  5122. "homepage": "https://www.drupal.org/project/honeypot",
  5123. "keywords": [
  5124. "deterrent",
  5125. "form",
  5126. "honeypot",
  5127. "honeytrap",
  5128. "php",
  5129. "spam"
  5130. ],
  5131. "support": {
  5132. "source": "https://git.drupalcode.org/project/honeypot",
  5133. "issues": "https://www.drupal.org/project/issues/honeypot"
  5134. }
  5135. },
  5136. {
  5137. "name": "drupal/imagemagick",
  5138. "version": "3.1.0",
  5139. "source": {
  5140. "type": "git",
  5141. "url": "https://git.drupalcode.org/project/imagemagick.git",
  5142. "reference": "8.x-3.1"
  5143. },
  5144. "dist": {
  5145. "type": "zip",
  5146. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-3.1.zip",
  5147. "reference": "8.x-3.1",
  5148. "shasum": "f427b06312325aa667c549fed261f73f29e231e7"
  5149. },
  5150. "require": {
  5151. "drupal/core": "^8.8 || ^9",
  5152. "drupal/file_mdm": "^2",
  5153. "drupal/sophron": "^1",
  5154. "php": ">=7"
  5155. },
  5156. "type": "drupal-module",
  5157. "extra": {
  5158. "drupal": {
  5159. "version": "8.x-3.1",
  5160. "datestamp": "1581420882",
  5161. "security-coverage": {
  5162. "status": "covered",
  5163. "message": "Covered by Drupal's security advisory policy"
  5164. }
  5165. }
  5166. },
  5167. "notification-url": "https://packages.drupal.org/8/downloads",
  5168. "license": [
  5169. "GPL-2.0-or-later"
  5170. ],
  5171. "authors": [
  5172. {
  5173. "name": "Chris Charlton",
  5174. "homepage": "https://www.drupal.org/user/17089"
  5175. },
  5176. {
  5177. "name": "chx",
  5178. "homepage": "https://www.drupal.org/user/9446"
  5179. },
  5180. {
  5181. "name": "claudiu.cristea",
  5182. "homepage": "https://www.drupal.org/user/56348"
  5183. },
  5184. {
  5185. "name": "dman",
  5186. "homepage": "https://www.drupal.org/user/33240"
  5187. },
  5188. {
  5189. "name": "dopry",
  5190. "homepage": "https://www.drupal.org/user/22202"
  5191. },
  5192. {
  5193. "name": "drewish",
  5194. "homepage": "https://www.drupal.org/user/34869"
  5195. },
  5196. {
  5197. "name": "gdl",
  5198. "homepage": "https://www.drupal.org/user/507326"
  5199. },
  5200. {
  5201. "name": "mondrake",
  5202. "homepage": "https://www.drupal.org/user/1307444"
  5203. },
  5204. {
  5205. "name": "quicksketch",
  5206. "homepage": "https://www.drupal.org/user/35821"
  5207. },
  5208. {
  5209. "name": "sun",
  5210. "homepage": "https://www.drupal.org/user/54136"
  5211. },
  5212. {
  5213. "name": "walkah",
  5214. "homepage": "https://www.drupal.org/user/1531"
  5215. }
  5216. ],
  5217. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  5218. "homepage": "https://www.drupal.org/project/imagemagick",
  5219. "support": {
  5220. "source": "https://git.drupalcode.org/project/imagemagick"
  5221. }
  5222. },
  5223. {
  5224. "name": "drupal/inline_entity_form",
  5225. "version": "1.0.0-rc8",
  5226. "source": {
  5227. "type": "git",
  5228. "url": "https://git.drupalcode.org/project/inline_entity_form.git",
  5229. "reference": "8.x-1.0-rc8"
  5230. },
  5231. "dist": {
  5232. "type": "zip",
  5233. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc8.zip",
  5234. "reference": "8.x-1.0-rc8",
  5235. "shasum": "103de382dd07b4acdd6bacd5ad76628fdf0eefda"
  5236. },
  5237. "require": {
  5238. "drupal/core": "^8.7.7 || ^9"
  5239. },
  5240. "require-dev": {
  5241. "drupal/entity_reference_revisions": "^1.0"
  5242. },
  5243. "type": "drupal-module",
  5244. "extra": {
  5245. "drupal": {
  5246. "version": "8.x-1.0-rc8",
  5247. "datestamp": "1602172716",
  5248. "security-coverage": {
  5249. "status": "not-covered",
  5250. "message": "RC releases are not covered by Drupal security advisories."
  5251. }
  5252. }
  5253. },
  5254. "notification-url": "https://packages.drupal.org/8/downloads",
  5255. "license": [
  5256. "GPL-2.0-or-later"
  5257. ],
  5258. "authors": [
  5259. {
  5260. "name": "bojanz",
  5261. "homepage": "https://www.drupal.org/user/86106"
  5262. },
  5263. {
  5264. "name": "dawehner",
  5265. "homepage": "https://www.drupal.org/user/99340"
  5266. },
  5267. {
  5268. "name": "geek-merlin",
  5269. "homepage": "https://www.drupal.org/user/229048"
  5270. },
  5271. {
  5272. "name": "joachim",
  5273. "homepage": "https://www.drupal.org/user/107701"
  5274. },
  5275. {
  5276. "name": "jsacksick",
  5277. "homepage": "https://www.drupal.org/user/972218"
  5278. },
  5279. {
  5280. "name": "kaythay",
  5281. "homepage": "https://www.drupal.org/user/2182186"
  5282. },
  5283. {
  5284. "name": "oknate",
  5285. "homepage": "https://www.drupal.org/user/471638"
  5286. },
  5287. {
  5288. "name": "rszrama",
  5289. "homepage": "https://www.drupal.org/user/49344"
  5290. },
  5291. {
  5292. "name": "slashrsm",
  5293. "homepage": "https://www.drupal.org/user/744628"
  5294. },
  5295. {
  5296. "name": "webflo",
  5297. "homepage": "https://www.drupal.org/user/254778"
  5298. }
  5299. ],
  5300. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  5301. "homepage": "https://www.drupal.org/project/inline_entity_form",
  5302. "support": {
  5303. "source": "https://git.drupalcode.org/project/inline_entity_form"
  5304. }
  5305. },
  5306. {
  5307. "name": "drupal/jquery_ui",
  5308. "version": "1.4.0",
  5309. "source": {
  5310. "type": "git",
  5311. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  5312. "reference": "8.x-1.4"
  5313. },
  5314. "dist": {
  5315. "type": "zip",
  5316. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.4.zip",
  5317. "reference": "8.x-1.4",
  5318. "shasum": "64c19ecc8902e2b4b1ab0cc5f5fe28dbc83bfebe"
  5319. },
  5320. "require": {
  5321. "drupal/core": "^8 || ^9"
  5322. },
  5323. "type": "drupal-module",
  5324. "extra": {
  5325. "drupal": {
  5326. "version": "8.x-1.4",
  5327. "datestamp": "1582149957",
  5328. "security-coverage": {
  5329. "status": "covered",
  5330. "message": "Covered by Drupal's security advisory policy"
  5331. }
  5332. }
  5333. },
  5334. "notification-url": "https://packages.drupal.org/8/downloads",
  5335. "license": [
  5336. "GPL-2.0-or-later"
  5337. ],
  5338. "authors": [
  5339. {
  5340. "name": "RobLoach",
  5341. "homepage": "https://www.drupal.org/user/61114"
  5342. },
  5343. {
  5344. "name": "jjeff",
  5345. "homepage": "https://www.drupal.org/user/17190"
  5346. },
  5347. {
  5348. "name": "lauriii",
  5349. "homepage": "https://www.drupal.org/user/1078742"
  5350. },
  5351. {
  5352. "name": "litwol",
  5353. "homepage": "https://www.drupal.org/user/78134"
  5354. },
  5355. {
  5356. "name": "mfb",
  5357. "homepage": "https://www.drupal.org/user/12302"
  5358. },
  5359. {
  5360. "name": "mfer",
  5361. "homepage": "https://www.drupal.org/user/25701"
  5362. },
  5363. {
  5364. "name": "mikelutz",
  5365. "homepage": "https://www.drupal.org/user/2972409"
  5366. },
  5367. {
  5368. "name": "sun",
  5369. "homepage": "https://www.drupal.org/user/54136"
  5370. },
  5371. {
  5372. "name": "webchick",
  5373. "homepage": "https://www.drupal.org/user/24967"
  5374. },
  5375. {
  5376. "name": "zrpnr",
  5377. "homepage": "https://www.drupal.org/user/1448368"
  5378. }
  5379. ],
  5380. "description": "Provides jQuery UI library.",
  5381. "homepage": "https://www.drupal.org/project/jquery_ui",
  5382. "support": {
  5383. "source": "https://git.drupalcode.org/project/jquery_ui"
  5384. }
  5385. },
  5386. {
  5387. "name": "drupal/jquery_ui_button",
  5388. "version": "1.1.0",
  5389. "source": {
  5390. "type": "git",
  5391. "url": "https://git.drupalcode.org/project/jquery_ui_button.git",
  5392. "reference": "8.x-1.1"
  5393. },
  5394. "dist": {
  5395. "type": "zip",
  5396. "url": "https://ftp.drupal.org/files/projects/jquery_ui_button-8.x-1.1.zip",
  5397. "reference": "8.x-1.1",
  5398. "shasum": "70175a96c9034cc1cb2f28c415b2a9828355cc1a"
  5399. },
  5400. "require": {
  5401. "drupal/core": "^8 || ^9",
  5402. "drupal/jquery_ui": "*",
  5403. "drupal/jquery_ui_checkboxradio": "*",
  5404. "drupal/jquery_ui_controlgroup": "*"
  5405. },
  5406. "type": "drupal-module",
  5407. "extra": {
  5408. "drupal": {
  5409. "version": "8.x-1.1",
  5410. "datestamp": "1584106807",
  5411. "security-coverage": {
  5412. "status": "covered",
  5413. "message": "Covered by Drupal's security advisory policy"
  5414. }
  5415. }
  5416. },
  5417. "notification-url": "https://packages.drupal.org/8/downloads",
  5418. "license": [
  5419. "GPL-2.0-or-later"
  5420. ],
  5421. "authors": [
  5422. {
  5423. "name": "bnjmnm",
  5424. "homepage": "https://www.drupal.org/user/2369194"
  5425. },
  5426. {
  5427. "name": "lauriii",
  5428. "homepage": "https://www.drupal.org/user/1078742"
  5429. },
  5430. {
  5431. "name": "zrpnr",
  5432. "homepage": "https://www.drupal.org/user/1448368"
  5433. }
  5434. ],
  5435. "description": "Provides jQuery UI Button library.",
  5436. "homepage": "https://www.drupal.org/project/jquery_ui_button",
  5437. "support": {
  5438. "source": "https://git.drupalcode.org/project/jquery_ui_button"
  5439. }
  5440. },
  5441. {
  5442. "name": "drupal/jquery_ui_checkboxradio",
  5443. "version": "1.2.0",
  5444. "source": {
  5445. "type": "git",
  5446. "url": "https://git.drupalcode.org/project/jquery_ui_checkboxradio.git",
  5447. "reference": "8.x-1.2"
  5448. },
  5449. "dist": {
  5450. "type": "zip",
  5451. "url": "https://ftp.drupal.org/files/projects/jquery_ui_checkboxradio-8.x-1.2.zip",
  5452. "reference": "8.x-1.2",
  5453. "shasum": "8edb088cb89f4a0f95aa9d43894bf506dc5f6fe1"
  5454. },
  5455. "require": {
  5456. "drupal/core": "^8 || ^9",
  5457. "drupal/jquery_ui": "*"
  5458. },
  5459. "type": "drupal-module",
  5460. "extra": {
  5461. "drupal": {
  5462. "version": "8.x-1.2",
  5463. "datestamp": "1584106406",
  5464. "security-coverage": {
  5465. "status": "covered",
  5466. "message": "Covered by Drupal's security advisory policy"
  5467. }
  5468. }
  5469. },
  5470. "notification-url": "https://packages.drupal.org/8/downloads",
  5471. "license": [
  5472. "GPL-2.0-or-later"
  5473. ],
  5474. "authors": [
  5475. {
  5476. "name": "bnjmnm",
  5477. "homepage": "https://www.drupal.org/user/2369194"
  5478. },
  5479. {
  5480. "name": "lauriii",
  5481. "homepage": "https://www.drupal.org/user/1078742"
  5482. },
  5483. {
  5484. "name": "zrpnr",
  5485. "homepage": "https://www.drupal.org/user/1448368"
  5486. }
  5487. ],
  5488. "description": "Provides jQuery UI Checkboxradio library.",
  5489. "homepage": "https://www.drupal.org/project/jquery_ui_checkboxradio",
  5490. "support": {
  5491. "source": "https://git.drupalcode.org/project/jquery_ui_checkboxradio"
  5492. }
  5493. },
  5494. {
  5495. "name": "drupal/jquery_ui_controlgroup",
  5496. "version": "1.1.0",
  5497. "source": {
  5498. "type": "git",
  5499. "url": "https://git.drupalcode.org/project/jquery_ui_controlgroup.git",
  5500. "reference": "8.x-1.1"
  5501. },
  5502. "dist": {
  5503. "type": "zip",
  5504. "url": "https://ftp.drupal.org/files/projects/jquery_ui_controlgroup-8.x-1.1.zip",
  5505. "reference": "8.x-1.1",
  5506. "shasum": "ddbd4f01df4e3c9566aa76ba256217a27f45f48a"
  5507. },
  5508. "require": {
  5509. "drupal/core": "^8 || ^9",
  5510. "drupal/jquery_ui": "*"
  5511. },
  5512. "type": "drupal-module",
  5513. "extra": {
  5514. "drupal": {
  5515. "version": "8.x-1.1",
  5516. "datestamp": "1584106616",
  5517. "security-coverage": {
  5518. "status": "covered",
  5519. "message": "Covered by Drupal's security advisory policy"
  5520. }
  5521. }
  5522. },
  5523. "notification-url": "https://packages.drupal.org/8/downloads",
  5524. "license": [
  5525. "GPL-2.0-or-later"
  5526. ],
  5527. "authors": [
  5528. {
  5529. "name": "bnjmnm",
  5530. "homepage": "https://www.drupal.org/user/2369194"
  5531. },
  5532. {
  5533. "name": "lauriii",
  5534. "homepage": "https://www.drupal.org/user/1078742"
  5535. },
  5536. {
  5537. "name": "zrpnr",
  5538. "homepage": "https://www.drupal.org/user/1448368"
  5539. }
  5540. ],
  5541. "description": "Provides jQuery UI Controlgroup library.",
  5542. "homepage": "https://www.drupal.org/project/jquery_ui_controlgroup",
  5543. "support": {
  5544. "source": "https://git.drupalcode.org/project/jquery_ui_controlgroup"
  5545. }
  5546. },
  5547. {
  5548. "name": "drupal/jquery_ui_datepicker",
  5549. "version": "1.0.0",
  5550. "source": {
  5551. "type": "git",
  5552. "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
  5553. "reference": "8.x-1.0"
  5554. },
  5555. "dist": {
  5556. "type": "zip",
  5557. "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-8.x-1.0.zip",
  5558. "reference": "8.x-1.0",
  5559. "shasum": "954f12f93e82b6c93e6797fe2e6e66604ad1d2b2"
  5560. },
  5561. "require": {
  5562. "drupal/core": "^8 || ^9",
  5563. "drupal/jquery_ui": "*"
  5564. },
  5565. "type": "drupal-module",
  5566. "extra": {
  5567. "drupal": {
  5568. "version": "8.x-1.0",
  5569. "datestamp": "1589684301",
  5570. "security-coverage": {
  5571. "status": "covered",
  5572. "message": "Covered by Drupal's security advisory policy"
  5573. }
  5574. }
  5575. },
  5576. "notification-url": "https://packages.drupal.org/8/downloads",
  5577. "license": [
  5578. "GPL-2.0-or-later"
  5579. ],
  5580. "authors": [
  5581. {
  5582. "name": "jrockowitz",
  5583. "homepage": "https://www.drupal.org/user/371407"
  5584. },
  5585. {
  5586. "name": "zrpnr",
  5587. "homepage": "https://www.drupal.org/user/1448368"
  5588. }
  5589. ],
  5590. "description": "Provides jQuery UI Datepicker library.",
  5591. "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
  5592. "support": {
  5593. "source": "https://git.drupalcode.org/project/jquery_ui_datepicker"
  5594. }
  5595. },
  5596. {
  5597. "name": "drupal/jquery_ui_slider",
  5598. "version": "1.1.0",
  5599. "source": {
  5600. "type": "git",
  5601. "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
  5602. "reference": "8.x-1.1"
  5603. },
  5604. "dist": {
  5605. "type": "zip",
  5606. "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-8.x-1.1.zip",
  5607. "reference": "8.x-1.1",
  5608. "shasum": "79b90cf60d45fc33ffdaa84bb2d6563f78a7d3d1"
  5609. },
  5610. "require": {
  5611. "drupal/core": "^8 || ^9",
  5612. "drupal/jquery_ui": "*"
  5613. },
  5614. "type": "drupal-module",
  5615. "extra": {
  5616. "drupal": {
  5617. "version": "8.x-1.1",
  5618. "datestamp": "1584107817",
  5619. "security-coverage": {
  5620. "status": "covered",
  5621. "message": "Covered by Drupal's security advisory policy"
  5622. }
  5623. }
  5624. },
  5625. "notification-url": "https://packages.drupal.org/8/downloads",
  5626. "license": [
  5627. "GPL-2.0-or-later"
  5628. ],
  5629. "authors": [
  5630. {
  5631. "name": "bnjmnm",
  5632. "homepage": "https://www.drupal.org/user/2369194"
  5633. },
  5634. {
  5635. "name": "lauriii",
  5636. "homepage": "https://www.drupal.org/user/1078742"
  5637. },
  5638. {
  5639. "name": "zrpnr",
  5640. "homepage": "https://www.drupal.org/user/1448368"
  5641. }
  5642. ],
  5643. "description": "Provides jQuery UI Slider library.",
  5644. "homepage": "https://www.drupal.org/project/jquery_ui_slider",
  5645. "support": {
  5646. "source": "https://git.drupalcode.org/project/jquery_ui_slider"
  5647. }
  5648. },
  5649. {
  5650. "name": "drupal/jquery_ui_touch_punch",
  5651. "version": "1.0.0",
  5652. "source": {
  5653. "type": "git",
  5654. "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
  5655. "reference": "1.0.0"
  5656. },
  5657. "dist": {
  5658. "type": "zip",
  5659. "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.0.0.zip",
  5660. "reference": "1.0.0",
  5661. "shasum": "8444a0ed897ba3d8e8876a9602ec8b3dca678cd1"
  5662. },
  5663. "require": {
  5664. "drupal/core": "^8 || ^9",
  5665. "drupal/jquery_ui": "^1.0"
  5666. },
  5667. "suggest": {
  5668. "furf/jquery-ui-touch-punch": "Required to use drupal/jquery_ui_touch_punch module."
  5669. },
  5670. "type": "drupal-module",
  5671. "extra": {
  5672. "drupal": {
  5673. "version": "1.0.0",
  5674. "datestamp": "1591893292",
  5675. "security-coverage": {
  5676. "status": "not-covered",
  5677. "message": "Project has not opted into security advisory coverage!"
  5678. }
  5679. }
  5680. },
  5681. "notification-url": "https://packages.drupal.org/8/downloads",
  5682. "license": [
  5683. "GPL-2.0+"
  5684. ],
  5685. "authors": [
  5686. {
  5687. "name": "Naveen Valecha",
  5688. "homepage": "https://drupal.org/u/naveenvalecha",
  5689. "role": "Maintainer"
  5690. }
  5691. ],
  5692. "description": "Provides jQuery UI Touch Punch library.",
  5693. "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5694. "keywords": [
  5695. "Drupal",
  5696. "jquery_ui_touch_punch"
  5697. ],
  5698. "support": {
  5699. "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5700. "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch",
  5701. "irc": "irc://irc.freenode.org/drupal-contribute"
  5702. }
  5703. },
  5704. {
  5705. "name": "drupal/link_attributes",
  5706. "version": "1.11.0",
  5707. "source": {
  5708. "type": "git",
  5709. "url": "https://git.drupalcode.org/project/link_attributes.git",
  5710. "reference": "8.x-1.11"
  5711. },
  5712. "dist": {
  5713. "type": "zip",
  5714. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.11.zip",
  5715. "reference": "8.x-1.11",
  5716. "shasum": "ca8c7e71c38350e3784dc3d1f779d700f55df818"
  5717. },
  5718. "require": {
  5719. "drupal/core": "^8 || ^9"
  5720. },
  5721. "type": "drupal-module",
  5722. "extra": {
  5723. "drupal": {
  5724. "version": "8.x-1.11",
  5725. "datestamp": "1598323550",
  5726. "security-coverage": {
  5727. "status": "covered",
  5728. "message": "Covered by Drupal's security advisory policy"
  5729. }
  5730. }
  5731. },
  5732. "notification-url": "https://packages.drupal.org/8/downloads",
  5733. "license": [
  5734. "GPL-2.0-or-later"
  5735. ],
  5736. "authors": [
  5737. {
  5738. "name": "larowlan",
  5739. "homepage": "https://www.drupal.org/user/395439"
  5740. }
  5741. ],
  5742. "description": "Provides a widget to allow settings of link attributes for menu links.",
  5743. "homepage": "https://www.drupal.org/project/link_attributes",
  5744. "support": {
  5745. "source": "https://git.drupalcode.org/project/link_attributes"
  5746. }
  5747. },
  5748. {
  5749. "name": "drupal/linkit",
  5750. "version": "5.0.0-beta12",
  5751. "source": {
  5752. "type": "git",
  5753. "url": "https://git.drupalcode.org/project/linkit.git",
  5754. "reference": "8.x-5.0-beta12"
  5755. },
  5756. "dist": {
  5757. "type": "zip",
  5758. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta12.zip",
  5759. "reference": "8.x-5.0-beta12",
  5760. "shasum": "9e03975b476f893112d8b12d8b8610926a4e7f2c"
  5761. },
  5762. "require": {
  5763. "drupal/core": "^8.7.7 || ^9"
  5764. },
  5765. "require-dev": {
  5766. "drupal/imce": "*"
  5767. },
  5768. "type": "drupal-module",
  5769. "extra": {
  5770. "drupal": {
  5771. "version": "8.x-5.0-beta12",
  5772. "datestamp": "1608957625",
  5773. "security-coverage": {
  5774. "status": "not-covered",
  5775. "message": "Beta releases are not covered by Drupal security advisories."
  5776. }
  5777. }
  5778. },
  5779. "notification-url": "https://packages.drupal.org/8/downloads",
  5780. "license": [
  5781. "GPL-2.0-or-later"
  5782. ],
  5783. "authors": [
  5784. {
  5785. "name": "Emil Stjerneman",
  5786. "homepage": "https://stjerneman.com",
  5787. "email": "emil@stjerneman.com",
  5788. "role": "Maintainer"
  5789. }
  5790. ],
  5791. "description": "Linkit - Enriched linking experience",
  5792. "homepage": "http://drupal.org/project/linkit",
  5793. "support": {
  5794. "source": "http://cgit.drupalcode.org/linkit",
  5795. "issues": "http://drupal.org/project/linkit"
  5796. }
  5797. },
  5798. {
  5799. "name": "drupal/login_destination",
  5800. "version": "dev-2.x",
  5801. "source": {
  5802. "type": "git",
  5803. "url": "https://git.drupalcode.org/project/login_destination.git",
  5804. "reference": "0a2c46abd451b4c83e2f5a50cb791e68b141a8ab"
  5805. },
  5806. "require": {
  5807. "drupal/core": "^8.7.10 || ^9"
  5808. },
  5809. "require-dev": {
  5810. "drupal/admin_toolbar": "^1.23",
  5811. "drupal/admin_toolbar_tools": "*"
  5812. },
  5813. "type": "drupal-module",
  5814. "extra": {
  5815. "branch-alias": {
  5816. "dev-2.x": "2.x-dev"
  5817. },
  5818. "drupal": {
  5819. "version": "8.x-2.0-alpha3+8-dev",
  5820. "datestamp": "1603450565",
  5821. "security-coverage": {
  5822. "status": "not-covered",
  5823. "message": "Dev releases are not covered by Drupal security advisories."
  5824. }
  5825. }
  5826. },
  5827. "notification-url": "https://packages.drupal.org/8/downloads",
  5828. "license": [
  5829. "GPL-2.0-or-later"
  5830. ],
  5831. "authors": [
  5832. {
  5833. "name": "3CWebDev",
  5834. "homepage": "https://www.drupal.org/user/61221"
  5835. },
  5836. {
  5837. "name": "Oliver Huynh",
  5838. "homepage": "https://www.drupal.org/user/243730"
  5839. },
  5840. {
  5841. "name": "beautifulmind",
  5842. "homepage": "https://www.drupal.org/user/219482"
  5843. },
  5844. {
  5845. "name": "ddrozdik",
  5846. "homepage": "https://www.drupal.org/user/574124"
  5847. },
  5848. {
  5849. "name": "jng12",
  5850. "homepage": "https://www.drupal.org/user/204316"
  5851. },
  5852. {
  5853. "name": "marcp",
  5854. "homepage": "https://www.drupal.org/user/20885"
  5855. },
  5856. {
  5857. "name": "mithy",
  5858. "homepage": "https://www.drupal.org/user/258911"
  5859. },
  5860. {
  5861. "name": "moshe weitzman",
  5862. "homepage": "https://www.drupal.org/user/23"
  5863. },
  5864. {
  5865. "name": "perennial.sky",
  5866. "homepage": "https://www.drupal.org/user/2622667"
  5867. },
  5868. {
  5869. "name": "rsvelko",
  5870. "homepage": "https://www.drupal.org/user/337401"
  5871. }
  5872. ],
  5873. "description": "The Login Destination module add possibility customize the destination that the user is redirected to after login.",
  5874. "homepage": "https://www.drupal.org/project/login_destination",
  5875. "support": {
  5876. "source": "https://git.drupalcode.org/project/login_destination"
  5877. },
  5878. "time": "2020-10-23T10:55:36+00:00"
  5879. },
  5880. {
  5881. "name": "drupal/maillog",
  5882. "version": "dev-1.x",
  5883. "source": {
  5884. "type": "git",
  5885. "url": "https://git.drupalcode.org/project/maillog.git",
  5886. "reference": "053d0b4a53aea4f848be75b02fc8974bb7b053b3"
  5887. },
  5888. "require": {
  5889. "drupal/core": "^8 || ^9"
  5890. },
  5891. "type": "drupal-module",
  5892. "extra": {
  5893. "branch-alias": {
  5894. "dev-1.x": "1.x-dev"
  5895. },
  5896. "drupal": {
  5897. "version": "8.x-1.0-beta1+0-dev",
  5898. "datestamp": "1600799873",
  5899. "security-coverage": {
  5900. "status": "not-covered",
  5901. "message": "Dev releases are not covered by Drupal security advisories."
  5902. }
  5903. }
  5904. },
  5905. "notification-url": "https://packages.drupal.org/8/downloads",
  5906. "license": [
  5907. "GPL-2.0-or-later"
  5908. ],
  5909. "authors": [
  5910. {
  5911. "name": "Berdir",
  5912. "homepage": "https://www.drupal.org/user/214652"
  5913. },
  5914. {
  5915. "name": "DamienMcKenna",
  5916. "homepage": "https://www.drupal.org/user/108450"
  5917. },
  5918. {
  5919. "name": "miro_dietiker",
  5920. "homepage": "https://www.drupal.org/user/227761"
  5921. },
  5922. {
  5923. "name": "pluess",
  5924. "homepage": "https://www.drupal.org/user/84659"
  5925. }
  5926. ],
  5927. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  5928. "homepage": "https://www.drupal.org/project/maillog",
  5929. "support": {
  5930. "source": "https://git.drupalcode.org/project/maillog"
  5931. },
  5932. "time": "2020-09-22T18:37:31+00:00"
  5933. },
  5934. {
  5935. "name": "drupal/mailsystem",
  5936. "version": "4.3.0",
  5937. "source": {
  5938. "type": "git",
  5939. "url": "https://git.drupalcode.org/project/mailsystem.git",
  5940. "reference": "8.x-4.3"
  5941. },
  5942. "dist": {
  5943. "type": "zip",
  5944. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.3.zip",
  5945. "reference": "8.x-4.3",
  5946. "shasum": "1a74016e268ff207535be5d5e42ac8f72ac89050"
  5947. },
  5948. "require": {
  5949. "drupal/core": "^8.7.7 || ^9"
  5950. },
  5951. "type": "drupal-module",
  5952. "extra": {
  5953. "drupal": {
  5954. "version": "8.x-4.3",
  5955. "datestamp": "1586203024",
  5956. "security-coverage": {
  5957. "status": "covered",
  5958. "message": "Covered by Drupal's security advisory policy"
  5959. }
  5960. }
  5961. },
  5962. "notification-url": "https://packages.drupal.org/8/downloads",
  5963. "license": [
  5964. "GPL-2.0+"
  5965. ],
  5966. "authors": [
  5967. {
  5968. "name": "Berdir",
  5969. "homepage": "https://www.drupal.org/user/214652"
  5970. },
  5971. {
  5972. "name": "Les Lim",
  5973. "homepage": "https://www.drupal.org/user/84263"
  5974. },
  5975. {
  5976. "name": "Manuel Garcia",
  5977. "homepage": "https://www.drupal.org/user/213194"
  5978. },
  5979. {
  5980. "name": "Nafes",
  5981. "homepage": "https://www.drupal.org/user/2489926"
  5982. },
  5983. {
  5984. "name": "miro_dietiker",
  5985. "homepage": "https://www.drupal.org/user/227761"
  5986. },
  5987. {
  5988. "name": "pillarsdotnet",
  5989. "homepage": "https://www.drupal.org/user/36148"
  5990. }
  5991. ],
  5992. "description": "Mail System",
  5993. "homepage": "https://www.drupal.org/project/mailsystem",
  5994. "support": {
  5995. "source": "https://git.drupalcode.org/project/mailsystem"
  5996. }
  5997. },
  5998. {
  5999. "name": "drupal/matomo",
  6000. "version": "1.11.0",
  6001. "source": {
  6002. "type": "git",
  6003. "url": "https://git.drupalcode.org/project/matomo.git",
  6004. "reference": "8.x-1.11"
  6005. },
  6006. "dist": {
  6007. "type": "zip",
  6008. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.11.zip",
  6009. "reference": "8.x-1.11",
  6010. "shasum": "82be96c20ab15df03d199ab98d047cef6e67d40b"
  6011. },
  6012. "require": {
  6013. "drupal/core": "^8 || ^9"
  6014. },
  6015. "require-dev": {
  6016. "drupal/php": "*",
  6017. "drupal/token": "*"
  6018. },
  6019. "type": "drupal-module",
  6020. "extra": {
  6021. "drupal": {
  6022. "version": "8.x-1.11",
  6023. "datestamp": "1601651459",
  6024. "security-coverage": {
  6025. "status": "covered",
  6026. "message": "Covered by Drupal's security advisory policy"
  6027. }
  6028. }
  6029. },
  6030. "notification-url": "https://packages.drupal.org/8/downloads",
  6031. "license": [
  6032. "GPL-2.0-or-later"
  6033. ],
  6034. "authors": [
  6035. {
  6036. "name": "Carsten Logemann",
  6037. "homepage": "https://www.drupal.org/u/C_Logemann"
  6038. },
  6039. {
  6040. "name": "Shelane French",
  6041. "homepage": "https://www.drupal.org/u/shelane"
  6042. },
  6043. {
  6044. "name": "See other contributors",
  6045. "homepage": "https://www.drupal.org/node/247808/committers"
  6046. }
  6047. ],
  6048. "description": "Adds Matomo javascript tracking code to all your site's pages",
  6049. "homepage": "https://www.drupal.org/project/matomo",
  6050. "support": {
  6051. "source": "https://git.drupal.org/project/matomo.git",
  6052. "issues": "https://www.drupal.org/project/issues/matomo"
  6053. }
  6054. },
  6055. {
  6056. "name": "drupal/maxlength",
  6057. "version": "1.0.0-rc1",
  6058. "source": {
  6059. "type": "git",
  6060. "url": "https://git.drupalcode.org/project/maxlength.git",
  6061. "reference": "8.x-1.0-rc1"
  6062. },
  6063. "dist": {
  6064. "type": "zip",
  6065. "url": "https://ftp.drupal.org/files/projects/maxlength-8.x-1.0-rc1.zip",
  6066. "reference": "8.x-1.0-rc1",
  6067. "shasum": "44eb9d79d9814cd786c2c9874c28033759665a99"
  6068. },
  6069. "require": {
  6070. "drupal/core": "^8.8 || ^9"
  6071. },
  6072. "type": "drupal-module",
  6073. "extra": {
  6074. "drupal": {
  6075. "version": "8.x-1.0-rc1",
  6076. "datestamp": "1593198218",
  6077. "security-coverage": {
  6078. "status": "not-covered",
  6079. "message": "RC releases are not covered by Drupal security advisories."
  6080. }
  6081. }
  6082. },
  6083. "notification-url": "https://packages.drupal.org/8/downloads",
  6084. "license": [
  6085. "GPL-2.0-or-later"
  6086. ],
  6087. "authors": [
  6088. {
  6089. "name": "Aron Novak",
  6090. "homepage": "https://www.drupal.org/user/61864"
  6091. },
  6092. {
  6093. "name": "Schnitzel",
  6094. "homepage": "https://www.drupal.org/user/643820"
  6095. },
  6096. {
  6097. "name": "a_c_m",
  6098. "homepage": "https://www.drupal.org/user/195063"
  6099. },
  6100. {
  6101. "name": "barneytech",
  6102. "homepage": "https://www.drupal.org/user/669922"
  6103. },
  6104. {
  6105. "name": "claudiu_cristea",
  6106. "homepage": "https://www.drupal.org/user/2623935"
  6107. },
  6108. {
  6109. "name": "dawehner",
  6110. "homepage": "https://www.drupal.org/user/99340"
  6111. },
  6112. {
  6113. "name": "derhasi",
  6114. "homepage": "https://www.drupal.org/user/83474"
  6115. },
  6116. {
  6117. "name": "frjo",
  6118. "homepage": "https://www.drupal.org/user/5546"
  6119. },
  6120. {
  6121. "name": "hefox",
  6122. "homepage": "https://www.drupal.org/user/426416"
  6123. },
  6124. {
  6125. "name": "jm.federico",
  6126. "homepage": "https://www.drupal.org/user/509892"
  6127. },
  6128. {
  6129. "name": "k4v",
  6130. "homepage": "https://www.drupal.org/user/744246"
  6131. },
  6132. {
  6133. "name": "mariano73",
  6134. "homepage": "https://www.drupal.org/user/1324866"
  6135. },
  6136. {
  6137. "name": "mariuss",
  6138. "homepage": "https://www.drupal.org/user/28539"
  6139. },
  6140. {
  6141. "name": "sanduhrs",
  6142. "homepage": "https://www.drupal.org/user/28074"
  6143. },
  6144. {
  6145. "name": "vasi1186",
  6146. "homepage": "https://www.drupal.org/user/342104"
  6147. },
  6148. {
  6149. "name": "webiator GmbH",
  6150. "homepage": "https://www.drupal.org/user/2390554"
  6151. }
  6152. ],
  6153. "description": "Limit the number of characters in textfields and textareas and shows the amount of characters left.",
  6154. "homepage": "https://www.drupal.org/project/maxlength",
  6155. "support": {
  6156. "source": "https://git.drupalcode.org/project/maxlength"
  6157. }
  6158. },
  6159. {
  6160. "name": "drupal/menu_admin_per_menu",
  6161. "version": "1.3.0",
  6162. "source": {
  6163. "type": "git",
  6164. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  6165. "reference": "8.x-1.3"
  6166. },
  6167. "dist": {
  6168. "type": "zip",
  6169. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.3.zip",
  6170. "reference": "8.x-1.3",
  6171. "shasum": "cb967bdd9ca6f5692d670d5c7c8d77587e7fd38c"
  6172. },
  6173. "require": {
  6174. "drupal/core": "^8 || ^9"
  6175. },
  6176. "type": "drupal-module",
  6177. "extra": {
  6178. "drupal": {
  6179. "version": "8.x-1.3",
  6180. "datestamp": "1593436060",
  6181. "security-coverage": {
  6182. "status": "covered",
  6183. "message": "Covered by Drupal's security advisory policy"
  6184. }
  6185. }
  6186. },
  6187. "notification-url": "https://packages.drupal.org/8/downloads",
  6188. "license": [
  6189. "GPL-2.0-or-later"
  6190. ],
  6191. "authors": [
  6192. {
  6193. "name": "JeroenT",
  6194. "homepage": "https://www.drupal.org/user/2228934"
  6195. },
  6196. {
  6197. "name": "anrikun",
  6198. "homepage": "https://www.drupal.org/user/410199"
  6199. },
  6200. {
  6201. "name": "jonas139",
  6202. "homepage": "https://www.drupal.org/user/2873401"
  6203. },
  6204. {
  6205. "name": "mkdok",
  6206. "homepage": "https://www.drupal.org/user/3308753"
  6207. }
  6208. ],
  6209. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  6210. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  6211. "support": {
  6212. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  6213. }
  6214. },
  6215. {
  6216. "name": "drupal/menu_block",
  6217. "version": "dev-1.x",
  6218. "source": {
  6219. "type": "git",
  6220. "url": "https://git.drupalcode.org/project/menu_block.git",
  6221. "reference": "17bc5a2094dec85a921fdac6aff0030bfe004744"
  6222. },
  6223. "require": {
  6224. "drupal/core": "^8 || ^9"
  6225. },
  6226. "type": "drupal-module",
  6227. "extra": {
  6228. "branch-alias": {
  6229. "dev-1.x": "1.x-dev"
  6230. },
  6231. "drupal": {
  6232. "version": "8.x-1.6+8-dev",
  6233. "datestamp": "1609550251",
  6234. "security-coverage": {
  6235. "status": "not-covered",
  6236. "message": "Dev releases are not covered by Drupal security advisories."
  6237. }
  6238. }
  6239. },
  6240. "notification-url": "https://packages.drupal.org/8/downloads",
  6241. "license": [
  6242. "GPL-2.0-or-later"
  6243. ],
  6244. "authors": [
  6245. {
  6246. "name": "Dave Reid",
  6247. "homepage": "https://www.drupal.org/user/53892"
  6248. },
  6249. {
  6250. "name": "JohnAlbin",
  6251. "homepage": "https://www.drupal.org/user/32095"
  6252. },
  6253. {
  6254. "name": "RenatoG",
  6255. "homepage": "https://www.drupal.org/user/3326031"
  6256. },
  6257. {
  6258. "name": "joelpittet",
  6259. "homepage": "https://www.drupal.org/user/160302"
  6260. },
  6261. {
  6262. "name": "kim.pepper",
  6263. "homepage": "https://www.drupal.org/user/370574"
  6264. },
  6265. {
  6266. "name": "rrrob",
  6267. "homepage": "https://www.drupal.org/user/273533"
  6268. }
  6269. ],
  6270. "description": "Provides configurable blocks of menu links.",
  6271. "homepage": "https://www.drupal.org/project/menu_block",
  6272. "support": {
  6273. "source": "https://git.drupalcode.org/project/menu_block"
  6274. },
  6275. "time": "2021-01-31T01:08:45+00:00"
  6276. },
  6277. {
  6278. "name": "drupal/menu_position",
  6279. "version": "dev-1.x",
  6280. "source": {
  6281. "type": "git",
  6282. "url": "https://git.drupalcode.org/project/menu_position.git",
  6283. "reference": "bce075f4ea167a851d7401602394de557b76c85f"
  6284. },
  6285. "require": {
  6286. "drupal/core": "^8 || ^9"
  6287. },
  6288. "type": "drupal-module",
  6289. "extra": {
  6290. "branch-alias": {
  6291. "dev-1.x": "1.x-dev"
  6292. },
  6293. "drupal": {
  6294. "version": "8.x-1.0-alpha4+4-dev",
  6295. "datestamp": "1587797468",
  6296. "security-coverage": {
  6297. "status": "not-covered",
  6298. "message": "Dev releases are not covered by Drupal security advisories."
  6299. }
  6300. }
  6301. },
  6302. "notification-url": "https://packages.drupal.org/8/downloads",
  6303. "license": [
  6304. "GPL-2.0+"
  6305. ],
  6306. "authors": [
  6307. {
  6308. "name": "BarisW",
  6309. "homepage": "https://www.drupal.org/user/107229"
  6310. },
  6311. {
  6312. "name": "JohnAlbin",
  6313. "homepage": "https://www.drupal.org/user/32095"
  6314. },
  6315. {
  6316. "name": "Sutharsan",
  6317. "homepage": "https://www.drupal.org/user/73854"
  6318. },
  6319. {
  6320. "name": "joelpittet",
  6321. "homepage": "https://www.drupal.org/user/160302"
  6322. },
  6323. {
  6324. "name": "lbainbridge",
  6325. "homepage": "https://www.drupal.org/user/2406996"
  6326. }
  6327. ],
  6328. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  6329. "homepage": "https://www.drupal.org/project/menu_position",
  6330. "support": {
  6331. "source": "https://git.drupalcode.org/project/menu_position",
  6332. "issues": "https://www.drupal.org/project/issues/menu_position"
  6333. },
  6334. "time": "2020-04-25T06:50:43+00:00"
  6335. },
  6336. {
  6337. "name": "drupal/pagerer",
  6338. "version": "2.0.0",
  6339. "source": {
  6340. "type": "git",
  6341. "url": "https://git.drupalcode.org/project/pagerer.git",
  6342. "reference": "8.x-2.0"
  6343. },
  6344. "dist": {
  6345. "type": "zip",
  6346. "url": "https://ftp.drupal.org/files/projects/pagerer-8.x-2.0.zip",
  6347. "reference": "8.x-2.0",
  6348. "shasum": "de54dee5aa1336c1d6e6c5aeccfbd602d5898c7f"
  6349. },
  6350. "require": {
  6351. "drupal/core": "^8.8 || ^9",
  6352. "drupal/jquery_ui_button": "*",
  6353. "drupal/jquery_ui_slider": "*",
  6354. "php": ">=7.1"
  6355. },
  6356. "type": "drupal-module",
  6357. "extra": {
  6358. "drupal": {
  6359. "version": "8.x-2.0",
  6360. "datestamp": "1589289359",
  6361. "security-coverage": {
  6362. "status": "covered",
  6363. "message": "Covered by Drupal's security advisory policy"
  6364. }
  6365. }
  6366. },
  6367. "notification-url": "https://packages.drupal.org/8/downloads",
  6368. "license": [
  6369. "GPL-2.0-or-later"
  6370. ],
  6371. "authors": [
  6372. {
  6373. "name": "mondrake",
  6374. "homepage": "https://www.drupal.org/user/1307444"
  6375. }
  6376. ],
  6377. "description": "Configurable pager styles.",
  6378. "homepage": "https://www.drupal.org/project/pagerer",
  6379. "support": {
  6380. "source": "https://git.drupalcode.org/project/pagerer"
  6381. }
  6382. },
  6383. {
  6384. "name": "drupal/paragraphs",
  6385. "version": "dev-1.x",
  6386. "source": {
  6387. "type": "git",
  6388. "url": "https://git.drupalcode.org/project/paragraphs.git",
  6389. "reference": "108c16ad07fdec0fdf3f272c8c6195d03a7afa7d"
  6390. },
  6391. "require": {
  6392. "drupal/core": "^8.8 || ^9",
  6393. "drupal/entity_reference_revisions": "~1.3"
  6394. },
  6395. "require-dev": {
  6396. "drupal/block_field": "~1.0",
  6397. "drupal/ctools": "3.x-dev",
  6398. "drupal/diff": "~1.0",
  6399. "drupal/entity_browser": "2.x-dev",
  6400. "drupal/entity_usage": "2.x-dev",
  6401. "drupal/field_group": "3.x-dev",
  6402. "drupal/inline_entity_form": "~1.0",
  6403. "drupal/paragraphs-paragraphs_library": "*",
  6404. "drupal/replicate": "~1.0",
  6405. "drupal/search_api": "~1.0",
  6406. "drupal/search_api_db": "*"
  6407. },
  6408. "suggest": {
  6409. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  6410. },
  6411. "type": "drupal-module",
  6412. "extra": {
  6413. "branch-alias": {
  6414. "dev-1.x": "1.x-dev"
  6415. },
  6416. "drupal": {
  6417. "version": "8.x-1.12+13-dev",
  6418. "datestamp": "1604927006",
  6419. "security-coverage": {
  6420. "status": "not-covered",
  6421. "message": "Dev releases are not covered by Drupal security advisories."
  6422. }
  6423. }
  6424. },
  6425. "notification-url": "https://packages.drupal.org/8/downloads",
  6426. "license": [
  6427. "GPL-2.0-or-later"
  6428. ],
  6429. "authors": [
  6430. {
  6431. "name": "Berdir",
  6432. "homepage": "https://www.drupal.org/user/214652"
  6433. },
  6434. {
  6435. "name": "Frans",
  6436. "homepage": "https://www.drupal.org/user/514222"
  6437. },
  6438. {
  6439. "name": "Primsi",
  6440. "homepage": "https://www.drupal.org/user/282629"
  6441. },
  6442. {
  6443. "name": "jeroen.b",
  6444. "homepage": "https://www.drupal.org/user/1853532"
  6445. },
  6446. {
  6447. "name": "jstoller",
  6448. "homepage": "https://www.drupal.org/user/99012"
  6449. },
  6450. {
  6451. "name": "miro_dietiker",
  6452. "homepage": "https://www.drupal.org/user/227761"
  6453. }
  6454. ],
  6455. "description": "Enables the creation of Paragraphs entities.",
  6456. "homepage": "https://www.drupal.org/project/paragraphs",
  6457. "support": {
  6458. "source": "https://git.drupalcode.org/project/paragraphs"
  6459. }
  6460. },
  6461. {
  6462. "name": "drupal/path_alias_xt",
  6463. "version": "dev-1.x",
  6464. "source": {
  6465. "type": "git",
  6466. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  6467. "reference": "10ef76dd3eb25bc1342195336291ded3f2d8cc7e"
  6468. },
  6469. "require": {
  6470. "drupal/core": "^8.7.7 || ^9"
  6471. },
  6472. "type": "drupal-module",
  6473. "extra": {
  6474. "branch-alias": {
  6475. "dev-1.x": "1.x-dev"
  6476. },
  6477. "drupal": {
  6478. "version": "8.x-1.x-dev",
  6479. "datestamp": "1590299862",
  6480. "security-coverage": {
  6481. "status": "not-covered",
  6482. "message": "Dev releases are not covered by Drupal security advisories."
  6483. }
  6484. }
  6485. },
  6486. "notification-url": "https://packages.drupal.org/8/downloads",
  6487. "license": [
  6488. "GPL-2.0-or-later"
  6489. ],
  6490. "authors": [
  6491. {
  6492. "name": "RdeBoer",
  6493. "homepage": "https://www.drupal.org/user/404007"
  6494. },
  6495. {
  6496. "name": "adriancid",
  6497. "homepage": "https://www.drupal.org/user/1962106"
  6498. },
  6499. {
  6500. "name": "sdstyles",
  6501. "homepage": "https://www.drupal.org/user/1420228"
  6502. }
  6503. ],
  6504. "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.",
  6505. "homepage": "https://www.drupal.org/project/path_alias_xt",
  6506. "support": {
  6507. "source": "https://git.drupalcode.org/project/path_alias_xt"
  6508. },
  6509. "time": "2020-05-24T05:57:09+00:00"
  6510. },
  6511. {
  6512. "name": "drupal/pathauto",
  6513. "version": "1.8.0",
  6514. "source": {
  6515. "type": "git",
  6516. "url": "https://git.drupalcode.org/project/pathauto.git",
  6517. "reference": "8.x-1.8"
  6518. },
  6519. "dist": {
  6520. "type": "zip",
  6521. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.8.zip",
  6522. "reference": "8.x-1.8",
  6523. "shasum": "ede3216abb9c4f77709338d9147334c595046329"
  6524. },
  6525. "require": {
  6526. "drupal/core": "^8.8 || ^9",
  6527. "drupal/ctools": "*",
  6528. "drupal/token": "*"
  6529. },
  6530. "suggest": {
  6531. "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."
  6532. },
  6533. "type": "drupal-module",
  6534. "extra": {
  6535. "drupal": {
  6536. "version": "8.x-1.8",
  6537. "datestamp": "1588103046",
  6538. "security-coverage": {
  6539. "status": "covered",
  6540. "message": "Covered by Drupal's security advisory policy"
  6541. }
  6542. },
  6543. "drush": {
  6544. "services": {
  6545. "drush.services.yml": "^9 || ^10"
  6546. }
  6547. }
  6548. },
  6549. "notification-url": "https://packages.drupal.org/8/downloads",
  6550. "license": [
  6551. "GPL-2.0-or-later"
  6552. ],
  6553. "authors": [
  6554. {
  6555. "name": "Berdir",
  6556. "homepage": "https://www.drupal.org/user/214652"
  6557. },
  6558. {
  6559. "name": "Dave Reid",
  6560. "homepage": "https://www.drupal.org/user/53892"
  6561. },
  6562. {
  6563. "name": "Freso",
  6564. "homepage": "https://www.drupal.org/user/27504"
  6565. },
  6566. {
  6567. "name": "greggles",
  6568. "homepage": "https://www.drupal.org/user/36762"
  6569. }
  6570. ],
  6571. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  6572. "homepage": "https://www.drupal.org/project/pathauto",
  6573. "support": {
  6574. "source": "https://cgit.drupalcode.org/pathauto",
  6575. "issues": "https://www.drupal.org/project/issues/pathauto",
  6576. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  6577. }
  6578. },
  6579. {
  6580. "name": "drupal/pathologic",
  6581. "version": "1.0.0-alpha2",
  6582. "source": {
  6583. "type": "git",
  6584. "url": "https://git.drupalcode.org/project/pathologic.git",
  6585. "reference": "8.x-1.0-alpha2"
  6586. },
  6587. "dist": {
  6588. "type": "zip",
  6589. "url": "https://ftp.drupal.org/files/projects/pathologic-8.x-1.0-alpha2.zip",
  6590. "reference": "8.x-1.0-alpha2",
  6591. "shasum": "5b1b6846ab72e24a90dcd4cafbe855fba069e56b"
  6592. },
  6593. "require": {
  6594. "drupal/core": "^8 || ^9"
  6595. },
  6596. "type": "drupal-module",
  6597. "extra": {
  6598. "drupal": {
  6599. "version": "8.x-1.0-alpha2",
  6600. "datestamp": "1593911470",
  6601. "security-coverage": {
  6602. "status": "not-covered",
  6603. "message": "Alpha releases are not covered by Drupal security advisories."
  6604. }
  6605. }
  6606. },
  6607. "notification-url": "https://packages.drupal.org/8/downloads",
  6608. "license": [
  6609. "GPL-2.0-or-later"
  6610. ],
  6611. "authors": [
  6612. {
  6613. "name": "Berdir",
  6614. "homepage": "https://www.drupal.org/user/214652"
  6615. },
  6616. {
  6617. "name": "Garrett Albright",
  6618. "homepage": "https://www.drupal.org/user/191212"
  6619. },
  6620. {
  6621. "name": "dww",
  6622. "homepage": "https://www.drupal.org/user/46549"
  6623. }
  6624. ],
  6625. "description": "Helps avoid broken links and incorrect paths in content.",
  6626. "homepage": "https://www.drupal.org/project/pathologic",
  6627. "support": {
  6628. "source": "https://git.drupalcode.org/project/pathologic"
  6629. }
  6630. },
  6631. {
  6632. "name": "drupal/persistent_login",
  6633. "version": "1.3.0",
  6634. "source": {
  6635. "type": "git",
  6636. "url": "https://git.drupalcode.org/project/persistent_login.git",
  6637. "reference": "8.x-1.3"
  6638. },
  6639. "dist": {
  6640. "type": "zip",
  6641. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.3.zip",
  6642. "reference": "8.x-1.3",
  6643. "shasum": "dfff4cb76d6b3888073dd992bcf4d51b1bb47696"
  6644. },
  6645. "require": {
  6646. "drupal/core": "^8.3 || ^9.0"
  6647. },
  6648. "type": "drupal-module",
  6649. "extra": {
  6650. "drupal": {
  6651. "version": "8.x-1.3",
  6652. "datestamp": "1591597823",
  6653. "security-coverage": {
  6654. "status": "covered",
  6655. "message": "Covered by Drupal's security advisory policy"
  6656. }
  6657. }
  6658. },
  6659. "notification-url": "https://packages.drupal.org/8/downloads",
  6660. "license": [
  6661. "GPL-2.0-or-later"
  6662. ],
  6663. "authors": [
  6664. {
  6665. "name": "gapple",
  6666. "homepage": "https://www.drupal.org/user/490940"
  6667. }
  6668. ],
  6669. "description": "Provides a \"Remember Me\" feature on the login form.",
  6670. "homepage": "https://www.drupal.org/project/persistent_login",
  6671. "keywords": [
  6672. "Drupal"
  6673. ],
  6674. "support": {
  6675. "source": "https://git.drupalcode.org/project/persistent_login",
  6676. "issues": "https://www.drupal.org/project/issues/persistent_login"
  6677. }
  6678. },
  6679. {
  6680. "name": "drupal/profile",
  6681. "version": "1.2.0",
  6682. "source": {
  6683. "type": "git",
  6684. "url": "https://git.drupalcode.org/project/profile.git",
  6685. "reference": "8.x-1.2"
  6686. },
  6687. "dist": {
  6688. "type": "zip",
  6689. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.2.zip",
  6690. "reference": "8.x-1.2",
  6691. "shasum": "5ea5167ed6cc5b47761ea497fe20bae0fbea1cf2"
  6692. },
  6693. "require": {
  6694. "drupal/core": "^8.8 || ^9",
  6695. "drupal/entity": "^1.0-rc2"
  6696. },
  6697. "require-dev": {
  6698. "drupal/token": "^1.7"
  6699. },
  6700. "type": "drupal-module",
  6701. "extra": {
  6702. "drupal": {
  6703. "version": "8.x-1.2",
  6704. "datestamp": "1604422701",
  6705. "security-coverage": {
  6706. "status": "covered",
  6707. "message": "Covered by Drupal's security advisory policy"
  6708. }
  6709. }
  6710. },
  6711. "notification-url": "https://packages.drupal.org/8/downloads",
  6712. "license": [
  6713. "GPL-2.0-or-later"
  6714. ],
  6715. "authors": [
  6716. {
  6717. "name": "bojanz",
  6718. "homepage": "https://www.drupal.org/user/86106"
  6719. },
  6720. {
  6721. "name": "daggerhart",
  6722. "homepage": "https://www.drupal.org/user/167806"
  6723. },
  6724. {
  6725. "name": "fago",
  6726. "homepage": "https://www.drupal.org/user/16747"
  6727. },
  6728. {
  6729. "name": "jsacksick",
  6730. "homepage": "https://www.drupal.org/user/972218"
  6731. },
  6732. {
  6733. "name": "mglaman",
  6734. "homepage": "https://www.drupal.org/user/2416470"
  6735. },
  6736. {
  6737. "name": "pcambra",
  6738. "homepage": "https://www.drupal.org/user/122101"
  6739. }
  6740. ],
  6741. "description": "Provides configurable user profiles.",
  6742. "homepage": "http://drupal.org/project/profile",
  6743. "support": {
  6744. "source": "https://git.drupalcode.org/project/profile"
  6745. }
  6746. },
  6747. {
  6748. "name": "drupal/redirect",
  6749. "version": "1.6.0",
  6750. "source": {
  6751. "type": "git",
  6752. "url": "https://git.drupalcode.org/project/redirect.git",
  6753. "reference": "8.x-1.6"
  6754. },
  6755. "dist": {
  6756. "type": "zip",
  6757. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.6.zip",
  6758. "reference": "8.x-1.6",
  6759. "shasum": "f848e001deac8425ae57d4b9397087c491d37294"
  6760. },
  6761. "require": {
  6762. "drupal/core": "^8.8 || ^9"
  6763. },
  6764. "type": "drupal-module",
  6765. "extra": {
  6766. "drupal": {
  6767. "version": "8.x-1.6",
  6768. "datestamp": "1589312204",
  6769. "security-coverage": {
  6770. "status": "covered",
  6771. "message": "Covered by Drupal's security advisory policy"
  6772. }
  6773. }
  6774. },
  6775. "notification-url": "https://packages.drupal.org/8/downloads",
  6776. "license": [
  6777. "GPL-2.0-or-later"
  6778. ],
  6779. "authors": [
  6780. {
  6781. "name": "Berdir",
  6782. "homepage": "https://www.drupal.org/user/214652"
  6783. },
  6784. {
  6785. "name": "Dave Reid",
  6786. "homepage": "https://www.drupal.org/user/53892"
  6787. },
  6788. {
  6789. "name": "pifagor",
  6790. "homepage": "https://www.drupal.org/user/2375692"
  6791. }
  6792. ],
  6793. "description": "Allows users to redirect from old URLs to new URLs.",
  6794. "homepage": "https://www.drupal.org/project/redirect",
  6795. "support": {
  6796. "source": "https://git.drupalcode.org/project/redirect"
  6797. }
  6798. },
  6799. {
  6800. "name": "drupal/redis",
  6801. "version": "1.5.0",
  6802. "source": {
  6803. "type": "git",
  6804. "url": "https://git.drupalcode.org/project/redis.git",
  6805. "reference": "8.x-1.5"
  6806. },
  6807. "dist": {
  6808. "type": "zip",
  6809. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.5.zip",
  6810. "reference": "8.x-1.5",
  6811. "shasum": "4283333dc2bf405045765b83ca662acc409a6543"
  6812. },
  6813. "require": {
  6814. "drupal/core": "^8.8 || ^9"
  6815. },
  6816. "suggest": {
  6817. "predis/predis": "^1.1.1"
  6818. },
  6819. "type": "drupal-module",
  6820. "extra": {
  6821. "drupal": {
  6822. "version": "8.x-1.5",
  6823. "datestamp": "1609972488",
  6824. "security-coverage": {
  6825. "status": "covered",
  6826. "message": "Covered by Drupal's security advisory policy"
  6827. }
  6828. }
  6829. },
  6830. "autoload": {
  6831. "psr-4": {
  6832. "Drupal\\redis\\": "src"
  6833. }
  6834. },
  6835. "notification-url": "https://packages.drupal.org/8/downloads",
  6836. "license": [
  6837. "GPL-2.0-or-later"
  6838. ],
  6839. "authors": [
  6840. {
  6841. "name": "Berdir",
  6842. "homepage": "https://www.drupal.org/user/214652"
  6843. },
  6844. {
  6845. "name": "pounard",
  6846. "homepage": "https://www.drupal.org/user/240164"
  6847. }
  6848. ],
  6849. "description": "Integration of Drupal with the Redis key-value store.",
  6850. "homepage": "https://www.drupal.org/project/redis",
  6851. "support": {
  6852. "source": "https://git.drupalcode.org/project/redis"
  6853. }
  6854. },
  6855. {
  6856. "name": "drupal/search_api",
  6857. "version": "1.19.0",
  6858. "source": {
  6859. "type": "git",
  6860. "url": "https://git.drupalcode.org/project/search_api.git",
  6861. "reference": "8.x-1.19"
  6862. },
  6863. "dist": {
  6864. "type": "zip",
  6865. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.19.zip",
  6866. "reference": "8.x-1.19",
  6867. "shasum": "5654e9d02117e28c585d89a25ea3cc40d20c5019"
  6868. },
  6869. "require": {
  6870. "drupal/core": "^8.8 || ^9"
  6871. },
  6872. "conflict": {
  6873. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  6874. },
  6875. "require-dev": {
  6876. "drupal/language_fallback_fix": "@dev",
  6877. "drupal/search_api_autocomplete": "@dev",
  6878. "drupal/search_api_db": "*"
  6879. },
  6880. "suggest": {
  6881. "drupal/facets": "Adds the ability to create faceted searches.",
  6882. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  6883. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  6884. },
  6885. "type": "drupal-module",
  6886. "extra": {
  6887. "drupal": {
  6888. "version": "8.x-1.19",
  6889. "datestamp": "1612192040",
  6890. "security-coverage": {
  6891. "status": "covered",
  6892. "message": "Covered by Drupal's security advisory policy"
  6893. }
  6894. },
  6895. "drush": {
  6896. "services": {
  6897. "drush.services.yml": "^9"
  6898. }
  6899. }
  6900. },
  6901. "notification-url": "https://packages.drupal.org/8/downloads",
  6902. "license": [
  6903. "GPL-2.0-or-later"
  6904. ],
  6905. "authors": [
  6906. {
  6907. "name": "Thomas Seidl",
  6908. "homepage": "https://www.drupal.org/u/drunken-monkey"
  6909. },
  6910. {
  6911. "name": "Nick Veenhof",
  6912. "homepage": "https://www.drupal.org/u/nick_vh"
  6913. },
  6914. {
  6915. "name": "See other contributors",
  6916. "homepage": "https://www.drupal.org/node/790418/committers"
  6917. }
  6918. ],
  6919. "description": "Provides a generic framework for modules offering search capabilities.",
  6920. "homepage": "https://www.drupal.org/project/search_api",
  6921. "support": {
  6922. "source": "https://git.drupalcode.org/project/search_api",
  6923. "issues": "https://www.drupal.org/project/issues/search_api",
  6924. "irc": "irc://irc.freenode.org/drupal-search-api"
  6925. }
  6926. },
  6927. {
  6928. "name": "drupal/search_api_db",
  6929. "version": "1.19.0",
  6930. "require": {
  6931. "drupal/core": "^8.8 || ^9",
  6932. "drupal/search_api": "*"
  6933. },
  6934. "type": "metapackage",
  6935. "extra": {
  6936. "drupal": {
  6937. "version": "8.x-1.19",
  6938. "datestamp": "1612192040",
  6939. "security-coverage": {
  6940. "status": "covered",
  6941. "message": "Covered by Drupal's security advisory policy"
  6942. }
  6943. }
  6944. },
  6945. "notification-url": "https://packages.drupal.org/8/downloads",
  6946. "license": [
  6947. "GPL-2.0-or-later"
  6948. ],
  6949. "authors": [
  6950. {
  6951. "name": "Nick_vh",
  6952. "homepage": "https://www.drupal.org/user/122682"
  6953. },
  6954. {
  6955. "name": "borisson_",
  6956. "homepage": "https://www.drupal.org/user/2393360"
  6957. },
  6958. {
  6959. "name": "drunken monkey",
  6960. "homepage": "https://www.drupal.org/user/205582"
  6961. }
  6962. ],
  6963. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  6964. "homepage": "https://www.drupal.org/project/search_api",
  6965. "support": {
  6966. "source": "https://git.drupalcode.org/project/search_api"
  6967. }
  6968. },
  6969. {
  6970. "name": "drupal/smart_trim",
  6971. "version": "1.3.0",
  6972. "source": {
  6973. "type": "git",
  6974. "url": "https://git.drupalcode.org/project/smart_trim.git",
  6975. "reference": "8.x-1.3"
  6976. },
  6977. "dist": {
  6978. "type": "zip",
  6979. "url": "https://ftp.drupal.org/files/projects/smart_trim-8.x-1.3.zip",
  6980. "reference": "8.x-1.3",
  6981. "shasum": "5894aa067fba19a3452ed8ce749f33bd9ae91907"
  6982. },
  6983. "require": {
  6984. "drupal/core": "^8 || ^9"
  6985. },
  6986. "type": "drupal-module",
  6987. "extra": {
  6988. "drupal": {
  6989. "version": "8.x-1.3",
  6990. "datestamp": "1589766531",
  6991. "security-coverage": {
  6992. "status": "covered",
  6993. "message": "Covered by Drupal's security advisory policy"
  6994. }
  6995. }
  6996. },
  6997. "notification-url": "https://packages.drupal.org/8/downloads",
  6998. "license": [
  6999. "GPL-2.0-or-later"
  7000. ],
  7001. "authors": [
  7002. {
  7003. "name": "Mark Casias (markie)",
  7004. "homepage": "https://www.drupal.org/u/markie",
  7005. "role": "Maintainer"
  7006. },
  7007. {
  7008. "name": "newsignature",
  7009. "homepage": "https://www.drupal.org/user/765518"
  7010. },
  7011. {
  7012. "name": "ultimike",
  7013. "homepage": "https://www.drupal.org/user/51132"
  7014. },
  7015. {
  7016. "name": "volkswagenchick",
  7017. "homepage": "https://www.drupal.org/user/3332522"
  7018. }
  7019. ],
  7020. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  7021. "homepage": "https://drupal.org/project/smart_trim",
  7022. "support": {
  7023. "source": "https://cgit.drupalcode.org/smart_trim",
  7024. "issues": "https://drupal.org/project/issues/smart_trim"
  7025. }
  7026. },
  7027. {
  7028. "name": "drupal/smtp",
  7029. "version": "1.0.0",
  7030. "source": {
  7031. "type": "git",
  7032. "url": "https://git.drupalcode.org/project/smtp.git",
  7033. "reference": "8.x-1.0"
  7034. },
  7035. "dist": {
  7036. "type": "zip",
  7037. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.0.zip",
  7038. "reference": "8.x-1.0",
  7039. "shasum": "c40cc7a3c20d3f743e3a4e53f4cc296748da89fd"
  7040. },
  7041. "require": {
  7042. "drupal/core": "^8.8 || ^9",
  7043. "phpmailer/phpmailer": "^6.1.7"
  7044. },
  7045. "suggest": {
  7046. "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
  7047. },
  7048. "type": "drupal-module",
  7049. "extra": {
  7050. "drupal": {
  7051. "version": "8.x-1.0",
  7052. "datestamp": "1601070985",
  7053. "security-coverage": {
  7054. "status": "covered",
  7055. "message": "Covered by Drupal's security advisory policy"
  7056. }
  7057. },
  7058. "branch-alias": {
  7059. "dev-8.x-1.x": "1.x-dev"
  7060. }
  7061. },
  7062. "notification-url": "https://packages.drupal.org/8/downloads",
  7063. "license": [
  7064. "GPL-2.0-or-later"
  7065. ],
  7066. "authors": [
  7067. {
  7068. "name": "LukeLast",
  7069. "homepage": "https://www.drupal.org/user/30151"
  7070. },
  7071. {
  7072. "name": "japerry",
  7073. "homepage": "https://www.drupal.org/user/45640"
  7074. },
  7075. {
  7076. "name": "josesanmartin",
  7077. "homepage": "https://www.drupal.org/user/72012"
  7078. },
  7079. {
  7080. "name": "oadaeh",
  7081. "homepage": "https://www.drupal.org/user/4649"
  7082. },
  7083. {
  7084. "name": "sadashiv",
  7085. "homepage": "https://www.drupal.org/user/1773304"
  7086. },
  7087. {
  7088. "name": "wundo",
  7089. "homepage": "https://www.drupal.org/user/25523"
  7090. },
  7091. {
  7092. "name": "yettyn",
  7093. "homepage": "https://www.drupal.org/user/93281"
  7094. }
  7095. ],
  7096. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  7097. "homepage": "https://www.drupal.org/project/smtp",
  7098. "support": {
  7099. "source": "https://git.drupalcode.org/project/smtp",
  7100. "issues": "https://www.drupal.org/project/issues/smtp"
  7101. }
  7102. },
  7103. {
  7104. "name": "drupal/sophron",
  7105. "version": "1.1.0",
  7106. "source": {
  7107. "type": "git",
  7108. "url": "https://git.drupalcode.org/project/sophron.git",
  7109. "reference": "8.x-1.1"
  7110. },
  7111. "dist": {
  7112. "type": "zip",
  7113. "url": "https://ftp.drupal.org/files/projects/sophron-8.x-1.1.zip",
  7114. "reference": "8.x-1.1",
  7115. "shasum": "afb3650458b15b87918471defa763f24880622ca"
  7116. },
  7117. "require": {
  7118. "drupal/core": "^8.9 || ^9",
  7119. "fileeye/mimemap": "^1.1.4",
  7120. "php": ">=7.1"
  7121. },
  7122. "type": "drupal-module",
  7123. "extra": {
  7124. "drupal": {
  7125. "version": "8.x-1.1",
  7126. "datestamp": "1606047077",
  7127. "security-coverage": {
  7128. "status": "covered",
  7129. "message": "Covered by Drupal's security advisory policy"
  7130. }
  7131. }
  7132. },
  7133. "autoload": {
  7134. "psr-4": {
  7135. "Drupal\\sophron\\": "src/"
  7136. }
  7137. },
  7138. "notification-url": "https://packages.drupal.org/8/downloads",
  7139. "license": [
  7140. "GPL-2.0-or-later"
  7141. ],
  7142. "authors": [
  7143. {
  7144. "name": "mondrake",
  7145. "homepage": "https://www.drupal.org/user/1307444"
  7146. }
  7147. ],
  7148. "description": "Provides an extensive MIME types management API",
  7149. "homepage": "https://www.drupal.org/project/sophron",
  7150. "support": {
  7151. "source": "https://git.drupalcode.org/project/sophron"
  7152. }
  7153. },
  7154. {
  7155. "name": "drupal/synonyms",
  7156. "version": "dev-1.x",
  7157. "source": {
  7158. "type": "git",
  7159. "url": "https://git.drupalcode.org/project/synonyms.git",
  7160. "reference": "d9c7956405622c5630284f15633845771e84ae54"
  7161. },
  7162. "require": {
  7163. "drupal/core": "^8 || ^9"
  7164. },
  7165. "type": "drupal-module",
  7166. "extra": {
  7167. "branch-alias": {
  7168. "dev-1.x": "1.x-dev"
  7169. },
  7170. "drupal": {
  7171. "version": "8.x-1.0-alpha3+4-dev",
  7172. "datestamp": "1613107043",
  7173. "security-coverage": {
  7174. "status": "not-covered",
  7175. "message": "Dev releases are not covered by Drupal security advisories."
  7176. }
  7177. }
  7178. },
  7179. "notification-url": "https://packages.drupal.org/8/downloads",
  7180. "license": [
  7181. "GPL-2.0-or-later"
  7182. ],
  7183. "authors": [
  7184. {
  7185. "name": "Zen",
  7186. "homepage": "https://www.drupal.org/user/21209"
  7187. },
  7188. {
  7189. "name": "bojanz",
  7190. "homepage": "https://www.drupal.org/user/86106"
  7191. },
  7192. {
  7193. "name": "bucefal91",
  7194. "homepage": "https://www.drupal.org/user/504128"
  7195. },
  7196. {
  7197. "name": "devad",
  7198. "homepage": "https://www.drupal.org/user/2268520"
  7199. }
  7200. ],
  7201. "description": "Provides synonyms feature for content entities.",
  7202. "homepage": "https://www.drupal.org/project/synonyms",
  7203. "support": {
  7204. "source": "https://git.drupalcode.org/project/synonyms"
  7205. },
  7206. "time": "2021-01-17T02:58:49+00:00"
  7207. },
  7208. {
  7209. "name": "drupal/token",
  7210. "version": "1.9.0",
  7211. "source": {
  7212. "type": "git",
  7213. "url": "https://git.drupalcode.org/project/token.git",
  7214. "reference": "8.x-1.9"
  7215. },
  7216. "dist": {
  7217. "type": "zip",
  7218. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.9.zip",
  7219. "reference": "8.x-1.9",
  7220. "shasum": "a5d234382a1a0e4ba61d4c7a2fa10671ca656be4"
  7221. },
  7222. "require": {
  7223. "drupal/core": "^8.8 || ^9"
  7224. },
  7225. "type": "drupal-module",
  7226. "extra": {
  7227. "drupal": {
  7228. "version": "8.x-1.9",
  7229. "datestamp": "1608284866",
  7230. "security-coverage": {
  7231. "status": "covered",
  7232. "message": "Covered by Drupal's security advisory policy"
  7233. }
  7234. },
  7235. "drush": {
  7236. "services": {
  7237. "drush.services.yml": "^9 || ^10"
  7238. }
  7239. }
  7240. },
  7241. "notification-url": "https://packages.drupal.org/8/downloads",
  7242. "license": [
  7243. "GPL-2.0-or-later"
  7244. ],
  7245. "authors": [
  7246. {
  7247. "name": "Berdir",
  7248. "homepage": "https://www.drupal.org/user/214652"
  7249. },
  7250. {
  7251. "name": "Dave Reid",
  7252. "homepage": "https://www.drupal.org/user/53892"
  7253. },
  7254. {
  7255. "name": "eaton",
  7256. "homepage": "https://www.drupal.org/user/16496"
  7257. },
  7258. {
  7259. "name": "fago",
  7260. "homepage": "https://www.drupal.org/user/16747"
  7261. },
  7262. {
  7263. "name": "greggles",
  7264. "homepage": "https://www.drupal.org/user/36762"
  7265. },
  7266. {
  7267. "name": "mikeryan",
  7268. "homepage": "https://www.drupal.org/user/4420"
  7269. }
  7270. ],
  7271. "description": "Provides a user interface for the Token API, some missing core tokens.",
  7272. "homepage": "https://www.drupal.org/project/token",
  7273. "support": {
  7274. "source": "https://git.drupalcode.org/project/token"
  7275. }
  7276. },
  7277. {
  7278. "name": "drupal/translation_views",
  7279. "version": "1.0.0-alpha10",
  7280. "source": {
  7281. "type": "git",
  7282. "url": "https://git.drupalcode.org/project/translation_views.git",
  7283. "reference": "8.x-1.0-alpha10"
  7284. },
  7285. "dist": {
  7286. "type": "zip",
  7287. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha10.zip",
  7288. "reference": "8.x-1.0-alpha10",
  7289. "shasum": "ca1a6d4bf16293b1b094db6439f9f065de1dbbd5"
  7290. },
  7291. "require": {
  7292. "drupal/core": "^8.8 || ^9"
  7293. },
  7294. "require-dev": {
  7295. "drupal/translators": "*",
  7296. "drupal/translators_content": "*"
  7297. },
  7298. "type": "drupal-module",
  7299. "extra": {
  7300. "drupal": {
  7301. "version": "8.x-1.0-alpha10",
  7302. "datestamp": "1584303687",
  7303. "security-coverage": {
  7304. "status": "not-covered",
  7305. "message": "Project has not opted into security advisory coverage!"
  7306. }
  7307. }
  7308. },
  7309. "notification-url": "https://packages.drupal.org/8/downloads",
  7310. "license": [
  7311. "GPL-2.0-or-later"
  7312. ],
  7313. "authors": [
  7314. {
  7315. "name": "matsbla",
  7316. "homepage": "https://www.drupal.org/user/2325394"
  7317. },
  7318. {
  7319. "name": "vlad.dancer",
  7320. "homepage": "https://www.drupal.org/user/903844"
  7321. }
  7322. ],
  7323. "description": "Create customized lists and queries of translations from your database.",
  7324. "homepage": "https://www.drupal.org/project/translation_views",
  7325. "support": {
  7326. "source": "https://git.drupalcode.org/project/translation_views"
  7327. }
  7328. },
  7329. {
  7330. "name": "drupal/ultimate_cron",
  7331. "version": "2.0.0-alpha5",
  7332. "source": {
  7333. "type": "git",
  7334. "url": "https://git.drupalcode.org/project/ultimate_cron.git",
  7335. "reference": "8.x-2.0-alpha5"
  7336. },
  7337. "dist": {
  7338. "type": "zip",
  7339. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha5.zip",
  7340. "reference": "8.x-2.0-alpha5",
  7341. "shasum": "0f10464fff29eca89024e7afa5b6d8d07bd52f75"
  7342. },
  7343. "require": {
  7344. "drupal/core": "^8.7.7 || ^9"
  7345. },
  7346. "type": "drupal-module",
  7347. "extra": {
  7348. "drupal": {
  7349. "version": "8.x-2.0-alpha5",
  7350. "datestamp": "1600928948",
  7351. "security-coverage": {
  7352. "status": "not-covered",
  7353. "message": "Alpha releases are not covered by Drupal security advisories."
  7354. }
  7355. },
  7356. "drush": {
  7357. "services": {
  7358. "drush.services.yml": "^9 || ^10"
  7359. }
  7360. }
  7361. },
  7362. "notification-url": "https://packages.drupal.org/8/downloads",
  7363. "license": [
  7364. "GPL-2.0+"
  7365. ],
  7366. "authors": [
  7367. {
  7368. "name": "Berdir",
  7369. "homepage": "https://www.drupal.org/user/214652"
  7370. },
  7371. {
  7372. "name": "Dane Powell",
  7373. "homepage": "https://www.drupal.org/user/339326"
  7374. },
  7375. {
  7376. "name": "Primsi",
  7377. "homepage": "https://www.drupal.org/user/282629"
  7378. },
  7379. {
  7380. "name": "arnested",
  7381. "homepage": "https://www.drupal.org/user/245635"
  7382. },
  7383. {
  7384. "name": "gielfeldt",
  7385. "homepage": "https://www.drupal.org/user/366993"
  7386. },
  7387. {
  7388. "name": "miro_dietiker",
  7389. "homepage": "https://www.drupal.org/user/227761"
  7390. }
  7391. ],
  7392. "description": "Ultimate cron",
  7393. "homepage": "https://www.drupal.org/project/ultimate_cron",
  7394. "support": {
  7395. "source": "https://git.drupalcode.org/project/ultimate_cron"
  7396. }
  7397. },
  7398. {
  7399. "name": "drupal/url_to_video_filter",
  7400. "version": "2.0.0",
  7401. "source": {
  7402. "type": "git",
  7403. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  7404. "reference": "2.0.0"
  7405. },
  7406. "dist": {
  7407. "type": "zip",
  7408. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-2.0.0.zip",
  7409. "reference": "2.0.0",
  7410. "shasum": "ac728919cc220846d8ef2ce61dbe1b94fbbf479b"
  7411. },
  7412. "require": {
  7413. "drupal/core": "^8 || ^9"
  7414. },
  7415. "type": "drupal-module",
  7416. "extra": {
  7417. "drupal": {
  7418. "version": "2.0.0",
  7419. "datestamp": "1607298389",
  7420. "security-coverage": {
  7421. "status": "covered",
  7422. "message": "Covered by Drupal's security advisory policy"
  7423. }
  7424. }
  7425. },
  7426. "notification-url": "https://packages.drupal.org/8/downloads",
  7427. "license": [
  7428. "GPL-2.0-or-later"
  7429. ],
  7430. "authors": [
  7431. {
  7432. "name": "Jaypan",
  7433. "homepage": "https://www.drupal.org/user/324696"
  7434. }
  7435. ],
  7436. "description": "Text filter to convert URLs to embedded videos",
  7437. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  7438. "support": {
  7439. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  7440. }
  7441. },
  7442. {
  7443. "name": "drupal/video_embed_field",
  7444. "version": "2.4.0",
  7445. "source": {
  7446. "type": "git",
  7447. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  7448. "reference": "8.x-2.4"
  7449. },
  7450. "dist": {
  7451. "type": "zip",
  7452. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.4.zip",
  7453. "reference": "8.x-2.4",
  7454. "shasum": "96b14bb93c1bb6a07b84315a4f87367870f8b574"
  7455. },
  7456. "require": {
  7457. "drupal/core": "^8.8 || ^9"
  7458. },
  7459. "require-dev": {
  7460. "drupal/colorbox": "^1.0",
  7461. "drupal/video_embed_media": "*"
  7462. },
  7463. "type": "drupal-module",
  7464. "extra": {
  7465. "drupal": {
  7466. "version": "8.x-2.4",
  7467. "datestamp": "1587686337",
  7468. "security-coverage": {
  7469. "status": "covered",
  7470. "message": "Covered by Drupal's security advisory policy"
  7471. }
  7472. }
  7473. },
  7474. "notification-url": "https://packages.drupal.org/8/downloads",
  7475. "license": [
  7476. "GPL-2.0+"
  7477. ],
  7478. "authors": [
  7479. {
  7480. "name": "Sam152",
  7481. "homepage": "https://www.drupal.org/user/1485048"
  7482. },
  7483. {
  7484. "name": "jec006",
  7485. "homepage": "https://www.drupal.org/user/855980"
  7486. },
  7487. {
  7488. "name": "plopesc",
  7489. "homepage": "https://www.drupal.org/user/282415"
  7490. }
  7491. ],
  7492. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  7493. "homepage": "https://www.drupal.org/project/video_embed_field",
  7494. "support": {
  7495. "source": "https://git.drupalcode.org/project/video_embed_field"
  7496. }
  7497. },
  7498. {
  7499. "name": "drupal/views_bulk_edit",
  7500. "version": "2.5.0",
  7501. "source": {
  7502. "type": "git",
  7503. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  7504. "reference": "8.x-2.5"
  7505. },
  7506. "dist": {
  7507. "type": "zip",
  7508. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.5.zip",
  7509. "reference": "8.x-2.5",
  7510. "shasum": "5f268f532e070fd3d1bffcb135d90f395f303a37"
  7511. },
  7512. "require": {
  7513. "drupal/core": "^8 || ^9"
  7514. },
  7515. "require-dev": {
  7516. "drupal/views_bulk_operations": "~3.0"
  7517. },
  7518. "suggest": {
  7519. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  7520. },
  7521. "type": "drupal-module",
  7522. "extra": {
  7523. "drupal": {
  7524. "version": "8.x-2.5",
  7525. "datestamp": "1606726163",
  7526. "security-coverage": {
  7527. "status": "covered",
  7528. "message": "Covered by Drupal's security advisory policy"
  7529. }
  7530. }
  7531. },
  7532. "notification-url": "https://packages.drupal.org/8/downloads",
  7533. "license": [
  7534. "GPL-2.0+"
  7535. ],
  7536. "authors": [
  7537. {
  7538. "name": "Marcin Grabias",
  7539. "homepage": "https://www.drupal.org/u/graber"
  7540. },
  7541. {
  7542. "name": "benjy",
  7543. "homepage": "https://www.drupal.org/user/1852732"
  7544. }
  7545. ],
  7546. "description": "Allows bulk edition of entity field values.",
  7547. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  7548. "support": {
  7549. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  7550. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  7551. }
  7552. },
  7553. {
  7554. "name": "drupal/views_bulk_operations",
  7555. "version": "3.10.0",
  7556. "source": {
  7557. "type": "git",
  7558. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  7559. "reference": "8.x-3.10"
  7560. },
  7561. "dist": {
  7562. "type": "zip",
  7563. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.10.zip",
  7564. "reference": "8.x-3.10",
  7565. "shasum": "e346c2a72fc9a1ae8af418e6a02076f52c0fcc7b"
  7566. },
  7567. "require": {
  7568. "drupal/core": "^8.8 || ^9"
  7569. },
  7570. "require-dev": {
  7571. "drush/drush": "^10"
  7572. },
  7573. "suggest": {
  7574. "drush/drush": "^9 || ^10"
  7575. },
  7576. "type": "drupal-module",
  7577. "extra": {
  7578. "drupal": {
  7579. "version": "8.x-3.10",
  7580. "datestamp": "1608795018",
  7581. "security-coverage": {
  7582. "status": "covered",
  7583. "message": "Covered by Drupal's security advisory policy"
  7584. }
  7585. },
  7586. "drush": {
  7587. "services": {
  7588. "drush.services.yml": "^9 || ^10"
  7589. }
  7590. }
  7591. },
  7592. "notification-url": "https://packages.drupal.org/8/downloads",
  7593. "license": [
  7594. "GPL-2.0-or-later"
  7595. ],
  7596. "authors": [
  7597. {
  7598. "name": "Marcin Grabias",
  7599. "homepage": "https://www.drupal.org/u/graber"
  7600. },
  7601. {
  7602. "name": "Jon Pugh",
  7603. "homepage": "https://www.drupal.org/user/17028"
  7604. },
  7605. {
  7606. "name": "bojanz",
  7607. "homepage": "https://www.drupal.org/user/86106"
  7608. },
  7609. {
  7610. "name": "infojunkie",
  7611. "homepage": "https://www.drupal.org/user/48424"
  7612. },
  7613. {
  7614. "name": "joelpittet",
  7615. "homepage": "https://www.drupal.org/user/160302"
  7616. }
  7617. ],
  7618. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  7619. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  7620. "support": {
  7621. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  7622. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  7623. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  7624. }
  7625. },
  7626. {
  7627. "name": "drupal/views_ef_fieldset",
  7628. "version": "1.5.0",
  7629. "source": {
  7630. "type": "git",
  7631. "url": "https://git.drupalcode.org/project/views_ef_fieldset.git",
  7632. "reference": "8.x-1.5"
  7633. },
  7634. "dist": {
  7635. "type": "zip",
  7636. "url": "https://ftp.drupal.org/files/projects/views_ef_fieldset-8.x-1.5.zip",
  7637. "reference": "8.x-1.5",
  7638. "shasum": "72ca0b63028d0fe65e13c8472546a8803aa0d079"
  7639. },
  7640. "require": {
  7641. "drupal/core": "^8 || ^9",
  7642. "php": ">=7"
  7643. },
  7644. "type": "drupal-module",
  7645. "extra": {
  7646. "drupal": {
  7647. "version": "8.x-1.5",
  7648. "datestamp": "1604567512",
  7649. "security-coverage": {
  7650. "status": "covered",
  7651. "message": "Covered by Drupal's security advisory policy"
  7652. }
  7653. },
  7654. "composer-exit-on-patch-failure": true,
  7655. "enable-patching": true,
  7656. "patches": {
  7657. "drupal/core": {
  7658. "https://www.drupal.org/project/drupal/issues/2943172": "https://www.drupal.org/files/issues/2018-07-05/2943172-kernel-test-base-3.patch"
  7659. }
  7660. }
  7661. },
  7662. "autoload-dev": {
  7663. "psr-4": {
  7664. "Drupal\\Tests\\views_ef_fieldset\\": "./tests/"
  7665. }
  7666. },
  7667. "notification-url": "https://packages.drupal.org/8/downloads",
  7668. "scripts": {
  7669. "grumphp": [
  7670. "./vendor/bin/grumphp run"
  7671. ]
  7672. },
  7673. "license": [
  7674. "GPL-2.0+"
  7675. ],
  7676. "authors": [
  7677. {
  7678. "name": "Pol Dellaiera",
  7679. "homepage": "https://www.drupal.org/user/47194",
  7680. "email": "pol.dellaiera@protonmail.com"
  7681. },
  7682. {
  7683. "name": "ciss",
  7684. "homepage": "https://www.drupal.org/user/1632364"
  7685. }
  7686. ],
  7687. "description": "Provide an option to render the 'exposed form widgets' in a fieldset.",
  7688. "homepage": "https://drupal.org/project/views_field_formatter",
  7689. "support": {
  7690. "source": "https://git.drupalcode.org/project/views_ef_fieldset"
  7691. }
  7692. },
  7693. {
  7694. "name": "drush/drush",
  7695. "version": "10.4.0",
  7696. "source": {
  7697. "type": "git",
  7698. "url": "https://github.com/drush-ops/drush.git",
  7699. "reference": "507cecd32b05850cf2f70c8922ddad247cd9ce10"
  7700. },
  7701. "dist": {
  7702. "type": "zip",
  7703. "url": "https://api.github.com/repos/drush-ops/drush/zipball/507cecd32b05850cf2f70c8922ddad247cd9ce10",
  7704. "reference": "507cecd32b05850cf2f70c8922ddad247cd9ce10",
  7705. "shasum": ""
  7706. },
  7707. "require": {
  7708. "chi-teck/drupal-code-generator": "^1.32.1",
  7709. "composer/semver": "^1.4 || ^3",
  7710. "consolidation/config": "^1.2",
  7711. "consolidation/filter-via-dot-access-data": "^1",
  7712. "consolidation/robo": "^1.4.11 || ^2",
  7713. "consolidation/site-alias": "^3.0.0@stable",
  7714. "consolidation/site-process": "^2.1 || ^4",
  7715. "enlightn/security-checker": "^1",
  7716. "ext-dom": "*",
  7717. "grasmash/yaml-expander": "^1.1.1",
  7718. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  7719. "league/container": "~2",
  7720. "php": ">=7.1.3",
  7721. "psr/log": "~1.0",
  7722. "psy/psysh": "~0.6",
  7723. "symfony/event-dispatcher": "^3.4 || ^4.0",
  7724. "symfony/finder": "^3.4 || ^4.0 || ^5",
  7725. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0",
  7726. "symfony/yaml": "^3.4 || ^4.0",
  7727. "webflo/drupal-finder": "^1.2",
  7728. "webmozart/path-util": "^2.1.0"
  7729. },
  7730. "conflict": {
  7731. "drupal/migrate_run": "*",
  7732. "drupal/migrate_tools": "<= 5"
  7733. },
  7734. "require-dev": {
  7735. "composer/installers": "^1.7",
  7736. "cweagans/composer-patches": "~1.0",
  7737. "david-garcia/phpwhois": "4.3.0",
  7738. "drupal/alinks": "1.0.0",
  7739. "drupal/core-recommended": "^8.8",
  7740. "lox/xhprof": "dev-master",
  7741. "phpunit/phpunit": ">=7.5.20",
  7742. "squizlabs/php_codesniffer": "^2.7 || ^3",
  7743. "vlucas/phpdotenv": "^2.4",
  7744. "yoast/phpunit-polyfills": "^0.2.0"
  7745. },
  7746. "bin": [
  7747. "drush"
  7748. ],
  7749. "type": "library",
  7750. "extra": {
  7751. "installer-paths": {
  7752. "sut/core": [
  7753. "type:drupal-core"
  7754. ],
  7755. "sut/libraries/{$name}": [
  7756. "type:drupal-library"
  7757. ],
  7758. "sut/modules/unish/{$name}": [
  7759. "drupal/devel"
  7760. ],
  7761. "sut/themes/unish/{$name}": [
  7762. "drupal/empty_theme"
  7763. ],
  7764. "sut/modules/contrib/{$name}": [
  7765. "type:drupal-module"
  7766. ],
  7767. "sut/profiles/contrib/{$name}": [
  7768. "type:drupal-profile"
  7769. ],
  7770. "sut/themes/contrib/{$name}": [
  7771. "type:drupal-theme"
  7772. ],
  7773. "sut/drush/contrib/{$name}": [
  7774. "type:drupal-drush"
  7775. ]
  7776. }
  7777. },
  7778. "autoload": {
  7779. "psr-4": {
  7780. "Drush\\": "src/",
  7781. "Drush\\Internal\\": "src/internal-forks"
  7782. }
  7783. },
  7784. "notification-url": "https://packagist.org/downloads/",
  7785. "license": [
  7786. "GPL-2.0-or-later"
  7787. ],
  7788. "authors": [
  7789. {
  7790. "name": "Moshe Weitzman",
  7791. "email": "weitzman@tejasa.com"
  7792. },
  7793. {
  7794. "name": "Owen Barton",
  7795. "email": "drupal@owenbarton.com"
  7796. },
  7797. {
  7798. "name": "Greg Anderson",
  7799. "email": "greg.1.anderson@greenknowe.org"
  7800. },
  7801. {
  7802. "name": "Jonathan Araña Cruz",
  7803. "email": "jonhattan@faita.net"
  7804. },
  7805. {
  7806. "name": "Jonathan Hedstrom",
  7807. "email": "jhedstrom@gmail.com"
  7808. },
  7809. {
  7810. "name": "Christopher Gervais",
  7811. "email": "chris@ergonlogic.com"
  7812. },
  7813. {
  7814. "name": "Dave Reid",
  7815. "email": "dave@davereid.net"
  7816. },
  7817. {
  7818. "name": "Damian Lee",
  7819. "email": "damiankloip@googlemail.com"
  7820. }
  7821. ],
  7822. "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.",
  7823. "homepage": "http://www.drush.org",
  7824. "funding": [
  7825. {
  7826. "url": "https://github.com/weitzman",
  7827. "type": "github"
  7828. }
  7829. ],
  7830. "time": "2021-02-15T20:26:00+00:00"
  7831. },
  7832. {
  7833. "name": "egulias/email-validator",
  7834. "version": "2.1.22",
  7835. "source": {
  7836. "type": "git",
  7837. "url": "https://github.com/egulias/EmailValidator.git",
  7838. "reference": "68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5"
  7839. },
  7840. "dist": {
  7841. "type": "zip",
  7842. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5",
  7843. "reference": "68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5",
  7844. "shasum": ""
  7845. },
  7846. "require": {
  7847. "doctrine/lexer": "^1.0.1",
  7848. "php": ">=5.5",
  7849. "symfony/polyfill-intl-idn": "^1.10"
  7850. },
  7851. "require-dev": {
  7852. "dominicsayers/isemail": "^3.0.7",
  7853. "phpunit/phpunit": "^4.8.36|^7.5.15",
  7854. "satooshi/php-coveralls": "^1.0.1"
  7855. },
  7856. "suggest": {
  7857. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  7858. },
  7859. "type": "library",
  7860. "extra": {
  7861. "branch-alias": {
  7862. "dev-master": "2.1.x-dev"
  7863. }
  7864. },
  7865. "autoload": {
  7866. "psr-4": {
  7867. "Egulias\\EmailValidator\\": "src"
  7868. }
  7869. },
  7870. "notification-url": "https://packagist.org/downloads/",
  7871. "license": [
  7872. "MIT"
  7873. ],
  7874. "authors": [
  7875. {
  7876. "name": "Eduardo Gulias Davis"
  7877. }
  7878. ],
  7879. "description": "A library for validating emails against several RFCs",
  7880. "homepage": "https://github.com/egulias/EmailValidator",
  7881. "keywords": [
  7882. "email",
  7883. "emailvalidation",
  7884. "emailvalidator",
  7885. "validation",
  7886. "validator"
  7887. ],
  7888. "time": "2020-09-26T15:48:38+00:00"
  7889. },
  7890. {
  7891. "name": "enlightn/security-checker",
  7892. "version": "v1.7.0",
  7893. "source": {
  7894. "type": "git",
  7895. "url": "https://github.com/enlightn/security-checker.git",
  7896. "reference": "1ac108ba278ba0c2e71d2ce2ac4fac07ed6e8a29"
  7897. },
  7898. "dist": {
  7899. "type": "zip",
  7900. "url": "https://api.github.com/repos/enlightn/security-checker/zipball/1ac108ba278ba0c2e71d2ce2ac4fac07ed6e8a29",
  7901. "reference": "1ac108ba278ba0c2e71d2ce2ac4fac07ed6e8a29",
  7902. "shasum": ""
  7903. },
  7904. "require": {
  7905. "ext-json": "*",
  7906. "ext-zip": "*",
  7907. "guzzlehttp/guzzle": "^6.3|^7.0",
  7908. "php": ">=5.6",
  7909. "symfony/console": "^3.4|^4|^5",
  7910. "symfony/finder": "^3|^4|^5",
  7911. "symfony/yaml": "^3.4|^4|^5"
  7912. },
  7913. "require-dev": {
  7914. "friendsofphp/php-cs-fixer": "^2.18",
  7915. "phpunit/phpunit": "^5.5|^6|^7|^8|^9"
  7916. },
  7917. "bin": [
  7918. "security-checker"
  7919. ],
  7920. "type": "library",
  7921. "autoload": {
  7922. "psr-4": {
  7923. "Enlightn\\SecurityChecker\\": "src"
  7924. }
  7925. },
  7926. "notification-url": "https://packagist.org/downloads/",
  7927. "license": [
  7928. "MIT"
  7929. ],
  7930. "authors": [
  7931. {
  7932. "name": "Paras Malhotra",
  7933. "email": "paras@laravel-enlightn.com"
  7934. },
  7935. {
  7936. "name": "Miguel Piedrafita",
  7937. "email": "soy@miguelpiedrafita.com"
  7938. }
  7939. ],
  7940. "description": "A PHP dependency vulnerabilities scanner based on the Security Advisories Database.",
  7941. "keywords": [
  7942. "package",
  7943. "php",
  7944. "scanner",
  7945. "security",
  7946. "security advisories",
  7947. "vulnerability scanner"
  7948. ],
  7949. "time": "2021-03-03T11:56:26+00:00"
  7950. },
  7951. {
  7952. "name": "fileeye/mimemap",
  7953. "version": "1.1.4",
  7954. "source": {
  7955. "type": "git",
  7956. "url": "https://github.com/FileEye/MimeMap.git",
  7957. "reference": "3a0ddb71f06d8fb3f84f0a3c45348af81803b16d"
  7958. },
  7959. "dist": {
  7960. "type": "zip",
  7961. "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/3a0ddb71f06d8fb3f84f0a3c45348af81803b16d",
  7962. "reference": "3a0ddb71f06d8fb3f84f0a3c45348af81803b16d",
  7963. "shasum": ""
  7964. },
  7965. "require": {
  7966. "php": ">=5.4"
  7967. },
  7968. "require-dev": {
  7969. "phpunit/phpunit": "<10",
  7970. "sebastian/comparator": "*",
  7971. "sebastian/diff": "*",
  7972. "squizlabs/php_codesniffer": "*",
  7973. "symfony/console": "*",
  7974. "symfony/filesystem": "*",
  7975. "symfony/var-dumper": "*",
  7976. "symfony/yaml": "*"
  7977. },
  7978. "bin": [
  7979. "bin/fileeye-mimemap"
  7980. ],
  7981. "type": "library",
  7982. "extra": {
  7983. "branch-alias": {
  7984. "dev-master": "1.x-dev"
  7985. }
  7986. },
  7987. "autoload": {
  7988. "psr-4": {
  7989. "FileEye\\MimeMap\\": "src/"
  7990. }
  7991. },
  7992. "notification-url": "https://packagist.org/downloads/",
  7993. "license": [
  7994. "LGPL-3.0-or-later"
  7995. ],
  7996. "description": "A PHP library to handle MIME Content-Type fields and their related file extensions.",
  7997. "homepage": "https://github.com/FileEye/MimeMap",
  7998. "keywords": [
  7999. "mime",
  8000. "mime-database",
  8001. "mime-parser",
  8002. "mime-type"
  8003. ],
  8004. "time": "2020-05-16T10:19:16+00:00"
  8005. },
  8006. {
  8007. "name": "grasmash/expander",
  8008. "version": "1.0.0",
  8009. "source": {
  8010. "type": "git",
  8011. "url": "https://github.com/grasmash/expander.git",
  8012. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  8013. },
  8014. "dist": {
  8015. "type": "zip",
  8016. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  8017. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  8018. "shasum": ""
  8019. },
  8020. "require": {
  8021. "dflydev/dot-access-data": "^1.1.0",
  8022. "php": ">=5.4"
  8023. },
  8024. "require-dev": {
  8025. "greg-1-anderson/composer-test-scenarios": "^1",
  8026. "phpunit/phpunit": "^4|^5.5.4",
  8027. "satooshi/php-coveralls": "^1.0.2|dev-master",
  8028. "squizlabs/php_codesniffer": "^2.7"
  8029. },
  8030. "type": "library",
  8031. "extra": {
  8032. "branch-alias": {
  8033. "dev-master": "1.x-dev"
  8034. }
  8035. },
  8036. "autoload": {
  8037. "psr-4": {
  8038. "Grasmash\\Expander\\": "src/"
  8039. }
  8040. },
  8041. "notification-url": "https://packagist.org/downloads/",
  8042. "license": [
  8043. "MIT"
  8044. ],
  8045. "authors": [
  8046. {
  8047. "name": "Matthew Grasmick"
  8048. }
  8049. ],
  8050. "description": "Expands internal property references in PHP arrays file.",
  8051. "time": "2017-12-21T22:14:55+00:00"
  8052. },
  8053. {
  8054. "name": "grasmash/yaml-expander",
  8055. "version": "1.4.0",
  8056. "source": {
  8057. "type": "git",
  8058. "url": "https://github.com/grasmash/yaml-expander.git",
  8059. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  8060. },
  8061. "dist": {
  8062. "type": "zip",
  8063. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  8064. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  8065. "shasum": ""
  8066. },
  8067. "require": {
  8068. "dflydev/dot-access-data": "^1.1.0",
  8069. "php": ">=5.4",
  8070. "symfony/yaml": "^2.8.11|^3|^4"
  8071. },
  8072. "require-dev": {
  8073. "greg-1-anderson/composer-test-scenarios": "^1",
  8074. "phpunit/phpunit": "^4.8|^5.5.4",
  8075. "satooshi/php-coveralls": "^1.0.2|dev-master",
  8076. "squizlabs/php_codesniffer": "^2.7"
  8077. },
  8078. "type": "library",
  8079. "extra": {
  8080. "branch-alias": {
  8081. "dev-master": "1.x-dev"
  8082. }
  8083. },
  8084. "autoload": {
  8085. "psr-4": {
  8086. "Grasmash\\YamlExpander\\": "src/"
  8087. }
  8088. },
  8089. "notification-url": "https://packagist.org/downloads/",
  8090. "license": [
  8091. "MIT"
  8092. ],
  8093. "authors": [
  8094. {
  8095. "name": "Matthew Grasmick"
  8096. }
  8097. ],
  8098. "description": "Expands internal property references in a yaml file.",
  8099. "time": "2017-12-16T16:06:03+00:00"
  8100. },
  8101. {
  8102. "name": "guzzlehttp/guzzle",
  8103. "version": "6.5.5",
  8104. "source": {
  8105. "type": "git",
  8106. "url": "https://github.com/guzzle/guzzle.git",
  8107. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  8108. },
  8109. "dist": {
  8110. "type": "zip",
  8111. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  8112. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  8113. "shasum": ""
  8114. },
  8115. "require": {
  8116. "ext-json": "*",
  8117. "guzzlehttp/promises": "^1.0",
  8118. "guzzlehttp/psr7": "^1.6.1",
  8119. "php": ">=5.5",
  8120. "symfony/polyfill-intl-idn": "^1.17.0"
  8121. },
  8122. "require-dev": {
  8123. "ext-curl": "*",
  8124. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  8125. "psr/log": "^1.1"
  8126. },
  8127. "suggest": {
  8128. "psr/log": "Required for using the Log middleware"
  8129. },
  8130. "type": "library",
  8131. "extra": {
  8132. "branch-alias": {
  8133. "dev-master": "6.5-dev"
  8134. }
  8135. },
  8136. "autoload": {
  8137. "psr-4": {
  8138. "GuzzleHttp\\": "src/"
  8139. },
  8140. "files": [
  8141. "src/functions_include.php"
  8142. ]
  8143. },
  8144. "notification-url": "https://packagist.org/downloads/",
  8145. "license": [
  8146. "MIT"
  8147. ],
  8148. "authors": [
  8149. {
  8150. "name": "Michael Dowling",
  8151. "email": "mtdowling@gmail.com",
  8152. "homepage": "https://github.com/mtdowling"
  8153. }
  8154. ],
  8155. "description": "Guzzle is a PHP HTTP client library",
  8156. "homepage": "http://guzzlephp.org/",
  8157. "keywords": [
  8158. "client",
  8159. "curl",
  8160. "framework",
  8161. "http",
  8162. "http client",
  8163. "rest",
  8164. "web service"
  8165. ],
  8166. "time": "2020-06-16T21:01:06+00:00"
  8167. },
  8168. {
  8169. "name": "guzzlehttp/promises",
  8170. "version": "1.4.0",
  8171. "source": {
  8172. "type": "git",
  8173. "url": "https://github.com/guzzle/promises.git",
  8174. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  8175. },
  8176. "dist": {
  8177. "type": "zip",
  8178. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  8179. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  8180. "shasum": ""
  8181. },
  8182. "require": {
  8183. "php": ">=5.5"
  8184. },
  8185. "require-dev": {
  8186. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  8187. },
  8188. "type": "library",
  8189. "extra": {
  8190. "branch-alias": {
  8191. "dev-master": "1.4-dev"
  8192. }
  8193. },
  8194. "autoload": {
  8195. "psr-4": {
  8196. "GuzzleHttp\\Promise\\": "src/"
  8197. },
  8198. "files": [
  8199. "src/functions_include.php"
  8200. ]
  8201. },
  8202. "notification-url": "https://packagist.org/downloads/",
  8203. "license": [
  8204. "MIT"
  8205. ],
  8206. "authors": [
  8207. {
  8208. "name": "Michael Dowling",
  8209. "email": "mtdowling@gmail.com",
  8210. "homepage": "https://github.com/mtdowling"
  8211. }
  8212. ],
  8213. "description": "Guzzle promises library",
  8214. "keywords": [
  8215. "promise"
  8216. ],
  8217. "time": "2020-09-30T07:37:28+00:00"
  8218. },
  8219. {
  8220. "name": "guzzlehttp/psr7",
  8221. "version": "1.7.0",
  8222. "source": {
  8223. "type": "git",
  8224. "url": "https://github.com/guzzle/psr7.git",
  8225. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  8226. },
  8227. "dist": {
  8228. "type": "zip",
  8229. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  8230. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  8231. "shasum": ""
  8232. },
  8233. "require": {
  8234. "php": ">=5.4.0",
  8235. "psr/http-message": "~1.0",
  8236. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  8237. },
  8238. "provide": {
  8239. "psr/http-message-implementation": "1.0"
  8240. },
  8241. "require-dev": {
  8242. "ext-zlib": "*",
  8243. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  8244. },
  8245. "suggest": {
  8246. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  8247. },
  8248. "type": "library",
  8249. "extra": {
  8250. "branch-alias": {
  8251. "dev-master": "1.7-dev"
  8252. }
  8253. },
  8254. "autoload": {
  8255. "psr-4": {
  8256. "GuzzleHttp\\Psr7\\": "src/"
  8257. },
  8258. "files": [
  8259. "src/functions_include.php"
  8260. ]
  8261. },
  8262. "notification-url": "https://packagist.org/downloads/",
  8263. "license": [
  8264. "MIT"
  8265. ],
  8266. "authors": [
  8267. {
  8268. "name": "Michael Dowling",
  8269. "email": "mtdowling@gmail.com",
  8270. "homepage": "https://github.com/mtdowling"
  8271. },
  8272. {
  8273. "name": "Tobias Schultze",
  8274. "homepage": "https://github.com/Tobion"
  8275. }
  8276. ],
  8277. "description": "PSR-7 message implementation that also provides common utility methods",
  8278. "keywords": [
  8279. "http",
  8280. "message",
  8281. "psr-7",
  8282. "request",
  8283. "response",
  8284. "stream",
  8285. "uri",
  8286. "url"
  8287. ],
  8288. "time": "2020-09-30T07:37:11+00:00"
  8289. },
  8290. {
  8291. "name": "laminas/laminas-diactoros",
  8292. "version": "2.5.0",
  8293. "source": {
  8294. "type": "git",
  8295. "url": "https://github.com/laminas/laminas-diactoros.git",
  8296. "reference": "4ff7400c1c12e404144992ef43c8b733fd9ad516"
  8297. },
  8298. "dist": {
  8299. "type": "zip",
  8300. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/4ff7400c1c12e404144992ef43c8b733fd9ad516",
  8301. "reference": "4ff7400c1c12e404144992ef43c8b733fd9ad516",
  8302. "shasum": ""
  8303. },
  8304. "require": {
  8305. "laminas/laminas-zendframework-bridge": "^1.0",
  8306. "php": "^7.3 || ~8.0.0",
  8307. "psr/http-factory": "^1.0",
  8308. "psr/http-message": "^1.0"
  8309. },
  8310. "conflict": {
  8311. "phpspec/prophecy": "<1.9.0"
  8312. },
  8313. "provide": {
  8314. "psr/http-factory-implementation": "1.0",
  8315. "psr/http-message-implementation": "1.0"
  8316. },
  8317. "replace": {
  8318. "zendframework/zend-diactoros": "^2.2.1"
  8319. },
  8320. "require-dev": {
  8321. "ext-curl": "*",
  8322. "ext-dom": "*",
  8323. "ext-gd": "*",
  8324. "ext-libxml": "*",
  8325. "http-interop/http-factory-tests": "^0.8.0",
  8326. "laminas/laminas-coding-standard": "~1.0.0",
  8327. "php-http/psr7-integration-tests": "^1.1",
  8328. "phpspec/prophecy-phpunit": "^2.0",
  8329. "phpunit/phpunit": "^9.1"
  8330. },
  8331. "type": "library",
  8332. "extra": {
  8333. "laminas": {
  8334. "config-provider": "Laminas\\Diactoros\\ConfigProvider",
  8335. "module": "Laminas\\Diactoros"
  8336. }
  8337. },
  8338. "autoload": {
  8339. "files": [
  8340. "src/functions/create_uploaded_file.php",
  8341. "src/functions/marshal_headers_from_sapi.php",
  8342. "src/functions/marshal_method_from_sapi.php",
  8343. "src/functions/marshal_protocol_version_from_sapi.php",
  8344. "src/functions/marshal_uri_from_sapi.php",
  8345. "src/functions/normalize_server.php",
  8346. "src/functions/normalize_uploaded_files.php",
  8347. "src/functions/parse_cookie_header.php",
  8348. "src/functions/create_uploaded_file.legacy.php",
  8349. "src/functions/marshal_headers_from_sapi.legacy.php",
  8350. "src/functions/marshal_method_from_sapi.legacy.php",
  8351. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  8352. "src/functions/marshal_uri_from_sapi.legacy.php",
  8353. "src/functions/normalize_server.legacy.php",
  8354. "src/functions/normalize_uploaded_files.legacy.php",
  8355. "src/functions/parse_cookie_header.legacy.php"
  8356. ],
  8357. "psr-4": {
  8358. "Laminas\\Diactoros\\": "src/"
  8359. }
  8360. },
  8361. "notification-url": "https://packagist.org/downloads/",
  8362. "license": [
  8363. "BSD-3-Clause"
  8364. ],
  8365. "description": "PSR HTTP Message implementations",
  8366. "homepage": "https://laminas.dev",
  8367. "keywords": [
  8368. "http",
  8369. "laminas",
  8370. "psr",
  8371. "psr-17",
  8372. "psr-7"
  8373. ],
  8374. "funding": [
  8375. {
  8376. "url": "https://funding.communitybridge.org/projects/laminas-project",
  8377. "type": "community_bridge"
  8378. }
  8379. ],
  8380. "time": "2020-11-18T18:39:28+00:00"
  8381. },
  8382. {
  8383. "name": "laminas/laminas-escaper",
  8384. "version": "2.7.0",
  8385. "source": {
  8386. "type": "git",
  8387. "url": "https://github.com/laminas/laminas-escaper.git",
  8388. "reference": "5e04bc5ae5990b17159d79d331055e2c645e5cc5"
  8389. },
  8390. "dist": {
  8391. "type": "zip",
  8392. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/5e04bc5ae5990b17159d79d331055e2c645e5cc5",
  8393. "reference": "5e04bc5ae5990b17159d79d331055e2c645e5cc5",
  8394. "shasum": ""
  8395. },
  8396. "require": {
  8397. "laminas/laminas-zendframework-bridge": "^1.0",
  8398. "php": "^7.3 || ~8.0.0"
  8399. },
  8400. "replace": {
  8401. "zendframework/zend-escaper": "^2.6.1"
  8402. },
  8403. "require-dev": {
  8404. "laminas/laminas-coding-standard": "~1.0.0",
  8405. "phpunit/phpunit": "^9.3",
  8406. "psalm/plugin-phpunit": "^0.12.2",
  8407. "vimeo/psalm": "^3.16"
  8408. },
  8409. "suggest": {
  8410. "ext-iconv": "*",
  8411. "ext-mbstring": "*"
  8412. },
  8413. "type": "library",
  8414. "autoload": {
  8415. "psr-4": {
  8416. "Laminas\\Escaper\\": "src/"
  8417. }
  8418. },
  8419. "notification-url": "https://packagist.org/downloads/",
  8420. "license": [
  8421. "BSD-3-Clause"
  8422. ],
  8423. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  8424. "homepage": "https://laminas.dev",
  8425. "keywords": [
  8426. "escaper",
  8427. "laminas"
  8428. ],
  8429. "funding": [
  8430. {
  8431. "url": "https://funding.communitybridge.org/projects/laminas-project",
  8432. "type": "community_bridge"
  8433. }
  8434. ],
  8435. "time": "2020-11-17T21:26:43+00:00"
  8436. },
  8437. {
  8438. "name": "laminas/laminas-feed",
  8439. "version": "2.13.0",
  8440. "source": {
  8441. "type": "git",
  8442. "url": "https://github.com/laminas/laminas-feed.git",
  8443. "reference": "fb89aac1984222227f37792dd193d34829a0762f"
  8444. },
  8445. "dist": {
  8446. "type": "zip",
  8447. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/fb89aac1984222227f37792dd193d34829a0762f",
  8448. "reference": "fb89aac1984222227f37792dd193d34829a0762f",
  8449. "shasum": ""
  8450. },
  8451. "require": {
  8452. "ext-dom": "*",
  8453. "ext-libxml": "*",
  8454. "laminas/laminas-escaper": "^2.5.2",
  8455. "laminas/laminas-stdlib": "^3.2.1",
  8456. "laminas/laminas-zendframework-bridge": "^1.0",
  8457. "php": "^7.3 || ~8.0.0"
  8458. },
  8459. "conflict": {
  8460. "laminas/laminas-servicemanager": "<3.3"
  8461. },
  8462. "replace": {
  8463. "zendframework/zend-feed": "^2.12.0"
  8464. },
  8465. "require-dev": {
  8466. "laminas/laminas-cache": "^2.7.2",
  8467. "laminas/laminas-coding-standard": "~1.0.0",
  8468. "laminas/laminas-db": "^2.8.2",
  8469. "laminas/laminas-http": "^2.7",
  8470. "laminas/laminas-servicemanager": "^3.3",
  8471. "laminas/laminas-validator": "^2.10.1",
  8472. "phpunit/phpunit": "^9.3",
  8473. "psalm/plugin-phpunit": "^0.13.0",
  8474. "psr/http-message": "^1.0.1",
  8475. "vimeo/psalm": "^4.1"
  8476. },
  8477. "suggest": {
  8478. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  8479. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  8480. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  8481. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  8482. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  8483. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  8484. },
  8485. "type": "library",
  8486. "autoload": {
  8487. "psr-4": {
  8488. "Laminas\\Feed\\": "src/"
  8489. }
  8490. },
  8491. "notification-url": "https://packagist.org/downloads/",
  8492. "license": [
  8493. "BSD-3-Clause"
  8494. ],
  8495. "description": "provides functionality for consuming RSS and Atom feeds",
  8496. "homepage": "https://laminas.dev",
  8497. "keywords": [
  8498. "feed",
  8499. "laminas"
  8500. ],
  8501. "funding": [
  8502. {
  8503. "url": "https://funding.communitybridge.org/projects/laminas-project",
  8504. "type": "community_bridge"
  8505. }
  8506. ],
  8507. "time": "2020-11-18T21:02:52+00:00"
  8508. },
  8509. {
  8510. "name": "laminas/laminas-stdlib",
  8511. "version": "3.3.0",
  8512. "source": {
  8513. "type": "git",
  8514. "url": "https://github.com/laminas/laminas-stdlib.git",
  8515. "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6"
  8516. },
  8517. "dist": {
  8518. "type": "zip",
  8519. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/b9d84eaa39fde733356ea948cdef36c631f202b6",
  8520. "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6",
  8521. "shasum": ""
  8522. },
  8523. "require": {
  8524. "laminas/laminas-zendframework-bridge": "^1.0",
  8525. "php": "^7.3 || ^8.0"
  8526. },
  8527. "replace": {
  8528. "zendframework/zend-stdlib": "^3.2.1"
  8529. },
  8530. "require-dev": {
  8531. "laminas/laminas-coding-standard": "~1.0.0",
  8532. "phpbench/phpbench": "^0.17.1",
  8533. "phpunit/phpunit": "^9.3.7"
  8534. },
  8535. "type": "library",
  8536. "extra": {
  8537. "branch-alias": {
  8538. "dev-master": "3.3.x-dev",
  8539. "dev-develop": "3.4.x-dev"
  8540. }
  8541. },
  8542. "autoload": {
  8543. "psr-4": {
  8544. "Laminas\\Stdlib\\": "src/"
  8545. }
  8546. },
  8547. "notification-url": "https://packagist.org/downloads/",
  8548. "license": [
  8549. "BSD-3-Clause"
  8550. ],
  8551. "description": "SPL extensions, array utilities, error handlers, and more",
  8552. "homepage": "https://laminas.dev",
  8553. "keywords": [
  8554. "laminas",
  8555. "stdlib"
  8556. ],
  8557. "funding": [
  8558. {
  8559. "url": "https://funding.communitybridge.org/projects/laminas-project",
  8560. "type": "community_bridge"
  8561. }
  8562. ],
  8563. "time": "2020-08-25T09:08:16+00:00"
  8564. },
  8565. {
  8566. "name": "laminas/laminas-zendframework-bridge",
  8567. "version": "1.1.1",
  8568. "source": {
  8569. "type": "git",
  8570. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  8571. "reference": "6ede70583e101030bcace4dcddd648f760ddf642"
  8572. },
  8573. "dist": {
  8574. "type": "zip",
  8575. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/6ede70583e101030bcace4dcddd648f760ddf642",
  8576. "reference": "6ede70583e101030bcace4dcddd648f760ddf642",
  8577. "shasum": ""
  8578. },
  8579. "require": {
  8580. "php": "^5.6 || ^7.0 || ^8.0"
  8581. },
  8582. "require-dev": {
  8583. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1 || ^9.3",
  8584. "squizlabs/php_codesniffer": "^3.5"
  8585. },
  8586. "type": "library",
  8587. "extra": {
  8588. "laminas": {
  8589. "module": "Laminas\\ZendFrameworkBridge"
  8590. }
  8591. },
  8592. "autoload": {
  8593. "files": [
  8594. "src/autoload.php"
  8595. ],
  8596. "psr-4": {
  8597. "Laminas\\ZendFrameworkBridge\\": "src//"
  8598. }
  8599. },
  8600. "notification-url": "https://packagist.org/downloads/",
  8601. "license": [
  8602. "BSD-3-Clause"
  8603. ],
  8604. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  8605. "keywords": [
  8606. "ZendFramework",
  8607. "autoloading",
  8608. "laminas",
  8609. "zf"
  8610. ],
  8611. "funding": [
  8612. {
  8613. "url": "https://funding.communitybridge.org/projects/laminas-project",
  8614. "type": "community_bridge"
  8615. }
  8616. ],
  8617. "time": "2020-09-14T14:23:00+00:00"
  8618. },
  8619. {
  8620. "name": "league/container",
  8621. "version": "2.5.0",
  8622. "source": {
  8623. "type": "git",
  8624. "url": "https://github.com/thephpleague/container.git",
  8625. "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3"
  8626. },
  8627. "dist": {
  8628. "type": "zip",
  8629. "url": "https://api.github.com/repos/thephpleague/container/zipball/8438dc47a0674e3378bcce893a0a04d79a2c22b3",
  8630. "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3",
  8631. "shasum": ""
  8632. },
  8633. "require": {
  8634. "container-interop/container-interop": "^1.2",
  8635. "php": "^5.4 || ^7.0 || ^8.0"
  8636. },
  8637. "provide": {
  8638. "container-interop/container-interop-implementation": "^1.2",
  8639. "psr/container-implementation": "^1.0"
  8640. },
  8641. "replace": {
  8642. "orno/di": "~2.0"
  8643. },
  8644. "require-dev": {
  8645. "phpunit/phpunit": "^4.8.36",
  8646. "scrutinizer/ocular": "^1.3",
  8647. "squizlabs/php_codesniffer": "^3.5"
  8648. },
  8649. "type": "library",
  8650. "extra": {
  8651. "branch-alias": {
  8652. "dev-2.x": "2.x-dev",
  8653. "dev-1.x": "1.x-dev"
  8654. }
  8655. },
  8656. "autoload": {
  8657. "psr-4": {
  8658. "League\\Container\\": "src"
  8659. }
  8660. },
  8661. "notification-url": "https://packagist.org/downloads/",
  8662. "license": [
  8663. "MIT"
  8664. ],
  8665. "authors": [
  8666. {
  8667. "name": "Phil Bennett",
  8668. "email": "philipobenito@gmail.com",
  8669. "homepage": "http://www.philipobenito.com",
  8670. "role": "Developer"
  8671. }
  8672. ],
  8673. "description": "A fast and intuitive dependency injection container.",
  8674. "homepage": "https://github.com/thephpleague/container",
  8675. "keywords": [
  8676. "container",
  8677. "dependency",
  8678. "di",
  8679. "injection",
  8680. "league",
  8681. "provider",
  8682. "service"
  8683. ],
  8684. "funding": [
  8685. {
  8686. "url": "https://github.com/philipobenito",
  8687. "type": "github"
  8688. }
  8689. ],
  8690. "time": "2021-02-22T09:20:06+00:00"
  8691. },
  8692. {
  8693. "name": "lsolesen/pel",
  8694. "version": "0.9.10",
  8695. "source": {
  8696. "type": "git",
  8697. "url": "https://github.com/pel/pel.git",
  8698. "reference": "04ecb8a29e4b1628414193b0df9294232a44f8a9"
  8699. },
  8700. "dist": {
  8701. "type": "zip",
  8702. "url": "https://api.github.com/repos/pel/pel/zipball/04ecb8a29e4b1628414193b0df9294232a44f8a9",
  8703. "reference": "04ecb8a29e4b1628414193b0df9294232a44f8a9",
  8704. "shasum": ""
  8705. },
  8706. "require": {
  8707. "php": ">=7.1.0"
  8708. },
  8709. "require-dev": {
  8710. "ext-exif": "*",
  8711. "ext-gd": "*",
  8712. "php-coveralls/php-coveralls": ">2.4",
  8713. "squizlabs/php_codesniffer": ">3.5",
  8714. "symfony/phpunit-bridge": "^4 || ^5"
  8715. },
  8716. "type": "library",
  8717. "autoload": {
  8718. "psr-4": {
  8719. "lsolesen\\pel\\": "src/"
  8720. }
  8721. },
  8722. "notification-url": "https://packagist.org/downloads/",
  8723. "license": [
  8724. "GPL-2.0"
  8725. ],
  8726. "authors": [
  8727. {
  8728. "name": "Lars Olesen",
  8729. "email": "lars@intraface.dk",
  8730. "homepage": "http://intraface.dk",
  8731. "role": "Developer"
  8732. },
  8733. {
  8734. "name": "Martin Geisler",
  8735. "email": "martin@geisler.net",
  8736. "homepage": "http://geisler.net",
  8737. "role": "Developer"
  8738. }
  8739. ],
  8740. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  8741. "homepage": "http://pel.github.com/pel/",
  8742. "keywords": [
  8743. "exif",
  8744. "image"
  8745. ],
  8746. "time": "2021-01-01T22:15:50+00:00"
  8747. },
  8748. {
  8749. "name": "masterminds/html5",
  8750. "version": "2.7.4",
  8751. "source": {
  8752. "type": "git",
  8753. "url": "https://github.com/Masterminds/html5-php.git",
  8754. "reference": "9227822783c75406cfe400984b2f095cdf03d417"
  8755. },
  8756. "dist": {
  8757. "type": "zip",
  8758. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/9227822783c75406cfe400984b2f095cdf03d417",
  8759. "reference": "9227822783c75406cfe400984b2f095cdf03d417",
  8760. "shasum": ""
  8761. },
  8762. "require": {
  8763. "ext-ctype": "*",
  8764. "ext-dom": "*",
  8765. "ext-libxml": "*",
  8766. "php": ">=5.3.0"
  8767. },
  8768. "require-dev": {
  8769. "phpunit/phpunit": "^4.8.35"
  8770. },
  8771. "type": "library",
  8772. "extra": {
  8773. "branch-alias": {
  8774. "dev-master": "2.7-dev"
  8775. }
  8776. },
  8777. "autoload": {
  8778. "psr-4": {
  8779. "Masterminds\\": "src"
  8780. }
  8781. },
  8782. "notification-url": "https://packagist.org/downloads/",
  8783. "license": [
  8784. "MIT"
  8785. ],
  8786. "authors": [
  8787. {
  8788. "name": "Matt Butcher",
  8789. "email": "technosophos@gmail.com"
  8790. },
  8791. {
  8792. "name": "Matt Farina",
  8793. "email": "matt@mattfarina.com"
  8794. },
  8795. {
  8796. "name": "Asmir Mustafic",
  8797. "email": "goetas@gmail.com"
  8798. }
  8799. ],
  8800. "description": "An HTML5 parser and serializer.",
  8801. "homepage": "http://masterminds.github.io/html5-php",
  8802. "keywords": [
  8803. "HTML5",
  8804. "dom",
  8805. "html",
  8806. "parser",
  8807. "querypath",
  8808. "serializer",
  8809. "xml"
  8810. ],
  8811. "time": "2020-10-01T13:52:52+00:00"
  8812. },
  8813. {
  8814. "name": "nikic/php-parser",
  8815. "version": "v4.10.4",
  8816. "source": {
  8817. "type": "git",
  8818. "url": "https://github.com/nikic/PHP-Parser.git",
  8819. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e"
  8820. },
  8821. "dist": {
  8822. "type": "zip",
  8823. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  8824. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  8825. "shasum": ""
  8826. },
  8827. "require": {
  8828. "ext-tokenizer": "*",
  8829. "php": ">=7.0"
  8830. },
  8831. "require-dev": {
  8832. "ircmaxell/php-yacc": "^0.0.7",
  8833. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  8834. },
  8835. "bin": [
  8836. "bin/php-parse"
  8837. ],
  8838. "type": "library",
  8839. "extra": {
  8840. "branch-alias": {
  8841. "dev-master": "4.9-dev"
  8842. }
  8843. },
  8844. "autoload": {
  8845. "psr-4": {
  8846. "PhpParser\\": "lib/PhpParser"
  8847. }
  8848. },
  8849. "notification-url": "https://packagist.org/downloads/",
  8850. "license": [
  8851. "BSD-3-Clause"
  8852. ],
  8853. "authors": [
  8854. {
  8855. "name": "Nikita Popov"
  8856. }
  8857. ],
  8858. "description": "A PHP parser written in PHP",
  8859. "keywords": [
  8860. "parser",
  8861. "php"
  8862. ],
  8863. "time": "2020-12-20T10:01:03+00:00"
  8864. },
  8865. {
  8866. "name": "pear/archive_tar",
  8867. "version": "1.4.13",
  8868. "source": {
  8869. "type": "git",
  8870. "url": "https://github.com/pear/Archive_Tar.git",
  8871. "reference": "2b87b41178cc6d4ad3cba678a46a1cae49786011"
  8872. },
  8873. "dist": {
  8874. "type": "zip",
  8875. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/2b87b41178cc6d4ad3cba678a46a1cae49786011",
  8876. "reference": "2b87b41178cc6d4ad3cba678a46a1cae49786011",
  8877. "shasum": ""
  8878. },
  8879. "require": {
  8880. "pear/pear-core-minimal": "^1.10.0alpha2",
  8881. "php": ">=5.2.0"
  8882. },
  8883. "require-dev": {
  8884. "phpunit/phpunit": "*"
  8885. },
  8886. "suggest": {
  8887. "ext-bz2": "Bz2 compression support.",
  8888. "ext-xz": "Lzma2 compression support.",
  8889. "ext-zlib": "Gzip compression support."
  8890. },
  8891. "type": "library",
  8892. "extra": {
  8893. "branch-alias": {
  8894. "dev-master": "1.4.x-dev"
  8895. }
  8896. },
  8897. "autoload": {
  8898. "psr-0": {
  8899. "Archive_Tar": ""
  8900. }
  8901. },
  8902. "notification-url": "https://packagist.org/downloads/",
  8903. "include-path": [
  8904. "./"
  8905. ],
  8906. "license": [
  8907. "BSD-3-Clause"
  8908. ],
  8909. "authors": [
  8910. {
  8911. "name": "Vincent Blavet",
  8912. "email": "vincent@phpconcept.net"
  8913. },
  8914. {
  8915. "name": "Greg Beaver",
  8916. "email": "greg@chiaraquartet.net"
  8917. },
  8918. {
  8919. "name": "Michiel Rook",
  8920. "email": "mrook@php.net"
  8921. }
  8922. ],
  8923. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  8924. "homepage": "https://github.com/pear/Archive_Tar",
  8925. "keywords": [
  8926. "archive",
  8927. "tar"
  8928. ],
  8929. "funding": [
  8930. {
  8931. "url": "https://github.com/mrook",
  8932. "type": "github"
  8933. },
  8934. {
  8935. "url": "https://www.patreon.com/michielrook",
  8936. "type": "patreon"
  8937. }
  8938. ],
  8939. "time": "2021-02-16T10:50:50+00:00"
  8940. },
  8941. {
  8942. "name": "pear/console_getopt",
  8943. "version": "v1.4.3",
  8944. "source": {
  8945. "type": "git",
  8946. "url": "https://github.com/pear/Console_Getopt.git",
  8947. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  8948. },
  8949. "dist": {
  8950. "type": "zip",
  8951. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  8952. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  8953. "shasum": ""
  8954. },
  8955. "type": "library",
  8956. "autoload": {
  8957. "psr-0": {
  8958. "Console": "./"
  8959. }
  8960. },
  8961. "notification-url": "https://packagist.org/downloads/",
  8962. "include-path": [
  8963. "./"
  8964. ],
  8965. "license": [
  8966. "BSD-2-Clause"
  8967. ],
  8968. "authors": [
  8969. {
  8970. "name": "Andrei Zmievski",
  8971. "email": "andrei@php.net",
  8972. "role": "Lead"
  8973. },
  8974. {
  8975. "name": "Stig Bakken",
  8976. "email": "stig@php.net",
  8977. "role": "Developer"
  8978. },
  8979. {
  8980. "name": "Greg Beaver",
  8981. "email": "cellog@php.net",
  8982. "role": "Helper"
  8983. }
  8984. ],
  8985. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  8986. "time": "2019-11-20T18:27:48+00:00"
  8987. },
  8988. {
  8989. "name": "pear/pear-core-minimal",
  8990. "version": "v1.10.10",
  8991. "source": {
  8992. "type": "git",
  8993. "url": "https://github.com/pear/pear-core-minimal.git",
  8994. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  8995. },
  8996. "dist": {
  8997. "type": "zip",
  8998. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  8999. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  9000. "shasum": ""
  9001. },
  9002. "require": {
  9003. "pear/console_getopt": "~1.4",
  9004. "pear/pear_exception": "~1.0"
  9005. },
  9006. "replace": {
  9007. "rsky/pear-core-min": "self.version"
  9008. },
  9009. "type": "library",
  9010. "autoload": {
  9011. "psr-0": {
  9012. "": "src/"
  9013. }
  9014. },
  9015. "notification-url": "https://packagist.org/downloads/",
  9016. "include-path": [
  9017. "src/"
  9018. ],
  9019. "license": [
  9020. "BSD-3-Clause"
  9021. ],
  9022. "authors": [
  9023. {
  9024. "name": "Christian Weiske",
  9025. "email": "cweiske@php.net",
  9026. "role": "Lead"
  9027. }
  9028. ],
  9029. "description": "Minimal set of PEAR core files to be used as composer dependency",
  9030. "time": "2019-11-19T19:00:24+00:00"
  9031. },
  9032. {
  9033. "name": "pear/pear_exception",
  9034. "version": "v1.0.1",
  9035. "source": {
  9036. "type": "git",
  9037. "url": "https://github.com/pear/PEAR_Exception.git",
  9038. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7"
  9039. },
  9040. "dist": {
  9041. "type": "zip",
  9042. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  9043. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  9044. "shasum": ""
  9045. },
  9046. "require": {
  9047. "php": ">=4.4.0"
  9048. },
  9049. "require-dev": {
  9050. "phpunit/phpunit": "*"
  9051. },
  9052. "type": "class",
  9053. "extra": {
  9054. "branch-alias": {
  9055. "dev-master": "1.0.x-dev"
  9056. }
  9057. },
  9058. "autoload": {
  9059. "classmap": [
  9060. "PEAR/"
  9061. ]
  9062. },
  9063. "notification-url": "https://packagist.org/downloads/",
  9064. "include-path": [
  9065. "."
  9066. ],
  9067. "license": [
  9068. "BSD-2-Clause"
  9069. ],
  9070. "authors": [
  9071. {
  9072. "name": "Helgi Thormar",
  9073. "email": "dufuz@php.net"
  9074. },
  9075. {
  9076. "name": "Greg Beaver",
  9077. "email": "cellog@php.net"
  9078. }
  9079. ],
  9080. "description": "The PEAR Exception base class.",
  9081. "homepage": "https://github.com/pear/PEAR_Exception",
  9082. "keywords": [
  9083. "exception"
  9084. ],
  9085. "time": "2019-12-10T10:24:42+00:00"
  9086. },
  9087. {
  9088. "name": "phenx/php-font-lib",
  9089. "version": "0.5.2",
  9090. "source": {
  9091. "type": "git",
  9092. "url": "https://github.com/PhenX/php-font-lib.git",
  9093. "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8"
  9094. },
  9095. "dist": {
  9096. "type": "zip",
  9097. "url": "https://api.github.com/repos/PhenX/php-font-lib/zipball/ca6ad461f032145fff5971b5985e5af9e7fa88d8",
  9098. "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8",
  9099. "shasum": ""
  9100. },
  9101. "require-dev": {
  9102. "phpunit/phpunit": "^4.8.35 || ^5 || ^6 || ^7"
  9103. },
  9104. "type": "library",
  9105. "autoload": {
  9106. "psr-4": {
  9107. "FontLib\\": "src/FontLib"
  9108. }
  9109. },
  9110. "notification-url": "https://packagist.org/downloads/",
  9111. "license": [
  9112. "LGPL-3.0"
  9113. ],
  9114. "authors": [
  9115. {
  9116. "name": "Fabien Ménager",
  9117. "email": "fabien.menager@gmail.com"
  9118. }
  9119. ],
  9120. "description": "A library to read, parse, export and make subsets of different types of font files.",
  9121. "homepage": "https://github.com/PhenX/php-font-lib",
  9122. "time": "2020-03-08T15:31:32+00:00"
  9123. },
  9124. {
  9125. "name": "phpmailer/phpmailer",
  9126. "version": "v6.3.0",
  9127. "source": {
  9128. "type": "git",
  9129. "url": "https://github.com/PHPMailer/PHPMailer.git",
  9130. "reference": "4a08cf4cdd2c38d12ee2b9fa69e5d235f37a6dcb"
  9131. },
  9132. "dist": {
  9133. "type": "zip",
  9134. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/4a08cf4cdd2c38d12ee2b9fa69e5d235f37a6dcb",
  9135. "reference": "4a08cf4cdd2c38d12ee2b9fa69e5d235f37a6dcb",
  9136. "shasum": ""
  9137. },
  9138. "require": {
  9139. "ext-ctype": "*",
  9140. "ext-filter": "*",
  9141. "ext-hash": "*",
  9142. "php": ">=5.5.0"
  9143. },
  9144. "require-dev": {
  9145. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  9146. "doctrine/annotations": "^1.2",
  9147. "phpcompatibility/php-compatibility": "^9.3.5",
  9148. "roave/security-advisories": "dev-latest",
  9149. "squizlabs/php_codesniffer": "^3.5.6",
  9150. "yoast/phpunit-polyfills": "^0.2.0"
  9151. },
  9152. "suggest": {
  9153. "ext-mbstring": "Needed to send email in multibyte encoding charset",
  9154. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  9155. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  9156. "psr/log": "For optional PSR-3 debug logging",
  9157. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  9158. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  9159. },
  9160. "type": "library",
  9161. "autoload": {
  9162. "psr-4": {
  9163. "PHPMailer\\PHPMailer\\": "src/"
  9164. }
  9165. },
  9166. "notification-url": "https://packagist.org/downloads/",
  9167. "license": [
  9168. "LGPL-2.1-only"
  9169. ],
  9170. "authors": [
  9171. {
  9172. "name": "Marcus Bointon",
  9173. "email": "phpmailer@synchromedia.co.uk"
  9174. },
  9175. {
  9176. "name": "Jim Jagielski",
  9177. "email": "jimjag@gmail.com"
  9178. },
  9179. {
  9180. "name": "Andy Prevost",
  9181. "email": "codeworxtech@users.sourceforge.net"
  9182. },
  9183. {
  9184. "name": "Brent R. Matzelle"
  9185. }
  9186. ],
  9187. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  9188. "funding": [
  9189. {
  9190. "url": "https://github.com/Synchro",
  9191. "type": "github"
  9192. }
  9193. ],
  9194. "time": "2021-02-19T15:28:08+00:00"
  9195. },
  9196. {
  9197. "name": "psr/container",
  9198. "version": "1.0.0",
  9199. "source": {
  9200. "type": "git",
  9201. "url": "https://github.com/php-fig/container.git",
  9202. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  9203. },
  9204. "dist": {
  9205. "type": "zip",
  9206. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  9207. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  9208. "shasum": ""
  9209. },
  9210. "require": {
  9211. "php": ">=5.3.0"
  9212. },
  9213. "type": "library",
  9214. "extra": {
  9215. "branch-alias": {
  9216. "dev-master": "1.0.x-dev"
  9217. }
  9218. },
  9219. "autoload": {
  9220. "psr-4": {
  9221. "Psr\\Container\\": "src/"
  9222. }
  9223. },
  9224. "notification-url": "https://packagist.org/downloads/",
  9225. "license": [
  9226. "MIT"
  9227. ],
  9228. "authors": [
  9229. {
  9230. "name": "PHP-FIG",
  9231. "homepage": "http://www.php-fig.org/"
  9232. }
  9233. ],
  9234. "description": "Common Container Interface (PHP FIG PSR-11)",
  9235. "homepage": "https://github.com/php-fig/container",
  9236. "keywords": [
  9237. "PSR-11",
  9238. "container",
  9239. "container-interface",
  9240. "container-interop",
  9241. "psr"
  9242. ],
  9243. "time": "2017-02-14T16:28:37+00:00"
  9244. },
  9245. {
  9246. "name": "psr/http-factory",
  9247. "version": "1.0.1",
  9248. "source": {
  9249. "type": "git",
  9250. "url": "https://github.com/php-fig/http-factory.git",
  9251. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  9252. },
  9253. "dist": {
  9254. "type": "zip",
  9255. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  9256. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  9257. "shasum": ""
  9258. },
  9259. "require": {
  9260. "php": ">=7.0.0",
  9261. "psr/http-message": "^1.0"
  9262. },
  9263. "type": "library",
  9264. "extra": {
  9265. "branch-alias": {
  9266. "dev-master": "1.0.x-dev"
  9267. }
  9268. },
  9269. "autoload": {
  9270. "psr-4": {
  9271. "Psr\\Http\\Message\\": "src/"
  9272. }
  9273. },
  9274. "notification-url": "https://packagist.org/downloads/",
  9275. "license": [
  9276. "MIT"
  9277. ],
  9278. "authors": [
  9279. {
  9280. "name": "PHP-FIG",
  9281. "homepage": "http://www.php-fig.org/"
  9282. }
  9283. ],
  9284. "description": "Common interfaces for PSR-7 HTTP message factories",
  9285. "keywords": [
  9286. "factory",
  9287. "http",
  9288. "message",
  9289. "psr",
  9290. "psr-17",
  9291. "psr-7",
  9292. "request",
  9293. "response"
  9294. ],
  9295. "time": "2019-04-30T12:38:16+00:00"
  9296. },
  9297. {
  9298. "name": "psr/http-message",
  9299. "version": "1.0.1",
  9300. "source": {
  9301. "type": "git",
  9302. "url": "https://github.com/php-fig/http-message.git",
  9303. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  9304. },
  9305. "dist": {
  9306. "type": "zip",
  9307. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  9308. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  9309. "shasum": ""
  9310. },
  9311. "require": {
  9312. "php": ">=5.3.0"
  9313. },
  9314. "type": "library",
  9315. "extra": {
  9316. "branch-alias": {
  9317. "dev-master": "1.0.x-dev"
  9318. }
  9319. },
  9320. "autoload": {
  9321. "psr-4": {
  9322. "Psr\\Http\\Message\\": "src/"
  9323. }
  9324. },
  9325. "notification-url": "https://packagist.org/downloads/",
  9326. "license": [
  9327. "MIT"
  9328. ],
  9329. "authors": [
  9330. {
  9331. "name": "PHP-FIG",
  9332. "homepage": "http://www.php-fig.org/"
  9333. }
  9334. ],
  9335. "description": "Common interface for HTTP messages",
  9336. "homepage": "https://github.com/php-fig/http-message",
  9337. "keywords": [
  9338. "http",
  9339. "http-message",
  9340. "psr",
  9341. "psr-7",
  9342. "request",
  9343. "response"
  9344. ],
  9345. "time": "2016-08-06T14:39:51+00:00"
  9346. },
  9347. {
  9348. "name": "psr/log",
  9349. "version": "1.1.3",
  9350. "source": {
  9351. "type": "git",
  9352. "url": "https://github.com/php-fig/log.git",
  9353. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  9354. },
  9355. "dist": {
  9356. "type": "zip",
  9357. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  9358. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  9359. "shasum": ""
  9360. },
  9361. "require": {
  9362. "php": ">=5.3.0"
  9363. },
  9364. "type": "library",
  9365. "extra": {
  9366. "branch-alias": {
  9367. "dev-master": "1.1.x-dev"
  9368. }
  9369. },
  9370. "autoload": {
  9371. "psr-4": {
  9372. "Psr\\Log\\": "Psr/Log/"
  9373. }
  9374. },
  9375. "notification-url": "https://packagist.org/downloads/",
  9376. "license": [
  9377. "MIT"
  9378. ],
  9379. "authors": [
  9380. {
  9381. "name": "PHP-FIG",
  9382. "homepage": "http://www.php-fig.org/"
  9383. }
  9384. ],
  9385. "description": "Common interface for logging libraries",
  9386. "homepage": "https://github.com/php-fig/log",
  9387. "keywords": [
  9388. "log",
  9389. "psr",
  9390. "psr-3"
  9391. ],
  9392. "time": "2020-03-23T09:12:05+00:00"
  9393. },
  9394. {
  9395. "name": "psy/psysh",
  9396. "version": "v0.10.7",
  9397. "source": {
  9398. "type": "git",
  9399. "url": "https://github.com/bobthecow/psysh.git",
  9400. "reference": "a395af46999a12006213c0c8346c9445eb31640c"
  9401. },
  9402. "dist": {
  9403. "type": "zip",
  9404. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a395af46999a12006213c0c8346c9445eb31640c",
  9405. "reference": "a395af46999a12006213c0c8346c9445eb31640c",
  9406. "shasum": ""
  9407. },
  9408. "require": {
  9409. "dnoegel/php-xdg-base-dir": "0.1.*",
  9410. "ext-json": "*",
  9411. "ext-tokenizer": "*",
  9412. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  9413. "php": "^8.0 || ^7.0 || ^5.5.9",
  9414. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  9415. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  9416. },
  9417. "require-dev": {
  9418. "bamarni/composer-bin-plugin": "^1.2",
  9419. "hoa/console": "3.17.*"
  9420. },
  9421. "suggest": {
  9422. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  9423. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  9424. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  9425. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  9426. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  9427. },
  9428. "bin": [
  9429. "bin/psysh"
  9430. ],
  9431. "type": "library",
  9432. "extra": {
  9433. "branch-alias": {
  9434. "dev-main": "0.10.x-dev"
  9435. }
  9436. },
  9437. "autoload": {
  9438. "files": [
  9439. "src/functions.php"
  9440. ],
  9441. "psr-4": {
  9442. "Psy\\": "src/"
  9443. }
  9444. },
  9445. "notification-url": "https://packagist.org/downloads/",
  9446. "license": [
  9447. "MIT"
  9448. ],
  9449. "authors": [
  9450. {
  9451. "name": "Justin Hileman",
  9452. "email": "justin@justinhileman.info",
  9453. "homepage": "http://justinhileman.com"
  9454. }
  9455. ],
  9456. "description": "An interactive shell for modern PHP.",
  9457. "homepage": "http://psysh.org",
  9458. "keywords": [
  9459. "REPL",
  9460. "console",
  9461. "interactive",
  9462. "shell"
  9463. ],
  9464. "time": "2021-03-14T02:14:56+00:00"
  9465. },
  9466. {
  9467. "name": "ralouphie/getallheaders",
  9468. "version": "3.0.3",
  9469. "source": {
  9470. "type": "git",
  9471. "url": "https://github.com/ralouphie/getallheaders.git",
  9472. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  9473. },
  9474. "dist": {
  9475. "type": "zip",
  9476. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  9477. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  9478. "shasum": ""
  9479. },
  9480. "require": {
  9481. "php": ">=5.6"
  9482. },
  9483. "require-dev": {
  9484. "php-coveralls/php-coveralls": "^2.1",
  9485. "phpunit/phpunit": "^5 || ^6.5"
  9486. },
  9487. "type": "library",
  9488. "autoload": {
  9489. "files": [
  9490. "src/getallheaders.php"
  9491. ]
  9492. },
  9493. "notification-url": "https://packagist.org/downloads/",
  9494. "license": [
  9495. "MIT"
  9496. ],
  9497. "authors": [
  9498. {
  9499. "name": "Ralph Khattar",
  9500. "email": "ralph.khattar@gmail.com"
  9501. }
  9502. ],
  9503. "description": "A polyfill for getallheaders.",
  9504. "time": "2019-03-08T08:55:37+00:00"
  9505. },
  9506. {
  9507. "name": "stack/builder",
  9508. "version": "v1.0.6",
  9509. "source": {
  9510. "type": "git",
  9511. "url": "https://github.com/stackphp/builder.git",
  9512. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c"
  9513. },
  9514. "dist": {
  9515. "type": "zip",
  9516. "url": "https://api.github.com/repos/stackphp/builder/zipball/a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  9517. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  9518. "shasum": ""
  9519. },
  9520. "require": {
  9521. "php": ">=7.2.0",
  9522. "symfony/http-foundation": "~2.1|~3.0|~4.0|~5.0",
  9523. "symfony/http-kernel": "~2.1|~3.0|~4.0|~5.0"
  9524. },
  9525. "require-dev": {
  9526. "phpunit/phpunit": "~8.0",
  9527. "symfony/routing": "^5.0"
  9528. },
  9529. "type": "library",
  9530. "extra": {
  9531. "branch-alias": {
  9532. "dev-master": "1.0-dev"
  9533. }
  9534. },
  9535. "autoload": {
  9536. "psr-0": {
  9537. "Stack": "src"
  9538. }
  9539. },
  9540. "notification-url": "https://packagist.org/downloads/",
  9541. "license": [
  9542. "MIT"
  9543. ],
  9544. "authors": [
  9545. {
  9546. "name": "Igor Wiedler",
  9547. "email": "igor@wiedler.ch"
  9548. }
  9549. ],
  9550. "description": "Builder for stack middleware based on HttpKernelInterface.",
  9551. "keywords": [
  9552. "stack"
  9553. ],
  9554. "time": "2020-01-30T12:17:27+00:00"
  9555. },
  9556. {
  9557. "name": "stecman/symfony-console-completion",
  9558. "version": "0.11.0",
  9559. "source": {
  9560. "type": "git",
  9561. "url": "https://github.com/stecman/symfony-console-completion.git",
  9562. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518"
  9563. },
  9564. "dist": {
  9565. "type": "zip",
  9566. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/a9502dab59405e275a9f264536c4e1cb61fc3518",
  9567. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518",
  9568. "shasum": ""
  9569. },
  9570. "require": {
  9571. "php": ">=5.3.2",
  9572. "symfony/console": "~2.3 || ~3.0 || ~4.0 || ~5.0"
  9573. },
  9574. "require-dev": {
  9575. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  9576. },
  9577. "type": "library",
  9578. "extra": {
  9579. "branch-alias": {
  9580. "dev-master": "0.10.x-dev"
  9581. }
  9582. },
  9583. "autoload": {
  9584. "psr-4": {
  9585. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  9586. }
  9587. },
  9588. "notification-url": "https://packagist.org/downloads/",
  9589. "license": [
  9590. "MIT"
  9591. ],
  9592. "authors": [
  9593. {
  9594. "name": "Stephen Holdaway",
  9595. "email": "stephen@stecman.co.nz"
  9596. }
  9597. ],
  9598. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  9599. "time": "2019-11-24T17:03:06+00:00"
  9600. },
  9601. {
  9602. "name": "symfony-cmf/routing",
  9603. "version": "2.3.3",
  9604. "source": {
  9605. "type": "git",
  9606. "url": "https://github.com/symfony-cmf/Routing.git",
  9607. "reference": "3c97e7b7709b313cecfb76d691ad4cc22acbf3f5"
  9608. },
  9609. "dist": {
  9610. "type": "zip",
  9611. "url": "https://api.github.com/repos/symfony-cmf/Routing/zipball/3c97e7b7709b313cecfb76d691ad4cc22acbf3f5",
  9612. "reference": "3c97e7b7709b313cecfb76d691ad4cc22acbf3f5",
  9613. "shasum": ""
  9614. },
  9615. "require": {
  9616. "php": "^7.2 || ^8.0",
  9617. "psr/log": "^1.0",
  9618. "symfony/http-kernel": "^4.4 || ^5.0",
  9619. "symfony/routing": "^4.4 || ^5.0"
  9620. },
  9621. "require-dev": {
  9622. "symfony-cmf/testing": "^3@dev",
  9623. "symfony/config": "^4.4 || ^5.0",
  9624. "symfony/dependency-injection": "^4.4 || ^5.0",
  9625. "symfony/event-dispatcher": "^4.4 || ^5.0",
  9626. "symfony/phpunit-bridge": "^5.0"
  9627. },
  9628. "suggest": {
  9629. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (^4.4 || ^5.0)"
  9630. },
  9631. "type": "library",
  9632. "extra": {
  9633. "branch-alias": {
  9634. "dev-master": "2.x-dev"
  9635. }
  9636. },
  9637. "autoload": {
  9638. "psr-4": {
  9639. "Symfony\\Cmf\\Component\\Routing\\": "src/"
  9640. }
  9641. },
  9642. "notification-url": "https://packagist.org/downloads/",
  9643. "license": [
  9644. "MIT"
  9645. ],
  9646. "authors": [
  9647. {
  9648. "name": "Symfony CMF Community",
  9649. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  9650. }
  9651. ],
  9652. "description": "Extends the Symfony routing component for dynamic routes and chaining several routers",
  9653. "homepage": "http://cmf.symfony.com",
  9654. "keywords": [
  9655. "database",
  9656. "routing"
  9657. ],
  9658. "time": "2020-10-06T10:15:37+00:00"
  9659. },
  9660. {
  9661. "name": "symfony/config",
  9662. "version": "v4.4.20",
  9663. "source": {
  9664. "type": "git",
  9665. "url": "https://github.com/symfony/config.git",
  9666. "reference": "98606c6fa1a8f55ff964ccdd704275bf5b9f71b3"
  9667. },
  9668. "dist": {
  9669. "type": "zip",
  9670. "url": "https://api.github.com/repos/symfony/config/zipball/98606c6fa1a8f55ff964ccdd704275bf5b9f71b3",
  9671. "reference": "98606c6fa1a8f55ff964ccdd704275bf5b9f71b3",
  9672. "shasum": ""
  9673. },
  9674. "require": {
  9675. "php": ">=7.1.3",
  9676. "symfony/filesystem": "^3.4|^4.0|^5.0",
  9677. "symfony/polyfill-ctype": "~1.8"
  9678. },
  9679. "conflict": {
  9680. "symfony/finder": "<3.4"
  9681. },
  9682. "require-dev": {
  9683. "symfony/event-dispatcher": "^3.4|^4.0|^5.0",
  9684. "symfony/finder": "^3.4|^4.0|^5.0",
  9685. "symfony/messenger": "^4.1|^5.0",
  9686. "symfony/service-contracts": "^1.1|^2",
  9687. "symfony/yaml": "^3.4|^4.0|^5.0"
  9688. },
  9689. "suggest": {
  9690. "symfony/yaml": "To use the yaml reference dumper"
  9691. },
  9692. "type": "library",
  9693. "autoload": {
  9694. "psr-4": {
  9695. "Symfony\\Component\\Config\\": ""
  9696. },
  9697. "exclude-from-classmap": [
  9698. "/Tests/"
  9699. ]
  9700. },
  9701. "notification-url": "https://packagist.org/downloads/",
  9702. "license": [
  9703. "MIT"
  9704. ],
  9705. "authors": [
  9706. {
  9707. "name": "Fabien Potencier",
  9708. "email": "fabien@symfony.com"
  9709. },
  9710. {
  9711. "name": "Symfony Community",
  9712. "homepage": "https://symfony.com/contributors"
  9713. }
  9714. ],
  9715. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  9716. "homepage": "https://symfony.com",
  9717. "funding": [
  9718. {
  9719. "url": "https://symfony.com/sponsor",
  9720. "type": "custom"
  9721. },
  9722. {
  9723. "url": "https://github.com/fabpot",
  9724. "type": "github"
  9725. },
  9726. {
  9727. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9728. "type": "tidelift"
  9729. }
  9730. ],
  9731. "time": "2021-02-22T15:36:50+00:00"
  9732. },
  9733. {
  9734. "name": "symfony/console",
  9735. "version": "v4.4.16",
  9736. "source": {
  9737. "type": "git",
  9738. "url": "https://github.com/symfony/console.git",
  9739. "reference": "20f73dd143a5815d475e0838ff867bce1eebd9d5"
  9740. },
  9741. "dist": {
  9742. "type": "zip",
  9743. "url": "https://api.github.com/repos/symfony/console/zipball/20f73dd143a5815d475e0838ff867bce1eebd9d5",
  9744. "reference": "20f73dd143a5815d475e0838ff867bce1eebd9d5",
  9745. "shasum": ""
  9746. },
  9747. "require": {
  9748. "php": ">=7.1.3",
  9749. "symfony/polyfill-mbstring": "~1.0",
  9750. "symfony/polyfill-php73": "^1.8",
  9751. "symfony/polyfill-php80": "^1.15",
  9752. "symfony/service-contracts": "^1.1|^2"
  9753. },
  9754. "conflict": {
  9755. "symfony/dependency-injection": "<3.4",
  9756. "symfony/event-dispatcher": "<4.3|>=5",
  9757. "symfony/lock": "<4.4",
  9758. "symfony/process": "<3.3"
  9759. },
  9760. "provide": {
  9761. "psr/log-implementation": "1.0"
  9762. },
  9763. "require-dev": {
  9764. "psr/log": "~1.0",
  9765. "symfony/config": "^3.4|^4.0|^5.0",
  9766. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  9767. "symfony/event-dispatcher": "^4.3",
  9768. "symfony/lock": "^4.4|^5.0",
  9769. "symfony/process": "^3.4|^4.0|^5.0",
  9770. "symfony/var-dumper": "^4.3|^5.0"
  9771. },
  9772. "suggest": {
  9773. "psr/log": "For using the console logger",
  9774. "symfony/event-dispatcher": "",
  9775. "symfony/lock": "",
  9776. "symfony/process": ""
  9777. },
  9778. "type": "library",
  9779. "autoload": {
  9780. "psr-4": {
  9781. "Symfony\\Component\\Console\\": ""
  9782. },
  9783. "exclude-from-classmap": [
  9784. "/Tests/"
  9785. ]
  9786. },
  9787. "notification-url": "https://packagist.org/downloads/",
  9788. "license": [
  9789. "MIT"
  9790. ],
  9791. "authors": [
  9792. {
  9793. "name": "Fabien Potencier",
  9794. "email": "fabien@symfony.com"
  9795. },
  9796. {
  9797. "name": "Symfony Community",
  9798. "homepage": "https://symfony.com/contributors"
  9799. }
  9800. ],
  9801. "description": "Symfony Console Component",
  9802. "homepage": "https://symfony.com",
  9803. "funding": [
  9804. {
  9805. "url": "https://symfony.com/sponsor",
  9806. "type": "custom"
  9807. },
  9808. {
  9809. "url": "https://github.com/fabpot",
  9810. "type": "github"
  9811. },
  9812. {
  9813. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9814. "type": "tidelift"
  9815. }
  9816. ],
  9817. "time": "2020-10-24T11:50:19+00:00"
  9818. },
  9819. {
  9820. "name": "symfony/css-selector",
  9821. "version": "v4.4.20",
  9822. "source": {
  9823. "type": "git",
  9824. "url": "https://github.com/symfony/css-selector.git",
  9825. "reference": "f907d3e53ecb2a5fad8609eb2f30525287a734c8"
  9826. },
  9827. "dist": {
  9828. "type": "zip",
  9829. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f907d3e53ecb2a5fad8609eb2f30525287a734c8",
  9830. "reference": "f907d3e53ecb2a5fad8609eb2f30525287a734c8",
  9831. "shasum": ""
  9832. },
  9833. "require": {
  9834. "php": ">=7.1.3"
  9835. },
  9836. "type": "library",
  9837. "autoload": {
  9838. "psr-4": {
  9839. "Symfony\\Component\\CssSelector\\": ""
  9840. },
  9841. "exclude-from-classmap": [
  9842. "/Tests/"
  9843. ]
  9844. },
  9845. "notification-url": "https://packagist.org/downloads/",
  9846. "license": [
  9847. "MIT"
  9848. ],
  9849. "authors": [
  9850. {
  9851. "name": "Fabien Potencier",
  9852. "email": "fabien@symfony.com"
  9853. },
  9854. {
  9855. "name": "Jean-François Simon",
  9856. "email": "jeanfrancois.simon@sensiolabs.com"
  9857. },
  9858. {
  9859. "name": "Symfony Community",
  9860. "homepage": "https://symfony.com/contributors"
  9861. }
  9862. ],
  9863. "description": "Converts CSS selectors to XPath expressions",
  9864. "homepage": "https://symfony.com",
  9865. "funding": [
  9866. {
  9867. "url": "https://symfony.com/sponsor",
  9868. "type": "custom"
  9869. },
  9870. {
  9871. "url": "https://github.com/fabpot",
  9872. "type": "github"
  9873. },
  9874. {
  9875. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9876. "type": "tidelift"
  9877. }
  9878. ],
  9879. "time": "2021-01-27T09:09:26+00:00"
  9880. },
  9881. {
  9882. "name": "symfony/debug",
  9883. "version": "v4.4.16",
  9884. "source": {
  9885. "type": "git",
  9886. "url": "https://github.com/symfony/debug.git",
  9887. "reference": "c87adf3fc1cd0bf4758316a3a150d50a8f957ef4"
  9888. },
  9889. "dist": {
  9890. "type": "zip",
  9891. "url": "https://api.github.com/repos/symfony/debug/zipball/c87adf3fc1cd0bf4758316a3a150d50a8f957ef4",
  9892. "reference": "c87adf3fc1cd0bf4758316a3a150d50a8f957ef4",
  9893. "shasum": ""
  9894. },
  9895. "require": {
  9896. "php": ">=7.1.3",
  9897. "psr/log": "~1.0",
  9898. "symfony/polyfill-php80": "^1.15"
  9899. },
  9900. "conflict": {
  9901. "symfony/http-kernel": "<3.4"
  9902. },
  9903. "require-dev": {
  9904. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  9905. },
  9906. "type": "library",
  9907. "autoload": {
  9908. "psr-4": {
  9909. "Symfony\\Component\\Debug\\": ""
  9910. },
  9911. "exclude-from-classmap": [
  9912. "/Tests/"
  9913. ]
  9914. },
  9915. "notification-url": "https://packagist.org/downloads/",
  9916. "license": [
  9917. "MIT"
  9918. ],
  9919. "authors": [
  9920. {
  9921. "name": "Fabien Potencier",
  9922. "email": "fabien@symfony.com"
  9923. },
  9924. {
  9925. "name": "Symfony Community",
  9926. "homepage": "https://symfony.com/contributors"
  9927. }
  9928. ],
  9929. "description": "Symfony Debug Component",
  9930. "homepage": "https://symfony.com",
  9931. "funding": [
  9932. {
  9933. "url": "https://symfony.com/sponsor",
  9934. "type": "custom"
  9935. },
  9936. {
  9937. "url": "https://github.com/fabpot",
  9938. "type": "github"
  9939. },
  9940. {
  9941. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9942. "type": "tidelift"
  9943. }
  9944. ],
  9945. "time": "2020-10-24T11:50:19+00:00"
  9946. },
  9947. {
  9948. "name": "symfony/dependency-injection",
  9949. "version": "v4.4.16",
  9950. "source": {
  9951. "type": "git",
  9952. "url": "https://github.com/symfony/dependency-injection.git",
  9953. "reference": "4c41ad68924fd8f9e55e1cd77fd6bc28daa3fe89"
  9954. },
  9955. "dist": {
  9956. "type": "zip",
  9957. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/4c41ad68924fd8f9e55e1cd77fd6bc28daa3fe89",
  9958. "reference": "4c41ad68924fd8f9e55e1cd77fd6bc28daa3fe89",
  9959. "shasum": ""
  9960. },
  9961. "require": {
  9962. "php": ">=7.1.3",
  9963. "psr/container": "^1.0",
  9964. "symfony/service-contracts": "^1.1.6|^2"
  9965. },
  9966. "conflict": {
  9967. "symfony/config": "<4.3|>=5.0",
  9968. "symfony/finder": "<3.4",
  9969. "symfony/proxy-manager-bridge": "<3.4",
  9970. "symfony/yaml": "<3.4"
  9971. },
  9972. "provide": {
  9973. "psr/container-implementation": "1.0",
  9974. "symfony/service-implementation": "1.0"
  9975. },
  9976. "require-dev": {
  9977. "symfony/config": "^4.3",
  9978. "symfony/expression-language": "^3.4|^4.0|^5.0",
  9979. "symfony/yaml": "^3.4|^4.0|^5.0"
  9980. },
  9981. "suggest": {
  9982. "symfony/config": "",
  9983. "symfony/expression-language": "For using expressions in service container configuration",
  9984. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  9985. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  9986. "symfony/yaml": ""
  9987. },
  9988. "type": "library",
  9989. "autoload": {
  9990. "psr-4": {
  9991. "Symfony\\Component\\DependencyInjection\\": ""
  9992. },
  9993. "exclude-from-classmap": [
  9994. "/Tests/"
  9995. ]
  9996. },
  9997. "notification-url": "https://packagist.org/downloads/",
  9998. "license": [
  9999. "MIT"
  10000. ],
  10001. "authors": [
  10002. {
  10003. "name": "Fabien Potencier",
  10004. "email": "fabien@symfony.com"
  10005. },
  10006. {
  10007. "name": "Symfony Community",
  10008. "homepage": "https://symfony.com/contributors"
  10009. }
  10010. ],
  10011. "description": "Symfony DependencyInjection Component",
  10012. "homepage": "https://symfony.com",
  10013. "funding": [
  10014. {
  10015. "url": "https://symfony.com/sponsor",
  10016. "type": "custom"
  10017. },
  10018. {
  10019. "url": "https://github.com/fabpot",
  10020. "type": "github"
  10021. },
  10022. {
  10023. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10024. "type": "tidelift"
  10025. }
  10026. ],
  10027. "time": "2020-10-27T10:05:40+00:00"
  10028. },
  10029. {
  10030. "name": "symfony/dom-crawler",
  10031. "version": "v4.4.20",
  10032. "source": {
  10033. "type": "git",
  10034. "url": "https://github.com/symfony/dom-crawler.git",
  10035. "reference": "be133557f1b0e6672367325b508e65da5513a311"
  10036. },
  10037. "dist": {
  10038. "type": "zip",
  10039. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/be133557f1b0e6672367325b508e65da5513a311",
  10040. "reference": "be133557f1b0e6672367325b508e65da5513a311",
  10041. "shasum": ""
  10042. },
  10043. "require": {
  10044. "php": ">=7.1.3",
  10045. "symfony/polyfill-ctype": "~1.8",
  10046. "symfony/polyfill-mbstring": "~1.0"
  10047. },
  10048. "conflict": {
  10049. "masterminds/html5": "<2.6"
  10050. },
  10051. "require-dev": {
  10052. "masterminds/html5": "^2.6",
  10053. "symfony/css-selector": "^3.4|^4.0|^5.0"
  10054. },
  10055. "suggest": {
  10056. "symfony/css-selector": ""
  10057. },
  10058. "type": "library",
  10059. "autoload": {
  10060. "psr-4": {
  10061. "Symfony\\Component\\DomCrawler\\": ""
  10062. },
  10063. "exclude-from-classmap": [
  10064. "/Tests/"
  10065. ]
  10066. },
  10067. "notification-url": "https://packagist.org/downloads/",
  10068. "license": [
  10069. "MIT"
  10070. ],
  10071. "authors": [
  10072. {
  10073. "name": "Fabien Potencier",
  10074. "email": "fabien@symfony.com"
  10075. },
  10076. {
  10077. "name": "Symfony Community",
  10078. "homepage": "https://symfony.com/contributors"
  10079. }
  10080. ],
  10081. "description": "Eases DOM navigation for HTML and XML documents",
  10082. "homepage": "https://symfony.com",
  10083. "funding": [
  10084. {
  10085. "url": "https://symfony.com/sponsor",
  10086. "type": "custom"
  10087. },
  10088. {
  10089. "url": "https://github.com/fabpot",
  10090. "type": "github"
  10091. },
  10092. {
  10093. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10094. "type": "tidelift"
  10095. }
  10096. ],
  10097. "time": "2021-02-14T12:29:41+00:00"
  10098. },
  10099. {
  10100. "name": "symfony/error-handler",
  10101. "version": "v4.4.16",
  10102. "source": {
  10103. "type": "git",
  10104. "url": "https://github.com/symfony/error-handler.git",
  10105. "reference": "363cca01cabf98e4f1c447b14d0a68617f003613"
  10106. },
  10107. "dist": {
  10108. "type": "zip",
  10109. "url": "https://api.github.com/repos/symfony/error-handler/zipball/363cca01cabf98e4f1c447b14d0a68617f003613",
  10110. "reference": "363cca01cabf98e4f1c447b14d0a68617f003613",
  10111. "shasum": ""
  10112. },
  10113. "require": {
  10114. "php": ">=7.1.3",
  10115. "psr/log": "~1.0",
  10116. "symfony/debug": "^4.4.5",
  10117. "symfony/polyfill-php80": "^1.15",
  10118. "symfony/var-dumper": "^4.4|^5.0"
  10119. },
  10120. "require-dev": {
  10121. "symfony/http-kernel": "^4.4|^5.0",
  10122. "symfony/serializer": "^4.4|^5.0"
  10123. },
  10124. "type": "library",
  10125. "autoload": {
  10126. "psr-4": {
  10127. "Symfony\\Component\\ErrorHandler\\": ""
  10128. },
  10129. "exclude-from-classmap": [
  10130. "/Tests/"
  10131. ]
  10132. },
  10133. "notification-url": "https://packagist.org/downloads/",
  10134. "license": [
  10135. "MIT"
  10136. ],
  10137. "authors": [
  10138. {
  10139. "name": "Fabien Potencier",
  10140. "email": "fabien@symfony.com"
  10141. },
  10142. {
  10143. "name": "Symfony Community",
  10144. "homepage": "https://symfony.com/contributors"
  10145. }
  10146. ],
  10147. "description": "Symfony ErrorHandler Component",
  10148. "homepage": "https://symfony.com",
  10149. "funding": [
  10150. {
  10151. "url": "https://symfony.com/sponsor",
  10152. "type": "custom"
  10153. },
  10154. {
  10155. "url": "https://github.com/fabpot",
  10156. "type": "github"
  10157. },
  10158. {
  10159. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10160. "type": "tidelift"
  10161. }
  10162. ],
  10163. "time": "2020-10-24T11:50:19+00:00"
  10164. },
  10165. {
  10166. "name": "symfony/event-dispatcher",
  10167. "version": "v4.4.16",
  10168. "source": {
  10169. "type": "git",
  10170. "url": "https://github.com/symfony/event-dispatcher.git",
  10171. "reference": "4204f13d2d0b7ad09454f221bb2195fccdf1fe98"
  10172. },
  10173. "dist": {
  10174. "type": "zip",
  10175. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/4204f13d2d0b7ad09454f221bb2195fccdf1fe98",
  10176. "reference": "4204f13d2d0b7ad09454f221bb2195fccdf1fe98",
  10177. "shasum": ""
  10178. },
  10179. "require": {
  10180. "php": ">=7.1.3",
  10181. "symfony/event-dispatcher-contracts": "^1.1"
  10182. },
  10183. "conflict": {
  10184. "symfony/dependency-injection": "<3.4"
  10185. },
  10186. "provide": {
  10187. "psr/event-dispatcher-implementation": "1.0",
  10188. "symfony/event-dispatcher-implementation": "1.1"
  10189. },
  10190. "require-dev": {
  10191. "psr/log": "~1.0",
  10192. "symfony/config": "^3.4|^4.0|^5.0",
  10193. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  10194. "symfony/error-handler": "~3.4|~4.4",
  10195. "symfony/expression-language": "^3.4|^4.0|^5.0",
  10196. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  10197. "symfony/service-contracts": "^1.1|^2",
  10198. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  10199. },
  10200. "suggest": {
  10201. "symfony/dependency-injection": "",
  10202. "symfony/http-kernel": ""
  10203. },
  10204. "type": "library",
  10205. "autoload": {
  10206. "psr-4": {
  10207. "Symfony\\Component\\EventDispatcher\\": ""
  10208. },
  10209. "exclude-from-classmap": [
  10210. "/Tests/"
  10211. ]
  10212. },
  10213. "notification-url": "https://packagist.org/downloads/",
  10214. "license": [
  10215. "MIT"
  10216. ],
  10217. "authors": [
  10218. {
  10219. "name": "Fabien Potencier",
  10220. "email": "fabien@symfony.com"
  10221. },
  10222. {
  10223. "name": "Symfony Community",
  10224. "homepage": "https://symfony.com/contributors"
  10225. }
  10226. ],
  10227. "description": "Symfony EventDispatcher Component",
  10228. "homepage": "https://symfony.com",
  10229. "funding": [
  10230. {
  10231. "url": "https://symfony.com/sponsor",
  10232. "type": "custom"
  10233. },
  10234. {
  10235. "url": "https://github.com/fabpot",
  10236. "type": "github"
  10237. },
  10238. {
  10239. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10240. "type": "tidelift"
  10241. }
  10242. ],
  10243. "time": "2020-10-24T11:50:19+00:00"
  10244. },
  10245. {
  10246. "name": "symfony/event-dispatcher-contracts",
  10247. "version": "v1.1.9",
  10248. "source": {
  10249. "type": "git",
  10250. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10251. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7"
  10252. },
  10253. "dist": {
  10254. "type": "zip",
  10255. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  10256. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  10257. "shasum": ""
  10258. },
  10259. "require": {
  10260. "php": ">=7.1.3"
  10261. },
  10262. "suggest": {
  10263. "psr/event-dispatcher": "",
  10264. "symfony/event-dispatcher-implementation": ""
  10265. },
  10266. "type": "library",
  10267. "extra": {
  10268. "branch-alias": {
  10269. "dev-master": "1.1-dev"
  10270. },
  10271. "thanks": {
  10272. "name": "symfony/contracts",
  10273. "url": "https://github.com/symfony/contracts"
  10274. }
  10275. },
  10276. "autoload": {
  10277. "psr-4": {
  10278. "Symfony\\Contracts\\EventDispatcher\\": ""
  10279. }
  10280. },
  10281. "notification-url": "https://packagist.org/downloads/",
  10282. "license": [
  10283. "MIT"
  10284. ],
  10285. "authors": [
  10286. {
  10287. "name": "Nicolas Grekas",
  10288. "email": "p@tchwork.com"
  10289. },
  10290. {
  10291. "name": "Symfony Community",
  10292. "homepage": "https://symfony.com/contributors"
  10293. }
  10294. ],
  10295. "description": "Generic abstractions related to dispatching event",
  10296. "homepage": "https://symfony.com",
  10297. "keywords": [
  10298. "abstractions",
  10299. "contracts",
  10300. "decoupling",
  10301. "interfaces",
  10302. "interoperability",
  10303. "standards"
  10304. ],
  10305. "funding": [
  10306. {
  10307. "url": "https://symfony.com/sponsor",
  10308. "type": "custom"
  10309. },
  10310. {
  10311. "url": "https://github.com/fabpot",
  10312. "type": "github"
  10313. },
  10314. {
  10315. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10316. "type": "tidelift"
  10317. }
  10318. ],
  10319. "time": "2020-07-06T13:19:58+00:00"
  10320. },
  10321. {
  10322. "name": "symfony/filesystem",
  10323. "version": "v4.4.20",
  10324. "source": {
  10325. "type": "git",
  10326. "url": "https://github.com/symfony/filesystem.git",
  10327. "reference": "715e7a531bdae109a828f9e91629e5b3b2926beb"
  10328. },
  10329. "dist": {
  10330. "type": "zip",
  10331. "url": "https://api.github.com/repos/symfony/filesystem/zipball/715e7a531bdae109a828f9e91629e5b3b2926beb",
  10332. "reference": "715e7a531bdae109a828f9e91629e5b3b2926beb",
  10333. "shasum": ""
  10334. },
  10335. "require": {
  10336. "php": ">=7.1.3",
  10337. "symfony/polyfill-ctype": "~1.8"
  10338. },
  10339. "type": "library",
  10340. "autoload": {
  10341. "psr-4": {
  10342. "Symfony\\Component\\Filesystem\\": ""
  10343. },
  10344. "exclude-from-classmap": [
  10345. "/Tests/"
  10346. ]
  10347. },
  10348. "notification-url": "https://packagist.org/downloads/",
  10349. "license": [
  10350. "MIT"
  10351. ],
  10352. "authors": [
  10353. {
  10354. "name": "Fabien Potencier",
  10355. "email": "fabien@symfony.com"
  10356. },
  10357. {
  10358. "name": "Symfony Community",
  10359. "homepage": "https://symfony.com/contributors"
  10360. }
  10361. ],
  10362. "description": "Provides basic utilities for the filesystem",
  10363. "homepage": "https://symfony.com",
  10364. "funding": [
  10365. {
  10366. "url": "https://symfony.com/sponsor",
  10367. "type": "custom"
  10368. },
  10369. {
  10370. "url": "https://github.com/fabpot",
  10371. "type": "github"
  10372. },
  10373. {
  10374. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10375. "type": "tidelift"
  10376. }
  10377. ],
  10378. "time": "2021-02-11T19:34:41+00:00"
  10379. },
  10380. {
  10381. "name": "symfony/finder",
  10382. "version": "v4.4.20",
  10383. "source": {
  10384. "type": "git",
  10385. "url": "https://github.com/symfony/finder.git",
  10386. "reference": "2543795ab1570df588b9bbd31e1a2bd7037b94f6"
  10387. },
  10388. "dist": {
  10389. "type": "zip",
  10390. "url": "https://api.github.com/repos/symfony/finder/zipball/2543795ab1570df588b9bbd31e1a2bd7037b94f6",
  10391. "reference": "2543795ab1570df588b9bbd31e1a2bd7037b94f6",
  10392. "shasum": ""
  10393. },
  10394. "require": {
  10395. "php": ">=7.1.3"
  10396. },
  10397. "type": "library",
  10398. "autoload": {
  10399. "psr-4": {
  10400. "Symfony\\Component\\Finder\\": ""
  10401. },
  10402. "exclude-from-classmap": [
  10403. "/Tests/"
  10404. ]
  10405. },
  10406. "notification-url": "https://packagist.org/downloads/",
  10407. "license": [
  10408. "MIT"
  10409. ],
  10410. "authors": [
  10411. {
  10412. "name": "Fabien Potencier",
  10413. "email": "fabien@symfony.com"
  10414. },
  10415. {
  10416. "name": "Symfony Community",
  10417. "homepage": "https://symfony.com/contributors"
  10418. }
  10419. ],
  10420. "description": "Finds files and directories via an intuitive fluent interface",
  10421. "homepage": "https://symfony.com",
  10422. "funding": [
  10423. {
  10424. "url": "https://symfony.com/sponsor",
  10425. "type": "custom"
  10426. },
  10427. {
  10428. "url": "https://github.com/fabpot",
  10429. "type": "github"
  10430. },
  10431. {
  10432. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10433. "type": "tidelift"
  10434. }
  10435. ],
  10436. "time": "2021-02-12T10:48:09+00:00"
  10437. },
  10438. {
  10439. "name": "symfony/http-client-contracts",
  10440. "version": "v2.3.1",
  10441. "source": {
  10442. "type": "git",
  10443. "url": "https://github.com/symfony/http-client-contracts.git",
  10444. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  10445. },
  10446. "dist": {
  10447. "type": "zip",
  10448. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  10449. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  10450. "shasum": ""
  10451. },
  10452. "require": {
  10453. "php": ">=7.2.5"
  10454. },
  10455. "suggest": {
  10456. "symfony/http-client-implementation": ""
  10457. },
  10458. "type": "library",
  10459. "extra": {
  10460. "branch-version": "2.3",
  10461. "branch-alias": {
  10462. "dev-main": "2.3-dev"
  10463. },
  10464. "thanks": {
  10465. "name": "symfony/contracts",
  10466. "url": "https://github.com/symfony/contracts"
  10467. }
  10468. },
  10469. "autoload": {
  10470. "psr-4": {
  10471. "Symfony\\Contracts\\HttpClient\\": ""
  10472. }
  10473. },
  10474. "notification-url": "https://packagist.org/downloads/",
  10475. "license": [
  10476. "MIT"
  10477. ],
  10478. "authors": [
  10479. {
  10480. "name": "Nicolas Grekas",
  10481. "email": "p@tchwork.com"
  10482. },
  10483. {
  10484. "name": "Symfony Community",
  10485. "homepage": "https://symfony.com/contributors"
  10486. }
  10487. ],
  10488. "description": "Generic abstractions related to HTTP clients",
  10489. "homepage": "https://symfony.com",
  10490. "keywords": [
  10491. "abstractions",
  10492. "contracts",
  10493. "decoupling",
  10494. "interfaces",
  10495. "interoperability",
  10496. "standards"
  10497. ],
  10498. "funding": [
  10499. {
  10500. "url": "https://symfony.com/sponsor",
  10501. "type": "custom"
  10502. },
  10503. {
  10504. "url": "https://github.com/fabpot",
  10505. "type": "github"
  10506. },
  10507. {
  10508. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10509. "type": "tidelift"
  10510. }
  10511. ],
  10512. "time": "2020-10-14T17:08:19+00:00"
  10513. },
  10514. {
  10515. "name": "symfony/http-foundation",
  10516. "version": "v4.4.16",
  10517. "source": {
  10518. "type": "git",
  10519. "url": "https://github.com/symfony/http-foundation.git",
  10520. "reference": "827a00811ef699e809a201ceafac0b2b246bf38a"
  10521. },
  10522. "dist": {
  10523. "type": "zip",
  10524. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/827a00811ef699e809a201ceafac0b2b246bf38a",
  10525. "reference": "827a00811ef699e809a201ceafac0b2b246bf38a",
  10526. "shasum": ""
  10527. },
  10528. "require": {
  10529. "php": ">=7.1.3",
  10530. "symfony/mime": "^4.3|^5.0",
  10531. "symfony/polyfill-mbstring": "~1.1"
  10532. },
  10533. "require-dev": {
  10534. "predis/predis": "~1.0",
  10535. "symfony/expression-language": "^3.4|^4.0|^5.0"
  10536. },
  10537. "type": "library",
  10538. "autoload": {
  10539. "psr-4": {
  10540. "Symfony\\Component\\HttpFoundation\\": ""
  10541. },
  10542. "exclude-from-classmap": [
  10543. "/Tests/"
  10544. ]
  10545. },
  10546. "notification-url": "https://packagist.org/downloads/",
  10547. "license": [
  10548. "MIT"
  10549. ],
  10550. "authors": [
  10551. {
  10552. "name": "Fabien Potencier",
  10553. "email": "fabien@symfony.com"
  10554. },
  10555. {
  10556. "name": "Symfony Community",
  10557. "homepage": "https://symfony.com/contributors"
  10558. }
  10559. ],
  10560. "description": "Symfony HttpFoundation Component",
  10561. "homepage": "https://symfony.com",
  10562. "funding": [
  10563. {
  10564. "url": "https://symfony.com/sponsor",
  10565. "type": "custom"
  10566. },
  10567. {
  10568. "url": "https://github.com/fabpot",
  10569. "type": "github"
  10570. },
  10571. {
  10572. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10573. "type": "tidelift"
  10574. }
  10575. ],
  10576. "time": "2020-10-24T11:50:19+00:00"
  10577. },
  10578. {
  10579. "name": "symfony/http-kernel",
  10580. "version": "v4.4.16",
  10581. "source": {
  10582. "type": "git",
  10583. "url": "https://github.com/symfony/http-kernel.git",
  10584. "reference": "109b2a46e470a487ec8b0ffea4b0bb993aaf42ed"
  10585. },
  10586. "dist": {
  10587. "type": "zip",
  10588. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/109b2a46e470a487ec8b0ffea4b0bb993aaf42ed",
  10589. "reference": "109b2a46e470a487ec8b0ffea4b0bb993aaf42ed",
  10590. "shasum": ""
  10591. },
  10592. "require": {
  10593. "php": ">=7.1.3",
  10594. "psr/log": "~1.0",
  10595. "symfony/error-handler": "^4.4",
  10596. "symfony/event-dispatcher": "^4.4",
  10597. "symfony/http-client-contracts": "^1.1|^2",
  10598. "symfony/http-foundation": "^4.4|^5.0",
  10599. "symfony/polyfill-ctype": "^1.8",
  10600. "symfony/polyfill-php73": "^1.9",
  10601. "symfony/polyfill-php80": "^1.15"
  10602. },
  10603. "conflict": {
  10604. "symfony/browser-kit": "<4.3",
  10605. "symfony/config": "<3.4",
  10606. "symfony/console": ">=5",
  10607. "symfony/dependency-injection": "<4.3",
  10608. "symfony/translation": "<4.2",
  10609. "twig/twig": "<1.34|<2.4,>=2"
  10610. },
  10611. "provide": {
  10612. "psr/log-implementation": "1.0"
  10613. },
  10614. "require-dev": {
  10615. "psr/cache": "~1.0",
  10616. "symfony/browser-kit": "^4.3|^5.0",
  10617. "symfony/config": "^3.4|^4.0|^5.0",
  10618. "symfony/console": "^3.4|^4.0",
  10619. "symfony/css-selector": "^3.4|^4.0|^5.0",
  10620. "symfony/dependency-injection": "^4.3|^5.0",
  10621. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  10622. "symfony/expression-language": "^3.4|^4.0|^5.0",
  10623. "symfony/finder": "^3.4|^4.0|^5.0",
  10624. "symfony/process": "^3.4|^4.0|^5.0",
  10625. "symfony/routing": "^3.4|^4.0|^5.0",
  10626. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  10627. "symfony/templating": "^3.4|^4.0|^5.0",
  10628. "symfony/translation": "^4.2|^5.0",
  10629. "symfony/translation-contracts": "^1.1|^2",
  10630. "twig/twig": "^1.34|^2.4|^3.0"
  10631. },
  10632. "suggest": {
  10633. "symfony/browser-kit": "",
  10634. "symfony/config": "",
  10635. "symfony/console": "",
  10636. "symfony/dependency-injection": ""
  10637. },
  10638. "type": "library",
  10639. "autoload": {
  10640. "psr-4": {
  10641. "Symfony\\Component\\HttpKernel\\": ""
  10642. },
  10643. "exclude-from-classmap": [
  10644. "/Tests/"
  10645. ]
  10646. },
  10647. "notification-url": "https://packagist.org/downloads/",
  10648. "license": [
  10649. "MIT"
  10650. ],
  10651. "authors": [
  10652. {
  10653. "name": "Fabien Potencier",
  10654. "email": "fabien@symfony.com"
  10655. },
  10656. {
  10657. "name": "Symfony Community",
  10658. "homepage": "https://symfony.com/contributors"
  10659. }
  10660. ],
  10661. "description": "Symfony HttpKernel Component",
  10662. "homepage": "https://symfony.com",
  10663. "funding": [
  10664. {
  10665. "url": "https://symfony.com/sponsor",
  10666. "type": "custom"
  10667. },
  10668. {
  10669. "url": "https://github.com/fabpot",
  10670. "type": "github"
  10671. },
  10672. {
  10673. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10674. "type": "tidelift"
  10675. }
  10676. ],
  10677. "time": "2020-10-28T05:50:56+00:00"
  10678. },
  10679. {
  10680. "name": "symfony/mime",
  10681. "version": "v5.1.8",
  10682. "source": {
  10683. "type": "git",
  10684. "url": "https://github.com/symfony/mime.git",
  10685. "reference": "f5485a92c24d4bcfc2f3fc648744fb398482ff1b"
  10686. },
  10687. "dist": {
  10688. "type": "zip",
  10689. "url": "https://api.github.com/repos/symfony/mime/zipball/f5485a92c24d4bcfc2f3fc648744fb398482ff1b",
  10690. "reference": "f5485a92c24d4bcfc2f3fc648744fb398482ff1b",
  10691. "shasum": ""
  10692. },
  10693. "require": {
  10694. "php": ">=7.2.5",
  10695. "symfony/polyfill-intl-idn": "^1.10",
  10696. "symfony/polyfill-mbstring": "^1.0",
  10697. "symfony/polyfill-php80": "^1.15"
  10698. },
  10699. "conflict": {
  10700. "symfony/mailer": "<4.4"
  10701. },
  10702. "require-dev": {
  10703. "egulias/email-validator": "^2.1.10",
  10704. "symfony/dependency-injection": "^4.4|^5.0"
  10705. },
  10706. "type": "library",
  10707. "autoload": {
  10708. "psr-4": {
  10709. "Symfony\\Component\\Mime\\": ""
  10710. },
  10711. "exclude-from-classmap": [
  10712. "/Tests/"
  10713. ]
  10714. },
  10715. "notification-url": "https://packagist.org/downloads/",
  10716. "license": [
  10717. "MIT"
  10718. ],
  10719. "authors": [
  10720. {
  10721. "name": "Fabien Potencier",
  10722. "email": "fabien@symfony.com"
  10723. },
  10724. {
  10725. "name": "Symfony Community",
  10726. "homepage": "https://symfony.com/contributors"
  10727. }
  10728. ],
  10729. "description": "A library to manipulate MIME messages",
  10730. "homepage": "https://symfony.com",
  10731. "keywords": [
  10732. "mime",
  10733. "mime-type"
  10734. ],
  10735. "funding": [
  10736. {
  10737. "url": "https://symfony.com/sponsor",
  10738. "type": "custom"
  10739. },
  10740. {
  10741. "url": "https://github.com/fabpot",
  10742. "type": "github"
  10743. },
  10744. {
  10745. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10746. "type": "tidelift"
  10747. }
  10748. ],
  10749. "time": "2020-10-24T12:01:57+00:00"
  10750. },
  10751. {
  10752. "name": "symfony/polyfill-ctype",
  10753. "version": "v1.20.0",
  10754. "source": {
  10755. "type": "git",
  10756. "url": "https://github.com/symfony/polyfill-ctype.git",
  10757. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
  10758. },
  10759. "dist": {
  10760. "type": "zip",
  10761. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  10762. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  10763. "shasum": ""
  10764. },
  10765. "require": {
  10766. "php": ">=7.1"
  10767. },
  10768. "suggest": {
  10769. "ext-ctype": "For best performance"
  10770. },
  10771. "type": "library",
  10772. "extra": {
  10773. "branch-alias": {
  10774. "dev-main": "1.20-dev"
  10775. },
  10776. "thanks": {
  10777. "name": "symfony/polyfill",
  10778. "url": "https://github.com/symfony/polyfill"
  10779. }
  10780. },
  10781. "autoload": {
  10782. "psr-4": {
  10783. "Symfony\\Polyfill\\Ctype\\": ""
  10784. },
  10785. "files": [
  10786. "bootstrap.php"
  10787. ]
  10788. },
  10789. "notification-url": "https://packagist.org/downloads/",
  10790. "license": [
  10791. "MIT"
  10792. ],
  10793. "authors": [
  10794. {
  10795. "name": "Gert de Pagter",
  10796. "email": "BackEndTea@gmail.com"
  10797. },
  10798. {
  10799. "name": "Symfony Community",
  10800. "homepage": "https://symfony.com/contributors"
  10801. }
  10802. ],
  10803. "description": "Symfony polyfill for ctype functions",
  10804. "homepage": "https://symfony.com",
  10805. "keywords": [
  10806. "compatibility",
  10807. "ctype",
  10808. "polyfill",
  10809. "portable"
  10810. ],
  10811. "funding": [
  10812. {
  10813. "url": "https://symfony.com/sponsor",
  10814. "type": "custom"
  10815. },
  10816. {
  10817. "url": "https://github.com/fabpot",
  10818. "type": "github"
  10819. },
  10820. {
  10821. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10822. "type": "tidelift"
  10823. }
  10824. ],
  10825. "time": "2020-10-23T14:02:19+00:00"
  10826. },
  10827. {
  10828. "name": "symfony/polyfill-iconv",
  10829. "version": "v1.20.0",
  10830. "source": {
  10831. "type": "git",
  10832. "url": "https://github.com/symfony/polyfill-iconv.git",
  10833. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024"
  10834. },
  10835. "dist": {
  10836. "type": "zip",
  10837. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c536646fdb4f29104dd26effc2fdcb9a5b085024",
  10838. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024",
  10839. "shasum": ""
  10840. },
  10841. "require": {
  10842. "php": ">=7.1"
  10843. },
  10844. "suggest": {
  10845. "ext-iconv": "For best performance"
  10846. },
  10847. "type": "library",
  10848. "extra": {
  10849. "branch-alias": {
  10850. "dev-main": "1.20-dev"
  10851. },
  10852. "thanks": {
  10853. "name": "symfony/polyfill",
  10854. "url": "https://github.com/symfony/polyfill"
  10855. }
  10856. },
  10857. "autoload": {
  10858. "psr-4": {
  10859. "Symfony\\Polyfill\\Iconv\\": ""
  10860. },
  10861. "files": [
  10862. "bootstrap.php"
  10863. ]
  10864. },
  10865. "notification-url": "https://packagist.org/downloads/",
  10866. "license": [
  10867. "MIT"
  10868. ],
  10869. "authors": [
  10870. {
  10871. "name": "Nicolas Grekas",
  10872. "email": "p@tchwork.com"
  10873. },
  10874. {
  10875. "name": "Symfony Community",
  10876. "homepage": "https://symfony.com/contributors"
  10877. }
  10878. ],
  10879. "description": "Symfony polyfill for the Iconv extension",
  10880. "homepage": "https://symfony.com",
  10881. "keywords": [
  10882. "compatibility",
  10883. "iconv",
  10884. "polyfill",
  10885. "portable",
  10886. "shim"
  10887. ],
  10888. "funding": [
  10889. {
  10890. "url": "https://symfony.com/sponsor",
  10891. "type": "custom"
  10892. },
  10893. {
  10894. "url": "https://github.com/fabpot",
  10895. "type": "github"
  10896. },
  10897. {
  10898. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10899. "type": "tidelift"
  10900. }
  10901. ],
  10902. "time": "2020-10-23T14:02:19+00:00"
  10903. },
  10904. {
  10905. "name": "symfony/polyfill-intl-idn",
  10906. "version": "v1.20.0",
  10907. "source": {
  10908. "type": "git",
  10909. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  10910. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117"
  10911. },
  10912. "dist": {
  10913. "type": "zip",
  10914. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117",
  10915. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117",
  10916. "shasum": ""
  10917. },
  10918. "require": {
  10919. "php": ">=7.1",
  10920. "symfony/polyfill-intl-normalizer": "^1.10",
  10921. "symfony/polyfill-php72": "^1.10"
  10922. },
  10923. "suggest": {
  10924. "ext-intl": "For best performance"
  10925. },
  10926. "type": "library",
  10927. "extra": {
  10928. "branch-alias": {
  10929. "dev-main": "1.20-dev"
  10930. },
  10931. "thanks": {
  10932. "name": "symfony/polyfill",
  10933. "url": "https://github.com/symfony/polyfill"
  10934. }
  10935. },
  10936. "autoload": {
  10937. "psr-4": {
  10938. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  10939. },
  10940. "files": [
  10941. "bootstrap.php"
  10942. ]
  10943. },
  10944. "notification-url": "https://packagist.org/downloads/",
  10945. "license": [
  10946. "MIT"
  10947. ],
  10948. "authors": [
  10949. {
  10950. "name": "Laurent Bassin",
  10951. "email": "laurent@bassin.info"
  10952. },
  10953. {
  10954. "name": "Trevor Rowbotham",
  10955. "email": "trevor.rowbotham@pm.me"
  10956. },
  10957. {
  10958. "name": "Symfony Community",
  10959. "homepage": "https://symfony.com/contributors"
  10960. }
  10961. ],
  10962. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  10963. "homepage": "https://symfony.com",
  10964. "keywords": [
  10965. "compatibility",
  10966. "idn",
  10967. "intl",
  10968. "polyfill",
  10969. "portable",
  10970. "shim"
  10971. ],
  10972. "funding": [
  10973. {
  10974. "url": "https://symfony.com/sponsor",
  10975. "type": "custom"
  10976. },
  10977. {
  10978. "url": "https://github.com/fabpot",
  10979. "type": "github"
  10980. },
  10981. {
  10982. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10983. "type": "tidelift"
  10984. }
  10985. ],
  10986. "time": "2020-10-23T14:02:19+00:00"
  10987. },
  10988. {
  10989. "name": "symfony/polyfill-intl-normalizer",
  10990. "version": "v1.20.0",
  10991. "source": {
  10992. "type": "git",
  10993. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  10994. "reference": "727d1096295d807c309fb01a851577302394c897"
  10995. },
  10996. "dist": {
  10997. "type": "zip",
  10998. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897",
  10999. "reference": "727d1096295d807c309fb01a851577302394c897",
  11000. "shasum": ""
  11001. },
  11002. "require": {
  11003. "php": ">=7.1"
  11004. },
  11005. "suggest": {
  11006. "ext-intl": "For best performance"
  11007. },
  11008. "type": "library",
  11009. "extra": {
  11010. "branch-alias": {
  11011. "dev-main": "1.20-dev"
  11012. },
  11013. "thanks": {
  11014. "name": "symfony/polyfill",
  11015. "url": "https://github.com/symfony/polyfill"
  11016. }
  11017. },
  11018. "autoload": {
  11019. "psr-4": {
  11020. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  11021. },
  11022. "files": [
  11023. "bootstrap.php"
  11024. ],
  11025. "classmap": [
  11026. "Resources/stubs"
  11027. ]
  11028. },
  11029. "notification-url": "https://packagist.org/downloads/",
  11030. "license": [
  11031. "MIT"
  11032. ],
  11033. "authors": [
  11034. {
  11035. "name": "Nicolas Grekas",
  11036. "email": "p@tchwork.com"
  11037. },
  11038. {
  11039. "name": "Symfony Community",
  11040. "homepage": "https://symfony.com/contributors"
  11041. }
  11042. ],
  11043. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  11044. "homepage": "https://symfony.com",
  11045. "keywords": [
  11046. "compatibility",
  11047. "intl",
  11048. "normalizer",
  11049. "polyfill",
  11050. "portable",
  11051. "shim"
  11052. ],
  11053. "funding": [
  11054. {
  11055. "url": "https://symfony.com/sponsor",
  11056. "type": "custom"
  11057. },
  11058. {
  11059. "url": "https://github.com/fabpot",
  11060. "type": "github"
  11061. },
  11062. {
  11063. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11064. "type": "tidelift"
  11065. }
  11066. ],
  11067. "time": "2020-10-23T14:02:19+00:00"
  11068. },
  11069. {
  11070. "name": "symfony/polyfill-mbstring",
  11071. "version": "v1.20.0",
  11072. "source": {
  11073. "type": "git",
  11074. "url": "https://github.com/symfony/polyfill-mbstring.git",
  11075. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
  11076. },
  11077. "dist": {
  11078. "type": "zip",
  11079. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
  11080. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
  11081. "shasum": ""
  11082. },
  11083. "require": {
  11084. "php": ">=7.1"
  11085. },
  11086. "suggest": {
  11087. "ext-mbstring": "For best performance"
  11088. },
  11089. "type": "library",
  11090. "extra": {
  11091. "branch-alias": {
  11092. "dev-main": "1.20-dev"
  11093. },
  11094. "thanks": {
  11095. "name": "symfony/polyfill",
  11096. "url": "https://github.com/symfony/polyfill"
  11097. }
  11098. },
  11099. "autoload": {
  11100. "psr-4": {
  11101. "Symfony\\Polyfill\\Mbstring\\": ""
  11102. },
  11103. "files": [
  11104. "bootstrap.php"
  11105. ]
  11106. },
  11107. "notification-url": "https://packagist.org/downloads/",
  11108. "license": [
  11109. "MIT"
  11110. ],
  11111. "authors": [
  11112. {
  11113. "name": "Nicolas Grekas",
  11114. "email": "p@tchwork.com"
  11115. },
  11116. {
  11117. "name": "Symfony Community",
  11118. "homepage": "https://symfony.com/contributors"
  11119. }
  11120. ],
  11121. "description": "Symfony polyfill for the Mbstring extension",
  11122. "homepage": "https://symfony.com",
  11123. "keywords": [
  11124. "compatibility",
  11125. "mbstring",
  11126. "polyfill",
  11127. "portable",
  11128. "shim"
  11129. ],
  11130. "funding": [
  11131. {
  11132. "url": "https://symfony.com/sponsor",
  11133. "type": "custom"
  11134. },
  11135. {
  11136. "url": "https://github.com/fabpot",
  11137. "type": "github"
  11138. },
  11139. {
  11140. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11141. "type": "tidelift"
  11142. }
  11143. ],
  11144. "time": "2020-10-23T14:02:19+00:00"
  11145. },
  11146. {
  11147. "name": "symfony/polyfill-php72",
  11148. "version": "v1.22.1",
  11149. "source": {
  11150. "type": "git",
  11151. "url": "https://github.com/symfony/polyfill-php72.git",
  11152. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"
  11153. },
  11154. "dist": {
  11155. "type": "zip",
  11156. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  11157. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  11158. "shasum": ""
  11159. },
  11160. "require": {
  11161. "php": ">=7.1"
  11162. },
  11163. "type": "library",
  11164. "extra": {
  11165. "branch-alias": {
  11166. "dev-main": "1.22-dev"
  11167. },
  11168. "thanks": {
  11169. "name": "symfony/polyfill",
  11170. "url": "https://github.com/symfony/polyfill"
  11171. }
  11172. },
  11173. "autoload": {
  11174. "psr-4": {
  11175. "Symfony\\Polyfill\\Php72\\": ""
  11176. },
  11177. "files": [
  11178. "bootstrap.php"
  11179. ]
  11180. },
  11181. "notification-url": "https://packagist.org/downloads/",
  11182. "license": [
  11183. "MIT"
  11184. ],
  11185. "authors": [
  11186. {
  11187. "name": "Nicolas Grekas",
  11188. "email": "p@tchwork.com"
  11189. },
  11190. {
  11191. "name": "Symfony Community",
  11192. "homepage": "https://symfony.com/contributors"
  11193. }
  11194. ],
  11195. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  11196. "homepage": "https://symfony.com",
  11197. "keywords": [
  11198. "compatibility",
  11199. "polyfill",
  11200. "portable",
  11201. "shim"
  11202. ],
  11203. "funding": [
  11204. {
  11205. "url": "https://symfony.com/sponsor",
  11206. "type": "custom"
  11207. },
  11208. {
  11209. "url": "https://github.com/fabpot",
  11210. "type": "github"
  11211. },
  11212. {
  11213. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11214. "type": "tidelift"
  11215. }
  11216. ],
  11217. "time": "2021-01-07T16:49:33+00:00"
  11218. },
  11219. {
  11220. "name": "symfony/polyfill-php73",
  11221. "version": "v1.22.1",
  11222. "source": {
  11223. "type": "git",
  11224. "url": "https://github.com/symfony/polyfill-php73.git",
  11225. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2"
  11226. },
  11227. "dist": {
  11228. "type": "zip",
  11229. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  11230. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  11231. "shasum": ""
  11232. },
  11233. "require": {
  11234. "php": ">=7.1"
  11235. },
  11236. "type": "library",
  11237. "extra": {
  11238. "branch-alias": {
  11239. "dev-main": "1.22-dev"
  11240. },
  11241. "thanks": {
  11242. "name": "symfony/polyfill",
  11243. "url": "https://github.com/symfony/polyfill"
  11244. }
  11245. },
  11246. "autoload": {
  11247. "psr-4": {
  11248. "Symfony\\Polyfill\\Php73\\": ""
  11249. },
  11250. "files": [
  11251. "bootstrap.php"
  11252. ],
  11253. "classmap": [
  11254. "Resources/stubs"
  11255. ]
  11256. },
  11257. "notification-url": "https://packagist.org/downloads/",
  11258. "license": [
  11259. "MIT"
  11260. ],
  11261. "authors": [
  11262. {
  11263. "name": "Nicolas Grekas",
  11264. "email": "p@tchwork.com"
  11265. },
  11266. {
  11267. "name": "Symfony Community",
  11268. "homepage": "https://symfony.com/contributors"
  11269. }
  11270. ],
  11271. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  11272. "homepage": "https://symfony.com",
  11273. "keywords": [
  11274. "compatibility",
  11275. "polyfill",
  11276. "portable",
  11277. "shim"
  11278. ],
  11279. "funding": [
  11280. {
  11281. "url": "https://symfony.com/sponsor",
  11282. "type": "custom"
  11283. },
  11284. {
  11285. "url": "https://github.com/fabpot",
  11286. "type": "github"
  11287. },
  11288. {
  11289. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11290. "type": "tidelift"
  11291. }
  11292. ],
  11293. "time": "2021-01-07T16:49:33+00:00"
  11294. },
  11295. {
  11296. "name": "symfony/polyfill-php80",
  11297. "version": "v1.20.0",
  11298. "source": {
  11299. "type": "git",
  11300. "url": "https://github.com/symfony/polyfill-php80.git",
  11301. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de"
  11302. },
  11303. "dist": {
  11304. "type": "zip",
  11305. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  11306. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  11307. "shasum": ""
  11308. },
  11309. "require": {
  11310. "php": ">=7.1"
  11311. },
  11312. "type": "library",
  11313. "extra": {
  11314. "branch-alias": {
  11315. "dev-main": "1.20-dev"
  11316. },
  11317. "thanks": {
  11318. "name": "symfony/polyfill",
  11319. "url": "https://github.com/symfony/polyfill"
  11320. }
  11321. },
  11322. "autoload": {
  11323. "psr-4": {
  11324. "Symfony\\Polyfill\\Php80\\": ""
  11325. },
  11326. "files": [
  11327. "bootstrap.php"
  11328. ],
  11329. "classmap": [
  11330. "Resources/stubs"
  11331. ]
  11332. },
  11333. "notification-url": "https://packagist.org/downloads/",
  11334. "license": [
  11335. "MIT"
  11336. ],
  11337. "authors": [
  11338. {
  11339. "name": "Ion Bazan",
  11340. "email": "ion.bazan@gmail.com"
  11341. },
  11342. {
  11343. "name": "Nicolas Grekas",
  11344. "email": "p@tchwork.com"
  11345. },
  11346. {
  11347. "name": "Symfony Community",
  11348. "homepage": "https://symfony.com/contributors"
  11349. }
  11350. ],
  11351. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  11352. "homepage": "https://symfony.com",
  11353. "keywords": [
  11354. "compatibility",
  11355. "polyfill",
  11356. "portable",
  11357. "shim"
  11358. ],
  11359. "funding": [
  11360. {
  11361. "url": "https://symfony.com/sponsor",
  11362. "type": "custom"
  11363. },
  11364. {
  11365. "url": "https://github.com/fabpot",
  11366. "type": "github"
  11367. },
  11368. {
  11369. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11370. "type": "tidelift"
  11371. }
  11372. ],
  11373. "time": "2020-10-23T14:02:19+00:00"
  11374. },
  11375. {
  11376. "name": "symfony/process",
  11377. "version": "v4.4.16",
  11378. "source": {
  11379. "type": "git",
  11380. "url": "https://github.com/symfony/process.git",
  11381. "reference": "2f4b049fb80ca5e9874615a2a85dc2a502090f05"
  11382. },
  11383. "dist": {
  11384. "type": "zip",
  11385. "url": "https://api.github.com/repos/symfony/process/zipball/2f4b049fb80ca5e9874615a2a85dc2a502090f05",
  11386. "reference": "2f4b049fb80ca5e9874615a2a85dc2a502090f05",
  11387. "shasum": ""
  11388. },
  11389. "require": {
  11390. "php": ">=7.1.3"
  11391. },
  11392. "type": "library",
  11393. "autoload": {
  11394. "psr-4": {
  11395. "Symfony\\Component\\Process\\": ""
  11396. },
  11397. "exclude-from-classmap": [
  11398. "/Tests/"
  11399. ]
  11400. },
  11401. "notification-url": "https://packagist.org/downloads/",
  11402. "license": [
  11403. "MIT"
  11404. ],
  11405. "authors": [
  11406. {
  11407. "name": "Fabien Potencier",
  11408. "email": "fabien@symfony.com"
  11409. },
  11410. {
  11411. "name": "Symfony Community",
  11412. "homepage": "https://symfony.com/contributors"
  11413. }
  11414. ],
  11415. "description": "Symfony Process Component",
  11416. "homepage": "https://symfony.com",
  11417. "funding": [
  11418. {
  11419. "url": "https://symfony.com/sponsor",
  11420. "type": "custom"
  11421. },
  11422. {
  11423. "url": "https://github.com/fabpot",
  11424. "type": "github"
  11425. },
  11426. {
  11427. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11428. "type": "tidelift"
  11429. }
  11430. ],
  11431. "time": "2020-10-24T11:50:19+00:00"
  11432. },
  11433. {
  11434. "name": "symfony/psr-http-message-bridge",
  11435. "version": "v2.0.2",
  11436. "source": {
  11437. "type": "git",
  11438. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  11439. "reference": "51a21cb3ba3927d4b4bf8f25cc55763351af5f2e"
  11440. },
  11441. "dist": {
  11442. "type": "zip",
  11443. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/51a21cb3ba3927d4b4bf8f25cc55763351af5f2e",
  11444. "reference": "51a21cb3ba3927d4b4bf8f25cc55763351af5f2e",
  11445. "shasum": ""
  11446. },
  11447. "require": {
  11448. "php": ">=7.1",
  11449. "psr/http-message": "^1.0",
  11450. "symfony/http-foundation": "^4.4 || ^5.0"
  11451. },
  11452. "require-dev": {
  11453. "nyholm/psr7": "^1.1",
  11454. "symfony/phpunit-bridge": "^4.4 || ^5.0"
  11455. },
  11456. "suggest": {
  11457. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  11458. },
  11459. "type": "symfony-bridge",
  11460. "extra": {
  11461. "branch-alias": {
  11462. "dev-master": "2.0-dev"
  11463. }
  11464. },
  11465. "autoload": {
  11466. "psr-4": {
  11467. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  11468. },
  11469. "exclude-from-classmap": [
  11470. "/Tests/"
  11471. ]
  11472. },
  11473. "notification-url": "https://packagist.org/downloads/",
  11474. "license": [
  11475. "MIT"
  11476. ],
  11477. "authors": [
  11478. {
  11479. "name": "Fabien Potencier",
  11480. "email": "fabien@symfony.com"
  11481. },
  11482. {
  11483. "name": "Symfony Community",
  11484. "homepage": "http://symfony.com/contributors"
  11485. }
  11486. ],
  11487. "description": "PSR HTTP message bridge",
  11488. "homepage": "http://symfony.com",
  11489. "keywords": [
  11490. "http",
  11491. "http-message",
  11492. "psr-17",
  11493. "psr-7"
  11494. ],
  11495. "funding": [
  11496. {
  11497. "url": "https://symfony.com/sponsor",
  11498. "type": "custom"
  11499. },
  11500. {
  11501. "url": "https://github.com/fabpot",
  11502. "type": "github"
  11503. },
  11504. {
  11505. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11506. "type": "tidelift"
  11507. }
  11508. ],
  11509. "time": "2020-09-29T08:17:46+00:00"
  11510. },
  11511. {
  11512. "name": "symfony/routing",
  11513. "version": "v4.4.16",
  11514. "source": {
  11515. "type": "git",
  11516. "url": "https://github.com/symfony/routing.git",
  11517. "reference": "826794f2e9305fe73cba859c60d2a336851bd202"
  11518. },
  11519. "dist": {
  11520. "type": "zip",
  11521. "url": "https://api.github.com/repos/symfony/routing/zipball/826794f2e9305fe73cba859c60d2a336851bd202",
  11522. "reference": "826794f2e9305fe73cba859c60d2a336851bd202",
  11523. "shasum": ""
  11524. },
  11525. "require": {
  11526. "php": ">=7.1.3"
  11527. },
  11528. "conflict": {
  11529. "symfony/config": "<4.2",
  11530. "symfony/dependency-injection": "<3.4",
  11531. "symfony/yaml": "<3.4"
  11532. },
  11533. "require-dev": {
  11534. "doctrine/annotations": "~1.2",
  11535. "psr/log": "~1.0",
  11536. "symfony/config": "^4.2|^5.0",
  11537. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  11538. "symfony/expression-language": "^3.4|^4.0|^5.0",
  11539. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  11540. "symfony/yaml": "^3.4|^4.0|^5.0"
  11541. },
  11542. "suggest": {
  11543. "doctrine/annotations": "For using the annotation loader",
  11544. "symfony/config": "For using the all-in-one router or any loader",
  11545. "symfony/expression-language": "For using expression matching",
  11546. "symfony/http-foundation": "For using a Symfony Request object",
  11547. "symfony/yaml": "For using the YAML loader"
  11548. },
  11549. "type": "library",
  11550. "autoload": {
  11551. "psr-4": {
  11552. "Symfony\\Component\\Routing\\": ""
  11553. },
  11554. "exclude-from-classmap": [
  11555. "/Tests/"
  11556. ]
  11557. },
  11558. "notification-url": "https://packagist.org/downloads/",
  11559. "license": [
  11560. "MIT"
  11561. ],
  11562. "authors": [
  11563. {
  11564. "name": "Fabien Potencier",
  11565. "email": "fabien@symfony.com"
  11566. },
  11567. {
  11568. "name": "Symfony Community",
  11569. "homepage": "https://symfony.com/contributors"
  11570. }
  11571. ],
  11572. "description": "Symfony Routing Component",
  11573. "homepage": "https://symfony.com",
  11574. "keywords": [
  11575. "router",
  11576. "routing",
  11577. "uri",
  11578. "url"
  11579. ],
  11580. "funding": [
  11581. {
  11582. "url": "https://symfony.com/sponsor",
  11583. "type": "custom"
  11584. },
  11585. {
  11586. "url": "https://github.com/fabpot",
  11587. "type": "github"
  11588. },
  11589. {
  11590. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11591. "type": "tidelift"
  11592. }
  11593. ],
  11594. "time": "2020-10-24T11:50:19+00:00"
  11595. },
  11596. {
  11597. "name": "symfony/serializer",
  11598. "version": "v4.4.16",
  11599. "source": {
  11600. "type": "git",
  11601. "url": "https://github.com/symfony/serializer.git",
  11602. "reference": "2af7e86db04ee65fdf1991b17ee0b3e955c93de9"
  11603. },
  11604. "dist": {
  11605. "type": "zip",
  11606. "url": "https://api.github.com/repos/symfony/serializer/zipball/2af7e86db04ee65fdf1991b17ee0b3e955c93de9",
  11607. "reference": "2af7e86db04ee65fdf1991b17ee0b3e955c93de9",
  11608. "shasum": ""
  11609. },
  11610. "require": {
  11611. "php": ">=7.1.3",
  11612. "symfony/polyfill-ctype": "~1.8"
  11613. },
  11614. "conflict": {
  11615. "phpdocumentor/type-resolver": "<0.2.1",
  11616. "symfony/dependency-injection": "<3.4",
  11617. "symfony/property-access": "<3.4",
  11618. "symfony/property-info": "<3.4",
  11619. "symfony/yaml": "<3.4"
  11620. },
  11621. "require-dev": {
  11622. "doctrine/annotations": "~1.0",
  11623. "doctrine/cache": "~1.0",
  11624. "phpdocumentor/reflection-docblock": "^3.2|^4.0",
  11625. "symfony/cache": "^3.4|^4.0|^5.0",
  11626. "symfony/config": "^3.4|^4.0|^5.0",
  11627. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  11628. "symfony/error-handler": "^4.4|^5.0",
  11629. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  11630. "symfony/mime": "^4.4|^5.0",
  11631. "symfony/property-access": "^3.4|^4.0|^5.0",
  11632. "symfony/property-info": "^3.4.13|~4.0|^5.0",
  11633. "symfony/validator": "^3.4|^4.0|^5.0",
  11634. "symfony/yaml": "^3.4|^4.0|^5.0"
  11635. },
  11636. "suggest": {
  11637. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  11638. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  11639. "psr/cache-implementation": "For using the metadata cache.",
  11640. "symfony/config": "For using the XML mapping loader.",
  11641. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  11642. "symfony/property-access": "For using the ObjectNormalizer.",
  11643. "symfony/property-info": "To deserialize relations.",
  11644. "symfony/yaml": "For using the default YAML mapping loader."
  11645. },
  11646. "type": "library",
  11647. "autoload": {
  11648. "psr-4": {
  11649. "Symfony\\Component\\Serializer\\": ""
  11650. },
  11651. "exclude-from-classmap": [
  11652. "/Tests/"
  11653. ]
  11654. },
  11655. "notification-url": "https://packagist.org/downloads/",
  11656. "license": [
  11657. "MIT"
  11658. ],
  11659. "authors": [
  11660. {
  11661. "name": "Fabien Potencier",
  11662. "email": "fabien@symfony.com"
  11663. },
  11664. {
  11665. "name": "Symfony Community",
  11666. "homepage": "https://symfony.com/contributors"
  11667. }
  11668. ],
  11669. "description": "Symfony Serializer Component",
  11670. "homepage": "https://symfony.com",
  11671. "funding": [
  11672. {
  11673. "url": "https://symfony.com/sponsor",
  11674. "type": "custom"
  11675. },
  11676. {
  11677. "url": "https://github.com/fabpot",
  11678. "type": "github"
  11679. },
  11680. {
  11681. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11682. "type": "tidelift"
  11683. }
  11684. ],
  11685. "time": "2020-10-24T11:50:19+00:00"
  11686. },
  11687. {
  11688. "name": "symfony/service-contracts",
  11689. "version": "v2.2.0",
  11690. "source": {
  11691. "type": "git",
  11692. "url": "https://github.com/symfony/service-contracts.git",
  11693. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  11694. },
  11695. "dist": {
  11696. "type": "zip",
  11697. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  11698. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  11699. "shasum": ""
  11700. },
  11701. "require": {
  11702. "php": ">=7.2.5",
  11703. "psr/container": "^1.0"
  11704. },
  11705. "suggest": {
  11706. "symfony/service-implementation": ""
  11707. },
  11708. "type": "library",
  11709. "extra": {
  11710. "branch-alias": {
  11711. "dev-master": "2.2-dev"
  11712. },
  11713. "thanks": {
  11714. "name": "symfony/contracts",
  11715. "url": "https://github.com/symfony/contracts"
  11716. }
  11717. },
  11718. "autoload": {
  11719. "psr-4": {
  11720. "Symfony\\Contracts\\Service\\": ""
  11721. }
  11722. },
  11723. "notification-url": "https://packagist.org/downloads/",
  11724. "license": [
  11725. "MIT"
  11726. ],
  11727. "authors": [
  11728. {
  11729. "name": "Nicolas Grekas",
  11730. "email": "p@tchwork.com"
  11731. },
  11732. {
  11733. "name": "Symfony Community",
  11734. "homepage": "https://symfony.com/contributors"
  11735. }
  11736. ],
  11737. "description": "Generic abstractions related to writing services",
  11738. "homepage": "https://symfony.com",
  11739. "keywords": [
  11740. "abstractions",
  11741. "contracts",
  11742. "decoupling",
  11743. "interfaces",
  11744. "interoperability",
  11745. "standards"
  11746. ],
  11747. "funding": [
  11748. {
  11749. "url": "https://symfony.com/sponsor",
  11750. "type": "custom"
  11751. },
  11752. {
  11753. "url": "https://github.com/fabpot",
  11754. "type": "github"
  11755. },
  11756. {
  11757. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11758. "type": "tidelift"
  11759. }
  11760. ],
  11761. "time": "2020-09-07T11:33:47+00:00"
  11762. },
  11763. {
  11764. "name": "symfony/translation",
  11765. "version": "v4.4.16",
  11766. "source": {
  11767. "type": "git",
  11768. "url": "https://github.com/symfony/translation.git",
  11769. "reference": "73095716af79f610f3b6338b911357393fdd10ab"
  11770. },
  11771. "dist": {
  11772. "type": "zip",
  11773. "url": "https://api.github.com/repos/symfony/translation/zipball/73095716af79f610f3b6338b911357393fdd10ab",
  11774. "reference": "73095716af79f610f3b6338b911357393fdd10ab",
  11775. "shasum": ""
  11776. },
  11777. "require": {
  11778. "php": ">=7.1.3",
  11779. "symfony/polyfill-mbstring": "~1.0",
  11780. "symfony/translation-contracts": "^1.1.6|^2"
  11781. },
  11782. "conflict": {
  11783. "symfony/config": "<3.4",
  11784. "symfony/dependency-injection": "<3.4",
  11785. "symfony/http-kernel": "<4.4",
  11786. "symfony/yaml": "<3.4"
  11787. },
  11788. "provide": {
  11789. "symfony/translation-implementation": "1.0"
  11790. },
  11791. "require-dev": {
  11792. "psr/log": "~1.0",
  11793. "symfony/config": "^3.4|^4.0|^5.0",
  11794. "symfony/console": "^3.4|^4.0|^5.0",
  11795. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  11796. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  11797. "symfony/http-kernel": "^4.4",
  11798. "symfony/intl": "^3.4|^4.0|^5.0",
  11799. "symfony/service-contracts": "^1.1.2|^2",
  11800. "symfony/yaml": "^3.4|^4.0|^5.0"
  11801. },
  11802. "suggest": {
  11803. "psr/log-implementation": "To use logging capability in translator",
  11804. "symfony/config": "",
  11805. "symfony/yaml": ""
  11806. },
  11807. "type": "library",
  11808. "autoload": {
  11809. "psr-4": {
  11810. "Symfony\\Component\\Translation\\": ""
  11811. },
  11812. "exclude-from-classmap": [
  11813. "/Tests/"
  11814. ]
  11815. },
  11816. "notification-url": "https://packagist.org/downloads/",
  11817. "license": [
  11818. "MIT"
  11819. ],
  11820. "authors": [
  11821. {
  11822. "name": "Fabien Potencier",
  11823. "email": "fabien@symfony.com"
  11824. },
  11825. {
  11826. "name": "Symfony Community",
  11827. "homepage": "https://symfony.com/contributors"
  11828. }
  11829. ],
  11830. "description": "Symfony Translation Component",
  11831. "homepage": "https://symfony.com",
  11832. "funding": [
  11833. {
  11834. "url": "https://symfony.com/sponsor",
  11835. "type": "custom"
  11836. },
  11837. {
  11838. "url": "https://github.com/fabpot",
  11839. "type": "github"
  11840. },
  11841. {
  11842. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11843. "type": "tidelift"
  11844. }
  11845. ],
  11846. "time": "2020-10-24T11:50:19+00:00"
  11847. },
  11848. {
  11849. "name": "symfony/translation-contracts",
  11850. "version": "v2.3.0",
  11851. "source": {
  11852. "type": "git",
  11853. "url": "https://github.com/symfony/translation-contracts.git",
  11854. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  11855. },
  11856. "dist": {
  11857. "type": "zip",
  11858. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  11859. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  11860. "shasum": ""
  11861. },
  11862. "require": {
  11863. "php": ">=7.2.5"
  11864. },
  11865. "suggest": {
  11866. "symfony/translation-implementation": ""
  11867. },
  11868. "type": "library",
  11869. "extra": {
  11870. "branch-alias": {
  11871. "dev-master": "2.3-dev"
  11872. },
  11873. "thanks": {
  11874. "name": "symfony/contracts",
  11875. "url": "https://github.com/symfony/contracts"
  11876. }
  11877. },
  11878. "autoload": {
  11879. "psr-4": {
  11880. "Symfony\\Contracts\\Translation\\": ""
  11881. }
  11882. },
  11883. "notification-url": "https://packagist.org/downloads/",
  11884. "license": [
  11885. "MIT"
  11886. ],
  11887. "authors": [
  11888. {
  11889. "name": "Nicolas Grekas",
  11890. "email": "p@tchwork.com"
  11891. },
  11892. {
  11893. "name": "Symfony Community",
  11894. "homepage": "https://symfony.com/contributors"
  11895. }
  11896. ],
  11897. "description": "Generic abstractions related to translation",
  11898. "homepage": "https://symfony.com",
  11899. "keywords": [
  11900. "abstractions",
  11901. "contracts",
  11902. "decoupling",
  11903. "interfaces",
  11904. "interoperability",
  11905. "standards"
  11906. ],
  11907. "funding": [
  11908. {
  11909. "url": "https://symfony.com/sponsor",
  11910. "type": "custom"
  11911. },
  11912. {
  11913. "url": "https://github.com/fabpot",
  11914. "type": "github"
  11915. },
  11916. {
  11917. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11918. "type": "tidelift"
  11919. }
  11920. ],
  11921. "time": "2020-09-28T13:05:58+00:00"
  11922. },
  11923. {
  11924. "name": "symfony/validator",
  11925. "version": "v4.4.16",
  11926. "source": {
  11927. "type": "git",
  11928. "url": "https://github.com/symfony/validator.git",
  11929. "reference": "1d214a3aaa0753b19f94cf0479d8c315d957a10d"
  11930. },
  11931. "dist": {
  11932. "type": "zip",
  11933. "url": "https://api.github.com/repos/symfony/validator/zipball/1d214a3aaa0753b19f94cf0479d8c315d957a10d",
  11934. "reference": "1d214a3aaa0753b19f94cf0479d8c315d957a10d",
  11935. "shasum": ""
  11936. },
  11937. "require": {
  11938. "php": ">=7.1.3",
  11939. "symfony/polyfill-ctype": "~1.8",
  11940. "symfony/polyfill-mbstring": "~1.0",
  11941. "symfony/translation-contracts": "^1.1|^2"
  11942. },
  11943. "conflict": {
  11944. "doctrine/lexer": "<1.0.2",
  11945. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  11946. "symfony/dependency-injection": "<3.4",
  11947. "symfony/http-kernel": "<4.4",
  11948. "symfony/intl": "<4.3",
  11949. "symfony/translation": ">=5.0",
  11950. "symfony/yaml": "<3.4"
  11951. },
  11952. "require-dev": {
  11953. "doctrine/annotations": "~1.7",
  11954. "doctrine/cache": "~1.0",
  11955. "egulias/email-validator": "^2.1.10",
  11956. "symfony/cache": "^3.4|^4.0|^5.0",
  11957. "symfony/config": "^3.4|^4.0|^5.0",
  11958. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  11959. "symfony/expression-language": "^3.4|^4.0|^5.0",
  11960. "symfony/http-client": "^4.3|^5.0",
  11961. "symfony/http-foundation": "^4.1|^5.0",
  11962. "symfony/http-kernel": "^4.4",
  11963. "symfony/intl": "^4.3|^5.0",
  11964. "symfony/mime": "^4.4|^5.0",
  11965. "symfony/property-access": "^3.4|^4.0|^5.0",
  11966. "symfony/property-info": "^3.4|^4.0|^5.0",
  11967. "symfony/translation": "^4.2",
  11968. "symfony/yaml": "^3.4|^4.0|^5.0"
  11969. },
  11970. "suggest": {
  11971. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  11972. "doctrine/cache": "For using the default cached annotation reader.",
  11973. "egulias/email-validator": "Strict (RFC compliant) email validation",
  11974. "psr/cache-implementation": "For using the mapping cache.",
  11975. "symfony/config": "",
  11976. "symfony/expression-language": "For using the Expression validator",
  11977. "symfony/http-foundation": "",
  11978. "symfony/intl": "",
  11979. "symfony/property-access": "For accessing properties within comparison constraints",
  11980. "symfony/property-info": "To automatically add NotNull and Type constraints",
  11981. "symfony/translation": "For translating validation errors.",
  11982. "symfony/yaml": ""
  11983. },
  11984. "type": "library",
  11985. "autoload": {
  11986. "psr-4": {
  11987. "Symfony\\Component\\Validator\\": ""
  11988. },
  11989. "exclude-from-classmap": [
  11990. "/Tests/"
  11991. ]
  11992. },
  11993. "notification-url": "https://packagist.org/downloads/",
  11994. "license": [
  11995. "MIT"
  11996. ],
  11997. "authors": [
  11998. {
  11999. "name": "Fabien Potencier",
  12000. "email": "fabien@symfony.com"
  12001. },
  12002. {
  12003. "name": "Symfony Community",
  12004. "homepage": "https://symfony.com/contributors"
  12005. }
  12006. ],
  12007. "description": "Symfony Validator Component",
  12008. "homepage": "https://symfony.com",
  12009. "funding": [
  12010. {
  12011. "url": "https://symfony.com/sponsor",
  12012. "type": "custom"
  12013. },
  12014. {
  12015. "url": "https://github.com/fabpot",
  12016. "type": "github"
  12017. },
  12018. {
  12019. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12020. "type": "tidelift"
  12021. }
  12022. ],
  12023. "time": "2020-10-28T05:25:24+00:00"
  12024. },
  12025. {
  12026. "name": "symfony/var-dumper",
  12027. "version": "v5.1.8",
  12028. "source": {
  12029. "type": "git",
  12030. "url": "https://github.com/symfony/var-dumper.git",
  12031. "reference": "4e13f3fcefb1fcaaa5efb5403581406f4e840b9a"
  12032. },
  12033. "dist": {
  12034. "type": "zip",
  12035. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/4e13f3fcefb1fcaaa5efb5403581406f4e840b9a",
  12036. "reference": "4e13f3fcefb1fcaaa5efb5403581406f4e840b9a",
  12037. "shasum": ""
  12038. },
  12039. "require": {
  12040. "php": ">=7.2.5",
  12041. "symfony/polyfill-mbstring": "~1.0",
  12042. "symfony/polyfill-php80": "^1.15"
  12043. },
  12044. "conflict": {
  12045. "phpunit/phpunit": "<5.4.3",
  12046. "symfony/console": "<4.4"
  12047. },
  12048. "require-dev": {
  12049. "ext-iconv": "*",
  12050. "symfony/console": "^4.4|^5.0",
  12051. "symfony/process": "^4.4|^5.0",
  12052. "twig/twig": "^2.4|^3.0"
  12053. },
  12054. "suggest": {
  12055. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  12056. "ext-intl": "To show region name in time zone dump",
  12057. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  12058. },
  12059. "bin": [
  12060. "Resources/bin/var-dump-server"
  12061. ],
  12062. "type": "library",
  12063. "autoload": {
  12064. "files": [
  12065. "Resources/functions/dump.php"
  12066. ],
  12067. "psr-4": {
  12068. "Symfony\\Component\\VarDumper\\": ""
  12069. },
  12070. "exclude-from-classmap": [
  12071. "/Tests/"
  12072. ]
  12073. },
  12074. "notification-url": "https://packagist.org/downloads/",
  12075. "license": [
  12076. "MIT"
  12077. ],
  12078. "authors": [
  12079. {
  12080. "name": "Nicolas Grekas",
  12081. "email": "p@tchwork.com"
  12082. },
  12083. {
  12084. "name": "Symfony Community",
  12085. "homepage": "https://symfony.com/contributors"
  12086. }
  12087. ],
  12088. "description": "Symfony mechanism for exploring and dumping PHP variables",
  12089. "homepage": "https://symfony.com",
  12090. "keywords": [
  12091. "debug",
  12092. "dump"
  12093. ],
  12094. "funding": [
  12095. {
  12096. "url": "https://symfony.com/sponsor",
  12097. "type": "custom"
  12098. },
  12099. {
  12100. "url": "https://github.com/fabpot",
  12101. "type": "github"
  12102. },
  12103. {
  12104. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12105. "type": "tidelift"
  12106. }
  12107. ],
  12108. "time": "2020-10-27T10:11:13+00:00"
  12109. },
  12110. {
  12111. "name": "symfony/yaml",
  12112. "version": "v4.4.16",
  12113. "source": {
  12114. "type": "git",
  12115. "url": "https://github.com/symfony/yaml.git",
  12116. "reference": "543cb4dbd45ed803f08a9a65f27fb149b5dd20c2"
  12117. },
  12118. "dist": {
  12119. "type": "zip",
  12120. "url": "https://api.github.com/repos/symfony/yaml/zipball/543cb4dbd45ed803f08a9a65f27fb149b5dd20c2",
  12121. "reference": "543cb4dbd45ed803f08a9a65f27fb149b5dd20c2",
  12122. "shasum": ""
  12123. },
  12124. "require": {
  12125. "php": ">=7.1.3",
  12126. "symfony/polyfill-ctype": "~1.8"
  12127. },
  12128. "conflict": {
  12129. "symfony/console": "<3.4"
  12130. },
  12131. "require-dev": {
  12132. "symfony/console": "^3.4|^4.0|^5.0"
  12133. },
  12134. "suggest": {
  12135. "symfony/console": "For validating YAML files using the lint command"
  12136. },
  12137. "type": "library",
  12138. "autoload": {
  12139. "psr-4": {
  12140. "Symfony\\Component\\Yaml\\": ""
  12141. },
  12142. "exclude-from-classmap": [
  12143. "/Tests/"
  12144. ]
  12145. },
  12146. "notification-url": "https://packagist.org/downloads/",
  12147. "license": [
  12148. "MIT"
  12149. ],
  12150. "authors": [
  12151. {
  12152. "name": "Fabien Potencier",
  12153. "email": "fabien@symfony.com"
  12154. },
  12155. {
  12156. "name": "Symfony Community",
  12157. "homepage": "https://symfony.com/contributors"
  12158. }
  12159. ],
  12160. "description": "Symfony Yaml Component",
  12161. "homepage": "https://symfony.com",
  12162. "funding": [
  12163. {
  12164. "url": "https://symfony.com/sponsor",
  12165. "type": "custom"
  12166. },
  12167. {
  12168. "url": "https://github.com/fabpot",
  12169. "type": "github"
  12170. },
  12171. {
  12172. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12173. "type": "tidelift"
  12174. }
  12175. ],
  12176. "time": "2020-10-24T11:50:19+00:00"
  12177. },
  12178. {
  12179. "name": "twig/twig",
  12180. "version": "v2.14.1",
  12181. "source": {
  12182. "type": "git",
  12183. "url": "https://github.com/twigphp/Twig.git",
  12184. "reference": "5eb9ac5dfdd20c3f59495c22841adc5da980d312"
  12185. },
  12186. "dist": {
  12187. "type": "zip",
  12188. "url": "https://api.github.com/repos/twigphp/Twig/zipball/5eb9ac5dfdd20c3f59495c22841adc5da980d312",
  12189. "reference": "5eb9ac5dfdd20c3f59495c22841adc5da980d312",
  12190. "shasum": ""
  12191. },
  12192. "require": {
  12193. "php": ">=7.2.5",
  12194. "symfony/polyfill-ctype": "^1.8",
  12195. "symfony/polyfill-mbstring": "^1.3"
  12196. },
  12197. "require-dev": {
  12198. "psr/container": "^1.0",
  12199. "symfony/phpunit-bridge": "^4.4.9|^5.0.9"
  12200. },
  12201. "type": "library",
  12202. "extra": {
  12203. "branch-alias": {
  12204. "dev-master": "2.14-dev"
  12205. }
  12206. },
  12207. "autoload": {
  12208. "psr-0": {
  12209. "Twig_": "lib/"
  12210. },
  12211. "psr-4": {
  12212. "Twig\\": "src/"
  12213. }
  12214. },
  12215. "notification-url": "https://packagist.org/downloads/",
  12216. "license": [
  12217. "BSD-3-Clause"
  12218. ],
  12219. "authors": [
  12220. {
  12221. "name": "Fabien Potencier",
  12222. "email": "fabien@symfony.com",
  12223. "homepage": "http://fabien.potencier.org",
  12224. "role": "Lead Developer"
  12225. },
  12226. {
  12227. "name": "Twig Team",
  12228. "role": "Contributors"
  12229. },
  12230. {
  12231. "name": "Armin Ronacher",
  12232. "email": "armin.ronacher@active-4.com",
  12233. "role": "Project Founder"
  12234. }
  12235. ],
  12236. "description": "Twig, the flexible, fast, and secure template language for PHP",
  12237. "homepage": "https://twig.symfony.com",
  12238. "keywords": [
  12239. "templating"
  12240. ],
  12241. "funding": [
  12242. {
  12243. "url": "https://github.com/fabpot",
  12244. "type": "github"
  12245. },
  12246. {
  12247. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  12248. "type": "tidelift"
  12249. }
  12250. ],
  12251. "time": "2020-10-27T19:25:29+00:00"
  12252. },
  12253. {
  12254. "name": "typo3/phar-stream-wrapper",
  12255. "version": "v3.1.6",
  12256. "source": {
  12257. "type": "git",
  12258. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  12259. "reference": "60131cb573a1e478cfecd34e4ea38e3b31505f75"
  12260. },
  12261. "dist": {
  12262. "type": "zip",
  12263. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/60131cb573a1e478cfecd34e4ea38e3b31505f75",
  12264. "reference": "60131cb573a1e478cfecd34e4ea38e3b31505f75",
  12265. "shasum": ""
  12266. },
  12267. "require": {
  12268. "ext-json": "*",
  12269. "php": "^7.0 || ^8.0"
  12270. },
  12271. "require-dev": {
  12272. "ext-xdebug": "*",
  12273. "phpspec/prophecy": "^1.10",
  12274. "symfony/phpunit-bridge": "^5.1"
  12275. },
  12276. "suggest": {
  12277. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  12278. },
  12279. "type": "library",
  12280. "extra": {
  12281. "branch-alias": {
  12282. "dev-master": "v3.x-dev"
  12283. }
  12284. },
  12285. "autoload": {
  12286. "psr-4": {
  12287. "TYPO3\\PharStreamWrapper\\": "src/"
  12288. }
  12289. },
  12290. "notification-url": "https://packagist.org/downloads/",
  12291. "license": [
  12292. "MIT"
  12293. ],
  12294. "description": "Interceptors for PHP's native phar:// stream handling",
  12295. "homepage": "https://typo3.org/",
  12296. "keywords": [
  12297. "phar",
  12298. "php",
  12299. "security",
  12300. "stream-wrapper"
  12301. ],
  12302. "time": "2020-11-07T09:06:16+00:00"
  12303. },
  12304. {
  12305. "name": "webflo/drupal-finder",
  12306. "version": "1.2.2",
  12307. "source": {
  12308. "type": "git",
  12309. "url": "https://github.com/webflo/drupal-finder.git",
  12310. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  12311. },
  12312. "dist": {
  12313. "type": "zip",
  12314. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  12315. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  12316. "shasum": ""
  12317. },
  12318. "require": {
  12319. "ext-json": "*"
  12320. },
  12321. "require-dev": {
  12322. "mikey179/vfsstream": "^1.6",
  12323. "phpunit/phpunit": "^4.8"
  12324. },
  12325. "type": "library",
  12326. "autoload": {
  12327. "classmap": [
  12328. "src/DrupalFinder.php"
  12329. ]
  12330. },
  12331. "notification-url": "https://packagist.org/downloads/",
  12332. "license": [
  12333. "GPL-2.0-or-later"
  12334. ],
  12335. "authors": [
  12336. {
  12337. "name": "Florian Weber",
  12338. "email": "florian@webflo.org"
  12339. }
  12340. ],
  12341. "description": "Helper class to locate a Drupal installation from a given path.",
  12342. "time": "2020-10-27T09:42:17+00:00"
  12343. },
  12344. {
  12345. "name": "webmozart/assert",
  12346. "version": "1.10.0",
  12347. "source": {
  12348. "type": "git",
  12349. "url": "https://github.com/webmozarts/assert.git",
  12350. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  12351. },
  12352. "dist": {
  12353. "type": "zip",
  12354. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  12355. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  12356. "shasum": ""
  12357. },
  12358. "require": {
  12359. "php": "^7.2 || ^8.0",
  12360. "symfony/polyfill-ctype": "^1.8"
  12361. },
  12362. "conflict": {
  12363. "phpstan/phpstan": "<0.12.20",
  12364. "vimeo/psalm": "<4.6.1 || 4.6.2"
  12365. },
  12366. "require-dev": {
  12367. "phpunit/phpunit": "^8.5.13"
  12368. },
  12369. "type": "library",
  12370. "extra": {
  12371. "branch-alias": {
  12372. "dev-master": "1.10-dev"
  12373. }
  12374. },
  12375. "autoload": {
  12376. "psr-4": {
  12377. "Webmozart\\Assert\\": "src/"
  12378. }
  12379. },
  12380. "notification-url": "https://packagist.org/downloads/",
  12381. "license": [
  12382. "MIT"
  12383. ],
  12384. "authors": [
  12385. {
  12386. "name": "Bernhard Schussek",
  12387. "email": "bschussek@gmail.com"
  12388. }
  12389. ],
  12390. "description": "Assertions to validate method input/output with nice error messages.",
  12391. "keywords": [
  12392. "assert",
  12393. "check",
  12394. "validate"
  12395. ],
  12396. "time": "2021-03-09T10:59:23+00:00"
  12397. },
  12398. {
  12399. "name": "webmozart/path-util",
  12400. "version": "2.3.0",
  12401. "source": {
  12402. "type": "git",
  12403. "url": "https://github.com/webmozart/path-util.git",
  12404. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  12405. },
  12406. "dist": {
  12407. "type": "zip",
  12408. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  12409. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  12410. "shasum": ""
  12411. },
  12412. "require": {
  12413. "php": ">=5.3.3",
  12414. "webmozart/assert": "~1.0"
  12415. },
  12416. "require-dev": {
  12417. "phpunit/phpunit": "^4.6",
  12418. "sebastian/version": "^1.0.1"
  12419. },
  12420. "type": "library",
  12421. "extra": {
  12422. "branch-alias": {
  12423. "dev-master": "2.3-dev"
  12424. }
  12425. },
  12426. "autoload": {
  12427. "psr-4": {
  12428. "Webmozart\\PathUtil\\": "src/"
  12429. }
  12430. },
  12431. "notification-url": "https://packagist.org/downloads/",
  12432. "license": [
  12433. "MIT"
  12434. ],
  12435. "authors": [
  12436. {
  12437. "name": "Bernhard Schussek",
  12438. "email": "bschussek@gmail.com"
  12439. }
  12440. ],
  12441. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  12442. "time": "2015-12-17T08:42:14+00:00"
  12443. },
  12444. {
  12445. "name": "wikimedia/composer-merge-plugin",
  12446. "version": "v2.0.1",
  12447. "source": {
  12448. "type": "git",
  12449. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  12450. "reference": "8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912"
  12451. },
  12452. "dist": {
  12453. "type": "zip",
  12454. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912",
  12455. "reference": "8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912",
  12456. "shasum": ""
  12457. },
  12458. "require": {
  12459. "composer-plugin-api": "^1.1||^2.0",
  12460. "php": ">=7.2.0"
  12461. },
  12462. "require-dev": {
  12463. "composer/composer": "^1.1||^2.0",
  12464. "php-parallel-lint/php-parallel-lint": "~1.1.0",
  12465. "phpunit/phpunit": "^8.5||^9.0",
  12466. "squizlabs/php_codesniffer": "~3.5.4"
  12467. },
  12468. "type": "composer-plugin",
  12469. "extra": {
  12470. "branch-alias": {
  12471. "dev-master": "2.x-dev"
  12472. },
  12473. "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin"
  12474. },
  12475. "autoload": {
  12476. "psr-4": {
  12477. "Wikimedia\\Composer\\Merge\\V2\\": "src/"
  12478. }
  12479. },
  12480. "notification-url": "https://packagist.org/downloads/",
  12481. "license": [
  12482. "MIT"
  12483. ],
  12484. "authors": [
  12485. {
  12486. "name": "Bryan Davis",
  12487. "email": "bd808@wikimedia.org"
  12488. }
  12489. ],
  12490. "description": "Composer plugin to merge multiple composer.json files",
  12491. "time": "2021-02-24T05:28:06+00:00"
  12492. }
  12493. ],
  12494. "packages-dev": [],
  12495. "aliases": [],
  12496. "minimum-stability": "stable",
  12497. "stability-flags": {
  12498. "drupal/paragraphs": 20,
  12499. "drupal/autocomplete_deluxe": 5,
  12500. "drupal/better_exposed_filters": 10,
  12501. "drupal/bulkdelete": 20,
  12502. "drupal/cshs": 20,
  12503. "drupal/config_ignore": 5,
  12504. "drupal/config_devel": 20,
  12505. "drupal/context": 10,
  12506. "drupal/date_range_formatter": 20,
  12507. "drupal/domain": 20,
  12508. "drupal/domain_alias": 20,
  12509. "drupal/domain_config": 20,
  12510. "drupal/domain_site_settings": 20,
  12511. "drupal/email_registration": 5,
  12512. "drupal/entity_browser_enhanced": 5,
  12513. "drupal/entity_clone": 15,
  12514. "drupal/filefield_sources": 20,
  12515. "drupal/filter_perms": 20,
  12516. "drupal/inline_entity_form": 5,
  12517. "drupal/linkit": 10,
  12518. "drupal/login_destination": 20,
  12519. "drupal/maillog": 20,
  12520. "drupal/maxlength": 10,
  12521. "drupal/menu_block": 20,
  12522. "drupal/menu_position": 20,
  12523. "drupal/path_alias_xt": 20,
  12524. "drupal/pathologic": 15,
  12525. "drupal/profile": 5,
  12526. "drupal/smtp": 10,
  12527. "drupal/synonyms": 20,
  12528. "drupal/translation_views": 15,
  12529. "drupal/ultimate_cron": 15
  12530. },
  12531. "prefer-stable": true,
  12532. "prefer-lowest": false,
  12533. "platform": [],
  12534. "platform-dev": [],
  12535. "plugin-api-version": "2.0.0"
  12536. }