composer.lock 478 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112
  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": "4eeee83ae9e23ffb17c0bf7d1370e3b3",
  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.1.0",
  176. "source": {
  177. "type": "git",
  178. "url": "https://github.com/commerceguys/addressing.git",
  179. "reference": "2450ca97631042faf786855db206a2e48fb7dbb7"
  180. },
  181. "dist": {
  182. "type": "zip",
  183. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/2450ca97631042faf786855db206a2e48fb7dbb7",
  184. "reference": "2450ca97631042faf786855db206a2e48fb7dbb7",
  185. "shasum": ""
  186. },
  187. "require": {
  188. "doctrine/collections": "~1.0",
  189. "php": ">=7.0.8"
  190. },
  191. "require-dev": {
  192. "mikey179/vfsstream": "1.*",
  193. "phpunit/phpunit": "^6.0",
  194. "squizlabs/php_codesniffer": "2.*",
  195. "symfony/validator": "^3.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": "2020-11-29T18:48:07+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.9.0",
  244. "source": {
  245. "type": "git",
  246. "url": "https://github.com/composer/installers.git",
  247. "reference": "b93bcf0fa1fccb0b7d176b0967d969691cd74cca"
  248. },
  249. "dist": {
  250. "type": "zip",
  251. "url": "https://api.github.com/repos/composer/installers/zipball/b93bcf0fa1fccb0b7d176b0967d969691cd74cca",
  252. "reference": "b93bcf0fa1fccb0b7d176b0967d969691cd74cca",
  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.*@dev",
  264. "composer/semver": "1.0.* || 2.0.*@dev",
  265. "phpunit/phpunit": "^4.8.36",
  266. "sebastian/comparator": "^1.2.4",
  267. "symfony/process": "^2.3"
  268. },
  269. "type": "composer-plugin",
  270. "extra": {
  271. "class": "Composer\\Installers\\Plugin",
  272. "branch-alias": {
  273. "dev-master": "1.0-dev"
  274. }
  275. },
  276. "autoload": {
  277. "psr-4": {
  278. "Composer\\Installers\\": "src/Composer/Installers"
  279. }
  280. },
  281. "notification-url": "https://packagist.org/downloads/",
  282. "license": [
  283. "MIT"
  284. ],
  285. "authors": [
  286. {
  287. "name": "Kyle Robinson Young",
  288. "email": "kyle@dontkry.com",
  289. "homepage": "https://github.com/shama"
  290. }
  291. ],
  292. "description": "A multi-framework Composer library installer",
  293. "homepage": "https://composer.github.io/installers/",
  294. "keywords": [
  295. "Craft",
  296. "Dolibarr",
  297. "Eliasis",
  298. "Hurad",
  299. "ImageCMS",
  300. "Kanboard",
  301. "Lan Management System",
  302. "MODX Evo",
  303. "MantisBT",
  304. "Mautic",
  305. "Maya",
  306. "OXID",
  307. "Plentymarkets",
  308. "Porto",
  309. "RadPHP",
  310. "SMF",
  311. "Thelia",
  312. "Whmcs",
  313. "WolfCMS",
  314. "agl",
  315. "aimeos",
  316. "annotatecms",
  317. "attogram",
  318. "bitrix",
  319. "cakephp",
  320. "chef",
  321. "cockpit",
  322. "codeigniter",
  323. "concrete5",
  324. "croogo",
  325. "dokuwiki",
  326. "drupal",
  327. "eZ Platform",
  328. "elgg",
  329. "expressionengine",
  330. "fuelphp",
  331. "grav",
  332. "installer",
  333. "itop",
  334. "joomla",
  335. "known",
  336. "kohana",
  337. "laravel",
  338. "lavalite",
  339. "lithium",
  340. "magento",
  341. "majima",
  342. "mako",
  343. "mediawiki",
  344. "modulework",
  345. "modx",
  346. "moodle",
  347. "osclass",
  348. "phpbb",
  349. "piwik",
  350. "ppi",
  351. "puppet",
  352. "pxcms",
  353. "reindex",
  354. "roundcube",
  355. "shopware",
  356. "silverstripe",
  357. "sydes",
  358. "sylius",
  359. "symfony",
  360. "typo3",
  361. "wordpress",
  362. "yawik",
  363. "zend",
  364. "zikula"
  365. ],
  366. "funding": [
  367. {
  368. "url": "https://packagist.com",
  369. "type": "custom"
  370. },
  371. {
  372. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  373. "type": "tidelift"
  374. }
  375. ],
  376. "time": "2020-04-07T06:57:05+00:00"
  377. },
  378. {
  379. "name": "composer/semver",
  380. "version": "3.2.2",
  381. "source": {
  382. "type": "git",
  383. "url": "https://github.com/composer/semver.git",
  384. "reference": "4089fddb67bcf6bf860d91b979e95be303835002"
  385. },
  386. "dist": {
  387. "type": "zip",
  388. "url": "https://api.github.com/repos/composer/semver/zipball/4089fddb67bcf6bf860d91b979e95be303835002",
  389. "reference": "4089fddb67bcf6bf860d91b979e95be303835002",
  390. "shasum": ""
  391. },
  392. "require": {
  393. "php": "^5.3.2 || ^7.0 || ^8.0"
  394. },
  395. "require-dev": {
  396. "phpstan/phpstan": "^0.12.19",
  397. "symfony/phpunit-bridge": "^4.2 || ^5"
  398. },
  399. "type": "library",
  400. "extra": {
  401. "branch-alias": {
  402. "dev-main": "3.x-dev"
  403. }
  404. },
  405. "autoload": {
  406. "psr-4": {
  407. "Composer\\Semver\\": "src"
  408. }
  409. },
  410. "notification-url": "https://packagist.org/downloads/",
  411. "license": [
  412. "MIT"
  413. ],
  414. "authors": [
  415. {
  416. "name": "Nils Adermann",
  417. "email": "naderman@naderman.de",
  418. "homepage": "http://www.naderman.de"
  419. },
  420. {
  421. "name": "Jordi Boggiano",
  422. "email": "j.boggiano@seld.be",
  423. "homepage": "http://seld.be"
  424. },
  425. {
  426. "name": "Rob Bast",
  427. "email": "rob.bast@gmail.com",
  428. "homepage": "http://robbast.nl"
  429. }
  430. ],
  431. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  432. "keywords": [
  433. "semantic",
  434. "semver",
  435. "validation",
  436. "versioning"
  437. ],
  438. "funding": [
  439. {
  440. "url": "https://packagist.com",
  441. "type": "custom"
  442. },
  443. {
  444. "url": "https://github.com/composer",
  445. "type": "github"
  446. },
  447. {
  448. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  449. "type": "tidelift"
  450. }
  451. ],
  452. "time": "2020-10-14T08:51:15+00:00"
  453. },
  454. {
  455. "name": "consolidation/annotated-command",
  456. "version": "4.2.4",
  457. "source": {
  458. "type": "git",
  459. "url": "https://github.com/consolidation/annotated-command.git",
  460. "reference": "ec297e05cb86557671c2d6cbb1bebba6c7ae2c60"
  461. },
  462. "dist": {
  463. "type": "zip",
  464. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/ec297e05cb86557671c2d6cbb1bebba6c7ae2c60",
  465. "reference": "ec297e05cb86557671c2d6cbb1bebba6c7ae2c60",
  466. "shasum": ""
  467. },
  468. "require": {
  469. "consolidation/output-formatters": "^4.1.1",
  470. "php": ">=7.1.3",
  471. "psr/log": "^1|^2",
  472. "symfony/console": "^4.4.8|~5.1.0",
  473. "symfony/event-dispatcher": "^4.4.8|^5",
  474. "symfony/finder": "^4.4.8|^5"
  475. },
  476. "require-dev": {
  477. "phpunit/phpunit": ">=7.5.20",
  478. "squizlabs/php_codesniffer": "^3",
  479. "yoast/phpunit-polyfills": "^0.2.0"
  480. },
  481. "type": "library",
  482. "extra": {
  483. "branch-alias": {
  484. "dev-main": "4.x-dev"
  485. }
  486. },
  487. "autoload": {
  488. "psr-4": {
  489. "Consolidation\\AnnotatedCommand\\": "src"
  490. }
  491. },
  492. "notification-url": "https://packagist.org/downloads/",
  493. "license": [
  494. "MIT"
  495. ],
  496. "authors": [
  497. {
  498. "name": "Greg Anderson",
  499. "email": "greg.1.anderson@greenknowe.org"
  500. }
  501. ],
  502. "description": "Initialize Symfony Console commands from annotated command class methods.",
  503. "time": "2020-12-10T16:56:39+00:00"
  504. },
  505. {
  506. "name": "consolidation/config",
  507. "version": "1.2.1",
  508. "source": {
  509. "type": "git",
  510. "url": "https://github.com/consolidation/config.git",
  511. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  512. },
  513. "dist": {
  514. "type": "zip",
  515. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  516. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  517. "shasum": ""
  518. },
  519. "require": {
  520. "dflydev/dot-access-data": "^1.1.0",
  521. "grasmash/expander": "^1",
  522. "php": ">=5.4.0"
  523. },
  524. "require-dev": {
  525. "g1a/composer-test-scenarios": "^3",
  526. "php-coveralls/php-coveralls": "^1",
  527. "phpunit/phpunit": "^5",
  528. "squizlabs/php_codesniffer": "2.*",
  529. "symfony/console": "^2.5|^3|^4",
  530. "symfony/yaml": "^2.8.11|^3|^4"
  531. },
  532. "suggest": {
  533. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  534. },
  535. "type": "library",
  536. "extra": {
  537. "scenarios": {
  538. "symfony4": {
  539. "require-dev": {
  540. "symfony/console": "^4.0"
  541. },
  542. "config": {
  543. "platform": {
  544. "php": "7.1.3"
  545. }
  546. }
  547. },
  548. "symfony2": {
  549. "require-dev": {
  550. "symfony/console": "^2.8",
  551. "symfony/event-dispatcher": "^2.8",
  552. "phpunit/phpunit": "^4.8.36"
  553. },
  554. "remove": [
  555. "php-coveralls/php-coveralls"
  556. ],
  557. "config": {
  558. "platform": {
  559. "php": "5.4.8"
  560. }
  561. }
  562. }
  563. },
  564. "branch-alias": {
  565. "dev-master": "1.x-dev"
  566. }
  567. },
  568. "autoload": {
  569. "psr-4": {
  570. "Consolidation\\Config\\": "src"
  571. }
  572. },
  573. "notification-url": "https://packagist.org/downloads/",
  574. "license": [
  575. "MIT"
  576. ],
  577. "authors": [
  578. {
  579. "name": "Greg Anderson",
  580. "email": "greg.1.anderson@greenknowe.org"
  581. }
  582. ],
  583. "description": "Provide configuration services for a commandline tool.",
  584. "time": "2019-03-03T19:37:04+00:00"
  585. },
  586. {
  587. "name": "consolidation/filter-via-dot-access-data",
  588. "version": "1.0.0",
  589. "source": {
  590. "type": "git",
  591. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  592. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  593. },
  594. "dist": {
  595. "type": "zip",
  596. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  597. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  598. "shasum": ""
  599. },
  600. "require": {
  601. "dflydev/dot-access-data": "^1.1.0",
  602. "php": ">=5.5.0"
  603. },
  604. "require-dev": {
  605. "consolidation/robo": "^1.2.3",
  606. "g1a/composer-test-scenarios": "^3",
  607. "knplabs/github-api": "^2.7",
  608. "php-coveralls/php-coveralls": "^1",
  609. "php-http/guzzle6-adapter": "^1.1",
  610. "phpunit/phpunit": "^5",
  611. "squizlabs/php_codesniffer": "^2.8",
  612. "symfony/console": "^2.8|^3|^4"
  613. },
  614. "type": "library",
  615. "extra": {
  616. "scenarios": {
  617. "phpunit5": {
  618. "require-dev": {
  619. "phpunit/phpunit": "^5.7.27"
  620. },
  621. "remove": [
  622. "php-coveralls/php-coveralls"
  623. ],
  624. "config": {
  625. "platform": {
  626. "php": "5.6.33"
  627. }
  628. }
  629. }
  630. },
  631. "branch-alias": {
  632. "dev-master": "1.x-dev"
  633. }
  634. },
  635. "autoload": {
  636. "psr-4": {
  637. "Consolidation\\Filter\\": "src"
  638. }
  639. },
  640. "notification-url": "https://packagist.org/downloads/",
  641. "license": [
  642. "MIT"
  643. ],
  644. "authors": [
  645. {
  646. "name": "Greg Anderson",
  647. "email": "greg.1.anderson@greenknowe.org"
  648. }
  649. ],
  650. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  651. "time": "2019-01-18T06:05:07+00:00"
  652. },
  653. {
  654. "name": "consolidation/log",
  655. "version": "2.0.2",
  656. "source": {
  657. "type": "git",
  658. "url": "https://github.com/consolidation/log.git",
  659. "reference": "82a2aaaa621a7b976e50a745a8d249d5085ee2b1"
  660. },
  661. "dist": {
  662. "type": "zip",
  663. "url": "https://api.github.com/repos/consolidation/log/zipball/82a2aaaa621a7b976e50a745a8d249d5085ee2b1",
  664. "reference": "82a2aaaa621a7b976e50a745a8d249d5085ee2b1",
  665. "shasum": ""
  666. },
  667. "require": {
  668. "php": ">=7.1.3",
  669. "psr/log": "^1.0",
  670. "symfony/console": "^4|^5"
  671. },
  672. "require-dev": {
  673. "phpunit/phpunit": ">=7.5.20",
  674. "squizlabs/php_codesniffer": "^3",
  675. "yoast/phpunit-polyfills": "^0.2.0"
  676. },
  677. "type": "library",
  678. "extra": {
  679. "branch-alias": {
  680. "dev-main": "2.x-dev"
  681. }
  682. },
  683. "autoload": {
  684. "psr-4": {
  685. "Consolidation\\Log\\": "src"
  686. }
  687. },
  688. "notification-url": "https://packagist.org/downloads/",
  689. "license": [
  690. "MIT"
  691. ],
  692. "authors": [
  693. {
  694. "name": "Greg Anderson",
  695. "email": "greg.1.anderson@greenknowe.org"
  696. }
  697. ],
  698. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  699. "time": "2020-12-10T16:26:23+00:00"
  700. },
  701. {
  702. "name": "consolidation/output-formatters",
  703. "version": "4.1.2",
  704. "source": {
  705. "type": "git",
  706. "url": "https://github.com/consolidation/output-formatters.git",
  707. "reference": "5821e6ae076bf690058a4de6c94dce97398a69c9"
  708. },
  709. "dist": {
  710. "type": "zip",
  711. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/5821e6ae076bf690058a4de6c94dce97398a69c9",
  712. "reference": "5821e6ae076bf690058a4de6c94dce97398a69c9",
  713. "shasum": ""
  714. },
  715. "require": {
  716. "dflydev/dot-access-data": "^1.1.0",
  717. "php": ">=7.1.3",
  718. "symfony/console": "^4|^5",
  719. "symfony/finder": "^4|^5"
  720. },
  721. "require-dev": {
  722. "php-coveralls/php-coveralls": "^2.4.2",
  723. "phpunit/phpunit": ">=7",
  724. "squizlabs/php_codesniffer": "^3",
  725. "symfony/var-dumper": "^4",
  726. "symfony/yaml": "^4",
  727. "yoast/phpunit-polyfills": "^0.2.0"
  728. },
  729. "suggest": {
  730. "symfony/var-dumper": "For using the var_dump formatter"
  731. },
  732. "type": "library",
  733. "extra": {
  734. "branch-alias": {
  735. "dev-main": "4.x-dev"
  736. }
  737. },
  738. "autoload": {
  739. "psr-4": {
  740. "Consolidation\\OutputFormatters\\": "src"
  741. }
  742. },
  743. "notification-url": "https://packagist.org/downloads/",
  744. "license": [
  745. "MIT"
  746. ],
  747. "authors": [
  748. {
  749. "name": "Greg Anderson",
  750. "email": "greg.1.anderson@greenknowe.org"
  751. }
  752. ],
  753. "description": "Format text by applying transformations provided by plug-in formatters.",
  754. "time": "2020-12-12T19:04:59+00:00"
  755. },
  756. {
  757. "name": "consolidation/robo",
  758. "version": "2.2.1",
  759. "source": {
  760. "type": "git",
  761. "url": "https://github.com/consolidation/Robo.git",
  762. "reference": "1a7c652371615fd72ff05380ffe6ce263eb31eb3"
  763. },
  764. "dist": {
  765. "type": "zip",
  766. "url": "https://api.github.com/repos/consolidation/Robo/zipball/1a7c652371615fd72ff05380ffe6ce263eb31eb3",
  767. "reference": "1a7c652371615fd72ff05380ffe6ce263eb31eb3",
  768. "shasum": ""
  769. },
  770. "require": {
  771. "consolidation/annotated-command": "^4.2.1",
  772. "consolidation/config": "^1.2.1|^2",
  773. "consolidation/log": "^1.1.1|^2.0.1",
  774. "consolidation/output-formatters": "^4.1.1",
  775. "consolidation/self-update": "^1.2",
  776. "league/container": "^2.4.1",
  777. "php": ">=7.1.3",
  778. "symfony/console": "^4.4.11|^5",
  779. "symfony/event-dispatcher": "^4.4.11|^5",
  780. "symfony/filesystem": "^4.4.11|^5",
  781. "symfony/finder": "^4.4.11|^5",
  782. "symfony/process": "^4.4.11|^5"
  783. },
  784. "conflict": {
  785. "codegyre/robo": "*"
  786. },
  787. "require-dev": {
  788. "g1a/composer-test-scenarios": "^3",
  789. "natxet/cssmin": "3.0.4",
  790. "patchwork/jsqueeze": "^2",
  791. "pear/archive_tar": "^1.4.4",
  792. "php-coveralls/php-coveralls": "^2.2",
  793. "phpdocumentor/reflection-docblock": "^4.3.2",
  794. "phpunit/phpunit": "^6.5.14",
  795. "squizlabs/php_codesniffer": "^3"
  796. },
  797. "suggest": {
  798. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  799. "natxet/cssmin": "For minifying CSS files in taskMinify",
  800. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  801. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  802. },
  803. "bin": [
  804. "robo"
  805. ],
  806. "type": "library",
  807. "extra": {
  808. "scenarios": {
  809. "symfony4": {
  810. "require": {
  811. "symfony/console": "^4.4.11",
  812. "symfony/event-dispatcher": "^4.4.11",
  813. "symfony/filesystem": "^4.4.11",
  814. "symfony/finder": "^4.4.11",
  815. "symfony/process": "^4.4.11",
  816. "phpunit/phpunit": "^6",
  817. "nikic/php-parser": "^2"
  818. },
  819. "remove": [
  820. "codeception/phpunit-wrapper"
  821. ],
  822. "config": {
  823. "platform": {
  824. "php": "7.1.3"
  825. }
  826. }
  827. }
  828. },
  829. "branch-alias": {
  830. "dev-master": "2.x-dev",
  831. "dev-main": "2.x-dev"
  832. }
  833. },
  834. "autoload": {
  835. "psr-4": {
  836. "Robo\\": "src"
  837. }
  838. },
  839. "notification-url": "https://packagist.org/downloads/",
  840. "license": [
  841. "MIT"
  842. ],
  843. "authors": [
  844. {
  845. "name": "Davert",
  846. "email": "davert.php@resend.cc"
  847. }
  848. ],
  849. "description": "Modern task runner",
  850. "time": "2020-09-08T16:23:18+00:00"
  851. },
  852. {
  853. "name": "consolidation/self-update",
  854. "version": "1.2.0",
  855. "source": {
  856. "type": "git",
  857. "url": "https://github.com/consolidation/self-update.git",
  858. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4"
  859. },
  860. "dist": {
  861. "type": "zip",
  862. "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4",
  863. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4",
  864. "shasum": ""
  865. },
  866. "require": {
  867. "php": ">=5.5.0",
  868. "symfony/console": "^2.8|^3|^4|^5",
  869. "symfony/filesystem": "^2.5|^3|^4|^5"
  870. },
  871. "bin": [
  872. "scripts/release"
  873. ],
  874. "type": "library",
  875. "extra": {
  876. "branch-alias": {
  877. "dev-master": "1.x-dev"
  878. }
  879. },
  880. "autoload": {
  881. "psr-4": {
  882. "SelfUpdate\\": "src"
  883. }
  884. },
  885. "notification-url": "https://packagist.org/downloads/",
  886. "license": [
  887. "MIT"
  888. ],
  889. "authors": [
  890. {
  891. "name": "Alexander Menk",
  892. "email": "menk@mestrona.net"
  893. },
  894. {
  895. "name": "Greg Anderson",
  896. "email": "greg.1.anderson@greenknowe.org"
  897. }
  898. ],
  899. "description": "Provides a self:update command for Symfony Console applications.",
  900. "time": "2020-04-13T02:49:20+00:00"
  901. },
  902. {
  903. "name": "consolidation/site-alias",
  904. "version": "3.0.1",
  905. "source": {
  906. "type": "git",
  907. "url": "https://github.com/consolidation/site-alias.git",
  908. "reference": "fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26"
  909. },
  910. "dist": {
  911. "type": "zip",
  912. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26",
  913. "reference": "fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26",
  914. "shasum": ""
  915. },
  916. "require": {
  917. "consolidation/config": "^1.2.1|^2",
  918. "php": ">=5.5.0"
  919. },
  920. "require-dev": {
  921. "consolidation/robo": "^1.2.3|^2",
  922. "g1a/composer-test-scenarios": "^3",
  923. "knplabs/github-api": "^2.7",
  924. "php-coveralls/php-coveralls": "^2.2",
  925. "php-http/guzzle6-adapter": "^1.1",
  926. "phpunit/phpunit": "^6",
  927. "squizlabs/php_codesniffer": "^2.8",
  928. "symfony/yaml": "~2.3|^3|^4.4|^5"
  929. },
  930. "type": "library",
  931. "extra": {
  932. "scenarios": {
  933. "phpunit5": {
  934. "require-dev": {
  935. "phpunit/phpunit": "^5.7.27"
  936. },
  937. "remove": [
  938. "php-coveralls/php-coveralls"
  939. ],
  940. "config": {
  941. "platform": {
  942. "php": "5.6.33"
  943. }
  944. }
  945. }
  946. },
  947. "branch-alias": {
  948. "dev-master": "3.x-dev"
  949. }
  950. },
  951. "autoload": {
  952. "psr-4": {
  953. "Consolidation\\SiteAlias\\": "src"
  954. }
  955. },
  956. "notification-url": "https://packagist.org/downloads/",
  957. "license": [
  958. "MIT"
  959. ],
  960. "authors": [
  961. {
  962. "name": "Greg Anderson",
  963. "email": "greg.1.anderson@greenknowe.org"
  964. },
  965. {
  966. "name": "Moshe Weitzman",
  967. "email": "weitzman@tejasa.com"
  968. }
  969. ],
  970. "description": "Manage alias records for local and remote sites.",
  971. "time": "2020-05-28T00:33:41+00:00"
  972. },
  973. {
  974. "name": "consolidation/site-process",
  975. "version": "4.0.0",
  976. "source": {
  977. "type": "git",
  978. "url": "https://github.com/consolidation/site-process.git",
  979. "reference": "ad86475eb3fe73490eb1b6ff2e74ee0f09952e9d"
  980. },
  981. "dist": {
  982. "type": "zip",
  983. "url": "https://api.github.com/repos/consolidation/site-process/zipball/ad86475eb3fe73490eb1b6ff2e74ee0f09952e9d",
  984. "reference": "ad86475eb3fe73490eb1b6ff2e74ee0f09952e9d",
  985. "shasum": ""
  986. },
  987. "require": {
  988. "consolidation/config": "^1.2.1|^2",
  989. "consolidation/site-alias": "^3",
  990. "php": ">=7.1.3",
  991. "symfony/process": "^4.3.4"
  992. },
  993. "require-dev": {
  994. "consolidation/robo": "^1.4.10|^2",
  995. "g1a/composer-test-scenarios": "^3.0.4",
  996. "knplabs/github-api": "^2.7",
  997. "php-coveralls/php-coveralls": "^2.2",
  998. "php-http/guzzle6-adapter": "^1.1",
  999. "phpunit/phpunit": "^6.5.14",
  1000. "squizlabs/php_codesniffer": "^2.9.2"
  1001. },
  1002. "type": "library",
  1003. "extra": {
  1004. "scenarios": {
  1005. "symfony4": {
  1006. "require": {
  1007. "symfony/console": "^4.4.8",
  1008. "symfony/event-dispatcher": "^4.4.8",
  1009. "symfony/filesystem": "^4.4.8",
  1010. "symfony/finder": "^4.4.8"
  1011. },
  1012. "config": {
  1013. "platform": {
  1014. "php": "7.1.3"
  1015. }
  1016. }
  1017. }
  1018. },
  1019. "branch-alias": {
  1020. "dev-master": "4.x-dev"
  1021. }
  1022. },
  1023. "autoload": {
  1024. "psr-4": {
  1025. "Consolidation\\SiteProcess\\": "src"
  1026. }
  1027. },
  1028. "notification-url": "https://packagist.org/downloads/",
  1029. "license": [
  1030. "MIT"
  1031. ],
  1032. "authors": [
  1033. {
  1034. "name": "Greg Anderson",
  1035. "email": "greg.1.anderson@greenknowe.org"
  1036. },
  1037. {
  1038. "name": "Moshe Weitzman",
  1039. "email": "weitzman@tejasa.com"
  1040. }
  1041. ],
  1042. "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.",
  1043. "time": "2020-05-28T00:05:34+00:00"
  1044. },
  1045. {
  1046. "name": "container-interop/container-interop",
  1047. "version": "1.2.0",
  1048. "source": {
  1049. "type": "git",
  1050. "url": "https://github.com/container-interop/container-interop.git",
  1051. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  1052. },
  1053. "dist": {
  1054. "type": "zip",
  1055. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1056. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1057. "shasum": ""
  1058. },
  1059. "require": {
  1060. "psr/container": "^1.0"
  1061. },
  1062. "type": "library",
  1063. "autoload": {
  1064. "psr-4": {
  1065. "Interop\\Container\\": "src/Interop/Container/"
  1066. }
  1067. },
  1068. "notification-url": "https://packagist.org/downloads/",
  1069. "license": [
  1070. "MIT"
  1071. ],
  1072. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  1073. "homepage": "https://github.com/container-interop/container-interop",
  1074. "abandoned": "psr/container",
  1075. "time": "2017-02-14T19:40:03+00:00"
  1076. },
  1077. {
  1078. "name": "cweagans/composer-patches",
  1079. "version": "1.7.0",
  1080. "source": {
  1081. "type": "git",
  1082. "url": "https://github.com/cweagans/composer-patches.git",
  1083. "reference": "ae02121445ad75f4eaff800cc532b5e6233e2ddf"
  1084. },
  1085. "dist": {
  1086. "type": "zip",
  1087. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/ae02121445ad75f4eaff800cc532b5e6233e2ddf",
  1088. "reference": "ae02121445ad75f4eaff800cc532b5e6233e2ddf",
  1089. "shasum": ""
  1090. },
  1091. "require": {
  1092. "composer-plugin-api": "^1.0 || ^2.0",
  1093. "php": ">=5.3.0"
  1094. },
  1095. "require-dev": {
  1096. "composer/composer": "~1.0 || ~2.0",
  1097. "phpunit/phpunit": "~4.6"
  1098. },
  1099. "type": "composer-plugin",
  1100. "extra": {
  1101. "class": "cweagans\\Composer\\Patches"
  1102. },
  1103. "autoload": {
  1104. "psr-4": {
  1105. "cweagans\\Composer\\": "src"
  1106. }
  1107. },
  1108. "notification-url": "https://packagist.org/downloads/",
  1109. "license": [
  1110. "BSD-3-Clause"
  1111. ],
  1112. "authors": [
  1113. {
  1114. "name": "Cameron Eagans",
  1115. "email": "me@cweagans.net"
  1116. }
  1117. ],
  1118. "description": "Provides a way to patch Composer packages.",
  1119. "time": "2020-09-30T17:56:20+00:00"
  1120. },
  1121. {
  1122. "name": "d3/d3",
  1123. "version": "v3.5.17",
  1124. "dist": {
  1125. "type": "zip",
  1126. "url": "https://github.com/d3/d3/archive/v3.5.17.zip"
  1127. },
  1128. "type": "drupal-library"
  1129. },
  1130. {
  1131. "name": "dflydev/dot-access-configuration",
  1132. "version": "v1.0.3",
  1133. "source": {
  1134. "type": "git",
  1135. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  1136. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  1137. },
  1138. "dist": {
  1139. "type": "zip",
  1140. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1141. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1142. "shasum": ""
  1143. },
  1144. "require": {
  1145. "dflydev/dot-access-data": "1.*",
  1146. "dflydev/placeholder-resolver": "1.*",
  1147. "php": ">=5.3.2"
  1148. },
  1149. "require-dev": {
  1150. "symfony/yaml": "~2.1"
  1151. },
  1152. "suggest": {
  1153. "symfony/yaml": "Required for using the YAML Configuration Builders"
  1154. },
  1155. "type": "library",
  1156. "extra": {
  1157. "branch-alias": {
  1158. "dev-master": "1.0-dev"
  1159. }
  1160. },
  1161. "autoload": {
  1162. "psr-0": {
  1163. "Dflydev\\DotAccessConfiguration": "src"
  1164. }
  1165. },
  1166. "notification-url": "https://packagist.org/downloads/",
  1167. "license": [
  1168. "MIT"
  1169. ],
  1170. "authors": [
  1171. {
  1172. "name": "Dragonfly Development Inc.",
  1173. "email": "info@dflydev.com",
  1174. "homepage": "http://dflydev.com"
  1175. },
  1176. {
  1177. "name": "Beau Simensen",
  1178. "email": "beau@dflydev.com",
  1179. "homepage": "http://beausimensen.com"
  1180. }
  1181. ],
  1182. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  1183. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  1184. "keywords": [
  1185. "config",
  1186. "configuration"
  1187. ],
  1188. "time": "2018-09-08T23:00:17+00:00"
  1189. },
  1190. {
  1191. "name": "dflydev/dot-access-data",
  1192. "version": "v1.1.0",
  1193. "source": {
  1194. "type": "git",
  1195. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1196. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1197. },
  1198. "dist": {
  1199. "type": "zip",
  1200. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1201. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1202. "shasum": ""
  1203. },
  1204. "require": {
  1205. "php": ">=5.3.2"
  1206. },
  1207. "type": "library",
  1208. "extra": {
  1209. "branch-alias": {
  1210. "dev-master": "1.0-dev"
  1211. }
  1212. },
  1213. "autoload": {
  1214. "psr-0": {
  1215. "Dflydev\\DotAccessData": "src"
  1216. }
  1217. },
  1218. "notification-url": "https://packagist.org/downloads/",
  1219. "license": [
  1220. "MIT"
  1221. ],
  1222. "authors": [
  1223. {
  1224. "name": "Dragonfly Development Inc.",
  1225. "email": "info@dflydev.com",
  1226. "homepage": "http://dflydev.com"
  1227. },
  1228. {
  1229. "name": "Beau Simensen",
  1230. "email": "beau@dflydev.com",
  1231. "homepage": "http://beausimensen.com"
  1232. },
  1233. {
  1234. "name": "Carlos Frutos",
  1235. "email": "carlos@kiwing.it",
  1236. "homepage": "https://github.com/cfrutos"
  1237. }
  1238. ],
  1239. "description": "Given a deep data structure, access data by dot notation.",
  1240. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1241. "keywords": [
  1242. "access",
  1243. "data",
  1244. "dot",
  1245. "notation"
  1246. ],
  1247. "time": "2017-01-20T21:14:22+00:00"
  1248. },
  1249. {
  1250. "name": "dflydev/placeholder-resolver",
  1251. "version": "v1.0.2",
  1252. "source": {
  1253. "type": "git",
  1254. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1255. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  1256. },
  1257. "dist": {
  1258. "type": "zip",
  1259. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1260. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1261. "shasum": ""
  1262. },
  1263. "require": {
  1264. "php": ">=5.3.2"
  1265. },
  1266. "type": "library",
  1267. "extra": {
  1268. "branch-alias": {
  1269. "dev-master": "1.0-dev"
  1270. }
  1271. },
  1272. "autoload": {
  1273. "psr-0": {
  1274. "Dflydev\\PlaceholderResolver": "src"
  1275. }
  1276. },
  1277. "notification-url": "https://packagist.org/downloads/",
  1278. "license": [
  1279. "MIT"
  1280. ],
  1281. "authors": [
  1282. {
  1283. "name": "Dragonfly Development Inc.",
  1284. "email": "info@dflydev.com",
  1285. "homepage": "http://dflydev.com"
  1286. },
  1287. {
  1288. "name": "Beau Simensen",
  1289. "email": "beau@dflydev.com",
  1290. "homepage": "http://beausimensen.com"
  1291. }
  1292. ],
  1293. "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.",
  1294. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1295. "keywords": [
  1296. "placeholder",
  1297. "resolver"
  1298. ],
  1299. "time": "2012-10-28T21:08:28+00:00"
  1300. },
  1301. {
  1302. "name": "dnoegel/php-xdg-base-dir",
  1303. "version": "v0.1.1",
  1304. "source": {
  1305. "type": "git",
  1306. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1307. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  1308. },
  1309. "dist": {
  1310. "type": "zip",
  1311. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1312. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1313. "shasum": ""
  1314. },
  1315. "require": {
  1316. "php": ">=5.3.2"
  1317. },
  1318. "require-dev": {
  1319. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  1320. },
  1321. "type": "library",
  1322. "autoload": {
  1323. "psr-4": {
  1324. "XdgBaseDir\\": "src/"
  1325. }
  1326. },
  1327. "notification-url": "https://packagist.org/downloads/",
  1328. "license": [
  1329. "MIT"
  1330. ],
  1331. "description": "implementation of xdg base directory specification for php",
  1332. "time": "2019-12-04T15:06:13+00:00"
  1333. },
  1334. {
  1335. "name": "doctrine/annotations",
  1336. "version": "1.11.1",
  1337. "source": {
  1338. "type": "git",
  1339. "url": "https://github.com/doctrine/annotations.git",
  1340. "reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad"
  1341. },
  1342. "dist": {
  1343. "type": "zip",
  1344. "url": "https://api.github.com/repos/doctrine/annotations/zipball/ce77a7ba1770462cd705a91a151b6c3746f9c6ad",
  1345. "reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad",
  1346. "shasum": ""
  1347. },
  1348. "require": {
  1349. "doctrine/lexer": "1.*",
  1350. "ext-tokenizer": "*",
  1351. "php": "^7.1 || ^8.0"
  1352. },
  1353. "require-dev": {
  1354. "doctrine/cache": "1.*",
  1355. "doctrine/coding-standard": "^6.0 || ^8.1",
  1356. "phpstan/phpstan": "^0.12.20",
  1357. "phpunit/phpunit": "^7.5 || ^9.1.5"
  1358. },
  1359. "type": "library",
  1360. "extra": {
  1361. "branch-alias": {
  1362. "dev-master": "1.11.x-dev"
  1363. }
  1364. },
  1365. "autoload": {
  1366. "psr-4": {
  1367. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1368. }
  1369. },
  1370. "notification-url": "https://packagist.org/downloads/",
  1371. "license": [
  1372. "MIT"
  1373. ],
  1374. "authors": [
  1375. {
  1376. "name": "Guilherme Blanco",
  1377. "email": "guilhermeblanco@gmail.com"
  1378. },
  1379. {
  1380. "name": "Roman Borschel",
  1381. "email": "roman@code-factory.org"
  1382. },
  1383. {
  1384. "name": "Benjamin Eberlei",
  1385. "email": "kontakt@beberlei.de"
  1386. },
  1387. {
  1388. "name": "Jonathan Wage",
  1389. "email": "jonwage@gmail.com"
  1390. },
  1391. {
  1392. "name": "Johannes Schmitt",
  1393. "email": "schmittjoh@gmail.com"
  1394. }
  1395. ],
  1396. "description": "Docblock Annotations Parser",
  1397. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1398. "keywords": [
  1399. "annotations",
  1400. "docblock",
  1401. "parser"
  1402. ],
  1403. "time": "2020-10-26T10:28:16+00:00"
  1404. },
  1405. {
  1406. "name": "doctrine/cache",
  1407. "version": "1.10.2",
  1408. "source": {
  1409. "type": "git",
  1410. "url": "https://github.com/doctrine/cache.git",
  1411. "reference": "13e3381b25847283a91948d04640543941309727"
  1412. },
  1413. "dist": {
  1414. "type": "zip",
  1415. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  1416. "reference": "13e3381b25847283a91948d04640543941309727",
  1417. "shasum": ""
  1418. },
  1419. "require": {
  1420. "php": "~7.1 || ^8.0"
  1421. },
  1422. "conflict": {
  1423. "doctrine/common": ">2.2,<2.4"
  1424. },
  1425. "require-dev": {
  1426. "alcaeus/mongo-php-adapter": "^1.1",
  1427. "doctrine/coding-standard": "^6.0",
  1428. "mongodb/mongodb": "^1.1",
  1429. "phpunit/phpunit": "^7.0",
  1430. "predis/predis": "~1.0"
  1431. },
  1432. "suggest": {
  1433. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  1434. },
  1435. "type": "library",
  1436. "extra": {
  1437. "branch-alias": {
  1438. "dev-master": "1.9.x-dev"
  1439. }
  1440. },
  1441. "autoload": {
  1442. "psr-4": {
  1443. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1444. }
  1445. },
  1446. "notification-url": "https://packagist.org/downloads/",
  1447. "license": [
  1448. "MIT"
  1449. ],
  1450. "authors": [
  1451. {
  1452. "name": "Guilherme Blanco",
  1453. "email": "guilhermeblanco@gmail.com"
  1454. },
  1455. {
  1456. "name": "Roman Borschel",
  1457. "email": "roman@code-factory.org"
  1458. },
  1459. {
  1460. "name": "Benjamin Eberlei",
  1461. "email": "kontakt@beberlei.de"
  1462. },
  1463. {
  1464. "name": "Jonathan Wage",
  1465. "email": "jonwage@gmail.com"
  1466. },
  1467. {
  1468. "name": "Johannes Schmitt",
  1469. "email": "schmittjoh@gmail.com"
  1470. }
  1471. ],
  1472. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  1473. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  1474. "keywords": [
  1475. "abstraction",
  1476. "apcu",
  1477. "cache",
  1478. "caching",
  1479. "couchdb",
  1480. "memcached",
  1481. "php",
  1482. "redis",
  1483. "xcache"
  1484. ],
  1485. "funding": [
  1486. {
  1487. "url": "https://www.doctrine-project.org/sponsorship.html",
  1488. "type": "custom"
  1489. },
  1490. {
  1491. "url": "https://www.patreon.com/phpdoctrine",
  1492. "type": "patreon"
  1493. },
  1494. {
  1495. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  1496. "type": "tidelift"
  1497. }
  1498. ],
  1499. "time": "2020-07-07T18:54:01+00:00"
  1500. },
  1501. {
  1502. "name": "doctrine/collections",
  1503. "version": "1.6.7",
  1504. "source": {
  1505. "type": "git",
  1506. "url": "https://github.com/doctrine/collections.git",
  1507. "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a"
  1508. },
  1509. "dist": {
  1510. "type": "zip",
  1511. "url": "https://api.github.com/repos/doctrine/collections/zipball/55f8b799269a1a472457bd1a41b4f379d4cfba4a",
  1512. "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a",
  1513. "shasum": ""
  1514. },
  1515. "require": {
  1516. "php": "^7.1.3 || ^8.0"
  1517. },
  1518. "require-dev": {
  1519. "doctrine/coding-standard": "^6.0",
  1520. "phpstan/phpstan-shim": "^0.9.2",
  1521. "phpunit/phpunit": "^7.0",
  1522. "vimeo/psalm": "^3.8.1"
  1523. },
  1524. "type": "library",
  1525. "autoload": {
  1526. "psr-4": {
  1527. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  1528. }
  1529. },
  1530. "notification-url": "https://packagist.org/downloads/",
  1531. "license": [
  1532. "MIT"
  1533. ],
  1534. "authors": [
  1535. {
  1536. "name": "Guilherme Blanco",
  1537. "email": "guilhermeblanco@gmail.com"
  1538. },
  1539. {
  1540. "name": "Roman Borschel",
  1541. "email": "roman@code-factory.org"
  1542. },
  1543. {
  1544. "name": "Benjamin Eberlei",
  1545. "email": "kontakt@beberlei.de"
  1546. },
  1547. {
  1548. "name": "Jonathan Wage",
  1549. "email": "jonwage@gmail.com"
  1550. },
  1551. {
  1552. "name": "Johannes Schmitt",
  1553. "email": "schmittjoh@gmail.com"
  1554. }
  1555. ],
  1556. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  1557. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  1558. "keywords": [
  1559. "array",
  1560. "collections",
  1561. "iterators",
  1562. "php"
  1563. ],
  1564. "time": "2020-07-27T17:53:49+00:00"
  1565. },
  1566. {
  1567. "name": "doctrine/common",
  1568. "version": "2.13.3",
  1569. "source": {
  1570. "type": "git",
  1571. "url": "https://github.com/doctrine/common.git",
  1572. "reference": "f3812c026e557892c34ef37f6ab808a6b567da7f"
  1573. },
  1574. "dist": {
  1575. "type": "zip",
  1576. "url": "https://api.github.com/repos/doctrine/common/zipball/f3812c026e557892c34ef37f6ab808a6b567da7f",
  1577. "reference": "f3812c026e557892c34ef37f6ab808a6b567da7f",
  1578. "shasum": ""
  1579. },
  1580. "require": {
  1581. "doctrine/annotations": "^1.0",
  1582. "doctrine/cache": "^1.0",
  1583. "doctrine/collections": "^1.0",
  1584. "doctrine/event-manager": "^1.0",
  1585. "doctrine/inflector": "^1.0",
  1586. "doctrine/lexer": "^1.0",
  1587. "doctrine/persistence": "^1.3.3",
  1588. "doctrine/reflection": "^1.0",
  1589. "php": "^7.1 || ^8.0"
  1590. },
  1591. "require-dev": {
  1592. "doctrine/coding-standard": "^1.0",
  1593. "phpstan/phpstan": "^0.11",
  1594. "phpstan/phpstan-phpunit": "^0.11",
  1595. "phpunit/phpunit": "^7.0",
  1596. "squizlabs/php_codesniffer": "^3.0",
  1597. "symfony/phpunit-bridge": "^4.0.5"
  1598. },
  1599. "type": "library",
  1600. "extra": {
  1601. "branch-alias": {
  1602. "dev-master": "2.11.x-dev"
  1603. }
  1604. },
  1605. "autoload": {
  1606. "psr-4": {
  1607. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1608. }
  1609. },
  1610. "notification-url": "https://packagist.org/downloads/",
  1611. "license": [
  1612. "MIT"
  1613. ],
  1614. "authors": [
  1615. {
  1616. "name": "Guilherme Blanco",
  1617. "email": "guilhermeblanco@gmail.com"
  1618. },
  1619. {
  1620. "name": "Roman Borschel",
  1621. "email": "roman@code-factory.org"
  1622. },
  1623. {
  1624. "name": "Benjamin Eberlei",
  1625. "email": "kontakt@beberlei.de"
  1626. },
  1627. {
  1628. "name": "Jonathan Wage",
  1629. "email": "jonwage@gmail.com"
  1630. },
  1631. {
  1632. "name": "Johannes Schmitt",
  1633. "email": "schmittjoh@gmail.com"
  1634. },
  1635. {
  1636. "name": "Marco Pivetta",
  1637. "email": "ocramius@gmail.com"
  1638. }
  1639. ],
  1640. "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.",
  1641. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1642. "keywords": [
  1643. "common",
  1644. "doctrine",
  1645. "php"
  1646. ],
  1647. "funding": [
  1648. {
  1649. "url": "https://www.doctrine-project.org/sponsorship.html",
  1650. "type": "custom"
  1651. },
  1652. {
  1653. "url": "https://www.patreon.com/phpdoctrine",
  1654. "type": "patreon"
  1655. },
  1656. {
  1657. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1658. "type": "tidelift"
  1659. }
  1660. ],
  1661. "time": "2020-06-05T16:46:05+00:00"
  1662. },
  1663. {
  1664. "name": "doctrine/event-manager",
  1665. "version": "1.1.1",
  1666. "source": {
  1667. "type": "git",
  1668. "url": "https://github.com/doctrine/event-manager.git",
  1669. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  1670. },
  1671. "dist": {
  1672. "type": "zip",
  1673. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1674. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1675. "shasum": ""
  1676. },
  1677. "require": {
  1678. "php": "^7.1 || ^8.0"
  1679. },
  1680. "conflict": {
  1681. "doctrine/common": "<2.9@dev"
  1682. },
  1683. "require-dev": {
  1684. "doctrine/coding-standard": "^6.0",
  1685. "phpunit/phpunit": "^7.0"
  1686. },
  1687. "type": "library",
  1688. "extra": {
  1689. "branch-alias": {
  1690. "dev-master": "1.0.x-dev"
  1691. }
  1692. },
  1693. "autoload": {
  1694. "psr-4": {
  1695. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1696. }
  1697. },
  1698. "notification-url": "https://packagist.org/downloads/",
  1699. "license": [
  1700. "MIT"
  1701. ],
  1702. "authors": [
  1703. {
  1704. "name": "Guilherme Blanco",
  1705. "email": "guilhermeblanco@gmail.com"
  1706. },
  1707. {
  1708. "name": "Roman Borschel",
  1709. "email": "roman@code-factory.org"
  1710. },
  1711. {
  1712. "name": "Benjamin Eberlei",
  1713. "email": "kontakt@beberlei.de"
  1714. },
  1715. {
  1716. "name": "Jonathan Wage",
  1717. "email": "jonwage@gmail.com"
  1718. },
  1719. {
  1720. "name": "Johannes Schmitt",
  1721. "email": "schmittjoh@gmail.com"
  1722. },
  1723. {
  1724. "name": "Marco Pivetta",
  1725. "email": "ocramius@gmail.com"
  1726. }
  1727. ],
  1728. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1729. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1730. "keywords": [
  1731. "event",
  1732. "event dispatcher",
  1733. "event manager",
  1734. "event system",
  1735. "events"
  1736. ],
  1737. "funding": [
  1738. {
  1739. "url": "https://www.doctrine-project.org/sponsorship.html",
  1740. "type": "custom"
  1741. },
  1742. {
  1743. "url": "https://www.patreon.com/phpdoctrine",
  1744. "type": "patreon"
  1745. },
  1746. {
  1747. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1748. "type": "tidelift"
  1749. }
  1750. ],
  1751. "time": "2020-05-29T18:28:51+00:00"
  1752. },
  1753. {
  1754. "name": "doctrine/inflector",
  1755. "version": "1.4.3",
  1756. "source": {
  1757. "type": "git",
  1758. "url": "https://github.com/doctrine/inflector.git",
  1759. "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c"
  1760. },
  1761. "dist": {
  1762. "type": "zip",
  1763. "url": "https://api.github.com/repos/doctrine/inflector/zipball/4650c8b30c753a76bf44fb2ed00117d6f367490c",
  1764. "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c",
  1765. "shasum": ""
  1766. },
  1767. "require": {
  1768. "php": "^7.2 || ^8.0"
  1769. },
  1770. "require-dev": {
  1771. "doctrine/coding-standard": "^7.0",
  1772. "phpstan/phpstan": "^0.11",
  1773. "phpstan/phpstan-phpunit": "^0.11",
  1774. "phpstan/phpstan-strict-rules": "^0.11",
  1775. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  1776. },
  1777. "type": "library",
  1778. "extra": {
  1779. "branch-alias": {
  1780. "dev-master": "2.0.x-dev"
  1781. }
  1782. },
  1783. "autoload": {
  1784. "psr-4": {
  1785. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector",
  1786. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1787. }
  1788. },
  1789. "notification-url": "https://packagist.org/downloads/",
  1790. "license": [
  1791. "MIT"
  1792. ],
  1793. "authors": [
  1794. {
  1795. "name": "Guilherme Blanco",
  1796. "email": "guilhermeblanco@gmail.com"
  1797. },
  1798. {
  1799. "name": "Roman Borschel",
  1800. "email": "roman@code-factory.org"
  1801. },
  1802. {
  1803. "name": "Benjamin Eberlei",
  1804. "email": "kontakt@beberlei.de"
  1805. },
  1806. {
  1807. "name": "Jonathan Wage",
  1808. "email": "jonwage@gmail.com"
  1809. },
  1810. {
  1811. "name": "Johannes Schmitt",
  1812. "email": "schmittjoh@gmail.com"
  1813. }
  1814. ],
  1815. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1816. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1817. "keywords": [
  1818. "inflection",
  1819. "inflector",
  1820. "lowercase",
  1821. "manipulation",
  1822. "php",
  1823. "plural",
  1824. "singular",
  1825. "strings",
  1826. "uppercase",
  1827. "words"
  1828. ],
  1829. "funding": [
  1830. {
  1831. "url": "https://www.doctrine-project.org/sponsorship.html",
  1832. "type": "custom"
  1833. },
  1834. {
  1835. "url": "https://www.patreon.com/phpdoctrine",
  1836. "type": "patreon"
  1837. },
  1838. {
  1839. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1840. "type": "tidelift"
  1841. }
  1842. ],
  1843. "time": "2020-05-29T07:19:59+00:00"
  1844. },
  1845. {
  1846. "name": "doctrine/lexer",
  1847. "version": "1.2.1",
  1848. "source": {
  1849. "type": "git",
  1850. "url": "https://github.com/doctrine/lexer.git",
  1851. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  1852. },
  1853. "dist": {
  1854. "type": "zip",
  1855. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  1856. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  1857. "shasum": ""
  1858. },
  1859. "require": {
  1860. "php": "^7.2 || ^8.0"
  1861. },
  1862. "require-dev": {
  1863. "doctrine/coding-standard": "^6.0",
  1864. "phpstan/phpstan": "^0.11.8",
  1865. "phpunit/phpunit": "^8.2"
  1866. },
  1867. "type": "library",
  1868. "extra": {
  1869. "branch-alias": {
  1870. "dev-master": "1.2.x-dev"
  1871. }
  1872. },
  1873. "autoload": {
  1874. "psr-4": {
  1875. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1876. }
  1877. },
  1878. "notification-url": "https://packagist.org/downloads/",
  1879. "license": [
  1880. "MIT"
  1881. ],
  1882. "authors": [
  1883. {
  1884. "name": "Guilherme Blanco",
  1885. "email": "guilhermeblanco@gmail.com"
  1886. },
  1887. {
  1888. "name": "Roman Borschel",
  1889. "email": "roman@code-factory.org"
  1890. },
  1891. {
  1892. "name": "Johannes Schmitt",
  1893. "email": "schmittjoh@gmail.com"
  1894. }
  1895. ],
  1896. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1897. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1898. "keywords": [
  1899. "annotations",
  1900. "docblock",
  1901. "lexer",
  1902. "parser",
  1903. "php"
  1904. ],
  1905. "funding": [
  1906. {
  1907. "url": "https://www.doctrine-project.org/sponsorship.html",
  1908. "type": "custom"
  1909. },
  1910. {
  1911. "url": "https://www.patreon.com/phpdoctrine",
  1912. "type": "patreon"
  1913. },
  1914. {
  1915. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1916. "type": "tidelift"
  1917. }
  1918. ],
  1919. "time": "2020-05-25T17:44:05+00:00"
  1920. },
  1921. {
  1922. "name": "doctrine/persistence",
  1923. "version": "1.3.8",
  1924. "source": {
  1925. "type": "git",
  1926. "url": "https://github.com/doctrine/persistence.git",
  1927. "reference": "7a6eac9fb6f61bba91328f15aa7547f4806ca288"
  1928. },
  1929. "dist": {
  1930. "type": "zip",
  1931. "url": "https://api.github.com/repos/doctrine/persistence/zipball/7a6eac9fb6f61bba91328f15aa7547f4806ca288",
  1932. "reference": "7a6eac9fb6f61bba91328f15aa7547f4806ca288",
  1933. "shasum": ""
  1934. },
  1935. "require": {
  1936. "doctrine/annotations": "^1.0",
  1937. "doctrine/cache": "^1.0",
  1938. "doctrine/collections": "^1.0",
  1939. "doctrine/event-manager": "^1.0",
  1940. "doctrine/reflection": "^1.2",
  1941. "php": "^7.1 || ^8.0"
  1942. },
  1943. "conflict": {
  1944. "doctrine/common": "<2.10@dev"
  1945. },
  1946. "require-dev": {
  1947. "doctrine/coding-standard": "^6.0",
  1948. "phpstan/phpstan": "^0.11",
  1949. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1950. "vimeo/psalm": "^3.11"
  1951. },
  1952. "type": "library",
  1953. "extra": {
  1954. "branch-alias": {
  1955. "dev-master": "1.3.x-dev"
  1956. }
  1957. },
  1958. "autoload": {
  1959. "psr-4": {
  1960. "Doctrine\\Common\\": "lib/Doctrine/Common",
  1961. "Doctrine\\Persistence\\": "lib/Doctrine/Persistence"
  1962. }
  1963. },
  1964. "notification-url": "https://packagist.org/downloads/",
  1965. "license": [
  1966. "MIT"
  1967. ],
  1968. "authors": [
  1969. {
  1970. "name": "Guilherme Blanco",
  1971. "email": "guilhermeblanco@gmail.com"
  1972. },
  1973. {
  1974. "name": "Roman Borschel",
  1975. "email": "roman@code-factory.org"
  1976. },
  1977. {
  1978. "name": "Benjamin Eberlei",
  1979. "email": "kontakt@beberlei.de"
  1980. },
  1981. {
  1982. "name": "Jonathan Wage",
  1983. "email": "jonwage@gmail.com"
  1984. },
  1985. {
  1986. "name": "Johannes Schmitt",
  1987. "email": "schmittjoh@gmail.com"
  1988. },
  1989. {
  1990. "name": "Marco Pivetta",
  1991. "email": "ocramius@gmail.com"
  1992. }
  1993. ],
  1994. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1995. "homepage": "https://doctrine-project.org/projects/persistence.html",
  1996. "keywords": [
  1997. "mapper",
  1998. "object",
  1999. "odm",
  2000. "orm",
  2001. "persistence"
  2002. ],
  2003. "funding": [
  2004. {
  2005. "url": "https://www.doctrine-project.org/sponsorship.html",
  2006. "type": "custom"
  2007. },
  2008. {
  2009. "url": "https://www.patreon.com/phpdoctrine",
  2010. "type": "patreon"
  2011. },
  2012. {
  2013. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  2014. "type": "tidelift"
  2015. }
  2016. ],
  2017. "time": "2020-06-20T12:56:16+00:00"
  2018. },
  2019. {
  2020. "name": "doctrine/reflection",
  2021. "version": "1.2.2",
  2022. "source": {
  2023. "type": "git",
  2024. "url": "https://github.com/doctrine/reflection.git",
  2025. "reference": "fa587178be682efe90d005e3a322590d6ebb59a5"
  2026. },
  2027. "dist": {
  2028. "type": "zip",
  2029. "url": "https://api.github.com/repos/doctrine/reflection/zipball/fa587178be682efe90d005e3a322590d6ebb59a5",
  2030. "reference": "fa587178be682efe90d005e3a322590d6ebb59a5",
  2031. "shasum": ""
  2032. },
  2033. "require": {
  2034. "doctrine/annotations": "^1.0",
  2035. "ext-tokenizer": "*",
  2036. "php": "^7.1 || ^8.0"
  2037. },
  2038. "conflict": {
  2039. "doctrine/common": "<2.9"
  2040. },
  2041. "require-dev": {
  2042. "doctrine/coding-standard": "^6.0 || ^8.2.0",
  2043. "doctrine/common": "^2.10",
  2044. "phpstan/phpstan": "^0.11.0 || ^0.12.20",
  2045. "phpstan/phpstan-phpunit": "^0.11.0 || ^0.12.16",
  2046. "phpunit/phpunit": "^7.5 || ^9.1.5"
  2047. },
  2048. "type": "library",
  2049. "extra": {
  2050. "branch-alias": {
  2051. "dev-master": "1.2.x-dev"
  2052. }
  2053. },
  2054. "autoload": {
  2055. "psr-4": {
  2056. "Doctrine\\Common\\": "lib/Doctrine/Common"
  2057. }
  2058. },
  2059. "notification-url": "https://packagist.org/downloads/",
  2060. "license": [
  2061. "MIT"
  2062. ],
  2063. "authors": [
  2064. {
  2065. "name": "Guilherme Blanco",
  2066. "email": "guilhermeblanco@gmail.com"
  2067. },
  2068. {
  2069. "name": "Roman Borschel",
  2070. "email": "roman@code-factory.org"
  2071. },
  2072. {
  2073. "name": "Benjamin Eberlei",
  2074. "email": "kontakt@beberlei.de"
  2075. },
  2076. {
  2077. "name": "Jonathan Wage",
  2078. "email": "jonwage@gmail.com"
  2079. },
  2080. {
  2081. "name": "Johannes Schmitt",
  2082. "email": "schmittjoh@gmail.com"
  2083. },
  2084. {
  2085. "name": "Marco Pivetta",
  2086. "email": "ocramius@gmail.com"
  2087. }
  2088. ],
  2089. "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.",
  2090. "homepage": "https://www.doctrine-project.org/projects/reflection.html",
  2091. "keywords": [
  2092. "reflection",
  2093. "static"
  2094. ],
  2095. "abandoned": "roave/better-reflection",
  2096. "time": "2020-10-27T21:46:55+00:00"
  2097. },
  2098. {
  2099. "name": "drupal/address",
  2100. "version": "1.9.0",
  2101. "source": {
  2102. "type": "git",
  2103. "url": "https://git.drupalcode.org/project/address.git",
  2104. "reference": "8.x-1.9"
  2105. },
  2106. "dist": {
  2107. "type": "zip",
  2108. "url": "https://ftp.drupal.org/files/projects/address-8.x-1.9.zip",
  2109. "reference": "8.x-1.9",
  2110. "shasum": "c7e6406d88c6d6be9e8fe0091040d67012bdbf05"
  2111. },
  2112. "require": {
  2113. "commerceguys/addressing": "^1.0.7",
  2114. "drupal/core": "^8.8 || ^9"
  2115. },
  2116. "require-dev": {
  2117. "drupal/token": "^1.0"
  2118. },
  2119. "type": "drupal-module",
  2120. "extra": {
  2121. "drupal": {
  2122. "version": "8.x-1.9",
  2123. "datestamp": "1604422821",
  2124. "security-coverage": {
  2125. "status": "covered",
  2126. "message": "Covered by Drupal's security advisory policy"
  2127. }
  2128. }
  2129. },
  2130. "notification-url": "https://packages.drupal.org/8/downloads",
  2131. "license": [
  2132. "GPL-2.0-or-later"
  2133. ],
  2134. "authors": [
  2135. {
  2136. "name": "bojanz",
  2137. "homepage": "https://www.drupal.org/user/86106"
  2138. },
  2139. {
  2140. "name": "dww",
  2141. "homepage": "https://www.drupal.org/user/46549"
  2142. },
  2143. {
  2144. "name": "googletorp",
  2145. "homepage": "https://www.drupal.org/user/386230"
  2146. },
  2147. {
  2148. "name": "jsacksick",
  2149. "homepage": "https://www.drupal.org/user/972218"
  2150. },
  2151. {
  2152. "name": "mglaman",
  2153. "homepage": "https://www.drupal.org/user/2416470"
  2154. },
  2155. {
  2156. "name": "rszrama",
  2157. "homepage": "https://www.drupal.org/user/49344"
  2158. }
  2159. ],
  2160. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  2161. "homepage": "http://drupal.org/project/address",
  2162. "support": {
  2163. "source": "https://git.drupalcode.org/project/address"
  2164. }
  2165. },
  2166. {
  2167. "name": "drupal/admin_toolbar",
  2168. "version": "2.4.0",
  2169. "source": {
  2170. "type": "git",
  2171. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  2172. "reference": "8.x-2.4"
  2173. },
  2174. "dist": {
  2175. "type": "zip",
  2176. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.4.zip",
  2177. "reference": "8.x-2.4",
  2178. "shasum": "6240047b8d91ac78f98d861ba8282af971fa0b38"
  2179. },
  2180. "require": {
  2181. "drupal/core": "^8.8.0 || ^9.0"
  2182. },
  2183. "type": "drupal-module",
  2184. "extra": {
  2185. "drupal": {
  2186. "version": "8.x-2.4",
  2187. "datestamp": "1601999178",
  2188. "security-coverage": {
  2189. "status": "covered",
  2190. "message": "Covered by Drupal's security advisory policy"
  2191. }
  2192. }
  2193. },
  2194. "notification-url": "https://packages.drupal.org/8/downloads",
  2195. "license": [
  2196. "GPL-2.0-or-later"
  2197. ],
  2198. "authors": [
  2199. {
  2200. "name": "Wilfrid Roze (eme)",
  2201. "homepage": "https://www.drupal.org/u/eme",
  2202. "role": "Maintainer"
  2203. },
  2204. {
  2205. "name": "Romain Jarraud (romainj)",
  2206. "homepage": "https://www.drupal.org/u/romainj",
  2207. "role": "Maintainer"
  2208. },
  2209. {
  2210. "name": "Adrian Cid Almaguer (adriancid)",
  2211. "homepage": "https://www.drupal.org/u/adriancid",
  2212. "email": "adriancid@gmail.com",
  2213. "role": "Maintainer"
  2214. },
  2215. {
  2216. "name": "Mohamed Anis Taktak (matio89)",
  2217. "homepage": "https://www.drupal.org/u/matio89",
  2218. "role": "Maintainer"
  2219. },
  2220. {
  2221. "name": "fethi.krout",
  2222. "homepage": "https://www.drupal.org/user/3206765"
  2223. },
  2224. {
  2225. "name": "matio89",
  2226. "homepage": "https://www.drupal.org/user/2320090"
  2227. },
  2228. {
  2229. "name": "romainj",
  2230. "homepage": "https://www.drupal.org/user/370706"
  2231. }
  2232. ],
  2233. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  2234. "homepage": "http://drupal.org/project/admin_toolbar",
  2235. "keywords": [
  2236. "Drupal",
  2237. "Toolbar"
  2238. ],
  2239. "support": {
  2240. "source": "https://git.drupalcode.org/project/admin_toolbar",
  2241. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  2242. }
  2243. },
  2244. {
  2245. "name": "drupal/adminimal_theme",
  2246. "version": "1.6.0",
  2247. "source": {
  2248. "type": "git",
  2249. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  2250. "reference": "8.x-1.6"
  2251. },
  2252. "dist": {
  2253. "type": "zip",
  2254. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.6.zip",
  2255. "reference": "8.x-1.6",
  2256. "shasum": "89132d0853388afe8dfd11fb83c69a48d8c13413"
  2257. },
  2258. "require": {
  2259. "drupal/core": "^8.8 || ^9"
  2260. },
  2261. "type": "drupal-theme",
  2262. "extra": {
  2263. "drupal": {
  2264. "version": "8.x-1.6",
  2265. "datestamp": "1602006937",
  2266. "security-coverage": {
  2267. "status": "covered",
  2268. "message": "Covered by Drupal's security advisory policy"
  2269. }
  2270. }
  2271. },
  2272. "notification-url": "https://packages.drupal.org/8/downloads",
  2273. "license": [
  2274. "GPL-2.0+"
  2275. ],
  2276. "authors": [
  2277. {
  2278. "name": "ANDiTKO",
  2279. "homepage": "https://www.drupal.org/user/1428124"
  2280. },
  2281. {
  2282. "name": "andrey.troeglazov",
  2283. "homepage": "https://www.drupal.org/user/3145389"
  2284. },
  2285. {
  2286. "name": "realityloop",
  2287. "homepage": "https://www.drupal.org/user/139189"
  2288. }
  2289. ],
  2290. "description": "Drupal administration theme with modern minimalist design.",
  2291. "homepage": "https://www.drupal.org/project/adminimal_theme",
  2292. "support": {
  2293. "source": "https://git.drupalcode.org/project/adminimal_theme",
  2294. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  2295. }
  2296. },
  2297. {
  2298. "name": "drupal/advanced_text_formatter",
  2299. "version": "2.0.0",
  2300. "source": {
  2301. "type": "git",
  2302. "url": "https://git.drupalcode.org/project/advanced_text_formatter.git",
  2303. "reference": "2.0.0"
  2304. },
  2305. "dist": {
  2306. "type": "zip",
  2307. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-2.0.0.zip",
  2308. "reference": "2.0.0",
  2309. "shasum": "ecd1d0e46dfc137251f9b71e724c6edddd5c48df"
  2310. },
  2311. "require": {
  2312. "drupal/core": "^8 || ^9"
  2313. },
  2314. "type": "drupal-module",
  2315. "extra": {
  2316. "drupal": {
  2317. "version": "2.0.0",
  2318. "datestamp": "1591030704",
  2319. "security-coverage": {
  2320. "status": "covered",
  2321. "message": "Covered by Drupal's security advisory policy"
  2322. }
  2323. }
  2324. },
  2325. "notification-url": "https://packages.drupal.org/8/downloads",
  2326. "license": [
  2327. "GPL-2.0-or-later"
  2328. ],
  2329. "authors": [
  2330. {
  2331. "name": "azovsky",
  2332. "homepage": "https://www.drupal.org/user/330533"
  2333. },
  2334. {
  2335. "name": "thmnhat",
  2336. "homepage": "https://www.drupal.org/user/998946"
  2337. }
  2338. ],
  2339. "description": "Provides an additional formatter for text field, text area and text format.",
  2340. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  2341. "support": {
  2342. "source": "https://git.drupalcode.org/project/advanced_text_formatter"
  2343. }
  2344. },
  2345. {
  2346. "name": "drupal/audiofield",
  2347. "version": "1.10.0",
  2348. "source": {
  2349. "type": "git",
  2350. "url": "https://git.drupalcode.org/project/audiofield.git",
  2351. "reference": "8.x-1.10"
  2352. },
  2353. "dist": {
  2354. "type": "zip",
  2355. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.10.zip",
  2356. "reference": "8.x-1.10",
  2357. "shasum": "0b321f6c01b77c2ff28ef8cb646af8ec223dc4c1"
  2358. },
  2359. "require": {
  2360. "drupal/core": "^8 || ^9"
  2361. },
  2362. "type": "drupal-module",
  2363. "extra": {
  2364. "drupal": {
  2365. "version": "8.x-1.10",
  2366. "datestamp": "1607014410",
  2367. "security-coverage": {
  2368. "status": "covered",
  2369. "message": "Covered by Drupal's security advisory policy"
  2370. }
  2371. },
  2372. "drush": {
  2373. "services": {
  2374. "drush.services.yml": "^9"
  2375. }
  2376. }
  2377. },
  2378. "notification-url": "https://packages.drupal.org/8/downloads",
  2379. "license": [
  2380. "GPL-2.0-or-later"
  2381. ],
  2382. "authors": [
  2383. {
  2384. "name": "Daniel Moberly",
  2385. "homepage": "https://www.drupal.org/u/danielmoberly",
  2386. "role": "Maintainer"
  2387. },
  2388. {
  2389. "name": "josipsaric",
  2390. "homepage": "https://www.drupal.org/user/3063287"
  2391. },
  2392. {
  2393. "name": "tamerzg",
  2394. "homepage": "https://www.drupal.org/user/464564"
  2395. }
  2396. ],
  2397. "description": "AudioField Module",
  2398. "homepage": "https://www.drupal.org/project/audiofield",
  2399. "support": {
  2400. "source": "https://git.drupalcode.org/project/audiofield",
  2401. "issues": "https://www.drupal.org/project/issues/audiofield"
  2402. }
  2403. },
  2404. {
  2405. "name": "drupal/auto_entitylabel",
  2406. "version": "dev-3.x",
  2407. "source": {
  2408. "type": "git",
  2409. "url": "https://git.drupalcode.org/project/auto_entitylabel.git",
  2410. "reference": "7d2063d5ee869d20e00409eca12bf6776fff7772"
  2411. },
  2412. "require": {
  2413. "drupal/core": "^8 || ^9"
  2414. },
  2415. "require-dev": {
  2416. "drupal/token": "^1.0"
  2417. },
  2418. "type": "drupal-module",
  2419. "extra": {
  2420. "branch-alias": {
  2421. "dev-3.x": "3.x-dev"
  2422. },
  2423. "drupal": {
  2424. "version": "8.x-3.0-beta3+6-dev",
  2425. "datestamp": "1609346741",
  2426. "security-coverage": {
  2427. "status": "not-covered",
  2428. "message": "Dev releases are not covered by Drupal security advisories."
  2429. }
  2430. }
  2431. },
  2432. "notification-url": "https://packages.drupal.org/8/downloads",
  2433. "license": [
  2434. "GPL-2.0-or-later"
  2435. ],
  2436. "authors": [
  2437. {
  2438. "name": "Pravin Ajaaz",
  2439. "homepage": "https://www.drupal.org/user/2910049"
  2440. },
  2441. {
  2442. "name": "RenatoG",
  2443. "homepage": "https://www.drupal.org/user/3326031"
  2444. },
  2445. {
  2446. "name": "VladimirAus",
  2447. "homepage": "https://www.drupal.org/user/673120"
  2448. },
  2449. {
  2450. "name": "bforchhammer",
  2451. "homepage": "https://www.drupal.org/user/216396"
  2452. },
  2453. {
  2454. "name": "colan",
  2455. "homepage": "https://www.drupal.org/user/58704"
  2456. },
  2457. {
  2458. "name": "diqidoq",
  2459. "homepage": "https://www.drupal.org/user/1001934"
  2460. },
  2461. {
  2462. "name": "purushotam.rai",
  2463. "homepage": "https://www.drupal.org/user/3193859"
  2464. }
  2465. ],
  2466. "description": "Allows hiding of entity label fields and automatic label creation.",
  2467. "homepage": "https://www.drupal.org/project/auto_entitylabel",
  2468. "support": {
  2469. "source": "https://git.drupalcode.org/project/auto_entitylabel",
  2470. "issues": "https://www.drupal.org/project/issues/auto_entitylabel"
  2471. },
  2472. "time": "2021-03-01T17:14:07+00:00"
  2473. },
  2474. {
  2475. "name": "drupal/autocomplete_deluxe",
  2476. "version": "2.0.0-rc1",
  2477. "source": {
  2478. "type": "git",
  2479. "url": "https://git.drupalcode.org/project/autocomplete_deluxe.git",
  2480. "reference": "2.0.0-rc1"
  2481. },
  2482. "dist": {
  2483. "type": "zip",
  2484. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-2.0.0-rc1.zip",
  2485. "reference": "2.0.0-rc1",
  2486. "shasum": "9f3c63862652862322184bb892cc1fa80c9f47c1"
  2487. },
  2488. "require": {
  2489. "drupal/core": "^8 || ^9"
  2490. },
  2491. "type": "drupal-module",
  2492. "extra": {
  2493. "drupal": {
  2494. "version": "2.0.0-rc1",
  2495. "datestamp": "1592389562",
  2496. "security-coverage": {
  2497. "status": "not-covered",
  2498. "message": "RC releases are not covered by Drupal security advisories."
  2499. }
  2500. }
  2501. },
  2502. "notification-url": "https://packages.drupal.org/8/downloads",
  2503. "license": [
  2504. "GPL-2.0-or-later"
  2505. ],
  2506. "authors": [
  2507. {
  2508. "name": "Vardot",
  2509. "homepage": "https://www.drupal.org/vardot",
  2510. "role": "Maintenance for D8 and D9 versions"
  2511. },
  2512. {
  2513. "name": "Mediacurrent",
  2514. "homepage": "https://www.drupal.org/mediacurrent",
  2515. "role": "Supporting organization"
  2516. },
  2517. {
  2518. "name": "RajabNatshah",
  2519. "homepage": "https://www.drupal.org/user/1414312"
  2520. },
  2521. {
  2522. "name": "edwardchiapet",
  2523. "homepage": "https://www.drupal.org/user/2354784"
  2524. },
  2525. {
  2526. "name": "mpriscella",
  2527. "homepage": "https://www.drupal.org/user/2354820"
  2528. },
  2529. {
  2530. "name": "sepgil",
  2531. "homepage": "https://www.drupal.org/user/512828"
  2532. }
  2533. ],
  2534. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  2535. "homepage": "https://www.drupal.org/project/autocomplete_deluxe",
  2536. "support": {
  2537. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  2538. "issues": "https://www.drupal.org/project/issues/autocomplete_deluxe"
  2539. }
  2540. },
  2541. {
  2542. "name": "drupal/autologout",
  2543. "version": "1.3.0",
  2544. "source": {
  2545. "type": "git",
  2546. "url": "https://git.drupalcode.org/project/autologout.git",
  2547. "reference": "8.x-1.3"
  2548. },
  2549. "dist": {
  2550. "type": "zip",
  2551. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.3.zip",
  2552. "reference": "8.x-1.3",
  2553. "shasum": "87733b2042d9dcdee0d8f33d206872208a8c97ea"
  2554. },
  2555. "require": {
  2556. "drupal/core": "^8 || ^9"
  2557. },
  2558. "type": "drupal-module",
  2559. "extra": {
  2560. "drupal": {
  2561. "version": "8.x-1.3",
  2562. "datestamp": "1587193798",
  2563. "security-coverage": {
  2564. "status": "covered",
  2565. "message": "Covered by Drupal's security advisory policy"
  2566. }
  2567. }
  2568. },
  2569. "notification-url": "https://packages.drupal.org/8/downloads",
  2570. "license": [
  2571. "GPL-2.0+"
  2572. ],
  2573. "authors": [
  2574. {
  2575. "name": "AjK",
  2576. "homepage": "https://www.drupal.org/user/39030"
  2577. },
  2578. {
  2579. "name": "AjitS",
  2580. "homepage": "https://www.drupal.org/user/981944"
  2581. },
  2582. {
  2583. "name": "boshtian",
  2584. "homepage": "https://www.drupal.org/user/1773456"
  2585. },
  2586. {
  2587. "name": "dandrews",
  2588. "homepage": "https://www.drupal.org/user/2014490"
  2589. },
  2590. {
  2591. "name": "darksnow",
  2592. "homepage": "https://www.drupal.org/user/391915"
  2593. },
  2594. {
  2595. "name": "johnennew",
  2596. "homepage": "https://www.drupal.org/user/1150042"
  2597. },
  2598. {
  2599. "name": "jrglasgow",
  2600. "homepage": "https://www.drupal.org/user/36590"
  2601. },
  2602. {
  2603. "name": "kmasood",
  2604. "homepage": "https://www.drupal.org/user/1262860"
  2605. },
  2606. {
  2607. "name": "levelos",
  2608. "homepage": "https://www.drupal.org/user/54135"
  2609. },
  2610. {
  2611. "name": "prabeen.giri",
  2612. "homepage": "https://www.drupal.org/user/913078"
  2613. },
  2614. {
  2615. "name": "str8",
  2616. "homepage": "https://www.drupal.org/user/2865063"
  2617. }
  2618. ],
  2619. "description": "Adds automated timed logout.",
  2620. "homepage": "http://drupal.org/project/autologout",
  2621. "support": {
  2622. "source": "https://git.drupalcode.org/project/autologout"
  2623. }
  2624. },
  2625. {
  2626. "name": "drupal/better_exposed_filters",
  2627. "version": "5.0.0-beta1",
  2628. "source": {
  2629. "type": "git",
  2630. "url": "https://git.drupalcode.org/project/better_exposed_filters.git",
  2631. "reference": "8.x-5.0-beta1"
  2632. },
  2633. "dist": {
  2634. "type": "zip",
  2635. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-8.x-5.0-beta1.zip",
  2636. "reference": "8.x-5.0-beta1",
  2637. "shasum": "bc5ce873fa699ee584fdeb2fd28ad6c5cb456b03"
  2638. },
  2639. "require": {
  2640. "drupal/core": "^8.8 || ^9",
  2641. "drupal/jquery_ui": "^1.4",
  2642. "drupal/jquery_ui_datepicker": "^1.0",
  2643. "drupal/jquery_ui_slider": "^1.1",
  2644. "drupal/jquery_ui_touch_punch": "^1.0"
  2645. },
  2646. "type": "drupal-module",
  2647. "extra": {
  2648. "drupal": {
  2649. "version": "8.x-5.0-beta1",
  2650. "datestamp": "1594141892",
  2651. "security-coverage": {
  2652. "status": "not-covered",
  2653. "message": "Beta releases are not covered by Drupal security advisories."
  2654. }
  2655. }
  2656. },
  2657. "notification-url": "https://packages.drupal.org/8/downloads",
  2658. "license": [
  2659. "GPL-2.0+"
  2660. ],
  2661. "authors": [
  2662. {
  2663. "name": "Mike Keran",
  2664. "homepage": "https://www.drupal.org/u/mikeker"
  2665. },
  2666. {
  2667. "name": "Martin Keereman",
  2668. "homepage": "https://www.drupal.org/u/etroid"
  2669. },
  2670. {
  2671. "name": "chr.fritsch",
  2672. "homepage": "https://www.drupal.org/user/2103716"
  2673. },
  2674. {
  2675. "name": "jkopel",
  2676. "homepage": "https://www.drupal.org/user/66207"
  2677. },
  2678. {
  2679. "name": "mikeker",
  2680. "homepage": "https://www.drupal.org/user/192273"
  2681. },
  2682. {
  2683. "name": "rlhawk",
  2684. "homepage": "https://www.drupal.org/user/352283"
  2685. }
  2686. ],
  2687. "description": "Replaces the Views default single- or multi-select boxes with more advanced options.",
  2688. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2689. "support": {
  2690. "source": "https://git.drupalcode.org/project/better_exposed_filters",
  2691. "issues": "https://www.drupal.org/project/issues/better_exposed_filters"
  2692. }
  2693. },
  2694. {
  2695. "name": "drupal/betterlogin",
  2696. "version": "1.5.0",
  2697. "source": {
  2698. "type": "git",
  2699. "url": "https://git.drupalcode.org/project/betterlogin.git",
  2700. "reference": "8.x-1.5"
  2701. },
  2702. "dist": {
  2703. "type": "zip",
  2704. "url": "https://ftp.drupal.org/files/projects/betterlogin-8.x-1.5.zip",
  2705. "reference": "8.x-1.5",
  2706. "shasum": "2351972813754d0d4f15e49c9a933450dc1297f0"
  2707. },
  2708. "require": {
  2709. "drupal/core": "^8 || ^9"
  2710. },
  2711. "type": "drupal-module",
  2712. "extra": {
  2713. "drupal": {
  2714. "version": "8.x-1.5",
  2715. "datestamp": "1588242718",
  2716. "security-coverage": {
  2717. "status": "covered",
  2718. "message": "Covered by Drupal's security advisory policy"
  2719. }
  2720. }
  2721. },
  2722. "notification-url": "https://packages.drupal.org/8/downloads",
  2723. "license": [
  2724. "GPL-2.0-or-later"
  2725. ],
  2726. "authors": [
  2727. {
  2728. "name": "theamoeba",
  2729. "homepage": "https://www.drupal.org/user/251700"
  2730. },
  2731. {
  2732. "name": "yogeshmpawar",
  2733. "homepage": "https://www.drupal.org/user/2922907"
  2734. }
  2735. ],
  2736. "description": "Make the login screens better :)",
  2737. "homepage": "https://www.drupal.org/project/betterlogin",
  2738. "support": {
  2739. "source": "https://git.drupalcode.org/project/betterlogin"
  2740. }
  2741. },
  2742. {
  2743. "name": "drupal/block_class",
  2744. "version": "1.3.0",
  2745. "source": {
  2746. "type": "git",
  2747. "url": "https://git.drupalcode.org/project/block_class.git",
  2748. "reference": "8.x-1.3"
  2749. },
  2750. "dist": {
  2751. "type": "zip",
  2752. "url": "https://ftp.drupal.org/files/projects/block_class-8.x-1.3.zip",
  2753. "reference": "8.x-1.3",
  2754. "shasum": "29cfdb646ef83210f0eced30b38243339158fe3f"
  2755. },
  2756. "require": {
  2757. "drupal/core": "^8 || ^9"
  2758. },
  2759. "type": "drupal-module",
  2760. "extra": {
  2761. "drupal": {
  2762. "version": "8.x-1.3",
  2763. "datestamp": "1604426178",
  2764. "security-coverage": {
  2765. "status": "covered",
  2766. "message": "Covered by Drupal's security advisory policy"
  2767. }
  2768. }
  2769. },
  2770. "notification-url": "https://packages.drupal.org/8/downloads",
  2771. "license": [
  2772. "GPL-2.0-or-later"
  2773. ],
  2774. "authors": [
  2775. {
  2776. "name": "Todd Nienkerk",
  2777. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2778. "role": "Maintainer"
  2779. },
  2780. {
  2781. "name": "Renato Gonçalves (RenatoG)",
  2782. "homepage": "https://www.drupal.org/u/RenatoG",
  2783. "email": "renatog@ciandt.com",
  2784. "role": "Maintainer"
  2785. },
  2786. {
  2787. "name": "Neslee Canil Pinto",
  2788. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  2789. "role": "Maintainer"
  2790. },
  2791. {
  2792. "name": "Aaron Stanush",
  2793. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2794. "role": "Maintainer"
  2795. },
  2796. {
  2797. "name": "David Suissa (DYdave)",
  2798. "homepage": "https://www.drupal.org/u/DYdave",
  2799. "role": "Maintainer"
  2800. },
  2801. {
  2802. "name": "Four Kitchens",
  2803. "homepage": "https://www.drupal.org/user/358502",
  2804. "role": "Maintainer"
  2805. },
  2806. {
  2807. "name": "berenddeboer",
  2808. "homepage": "https://www.drupal.org/u/berenddeboer",
  2809. "role": "Maintainer"
  2810. },
  2811. {
  2812. "name": "elliotttf",
  2813. "homepage": "https://www.drupal.org/u/elliotttf",
  2814. "role": "Maintainer"
  2815. },
  2816. {
  2817. "name": "Michal Minecki (mirzu)",
  2818. "homepage": "https://www.drupal.org/u/mirzu",
  2819. "role": "Maintainer"
  2820. },
  2821. {
  2822. "name": "Patrick Coffey (pcoffey)",
  2823. "homepage": "https://www.drupal.org/u/pcoffey",
  2824. "role": "Maintainer"
  2825. },
  2826. {
  2827. "name": "Taylor Smith (tsmith512)",
  2828. "homepage": "https://www.drupal.org/u/tsmith512",
  2829. "role": "Maintainer"
  2830. }
  2831. ],
  2832. "description": "Allows assigning classes to Blocks.",
  2833. "homepage": "https://www.drupal.org/project/block_class",
  2834. "keywords": [
  2835. "Drupal"
  2836. ],
  2837. "support": {
  2838. "source": "https://git.drupalcode.org/project/block_class",
  2839. "issues": "https://www.drupal.org/project/issues/block_class",
  2840. "irc": "irc://irc.freenode.org/drupal-contribute"
  2841. }
  2842. },
  2843. {
  2844. "name": "drupal/bulkdelete",
  2845. "version": "dev-1.x",
  2846. "source": {
  2847. "type": "git",
  2848. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2849. "reference": "36e12429e99606463b9ef15203c2018de69965b2"
  2850. },
  2851. "require": {
  2852. "drupal/core": "^8.7.7 || ^9"
  2853. },
  2854. "type": "drupal-module",
  2855. "extra": {
  2856. "branch-alias": {
  2857. "dev-1.x": "1.x-dev"
  2858. },
  2859. "drupal": {
  2860. "version": "8.x-1.x-dev",
  2861. "datestamp": "1590300128",
  2862. "security-coverage": {
  2863. "status": "not-covered",
  2864. "message": "Dev releases are not covered by Drupal security advisories."
  2865. }
  2866. }
  2867. },
  2868. "notification-url": "https://packages.drupal.org/8/downloads",
  2869. "license": [
  2870. "GPL-2.0-or-later"
  2871. ],
  2872. "authors": [
  2873. {
  2874. "name": "Kars-T",
  2875. "homepage": "https://www.drupal.org/user/224499"
  2876. },
  2877. {
  2878. "name": "Rahul Seth",
  2879. "homepage": "https://www.drupal.org/user/2694359"
  2880. },
  2881. {
  2882. "name": "adriancid",
  2883. "homepage": "https://www.drupal.org/user/1962106"
  2884. },
  2885. {
  2886. "name": "robertDouglass",
  2887. "homepage": "https://www.drupal.org/user/5449"
  2888. }
  2889. ],
  2890. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2891. "homepage": "https://www.drupal.org/project/bulkdelete",
  2892. "support": {
  2893. "source": "https://git.drupalcode.org/project/bulkdelete"
  2894. },
  2895. "time": "2020-05-24T06:01:38+00:00"
  2896. },
  2897. {
  2898. "name": "drupal/cer",
  2899. "version": "4.0.0-alpha3",
  2900. "source": {
  2901. "type": "git",
  2902. "url": "https://git.drupalcode.org/project/cer.git",
  2903. "reference": "8.x-4.0-alpha3"
  2904. },
  2905. "dist": {
  2906. "type": "zip",
  2907. "url": "https://ftp.drupal.org/files/projects/cer-8.x-4.0-alpha3.zip",
  2908. "reference": "8.x-4.0-alpha3",
  2909. "shasum": "3c508e842a2c17235e4c9909ab64ef1aeb9d3ebe"
  2910. },
  2911. "require": {
  2912. "drupal/core": "^8 || ^9"
  2913. },
  2914. "type": "drupal-module",
  2915. "extra": {
  2916. "drupal": {
  2917. "version": "8.x-4.0-alpha3",
  2918. "datestamp": "1620240213",
  2919. "security-coverage": {
  2920. "status": "not-covered",
  2921. "message": "Project has not opted into security advisory coverage!"
  2922. }
  2923. }
  2924. },
  2925. "notification-url": "https://packages.drupal.org/8/downloads",
  2926. "license": [
  2927. "GPL-2.0-or-later"
  2928. ],
  2929. "authors": [
  2930. {
  2931. "name": "bmcclure",
  2932. "homepage": "https://www.drupal.org/user/278485"
  2933. },
  2934. {
  2935. "name": "chertzog",
  2936. "homepage": "https://www.drupal.org/user/806366"
  2937. },
  2938. {
  2939. "name": "gcb",
  2940. "homepage": "https://www.drupal.org/user/1682976"
  2941. },
  2942. {
  2943. "name": "gregcube",
  2944. "homepage": "https://www.drupal.org/user/336930"
  2945. },
  2946. {
  2947. "name": "jrglasgow",
  2948. "homepage": "https://www.drupal.org/user/36590"
  2949. },
  2950. {
  2951. "name": "phenaproxima",
  2952. "homepage": "https://www.drupal.org/user/205645"
  2953. }
  2954. ],
  2955. "description": "Allows user to create two-way references between entities.",
  2956. "homepage": "https://www.drupal.org/project/cer",
  2957. "support": {
  2958. "source": "https://git.drupalcode.org/project/cer"
  2959. }
  2960. },
  2961. {
  2962. "name": "drupal/config_devel",
  2963. "version": "dev-1.x",
  2964. "source": {
  2965. "type": "git",
  2966. "url": "https://git.drupalcode.org/project/config_devel.git",
  2967. "reference": "e519faae46b88fc23a88f64c22b6146cfec863a9"
  2968. },
  2969. "require": {
  2970. "drupal/core": "^8 || ^9"
  2971. },
  2972. "type": "drupal-module",
  2973. "extra": {
  2974. "branch-alias": {
  2975. "dev-1.x": "1.x-dev"
  2976. },
  2977. "drupal": {
  2978. "version": "8.x-1.7+3-dev",
  2979. "datestamp": "1607535421",
  2980. "security-coverage": {
  2981. "status": "not-covered",
  2982. "message": "Dev releases are not covered by Drupal security advisories."
  2983. }
  2984. }
  2985. },
  2986. "notification-url": "https://packages.drupal.org/8/downloads",
  2987. "license": [
  2988. "GPL-2.0+"
  2989. ],
  2990. "authors": [
  2991. {
  2992. "name": "alexpott",
  2993. "homepage": "https://www.drupal.org/user/157725"
  2994. },
  2995. {
  2996. "name": "benjy",
  2997. "homepage": "https://www.drupal.org/user/1852732"
  2998. },
  2999. {
  3000. "name": "chx",
  3001. "homepage": "https://www.drupal.org/user/9446"
  3002. },
  3003. {
  3004. "name": "joachim",
  3005. "homepage": "https://www.drupal.org/user/107701"
  3006. },
  3007. {
  3008. "name": "nedjo",
  3009. "homepage": "https://www.drupal.org/user/4481"
  3010. },
  3011. {
  3012. "name": "tim.plunkett",
  3013. "homepage": "https://www.drupal.org/user/241634"
  3014. },
  3015. {
  3016. "name": "vijaycs85",
  3017. "homepage": "https://www.drupal.org/user/93488"
  3018. }
  3019. ],
  3020. "description": "Helps developers work with configuration.",
  3021. "homepage": "https://www.drupal.org/project/config_devel",
  3022. "support": {
  3023. "source": "https://git.drupalcode.org/project/config_devel"
  3024. },
  3025. "time": "2020-12-11T15:36:08+00:00"
  3026. },
  3027. {
  3028. "name": "drupal/config_filter",
  3029. "version": "1.8.0",
  3030. "source": {
  3031. "type": "git",
  3032. "url": "https://git.drupalcode.org/project/config_filter.git",
  3033. "reference": "8.x-1.8"
  3034. },
  3035. "dist": {
  3036. "type": "zip",
  3037. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.8.zip",
  3038. "reference": "8.x-1.8",
  3039. "shasum": "5def5f97e79d6f5af6bb7007f012443475c90bfe"
  3040. },
  3041. "require": {
  3042. "drupal/core": "^8 || ^9"
  3043. },
  3044. "suggest": {
  3045. "drupal/config_split": "Split site configuration for different environments."
  3046. },
  3047. "type": "drupal-module",
  3048. "extra": {
  3049. "drupal": {
  3050. "version": "8.x-1.8",
  3051. "datestamp": "1603870062",
  3052. "security-coverage": {
  3053. "status": "covered",
  3054. "message": "Covered by Drupal's security advisory policy"
  3055. }
  3056. }
  3057. },
  3058. "notification-url": "https://packages.drupal.org/8/downloads",
  3059. "license": [
  3060. "GPL-2.0-or-later"
  3061. ],
  3062. "authors": [
  3063. {
  3064. "name": "Fabian Bircher",
  3065. "homepage": "https://www.drupal.org/u/bircher",
  3066. "email": "opensource@fabianbircher.com",
  3067. "role": "Maintainer"
  3068. },
  3069. {
  3070. "name": "Nuvole Web",
  3071. "homepage": "http://nuvole.org",
  3072. "email": "info@nuvole.org",
  3073. "role": "Maintainer"
  3074. },
  3075. {
  3076. "name": "pescetti",
  3077. "homepage": "https://www.drupal.org/user/436244"
  3078. }
  3079. ],
  3080. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  3081. "homepage": "https://www.drupal.org/project/config_filter",
  3082. "keywords": [
  3083. "Drupal",
  3084. "configuration",
  3085. "configuration management"
  3086. ],
  3087. "support": {
  3088. "source": "https://git.drupalcode.org/project/config_filter",
  3089. "issues": "https://www.drupal.org/project/issues/config_filter",
  3090. "slack": "https://drupal.slack.com/archives/C45342CDD"
  3091. }
  3092. },
  3093. {
  3094. "name": "drupal/config_ignore",
  3095. "version": "2.3.0",
  3096. "source": {
  3097. "type": "git",
  3098. "url": "https://git.drupalcode.org/project/config_ignore.git",
  3099. "reference": "8.x-2.3"
  3100. },
  3101. "dist": {
  3102. "type": "zip",
  3103. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.3.zip",
  3104. "reference": "8.x-2.3",
  3105. "shasum": "2e1f07a455275fb6637909921a8915646601fc00"
  3106. },
  3107. "require": {
  3108. "drupal/config_filter": "^1 || ^2",
  3109. "drupal/core": "^8 || ^9"
  3110. },
  3111. "type": "drupal-module",
  3112. "extra": {
  3113. "drupal": {
  3114. "version": "8.x-2.3",
  3115. "datestamp": "1608306489",
  3116. "security-coverage": {
  3117. "status": "covered",
  3118. "message": "Covered by Drupal's security advisory policy"
  3119. }
  3120. }
  3121. },
  3122. "notification-url": "https://packages.drupal.org/8/downloads",
  3123. "license": [
  3124. "GPL-2.0-or-later"
  3125. ],
  3126. "authors": [
  3127. {
  3128. "name": "Tommy Lynge Jørgensen",
  3129. "homepage": "https://www.drupal.org/u/tlyngej",
  3130. "email": "tlyngej@gmail.com",
  3131. "role": "Maintainer"
  3132. },
  3133. {
  3134. "name": "Fabian Bircher",
  3135. "homepage": "https://www.drupal.org/u/bircher",
  3136. "role": "Maintainer"
  3137. },
  3138. {
  3139. "name": "tlyngej",
  3140. "homepage": "https://www.drupal.org/user/413139"
  3141. }
  3142. ],
  3143. "description": "Ignore certain configuration during import.",
  3144. "homepage": "http://drupal.org/project/config_ignore",
  3145. "support": {
  3146. "source": "https://git.drupalcode.org/project/config_ignore",
  3147. "issues": "http://drupal.org/project/config_ignore",
  3148. "irc": "irc://irc.freenode.org/drupal-contribute"
  3149. }
  3150. },
  3151. {
  3152. "name": "drupal/config_update",
  3153. "version": "1.7.0",
  3154. "source": {
  3155. "type": "git",
  3156. "url": "https://git.drupalcode.org/project/config_update.git",
  3157. "reference": "8.x-1.7"
  3158. },
  3159. "dist": {
  3160. "type": "zip",
  3161. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.7.zip",
  3162. "reference": "8.x-1.7",
  3163. "shasum": "8f079abf7c2ea826a27fa5224b0770a26404c968"
  3164. },
  3165. "require": {
  3166. "drupal/core": "^8 || ^9"
  3167. },
  3168. "type": "drupal-module",
  3169. "extra": {
  3170. "drupal": {
  3171. "version": "8.x-1.7",
  3172. "datestamp": "1586355587",
  3173. "security-coverage": {
  3174. "status": "covered",
  3175. "message": "Covered by Drupal's security advisory policy"
  3176. }
  3177. }
  3178. },
  3179. "notification-url": "https://packages.drupal.org/8/downloads",
  3180. "license": [
  3181. "GPL-2.0-or-later"
  3182. ],
  3183. "authors": [
  3184. {
  3185. "name": "jhodgdon",
  3186. "homepage": "https://www.drupal.org/user/155601"
  3187. },
  3188. {
  3189. "name": "nedjo",
  3190. "homepage": "https://www.drupal.org/user/4481"
  3191. }
  3192. ],
  3193. "description": "Provides basic revert and update functionality for other modules",
  3194. "homepage": "https://www.drupal.org/project/config_update",
  3195. "support": {
  3196. "source": "https://git.drupalcode.org/project/config_update"
  3197. }
  3198. },
  3199. {
  3200. "name": "drupal/console",
  3201. "version": "1.9.7",
  3202. "source": {
  3203. "type": "git",
  3204. "url": "https://github.com/hechoendrupal/drupal-console.git",
  3205. "reference": "90053d30f52427edb4e4941a9063acb65b5a2c1e"
  3206. },
  3207. "dist": {
  3208. "type": "zip",
  3209. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/90053d30f52427edb4e4941a9063acb65b5a2c1e",
  3210. "reference": "90053d30f52427edb4e4941a9063acb65b5a2c1e",
  3211. "shasum": ""
  3212. },
  3213. "require": {
  3214. "alchemy/zippy": "~0.4",
  3215. "composer/installers": "~1.0",
  3216. "doctrine/annotations": "^1.2",
  3217. "doctrine/collections": "^1.3",
  3218. "drupal/console-core": "1.9.7",
  3219. "drupal/console-extend-plugin": "~0.9.5",
  3220. "php": ">=7.0.8",
  3221. "psy/psysh": "0.6.* || ~0.8",
  3222. "symfony/css-selector": "~3.0|~4.0",
  3223. "symfony/dom-crawler": "~3.0|~4.0",
  3224. "symfony/http-foundation": "~3.0|~4.0"
  3225. },
  3226. "suggest": {
  3227. "symfony/thanks": "Thank your favorite PHP projects on GitHub using the CLI",
  3228. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically"
  3229. },
  3230. "bin": [
  3231. "bin/drupal"
  3232. ],
  3233. "type": "library",
  3234. "autoload": {
  3235. "psr-4": {
  3236. "Drupal\\Console\\": "src"
  3237. }
  3238. },
  3239. "notification-url": "https://packagist.org/downloads/",
  3240. "license": [
  3241. "GPL-2.0-or-later"
  3242. ],
  3243. "authors": [
  3244. {
  3245. "name": "David Flores",
  3246. "email": "dmousex@gmail.com",
  3247. "homepage": "http://dmouse.net"
  3248. },
  3249. {
  3250. "name": "Jesus Manuel Olivas",
  3251. "email": "jesus.olivas@gmail.com",
  3252. "homepage": "http://jmolivas.com"
  3253. },
  3254. {
  3255. "name": "Eduardo Garcia",
  3256. "email": "enzo@enzolutions.com",
  3257. "homepage": "http://enzolutions.com/"
  3258. },
  3259. {
  3260. "name": "Omar Aguirre",
  3261. "email": "omersguchigu@gmail.com"
  3262. },
  3263. {
  3264. "name": "Drupal Console Contributors",
  3265. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  3266. }
  3267. ],
  3268. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  3269. "homepage": "http://drupalconsole.com/",
  3270. "keywords": [
  3271. "console",
  3272. "development",
  3273. "drupal",
  3274. "symfony"
  3275. ],
  3276. "funding": [
  3277. {
  3278. "url": "https://opencollective.com/drupalconsole",
  3279. "type": "open_collective"
  3280. }
  3281. ],
  3282. "time": "2020-11-30T02:09:53+00:00"
  3283. },
  3284. {
  3285. "name": "drupal/console-core",
  3286. "version": "1.9.7",
  3287. "source": {
  3288. "type": "git",
  3289. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  3290. "reference": "ab3abc2631761c9588230ba88189d9ba4eb9ed63"
  3291. },
  3292. "dist": {
  3293. "type": "zip",
  3294. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/ab3abc2631761c9588230ba88189d9ba4eb9ed63",
  3295. "reference": "ab3abc2631761c9588230ba88189d9ba4eb9ed63",
  3296. "shasum": ""
  3297. },
  3298. "require": {
  3299. "dflydev/dot-access-configuration": "^1.0",
  3300. "drupal/console-en": "1.9.7",
  3301. "guzzlehttp/guzzle": "~6.1",
  3302. "php": ">=7.0.8",
  3303. "stecman/symfony-console-completion": "~0.7",
  3304. "symfony/config": "~3.0|^4.4",
  3305. "symfony/console": "~3.0|^4.4",
  3306. "symfony/debug": "~3.0|^4.4",
  3307. "symfony/dependency-injection": "~3.0|^4.4",
  3308. "symfony/event-dispatcher": "~3.0|^4.4",
  3309. "symfony/filesystem": "~3.0|^4.4",
  3310. "symfony/finder": "~3.0|^4.4",
  3311. "symfony/process": "~3.0|^4.4",
  3312. "symfony/translation": "~3.0|^4.4",
  3313. "symfony/yaml": "~3.0|^4.4",
  3314. "twig/twig": "^1.38.2|^2.12.0",
  3315. "webflo/drupal-finder": "^1.0",
  3316. "webmozart/path-util": "^2.3"
  3317. },
  3318. "type": "library",
  3319. "autoload": {
  3320. "files": [
  3321. "src/functions.php"
  3322. ],
  3323. "psr-4": {
  3324. "Drupal\\Console\\Core\\": "src"
  3325. }
  3326. },
  3327. "notification-url": "https://packagist.org/downloads/",
  3328. "license": [
  3329. "GPL-2.0-or-later"
  3330. ],
  3331. "authors": [
  3332. {
  3333. "name": "David Flores",
  3334. "email": "dmousex@gmail.com",
  3335. "homepage": "http://dmouse.net"
  3336. },
  3337. {
  3338. "name": "Jesus Manuel Olivas",
  3339. "email": "jesus.olivas@gmail.com",
  3340. "homepage": "http://jmolivas.com"
  3341. },
  3342. {
  3343. "name": "Eduardo Garcia",
  3344. "email": "enzo@enzolutions.com",
  3345. "homepage": "http://enzolutions.com/"
  3346. },
  3347. {
  3348. "name": "Omar Aguirre",
  3349. "email": "omersguchigu@gmail.com"
  3350. },
  3351. {
  3352. "name": "Drupal Console Contributors",
  3353. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3354. }
  3355. ],
  3356. "description": "Drupal Console Core",
  3357. "homepage": "http://drupalconsole.com/",
  3358. "keywords": [
  3359. "console",
  3360. "development",
  3361. "drupal",
  3362. "symfony"
  3363. ],
  3364. "time": "2020-11-30T01:45:57+00:00"
  3365. },
  3366. {
  3367. "name": "drupal/console-en",
  3368. "version": "v1.9.7",
  3369. "source": {
  3370. "type": "git",
  3371. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  3372. "reference": "7594601fff153c2799a62bd678ff80749baeee0c"
  3373. },
  3374. "dist": {
  3375. "type": "zip",
  3376. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/7594601fff153c2799a62bd678ff80749baeee0c",
  3377. "reference": "7594601fff153c2799a62bd678ff80749baeee0c",
  3378. "shasum": ""
  3379. },
  3380. "type": "library",
  3381. "notification-url": "https://packagist.org/downloads/",
  3382. "license": [
  3383. "GPL-2.0-or-later"
  3384. ],
  3385. "authors": [
  3386. {
  3387. "name": "David Flores",
  3388. "email": "dmousex@gmail.com",
  3389. "homepage": "http://dmouse.net"
  3390. },
  3391. {
  3392. "name": "Jesus Manuel Olivas",
  3393. "email": "jesus.olivas@gmail.com",
  3394. "homepage": "http://jmolivas.com"
  3395. },
  3396. {
  3397. "name": "Eduardo Garcia",
  3398. "email": "enzo@enzolutions.com",
  3399. "homepage": "http://enzolutions.com/"
  3400. },
  3401. {
  3402. "name": "Omar Aguirre",
  3403. "email": "omersguchigu@gmail.com"
  3404. },
  3405. {
  3406. "name": "Drupal Console Contributors",
  3407. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3408. }
  3409. ],
  3410. "description": "Drupal Console English Language",
  3411. "homepage": "http://drupalconsole.com/",
  3412. "keywords": [
  3413. "console",
  3414. "development",
  3415. "drupal",
  3416. "symfony"
  3417. ],
  3418. "time": "2020-08-15T03:34:54+00:00"
  3419. },
  3420. {
  3421. "name": "drupal/console-extend-plugin",
  3422. "version": "0.9.5",
  3423. "source": {
  3424. "type": "git",
  3425. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  3426. "reference": "eff6da99cfb5fe1fc60990672d2667c402eb3585"
  3427. },
  3428. "dist": {
  3429. "type": "zip",
  3430. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/eff6da99cfb5fe1fc60990672d2667c402eb3585",
  3431. "reference": "eff6da99cfb5fe1fc60990672d2667c402eb3585",
  3432. "shasum": ""
  3433. },
  3434. "require": {
  3435. "composer-plugin-api": "^1.0 || ^2.0",
  3436. "composer/installers": "^1.2",
  3437. "symfony/finder": "~3.0|^4.4",
  3438. "symfony/yaml": "~3.0|^4.4"
  3439. },
  3440. "type": "composer-plugin",
  3441. "extra": {
  3442. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  3443. },
  3444. "autoload": {
  3445. "psr-4": {
  3446. "Drupal\\Console\\Composer\\Plugin\\": "src"
  3447. }
  3448. },
  3449. "notification-url": "https://packagist.org/downloads/",
  3450. "license": [
  3451. "GPL-2.0+"
  3452. ],
  3453. "authors": [
  3454. {
  3455. "name": "Jesus Manuel Olivas",
  3456. "email": "jesus.olivas@gmail.com"
  3457. }
  3458. ],
  3459. "description": "Drupal Console Extend Plugin",
  3460. "time": "2020-11-18T00:15:28+00:00"
  3461. },
  3462. {
  3463. "name": "drupal/content_lock",
  3464. "version": "2.2.0",
  3465. "source": {
  3466. "type": "git",
  3467. "url": "https://git.drupalcode.org/project/content_lock.git",
  3468. "reference": "8.x-2.2"
  3469. },
  3470. "dist": {
  3471. "type": "zip",
  3472. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.2.zip",
  3473. "reference": "8.x-2.2",
  3474. "shasum": "9ea5810067c0df18879a16a19236e0cb46f9fba7"
  3475. },
  3476. "require": {
  3477. "drupal/core": "^8.8|^9.0"
  3478. },
  3479. "require-dev": {
  3480. "drupal/conflict": "^2.0@ALPHA",
  3481. "drupal/prefetch_cache": "dev-1.x"
  3482. },
  3483. "type": "drupal-module",
  3484. "extra": {
  3485. "drupal": {
  3486. "version": "8.x-2.2",
  3487. "datestamp": "1607936866",
  3488. "security-coverage": {
  3489. "status": "covered",
  3490. "message": "Covered by Drupal's security advisory policy"
  3491. }
  3492. }
  3493. },
  3494. "notification-url": "https://packages.drupal.org/8/downloads",
  3495. "license": [
  3496. "GPL-2.0-or-later"
  3497. ],
  3498. "authors": [
  3499. {
  3500. "name": "chr.fritsch",
  3501. "homepage": "https://www.drupal.org/user/2103716"
  3502. },
  3503. {
  3504. "name": "ergonlogic",
  3505. "homepage": "https://www.drupal.org/user/368613"
  3506. },
  3507. {
  3508. "name": "mfb",
  3509. "homepage": "https://www.drupal.org/user/12302"
  3510. },
  3511. {
  3512. "name": "pandaski",
  3513. "homepage": "https://www.drupal.org/user/1987218"
  3514. }
  3515. ],
  3516. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  3517. "homepage": "https://www.drupal.org/project/content_lock",
  3518. "support": {
  3519. "source": "https://git.drupalcode.org/project/content_lock"
  3520. }
  3521. },
  3522. {
  3523. "name": "drupal/context",
  3524. "version": "4.0.0-beta5",
  3525. "source": {
  3526. "type": "git",
  3527. "url": "https://git.drupalcode.org/project/context.git",
  3528. "reference": "8.x-4.0-beta5"
  3529. },
  3530. "dist": {
  3531. "type": "zip",
  3532. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta5.zip",
  3533. "reference": "8.x-4.0-beta5",
  3534. "shasum": "893d7e6ce07b23764baa6fd609da811ec80c5a04"
  3535. },
  3536. "require": {
  3537. "drupal/core": "^8.8 || ^9"
  3538. },
  3539. "type": "drupal-module",
  3540. "extra": {
  3541. "drupal": {
  3542. "version": "8.x-4.0-beta5",
  3543. "datestamp": "1600783508",
  3544. "security-coverage": {
  3545. "status": "not-covered",
  3546. "message": "Beta releases are not covered by Drupal security advisories."
  3547. }
  3548. }
  3549. },
  3550. "notification-url": "https://packages.drupal.org/8/downloads",
  3551. "license": [
  3552. "MIT"
  3553. ],
  3554. "authors": [
  3555. {
  3556. "name": "Christoffer Palm",
  3557. "homepage": "http://www.oddhill.se/",
  3558. "email": "christoffer.palm@oddhill.se",
  3559. "role": "Developer"
  3560. },
  3561. {
  3562. "name": "Steven Jones",
  3563. "homepage": "https://www.drupal.org/user/99644"
  3564. },
  3565. {
  3566. "name": "alex_b",
  3567. "homepage": "https://www.drupal.org/user/53995"
  3568. },
  3569. {
  3570. "name": "boshtian",
  3571. "homepage": "https://www.drupal.org/user/1773456"
  3572. },
  3573. {
  3574. "name": "colan",
  3575. "homepage": "https://www.drupal.org/user/58704"
  3576. },
  3577. {
  3578. "name": "emanaton",
  3579. "homepage": "https://www.drupal.org/user/120853"
  3580. },
  3581. {
  3582. "name": "febbraro",
  3583. "homepage": "https://www.drupal.org/user/43670"
  3584. },
  3585. {
  3586. "name": "fizk",
  3587. "homepage": "https://www.drupal.org/user/473174"
  3588. },
  3589. {
  3590. "name": "hass",
  3591. "homepage": "https://www.drupal.org/user/85918"
  3592. },
  3593. {
  3594. "name": "hefox",
  3595. "homepage": "https://www.drupal.org/user/426416"
  3596. },
  3597. {
  3598. "name": "jmiccolis",
  3599. "homepage": "https://www.drupal.org/user/31731"
  3600. },
  3601. {
  3602. "name": "nedjo",
  3603. "homepage": "https://www.drupal.org/user/4481"
  3604. },
  3605. {
  3606. "name": "patricksettle",
  3607. "homepage": "https://www.drupal.org/user/26618"
  3608. },
  3609. {
  3610. "name": "paulocs",
  3611. "homepage": "https://www.drupal.org/user/3640109"
  3612. },
  3613. {
  3614. "name": "tekante",
  3615. "homepage": "https://www.drupal.org/user/640024"
  3616. },
  3617. {
  3618. "name": "yhahn",
  3619. "homepage": "https://www.drupal.org/user/264833"
  3620. }
  3621. ],
  3622. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3623. "homepage": "https://github.com/oddhill/context",
  3624. "keywords": [
  3625. "Drupal",
  3626. "block",
  3627. "conditions",
  3628. "context",
  3629. "visibility"
  3630. ],
  3631. "support": {
  3632. "source": "https://github.com/oddhill/context",
  3633. "issues": "https://github.com/oddhill/context/issues",
  3634. "docs": "https://github.com/oddhill/context"
  3635. }
  3636. },
  3637. {
  3638. "name": "drupal/core",
  3639. "version": "9.1.4",
  3640. "source": {
  3641. "type": "git",
  3642. "url": "https://github.com/drupal/core.git",
  3643. "reference": "d16a7cb33b7a01e3b2e66d36e2011f27ba9786f4"
  3644. },
  3645. "dist": {
  3646. "type": "zip",
  3647. "url": "https://api.github.com/repos/drupal/core/zipball/d16a7cb33b7a01e3b2e66d36e2011f27ba9786f4",
  3648. "reference": "d16a7cb33b7a01e3b2e66d36e2011f27ba9786f4",
  3649. "shasum": ""
  3650. },
  3651. "require": {
  3652. "asm89/stack-cors": "^1.1",
  3653. "composer/semver": "^3.0",
  3654. "doctrine/annotations": "^1.4",
  3655. "doctrine/reflection": "^1.1",
  3656. "egulias/email-validator": "^2.0",
  3657. "ext-date": "*",
  3658. "ext-dom": "*",
  3659. "ext-filter": "*",
  3660. "ext-gd": "*",
  3661. "ext-hash": "*",
  3662. "ext-json": "*",
  3663. "ext-pcre": "*",
  3664. "ext-pdo": "*",
  3665. "ext-session": "*",
  3666. "ext-simplexml": "*",
  3667. "ext-spl": "*",
  3668. "ext-tokenizer": "*",
  3669. "ext-xml": "*",
  3670. "guzzlehttp/guzzle": "^6.5.2",
  3671. "laminas/laminas-diactoros": "^2.1",
  3672. "laminas/laminas-feed": "^2.12",
  3673. "masterminds/html5": "^2.1",
  3674. "pear/archive_tar": "^1.4.12",
  3675. "php": ">=7.3.0",
  3676. "psr/log": "^1.0",
  3677. "stack/builder": "^1.0",
  3678. "symfony-cmf/routing": "^2.1",
  3679. "symfony/console": "^4.4",
  3680. "symfony/dependency-injection": "^4.4",
  3681. "symfony/event-dispatcher": "^4.4",
  3682. "symfony/http-foundation": "^4.4.7",
  3683. "symfony/http-kernel": "^4.4",
  3684. "symfony/polyfill-iconv": "^1.0",
  3685. "symfony/process": "^4.4",
  3686. "symfony/psr-http-message-bridge": "^2.0",
  3687. "symfony/routing": "^4.4",
  3688. "symfony/serializer": "^4.4",
  3689. "symfony/translation": "^4.4",
  3690. "symfony/validator": "^4.4",
  3691. "symfony/yaml": "^4.4",
  3692. "twig/twig": "^2.12.0",
  3693. "typo3/phar-stream-wrapper": "^3.1.3"
  3694. },
  3695. "conflict": {
  3696. "drush/drush": "<8.1.10"
  3697. },
  3698. "replace": {
  3699. "drupal/action": "self.version",
  3700. "drupal/aggregator": "self.version",
  3701. "drupal/automated_cron": "self.version",
  3702. "drupal/ban": "self.version",
  3703. "drupal/bartik": "self.version",
  3704. "drupal/basic_auth": "self.version",
  3705. "drupal/big_pipe": "self.version",
  3706. "drupal/block": "self.version",
  3707. "drupal/block_content": "self.version",
  3708. "drupal/book": "self.version",
  3709. "drupal/breakpoint": "self.version",
  3710. "drupal/ckeditor": "self.version",
  3711. "drupal/claro": "self.version",
  3712. "drupal/classy": "self.version",
  3713. "drupal/color": "self.version",
  3714. "drupal/comment": "self.version",
  3715. "drupal/config": "self.version",
  3716. "drupal/config_translation": "self.version",
  3717. "drupal/contact": "self.version",
  3718. "drupal/content_moderation": "self.version",
  3719. "drupal/content_translation": "self.version",
  3720. "drupal/contextual": "self.version",
  3721. "drupal/core-annotation": "self.version",
  3722. "drupal/core-assertion": "self.version",
  3723. "drupal/core-bridge": "self.version",
  3724. "drupal/core-class-finder": "self.version",
  3725. "drupal/core-datetime": "self.version",
  3726. "drupal/core-dependency-injection": "self.version",
  3727. "drupal/core-diff": "self.version",
  3728. "drupal/core-discovery": "self.version",
  3729. "drupal/core-event-dispatcher": "self.version",
  3730. "drupal/core-file-cache": "self.version",
  3731. "drupal/core-file-security": "self.version",
  3732. "drupal/core-filesystem": "self.version",
  3733. "drupal/core-front-matter": "self.version",
  3734. "drupal/core-gettext": "self.version",
  3735. "drupal/core-graph": "self.version",
  3736. "drupal/core-http-foundation": "self.version",
  3737. "drupal/core-php-storage": "self.version",
  3738. "drupal/core-plugin": "self.version",
  3739. "drupal/core-proxy-builder": "self.version",
  3740. "drupal/core-render": "self.version",
  3741. "drupal/core-serialization": "self.version",
  3742. "drupal/core-transliteration": "self.version",
  3743. "drupal/core-utility": "self.version",
  3744. "drupal/core-uuid": "self.version",
  3745. "drupal/core-version": "self.version",
  3746. "drupal/datetime": "self.version",
  3747. "drupal/datetime_range": "self.version",
  3748. "drupal/dblog": "self.version",
  3749. "drupal/dynamic_page_cache": "self.version",
  3750. "drupal/editor": "self.version",
  3751. "drupal/entity_reference": "self.version",
  3752. "drupal/field": "self.version",
  3753. "drupal/field_layout": "self.version",
  3754. "drupal/field_ui": "self.version",
  3755. "drupal/file": "self.version",
  3756. "drupal/filter": "self.version",
  3757. "drupal/forum": "self.version",
  3758. "drupal/hal": "self.version",
  3759. "drupal/help": "self.version",
  3760. "drupal/help_topics": "self.version",
  3761. "drupal/history": "self.version",
  3762. "drupal/image": "self.version",
  3763. "drupal/inline_form_errors": "self.version",
  3764. "drupal/jsonapi": "self.version",
  3765. "drupal/language": "self.version",
  3766. "drupal/layout_builder": "self.version",
  3767. "drupal/layout_discovery": "self.version",
  3768. "drupal/link": "self.version",
  3769. "drupal/locale": "self.version",
  3770. "drupal/media": "self.version",
  3771. "drupal/media_library": "self.version",
  3772. "drupal/menu_link_content": "self.version",
  3773. "drupal/menu_ui": "self.version",
  3774. "drupal/migrate": "self.version",
  3775. "drupal/migrate_drupal": "self.version",
  3776. "drupal/migrate_drupal_multilingual": "self.version",
  3777. "drupal/migrate_drupal_ui": "self.version",
  3778. "drupal/minimal": "self.version",
  3779. "drupal/node": "self.version",
  3780. "drupal/olivero": "self.version",
  3781. "drupal/options": "self.version",
  3782. "drupal/page_cache": "self.version",
  3783. "drupal/path": "self.version",
  3784. "drupal/path_alias": "self.version",
  3785. "drupal/quickedit": "self.version",
  3786. "drupal/rdf": "self.version",
  3787. "drupal/responsive_image": "self.version",
  3788. "drupal/rest": "self.version",
  3789. "drupal/search": "self.version",
  3790. "drupal/serialization": "self.version",
  3791. "drupal/settings_tray": "self.version",
  3792. "drupal/seven": "self.version",
  3793. "drupal/shortcut": "self.version",
  3794. "drupal/standard": "self.version",
  3795. "drupal/stark": "self.version",
  3796. "drupal/statistics": "self.version",
  3797. "drupal/syslog": "self.version",
  3798. "drupal/system": "self.version",
  3799. "drupal/taxonomy": "self.version",
  3800. "drupal/telephone": "self.version",
  3801. "drupal/text": "self.version",
  3802. "drupal/toolbar": "self.version",
  3803. "drupal/tour": "self.version",
  3804. "drupal/tracker": "self.version",
  3805. "drupal/update": "self.version",
  3806. "drupal/user": "self.version",
  3807. "drupal/views": "self.version",
  3808. "drupal/views_ui": "self.version",
  3809. "drupal/workflows": "self.version",
  3810. "drupal/workspaces": "self.version"
  3811. },
  3812. "type": "drupal-core",
  3813. "extra": {
  3814. "drupal-scaffold": {
  3815. "file-mapping": {
  3816. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  3817. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  3818. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  3819. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  3820. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  3821. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  3822. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  3823. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  3824. "[web-root]/index.php": "assets/scaffold/files/index.php",
  3825. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  3826. "[web-root]/README.txt": "assets/scaffold/files/drupal.README.txt",
  3827. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  3828. "[web-root]/update.php": "assets/scaffold/files/update.php",
  3829. "[web-root]/web.config": "assets/scaffold/files/web.config",
  3830. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  3831. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  3832. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  3833. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  3834. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  3835. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  3836. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  3837. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  3838. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  3839. }
  3840. }
  3841. },
  3842. "autoload": {
  3843. "psr-4": {
  3844. "Drupal\\Core\\": "lib/Drupal/Core",
  3845. "Drupal\\Component\\": "lib/Drupal/Component",
  3846. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
  3847. },
  3848. "classmap": [
  3849. "lib/Drupal.php",
  3850. "lib/Drupal/Component/DependencyInjection/Container.php",
  3851. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  3852. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  3853. "lib/Drupal/Component/Utility/Timer.php",
  3854. "lib/Drupal/Component/Utility/Unicode.php",
  3855. "lib/Drupal/Core/Cache/Cache.php",
  3856. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  3857. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  3858. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  3859. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  3860. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  3861. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  3862. "lib/Drupal/Core/Database/Connection.php",
  3863. "lib/Drupal/Core/Database/Database.php",
  3864. "lib/Drupal/Core/Database/Driver/mysql/Connection.php",
  3865. "lib/Drupal/Core/Database/Driver/pgsql/Connection.php",
  3866. "lib/Drupal/Core/Database/Driver/sqlite/Connection.php",
  3867. "lib/Drupal/Core/Database/Statement.php",
  3868. "lib/Drupal/Core/Database/StatementInterface.php",
  3869. "lib/Drupal/Core/DependencyInjection/Container.php",
  3870. "lib/Drupal/Core/DrupalKernel.php",
  3871. "lib/Drupal/Core/DrupalKernelInterface.php",
  3872. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  3873. "lib/Drupal/Core/Site/Settings.php"
  3874. ],
  3875. "files": [
  3876. "includes/bootstrap.inc"
  3877. ]
  3878. },
  3879. "notification-url": "https://packagist.org/downloads/",
  3880. "license": [
  3881. "GPL-2.0-or-later"
  3882. ],
  3883. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3884. "time": "2021-02-03T19:21:05+00:00"
  3885. },
  3886. {
  3887. "name": "drupal/core-composer-scaffold",
  3888. "version": "9.1.4",
  3889. "source": {
  3890. "type": "git",
  3891. "url": "https://github.com/drupal/core-composer-scaffold.git",
  3892. "reference": "7b125516d6568b888945ee03ac2636dcced76e8d"
  3893. },
  3894. "dist": {
  3895. "type": "zip",
  3896. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/7b125516d6568b888945ee03ac2636dcced76e8d",
  3897. "reference": "7b125516d6568b888945ee03ac2636dcced76e8d",
  3898. "shasum": ""
  3899. },
  3900. "require": {
  3901. "composer-plugin-api": "^1 || ^2",
  3902. "php": ">=7.3.0"
  3903. },
  3904. "conflict": {
  3905. "drupal-composer/drupal-scaffold": "*"
  3906. },
  3907. "require-dev": {
  3908. "composer/composer": "^1.8@stable"
  3909. },
  3910. "type": "composer-plugin",
  3911. "extra": {
  3912. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  3913. "branch-alias": {
  3914. "dev-master": "1.0.x-dev"
  3915. }
  3916. },
  3917. "autoload": {
  3918. "psr-4": {
  3919. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  3920. }
  3921. },
  3922. "notification-url": "https://packagist.org/downloads/",
  3923. "license": [
  3924. "GPL-2.0-or-later"
  3925. ],
  3926. "description": "A flexible Composer project scaffold builder.",
  3927. "homepage": "https://www.drupal.org/project/drupal",
  3928. "keywords": [
  3929. "drupal"
  3930. ],
  3931. "time": "2020-08-07T22:30:13+00:00"
  3932. },
  3933. {
  3934. "name": "drupal/core-project-message",
  3935. "version": "9.1.4",
  3936. "source": {
  3937. "type": "git",
  3938. "url": "https://github.com/drupal/core-project-message.git",
  3939. "reference": "812d6da43dd49cc210af62e80fa92189e68e565a"
  3940. },
  3941. "dist": {
  3942. "type": "zip",
  3943. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/812d6da43dd49cc210af62e80fa92189e68e565a",
  3944. "reference": "812d6da43dd49cc210af62e80fa92189e68e565a",
  3945. "shasum": ""
  3946. },
  3947. "require": {
  3948. "composer-plugin-api": "^1.1 || ^2",
  3949. "php": ">=7.3.0"
  3950. },
  3951. "type": "composer-plugin",
  3952. "extra": {
  3953. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  3954. },
  3955. "autoload": {
  3956. "psr-4": {
  3957. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  3958. }
  3959. },
  3960. "notification-url": "https://packagist.org/downloads/",
  3961. "license": [
  3962. "GPL-2.0-or-later"
  3963. ],
  3964. "description": "Adds a message after Composer installation.",
  3965. "homepage": "https://www.drupal.org/project/drupal",
  3966. "keywords": [
  3967. "drupal"
  3968. ],
  3969. "time": "2020-09-14T13:40:36+00:00"
  3970. },
  3971. {
  3972. "name": "drupal/core-recommended",
  3973. "version": "9.1.4",
  3974. "source": {
  3975. "type": "git",
  3976. "url": "https://github.com/drupal/core-recommended.git",
  3977. "reference": "e48e05b546b0ebef74af26a6d3104dd3bd499202"
  3978. },
  3979. "dist": {
  3980. "type": "zip",
  3981. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/e48e05b546b0ebef74af26a6d3104dd3bd499202",
  3982. "reference": "e48e05b546b0ebef74af26a6d3104dd3bd499202",
  3983. "shasum": ""
  3984. },
  3985. "require": {
  3986. "asm89/stack-cors": "1.3.0",
  3987. "composer/semver": "3.2.2",
  3988. "doctrine/annotations": "1.11.1",
  3989. "doctrine/lexer": "1.2.1",
  3990. "doctrine/reflection": "1.2.2",
  3991. "drupal/core": "9.1.4",
  3992. "egulias/email-validator": "2.1.22",
  3993. "guzzlehttp/guzzle": "6.5.5",
  3994. "guzzlehttp/promises": "1.4.0",
  3995. "guzzlehttp/psr7": "1.7.0",
  3996. "laminas/laminas-diactoros": "2.5.0",
  3997. "laminas/laminas-escaper": "2.7.0",
  3998. "laminas/laminas-feed": "2.13.0",
  3999. "laminas/laminas-stdlib": "3.3.0",
  4000. "laminas/laminas-zendframework-bridge": "1.1.1",
  4001. "masterminds/html5": "2.7.4",
  4002. "pear/archive_tar": "1.4.12",
  4003. "pear/console_getopt": "v1.4.3",
  4004. "pear/pear-core-minimal": "v1.10.10",
  4005. "pear/pear_exception": "v1.0.1",
  4006. "psr/container": "1.0.0",
  4007. "psr/http-factory": "1.0.1",
  4008. "psr/http-message": "1.0.1",
  4009. "psr/log": "1.1.3",
  4010. "ralouphie/getallheaders": "3.0.3",
  4011. "stack/builder": "v1.0.6",
  4012. "symfony-cmf/routing": "2.3.3",
  4013. "symfony/console": "v4.4.16",
  4014. "symfony/debug": "v4.4.16",
  4015. "symfony/dependency-injection": "v4.4.16",
  4016. "symfony/error-handler": "v4.4.16",
  4017. "symfony/event-dispatcher": "v4.4.16",
  4018. "symfony/event-dispatcher-contracts": "v1.1.9",
  4019. "symfony/http-client-contracts": "v2.3.1",
  4020. "symfony/http-foundation": "v4.4.16",
  4021. "symfony/http-kernel": "v4.4.16",
  4022. "symfony/mime": "v5.1.8",
  4023. "symfony/polyfill-ctype": "v1.20.0",
  4024. "symfony/polyfill-iconv": "v1.20.0",
  4025. "symfony/polyfill-intl-idn": "v1.20.0",
  4026. "symfony/polyfill-intl-normalizer": "v1.20.0",
  4027. "symfony/polyfill-mbstring": "v1.20.0",
  4028. "symfony/polyfill-php80": "v1.20.0",
  4029. "symfony/process": "v4.4.16",
  4030. "symfony/psr-http-message-bridge": "v2.0.2",
  4031. "symfony/routing": "v4.4.16",
  4032. "symfony/serializer": "v4.4.16",
  4033. "symfony/service-contracts": "v2.2.0",
  4034. "symfony/translation": "v4.4.16",
  4035. "symfony/translation-contracts": "v2.3.0",
  4036. "symfony/validator": "v4.4.16",
  4037. "symfony/var-dumper": "v5.1.8",
  4038. "symfony/yaml": "v4.4.16",
  4039. "twig/twig": "v2.14.1",
  4040. "typo3/phar-stream-wrapper": "v3.1.6"
  4041. },
  4042. "conflict": {
  4043. "webflo/drupal-core-strict": "*"
  4044. },
  4045. "type": "metapackage",
  4046. "notification-url": "https://packagist.org/downloads/",
  4047. "license": [
  4048. "GPL-2.0-or-later"
  4049. ],
  4050. "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.",
  4051. "time": "2021-02-03T19:21:05+00:00"
  4052. },
  4053. {
  4054. "name": "drupal/cshs",
  4055. "version": "dev-1.x",
  4056. "source": {
  4057. "type": "git",
  4058. "url": "https://git.drupalcode.org/project/cshs.git",
  4059. "reference": "537e7fef494c71cfa59d8d90849cbf1beee80e49"
  4060. },
  4061. "require": {
  4062. "drupal/core": "^8 || ^9"
  4063. },
  4064. "type": "drupal-module",
  4065. "extra": {
  4066. "branch-alias": {
  4067. "dev-1.x": "1.x-dev"
  4068. },
  4069. "drupal": {
  4070. "version": "8.x-1.2+4-dev",
  4071. "datestamp": "1607678639",
  4072. "security-coverage": {
  4073. "status": "not-covered",
  4074. "message": "Dev releases are not covered by Drupal security advisories."
  4075. }
  4076. }
  4077. },
  4078. "notification-url": "https://packages.drupal.org/8/downloads",
  4079. "license": [
  4080. "GPL-2.0-or-later"
  4081. ],
  4082. "authors": [
  4083. {
  4084. "name": "Walter Jenner",
  4085. "homepage": "https://drupal.org/u/valderama"
  4086. },
  4087. {
  4088. "name": "Sergii Bondarenko",
  4089. "homepage": "https://drupal.org/u/BR0kEN",
  4090. "email": "sb@firstvector.org"
  4091. },
  4092. {
  4093. "name": "Daneel Cruz",
  4094. "homepage": "https://drupal.org/u/daneelcm"
  4095. },
  4096. {
  4097. "name": "Purushotam Rai",
  4098. "homepage": "https://drupal.org/u/purushotam.rai"
  4099. }
  4100. ],
  4101. "description": "A simple client-side hierarchical select widget for taxonomy terms.",
  4102. "homepage": "https://www.drupal.org/project/cshs",
  4103. "keywords": [
  4104. "client-side-select",
  4105. "hierarchical-select",
  4106. "module",
  4107. "select",
  4108. "taxonomy"
  4109. ],
  4110. "support": {
  4111. "source": "https://git.drupalcode.org/project/cshs",
  4112. "issues": "https://www.drupal.org/project/issues/cshs"
  4113. },
  4114. "time": "2020-12-11T09:23:35+00:00"
  4115. },
  4116. {
  4117. "name": "drupal/ctools",
  4118. "version": "3.4.0",
  4119. "source": {
  4120. "type": "git",
  4121. "url": "https://git.drupalcode.org/project/ctools.git",
  4122. "reference": "8.x-3.4"
  4123. },
  4124. "dist": {
  4125. "type": "zip",
  4126. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.4.zip",
  4127. "reference": "8.x-3.4",
  4128. "shasum": "016ca5abb7ac4ca720352a72e8989f3ef0e20539"
  4129. },
  4130. "require": {
  4131. "drupal/core": "^8.7.7 || ^9"
  4132. },
  4133. "type": "drupal-module",
  4134. "extra": {
  4135. "drupal": {
  4136. "version": "8.x-3.4",
  4137. "datestamp": "1585763383",
  4138. "security-coverage": {
  4139. "status": "covered",
  4140. "message": "Covered by Drupal's security advisory policy"
  4141. }
  4142. }
  4143. },
  4144. "notification-url": "https://packages.drupal.org/8/downloads",
  4145. "license": [
  4146. "GPL-2.0+"
  4147. ],
  4148. "authors": [
  4149. {
  4150. "name": "Kris Vanderwater (EclipseGc)",
  4151. "homepage": "https://www.drupal.org/u/eclipsegc",
  4152. "role": "Maintainer"
  4153. },
  4154. {
  4155. "name": "Jakob Perry (japerry)",
  4156. "homepage": "https://www.drupal.org/u/japerry",
  4157. "role": "Maintainer"
  4158. },
  4159. {
  4160. "name": "Tim Plunkett (tim.plunkett)",
  4161. "homepage": "https://www.drupal.org/u/timplunkett",
  4162. "role": "Maintainer"
  4163. },
  4164. {
  4165. "name": "James Gilliland (neclimdul)",
  4166. "homepage": "https://www.drupal.org/u/neclimdul",
  4167. "role": "Maintainer"
  4168. },
  4169. {
  4170. "name": "Daniel Wehner (dawehner)",
  4171. "homepage": "https://www.drupal.org/u/dawehner",
  4172. "role": "Maintainer"
  4173. },
  4174. {
  4175. "name": "joelpittet",
  4176. "homepage": "https://www.drupal.org/user/160302"
  4177. },
  4178. {
  4179. "name": "merlinofchaos",
  4180. "homepage": "https://www.drupal.org/user/26979"
  4181. },
  4182. {
  4183. "name": "neclimdul",
  4184. "homepage": "https://www.drupal.org/user/48673"
  4185. },
  4186. {
  4187. "name": "sdboyer",
  4188. "homepage": "https://www.drupal.org/user/146719"
  4189. },
  4190. {
  4191. "name": "sun",
  4192. "homepage": "https://www.drupal.org/user/54136"
  4193. },
  4194. {
  4195. "name": "tim.plunkett",
  4196. "homepage": "https://www.drupal.org/user/241634"
  4197. }
  4198. ],
  4199. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  4200. "homepage": "https://www.drupal.org/project/ctools",
  4201. "support": {
  4202. "source": "https://git.drupalcode.org/project/ctools",
  4203. "issues": "https://www.drupal.org/project/issues/ctools"
  4204. }
  4205. },
  4206. {
  4207. "name": "drupal/date_range_formatter",
  4208. "version": "dev-9.0.x",
  4209. "source": {
  4210. "type": "git",
  4211. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  4212. "reference": "c34acb20c37e6210099bf3080352a6da7227b867"
  4213. },
  4214. "require": {
  4215. "drupal/core": "^8 || ^9"
  4216. },
  4217. "type": "drupal-module",
  4218. "extra": {
  4219. "branch-alias": {
  4220. "dev-9.0.x": "9.0.x-dev"
  4221. },
  4222. "drupal": {
  4223. "version": "9.0.x-dev",
  4224. "datestamp": "1589956448",
  4225. "security-coverage": {
  4226. "status": "not-covered",
  4227. "message": "Dev releases are not covered by Drupal security advisories."
  4228. }
  4229. }
  4230. },
  4231. "notification-url": "https://packages.drupal.org/8/downloads",
  4232. "license": [
  4233. "GPL-2.0-or-later"
  4234. ],
  4235. "authors": [
  4236. {
  4237. "name": "maximpodorov",
  4238. "homepage": "https://www.drupal.org/user/515310"
  4239. },
  4240. {
  4241. "name": "sudishth",
  4242. "homepage": "https://www.drupal.org/user/1440562"
  4243. }
  4244. ],
  4245. "description": "Formats date ranges.",
  4246. "homepage": "https://www.drupal.org/project/date_range_formatter",
  4247. "support": {
  4248. "source": "https://git.drupalcode.org/project/date_range_formatter"
  4249. },
  4250. "time": "2020-05-20T06:32:37+00:00"
  4251. },
  4252. {
  4253. "name": "drupal/devel",
  4254. "version": "4.1.1",
  4255. "source": {
  4256. "type": "git",
  4257. "url": "https://git.drupalcode.org/project/devel.git",
  4258. "reference": "4.1.1"
  4259. },
  4260. "dist": {
  4261. "type": "zip",
  4262. "url": "https://ftp.drupal.org/files/projects/devel-4.1.1.zip",
  4263. "reference": "4.1.1",
  4264. "shasum": "88e5d49dda26a3136291ecd97bc6c8e897b24198"
  4265. },
  4266. "require": {
  4267. "doctrine/common": "^2.7",
  4268. "drupal/core": "^8.8 || ^9",
  4269. "symfony/var-dumper": "^4 || ^5"
  4270. },
  4271. "conflict": {
  4272. "kint-php/kint": "<3"
  4273. },
  4274. "require-dev": {
  4275. "drush/drush": "^10"
  4276. },
  4277. "suggest": {
  4278. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  4279. },
  4280. "type": "drupal-module",
  4281. "extra": {
  4282. "drupal": {
  4283. "version": "4.1.1",
  4284. "datestamp": "1609419527",
  4285. "security-coverage": {
  4286. "status": "covered",
  4287. "message": "Covered by Drupal's security advisory policy"
  4288. }
  4289. },
  4290. "drush": {
  4291. "services": {
  4292. "drush.services.yml": "^9 || ^10"
  4293. }
  4294. }
  4295. },
  4296. "notification-url": "https://packages.drupal.org/8/downloads",
  4297. "license": [
  4298. "GPL-2.0-or-later"
  4299. ],
  4300. "authors": [
  4301. {
  4302. "name": "drupalspoons",
  4303. "homepage": "https://www.drupal.org/user/3647684"
  4304. },
  4305. {
  4306. "name": "moshe weitzman",
  4307. "homepage": "https://www.drupal.org/user/23"
  4308. }
  4309. ],
  4310. "description": "Various blocks, pages, and functions for developers.",
  4311. "homepage": "https://www.drupal.org/project/devel",
  4312. "support": {
  4313. "source": "https://gitlab.com/drupalspoons/devel",
  4314. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  4315. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  4316. }
  4317. },
  4318. {
  4319. "name": "drupal/domain",
  4320. "version": "dev-1.x",
  4321. "source": {
  4322. "type": "git",
  4323. "url": "https://git.drupalcode.org/project/domain.git",
  4324. "reference": "bb4973dd3d7ecee279dcf521c05eb6a5589cf05b"
  4325. },
  4326. "require": {
  4327. "drupal/core": "^8 || ^9"
  4328. },
  4329. "require-dev": {
  4330. "drupal/domain_access": "*",
  4331. "drupal/domain_config": "*"
  4332. },
  4333. "type": "drupal-module",
  4334. "extra": {
  4335. "branch-alias": {
  4336. "dev-1.x": "1.x-dev"
  4337. },
  4338. "drupal": {
  4339. "version": "8.x-1.x-dev",
  4340. "datestamp": "1603119924",
  4341. "security-coverage": {
  4342. "status": "not-covered",
  4343. "message": "Dev releases are not covered by Drupal security advisories."
  4344. }
  4345. }
  4346. },
  4347. "notification-url": "https://packages.drupal.org/8/downloads",
  4348. "license": [
  4349. "GPL-2.0-or-later"
  4350. ],
  4351. "authors": [
  4352. {
  4353. "name": "agentrickard",
  4354. "homepage": "https://www.drupal.org/user/20975"
  4355. },
  4356. {
  4357. "name": "nonsie",
  4358. "homepage": "https://www.drupal.org/user/29899"
  4359. }
  4360. ],
  4361. "description": "Creates domain records within a Drupal installation.",
  4362. "homepage": "https://www.drupal.org/project/domain",
  4363. "support": {
  4364. "source": "https://git.drupalcode.org/project/domain"
  4365. },
  4366. "time": "2020-11-18T18:57:19+00:00"
  4367. },
  4368. {
  4369. "name": "drupal/domain_alias",
  4370. "version": "dev-1.x",
  4371. "require": {
  4372. "drupal/core": "^8 || ^9",
  4373. "drupal/domain": "*"
  4374. },
  4375. "type": "metapackage",
  4376. "extra": {
  4377. "branch-alias": {
  4378. "dev-1.x": "1.x-dev"
  4379. },
  4380. "drupal": {
  4381. "version": "8.x-1.x-dev",
  4382. "datestamp": "1603119924",
  4383. "security-coverage": {
  4384. "status": "not-covered",
  4385. "message": "Dev releases are not covered by Drupal security advisories."
  4386. }
  4387. }
  4388. },
  4389. "notification-url": "https://packages.drupal.org/8/downloads",
  4390. "license": [
  4391. "GPL-2.0-or-later"
  4392. ],
  4393. "authors": [
  4394. {
  4395. "name": "agentrickard",
  4396. "homepage": "https://www.drupal.org/user/20975"
  4397. },
  4398. {
  4399. "name": "nonsie",
  4400. "homepage": "https://www.drupal.org/user/29899"
  4401. }
  4402. ],
  4403. "description": "Maps multiple host requests to a single domain record.",
  4404. "homepage": "https://www.drupal.org/project/domain",
  4405. "support": {
  4406. "source": "https://git.drupalcode.org/project/domain"
  4407. }
  4408. },
  4409. {
  4410. "name": "drupal/domain_config",
  4411. "version": "dev-1.x",
  4412. "require": {
  4413. "drupal/core": "^8 || ^9",
  4414. "drupal/domain": "*"
  4415. },
  4416. "type": "metapackage",
  4417. "extra": {
  4418. "branch-alias": {
  4419. "dev-1.x": "1.x-dev"
  4420. },
  4421. "drupal": {
  4422. "version": "8.x-1.x-dev",
  4423. "datestamp": "1603119924",
  4424. "security-coverage": {
  4425. "status": "not-covered",
  4426. "message": "Dev releases are not covered by Drupal security advisories."
  4427. }
  4428. }
  4429. },
  4430. "notification-url": "https://packages.drupal.org/8/downloads",
  4431. "license": [
  4432. "GPL-2.0-or-later"
  4433. ],
  4434. "authors": [
  4435. {
  4436. "name": "agentrickard",
  4437. "homepage": "https://www.drupal.org/user/20975"
  4438. },
  4439. {
  4440. "name": "nonsie",
  4441. "homepage": "https://www.drupal.org/user/29899"
  4442. }
  4443. ],
  4444. "description": "Allows domain specific configuration.",
  4445. "homepage": "https://www.drupal.org/project/domain",
  4446. "support": {
  4447. "source": "https://git.drupalcode.org/project/domain"
  4448. }
  4449. },
  4450. {
  4451. "name": "drupal/domain_site_settings",
  4452. "version": "dev-1.x",
  4453. "source": {
  4454. "type": "git",
  4455. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  4456. "reference": "b3177fc7257cae13fe9c6ff6f65d86257a194d84"
  4457. },
  4458. "require": {
  4459. "drupal/core": "^8 || ^9",
  4460. "drupal/domain": "*",
  4461. "drupal/domain_config": "*"
  4462. },
  4463. "type": "drupal-module",
  4464. "extra": {
  4465. "branch-alias": {
  4466. "dev-1.x": "1.x-dev"
  4467. },
  4468. "drupal": {
  4469. "version": "8.x-1.3+7-dev",
  4470. "datestamp": "1584297727",
  4471. "security-coverage": {
  4472. "status": "not-covered",
  4473. "message": "Dev releases are not covered by Drupal security advisories."
  4474. }
  4475. }
  4476. },
  4477. "notification-url": "https://packages.drupal.org/8/downloads",
  4478. "license": [
  4479. "GPL-2.0+"
  4480. ],
  4481. "authors": [
  4482. {
  4483. "name": "aloknarwaria",
  4484. "homepage": "https://www.drupal.org/user/906640"
  4485. },
  4486. {
  4487. "name": "malaynayak",
  4488. "homepage": "https://www.drupal.org/user/3529755"
  4489. }
  4490. ],
  4491. "description": "Basic Site Setting for Domains.",
  4492. "homepage": "https://www.drupal.org/project/domain_site_settings",
  4493. "keywords": [
  4494. "Drupal"
  4495. ],
  4496. "support": {
  4497. "source": "http://cgit.drupalcode.org/domain_site_settings",
  4498. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  4499. },
  4500. "time": "2020-03-15T18:41:41+00:00"
  4501. },
  4502. {
  4503. "name": "drupal/email_registration",
  4504. "version": "1.1.0",
  4505. "source": {
  4506. "type": "git",
  4507. "url": "https://git.drupalcode.org/project/email_registration.git",
  4508. "reference": "8.x-1.1"
  4509. },
  4510. "dist": {
  4511. "type": "zip",
  4512. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.1.zip",
  4513. "reference": "8.x-1.1",
  4514. "shasum": "cc0eef597216a6d025d9017df104f2693b029f96"
  4515. },
  4516. "require": {
  4517. "drupal/core": "^8.7.7 || ^9"
  4518. },
  4519. "conflict": {
  4520. "drupal/commerce": "<2.12"
  4521. },
  4522. "require-dev": {
  4523. "drupal/commerce": "^2.0"
  4524. },
  4525. "type": "drupal-module",
  4526. "extra": {
  4527. "drupal": {
  4528. "version": "8.x-1.1",
  4529. "datestamp": "1592317072",
  4530. "security-coverage": {
  4531. "status": "covered",
  4532. "message": "Covered by Drupal's security advisory policy"
  4533. }
  4534. }
  4535. },
  4536. "notification-url": "https://packages.drupal.org/8/downloads",
  4537. "license": [
  4538. "GPL-2.0-or-later"
  4539. ],
  4540. "authors": [
  4541. {
  4542. "name": "Greg Knaddison (greggles)",
  4543. "homepage": "https://www.drupal.org/u/greggles",
  4544. "role": "Maintainer"
  4545. },
  4546. {
  4547. "name": "Andrey Postnikov (andypost)",
  4548. "homepage": "https://www.drupal.org/u/andypost",
  4549. "role": "Maintainer"
  4550. },
  4551. {
  4552. "name": "Chris Herberte",
  4553. "homepage": "https://www.drupal.org/u/chris-herberte",
  4554. "role": "Maintainer"
  4555. },
  4556. {
  4557. "name": "Moshe Weitzman (moshe weitzman)",
  4558. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  4559. "role": "Maintainer"
  4560. }
  4561. ],
  4562. "description": "Allows users to register with an email address as their username.",
  4563. "homepage": "https://www.drupal.org/project/email_registration",
  4564. "support": {
  4565. "source": "https://git.drupalcode.org/project/email_registration",
  4566. "issues": "http://drupal.org/project/issues/email_registration"
  4567. }
  4568. },
  4569. {
  4570. "name": "drupal/embed",
  4571. "version": "1.4.0",
  4572. "source": {
  4573. "type": "git",
  4574. "url": "https://git.drupalcode.org/project/embed.git",
  4575. "reference": "8.x-1.4"
  4576. },
  4577. "dist": {
  4578. "type": "zip",
  4579. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.4.zip",
  4580. "reference": "8.x-1.4",
  4581. "shasum": "09a2bda039bfbb3fff01c91964384bf3d924b8c5"
  4582. },
  4583. "require": {
  4584. "drupal/core": "^8.7.7 || ^9"
  4585. },
  4586. "type": "drupal-module",
  4587. "extra": {
  4588. "drupal": {
  4589. "version": "8.x-1.4",
  4590. "datestamp": "1590176831",
  4591. "security-coverage": {
  4592. "status": "covered",
  4593. "message": "Covered by Drupal's security advisory policy"
  4594. }
  4595. }
  4596. },
  4597. "notification-url": "https://packages.drupal.org/8/downloads",
  4598. "license": [
  4599. "GPL-2.0-or-later"
  4600. ],
  4601. "authors": [
  4602. {
  4603. "name": "Dave Reid",
  4604. "homepage": "https://www.drupal.org/user/53892"
  4605. },
  4606. {
  4607. "name": "Devin Carlson",
  4608. "homepage": "https://www.drupal.org/user/290182"
  4609. },
  4610. {
  4611. "name": "Drupal Media Team",
  4612. "homepage": "https://www.drupal.org/user/3260690"
  4613. },
  4614. {
  4615. "name": "cs_shadow",
  4616. "homepage": "https://www.drupal.org/user/2828287"
  4617. },
  4618. {
  4619. "name": "phenaproxima",
  4620. "homepage": "https://www.drupal.org/user/205645"
  4621. },
  4622. {
  4623. "name": "slashrsm",
  4624. "homepage": "https://www.drupal.org/user/744628"
  4625. }
  4626. ],
  4627. "description": "Provides a framework for different types of embeds in text editors.",
  4628. "homepage": "https://www.drupal.org/project/embed",
  4629. "support": {
  4630. "source": "https://git.drupalcode.org/project/embed"
  4631. }
  4632. },
  4633. {
  4634. "name": "drupal/entity",
  4635. "version": "1.2.0",
  4636. "source": {
  4637. "type": "git",
  4638. "url": "https://git.drupalcode.org/project/entity.git",
  4639. "reference": "8.x-1.2"
  4640. },
  4641. "dist": {
  4642. "type": "zip",
  4643. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.2.zip",
  4644. "reference": "8.x-1.2",
  4645. "shasum": "7e7cb12ea65d9f986b59935eda316387cf511079"
  4646. },
  4647. "require": {
  4648. "drupal/core": "^8.8 || ^9"
  4649. },
  4650. "type": "drupal-module",
  4651. "extra": {
  4652. "drupal": {
  4653. "version": "8.x-1.2",
  4654. "datestamp": "1606399149",
  4655. "security-coverage": {
  4656. "status": "covered",
  4657. "message": "Covered by Drupal's security advisory policy"
  4658. }
  4659. }
  4660. },
  4661. "notification-url": "https://packages.drupal.org/8/downloads",
  4662. "license": [
  4663. "GPL-2.0-or-later"
  4664. ],
  4665. "authors": [
  4666. {
  4667. "name": "Berdir",
  4668. "homepage": "https://www.drupal.org/user/214652"
  4669. },
  4670. {
  4671. "name": "bojanz",
  4672. "homepage": "https://www.drupal.org/user/86106"
  4673. },
  4674. {
  4675. "name": "dawehner",
  4676. "homepage": "https://www.drupal.org/user/99340"
  4677. },
  4678. {
  4679. "name": "dixon_",
  4680. "homepage": "https://www.drupal.org/user/239911"
  4681. },
  4682. {
  4683. "name": "fago",
  4684. "homepage": "https://www.drupal.org/user/16747"
  4685. },
  4686. {
  4687. "name": "mglaman",
  4688. "homepage": "https://www.drupal.org/user/2416470"
  4689. }
  4690. ],
  4691. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  4692. "homepage": "http://drupal.org/project/entity",
  4693. "support": {
  4694. "source": "https://git.drupalcode.org/project/entity"
  4695. }
  4696. },
  4697. {
  4698. "name": "drupal/entity_browser",
  4699. "version": "2.5.0",
  4700. "source": {
  4701. "type": "git",
  4702. "url": "https://git.drupalcode.org/project/entity_browser.git",
  4703. "reference": "8.x-2.5"
  4704. },
  4705. "dist": {
  4706. "type": "zip",
  4707. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.5.zip",
  4708. "reference": "8.x-2.5",
  4709. "shasum": "29456b961f0f90ff064601ab8a382446a8143774"
  4710. },
  4711. "require": {
  4712. "drupal/core": "^8.8 || ^9"
  4713. },
  4714. "require-dev": {
  4715. "drupal/embed": "~1.0",
  4716. "drupal/entity_embed": "1.x-dev",
  4717. "drupal/entity_reference_revisions": "1.x-dev",
  4718. "drupal/entityqueue": "1.x-dev",
  4719. "drupal/inline_entity_form": "1.x-dev",
  4720. "drupal/paragraphs": "1.x-dev",
  4721. "drupal/token": "~1.0"
  4722. },
  4723. "type": "drupal-module",
  4724. "extra": {
  4725. "drupal": {
  4726. "version": "8.x-2.5",
  4727. "datestamp": "1588015429",
  4728. "security-coverage": {
  4729. "status": "covered",
  4730. "message": "Covered by Drupal's security advisory policy"
  4731. }
  4732. }
  4733. },
  4734. "notification-url": "https://packages.drupal.org/8/downloads",
  4735. "license": [
  4736. "GPL-2.0+"
  4737. ],
  4738. "authors": [
  4739. {
  4740. "name": "Janez Urevc",
  4741. "homepage": "https://github.com/slashrsm",
  4742. "role": "Maintainer"
  4743. },
  4744. {
  4745. "name": "Primoz Hmeljak",
  4746. "homepage": "https://github.com/primsi",
  4747. "role": "Maintainer"
  4748. },
  4749. {
  4750. "name": "See other contributors",
  4751. "homepage": "https://www.drupal.org/node/1943336/committers",
  4752. "role": "contributor"
  4753. },
  4754. {
  4755. "name": "Drupal Media Team",
  4756. "homepage": "https://www.drupal.org/user/3260690"
  4757. },
  4758. {
  4759. "name": "Primsi",
  4760. "homepage": "https://www.drupal.org/user/282629"
  4761. },
  4762. {
  4763. "name": "marcingy",
  4764. "homepage": "https://www.drupal.org/user/77320"
  4765. },
  4766. {
  4767. "name": "oknate",
  4768. "homepage": "https://www.drupal.org/user/471638"
  4769. },
  4770. {
  4771. "name": "samuel.mortenson",
  4772. "homepage": "https://www.drupal.org/user/2582268"
  4773. },
  4774. {
  4775. "name": "slashrsm",
  4776. "homepage": "https://www.drupal.org/user/744628"
  4777. }
  4778. ],
  4779. "description": "Entity browsing and selecting component.",
  4780. "homepage": "http://drupal.org/project/entity_browser",
  4781. "support": {
  4782. "source": "https://git.drupalcode.org/project/entity_browser",
  4783. "issues": "https://www.drupal.org/project/issues/entity_browser",
  4784. "irc": "irc://irc.freenode.org/drupal-contribute"
  4785. }
  4786. },
  4787. {
  4788. "name": "drupal/entity_browser_enhanced",
  4789. "version": "1.0.0",
  4790. "source": {
  4791. "type": "git",
  4792. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  4793. "reference": "8.x-1.0"
  4794. },
  4795. "dist": {
  4796. "type": "zip",
  4797. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-8.x-1.0.zip",
  4798. "reference": "8.x-1.0",
  4799. "shasum": "c309e3c3eb65c358fafc577de68f3cbb8c118865"
  4800. },
  4801. "require": {
  4802. "drupal/core": "^8 || ^9",
  4803. "drupal/entity_browser": "~2.0"
  4804. },
  4805. "type": "drupal-module",
  4806. "extra": {
  4807. "drupal": {
  4808. "version": "8.x-1.0",
  4809. "datestamp": "1581940931",
  4810. "security-coverage": {
  4811. "status": "covered",
  4812. "message": "Covered by Drupal's security advisory policy"
  4813. }
  4814. },
  4815. "branch-alias": {
  4816. "dev-8.x-1.x": "8.1.x-dev"
  4817. }
  4818. },
  4819. "notification-url": "https://packages.drupal.org/8/downloads",
  4820. "license": [
  4821. "GPL-2.0-or-later"
  4822. ],
  4823. "authors": [
  4824. {
  4825. "name": "Vardot",
  4826. "homepage": "https://www.drupal.org/vardot",
  4827. "role": "Maintainer"
  4828. },
  4829. {
  4830. "name": "RajabNatshah",
  4831. "homepage": "https://www.drupal.org/user/1414312"
  4832. }
  4833. ],
  4834. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  4835. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  4836. "support": {
  4837. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  4838. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  4839. }
  4840. },
  4841. {
  4842. "name": "drupal/entity_clone",
  4843. "version": "1.0.0-beta4",
  4844. "source": {
  4845. "type": "git",
  4846. "url": "https://git.drupalcode.org/project/entity_clone.git",
  4847. "reference": "8.x-1.0-beta4"
  4848. },
  4849. "dist": {
  4850. "type": "zip",
  4851. "url": "https://ftp.drupal.org/files/projects/entity_clone-8.x-1.0-beta4.zip",
  4852. "reference": "8.x-1.0-beta4",
  4853. "shasum": "4568ca25634d4ce4f142f56156259ba1f0d9f3c1"
  4854. },
  4855. "require": {
  4856. "drupal/core": "^8 || ^9"
  4857. },
  4858. "type": "drupal-module",
  4859. "extra": {
  4860. "drupal": {
  4861. "version": "8.x-1.0-beta4",
  4862. "datestamp": "1588605099",
  4863. "security-coverage": {
  4864. "status": "not-covered",
  4865. "message": "Beta releases are not covered by Drupal security advisories."
  4866. }
  4867. }
  4868. },
  4869. "notification-url": "https://packages.drupal.org/8/downloads",
  4870. "license": [
  4871. "GPL-2.0-or-later"
  4872. ],
  4873. "authors": [
  4874. {
  4875. "name": "vpeltot",
  4876. "homepage": "https://www.drupal.org/user/1361586"
  4877. }
  4878. ],
  4879. "description": "Add a clone action for all entities",
  4880. "homepage": "https://www.drupal.org/project/entity_clone",
  4881. "support": {
  4882. "source": "https://git.drupalcode.org/project/entity_clone"
  4883. }
  4884. },
  4885. {
  4886. "name": "drupal/entity_reference_revisions",
  4887. "version": "1.8.0",
  4888. "source": {
  4889. "type": "git",
  4890. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  4891. "reference": "8.x-1.8"
  4892. },
  4893. "dist": {
  4894. "type": "zip",
  4895. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.8.zip",
  4896. "reference": "8.x-1.8",
  4897. "shasum": "c1279e6c683edc2dbccedba8de1505340c8a62b6"
  4898. },
  4899. "require": {
  4900. "drupal/core": "^8.7.7 || ^9"
  4901. },
  4902. "require-dev": {
  4903. "drupal/diff": "1.x-dev"
  4904. },
  4905. "type": "drupal-module",
  4906. "extra": {
  4907. "drupal": {
  4908. "version": "8.x-1.8",
  4909. "datestamp": "1583961846",
  4910. "security-coverage": {
  4911. "status": "covered",
  4912. "message": "Covered by Drupal's security advisory policy"
  4913. }
  4914. }
  4915. },
  4916. "notification-url": "https://packages.drupal.org/8/downloads",
  4917. "license": [
  4918. "GPL-2.0"
  4919. ],
  4920. "authors": [
  4921. {
  4922. "name": "Berdir",
  4923. "homepage": "https://www.drupal.org/user/214652"
  4924. },
  4925. {
  4926. "name": "Frans",
  4927. "homepage": "https://www.drupal.org/user/514222"
  4928. },
  4929. {
  4930. "name": "jeroen.b",
  4931. "homepage": "https://www.drupal.org/user/1853532"
  4932. },
  4933. {
  4934. "name": "miro_dietiker",
  4935. "homepage": "https://www.drupal.org/user/227761"
  4936. }
  4937. ],
  4938. "description": "Entity Reference Revisions",
  4939. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  4940. "support": {
  4941. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  4942. }
  4943. },
  4944. {
  4945. "name": "drupal/extlink",
  4946. "version": "1.5.0",
  4947. "source": {
  4948. "type": "git",
  4949. "url": "https://git.drupalcode.org/project/extlink.git",
  4950. "reference": "8.x-1.5"
  4951. },
  4952. "dist": {
  4953. "type": "zip",
  4954. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.5.zip",
  4955. "reference": "8.x-1.5",
  4956. "shasum": "5a2b74d12ff9e9257a0566cca8dac3872da64970"
  4957. },
  4958. "require": {
  4959. "drupal/core": "^8 || ^9"
  4960. },
  4961. "type": "drupal-module",
  4962. "extra": {
  4963. "drupal": {
  4964. "version": "8.x-1.5",
  4965. "datestamp": "1601382250",
  4966. "security-coverage": {
  4967. "status": "covered",
  4968. "message": "Covered by Drupal's security advisory policy"
  4969. }
  4970. }
  4971. },
  4972. "notification-url": "https://packages.drupal.org/8/downloads",
  4973. "license": [
  4974. "GPL-2.0-or-later"
  4975. ],
  4976. "authors": [
  4977. {
  4978. "name": "Nate Lampton",
  4979. "homepage": "https://www.drupal.org/u/quicksketch",
  4980. "role": "Maintainer"
  4981. },
  4982. {
  4983. "name": "Lachlan Ennis",
  4984. "homepage": "https://www.drupal.org/u/elachlan",
  4985. "role": "Maintainer"
  4986. },
  4987. {
  4988. "name": "Neslee Canil Pinto",
  4989. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  4990. "role": "Maintainer"
  4991. }
  4992. ],
  4993. "description": "Modify behavior and appearance of external links.",
  4994. "homepage": "https://www.drupal.org/project/extlink",
  4995. "keywords": [
  4996. "Drupal",
  4997. "External Links"
  4998. ],
  4999. "support": {
  5000. "source": "https://git.drupalcode.org/project/extlink",
  5001. "issues": "https://www.drupal.org/project/issues/extlink"
  5002. }
  5003. },
  5004. {
  5005. "name": "drupal/field_group",
  5006. "version": "3.1.0",
  5007. "source": {
  5008. "type": "git",
  5009. "url": "https://git.drupalcode.org/project/field_group.git",
  5010. "reference": "8.x-3.1"
  5011. },
  5012. "dist": {
  5013. "type": "zip",
  5014. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.1.zip",
  5015. "reference": "8.x-3.1",
  5016. "shasum": "8a719eaea594f0ba874172831cb28da93c66b77a"
  5017. },
  5018. "require": {
  5019. "drupal/core": "^8.8 || ^9"
  5020. },
  5021. "require-dev": {
  5022. "drupal/jquery_ui_accordion": "^1.0"
  5023. },
  5024. "type": "drupal-module",
  5025. "extra": {
  5026. "drupal": {
  5027. "version": "8.x-3.1",
  5028. "datestamp": "1591772567",
  5029. "security-coverage": {
  5030. "status": "covered",
  5031. "message": "Covered by Drupal's security advisory policy"
  5032. }
  5033. }
  5034. },
  5035. "notification-url": "https://packages.drupal.org/8/downloads",
  5036. "license": [
  5037. "GPL-2.0-or-later"
  5038. ],
  5039. "authors": [
  5040. {
  5041. "name": "Hydra",
  5042. "homepage": "https://www.drupal.org/user/647364"
  5043. },
  5044. {
  5045. "name": "Stalski",
  5046. "homepage": "https://www.drupal.org/user/322618"
  5047. },
  5048. {
  5049. "name": "jyve",
  5050. "homepage": "https://www.drupal.org/user/591438"
  5051. },
  5052. {
  5053. "name": "nils.destoop",
  5054. "homepage": "https://www.drupal.org/user/361625"
  5055. },
  5056. {
  5057. "name": "swentel",
  5058. "homepage": "https://www.drupal.org/user/107403"
  5059. }
  5060. ],
  5061. "description": "Provides the field_group module.",
  5062. "homepage": "https://www.drupal.org/project/field_group",
  5063. "support": {
  5064. "source": "https://git.drupalcode.org/project/field_group",
  5065. "issues": "https://www.drupal.org/project/issues/field_group"
  5066. }
  5067. },
  5068. {
  5069. "name": "drupal/file_mdm",
  5070. "version": "2.1.0",
  5071. "source": {
  5072. "type": "git",
  5073. "url": "https://git.drupalcode.org/project/file_mdm.git",
  5074. "reference": "8.x-2.1"
  5075. },
  5076. "dist": {
  5077. "type": "zip",
  5078. "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-2.1.zip",
  5079. "reference": "8.x-2.1",
  5080. "shasum": "5c3d75622299ebddc0e8456bb08bb371da8771bd"
  5081. },
  5082. "require": {
  5083. "drupal/core": "^8.8 || ^9",
  5084. "lsolesen/pel": "^0.9.8",
  5085. "phenx/php-font-lib": "^0.5.2",
  5086. "php": ">=7"
  5087. },
  5088. "require-dev": {
  5089. "drupal/image_effects": "*"
  5090. },
  5091. "type": "drupal-module",
  5092. "extra": {
  5093. "drupal": {
  5094. "version": "8.x-2.1",
  5095. "datestamp": "1586801064",
  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": "mondrake",
  5109. "homepage": "https://www.drupal.org/user/1307444"
  5110. }
  5111. ],
  5112. "description": "Provides a service to manage file metadata.",
  5113. "homepage": "https://www.drupal.org/project/file_mdm",
  5114. "support": {
  5115. "source": "https://git.drupalcode.org/project/file_mdm"
  5116. }
  5117. },
  5118. {
  5119. "name": "drupal/filefield_sources",
  5120. "version": "dev-1.x",
  5121. "source": {
  5122. "type": "git",
  5123. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  5124. "reference": "2477ff91863c9c19569de4ebb3d379d0e5e24312"
  5125. },
  5126. "require": {
  5127. "drupal/core": "^8 || ^9"
  5128. },
  5129. "require-dev": {
  5130. "drupal/imce": "*"
  5131. },
  5132. "type": "drupal-module",
  5133. "extra": {
  5134. "branch-alias": {
  5135. "dev-1.x": "1.x-dev"
  5136. },
  5137. "drupal": {
  5138. "version": "8.x-1.0-alpha3+3-dev",
  5139. "datestamp": "1604712687",
  5140. "security-coverage": {
  5141. "status": "not-covered",
  5142. "message": "Dev releases are not covered by Drupal security advisories."
  5143. }
  5144. }
  5145. },
  5146. "notification-url": "https://packages.drupal.org/8/downloads",
  5147. "license": [
  5148. "GPL-2.0-or-later"
  5149. ],
  5150. "authors": [
  5151. {
  5152. "name": "Nate Lampton (quicksketch)",
  5153. "homepage": "https://www.drupal.org/u/quicksketch",
  5154. "role": "Maintainer"
  5155. },
  5156. {
  5157. "name": "Andrey Khromyshev (profak)",
  5158. "homepage": "https://www.drupal.org/u/profak",
  5159. "role": "Maintainer"
  5160. },
  5161. {
  5162. "name": "David Valdez (gnuget)",
  5163. "homepage": "https://www.drupal.org/u/gnuget",
  5164. "role": "Maintainer"
  5165. }
  5166. ],
  5167. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  5168. "homepage": "https://www.drupal.org/project/filefield_sources",
  5169. "support": {
  5170. "source": "https://git.drupalcode.org/project/filefield_sources",
  5171. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  5172. "irc": "irc://irc.freenode.org/drupal-contribute"
  5173. },
  5174. "time": "2020-11-07T01:30:52+00:00"
  5175. },
  5176. {
  5177. "name": "drupal/filter_perms",
  5178. "version": "dev-1.x",
  5179. "source": {
  5180. "type": "git",
  5181. "url": "https://git.drupalcode.org/project/filter_perms.git",
  5182. "reference": "f9abe65da2236de801902256f8388291bc3d2c83"
  5183. },
  5184. "require": {
  5185. "drupal/core": "^8 || ^9"
  5186. },
  5187. "type": "drupal-module",
  5188. "extra": {
  5189. "branch-alias": {
  5190. "dev-1.x": "1.x-dev"
  5191. },
  5192. "drupal": {
  5193. "version": "8.x-1.0-alpha1+2-dev",
  5194. "datestamp": "1599239698",
  5195. "security-coverage": {
  5196. "status": "not-covered",
  5197. "message": "Dev releases are not covered by Drupal security advisories."
  5198. }
  5199. }
  5200. },
  5201. "notification-url": "https://packages.drupal.org/8/downloads",
  5202. "license": [
  5203. "GPL-2.0-or-later"
  5204. ],
  5205. "authors": [
  5206. {
  5207. "name": "cYu",
  5208. "homepage": "https://www.drupal.org/user/202205"
  5209. },
  5210. {
  5211. "name": "deekayen",
  5212. "homepage": "https://www.drupal.org/user/972"
  5213. },
  5214. {
  5215. "name": "ivagold",
  5216. "homepage": "https://www.drupal.org/user/3061533"
  5217. },
  5218. {
  5219. "name": "mgbellaire",
  5220. "homepage": "https://www.drupal.org/user/1831932"
  5221. },
  5222. {
  5223. "name": "willzyx",
  5224. "homepage": "https://www.drupal.org/user/1043862"
  5225. }
  5226. ],
  5227. "description": "Provides role and module filters to simplify the user permissions page.",
  5228. "homepage": "https://www.drupal.org/project/filter_perms",
  5229. "support": {
  5230. "source": "https://git.drupalcode.org/project/filter_perms"
  5231. },
  5232. "time": "2020-11-17T18:20:11+00:00"
  5233. },
  5234. {
  5235. "name": "drupal/graphql",
  5236. "version": "4.0.0",
  5237. "source": {
  5238. "type": "git",
  5239. "url": "https://git.drupalcode.org/project/graphql.git",
  5240. "reference": "8.x-4.0"
  5241. },
  5242. "dist": {
  5243. "type": "zip",
  5244. "url": "https://ftp.drupal.org/files/projects/graphql-8.x-4.0.zip",
  5245. "reference": "8.x-4.0",
  5246. "shasum": "639dd29fb6005ba2b15a389f03a6596308c9f14e"
  5247. },
  5248. "require": {
  5249. "drupal/core": "^8 || ^9",
  5250. "drupal/typed_data": "*",
  5251. "php": ">=7.2",
  5252. "webonyx/graphql-php": "^14.3.0"
  5253. },
  5254. "require-dev": {
  5255. "drupal/node-node": "*"
  5256. },
  5257. "type": "drupal-module",
  5258. "extra": {
  5259. "drupal": {
  5260. "version": "8.x-4.0",
  5261. "datestamp": "1607692423",
  5262. "security-coverage": {
  5263. "status": "covered",
  5264. "message": "Covered by Drupal's security advisory policy"
  5265. }
  5266. }
  5267. },
  5268. "notification-url": "https://packages.drupal.org/8/downloads",
  5269. "license": [
  5270. "GPL-2.0+"
  5271. ],
  5272. "authors": [
  5273. {
  5274. "name": "fubhy",
  5275. "homepage": "https://www.drupal.org/user/761344"
  5276. },
  5277. {
  5278. "name": "hideaway",
  5279. "homepage": "https://www.drupal.org/user/741876"
  5280. },
  5281. {
  5282. "name": "joaogarin",
  5283. "homepage": "https://www.drupal.org/user/612814"
  5284. },
  5285. {
  5286. "name": "klausi",
  5287. "homepage": "https://www.drupal.org/user/262198"
  5288. },
  5289. {
  5290. "name": "pmelab",
  5291. "homepage": "https://www.drupal.org/user/555322"
  5292. }
  5293. ],
  5294. "description": "Exposes your Drupal data model through a GraphQL schema.",
  5295. "homepage": "http://drupal.org/project/graphql",
  5296. "support": {
  5297. "source": "https://git.drupalcode.org/project/graphql"
  5298. }
  5299. },
  5300. {
  5301. "name": "drupal/honeypot",
  5302. "version": "2.0.1",
  5303. "source": {
  5304. "type": "git",
  5305. "url": "https://git.drupalcode.org/project/honeypot.git",
  5306. "reference": "2.0.1"
  5307. },
  5308. "dist": {
  5309. "type": "zip",
  5310. "url": "https://ftp.drupal.org/files/projects/honeypot-2.0.1.zip",
  5311. "reference": "2.0.1",
  5312. "shasum": "c29d248c0fdcdf733a31b9214355acfa73716632"
  5313. },
  5314. "require": {
  5315. "drupal/core": "^8.0 || ^9.0"
  5316. },
  5317. "type": "drupal-module",
  5318. "extra": {
  5319. "drupal": {
  5320. "version": "2.0.1",
  5321. "datestamp": "1597855128",
  5322. "security-coverage": {
  5323. "status": "covered",
  5324. "message": "Covered by Drupal's security advisory policy"
  5325. }
  5326. }
  5327. },
  5328. "notification-url": "https://packages.drupal.org/8/downloads",
  5329. "license": [
  5330. "GPL-2.0-or-later"
  5331. ],
  5332. "authors": [
  5333. {
  5334. "name": "Jeff Geerling",
  5335. "homepage": "https://www.drupal.org/user/213194",
  5336. "email": "geerlingguy@mac.com"
  5337. },
  5338. {
  5339. "name": "geerlingguy",
  5340. "homepage": "https://www.drupal.org/user/389011"
  5341. },
  5342. {
  5343. "name": "vijaycs85",
  5344. "homepage": "https://www.drupal.org/user/93488"
  5345. }
  5346. ],
  5347. "description": "Mitigates spam form submissions using the honeypot method.",
  5348. "homepage": "https://www.drupal.org/project/honeypot",
  5349. "keywords": [
  5350. "deterrent",
  5351. "form",
  5352. "honeypot",
  5353. "honeytrap",
  5354. "php",
  5355. "spam"
  5356. ],
  5357. "support": {
  5358. "source": "https://git.drupalcode.org/project/honeypot",
  5359. "issues": "https://www.drupal.org/project/issues/honeypot"
  5360. }
  5361. },
  5362. {
  5363. "name": "drupal/imagemagick",
  5364. "version": "3.1.0",
  5365. "source": {
  5366. "type": "git",
  5367. "url": "https://git.drupalcode.org/project/imagemagick.git",
  5368. "reference": "8.x-3.1"
  5369. },
  5370. "dist": {
  5371. "type": "zip",
  5372. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-3.1.zip",
  5373. "reference": "8.x-3.1",
  5374. "shasum": "f427b06312325aa667c549fed261f73f29e231e7"
  5375. },
  5376. "require": {
  5377. "drupal/core": "^8.8 || ^9",
  5378. "drupal/file_mdm": "^2",
  5379. "drupal/sophron": "^1",
  5380. "php": ">=7"
  5381. },
  5382. "type": "drupal-module",
  5383. "extra": {
  5384. "drupal": {
  5385. "version": "8.x-3.1",
  5386. "datestamp": "1581420882",
  5387. "security-coverage": {
  5388. "status": "covered",
  5389. "message": "Covered by Drupal's security advisory policy"
  5390. }
  5391. }
  5392. },
  5393. "notification-url": "https://packages.drupal.org/8/downloads",
  5394. "license": [
  5395. "GPL-2.0-or-later"
  5396. ],
  5397. "authors": [
  5398. {
  5399. "name": "Chris Charlton",
  5400. "homepage": "https://www.drupal.org/user/17089"
  5401. },
  5402. {
  5403. "name": "chx",
  5404. "homepage": "https://www.drupal.org/user/9446"
  5405. },
  5406. {
  5407. "name": "claudiu.cristea",
  5408. "homepage": "https://www.drupal.org/user/56348"
  5409. },
  5410. {
  5411. "name": "dman",
  5412. "homepage": "https://www.drupal.org/user/33240"
  5413. },
  5414. {
  5415. "name": "dopry",
  5416. "homepage": "https://www.drupal.org/user/22202"
  5417. },
  5418. {
  5419. "name": "drewish",
  5420. "homepage": "https://www.drupal.org/user/34869"
  5421. },
  5422. {
  5423. "name": "gdl",
  5424. "homepage": "https://www.drupal.org/user/507326"
  5425. },
  5426. {
  5427. "name": "mondrake",
  5428. "homepage": "https://www.drupal.org/user/1307444"
  5429. },
  5430. {
  5431. "name": "quicksketch",
  5432. "homepage": "https://www.drupal.org/user/35821"
  5433. },
  5434. {
  5435. "name": "sun",
  5436. "homepage": "https://www.drupal.org/user/54136"
  5437. },
  5438. {
  5439. "name": "walkah",
  5440. "homepage": "https://www.drupal.org/user/1531"
  5441. }
  5442. ],
  5443. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  5444. "homepage": "https://www.drupal.org/project/imagemagick",
  5445. "support": {
  5446. "source": "https://git.drupalcode.org/project/imagemagick"
  5447. }
  5448. },
  5449. {
  5450. "name": "drupal/inline_entity_form",
  5451. "version": "1.0.0-rc8",
  5452. "source": {
  5453. "type": "git",
  5454. "url": "https://git.drupalcode.org/project/inline_entity_form.git",
  5455. "reference": "8.x-1.0-rc8"
  5456. },
  5457. "dist": {
  5458. "type": "zip",
  5459. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc8.zip",
  5460. "reference": "8.x-1.0-rc8",
  5461. "shasum": "103de382dd07b4acdd6bacd5ad76628fdf0eefda"
  5462. },
  5463. "require": {
  5464. "drupal/core": "^8.7.7 || ^9"
  5465. },
  5466. "require-dev": {
  5467. "drupal/entity_reference_revisions": "^1.0"
  5468. },
  5469. "type": "drupal-module",
  5470. "extra": {
  5471. "drupal": {
  5472. "version": "8.x-1.0-rc8",
  5473. "datestamp": "1602172716",
  5474. "security-coverage": {
  5475. "status": "not-covered",
  5476. "message": "RC releases are not covered by Drupal security advisories."
  5477. }
  5478. }
  5479. },
  5480. "notification-url": "https://packages.drupal.org/8/downloads",
  5481. "license": [
  5482. "GPL-2.0-or-later"
  5483. ],
  5484. "authors": [
  5485. {
  5486. "name": "bojanz",
  5487. "homepage": "https://www.drupal.org/user/86106"
  5488. },
  5489. {
  5490. "name": "dawehner",
  5491. "homepage": "https://www.drupal.org/user/99340"
  5492. },
  5493. {
  5494. "name": "geek-merlin",
  5495. "homepage": "https://www.drupal.org/user/229048"
  5496. },
  5497. {
  5498. "name": "joachim",
  5499. "homepage": "https://www.drupal.org/user/107701"
  5500. },
  5501. {
  5502. "name": "jsacksick",
  5503. "homepage": "https://www.drupal.org/user/972218"
  5504. },
  5505. {
  5506. "name": "kaythay",
  5507. "homepage": "https://www.drupal.org/user/2182186"
  5508. },
  5509. {
  5510. "name": "oknate",
  5511. "homepage": "https://www.drupal.org/user/471638"
  5512. },
  5513. {
  5514. "name": "rszrama",
  5515. "homepage": "https://www.drupal.org/user/49344"
  5516. },
  5517. {
  5518. "name": "slashrsm",
  5519. "homepage": "https://www.drupal.org/user/744628"
  5520. },
  5521. {
  5522. "name": "webflo",
  5523. "homepage": "https://www.drupal.org/user/254778"
  5524. }
  5525. ],
  5526. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  5527. "homepage": "https://www.drupal.org/project/inline_entity_form",
  5528. "support": {
  5529. "source": "https://git.drupalcode.org/project/inline_entity_form"
  5530. }
  5531. },
  5532. {
  5533. "name": "drupal/insert",
  5534. "version": "dev-2.x",
  5535. "source": {
  5536. "type": "git",
  5537. "url": "https://git.drupalcode.org/project/insert.git",
  5538. "reference": "892cb12f5c748f29106a04b4cdfd4fe77a503118"
  5539. },
  5540. "require": {
  5541. "drupal/core": "^8 || ^9"
  5542. },
  5543. "require-dev": {
  5544. "drupal/colorbox": "*"
  5545. },
  5546. "type": "drupal-module",
  5547. "extra": {
  5548. "branch-alias": {
  5549. "dev-2.x": "2.x-dev"
  5550. },
  5551. "drupal": {
  5552. "version": "8.x-2.0-beta1+6-dev",
  5553. "datestamp": "1597165610",
  5554. "security-coverage": {
  5555. "status": "not-covered",
  5556. "message": "Dev releases are not covered by Drupal security advisories."
  5557. }
  5558. }
  5559. },
  5560. "notification-url": "https://packages.drupal.org/8/downloads",
  5561. "license": [
  5562. "GPL-2.0-or-later"
  5563. ],
  5564. "authors": [
  5565. {
  5566. "name": "Neslee Canil Pinto",
  5567. "homepage": "https://www.drupal.org/user/3580850"
  5568. },
  5569. {
  5570. "name": "Snater",
  5571. "homepage": "https://www.drupal.org/user/3513717"
  5572. },
  5573. {
  5574. "name": "quicksketch",
  5575. "homepage": "https://www.drupal.org/user/35821"
  5576. }
  5577. ],
  5578. "description": "Assists in inserting files, images, or other media into the body field as well as other editor and text areas.",
  5579. "homepage": "https://www.drupal.org/project/insert",
  5580. "support": {
  5581. "source": "https://git.drupalcode.org/project/insert"
  5582. },
  5583. "time": "2020-10-08T16:45:33+00:00"
  5584. },
  5585. {
  5586. "name": "drupal/jquery_ui",
  5587. "version": "1.4.0",
  5588. "source": {
  5589. "type": "git",
  5590. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  5591. "reference": "8.x-1.4"
  5592. },
  5593. "dist": {
  5594. "type": "zip",
  5595. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.4.zip",
  5596. "reference": "8.x-1.4",
  5597. "shasum": "64c19ecc8902e2b4b1ab0cc5f5fe28dbc83bfebe"
  5598. },
  5599. "require": {
  5600. "drupal/core": "^8 || ^9"
  5601. },
  5602. "type": "drupal-module",
  5603. "extra": {
  5604. "drupal": {
  5605. "version": "8.x-1.4",
  5606. "datestamp": "1582149957",
  5607. "security-coverage": {
  5608. "status": "covered",
  5609. "message": "Covered by Drupal's security advisory policy"
  5610. }
  5611. }
  5612. },
  5613. "notification-url": "https://packages.drupal.org/8/downloads",
  5614. "license": [
  5615. "GPL-2.0-or-later"
  5616. ],
  5617. "authors": [
  5618. {
  5619. "name": "RobLoach",
  5620. "homepage": "https://www.drupal.org/user/61114"
  5621. },
  5622. {
  5623. "name": "jjeff",
  5624. "homepage": "https://www.drupal.org/user/17190"
  5625. },
  5626. {
  5627. "name": "lauriii",
  5628. "homepage": "https://www.drupal.org/user/1078742"
  5629. },
  5630. {
  5631. "name": "litwol",
  5632. "homepage": "https://www.drupal.org/user/78134"
  5633. },
  5634. {
  5635. "name": "mfb",
  5636. "homepage": "https://www.drupal.org/user/12302"
  5637. },
  5638. {
  5639. "name": "mfer",
  5640. "homepage": "https://www.drupal.org/user/25701"
  5641. },
  5642. {
  5643. "name": "mikelutz",
  5644. "homepage": "https://www.drupal.org/user/2972409"
  5645. },
  5646. {
  5647. "name": "sun",
  5648. "homepage": "https://www.drupal.org/user/54136"
  5649. },
  5650. {
  5651. "name": "webchick",
  5652. "homepage": "https://www.drupal.org/user/24967"
  5653. },
  5654. {
  5655. "name": "zrpnr",
  5656. "homepage": "https://www.drupal.org/user/1448368"
  5657. }
  5658. ],
  5659. "description": "Provides jQuery UI library.",
  5660. "homepage": "https://www.drupal.org/project/jquery_ui",
  5661. "support": {
  5662. "source": "https://git.drupalcode.org/project/jquery_ui"
  5663. }
  5664. },
  5665. {
  5666. "name": "drupal/jquery_ui_button",
  5667. "version": "1.1.0",
  5668. "source": {
  5669. "type": "git",
  5670. "url": "https://git.drupalcode.org/project/jquery_ui_button.git",
  5671. "reference": "8.x-1.1"
  5672. },
  5673. "dist": {
  5674. "type": "zip",
  5675. "url": "https://ftp.drupal.org/files/projects/jquery_ui_button-8.x-1.1.zip",
  5676. "reference": "8.x-1.1",
  5677. "shasum": "70175a96c9034cc1cb2f28c415b2a9828355cc1a"
  5678. },
  5679. "require": {
  5680. "drupal/core": "^8 || ^9",
  5681. "drupal/jquery_ui": "*",
  5682. "drupal/jquery_ui_checkboxradio": "*",
  5683. "drupal/jquery_ui_controlgroup": "*"
  5684. },
  5685. "type": "drupal-module",
  5686. "extra": {
  5687. "drupal": {
  5688. "version": "8.x-1.1",
  5689. "datestamp": "1584106807",
  5690. "security-coverage": {
  5691. "status": "covered",
  5692. "message": "Covered by Drupal's security advisory policy"
  5693. }
  5694. }
  5695. },
  5696. "notification-url": "https://packages.drupal.org/8/downloads",
  5697. "license": [
  5698. "GPL-2.0-or-later"
  5699. ],
  5700. "authors": [
  5701. {
  5702. "name": "bnjmnm",
  5703. "homepage": "https://www.drupal.org/user/2369194"
  5704. },
  5705. {
  5706. "name": "lauriii",
  5707. "homepage": "https://www.drupal.org/user/1078742"
  5708. },
  5709. {
  5710. "name": "zrpnr",
  5711. "homepage": "https://www.drupal.org/user/1448368"
  5712. }
  5713. ],
  5714. "description": "Provides jQuery UI Button library.",
  5715. "homepage": "https://www.drupal.org/project/jquery_ui_button",
  5716. "support": {
  5717. "source": "https://git.drupalcode.org/project/jquery_ui_button"
  5718. }
  5719. },
  5720. {
  5721. "name": "drupal/jquery_ui_checkboxradio",
  5722. "version": "1.2.0",
  5723. "source": {
  5724. "type": "git",
  5725. "url": "https://git.drupalcode.org/project/jquery_ui_checkboxradio.git",
  5726. "reference": "8.x-1.2"
  5727. },
  5728. "dist": {
  5729. "type": "zip",
  5730. "url": "https://ftp.drupal.org/files/projects/jquery_ui_checkboxradio-8.x-1.2.zip",
  5731. "reference": "8.x-1.2",
  5732. "shasum": "8edb088cb89f4a0f95aa9d43894bf506dc5f6fe1"
  5733. },
  5734. "require": {
  5735. "drupal/core": "^8 || ^9",
  5736. "drupal/jquery_ui": "*"
  5737. },
  5738. "type": "drupal-module",
  5739. "extra": {
  5740. "drupal": {
  5741. "version": "8.x-1.2",
  5742. "datestamp": "1584106406",
  5743. "security-coverage": {
  5744. "status": "covered",
  5745. "message": "Covered by Drupal's security advisory policy"
  5746. }
  5747. }
  5748. },
  5749. "notification-url": "https://packages.drupal.org/8/downloads",
  5750. "license": [
  5751. "GPL-2.0-or-later"
  5752. ],
  5753. "authors": [
  5754. {
  5755. "name": "bnjmnm",
  5756. "homepage": "https://www.drupal.org/user/2369194"
  5757. },
  5758. {
  5759. "name": "lauriii",
  5760. "homepage": "https://www.drupal.org/user/1078742"
  5761. },
  5762. {
  5763. "name": "zrpnr",
  5764. "homepage": "https://www.drupal.org/user/1448368"
  5765. }
  5766. ],
  5767. "description": "Provides jQuery UI Checkboxradio library.",
  5768. "homepage": "https://www.drupal.org/project/jquery_ui_checkboxradio",
  5769. "support": {
  5770. "source": "https://git.drupalcode.org/project/jquery_ui_checkboxradio"
  5771. }
  5772. },
  5773. {
  5774. "name": "drupal/jquery_ui_controlgroup",
  5775. "version": "1.1.0",
  5776. "source": {
  5777. "type": "git",
  5778. "url": "https://git.drupalcode.org/project/jquery_ui_controlgroup.git",
  5779. "reference": "8.x-1.1"
  5780. },
  5781. "dist": {
  5782. "type": "zip",
  5783. "url": "https://ftp.drupal.org/files/projects/jquery_ui_controlgroup-8.x-1.1.zip",
  5784. "reference": "8.x-1.1",
  5785. "shasum": "ddbd4f01df4e3c9566aa76ba256217a27f45f48a"
  5786. },
  5787. "require": {
  5788. "drupal/core": "^8 || ^9",
  5789. "drupal/jquery_ui": "*"
  5790. },
  5791. "type": "drupal-module",
  5792. "extra": {
  5793. "drupal": {
  5794. "version": "8.x-1.1",
  5795. "datestamp": "1584106616",
  5796. "security-coverage": {
  5797. "status": "covered",
  5798. "message": "Covered by Drupal's security advisory policy"
  5799. }
  5800. }
  5801. },
  5802. "notification-url": "https://packages.drupal.org/8/downloads",
  5803. "license": [
  5804. "GPL-2.0-or-later"
  5805. ],
  5806. "authors": [
  5807. {
  5808. "name": "bnjmnm",
  5809. "homepage": "https://www.drupal.org/user/2369194"
  5810. },
  5811. {
  5812. "name": "lauriii",
  5813. "homepage": "https://www.drupal.org/user/1078742"
  5814. },
  5815. {
  5816. "name": "zrpnr",
  5817. "homepage": "https://www.drupal.org/user/1448368"
  5818. }
  5819. ],
  5820. "description": "Provides jQuery UI Controlgroup library.",
  5821. "homepage": "https://www.drupal.org/project/jquery_ui_controlgroup",
  5822. "support": {
  5823. "source": "https://git.drupalcode.org/project/jquery_ui_controlgroup"
  5824. }
  5825. },
  5826. {
  5827. "name": "drupal/jquery_ui_datepicker",
  5828. "version": "1.0.0",
  5829. "source": {
  5830. "type": "git",
  5831. "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
  5832. "reference": "8.x-1.0"
  5833. },
  5834. "dist": {
  5835. "type": "zip",
  5836. "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-8.x-1.0.zip",
  5837. "reference": "8.x-1.0",
  5838. "shasum": "954f12f93e82b6c93e6797fe2e6e66604ad1d2b2"
  5839. },
  5840. "require": {
  5841. "drupal/core": "^8 || ^9",
  5842. "drupal/jquery_ui": "*"
  5843. },
  5844. "type": "drupal-module",
  5845. "extra": {
  5846. "drupal": {
  5847. "version": "8.x-1.0",
  5848. "datestamp": "1589684301",
  5849. "security-coverage": {
  5850. "status": "covered",
  5851. "message": "Covered by Drupal's security advisory policy"
  5852. }
  5853. }
  5854. },
  5855. "notification-url": "https://packages.drupal.org/8/downloads",
  5856. "license": [
  5857. "GPL-2.0-or-later"
  5858. ],
  5859. "authors": [
  5860. {
  5861. "name": "jrockowitz",
  5862. "homepage": "https://www.drupal.org/user/371407"
  5863. },
  5864. {
  5865. "name": "zrpnr",
  5866. "homepage": "https://www.drupal.org/user/1448368"
  5867. }
  5868. ],
  5869. "description": "Provides jQuery UI Datepicker library.",
  5870. "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
  5871. "support": {
  5872. "source": "https://git.drupalcode.org/project/jquery_ui_datepicker"
  5873. }
  5874. },
  5875. {
  5876. "name": "drupal/jquery_ui_slider",
  5877. "version": "1.1.0",
  5878. "source": {
  5879. "type": "git",
  5880. "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
  5881. "reference": "8.x-1.1"
  5882. },
  5883. "dist": {
  5884. "type": "zip",
  5885. "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-8.x-1.1.zip",
  5886. "reference": "8.x-1.1",
  5887. "shasum": "79b90cf60d45fc33ffdaa84bb2d6563f78a7d3d1"
  5888. },
  5889. "require": {
  5890. "drupal/core": "^8 || ^9",
  5891. "drupal/jquery_ui": "*"
  5892. },
  5893. "type": "drupal-module",
  5894. "extra": {
  5895. "drupal": {
  5896. "version": "8.x-1.1",
  5897. "datestamp": "1584107817",
  5898. "security-coverage": {
  5899. "status": "covered",
  5900. "message": "Covered by Drupal's security advisory policy"
  5901. }
  5902. }
  5903. },
  5904. "notification-url": "https://packages.drupal.org/8/downloads",
  5905. "license": [
  5906. "GPL-2.0-or-later"
  5907. ],
  5908. "authors": [
  5909. {
  5910. "name": "bnjmnm",
  5911. "homepage": "https://www.drupal.org/user/2369194"
  5912. },
  5913. {
  5914. "name": "lauriii",
  5915. "homepage": "https://www.drupal.org/user/1078742"
  5916. },
  5917. {
  5918. "name": "zrpnr",
  5919. "homepage": "https://www.drupal.org/user/1448368"
  5920. }
  5921. ],
  5922. "description": "Provides jQuery UI Slider library.",
  5923. "homepage": "https://www.drupal.org/project/jquery_ui_slider",
  5924. "support": {
  5925. "source": "https://git.drupalcode.org/project/jquery_ui_slider"
  5926. }
  5927. },
  5928. {
  5929. "name": "drupal/jquery_ui_touch_punch",
  5930. "version": "1.0.0",
  5931. "source": {
  5932. "type": "git",
  5933. "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
  5934. "reference": "1.0.0"
  5935. },
  5936. "dist": {
  5937. "type": "zip",
  5938. "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.0.0.zip",
  5939. "reference": "1.0.0",
  5940. "shasum": "8444a0ed897ba3d8e8876a9602ec8b3dca678cd1"
  5941. },
  5942. "require": {
  5943. "drupal/core": "^8 || ^9",
  5944. "drupal/jquery_ui": "^1.0"
  5945. },
  5946. "suggest": {
  5947. "furf/jquery-ui-touch-punch": "Required to use drupal/jquery_ui_touch_punch module."
  5948. },
  5949. "type": "drupal-module",
  5950. "extra": {
  5951. "drupal": {
  5952. "version": "1.0.0",
  5953. "datestamp": "1591893292",
  5954. "security-coverage": {
  5955. "status": "not-covered",
  5956. "message": "Project has not opted into security advisory coverage!"
  5957. }
  5958. }
  5959. },
  5960. "notification-url": "https://packages.drupal.org/8/downloads",
  5961. "license": [
  5962. "GPL-2.0+"
  5963. ],
  5964. "authors": [
  5965. {
  5966. "name": "Naveen Valecha",
  5967. "homepage": "https://drupal.org/u/naveenvalecha",
  5968. "role": "Maintainer"
  5969. }
  5970. ],
  5971. "description": "Provides jQuery UI Touch Punch library.",
  5972. "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5973. "keywords": [
  5974. "Drupal",
  5975. "jquery_ui_touch_punch"
  5976. ],
  5977. "support": {
  5978. "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5979. "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch",
  5980. "irc": "irc://irc.freenode.org/drupal-contribute"
  5981. }
  5982. },
  5983. {
  5984. "name": "drupal/link_attributes",
  5985. "version": "1.11.0",
  5986. "source": {
  5987. "type": "git",
  5988. "url": "https://git.drupalcode.org/project/link_attributes.git",
  5989. "reference": "8.x-1.11"
  5990. },
  5991. "dist": {
  5992. "type": "zip",
  5993. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.11.zip",
  5994. "reference": "8.x-1.11",
  5995. "shasum": "ca8c7e71c38350e3784dc3d1f779d700f55df818"
  5996. },
  5997. "require": {
  5998. "drupal/core": "^8 || ^9"
  5999. },
  6000. "type": "drupal-module",
  6001. "extra": {
  6002. "drupal": {
  6003. "version": "8.x-1.11",
  6004. "datestamp": "1598323550",
  6005. "security-coverage": {
  6006. "status": "covered",
  6007. "message": "Covered by Drupal's security advisory policy"
  6008. }
  6009. }
  6010. },
  6011. "notification-url": "https://packages.drupal.org/8/downloads",
  6012. "license": [
  6013. "GPL-2.0-or-later"
  6014. ],
  6015. "authors": [
  6016. {
  6017. "name": "larowlan",
  6018. "homepage": "https://www.drupal.org/user/395439"
  6019. }
  6020. ],
  6021. "description": "Provides a widget to allow settings of link attributes for menu links.",
  6022. "homepage": "https://www.drupal.org/project/link_attributes",
  6023. "support": {
  6024. "source": "https://git.drupalcode.org/project/link_attributes"
  6025. }
  6026. },
  6027. {
  6028. "name": "drupal/linkit",
  6029. "version": "5.0.0-beta12",
  6030. "source": {
  6031. "type": "git",
  6032. "url": "https://git.drupalcode.org/project/linkit.git",
  6033. "reference": "8.x-5.0-beta12"
  6034. },
  6035. "dist": {
  6036. "type": "zip",
  6037. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta12.zip",
  6038. "reference": "8.x-5.0-beta12",
  6039. "shasum": "9e03975b476f893112d8b12d8b8610926a4e7f2c"
  6040. },
  6041. "require": {
  6042. "drupal/core": "^8.7.7 || ^9"
  6043. },
  6044. "require-dev": {
  6045. "drupal/imce": "*"
  6046. },
  6047. "type": "drupal-module",
  6048. "extra": {
  6049. "drupal": {
  6050. "version": "8.x-5.0-beta12",
  6051. "datestamp": "1608957625",
  6052. "security-coverage": {
  6053. "status": "not-covered",
  6054. "message": "Beta releases are not covered by Drupal security advisories."
  6055. }
  6056. }
  6057. },
  6058. "notification-url": "https://packages.drupal.org/8/downloads",
  6059. "license": [
  6060. "GPL-2.0-or-later"
  6061. ],
  6062. "authors": [
  6063. {
  6064. "name": "Emil Stjerneman",
  6065. "homepage": "https://stjerneman.com",
  6066. "email": "emil@stjerneman.com",
  6067. "role": "Maintainer"
  6068. }
  6069. ],
  6070. "description": "Linkit - Enriched linking experience",
  6071. "homepage": "http://drupal.org/project/linkit",
  6072. "support": {
  6073. "source": "http://cgit.drupalcode.org/linkit",
  6074. "issues": "http://drupal.org/project/linkit"
  6075. }
  6076. },
  6077. {
  6078. "name": "drupal/login_destination",
  6079. "version": "dev-2.x",
  6080. "source": {
  6081. "type": "git",
  6082. "url": "https://git.drupalcode.org/project/login_destination.git",
  6083. "reference": "0a2c46abd451b4c83e2f5a50cb791e68b141a8ab"
  6084. },
  6085. "require": {
  6086. "drupal/core": "^8.7.10 || ^9"
  6087. },
  6088. "require-dev": {
  6089. "drupal/admin_toolbar": "^1.23",
  6090. "drupal/admin_toolbar_tools": "*"
  6091. },
  6092. "type": "drupal-module",
  6093. "extra": {
  6094. "branch-alias": {
  6095. "dev-2.x": "2.x-dev"
  6096. },
  6097. "drupal": {
  6098. "version": "8.x-2.0-alpha3+8-dev",
  6099. "datestamp": "1603450565",
  6100. "security-coverage": {
  6101. "status": "not-covered",
  6102. "message": "Dev releases are not covered by Drupal security advisories."
  6103. }
  6104. }
  6105. },
  6106. "notification-url": "https://packages.drupal.org/8/downloads",
  6107. "license": [
  6108. "GPL-2.0-or-later"
  6109. ],
  6110. "authors": [
  6111. {
  6112. "name": "3CWebDev",
  6113. "homepage": "https://www.drupal.org/user/61221"
  6114. },
  6115. {
  6116. "name": "Oliver Huynh",
  6117. "homepage": "https://www.drupal.org/user/243730"
  6118. },
  6119. {
  6120. "name": "beautifulmind",
  6121. "homepage": "https://www.drupal.org/user/219482"
  6122. },
  6123. {
  6124. "name": "ddrozdik",
  6125. "homepage": "https://www.drupal.org/user/574124"
  6126. },
  6127. {
  6128. "name": "jng12",
  6129. "homepage": "https://www.drupal.org/user/204316"
  6130. },
  6131. {
  6132. "name": "marcp",
  6133. "homepage": "https://www.drupal.org/user/20885"
  6134. },
  6135. {
  6136. "name": "mithy",
  6137. "homepage": "https://www.drupal.org/user/258911"
  6138. },
  6139. {
  6140. "name": "moshe weitzman",
  6141. "homepage": "https://www.drupal.org/user/23"
  6142. },
  6143. {
  6144. "name": "perennial.sky",
  6145. "homepage": "https://www.drupal.org/user/2622667"
  6146. },
  6147. {
  6148. "name": "rsvelko",
  6149. "homepage": "https://www.drupal.org/user/337401"
  6150. }
  6151. ],
  6152. "description": "The Login Destination module add possibility customize the destination that the user is redirected to after login.",
  6153. "homepage": "https://www.drupal.org/project/login_destination",
  6154. "support": {
  6155. "source": "https://git.drupalcode.org/project/login_destination"
  6156. },
  6157. "time": "2020-10-23T10:55:36+00:00"
  6158. },
  6159. {
  6160. "name": "drupal/maillog",
  6161. "version": "dev-1.x",
  6162. "source": {
  6163. "type": "git",
  6164. "url": "https://git.drupalcode.org/project/maillog.git",
  6165. "reference": "053d0b4a53aea4f848be75b02fc8974bb7b053b3"
  6166. },
  6167. "require": {
  6168. "drupal/core": "^8 || ^9"
  6169. },
  6170. "type": "drupal-module",
  6171. "extra": {
  6172. "branch-alias": {
  6173. "dev-1.x": "1.x-dev"
  6174. },
  6175. "drupal": {
  6176. "version": "8.x-1.0-beta1+0-dev",
  6177. "datestamp": "1600799873",
  6178. "security-coverage": {
  6179. "status": "not-covered",
  6180. "message": "Dev releases are not covered by Drupal security advisories."
  6181. }
  6182. }
  6183. },
  6184. "notification-url": "https://packages.drupal.org/8/downloads",
  6185. "license": [
  6186. "GPL-2.0-or-later"
  6187. ],
  6188. "authors": [
  6189. {
  6190. "name": "Berdir",
  6191. "homepage": "https://www.drupal.org/user/214652"
  6192. },
  6193. {
  6194. "name": "DamienMcKenna",
  6195. "homepage": "https://www.drupal.org/user/108450"
  6196. },
  6197. {
  6198. "name": "miro_dietiker",
  6199. "homepage": "https://www.drupal.org/user/227761"
  6200. },
  6201. {
  6202. "name": "pluess",
  6203. "homepage": "https://www.drupal.org/user/84659"
  6204. }
  6205. ],
  6206. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  6207. "homepage": "https://www.drupal.org/project/maillog",
  6208. "support": {
  6209. "source": "https://git.drupalcode.org/project/maillog"
  6210. },
  6211. "time": "2020-09-22T18:37:31+00:00"
  6212. },
  6213. {
  6214. "name": "drupal/mailsystem",
  6215. "version": "4.3.0",
  6216. "source": {
  6217. "type": "git",
  6218. "url": "https://git.drupalcode.org/project/mailsystem.git",
  6219. "reference": "8.x-4.3"
  6220. },
  6221. "dist": {
  6222. "type": "zip",
  6223. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.3.zip",
  6224. "reference": "8.x-4.3",
  6225. "shasum": "1a74016e268ff207535be5d5e42ac8f72ac89050"
  6226. },
  6227. "require": {
  6228. "drupal/core": "^8.7.7 || ^9"
  6229. },
  6230. "type": "drupal-module",
  6231. "extra": {
  6232. "drupal": {
  6233. "version": "8.x-4.3",
  6234. "datestamp": "1586203024",
  6235. "security-coverage": {
  6236. "status": "covered",
  6237. "message": "Covered by Drupal's security advisory policy"
  6238. }
  6239. }
  6240. },
  6241. "notification-url": "https://packages.drupal.org/8/downloads",
  6242. "license": [
  6243. "GPL-2.0+"
  6244. ],
  6245. "authors": [
  6246. {
  6247. "name": "Berdir",
  6248. "homepage": "https://www.drupal.org/user/214652"
  6249. },
  6250. {
  6251. "name": "Les Lim",
  6252. "homepage": "https://www.drupal.org/user/84263"
  6253. },
  6254. {
  6255. "name": "Manuel Garcia",
  6256. "homepage": "https://www.drupal.org/user/213194"
  6257. },
  6258. {
  6259. "name": "Nafes",
  6260. "homepage": "https://www.drupal.org/user/2489926"
  6261. },
  6262. {
  6263. "name": "miro_dietiker",
  6264. "homepage": "https://www.drupal.org/user/227761"
  6265. },
  6266. {
  6267. "name": "pillarsdotnet",
  6268. "homepage": "https://www.drupal.org/user/36148"
  6269. }
  6270. ],
  6271. "description": "Mail System",
  6272. "homepage": "https://www.drupal.org/project/mailsystem",
  6273. "support": {
  6274. "source": "https://git.drupalcode.org/project/mailsystem"
  6275. }
  6276. },
  6277. {
  6278. "name": "drupal/matomo",
  6279. "version": "1.11.0",
  6280. "source": {
  6281. "type": "git",
  6282. "url": "https://git.drupalcode.org/project/matomo.git",
  6283. "reference": "8.x-1.11"
  6284. },
  6285. "dist": {
  6286. "type": "zip",
  6287. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.11.zip",
  6288. "reference": "8.x-1.11",
  6289. "shasum": "82be96c20ab15df03d199ab98d047cef6e67d40b"
  6290. },
  6291. "require": {
  6292. "drupal/core": "^8 || ^9"
  6293. },
  6294. "require-dev": {
  6295. "drupal/php": "*",
  6296. "drupal/token": "*"
  6297. },
  6298. "type": "drupal-module",
  6299. "extra": {
  6300. "drupal": {
  6301. "version": "8.x-1.11",
  6302. "datestamp": "1601651459",
  6303. "security-coverage": {
  6304. "status": "covered",
  6305. "message": "Covered by Drupal's security advisory policy"
  6306. }
  6307. }
  6308. },
  6309. "notification-url": "https://packages.drupal.org/8/downloads",
  6310. "license": [
  6311. "GPL-2.0-or-later"
  6312. ],
  6313. "authors": [
  6314. {
  6315. "name": "Carsten Logemann",
  6316. "homepage": "https://www.drupal.org/u/C_Logemann"
  6317. },
  6318. {
  6319. "name": "Shelane French",
  6320. "homepage": "https://www.drupal.org/u/shelane"
  6321. },
  6322. {
  6323. "name": "See other contributors",
  6324. "homepage": "https://www.drupal.org/node/247808/committers"
  6325. }
  6326. ],
  6327. "description": "Adds Matomo javascript tracking code to all your site's pages",
  6328. "homepage": "https://www.drupal.org/project/matomo",
  6329. "support": {
  6330. "source": "https://git.drupal.org/project/matomo.git",
  6331. "issues": "https://www.drupal.org/project/issues/matomo"
  6332. }
  6333. },
  6334. {
  6335. "name": "drupal/maxlength",
  6336. "version": "1.0.0-rc1",
  6337. "source": {
  6338. "type": "git",
  6339. "url": "https://git.drupalcode.org/project/maxlength.git",
  6340. "reference": "8.x-1.0-rc1"
  6341. },
  6342. "dist": {
  6343. "type": "zip",
  6344. "url": "https://ftp.drupal.org/files/projects/maxlength-8.x-1.0-rc1.zip",
  6345. "reference": "8.x-1.0-rc1",
  6346. "shasum": "44eb9d79d9814cd786c2c9874c28033759665a99"
  6347. },
  6348. "require": {
  6349. "drupal/core": "^8.8 || ^9"
  6350. },
  6351. "type": "drupal-module",
  6352. "extra": {
  6353. "drupal": {
  6354. "version": "8.x-1.0-rc1",
  6355. "datestamp": "1593198218",
  6356. "security-coverage": {
  6357. "status": "not-covered",
  6358. "message": "RC releases are not covered by Drupal security advisories."
  6359. }
  6360. }
  6361. },
  6362. "notification-url": "https://packages.drupal.org/8/downloads",
  6363. "license": [
  6364. "GPL-2.0-or-later"
  6365. ],
  6366. "authors": [
  6367. {
  6368. "name": "Aron Novak",
  6369. "homepage": "https://www.drupal.org/user/61864"
  6370. },
  6371. {
  6372. "name": "Schnitzel",
  6373. "homepage": "https://www.drupal.org/user/643820"
  6374. },
  6375. {
  6376. "name": "a_c_m",
  6377. "homepage": "https://www.drupal.org/user/195063"
  6378. },
  6379. {
  6380. "name": "barneytech",
  6381. "homepage": "https://www.drupal.org/user/669922"
  6382. },
  6383. {
  6384. "name": "claudiu_cristea",
  6385. "homepage": "https://www.drupal.org/user/2623935"
  6386. },
  6387. {
  6388. "name": "dawehner",
  6389. "homepage": "https://www.drupal.org/user/99340"
  6390. },
  6391. {
  6392. "name": "derhasi",
  6393. "homepage": "https://www.drupal.org/user/83474"
  6394. },
  6395. {
  6396. "name": "frjo",
  6397. "homepage": "https://www.drupal.org/user/5546"
  6398. },
  6399. {
  6400. "name": "hefox",
  6401. "homepage": "https://www.drupal.org/user/426416"
  6402. },
  6403. {
  6404. "name": "jm.federico",
  6405. "homepage": "https://www.drupal.org/user/509892"
  6406. },
  6407. {
  6408. "name": "k4v",
  6409. "homepage": "https://www.drupal.org/user/744246"
  6410. },
  6411. {
  6412. "name": "mariano73",
  6413. "homepage": "https://www.drupal.org/user/1324866"
  6414. },
  6415. {
  6416. "name": "mariuss",
  6417. "homepage": "https://www.drupal.org/user/28539"
  6418. },
  6419. {
  6420. "name": "sanduhrs",
  6421. "homepage": "https://www.drupal.org/user/28074"
  6422. },
  6423. {
  6424. "name": "vasi1186",
  6425. "homepage": "https://www.drupal.org/user/342104"
  6426. },
  6427. {
  6428. "name": "webiator GmbH",
  6429. "homepage": "https://www.drupal.org/user/2390554"
  6430. }
  6431. ],
  6432. "description": "Limit the number of characters in textfields and textareas and shows the amount of characters left.",
  6433. "homepage": "https://www.drupal.org/project/maxlength",
  6434. "support": {
  6435. "source": "https://git.drupalcode.org/project/maxlength"
  6436. }
  6437. },
  6438. {
  6439. "name": "drupal/menu_admin_per_menu",
  6440. "version": "1.3.0",
  6441. "source": {
  6442. "type": "git",
  6443. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  6444. "reference": "8.x-1.3"
  6445. },
  6446. "dist": {
  6447. "type": "zip",
  6448. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.3.zip",
  6449. "reference": "8.x-1.3",
  6450. "shasum": "cb967bdd9ca6f5692d670d5c7c8d77587e7fd38c"
  6451. },
  6452. "require": {
  6453. "drupal/core": "^8 || ^9"
  6454. },
  6455. "type": "drupal-module",
  6456. "extra": {
  6457. "drupal": {
  6458. "version": "8.x-1.3",
  6459. "datestamp": "1593436060",
  6460. "security-coverage": {
  6461. "status": "covered",
  6462. "message": "Covered by Drupal's security advisory policy"
  6463. }
  6464. }
  6465. },
  6466. "notification-url": "https://packages.drupal.org/8/downloads",
  6467. "license": [
  6468. "GPL-2.0-or-later"
  6469. ],
  6470. "authors": [
  6471. {
  6472. "name": "JeroenT",
  6473. "homepage": "https://www.drupal.org/user/2228934"
  6474. },
  6475. {
  6476. "name": "anrikun",
  6477. "homepage": "https://www.drupal.org/user/410199"
  6478. },
  6479. {
  6480. "name": "jonas139",
  6481. "homepage": "https://www.drupal.org/user/2873401"
  6482. },
  6483. {
  6484. "name": "mkdok",
  6485. "homepage": "https://www.drupal.org/user/3308753"
  6486. }
  6487. ],
  6488. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  6489. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  6490. "support": {
  6491. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  6492. }
  6493. },
  6494. {
  6495. "name": "drupal/menu_block",
  6496. "version": "dev-1.x",
  6497. "source": {
  6498. "type": "git",
  6499. "url": "https://git.drupalcode.org/project/menu_block.git",
  6500. "reference": "567becffbb0589e824fb053f15fb38a5846e7276"
  6501. },
  6502. "require": {
  6503. "drupal/core": "^8 || ^9"
  6504. },
  6505. "type": "drupal-module",
  6506. "extra": {
  6507. "branch-alias": {
  6508. "dev-1.x": "1.x-dev"
  6509. },
  6510. "drupal": {
  6511. "version": "8.x-1.6+5-dev",
  6512. "datestamp": "1591593747",
  6513. "security-coverage": {
  6514. "status": "not-covered",
  6515. "message": "Dev releases are not covered by Drupal security advisories."
  6516. }
  6517. }
  6518. },
  6519. "notification-url": "https://packages.drupal.org/8/downloads",
  6520. "license": [
  6521. "GPL-2.0-or-later"
  6522. ],
  6523. "authors": [
  6524. {
  6525. "name": "Dave Reid",
  6526. "homepage": "https://www.drupal.org/user/53892"
  6527. },
  6528. {
  6529. "name": "JohnAlbin",
  6530. "homepage": "https://www.drupal.org/user/32095"
  6531. },
  6532. {
  6533. "name": "joelpittet",
  6534. "homepage": "https://www.drupal.org/user/160302"
  6535. },
  6536. {
  6537. "name": "kim.pepper",
  6538. "homepage": "https://www.drupal.org/user/370574"
  6539. },
  6540. {
  6541. "name": "rrrob",
  6542. "homepage": "https://www.drupal.org/user/273533"
  6543. }
  6544. ],
  6545. "description": "Provides configurable blocks of menu links.",
  6546. "homepage": "https://www.drupal.org/project/menu_block",
  6547. "support": {
  6548. "source": "https://git.drupalcode.org/project/menu_block"
  6549. },
  6550. "time": "2020-11-18T00:42:05+00:00"
  6551. },
  6552. {
  6553. "name": "drupal/menu_position",
  6554. "version": "dev-1.x",
  6555. "source": {
  6556. "type": "git",
  6557. "url": "https://git.drupalcode.org/project/menu_position.git",
  6558. "reference": "bce075f4ea167a851d7401602394de557b76c85f"
  6559. },
  6560. "require": {
  6561. "drupal/core": "^8 || ^9"
  6562. },
  6563. "type": "drupal-module",
  6564. "extra": {
  6565. "branch-alias": {
  6566. "dev-1.x": "1.x-dev"
  6567. },
  6568. "drupal": {
  6569. "version": "8.x-1.0-alpha4+4-dev",
  6570. "datestamp": "1587797468",
  6571. "security-coverage": {
  6572. "status": "not-covered",
  6573. "message": "Dev releases are not covered by Drupal security advisories."
  6574. }
  6575. }
  6576. },
  6577. "notification-url": "https://packages.drupal.org/8/downloads",
  6578. "license": [
  6579. "GPL-2.0+"
  6580. ],
  6581. "authors": [
  6582. {
  6583. "name": "BarisW",
  6584. "homepage": "https://www.drupal.org/user/107229"
  6585. },
  6586. {
  6587. "name": "JohnAlbin",
  6588. "homepage": "https://www.drupal.org/user/32095"
  6589. },
  6590. {
  6591. "name": "Sutharsan",
  6592. "homepage": "https://www.drupal.org/user/73854"
  6593. },
  6594. {
  6595. "name": "joelpittet",
  6596. "homepage": "https://www.drupal.org/user/160302"
  6597. },
  6598. {
  6599. "name": "lbainbridge",
  6600. "homepage": "https://www.drupal.org/user/2406996"
  6601. }
  6602. ],
  6603. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  6604. "homepage": "https://www.drupal.org/project/menu_position",
  6605. "support": {
  6606. "source": "https://git.drupalcode.org/project/menu_position",
  6607. "issues": "https://www.drupal.org/project/issues/menu_position"
  6608. },
  6609. "time": "2020-04-25T06:50:43+00:00"
  6610. },
  6611. {
  6612. "name": "drupal/pagerer",
  6613. "version": "2.0.0",
  6614. "source": {
  6615. "type": "git",
  6616. "url": "https://git.drupalcode.org/project/pagerer.git",
  6617. "reference": "8.x-2.0"
  6618. },
  6619. "dist": {
  6620. "type": "zip",
  6621. "url": "https://ftp.drupal.org/files/projects/pagerer-8.x-2.0.zip",
  6622. "reference": "8.x-2.0",
  6623. "shasum": "de54dee5aa1336c1d6e6c5aeccfbd602d5898c7f"
  6624. },
  6625. "require": {
  6626. "drupal/core": "^8.8 || ^9",
  6627. "drupal/jquery_ui_button": "*",
  6628. "drupal/jquery_ui_slider": "*",
  6629. "php": ">=7.1"
  6630. },
  6631. "type": "drupal-module",
  6632. "extra": {
  6633. "drupal": {
  6634. "version": "8.x-2.0",
  6635. "datestamp": "1589289359",
  6636. "security-coverage": {
  6637. "status": "covered",
  6638. "message": "Covered by Drupal's security advisory policy"
  6639. }
  6640. }
  6641. },
  6642. "notification-url": "https://packages.drupal.org/8/downloads",
  6643. "license": [
  6644. "GPL-2.0-or-later"
  6645. ],
  6646. "authors": [
  6647. {
  6648. "name": "mondrake",
  6649. "homepage": "https://www.drupal.org/user/1307444"
  6650. }
  6651. ],
  6652. "description": "Configurable pager styles.",
  6653. "homepage": "https://www.drupal.org/project/pagerer",
  6654. "support": {
  6655. "source": "https://git.drupalcode.org/project/pagerer"
  6656. }
  6657. },
  6658. {
  6659. "name": "drupal/paragraphs",
  6660. "version": "1.12.0",
  6661. "source": {
  6662. "type": "git",
  6663. "url": "https://git.drupalcode.org/project/paragraphs.git",
  6664. "reference": "8.x-1.12"
  6665. },
  6666. "dist": {
  6667. "type": "zip",
  6668. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.12.zip",
  6669. "reference": "8.x-1.12",
  6670. "shasum": "3b67d8af1160af42d93a4610be1e02869e428965"
  6671. },
  6672. "require": {
  6673. "drupal/core": "^8.8 || ^9",
  6674. "drupal/entity_reference_revisions": "~1.3"
  6675. },
  6676. "require-dev": {
  6677. "drupal/block_field": "~1.0",
  6678. "drupal/ctools": "3.x-dev",
  6679. "drupal/diff": "~1.0",
  6680. "drupal/entity_browser": "2.x-dev",
  6681. "drupal/entity_usage": "2.x-dev",
  6682. "drupal/field_group": "3.x-dev",
  6683. "drupal/inline_entity_form": "~1.0",
  6684. "drupal/paragraphs-paragraphs_library": "*",
  6685. "drupal/replicate": "~1.0",
  6686. "drupal/search_api": "~1.0",
  6687. "drupal/search_api_db": "*"
  6688. },
  6689. "suggest": {
  6690. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  6691. },
  6692. "type": "drupal-module",
  6693. "extra": {
  6694. "drupal": {
  6695. "version": "8.x-1.12",
  6696. "datestamp": "1590140081",
  6697. "security-coverage": {
  6698. "status": "covered",
  6699. "message": "Covered by Drupal's security advisory policy"
  6700. }
  6701. }
  6702. },
  6703. "notification-url": "https://packages.drupal.org/8/downloads",
  6704. "license": [
  6705. "GPL-2.0-or-later"
  6706. ],
  6707. "authors": [
  6708. {
  6709. "name": "Berdir",
  6710. "homepage": "https://www.drupal.org/user/214652"
  6711. },
  6712. {
  6713. "name": "Frans",
  6714. "homepage": "https://www.drupal.org/user/514222"
  6715. },
  6716. {
  6717. "name": "Primsi",
  6718. "homepage": "https://www.drupal.org/user/282629"
  6719. },
  6720. {
  6721. "name": "jeroen.b",
  6722. "homepage": "https://www.drupal.org/user/1853532"
  6723. },
  6724. {
  6725. "name": "jstoller",
  6726. "homepage": "https://www.drupal.org/user/99012"
  6727. },
  6728. {
  6729. "name": "miro_dietiker",
  6730. "homepage": "https://www.drupal.org/user/227761"
  6731. }
  6732. ],
  6733. "description": "Enables the creation of Paragraphs entities.",
  6734. "homepage": "https://www.drupal.org/project/paragraphs",
  6735. "support": {
  6736. "source": "https://git.drupalcode.org/project/paragraphs"
  6737. }
  6738. },
  6739. {
  6740. "name": "drupal/path_alias_xt",
  6741. "version": "dev-1.x",
  6742. "source": {
  6743. "type": "git",
  6744. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  6745. "reference": "10ef76dd3eb25bc1342195336291ded3f2d8cc7e"
  6746. },
  6747. "require": {
  6748. "drupal/core": "^8.7.7 || ^9"
  6749. },
  6750. "type": "drupal-module",
  6751. "extra": {
  6752. "branch-alias": {
  6753. "dev-1.x": "1.x-dev"
  6754. },
  6755. "drupal": {
  6756. "version": "8.x-1.x-dev",
  6757. "datestamp": "1590299862",
  6758. "security-coverage": {
  6759. "status": "not-covered",
  6760. "message": "Dev releases are not covered by Drupal security advisories."
  6761. }
  6762. }
  6763. },
  6764. "notification-url": "https://packages.drupal.org/8/downloads",
  6765. "license": [
  6766. "GPL-2.0-or-later"
  6767. ],
  6768. "authors": [
  6769. {
  6770. "name": "RdeBoer",
  6771. "homepage": "https://www.drupal.org/user/404007"
  6772. },
  6773. {
  6774. "name": "adriancid",
  6775. "homepage": "https://www.drupal.org/user/1962106"
  6776. },
  6777. {
  6778. "name": "sdstyles",
  6779. "homepage": "https://www.drupal.org/user/1420228"
  6780. }
  6781. ],
  6782. "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.",
  6783. "homepage": "https://www.drupal.org/project/path_alias_xt",
  6784. "support": {
  6785. "source": "https://git.drupalcode.org/project/path_alias_xt"
  6786. },
  6787. "time": "2020-05-24T05:57:09+00:00"
  6788. },
  6789. {
  6790. "name": "drupal/pathauto",
  6791. "version": "1.8.0",
  6792. "source": {
  6793. "type": "git",
  6794. "url": "https://git.drupalcode.org/project/pathauto.git",
  6795. "reference": "8.x-1.8"
  6796. },
  6797. "dist": {
  6798. "type": "zip",
  6799. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.8.zip",
  6800. "reference": "8.x-1.8",
  6801. "shasum": "ede3216abb9c4f77709338d9147334c595046329"
  6802. },
  6803. "require": {
  6804. "drupal/core": "^8.8 || ^9",
  6805. "drupal/ctools": "*",
  6806. "drupal/token": "*"
  6807. },
  6808. "suggest": {
  6809. "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."
  6810. },
  6811. "type": "drupal-module",
  6812. "extra": {
  6813. "drupal": {
  6814. "version": "8.x-1.8",
  6815. "datestamp": "1588103046",
  6816. "security-coverage": {
  6817. "status": "covered",
  6818. "message": "Covered by Drupal's security advisory policy"
  6819. }
  6820. },
  6821. "drush": {
  6822. "services": {
  6823. "drush.services.yml": "^9 || ^10"
  6824. }
  6825. }
  6826. },
  6827. "notification-url": "https://packages.drupal.org/8/downloads",
  6828. "license": [
  6829. "GPL-2.0-or-later"
  6830. ],
  6831. "authors": [
  6832. {
  6833. "name": "Berdir",
  6834. "homepage": "https://www.drupal.org/user/214652"
  6835. },
  6836. {
  6837. "name": "Dave Reid",
  6838. "homepage": "https://www.drupal.org/user/53892"
  6839. },
  6840. {
  6841. "name": "Freso",
  6842. "homepage": "https://www.drupal.org/user/27504"
  6843. },
  6844. {
  6845. "name": "greggles",
  6846. "homepage": "https://www.drupal.org/user/36762"
  6847. }
  6848. ],
  6849. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  6850. "homepage": "https://www.drupal.org/project/pathauto",
  6851. "support": {
  6852. "source": "https://cgit.drupalcode.org/pathauto",
  6853. "issues": "https://www.drupal.org/project/issues/pathauto",
  6854. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  6855. }
  6856. },
  6857. {
  6858. "name": "drupal/pathologic",
  6859. "version": "1.0.0-alpha2",
  6860. "source": {
  6861. "type": "git",
  6862. "url": "https://git.drupalcode.org/project/pathologic.git",
  6863. "reference": "8.x-1.0-alpha2"
  6864. },
  6865. "dist": {
  6866. "type": "zip",
  6867. "url": "https://ftp.drupal.org/files/projects/pathologic-8.x-1.0-alpha2.zip",
  6868. "reference": "8.x-1.0-alpha2",
  6869. "shasum": "5b1b6846ab72e24a90dcd4cafbe855fba069e56b"
  6870. },
  6871. "require": {
  6872. "drupal/core": "^8 || ^9"
  6873. },
  6874. "type": "drupal-module",
  6875. "extra": {
  6876. "drupal": {
  6877. "version": "8.x-1.0-alpha2",
  6878. "datestamp": "1593911470",
  6879. "security-coverage": {
  6880. "status": "not-covered",
  6881. "message": "Alpha releases are not covered by Drupal security advisories."
  6882. }
  6883. }
  6884. },
  6885. "notification-url": "https://packages.drupal.org/8/downloads",
  6886. "license": [
  6887. "GPL-2.0-or-later"
  6888. ],
  6889. "authors": [
  6890. {
  6891. "name": "Berdir",
  6892. "homepage": "https://www.drupal.org/user/214652"
  6893. },
  6894. {
  6895. "name": "Garrett Albright",
  6896. "homepage": "https://www.drupal.org/user/191212"
  6897. },
  6898. {
  6899. "name": "dww",
  6900. "homepage": "https://www.drupal.org/user/46549"
  6901. }
  6902. ],
  6903. "description": "Helps avoid broken links and incorrect paths in content.",
  6904. "homepage": "https://www.drupal.org/project/pathologic",
  6905. "support": {
  6906. "source": "https://git.drupalcode.org/project/pathologic"
  6907. }
  6908. },
  6909. {
  6910. "name": "drupal/persistent_login",
  6911. "version": "1.3.0",
  6912. "source": {
  6913. "type": "git",
  6914. "url": "https://git.drupalcode.org/project/persistent_login.git",
  6915. "reference": "8.x-1.3"
  6916. },
  6917. "dist": {
  6918. "type": "zip",
  6919. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.3.zip",
  6920. "reference": "8.x-1.3",
  6921. "shasum": "dfff4cb76d6b3888073dd992bcf4d51b1bb47696"
  6922. },
  6923. "require": {
  6924. "drupal/core": "^8.3 || ^9.0"
  6925. },
  6926. "type": "drupal-module",
  6927. "extra": {
  6928. "drupal": {
  6929. "version": "8.x-1.3",
  6930. "datestamp": "1591597823",
  6931. "security-coverage": {
  6932. "status": "covered",
  6933. "message": "Covered by Drupal's security advisory policy"
  6934. }
  6935. }
  6936. },
  6937. "notification-url": "https://packages.drupal.org/8/downloads",
  6938. "license": [
  6939. "GPL-2.0-or-later"
  6940. ],
  6941. "authors": [
  6942. {
  6943. "name": "gapple",
  6944. "homepage": "https://www.drupal.org/user/490940"
  6945. }
  6946. ],
  6947. "description": "Provides a \"Remember Me\" feature on the login form.",
  6948. "homepage": "https://www.drupal.org/project/persistent_login",
  6949. "keywords": [
  6950. "Drupal"
  6951. ],
  6952. "support": {
  6953. "source": "https://git.drupalcode.org/project/persistent_login",
  6954. "issues": "https://www.drupal.org/project/issues/persistent_login"
  6955. }
  6956. },
  6957. {
  6958. "name": "drupal/profile",
  6959. "version": "1.2.0",
  6960. "source": {
  6961. "type": "git",
  6962. "url": "https://git.drupalcode.org/project/profile.git",
  6963. "reference": "8.x-1.2"
  6964. },
  6965. "dist": {
  6966. "type": "zip",
  6967. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.2.zip",
  6968. "reference": "8.x-1.2",
  6969. "shasum": "5ea5167ed6cc5b47761ea497fe20bae0fbea1cf2"
  6970. },
  6971. "require": {
  6972. "drupal/core": "^8.8 || ^9",
  6973. "drupal/entity": "^1.0-rc2"
  6974. },
  6975. "require-dev": {
  6976. "drupal/token": "^1.7"
  6977. },
  6978. "type": "drupal-module",
  6979. "extra": {
  6980. "drupal": {
  6981. "version": "8.x-1.2",
  6982. "datestamp": "1604422701",
  6983. "security-coverage": {
  6984. "status": "covered",
  6985. "message": "Covered by Drupal's security advisory policy"
  6986. }
  6987. }
  6988. },
  6989. "notification-url": "https://packages.drupal.org/8/downloads",
  6990. "license": [
  6991. "GPL-2.0-or-later"
  6992. ],
  6993. "authors": [
  6994. {
  6995. "name": "bojanz",
  6996. "homepage": "https://www.drupal.org/user/86106"
  6997. },
  6998. {
  6999. "name": "daggerhart",
  7000. "homepage": "https://www.drupal.org/user/167806"
  7001. },
  7002. {
  7003. "name": "fago",
  7004. "homepage": "https://www.drupal.org/user/16747"
  7005. },
  7006. {
  7007. "name": "jsacksick",
  7008. "homepage": "https://www.drupal.org/user/972218"
  7009. },
  7010. {
  7011. "name": "mglaman",
  7012. "homepage": "https://www.drupal.org/user/2416470"
  7013. },
  7014. {
  7015. "name": "pcambra",
  7016. "homepage": "https://www.drupal.org/user/122101"
  7017. }
  7018. ],
  7019. "description": "Provides configurable user profiles.",
  7020. "homepage": "http://drupal.org/project/profile",
  7021. "support": {
  7022. "source": "https://git.drupalcode.org/project/profile"
  7023. }
  7024. },
  7025. {
  7026. "name": "drupal/redirect",
  7027. "version": "1.6.0",
  7028. "source": {
  7029. "type": "git",
  7030. "url": "https://git.drupalcode.org/project/redirect.git",
  7031. "reference": "8.x-1.6"
  7032. },
  7033. "dist": {
  7034. "type": "zip",
  7035. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.6.zip",
  7036. "reference": "8.x-1.6",
  7037. "shasum": "f848e001deac8425ae57d4b9397087c491d37294"
  7038. },
  7039. "require": {
  7040. "drupal/core": "^8.8 || ^9"
  7041. },
  7042. "type": "drupal-module",
  7043. "extra": {
  7044. "drupal": {
  7045. "version": "8.x-1.6",
  7046. "datestamp": "1589312204",
  7047. "security-coverage": {
  7048. "status": "covered",
  7049. "message": "Covered by Drupal's security advisory policy"
  7050. }
  7051. }
  7052. },
  7053. "notification-url": "https://packages.drupal.org/8/downloads",
  7054. "license": [
  7055. "GPL-2.0-or-later"
  7056. ],
  7057. "authors": [
  7058. {
  7059. "name": "Berdir",
  7060. "homepage": "https://www.drupal.org/user/214652"
  7061. },
  7062. {
  7063. "name": "Dave Reid",
  7064. "homepage": "https://www.drupal.org/user/53892"
  7065. },
  7066. {
  7067. "name": "pifagor",
  7068. "homepage": "https://www.drupal.org/user/2375692"
  7069. }
  7070. ],
  7071. "description": "Allows users to redirect from old URLs to new URLs.",
  7072. "homepage": "https://www.drupal.org/project/redirect",
  7073. "support": {
  7074. "source": "https://git.drupalcode.org/project/redirect"
  7075. }
  7076. },
  7077. {
  7078. "name": "drupal/redirect_after_login",
  7079. "version": "2.7.0",
  7080. "source": {
  7081. "type": "git",
  7082. "url": "https://git.drupalcode.org/project/redirect_after_login.git",
  7083. "reference": "8.x-2.7"
  7084. },
  7085. "dist": {
  7086. "type": "zip",
  7087. "url": "https://ftp.drupal.org/files/projects/redirect_after_login-8.x-2.7.zip",
  7088. "reference": "8.x-2.7",
  7089. "shasum": "3ce87df792e918c2ec5a00e24818c893e558d111"
  7090. },
  7091. "require": {
  7092. "drupal/core": "^8 || ^9"
  7093. },
  7094. "type": "drupal-module",
  7095. "extra": {
  7096. "drupal": {
  7097. "version": "8.x-2.7",
  7098. "datestamp": "1611645039",
  7099. "security-coverage": {
  7100. "status": "covered",
  7101. "message": "Covered by Drupal's security advisory policy"
  7102. }
  7103. }
  7104. },
  7105. "notification-url": "https://packages.drupal.org/8/downloads",
  7106. "license": [
  7107. "GPL-2.0+"
  7108. ],
  7109. "authors": [
  7110. {
  7111. "name": "Shamsher Alam",
  7112. "homepage": "https://www.drupal.org/u/shamsher_alam",
  7113. "role": "Author"
  7114. },
  7115. {
  7116. "name": "pen",
  7117. "homepage": "https://www.drupal.org/user/2435634"
  7118. },
  7119. {
  7120. "name": "prempatel2447",
  7121. "homepage": "https://www.drupal.org/user/3250112"
  7122. },
  7123. {
  7124. "name": "rahul-kr-sh",
  7125. "homepage": "https://www.drupal.org/user/3561577"
  7126. }
  7127. ],
  7128. "description": "Redirect user after login to a configured url",
  7129. "homepage": "https://drupal.org/project/redirect_after_login",
  7130. "support": {
  7131. "source": "https://git.drupalcode.org/project/redirect_after_login"
  7132. }
  7133. },
  7134. {
  7135. "name": "drupal/redis",
  7136. "version": "1.5.0",
  7137. "source": {
  7138. "type": "git",
  7139. "url": "https://git.drupalcode.org/project/redis.git",
  7140. "reference": "8.x-1.5"
  7141. },
  7142. "dist": {
  7143. "type": "zip",
  7144. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.5.zip",
  7145. "reference": "8.x-1.5",
  7146. "shasum": "4283333dc2bf405045765b83ca662acc409a6543"
  7147. },
  7148. "require": {
  7149. "drupal/core": "^8.8 || ^9"
  7150. },
  7151. "suggest": {
  7152. "predis/predis": "^1.1.1"
  7153. },
  7154. "type": "drupal-module",
  7155. "extra": {
  7156. "drupal": {
  7157. "version": "8.x-1.5",
  7158. "datestamp": "1609972488",
  7159. "security-coverage": {
  7160. "status": "covered",
  7161. "message": "Covered by Drupal's security advisory policy"
  7162. }
  7163. }
  7164. },
  7165. "autoload": {
  7166. "psr-4": {
  7167. "Drupal\\redis\\": "src"
  7168. }
  7169. },
  7170. "notification-url": "https://packages.drupal.org/8/downloads",
  7171. "license": [
  7172. "GPL-2.0-or-later"
  7173. ],
  7174. "authors": [
  7175. {
  7176. "name": "Berdir",
  7177. "homepage": "https://www.drupal.org/user/214652"
  7178. },
  7179. {
  7180. "name": "pounard",
  7181. "homepage": "https://www.drupal.org/user/240164"
  7182. }
  7183. ],
  7184. "description": "Integration of Drupal with the Redis key-value store.",
  7185. "homepage": "https://www.drupal.org/project/redis",
  7186. "support": {
  7187. "source": "https://git.drupalcode.org/project/redis"
  7188. }
  7189. },
  7190. {
  7191. "name": "drupal/search_api",
  7192. "version": "1.19.0",
  7193. "source": {
  7194. "type": "git",
  7195. "url": "https://git.drupalcode.org/project/search_api.git",
  7196. "reference": "8.x-1.19"
  7197. },
  7198. "dist": {
  7199. "type": "zip",
  7200. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.19.zip",
  7201. "reference": "8.x-1.19",
  7202. "shasum": "5654e9d02117e28c585d89a25ea3cc40d20c5019"
  7203. },
  7204. "require": {
  7205. "drupal/core": "^8.8 || ^9"
  7206. },
  7207. "conflict": {
  7208. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  7209. },
  7210. "require-dev": {
  7211. "drupal/language_fallback_fix": "@dev",
  7212. "drupal/search_api_autocomplete": "@dev",
  7213. "drupal/search_api_db": "*"
  7214. },
  7215. "suggest": {
  7216. "drupal/facets": "Adds the ability to create faceted searches.",
  7217. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  7218. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  7219. },
  7220. "type": "drupal-module",
  7221. "extra": {
  7222. "drupal": {
  7223. "version": "8.x-1.19",
  7224. "datestamp": "1612192040",
  7225. "security-coverage": {
  7226. "status": "covered",
  7227. "message": "Covered by Drupal's security advisory policy"
  7228. }
  7229. },
  7230. "drush": {
  7231. "services": {
  7232. "drush.services.yml": "^9"
  7233. }
  7234. }
  7235. },
  7236. "notification-url": "https://packages.drupal.org/8/downloads",
  7237. "license": [
  7238. "GPL-2.0-or-later"
  7239. ],
  7240. "authors": [
  7241. {
  7242. "name": "Thomas Seidl",
  7243. "homepage": "https://www.drupal.org/u/drunken-monkey"
  7244. },
  7245. {
  7246. "name": "Nick Veenhof",
  7247. "homepage": "https://www.drupal.org/u/nick_vh"
  7248. },
  7249. {
  7250. "name": "See other contributors",
  7251. "homepage": "https://www.drupal.org/node/790418/committers"
  7252. }
  7253. ],
  7254. "description": "Provides a generic framework for modules offering search capabilities.",
  7255. "homepage": "https://www.drupal.org/project/search_api",
  7256. "support": {
  7257. "source": "https://git.drupalcode.org/project/search_api",
  7258. "issues": "https://www.drupal.org/project/issues/search_api",
  7259. "irc": "irc://irc.freenode.org/drupal-search-api"
  7260. }
  7261. },
  7262. {
  7263. "name": "drupal/search_api_db",
  7264. "version": "1.18.0",
  7265. "require": {
  7266. "drupal/core": "^8.8 || ^9",
  7267. "drupal/search_api": "*"
  7268. },
  7269. "type": "metapackage",
  7270. "extra": {
  7271. "drupal": {
  7272. "version": "8.x-1.18",
  7273. "datestamp": "1605204423",
  7274. "security-coverage": {
  7275. "status": "covered",
  7276. "message": "Covered by Drupal's security advisory policy"
  7277. }
  7278. }
  7279. },
  7280. "notification-url": "https://packages.drupal.org/8/downloads",
  7281. "license": [
  7282. "GPL-2.0-or-later"
  7283. ],
  7284. "authors": [
  7285. {
  7286. "name": "Nick_vh",
  7287. "homepage": "https://www.drupal.org/user/122682"
  7288. },
  7289. {
  7290. "name": "borisson_",
  7291. "homepage": "https://www.drupal.org/user/2393360"
  7292. },
  7293. {
  7294. "name": "drunken monkey",
  7295. "homepage": "https://www.drupal.org/user/205582"
  7296. }
  7297. ],
  7298. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  7299. "homepage": "https://www.drupal.org/project/search_api",
  7300. "support": {
  7301. "source": "https://git.drupalcode.org/project/search_api"
  7302. }
  7303. },
  7304. {
  7305. "name": "drupal/smart_trim",
  7306. "version": "1.3.0",
  7307. "source": {
  7308. "type": "git",
  7309. "url": "https://git.drupalcode.org/project/smart_trim.git",
  7310. "reference": "8.x-1.3"
  7311. },
  7312. "dist": {
  7313. "type": "zip",
  7314. "url": "https://ftp.drupal.org/files/projects/smart_trim-8.x-1.3.zip",
  7315. "reference": "8.x-1.3",
  7316. "shasum": "5894aa067fba19a3452ed8ce749f33bd9ae91907"
  7317. },
  7318. "require": {
  7319. "drupal/core": "^8 || ^9"
  7320. },
  7321. "type": "drupal-module",
  7322. "extra": {
  7323. "drupal": {
  7324. "version": "8.x-1.3",
  7325. "datestamp": "1589766531",
  7326. "security-coverage": {
  7327. "status": "covered",
  7328. "message": "Covered by Drupal's security advisory policy"
  7329. }
  7330. }
  7331. },
  7332. "notification-url": "https://packages.drupal.org/8/downloads",
  7333. "license": [
  7334. "GPL-2.0-or-later"
  7335. ],
  7336. "authors": [
  7337. {
  7338. "name": "Mark Casias (markie)",
  7339. "homepage": "https://www.drupal.org/u/markie",
  7340. "role": "Maintainer"
  7341. },
  7342. {
  7343. "name": "chrisjlee",
  7344. "homepage": "https://www.drupal.org/user/760600"
  7345. },
  7346. {
  7347. "name": "drywall",
  7348. "homepage": "https://www.drupal.org/user/192591"
  7349. },
  7350. {
  7351. "name": "jsenich",
  7352. "homepage": "https://www.drupal.org/user/58871"
  7353. },
  7354. {
  7355. "name": "markie",
  7356. "homepage": "https://www.drupal.org/user/206687"
  7357. },
  7358. {
  7359. "name": "newsignature",
  7360. "homepage": "https://www.drupal.org/user/765518"
  7361. }
  7362. ],
  7363. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  7364. "homepage": "https://drupal.org/project/smart_trim",
  7365. "support": {
  7366. "source": "https://cgit.drupalcode.org/smart_trim",
  7367. "issues": "https://drupal.org/project/issues/smart_trim"
  7368. }
  7369. },
  7370. {
  7371. "name": "drupal/smtp",
  7372. "version": "1.0.0",
  7373. "source": {
  7374. "type": "git",
  7375. "url": "https://git.drupalcode.org/project/smtp.git",
  7376. "reference": "8.x-1.0"
  7377. },
  7378. "dist": {
  7379. "type": "zip",
  7380. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.0.zip",
  7381. "reference": "8.x-1.0",
  7382. "shasum": "c40cc7a3c20d3f743e3a4e53f4cc296748da89fd"
  7383. },
  7384. "require": {
  7385. "drupal/core": "^8.8 || ^9",
  7386. "phpmailer/phpmailer": "^6.1.7"
  7387. },
  7388. "suggest": {
  7389. "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
  7390. },
  7391. "type": "drupal-module",
  7392. "extra": {
  7393. "drupal": {
  7394. "version": "8.x-1.0",
  7395. "datestamp": "1601070985",
  7396. "security-coverage": {
  7397. "status": "covered",
  7398. "message": "Covered by Drupal's security advisory policy"
  7399. }
  7400. },
  7401. "branch-alias": {
  7402. "dev-8.x-1.x": "1.x-dev"
  7403. }
  7404. },
  7405. "notification-url": "https://packages.drupal.org/8/downloads",
  7406. "license": [
  7407. "GPL-2.0-or-later"
  7408. ],
  7409. "authors": [
  7410. {
  7411. "name": "LukeLast",
  7412. "homepage": "https://www.drupal.org/user/30151"
  7413. },
  7414. {
  7415. "name": "japerry",
  7416. "homepage": "https://www.drupal.org/user/45640"
  7417. },
  7418. {
  7419. "name": "josesanmartin",
  7420. "homepage": "https://www.drupal.org/user/72012"
  7421. },
  7422. {
  7423. "name": "oadaeh",
  7424. "homepage": "https://www.drupal.org/user/4649"
  7425. },
  7426. {
  7427. "name": "sadashiv",
  7428. "homepage": "https://www.drupal.org/user/1773304"
  7429. },
  7430. {
  7431. "name": "wundo",
  7432. "homepage": "https://www.drupal.org/user/25523"
  7433. },
  7434. {
  7435. "name": "yettyn",
  7436. "homepage": "https://www.drupal.org/user/93281"
  7437. }
  7438. ],
  7439. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  7440. "homepage": "https://www.drupal.org/project/smtp",
  7441. "support": {
  7442. "source": "https://git.drupalcode.org/project/smtp",
  7443. "issues": "https://www.drupal.org/project/issues/smtp"
  7444. }
  7445. },
  7446. {
  7447. "name": "drupal/sophron",
  7448. "version": "1.1.0",
  7449. "source": {
  7450. "type": "git",
  7451. "url": "https://git.drupalcode.org/project/sophron.git",
  7452. "reference": "8.x-1.1"
  7453. },
  7454. "dist": {
  7455. "type": "zip",
  7456. "url": "https://ftp.drupal.org/files/projects/sophron-8.x-1.1.zip",
  7457. "reference": "8.x-1.1",
  7458. "shasum": "afb3650458b15b87918471defa763f24880622ca"
  7459. },
  7460. "require": {
  7461. "drupal/core": "^8.9 || ^9",
  7462. "fileeye/mimemap": "^1.1.4",
  7463. "php": ">=7.1"
  7464. },
  7465. "type": "drupal-module",
  7466. "extra": {
  7467. "drupal": {
  7468. "version": "8.x-1.1",
  7469. "datestamp": "1606047077",
  7470. "security-coverage": {
  7471. "status": "covered",
  7472. "message": "Covered by Drupal's security advisory policy"
  7473. }
  7474. }
  7475. },
  7476. "autoload": {
  7477. "psr-4": {
  7478. "Drupal\\sophron\\": "src/"
  7479. }
  7480. },
  7481. "notification-url": "https://packages.drupal.org/8/downloads",
  7482. "license": [
  7483. "GPL-2.0-or-later"
  7484. ],
  7485. "authors": [
  7486. {
  7487. "name": "mondrake",
  7488. "homepage": "https://www.drupal.org/user/1307444"
  7489. }
  7490. ],
  7491. "description": "Provides an extensive MIME types management API",
  7492. "homepage": "https://www.drupal.org/project/sophron",
  7493. "support": {
  7494. "source": "https://git.drupalcode.org/project/sophron"
  7495. }
  7496. },
  7497. {
  7498. "name": "drupal/synonyms",
  7499. "version": "dev-1.x",
  7500. "source": {
  7501. "type": "git",
  7502. "url": "https://git.drupalcode.org/project/synonyms.git",
  7503. "reference": "487a41e2b4d4c4a5f161852cbd46178edb954d5d"
  7504. },
  7505. "require": {
  7506. "drupal/core": "^8 || ^9"
  7507. },
  7508. "type": "drupal-module",
  7509. "extra": {
  7510. "branch-alias": {
  7511. "dev-1.x": "1.x-dev"
  7512. },
  7513. "drupal": {
  7514. "version": "8.x-1.0-alpha1+23-dev",
  7515. "datestamp": "1607727823",
  7516. "security-coverage": {
  7517. "status": "not-covered",
  7518. "message": "Dev releases are not covered by Drupal security advisories."
  7519. }
  7520. }
  7521. },
  7522. "notification-url": "https://packages.drupal.org/8/downloads",
  7523. "license": [
  7524. "GPL-2.0-or-later"
  7525. ],
  7526. "authors": [
  7527. {
  7528. "name": "Zen",
  7529. "homepage": "https://www.drupal.org/user/21209"
  7530. },
  7531. {
  7532. "name": "bojanz",
  7533. "homepage": "https://www.drupal.org/user/86106"
  7534. },
  7535. {
  7536. "name": "bucefal91",
  7537. "homepage": "https://www.drupal.org/user/504128"
  7538. },
  7539. {
  7540. "name": "devad",
  7541. "homepage": "https://www.drupal.org/user/2268520"
  7542. }
  7543. ],
  7544. "description": "Provides synonyms feature for content entities.",
  7545. "homepage": "https://www.drupal.org/project/synonyms",
  7546. "support": {
  7547. "source": "https://git.drupalcode.org/project/synonyms"
  7548. },
  7549. "time": "2020-12-11T23:17:33+00:00"
  7550. },
  7551. {
  7552. "name": "drupal/taxonomy_unique",
  7553. "version": "2.3.0",
  7554. "source": {
  7555. "type": "git",
  7556. "url": "https://git.drupalcode.org/project/taxonomy_unique.git",
  7557. "reference": "8.x-2.3"
  7558. },
  7559. "dist": {
  7560. "type": "zip",
  7561. "url": "https://ftp.drupal.org/files/projects/taxonomy_unique-8.x-2.3.zip",
  7562. "reference": "8.x-2.3",
  7563. "shasum": "550d06d5b9c670538b93e0aa31b43b4eb1a76f7e"
  7564. },
  7565. "require": {
  7566. "drupal/core": "^8 || ^9"
  7567. },
  7568. "require-dev": {
  7569. "drupal/coder": "^8.3.6",
  7570. "squizlabs/php_codesniffer": "^3.4.1"
  7571. },
  7572. "type": "drupal-module",
  7573. "extra": {
  7574. "drupal": {
  7575. "version": "8.x-2.3",
  7576. "datestamp": "1591087096",
  7577. "security-coverage": {
  7578. "status": "covered",
  7579. "message": "Covered by Drupal's security advisory policy"
  7580. }
  7581. }
  7582. },
  7583. "notification-url": "https://packages.drupal.org/8/downloads",
  7584. "scripts": {
  7585. "post-install-cmd": [
  7586. "./vendor/bin/phpcs --config-set installed_paths ../../drupal/coder/coder_sniffer",
  7587. "./vendor/bin/phpcs --config-set show_progress 1"
  7588. ],
  7589. "post-update-cmd": [
  7590. "./vendor/bin/phpcs --config-set installed_paths ../../drupal/coder/coder_sniffer",
  7591. "./vendor/bin/phpcs --config-set show_progress 1"
  7592. ],
  7593. "phpcs": [
  7594. "./vendor/bin/phpcs --standard=Drupal,DrupalPractice ./ --ignore=./vendor"
  7595. ],
  7596. "phpcbf": [
  7597. "./vendor/bin/phpcbf --standard=Drupal,DrupalPractice ./ --ignore=./vendor"
  7598. ]
  7599. },
  7600. "license": [
  7601. "GPL-2.0+"
  7602. ],
  7603. "authors": [
  7604. {
  7605. "name": "Rafael Schally",
  7606. "homepage": "https://www.drupal.org/user/856550",
  7607. "email": "rafael.schally@gmail.com"
  7608. }
  7609. ],
  7610. "description": "Checks for duplicate occurrences of term names.",
  7611. "homepage": "https://www.drupal.org/project/taxonomy_unique",
  7612. "keywords": [
  7613. "drupal",
  7614. "taxonomy",
  7615. "ui"
  7616. ],
  7617. "support": {
  7618. "source": "https://git.drupalcode.org/project/taxonomy_unique"
  7619. }
  7620. },
  7621. {
  7622. "name": "drupal/token",
  7623. "version": "1.9.0",
  7624. "source": {
  7625. "type": "git",
  7626. "url": "https://git.drupalcode.org/project/token.git",
  7627. "reference": "8.x-1.9"
  7628. },
  7629. "dist": {
  7630. "type": "zip",
  7631. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.9.zip",
  7632. "reference": "8.x-1.9",
  7633. "shasum": "a5d234382a1a0e4ba61d4c7a2fa10671ca656be4"
  7634. },
  7635. "require": {
  7636. "drupal/core": "^8.8 || ^9"
  7637. },
  7638. "type": "drupal-module",
  7639. "extra": {
  7640. "drupal": {
  7641. "version": "8.x-1.9",
  7642. "datestamp": "1608284866",
  7643. "security-coverage": {
  7644. "status": "covered",
  7645. "message": "Covered by Drupal's security advisory policy"
  7646. }
  7647. },
  7648. "drush": {
  7649. "services": {
  7650. "drush.services.yml": "^9 || ^10"
  7651. }
  7652. }
  7653. },
  7654. "notification-url": "https://packages.drupal.org/8/downloads",
  7655. "license": [
  7656. "GPL-2.0-or-later"
  7657. ],
  7658. "authors": [
  7659. {
  7660. "name": "Berdir",
  7661. "homepage": "https://www.drupal.org/user/214652"
  7662. },
  7663. {
  7664. "name": "Dave Reid",
  7665. "homepage": "https://www.drupal.org/user/53892"
  7666. },
  7667. {
  7668. "name": "eaton",
  7669. "homepage": "https://www.drupal.org/user/16496"
  7670. },
  7671. {
  7672. "name": "fago",
  7673. "homepage": "https://www.drupal.org/user/16747"
  7674. },
  7675. {
  7676. "name": "greggles",
  7677. "homepage": "https://www.drupal.org/user/36762"
  7678. },
  7679. {
  7680. "name": "mikeryan",
  7681. "homepage": "https://www.drupal.org/user/4420"
  7682. }
  7683. ],
  7684. "description": "Provides a user interface for the Token API, some missing core tokens.",
  7685. "homepage": "https://www.drupal.org/project/token",
  7686. "support": {
  7687. "source": "https://git.drupalcode.org/project/token"
  7688. }
  7689. },
  7690. {
  7691. "name": "drupal/translation_views",
  7692. "version": "1.0.0-alpha10",
  7693. "source": {
  7694. "type": "git",
  7695. "url": "https://git.drupalcode.org/project/translation_views.git",
  7696. "reference": "8.x-1.0-alpha10"
  7697. },
  7698. "dist": {
  7699. "type": "zip",
  7700. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha10.zip",
  7701. "reference": "8.x-1.0-alpha10",
  7702. "shasum": "ca1a6d4bf16293b1b094db6439f9f065de1dbbd5"
  7703. },
  7704. "require": {
  7705. "drupal/core": "^8.8 || ^9"
  7706. },
  7707. "require-dev": {
  7708. "drupal/translators": "*",
  7709. "drupal/translators_content": "*"
  7710. },
  7711. "type": "drupal-module",
  7712. "extra": {
  7713. "drupal": {
  7714. "version": "8.x-1.0-alpha10",
  7715. "datestamp": "1584303687",
  7716. "security-coverage": {
  7717. "status": "not-covered",
  7718. "message": "Project has not opted into security advisory coverage!"
  7719. }
  7720. }
  7721. },
  7722. "notification-url": "https://packages.drupal.org/8/downloads",
  7723. "license": [
  7724. "GPL-2.0-or-later"
  7725. ],
  7726. "authors": [
  7727. {
  7728. "name": "matsbla",
  7729. "homepage": "https://www.drupal.org/user/2325394"
  7730. },
  7731. {
  7732. "name": "vlad.dancer",
  7733. "homepage": "https://www.drupal.org/user/903844"
  7734. }
  7735. ],
  7736. "description": "Create customized lists and queries of translations from your database.",
  7737. "homepage": "https://www.drupal.org/project/translation_views",
  7738. "support": {
  7739. "source": "https://git.drupalcode.org/project/translation_views"
  7740. }
  7741. },
  7742. {
  7743. "name": "drupal/typed_data",
  7744. "version": "dev-1.x",
  7745. "source": {
  7746. "type": "git",
  7747. "url": "https://git.drupalcode.org/project/typed_data.git",
  7748. "reference": "27555f47b522730d04f3b33c9a46c0acbcb3146e"
  7749. },
  7750. "require": {
  7751. "drupal/core": "^8.8.2 || ^9"
  7752. },
  7753. "type": "drupal-module",
  7754. "extra": {
  7755. "branch-alias": {
  7756. "dev-1.x": "1.x-dev"
  7757. },
  7758. "drupal": {
  7759. "version": "8.x-1.0-alpha5+21-dev",
  7760. "datestamp": "1600719315",
  7761. "security-coverage": {
  7762. "status": "not-covered",
  7763. "message": "Dev releases are not covered by Drupal security advisories."
  7764. }
  7765. },
  7766. "drush": {
  7767. "services": {
  7768. "drush.services.yml": "^9 || ^10"
  7769. }
  7770. }
  7771. },
  7772. "notification-url": "https://packages.drupal.org/8/downloads",
  7773. "license": [
  7774. "GPL-2.0-or-later"
  7775. ],
  7776. "authors": [
  7777. {
  7778. "name": "TR",
  7779. "homepage": "https://www.drupal.org/user/202830"
  7780. },
  7781. {
  7782. "name": "fago",
  7783. "homepage": "https://www.drupal.org/user/16747"
  7784. }
  7785. ],
  7786. "description": "Extends the core Typed Data API with new APIs and features.",
  7787. "homepage": "https://www.drupal.org/project/typed_data",
  7788. "support": {
  7789. "source": "https://git.drupalcode.org/project/typed_data",
  7790. "issues": "https://www.drupal.org/project/issues/typed_data"
  7791. },
  7792. "time": "2020-10-30T06:56:14+00:00"
  7793. },
  7794. {
  7795. "name": "drupal/ultimate_cron",
  7796. "version": "2.0.0-alpha5",
  7797. "source": {
  7798. "type": "git",
  7799. "url": "https://git.drupalcode.org/project/ultimate_cron.git",
  7800. "reference": "8.x-2.0-alpha5"
  7801. },
  7802. "dist": {
  7803. "type": "zip",
  7804. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha5.zip",
  7805. "reference": "8.x-2.0-alpha5",
  7806. "shasum": "0f10464fff29eca89024e7afa5b6d8d07bd52f75"
  7807. },
  7808. "require": {
  7809. "drupal/core": "^8.7.7 || ^9"
  7810. },
  7811. "type": "drupal-module",
  7812. "extra": {
  7813. "drupal": {
  7814. "version": "8.x-2.0-alpha5",
  7815. "datestamp": "1600928948",
  7816. "security-coverage": {
  7817. "status": "not-covered",
  7818. "message": "Alpha releases are not covered by Drupal security advisories."
  7819. }
  7820. },
  7821. "drush": {
  7822. "services": {
  7823. "drush.services.yml": "^9 || ^10"
  7824. }
  7825. }
  7826. },
  7827. "notification-url": "https://packages.drupal.org/8/downloads",
  7828. "license": [
  7829. "GPL-2.0+"
  7830. ],
  7831. "authors": [
  7832. {
  7833. "name": "Berdir",
  7834. "homepage": "https://www.drupal.org/user/214652"
  7835. },
  7836. {
  7837. "name": "Dane Powell",
  7838. "homepage": "https://www.drupal.org/user/339326"
  7839. },
  7840. {
  7841. "name": "Primsi",
  7842. "homepage": "https://www.drupal.org/user/282629"
  7843. },
  7844. {
  7845. "name": "arnested",
  7846. "homepage": "https://www.drupal.org/user/245635"
  7847. },
  7848. {
  7849. "name": "gielfeldt",
  7850. "homepage": "https://www.drupal.org/user/366993"
  7851. },
  7852. {
  7853. "name": "miro_dietiker",
  7854. "homepage": "https://www.drupal.org/user/227761"
  7855. }
  7856. ],
  7857. "description": "Ultimate cron",
  7858. "homepage": "https://www.drupal.org/project/ultimate_cron",
  7859. "support": {
  7860. "source": "https://git.drupalcode.org/project/ultimate_cron"
  7861. }
  7862. },
  7863. {
  7864. "name": "drupal/url_to_video_filter",
  7865. "version": "2.0.0",
  7866. "source": {
  7867. "type": "git",
  7868. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  7869. "reference": "2.0.0"
  7870. },
  7871. "dist": {
  7872. "type": "zip",
  7873. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-2.0.0.zip",
  7874. "reference": "2.0.0",
  7875. "shasum": "ac728919cc220846d8ef2ce61dbe1b94fbbf479b"
  7876. },
  7877. "require": {
  7878. "drupal/core": "^8 || ^9"
  7879. },
  7880. "type": "drupal-module",
  7881. "extra": {
  7882. "drupal": {
  7883. "version": "2.0.0",
  7884. "datestamp": "1607298389",
  7885. "security-coverage": {
  7886. "status": "covered",
  7887. "message": "Covered by Drupal's security advisory policy"
  7888. }
  7889. }
  7890. },
  7891. "notification-url": "https://packages.drupal.org/8/downloads",
  7892. "license": [
  7893. "GPL-2.0-or-later"
  7894. ],
  7895. "authors": [
  7896. {
  7897. "name": "Jaypan",
  7898. "homepage": "https://www.drupal.org/user/324696"
  7899. }
  7900. ],
  7901. "description": "Text filter to convert URLs to embedded videos",
  7902. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  7903. "support": {
  7904. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  7905. }
  7906. },
  7907. {
  7908. "name": "drupal/video_embed_field",
  7909. "version": "2.4.0",
  7910. "source": {
  7911. "type": "git",
  7912. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  7913. "reference": "8.x-2.4"
  7914. },
  7915. "dist": {
  7916. "type": "zip",
  7917. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.4.zip",
  7918. "reference": "8.x-2.4",
  7919. "shasum": "96b14bb93c1bb6a07b84315a4f87367870f8b574"
  7920. },
  7921. "require": {
  7922. "drupal/core": "^8.8 || ^9"
  7923. },
  7924. "require-dev": {
  7925. "drupal/colorbox": "^1.0",
  7926. "drupal/video_embed_media": "*"
  7927. },
  7928. "type": "drupal-module",
  7929. "extra": {
  7930. "drupal": {
  7931. "version": "8.x-2.4",
  7932. "datestamp": "1587686337",
  7933. "security-coverage": {
  7934. "status": "covered",
  7935. "message": "Covered by Drupal's security advisory policy"
  7936. }
  7937. }
  7938. },
  7939. "notification-url": "https://packages.drupal.org/8/downloads",
  7940. "license": [
  7941. "GPL-2.0+"
  7942. ],
  7943. "authors": [
  7944. {
  7945. "name": "Sam152",
  7946. "homepage": "https://www.drupal.org/user/1485048"
  7947. },
  7948. {
  7949. "name": "jec006",
  7950. "homepage": "https://www.drupal.org/user/855980"
  7951. },
  7952. {
  7953. "name": "plopesc",
  7954. "homepage": "https://www.drupal.org/user/282415"
  7955. }
  7956. ],
  7957. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  7958. "homepage": "https://www.drupal.org/project/video_embed_field",
  7959. "support": {
  7960. "source": "https://git.drupalcode.org/project/video_embed_field"
  7961. }
  7962. },
  7963. {
  7964. "name": "drupal/views_autocomplete_filters",
  7965. "version": "1.3.0",
  7966. "source": {
  7967. "type": "git",
  7968. "url": "https://git.drupalcode.org/project/views_autocomplete_filters.git",
  7969. "reference": "8.x-1.3"
  7970. },
  7971. "dist": {
  7972. "type": "zip",
  7973. "url": "https://ftp.drupal.org/files/projects/views_autocomplete_filters-8.x-1.3.zip",
  7974. "reference": "8.x-1.3",
  7975. "shasum": "55762182e55c70f117d5edb8692049e0881ec4ce"
  7976. },
  7977. "require": {
  7978. "drupal/core": "^8 || ^9"
  7979. },
  7980. "type": "drupal-module",
  7981. "extra": {
  7982. "drupal": {
  7983. "version": "8.x-1.3",
  7984. "datestamp": "1587146330",
  7985. "security-coverage": {
  7986. "status": "covered",
  7987. "message": "Covered by Drupal's security advisory policy"
  7988. }
  7989. }
  7990. },
  7991. "notification-url": "https://packages.drupal.org/8/downloads",
  7992. "license": [
  7993. "GPL-2.0-or-later"
  7994. ],
  7995. "authors": [
  7996. {
  7997. "name": "RobLoach",
  7998. "homepage": "https://www.drupal.org/user/61114"
  7999. },
  8000. {
  8001. "name": "colan",
  8002. "homepage": "https://www.drupal.org/user/58704"
  8003. },
  8004. {
  8005. "name": "vasike",
  8006. "homepage": "https://www.drupal.org/user/156237"
  8007. }
  8008. ],
  8009. "description": "Add autocomplete functionality to the views filter text fields.",
  8010. "homepage": "https://www.drupal.org/project/views_autocomplete_filters",
  8011. "keywords": [
  8012. "Drupal",
  8013. "views_autocomplete_filters"
  8014. ],
  8015. "support": {
  8016. "source": "https://git.drupalcode.org/project/views_autocomplete_filters",
  8017. "issues": "https://www.drupal.org/project/issues/views_autocomplete_filters"
  8018. }
  8019. },
  8020. {
  8021. "name": "drupal/views_bulk_edit",
  8022. "version": "2.5.0",
  8023. "source": {
  8024. "type": "git",
  8025. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  8026. "reference": "8.x-2.5"
  8027. },
  8028. "dist": {
  8029. "type": "zip",
  8030. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.5.zip",
  8031. "reference": "8.x-2.5",
  8032. "shasum": "5f268f532e070fd3d1bffcb135d90f395f303a37"
  8033. },
  8034. "require": {
  8035. "drupal/core": "^8 || ^9"
  8036. },
  8037. "require-dev": {
  8038. "drupal/views_bulk_operations": "~3.0"
  8039. },
  8040. "suggest": {
  8041. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  8042. },
  8043. "type": "drupal-module",
  8044. "extra": {
  8045. "drupal": {
  8046. "version": "8.x-2.5",
  8047. "datestamp": "1606726163",
  8048. "security-coverage": {
  8049. "status": "covered",
  8050. "message": "Covered by Drupal's security advisory policy"
  8051. }
  8052. }
  8053. },
  8054. "notification-url": "https://packages.drupal.org/8/downloads",
  8055. "license": [
  8056. "GPL-2.0+"
  8057. ],
  8058. "authors": [
  8059. {
  8060. "name": "Marcin Grabias",
  8061. "homepage": "https://www.drupal.org/u/graber"
  8062. },
  8063. {
  8064. "name": "benjy",
  8065. "homepage": "https://www.drupal.org/user/1852732"
  8066. }
  8067. ],
  8068. "description": "Allows bulk edition of entity field values.",
  8069. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  8070. "support": {
  8071. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  8072. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  8073. }
  8074. },
  8075. {
  8076. "name": "drupal/views_bulk_operations",
  8077. "version": "3.10.0",
  8078. "source": {
  8079. "type": "git",
  8080. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  8081. "reference": "8.x-3.10"
  8082. },
  8083. "dist": {
  8084. "type": "zip",
  8085. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.10.zip",
  8086. "reference": "8.x-3.10",
  8087. "shasum": "e346c2a72fc9a1ae8af418e6a02076f52c0fcc7b"
  8088. },
  8089. "require": {
  8090. "drupal/core": "^8.8 || ^9"
  8091. },
  8092. "require-dev": {
  8093. "drush/drush": "^10"
  8094. },
  8095. "suggest": {
  8096. "drush/drush": "^9 || ^10"
  8097. },
  8098. "type": "drupal-module",
  8099. "extra": {
  8100. "drupal": {
  8101. "version": "8.x-3.10",
  8102. "datestamp": "1608795018",
  8103. "security-coverage": {
  8104. "status": "covered",
  8105. "message": "Covered by Drupal's security advisory policy"
  8106. }
  8107. },
  8108. "drush": {
  8109. "services": {
  8110. "drush.services.yml": "^9 || ^10"
  8111. }
  8112. }
  8113. },
  8114. "notification-url": "https://packages.drupal.org/8/downloads",
  8115. "license": [
  8116. "GPL-2.0-or-later"
  8117. ],
  8118. "authors": [
  8119. {
  8120. "name": "Marcin Grabias",
  8121. "homepage": "https://www.drupal.org/u/graber"
  8122. },
  8123. {
  8124. "name": "Jon Pugh",
  8125. "homepage": "https://www.drupal.org/user/17028"
  8126. },
  8127. {
  8128. "name": "bojanz",
  8129. "homepage": "https://www.drupal.org/user/86106"
  8130. },
  8131. {
  8132. "name": "infojunkie",
  8133. "homepage": "https://www.drupal.org/user/48424"
  8134. },
  8135. {
  8136. "name": "joelpittet",
  8137. "homepage": "https://www.drupal.org/user/160302"
  8138. }
  8139. ],
  8140. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  8141. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  8142. "support": {
  8143. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  8144. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  8145. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  8146. }
  8147. },
  8148. {
  8149. "name": "drupal/views_ef_fieldset",
  8150. "version": "1.5.0",
  8151. "source": {
  8152. "type": "git",
  8153. "url": "https://git.drupalcode.org/project/views_ef_fieldset.git",
  8154. "reference": "8.x-1.5"
  8155. },
  8156. "dist": {
  8157. "type": "zip",
  8158. "url": "https://ftp.drupal.org/files/projects/views_ef_fieldset-8.x-1.5.zip",
  8159. "reference": "8.x-1.5",
  8160. "shasum": "72ca0b63028d0fe65e13c8472546a8803aa0d079"
  8161. },
  8162. "require": {
  8163. "drupal/core": "^8 || ^9",
  8164. "php": ">=7"
  8165. },
  8166. "type": "drupal-module",
  8167. "extra": {
  8168. "drupal": {
  8169. "version": "8.x-1.5",
  8170. "datestamp": "1604567512",
  8171. "security-coverage": {
  8172. "status": "covered",
  8173. "message": "Covered by Drupal's security advisory policy"
  8174. }
  8175. },
  8176. "composer-exit-on-patch-failure": true,
  8177. "enable-patching": true,
  8178. "patches": {
  8179. "drupal/core": {
  8180. "https://www.drupal.org/project/drupal/issues/2943172": "https://www.drupal.org/files/issues/2018-07-05/2943172-kernel-test-base-3.patch"
  8181. }
  8182. }
  8183. },
  8184. "autoload-dev": {
  8185. "psr-4": {
  8186. "Drupal\\Tests\\views_ef_fieldset\\": "./tests/"
  8187. }
  8188. },
  8189. "notification-url": "https://packages.drupal.org/8/downloads",
  8190. "scripts": {
  8191. "grumphp": [
  8192. "./vendor/bin/grumphp run"
  8193. ]
  8194. },
  8195. "license": [
  8196. "GPL-2.0+"
  8197. ],
  8198. "authors": [
  8199. {
  8200. "name": "Pol Dellaiera",
  8201. "homepage": "https://www.drupal.org/user/47194",
  8202. "email": "pol.dellaiera@protonmail.com"
  8203. },
  8204. {
  8205. "name": "ciss",
  8206. "homepage": "https://www.drupal.org/user/1632364"
  8207. }
  8208. ],
  8209. "description": "Provide an option to render the 'exposed form widgets' in a fieldset.",
  8210. "homepage": "https://drupal.org/project/views_field_formatter",
  8211. "support": {
  8212. "source": "https://git.drupalcode.org/project/views_ef_fieldset"
  8213. }
  8214. },
  8215. {
  8216. "name": "drush/drush",
  8217. "version": "10.3.6",
  8218. "source": {
  8219. "type": "git",
  8220. "url": "https://github.com/drush-ops/drush.git",
  8221. "reference": "fc985a95c6010e04891a2dbcf3f39984b8c9ef0a"
  8222. },
  8223. "dist": {
  8224. "type": "zip",
  8225. "url": "https://api.github.com/repos/drush-ops/drush/zipball/fc985a95c6010e04891a2dbcf3f39984b8c9ef0a",
  8226. "reference": "fc985a95c6010e04891a2dbcf3f39984b8c9ef0a",
  8227. "shasum": ""
  8228. },
  8229. "require": {
  8230. "chi-teck/drupal-code-generator": "^1.32.1",
  8231. "composer/semver": "^1.4 || ^3",
  8232. "consolidation/config": "^1.2",
  8233. "consolidation/filter-via-dot-access-data": "^1",
  8234. "consolidation/robo": "^1.4.11 || ^2",
  8235. "consolidation/site-alias": "^3.0.0@stable",
  8236. "consolidation/site-process": "^2.1 || ^4",
  8237. "ext-dom": "*",
  8238. "grasmash/yaml-expander": "^1.1.1",
  8239. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  8240. "league/container": "~2",
  8241. "php": ">=7.1.3",
  8242. "psr/log": "~1.0",
  8243. "psy/psysh": "~0.6",
  8244. "symfony/event-dispatcher": "^3.4 || ^4.0",
  8245. "symfony/finder": "^3.4 || ^4.0 || ^5",
  8246. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0",
  8247. "symfony/yaml": "^3.4 || ^4.0",
  8248. "webflo/drupal-finder": "^1.2",
  8249. "webmozart/path-util": "^2.1.0"
  8250. },
  8251. "require-dev": {
  8252. "composer/installers": "^1.7",
  8253. "cweagans/composer-patches": "~1.0",
  8254. "david-garcia/phpwhois": "4.3.0",
  8255. "drupal/alinks": "1.0.0",
  8256. "drupal/core-recommended": "^8.8",
  8257. "lox/xhprof": "dev-master",
  8258. "phpunit/phpunit": "^4.8.36 || ^6.1",
  8259. "squizlabs/php_codesniffer": "^2.7 || ^3",
  8260. "vlucas/phpdotenv": "^2.4"
  8261. },
  8262. "bin": [
  8263. "drush"
  8264. ],
  8265. "type": "library",
  8266. "extra": {
  8267. "installer-paths": {
  8268. "sut/core": [
  8269. "type:drupal-core"
  8270. ],
  8271. "sut/libraries/{$name}": [
  8272. "type:drupal-library"
  8273. ],
  8274. "sut/modules/unish/{$name}": [
  8275. "drupal/devel"
  8276. ],
  8277. "sut/themes/unish/{$name}": [
  8278. "drupal/empty_theme"
  8279. ],
  8280. "sut/modules/contrib/{$name}": [
  8281. "type:drupal-module"
  8282. ],
  8283. "sut/profiles/contrib/{$name}": [
  8284. "type:drupal-profile"
  8285. ],
  8286. "sut/themes/contrib/{$name}": [
  8287. "type:drupal-theme"
  8288. ],
  8289. "sut/drush/contrib/{$name}": [
  8290. "type:drupal-drush"
  8291. ]
  8292. }
  8293. },
  8294. "autoload": {
  8295. "psr-4": {
  8296. "Drush\\": "src/",
  8297. "Drush\\Internal\\": "src/internal-forks"
  8298. }
  8299. },
  8300. "notification-url": "https://packagist.org/downloads/",
  8301. "license": [
  8302. "GPL-2.0-or-later"
  8303. ],
  8304. "authors": [
  8305. {
  8306. "name": "Moshe Weitzman",
  8307. "email": "weitzman@tejasa.com"
  8308. },
  8309. {
  8310. "name": "Owen Barton",
  8311. "email": "drupal@owenbarton.com"
  8312. },
  8313. {
  8314. "name": "Greg Anderson",
  8315. "email": "greg.1.anderson@greenknowe.org"
  8316. },
  8317. {
  8318. "name": "Jonathan Araña Cruz",
  8319. "email": "jonhattan@faita.net"
  8320. },
  8321. {
  8322. "name": "Jonathan Hedstrom",
  8323. "email": "jhedstrom@gmail.com"
  8324. },
  8325. {
  8326. "name": "Christopher Gervais",
  8327. "email": "chris@ergonlogic.com"
  8328. },
  8329. {
  8330. "name": "Dave Reid",
  8331. "email": "dave@davereid.net"
  8332. },
  8333. {
  8334. "name": "Damian Lee",
  8335. "email": "damiankloip@googlemail.com"
  8336. }
  8337. ],
  8338. "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.",
  8339. "homepage": "http://www.drush.org",
  8340. "funding": [
  8341. {
  8342. "url": "https://github.com/weitzman",
  8343. "type": "github"
  8344. }
  8345. ],
  8346. "time": "2020-11-11T04:36:51+00:00"
  8347. },
  8348. {
  8349. "name": "egulias/email-validator",
  8350. "version": "2.1.22",
  8351. "source": {
  8352. "type": "git",
  8353. "url": "https://github.com/egulias/EmailValidator.git",
  8354. "reference": "68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5"
  8355. },
  8356. "dist": {
  8357. "type": "zip",
  8358. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5",
  8359. "reference": "68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5",
  8360. "shasum": ""
  8361. },
  8362. "require": {
  8363. "doctrine/lexer": "^1.0.1",
  8364. "php": ">=5.5",
  8365. "symfony/polyfill-intl-idn": "^1.10"
  8366. },
  8367. "require-dev": {
  8368. "dominicsayers/isemail": "^3.0.7",
  8369. "phpunit/phpunit": "^4.8.36|^7.5.15",
  8370. "satooshi/php-coveralls": "^1.0.1"
  8371. },
  8372. "suggest": {
  8373. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  8374. },
  8375. "type": "library",
  8376. "extra": {
  8377. "branch-alias": {
  8378. "dev-master": "2.1.x-dev"
  8379. }
  8380. },
  8381. "autoload": {
  8382. "psr-4": {
  8383. "Egulias\\EmailValidator\\": "src"
  8384. }
  8385. },
  8386. "notification-url": "https://packagist.org/downloads/",
  8387. "license": [
  8388. "MIT"
  8389. ],
  8390. "authors": [
  8391. {
  8392. "name": "Eduardo Gulias Davis"
  8393. }
  8394. ],
  8395. "description": "A library for validating emails against several RFCs",
  8396. "homepage": "https://github.com/egulias/EmailValidator",
  8397. "keywords": [
  8398. "email",
  8399. "emailvalidation",
  8400. "emailvalidator",
  8401. "validation",
  8402. "validator"
  8403. ],
  8404. "time": "2020-09-26T15:48:38+00:00"
  8405. },
  8406. {
  8407. "name": "fileeye/mimemap",
  8408. "version": "1.1.4",
  8409. "source": {
  8410. "type": "git",
  8411. "url": "https://github.com/FileEye/MimeMap.git",
  8412. "reference": "3a0ddb71f06d8fb3f84f0a3c45348af81803b16d"
  8413. },
  8414. "dist": {
  8415. "type": "zip",
  8416. "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/3a0ddb71f06d8fb3f84f0a3c45348af81803b16d",
  8417. "reference": "3a0ddb71f06d8fb3f84f0a3c45348af81803b16d",
  8418. "shasum": ""
  8419. },
  8420. "require": {
  8421. "php": ">=5.4"
  8422. },
  8423. "require-dev": {
  8424. "phpunit/phpunit": "<10",
  8425. "sebastian/comparator": "*",
  8426. "sebastian/diff": "*",
  8427. "squizlabs/php_codesniffer": "*",
  8428. "symfony/console": "*",
  8429. "symfony/filesystem": "*",
  8430. "symfony/var-dumper": "*",
  8431. "symfony/yaml": "*"
  8432. },
  8433. "bin": [
  8434. "bin/fileeye-mimemap"
  8435. ],
  8436. "type": "library",
  8437. "extra": {
  8438. "branch-alias": {
  8439. "dev-master": "1.x-dev"
  8440. }
  8441. },
  8442. "autoload": {
  8443. "psr-4": {
  8444. "FileEye\\MimeMap\\": "src/"
  8445. }
  8446. },
  8447. "notification-url": "https://packagist.org/downloads/",
  8448. "license": [
  8449. "LGPL-3.0-or-later"
  8450. ],
  8451. "description": "A PHP library to handle MIME Content-Type fields and their related file extensions.",
  8452. "homepage": "https://github.com/FileEye/MimeMap",
  8453. "keywords": [
  8454. "mime",
  8455. "mime-database",
  8456. "mime-parser",
  8457. "mime-type"
  8458. ],
  8459. "time": "2020-05-16T10:19:16+00:00"
  8460. },
  8461. {
  8462. "name": "grasmash/expander",
  8463. "version": "1.0.0",
  8464. "source": {
  8465. "type": "git",
  8466. "url": "https://github.com/grasmash/expander.git",
  8467. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  8468. },
  8469. "dist": {
  8470. "type": "zip",
  8471. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  8472. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  8473. "shasum": ""
  8474. },
  8475. "require": {
  8476. "dflydev/dot-access-data": "^1.1.0",
  8477. "php": ">=5.4"
  8478. },
  8479. "require-dev": {
  8480. "greg-1-anderson/composer-test-scenarios": "^1",
  8481. "phpunit/phpunit": "^4|^5.5.4",
  8482. "satooshi/php-coveralls": "^1.0.2|dev-master",
  8483. "squizlabs/php_codesniffer": "^2.7"
  8484. },
  8485. "type": "library",
  8486. "extra": {
  8487. "branch-alias": {
  8488. "dev-master": "1.x-dev"
  8489. }
  8490. },
  8491. "autoload": {
  8492. "psr-4": {
  8493. "Grasmash\\Expander\\": "src/"
  8494. }
  8495. },
  8496. "notification-url": "https://packagist.org/downloads/",
  8497. "license": [
  8498. "MIT"
  8499. ],
  8500. "authors": [
  8501. {
  8502. "name": "Matthew Grasmick"
  8503. }
  8504. ],
  8505. "description": "Expands internal property references in PHP arrays file.",
  8506. "time": "2017-12-21T22:14:55+00:00"
  8507. },
  8508. {
  8509. "name": "grasmash/yaml-expander",
  8510. "version": "1.4.0",
  8511. "source": {
  8512. "type": "git",
  8513. "url": "https://github.com/grasmash/yaml-expander.git",
  8514. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  8515. },
  8516. "dist": {
  8517. "type": "zip",
  8518. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  8519. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  8520. "shasum": ""
  8521. },
  8522. "require": {
  8523. "dflydev/dot-access-data": "^1.1.0",
  8524. "php": ">=5.4",
  8525. "symfony/yaml": "^2.8.11|^3|^4"
  8526. },
  8527. "require-dev": {
  8528. "greg-1-anderson/composer-test-scenarios": "^1",
  8529. "phpunit/phpunit": "^4.8|^5.5.4",
  8530. "satooshi/php-coveralls": "^1.0.2|dev-master",
  8531. "squizlabs/php_codesniffer": "^2.7"
  8532. },
  8533. "type": "library",
  8534. "extra": {
  8535. "branch-alias": {
  8536. "dev-master": "1.x-dev"
  8537. }
  8538. },
  8539. "autoload": {
  8540. "psr-4": {
  8541. "Grasmash\\YamlExpander\\": "src/"
  8542. }
  8543. },
  8544. "notification-url": "https://packagist.org/downloads/",
  8545. "license": [
  8546. "MIT"
  8547. ],
  8548. "authors": [
  8549. {
  8550. "name": "Matthew Grasmick"
  8551. }
  8552. ],
  8553. "description": "Expands internal property references in a yaml file.",
  8554. "time": "2017-12-16T16:06:03+00:00"
  8555. },
  8556. {
  8557. "name": "guzzlehttp/guzzle",
  8558. "version": "6.5.5",
  8559. "source": {
  8560. "type": "git",
  8561. "url": "https://github.com/guzzle/guzzle.git",
  8562. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  8563. },
  8564. "dist": {
  8565. "type": "zip",
  8566. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  8567. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  8568. "shasum": ""
  8569. },
  8570. "require": {
  8571. "ext-json": "*",
  8572. "guzzlehttp/promises": "^1.0",
  8573. "guzzlehttp/psr7": "^1.6.1",
  8574. "php": ">=5.5",
  8575. "symfony/polyfill-intl-idn": "^1.17.0"
  8576. },
  8577. "require-dev": {
  8578. "ext-curl": "*",
  8579. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  8580. "psr/log": "^1.1"
  8581. },
  8582. "suggest": {
  8583. "psr/log": "Required for using the Log middleware"
  8584. },
  8585. "type": "library",
  8586. "extra": {
  8587. "branch-alias": {
  8588. "dev-master": "6.5-dev"
  8589. }
  8590. },
  8591. "autoload": {
  8592. "psr-4": {
  8593. "GuzzleHttp\\": "src/"
  8594. },
  8595. "files": [
  8596. "src/functions_include.php"
  8597. ]
  8598. },
  8599. "notification-url": "https://packagist.org/downloads/",
  8600. "license": [
  8601. "MIT"
  8602. ],
  8603. "authors": [
  8604. {
  8605. "name": "Michael Dowling",
  8606. "email": "mtdowling@gmail.com",
  8607. "homepage": "https://github.com/mtdowling"
  8608. }
  8609. ],
  8610. "description": "Guzzle is a PHP HTTP client library",
  8611. "homepage": "http://guzzlephp.org/",
  8612. "keywords": [
  8613. "client",
  8614. "curl",
  8615. "framework",
  8616. "http",
  8617. "http client",
  8618. "rest",
  8619. "web service"
  8620. ],
  8621. "time": "2020-06-16T21:01:06+00:00"
  8622. },
  8623. {
  8624. "name": "guzzlehttp/promises",
  8625. "version": "1.4.0",
  8626. "source": {
  8627. "type": "git",
  8628. "url": "https://github.com/guzzle/promises.git",
  8629. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  8630. },
  8631. "dist": {
  8632. "type": "zip",
  8633. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  8634. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  8635. "shasum": ""
  8636. },
  8637. "require": {
  8638. "php": ">=5.5"
  8639. },
  8640. "require-dev": {
  8641. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  8642. },
  8643. "type": "library",
  8644. "extra": {
  8645. "branch-alias": {
  8646. "dev-master": "1.4-dev"
  8647. }
  8648. },
  8649. "autoload": {
  8650. "psr-4": {
  8651. "GuzzleHttp\\Promise\\": "src/"
  8652. },
  8653. "files": [
  8654. "src/functions_include.php"
  8655. ]
  8656. },
  8657. "notification-url": "https://packagist.org/downloads/",
  8658. "license": [
  8659. "MIT"
  8660. ],
  8661. "authors": [
  8662. {
  8663. "name": "Michael Dowling",
  8664. "email": "mtdowling@gmail.com",
  8665. "homepage": "https://github.com/mtdowling"
  8666. }
  8667. ],
  8668. "description": "Guzzle promises library",
  8669. "keywords": [
  8670. "promise"
  8671. ],
  8672. "time": "2020-09-30T07:37:28+00:00"
  8673. },
  8674. {
  8675. "name": "guzzlehttp/psr7",
  8676. "version": "1.7.0",
  8677. "source": {
  8678. "type": "git",
  8679. "url": "https://github.com/guzzle/psr7.git",
  8680. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  8681. },
  8682. "dist": {
  8683. "type": "zip",
  8684. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  8685. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  8686. "shasum": ""
  8687. },
  8688. "require": {
  8689. "php": ">=5.4.0",
  8690. "psr/http-message": "~1.0",
  8691. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  8692. },
  8693. "provide": {
  8694. "psr/http-message-implementation": "1.0"
  8695. },
  8696. "require-dev": {
  8697. "ext-zlib": "*",
  8698. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  8699. },
  8700. "suggest": {
  8701. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  8702. },
  8703. "type": "library",
  8704. "extra": {
  8705. "branch-alias": {
  8706. "dev-master": "1.7-dev"
  8707. }
  8708. },
  8709. "autoload": {
  8710. "psr-4": {
  8711. "GuzzleHttp\\Psr7\\": "src/"
  8712. },
  8713. "files": [
  8714. "src/functions_include.php"
  8715. ]
  8716. },
  8717. "notification-url": "https://packagist.org/downloads/",
  8718. "license": [
  8719. "MIT"
  8720. ],
  8721. "authors": [
  8722. {
  8723. "name": "Michael Dowling",
  8724. "email": "mtdowling@gmail.com",
  8725. "homepage": "https://github.com/mtdowling"
  8726. },
  8727. {
  8728. "name": "Tobias Schultze",
  8729. "homepage": "https://github.com/Tobion"
  8730. }
  8731. ],
  8732. "description": "PSR-7 message implementation that also provides common utility methods",
  8733. "keywords": [
  8734. "http",
  8735. "message",
  8736. "psr-7",
  8737. "request",
  8738. "response",
  8739. "stream",
  8740. "uri",
  8741. "url"
  8742. ],
  8743. "time": "2020-09-30T07:37:11+00:00"
  8744. },
  8745. {
  8746. "name": "kint-php/kint",
  8747. "version": "3.3",
  8748. "source": {
  8749. "type": "git",
  8750. "url": "https://github.com/kint-php/kint.git",
  8751. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b"
  8752. },
  8753. "dist": {
  8754. "type": "zip",
  8755. "url": "https://api.github.com/repos/kint-php/kint/zipball/335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8756. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8757. "shasum": ""
  8758. },
  8759. "require": {
  8760. "php": ">=5.3.6"
  8761. },
  8762. "require-dev": {
  8763. "friendsofphp/php-cs-fixer": "^2.0",
  8764. "phpunit/phpunit": "^4.0",
  8765. "seld/phar-utils": "^1.0",
  8766. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  8767. "vimeo/psalm": "^3.0"
  8768. },
  8769. "suggest": {
  8770. "ext-ctype": "Simple data type tests",
  8771. "ext-iconv": "Provides fallback detection for ambiguous legacy string encodings such as the Windows and ISO 8859 code pages",
  8772. "ext-mbstring": "Provides string encoding detection",
  8773. "kint-php/kint-js": "Provides a simplified dump to console.log()",
  8774. "kint-php/kint-twig": "Provides d() and s() functions in twig templates",
  8775. "symfony/polyfill-ctype": "Replacement for ext-ctype if missing",
  8776. "symfony/polyfill-iconv": "Replacement for ext-iconv if missing",
  8777. "symfony/polyfill-mbstring": "Replacement for ext-mbstring if missing"
  8778. },
  8779. "type": "library",
  8780. "autoload": {
  8781. "files": [
  8782. "init.php"
  8783. ],
  8784. "psr-4": {
  8785. "Kint\\": "src/"
  8786. }
  8787. },
  8788. "notification-url": "https://packagist.org/downloads/",
  8789. "license": [
  8790. "MIT"
  8791. ],
  8792. "authors": [
  8793. {
  8794. "name": "Jonathan Vollebregt",
  8795. "homepage": "https://github.com/jnvsor"
  8796. },
  8797. {
  8798. "name": "Rokas Šleinius",
  8799. "homepage": "https://github.com/raveren"
  8800. },
  8801. {
  8802. "name": "Contributors",
  8803. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  8804. }
  8805. ],
  8806. "description": "Kint - debugging tool for PHP developers",
  8807. "homepage": "https://kint-php.github.io/kint/",
  8808. "keywords": [
  8809. "debug",
  8810. "kint",
  8811. "php"
  8812. ],
  8813. "time": "2019-10-17T18:05:24+00:00"
  8814. },
  8815. {
  8816. "name": "laminas/laminas-diactoros",
  8817. "version": "2.5.0",
  8818. "source": {
  8819. "type": "git",
  8820. "url": "https://github.com/laminas/laminas-diactoros.git",
  8821. "reference": "4ff7400c1c12e404144992ef43c8b733fd9ad516"
  8822. },
  8823. "dist": {
  8824. "type": "zip",
  8825. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/4ff7400c1c12e404144992ef43c8b733fd9ad516",
  8826. "reference": "4ff7400c1c12e404144992ef43c8b733fd9ad516",
  8827. "shasum": ""
  8828. },
  8829. "require": {
  8830. "laminas/laminas-zendframework-bridge": "^1.0",
  8831. "php": "^7.3 || ~8.0.0",
  8832. "psr/http-factory": "^1.0",
  8833. "psr/http-message": "^1.0"
  8834. },
  8835. "conflict": {
  8836. "phpspec/prophecy": "<1.9.0"
  8837. },
  8838. "provide": {
  8839. "psr/http-factory-implementation": "1.0",
  8840. "psr/http-message-implementation": "1.0"
  8841. },
  8842. "replace": {
  8843. "zendframework/zend-diactoros": "^2.2.1"
  8844. },
  8845. "require-dev": {
  8846. "ext-curl": "*",
  8847. "ext-dom": "*",
  8848. "ext-gd": "*",
  8849. "ext-libxml": "*",
  8850. "http-interop/http-factory-tests": "^0.8.0",
  8851. "laminas/laminas-coding-standard": "~1.0.0",
  8852. "php-http/psr7-integration-tests": "^1.1",
  8853. "phpspec/prophecy-phpunit": "^2.0",
  8854. "phpunit/phpunit": "^9.1"
  8855. },
  8856. "type": "library",
  8857. "extra": {
  8858. "laminas": {
  8859. "config-provider": "Laminas\\Diactoros\\ConfigProvider",
  8860. "module": "Laminas\\Diactoros"
  8861. }
  8862. },
  8863. "autoload": {
  8864. "files": [
  8865. "src/functions/create_uploaded_file.php",
  8866. "src/functions/marshal_headers_from_sapi.php",
  8867. "src/functions/marshal_method_from_sapi.php",
  8868. "src/functions/marshal_protocol_version_from_sapi.php",
  8869. "src/functions/marshal_uri_from_sapi.php",
  8870. "src/functions/normalize_server.php",
  8871. "src/functions/normalize_uploaded_files.php",
  8872. "src/functions/parse_cookie_header.php",
  8873. "src/functions/create_uploaded_file.legacy.php",
  8874. "src/functions/marshal_headers_from_sapi.legacy.php",
  8875. "src/functions/marshal_method_from_sapi.legacy.php",
  8876. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  8877. "src/functions/marshal_uri_from_sapi.legacy.php",
  8878. "src/functions/normalize_server.legacy.php",
  8879. "src/functions/normalize_uploaded_files.legacy.php",
  8880. "src/functions/parse_cookie_header.legacy.php"
  8881. ],
  8882. "psr-4": {
  8883. "Laminas\\Diactoros\\": "src/"
  8884. }
  8885. },
  8886. "notification-url": "https://packagist.org/downloads/",
  8887. "license": [
  8888. "BSD-3-Clause"
  8889. ],
  8890. "description": "PSR HTTP Message implementations",
  8891. "homepage": "https://laminas.dev",
  8892. "keywords": [
  8893. "http",
  8894. "laminas",
  8895. "psr",
  8896. "psr-17",
  8897. "psr-7"
  8898. ],
  8899. "funding": [
  8900. {
  8901. "url": "https://funding.communitybridge.org/projects/laminas-project",
  8902. "type": "community_bridge"
  8903. }
  8904. ],
  8905. "time": "2020-11-18T18:39:28+00:00"
  8906. },
  8907. {
  8908. "name": "laminas/laminas-escaper",
  8909. "version": "2.7.0",
  8910. "source": {
  8911. "type": "git",
  8912. "url": "https://github.com/laminas/laminas-escaper.git",
  8913. "reference": "5e04bc5ae5990b17159d79d331055e2c645e5cc5"
  8914. },
  8915. "dist": {
  8916. "type": "zip",
  8917. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/5e04bc5ae5990b17159d79d331055e2c645e5cc5",
  8918. "reference": "5e04bc5ae5990b17159d79d331055e2c645e5cc5",
  8919. "shasum": ""
  8920. },
  8921. "require": {
  8922. "laminas/laminas-zendframework-bridge": "^1.0",
  8923. "php": "^7.3 || ~8.0.0"
  8924. },
  8925. "replace": {
  8926. "zendframework/zend-escaper": "^2.6.1"
  8927. },
  8928. "require-dev": {
  8929. "laminas/laminas-coding-standard": "~1.0.0",
  8930. "phpunit/phpunit": "^9.3",
  8931. "psalm/plugin-phpunit": "^0.12.2",
  8932. "vimeo/psalm": "^3.16"
  8933. },
  8934. "suggest": {
  8935. "ext-iconv": "*",
  8936. "ext-mbstring": "*"
  8937. },
  8938. "type": "library",
  8939. "autoload": {
  8940. "psr-4": {
  8941. "Laminas\\Escaper\\": "src/"
  8942. }
  8943. },
  8944. "notification-url": "https://packagist.org/downloads/",
  8945. "license": [
  8946. "BSD-3-Clause"
  8947. ],
  8948. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  8949. "homepage": "https://laminas.dev",
  8950. "keywords": [
  8951. "escaper",
  8952. "laminas"
  8953. ],
  8954. "funding": [
  8955. {
  8956. "url": "https://funding.communitybridge.org/projects/laminas-project",
  8957. "type": "community_bridge"
  8958. }
  8959. ],
  8960. "time": "2020-11-17T21:26:43+00:00"
  8961. },
  8962. {
  8963. "name": "laminas/laminas-feed",
  8964. "version": "2.13.0",
  8965. "source": {
  8966. "type": "git",
  8967. "url": "https://github.com/laminas/laminas-feed.git",
  8968. "reference": "fb89aac1984222227f37792dd193d34829a0762f"
  8969. },
  8970. "dist": {
  8971. "type": "zip",
  8972. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/fb89aac1984222227f37792dd193d34829a0762f",
  8973. "reference": "fb89aac1984222227f37792dd193d34829a0762f",
  8974. "shasum": ""
  8975. },
  8976. "require": {
  8977. "ext-dom": "*",
  8978. "ext-libxml": "*",
  8979. "laminas/laminas-escaper": "^2.5.2",
  8980. "laminas/laminas-stdlib": "^3.2.1",
  8981. "laminas/laminas-zendframework-bridge": "^1.0",
  8982. "php": "^7.3 || ~8.0.0"
  8983. },
  8984. "conflict": {
  8985. "laminas/laminas-servicemanager": "<3.3"
  8986. },
  8987. "replace": {
  8988. "zendframework/zend-feed": "^2.12.0"
  8989. },
  8990. "require-dev": {
  8991. "laminas/laminas-cache": "^2.7.2",
  8992. "laminas/laminas-coding-standard": "~1.0.0",
  8993. "laminas/laminas-db": "^2.8.2",
  8994. "laminas/laminas-http": "^2.7",
  8995. "laminas/laminas-servicemanager": "^3.3",
  8996. "laminas/laminas-validator": "^2.10.1",
  8997. "phpunit/phpunit": "^9.3",
  8998. "psalm/plugin-phpunit": "^0.13.0",
  8999. "psr/http-message": "^1.0.1",
  9000. "vimeo/psalm": "^4.1"
  9001. },
  9002. "suggest": {
  9003. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  9004. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  9005. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  9006. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  9007. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  9008. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  9009. },
  9010. "type": "library",
  9011. "autoload": {
  9012. "psr-4": {
  9013. "Laminas\\Feed\\": "src/"
  9014. }
  9015. },
  9016. "notification-url": "https://packagist.org/downloads/",
  9017. "license": [
  9018. "BSD-3-Clause"
  9019. ],
  9020. "description": "provides functionality for consuming RSS and Atom feeds",
  9021. "homepage": "https://laminas.dev",
  9022. "keywords": [
  9023. "feed",
  9024. "laminas"
  9025. ],
  9026. "funding": [
  9027. {
  9028. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9029. "type": "community_bridge"
  9030. }
  9031. ],
  9032. "time": "2020-11-18T21:02:52+00:00"
  9033. },
  9034. {
  9035. "name": "laminas/laminas-stdlib",
  9036. "version": "3.3.0",
  9037. "source": {
  9038. "type": "git",
  9039. "url": "https://github.com/laminas/laminas-stdlib.git",
  9040. "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6"
  9041. },
  9042. "dist": {
  9043. "type": "zip",
  9044. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/b9d84eaa39fde733356ea948cdef36c631f202b6",
  9045. "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6",
  9046. "shasum": ""
  9047. },
  9048. "require": {
  9049. "laminas/laminas-zendframework-bridge": "^1.0",
  9050. "php": "^7.3 || ^8.0"
  9051. },
  9052. "replace": {
  9053. "zendframework/zend-stdlib": "^3.2.1"
  9054. },
  9055. "require-dev": {
  9056. "laminas/laminas-coding-standard": "~1.0.0",
  9057. "phpbench/phpbench": "^0.17.1",
  9058. "phpunit/phpunit": "^9.3.7"
  9059. },
  9060. "type": "library",
  9061. "extra": {
  9062. "branch-alias": {
  9063. "dev-master": "3.3.x-dev",
  9064. "dev-develop": "3.4.x-dev"
  9065. }
  9066. },
  9067. "autoload": {
  9068. "psr-4": {
  9069. "Laminas\\Stdlib\\": "src/"
  9070. }
  9071. },
  9072. "notification-url": "https://packagist.org/downloads/",
  9073. "license": [
  9074. "BSD-3-Clause"
  9075. ],
  9076. "description": "SPL extensions, array utilities, error handlers, and more",
  9077. "homepage": "https://laminas.dev",
  9078. "keywords": [
  9079. "laminas",
  9080. "stdlib"
  9081. ],
  9082. "funding": [
  9083. {
  9084. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9085. "type": "community_bridge"
  9086. }
  9087. ],
  9088. "time": "2020-08-25T09:08:16+00:00"
  9089. },
  9090. {
  9091. "name": "laminas/laminas-zendframework-bridge",
  9092. "version": "1.1.1",
  9093. "source": {
  9094. "type": "git",
  9095. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  9096. "reference": "6ede70583e101030bcace4dcddd648f760ddf642"
  9097. },
  9098. "dist": {
  9099. "type": "zip",
  9100. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/6ede70583e101030bcace4dcddd648f760ddf642",
  9101. "reference": "6ede70583e101030bcace4dcddd648f760ddf642",
  9102. "shasum": ""
  9103. },
  9104. "require": {
  9105. "php": "^5.6 || ^7.0 || ^8.0"
  9106. },
  9107. "require-dev": {
  9108. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1 || ^9.3",
  9109. "squizlabs/php_codesniffer": "^3.5"
  9110. },
  9111. "type": "library",
  9112. "extra": {
  9113. "laminas": {
  9114. "module": "Laminas\\ZendFrameworkBridge"
  9115. }
  9116. },
  9117. "autoload": {
  9118. "files": [
  9119. "src/autoload.php"
  9120. ],
  9121. "psr-4": {
  9122. "Laminas\\ZendFrameworkBridge\\": "src//"
  9123. }
  9124. },
  9125. "notification-url": "https://packagist.org/downloads/",
  9126. "license": [
  9127. "BSD-3-Clause"
  9128. ],
  9129. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  9130. "keywords": [
  9131. "ZendFramework",
  9132. "autoloading",
  9133. "laminas",
  9134. "zf"
  9135. ],
  9136. "funding": [
  9137. {
  9138. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9139. "type": "community_bridge"
  9140. }
  9141. ],
  9142. "time": "2020-09-14T14:23:00+00:00"
  9143. },
  9144. {
  9145. "name": "league/container",
  9146. "version": "2.4.1",
  9147. "source": {
  9148. "type": "git",
  9149. "url": "https://github.com/thephpleague/container.git",
  9150. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  9151. },
  9152. "dist": {
  9153. "type": "zip",
  9154. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  9155. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  9156. "shasum": ""
  9157. },
  9158. "require": {
  9159. "container-interop/container-interop": "^1.2",
  9160. "php": "^5.4.0 || ^7.0"
  9161. },
  9162. "provide": {
  9163. "container-interop/container-interop-implementation": "^1.2",
  9164. "psr/container-implementation": "^1.0"
  9165. },
  9166. "replace": {
  9167. "orno/di": "~2.0"
  9168. },
  9169. "require-dev": {
  9170. "phpunit/phpunit": "4.*"
  9171. },
  9172. "type": "library",
  9173. "extra": {
  9174. "branch-alias": {
  9175. "dev-2.x": "2.x-dev",
  9176. "dev-1.x": "1.x-dev"
  9177. }
  9178. },
  9179. "autoload": {
  9180. "psr-4": {
  9181. "League\\Container\\": "src"
  9182. }
  9183. },
  9184. "notification-url": "https://packagist.org/downloads/",
  9185. "license": [
  9186. "MIT"
  9187. ],
  9188. "authors": [
  9189. {
  9190. "name": "Phil Bennett",
  9191. "email": "philipobenito@gmail.com",
  9192. "homepage": "http://www.philipobenito.com",
  9193. "role": "Developer"
  9194. }
  9195. ],
  9196. "description": "A fast and intuitive dependency injection container.",
  9197. "homepage": "https://github.com/thephpleague/container",
  9198. "keywords": [
  9199. "container",
  9200. "dependency",
  9201. "di",
  9202. "injection",
  9203. "league",
  9204. "provider",
  9205. "service"
  9206. ],
  9207. "time": "2017-05-10T09:20:27+00:00"
  9208. },
  9209. {
  9210. "name": "lsolesen/pel",
  9211. "version": "0.9.9",
  9212. "source": {
  9213. "type": "git",
  9214. "url": "https://github.com/pel/pel.git",
  9215. "reference": "95dd3c16161c588f0ac66662c1870a073159e5ec"
  9216. },
  9217. "dist": {
  9218. "type": "zip",
  9219. "url": "https://api.github.com/repos/pel/pel/zipball/95dd3c16161c588f0ac66662c1870a073159e5ec",
  9220. "reference": "95dd3c16161c588f0ac66662c1870a073159e5ec",
  9221. "shasum": ""
  9222. },
  9223. "require": {
  9224. "php": ">=5.4.0"
  9225. },
  9226. "require-dev": {
  9227. "ext-gd": "*",
  9228. "phpunit/phpunit": ">=4.8.36 <8",
  9229. "satooshi/php-coveralls": "1.0.*",
  9230. "squizlabs/php_codesniffer": "^3.0.0"
  9231. },
  9232. "type": "library",
  9233. "autoload": {
  9234. "psr-4": {
  9235. "lsolesen\\pel\\": "src/"
  9236. }
  9237. },
  9238. "notification-url": "https://packagist.org/downloads/",
  9239. "license": [
  9240. "GPL-2.0"
  9241. ],
  9242. "authors": [
  9243. {
  9244. "name": "Lars Olesen",
  9245. "email": "lars@intraface.dk",
  9246. "homepage": "http://intraface.dk",
  9247. "role": "Developer"
  9248. },
  9249. {
  9250. "name": "Martin Geisler",
  9251. "email": "martin@geisler.net",
  9252. "homepage": "http://geisler.net",
  9253. "role": "Developer"
  9254. }
  9255. ],
  9256. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  9257. "homepage": "http://pel.github.com/pel/",
  9258. "keywords": [
  9259. "exif",
  9260. "image"
  9261. ],
  9262. "time": "2020-11-07T06:04:18+00:00"
  9263. },
  9264. {
  9265. "name": "masterminds/html5",
  9266. "version": "2.7.4",
  9267. "source": {
  9268. "type": "git",
  9269. "url": "https://github.com/Masterminds/html5-php.git",
  9270. "reference": "9227822783c75406cfe400984b2f095cdf03d417"
  9271. },
  9272. "dist": {
  9273. "type": "zip",
  9274. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/9227822783c75406cfe400984b2f095cdf03d417",
  9275. "reference": "9227822783c75406cfe400984b2f095cdf03d417",
  9276. "shasum": ""
  9277. },
  9278. "require": {
  9279. "ext-ctype": "*",
  9280. "ext-dom": "*",
  9281. "ext-libxml": "*",
  9282. "php": ">=5.3.0"
  9283. },
  9284. "require-dev": {
  9285. "phpunit/phpunit": "^4.8.35"
  9286. },
  9287. "type": "library",
  9288. "extra": {
  9289. "branch-alias": {
  9290. "dev-master": "2.7-dev"
  9291. }
  9292. },
  9293. "autoload": {
  9294. "psr-4": {
  9295. "Masterminds\\": "src"
  9296. }
  9297. },
  9298. "notification-url": "https://packagist.org/downloads/",
  9299. "license": [
  9300. "MIT"
  9301. ],
  9302. "authors": [
  9303. {
  9304. "name": "Matt Butcher",
  9305. "email": "technosophos@gmail.com"
  9306. },
  9307. {
  9308. "name": "Matt Farina",
  9309. "email": "matt@mattfarina.com"
  9310. },
  9311. {
  9312. "name": "Asmir Mustafic",
  9313. "email": "goetas@gmail.com"
  9314. }
  9315. ],
  9316. "description": "An HTML5 parser and serializer.",
  9317. "homepage": "http://masterminds.github.io/html5-php",
  9318. "keywords": [
  9319. "HTML5",
  9320. "dom",
  9321. "html",
  9322. "parser",
  9323. "querypath",
  9324. "serializer",
  9325. "xml"
  9326. ],
  9327. "time": "2020-10-01T13:52:52+00:00"
  9328. },
  9329. {
  9330. "name": "nikic/php-parser",
  9331. "version": "v4.10.3",
  9332. "source": {
  9333. "type": "git",
  9334. "url": "https://github.com/nikic/PHP-Parser.git",
  9335. "reference": "dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984"
  9336. },
  9337. "dist": {
  9338. "type": "zip",
  9339. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984",
  9340. "reference": "dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984",
  9341. "shasum": ""
  9342. },
  9343. "require": {
  9344. "ext-tokenizer": "*",
  9345. "php": ">=7.0"
  9346. },
  9347. "require-dev": {
  9348. "ircmaxell/php-yacc": "^0.0.7",
  9349. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  9350. },
  9351. "bin": [
  9352. "bin/php-parse"
  9353. ],
  9354. "type": "library",
  9355. "extra": {
  9356. "branch-alias": {
  9357. "dev-master": "4.9-dev"
  9358. }
  9359. },
  9360. "autoload": {
  9361. "psr-4": {
  9362. "PhpParser\\": "lib/PhpParser"
  9363. }
  9364. },
  9365. "notification-url": "https://packagist.org/downloads/",
  9366. "license": [
  9367. "BSD-3-Clause"
  9368. ],
  9369. "authors": [
  9370. {
  9371. "name": "Nikita Popov"
  9372. }
  9373. ],
  9374. "description": "A PHP parser written in PHP",
  9375. "keywords": [
  9376. "parser",
  9377. "php"
  9378. ],
  9379. "time": "2020-12-03T17:45:45+00:00"
  9380. },
  9381. {
  9382. "name": "pear/archive_tar",
  9383. "version": "1.4.12",
  9384. "source": {
  9385. "type": "git",
  9386. "url": "https://github.com/pear/Archive_Tar.git",
  9387. "reference": "19bb8e95490d3e3ad92fcac95500ca80bdcc7495"
  9388. },
  9389. "dist": {
  9390. "type": "zip",
  9391. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/19bb8e95490d3e3ad92fcac95500ca80bdcc7495",
  9392. "reference": "19bb8e95490d3e3ad92fcac95500ca80bdcc7495",
  9393. "shasum": ""
  9394. },
  9395. "require": {
  9396. "pear/pear-core-minimal": "^1.10.0alpha2",
  9397. "php": ">=5.2.0"
  9398. },
  9399. "require-dev": {
  9400. "phpunit/phpunit": "*"
  9401. },
  9402. "suggest": {
  9403. "ext-bz2": "Bz2 compression support.",
  9404. "ext-xz": "Lzma2 compression support.",
  9405. "ext-zlib": "Gzip compression support."
  9406. },
  9407. "type": "library",
  9408. "extra": {
  9409. "branch-alias": {
  9410. "dev-master": "1.4.x-dev"
  9411. }
  9412. },
  9413. "autoload": {
  9414. "psr-0": {
  9415. "Archive_Tar": ""
  9416. }
  9417. },
  9418. "notification-url": "https://packagist.org/downloads/",
  9419. "include-path": [
  9420. "./"
  9421. ],
  9422. "license": [
  9423. "BSD-3-Clause"
  9424. ],
  9425. "authors": [
  9426. {
  9427. "name": "Vincent Blavet",
  9428. "email": "vincent@phpconcept.net"
  9429. },
  9430. {
  9431. "name": "Greg Beaver",
  9432. "email": "greg@chiaraquartet.net"
  9433. },
  9434. {
  9435. "name": "Michiel Rook",
  9436. "email": "mrook@php.net"
  9437. }
  9438. ],
  9439. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  9440. "homepage": "https://github.com/pear/Archive_Tar",
  9441. "keywords": [
  9442. "archive",
  9443. "tar"
  9444. ],
  9445. "funding": [
  9446. {
  9447. "url": "https://github.com/mrook",
  9448. "type": "github"
  9449. },
  9450. {
  9451. "url": "https://www.patreon.com/michielrook",
  9452. "type": "patreon"
  9453. }
  9454. ],
  9455. "time": "2021-01-18T19:32:54+00:00"
  9456. },
  9457. {
  9458. "name": "pear/console_getopt",
  9459. "version": "v1.4.3",
  9460. "source": {
  9461. "type": "git",
  9462. "url": "https://github.com/pear/Console_Getopt.git",
  9463. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  9464. },
  9465. "dist": {
  9466. "type": "zip",
  9467. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9468. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9469. "shasum": ""
  9470. },
  9471. "type": "library",
  9472. "autoload": {
  9473. "psr-0": {
  9474. "Console": "./"
  9475. }
  9476. },
  9477. "notification-url": "https://packagist.org/downloads/",
  9478. "include-path": [
  9479. "./"
  9480. ],
  9481. "license": [
  9482. "BSD-2-Clause"
  9483. ],
  9484. "authors": [
  9485. {
  9486. "name": "Andrei Zmievski",
  9487. "email": "andrei@php.net",
  9488. "role": "Lead"
  9489. },
  9490. {
  9491. "name": "Stig Bakken",
  9492. "email": "stig@php.net",
  9493. "role": "Developer"
  9494. },
  9495. {
  9496. "name": "Greg Beaver",
  9497. "email": "cellog@php.net",
  9498. "role": "Helper"
  9499. }
  9500. ],
  9501. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  9502. "time": "2019-11-20T18:27:48+00:00"
  9503. },
  9504. {
  9505. "name": "pear/pear-core-minimal",
  9506. "version": "v1.10.10",
  9507. "source": {
  9508. "type": "git",
  9509. "url": "https://github.com/pear/pear-core-minimal.git",
  9510. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  9511. },
  9512. "dist": {
  9513. "type": "zip",
  9514. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  9515. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  9516. "shasum": ""
  9517. },
  9518. "require": {
  9519. "pear/console_getopt": "~1.4",
  9520. "pear/pear_exception": "~1.0"
  9521. },
  9522. "replace": {
  9523. "rsky/pear-core-min": "self.version"
  9524. },
  9525. "type": "library",
  9526. "autoload": {
  9527. "psr-0": {
  9528. "": "src/"
  9529. }
  9530. },
  9531. "notification-url": "https://packagist.org/downloads/",
  9532. "include-path": [
  9533. "src/"
  9534. ],
  9535. "license": [
  9536. "BSD-3-Clause"
  9537. ],
  9538. "authors": [
  9539. {
  9540. "name": "Christian Weiske",
  9541. "email": "cweiske@php.net",
  9542. "role": "Lead"
  9543. }
  9544. ],
  9545. "description": "Minimal set of PEAR core files to be used as composer dependency",
  9546. "time": "2019-11-19T19:00:24+00:00"
  9547. },
  9548. {
  9549. "name": "pear/pear_exception",
  9550. "version": "v1.0.1",
  9551. "source": {
  9552. "type": "git",
  9553. "url": "https://github.com/pear/PEAR_Exception.git",
  9554. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7"
  9555. },
  9556. "dist": {
  9557. "type": "zip",
  9558. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  9559. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  9560. "shasum": ""
  9561. },
  9562. "require": {
  9563. "php": ">=4.4.0"
  9564. },
  9565. "require-dev": {
  9566. "phpunit/phpunit": "*"
  9567. },
  9568. "type": "class",
  9569. "extra": {
  9570. "branch-alias": {
  9571. "dev-master": "1.0.x-dev"
  9572. }
  9573. },
  9574. "autoload": {
  9575. "classmap": [
  9576. "PEAR/"
  9577. ]
  9578. },
  9579. "notification-url": "https://packagist.org/downloads/",
  9580. "include-path": [
  9581. "."
  9582. ],
  9583. "license": [
  9584. "BSD-2-Clause"
  9585. ],
  9586. "authors": [
  9587. {
  9588. "name": "Helgi Thormar",
  9589. "email": "dufuz@php.net"
  9590. },
  9591. {
  9592. "name": "Greg Beaver",
  9593. "email": "cellog@php.net"
  9594. }
  9595. ],
  9596. "description": "The PEAR Exception base class.",
  9597. "homepage": "https://github.com/pear/PEAR_Exception",
  9598. "keywords": [
  9599. "exception"
  9600. ],
  9601. "time": "2019-12-10T10:24:42+00:00"
  9602. },
  9603. {
  9604. "name": "phenx/php-font-lib",
  9605. "version": "0.5.2",
  9606. "source": {
  9607. "type": "git",
  9608. "url": "https://github.com/PhenX/php-font-lib.git",
  9609. "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8"
  9610. },
  9611. "dist": {
  9612. "type": "zip",
  9613. "url": "https://api.github.com/repos/PhenX/php-font-lib/zipball/ca6ad461f032145fff5971b5985e5af9e7fa88d8",
  9614. "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8",
  9615. "shasum": ""
  9616. },
  9617. "require-dev": {
  9618. "phpunit/phpunit": "^4.8.35 || ^5 || ^6 || ^7"
  9619. },
  9620. "type": "library",
  9621. "autoload": {
  9622. "psr-4": {
  9623. "FontLib\\": "src/FontLib"
  9624. }
  9625. },
  9626. "notification-url": "https://packagist.org/downloads/",
  9627. "license": [
  9628. "LGPL-3.0"
  9629. ],
  9630. "authors": [
  9631. {
  9632. "name": "Fabien Ménager",
  9633. "email": "fabien.menager@gmail.com"
  9634. }
  9635. ],
  9636. "description": "A library to read, parse, export and make subsets of different types of font files.",
  9637. "homepage": "https://github.com/PhenX/php-font-lib",
  9638. "time": "2020-03-08T15:31:32+00:00"
  9639. },
  9640. {
  9641. "name": "phpmailer/phpmailer",
  9642. "version": "v6.2.0",
  9643. "source": {
  9644. "type": "git",
  9645. "url": "https://github.com/PHPMailer/PHPMailer.git",
  9646. "reference": "e38888a75c070304ca5514197d4847a59a5c853f"
  9647. },
  9648. "dist": {
  9649. "type": "zip",
  9650. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/e38888a75c070304ca5514197d4847a59a5c853f",
  9651. "reference": "e38888a75c070304ca5514197d4847a59a5c853f",
  9652. "shasum": ""
  9653. },
  9654. "require": {
  9655. "ext-ctype": "*",
  9656. "ext-filter": "*",
  9657. "ext-hash": "*",
  9658. "php": ">=5.5.0"
  9659. },
  9660. "require-dev": {
  9661. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  9662. "doctrine/annotations": "^1.2",
  9663. "phpcompatibility/php-compatibility": "^9.3.5",
  9664. "roave/security-advisories": "dev-latest",
  9665. "squizlabs/php_codesniffer": "^3.5.6",
  9666. "yoast/phpunit-polyfills": "^0.2.0"
  9667. },
  9668. "suggest": {
  9669. "ext-mbstring": "Needed to send email in multibyte encoding charset",
  9670. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  9671. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  9672. "psr/log": "For optional PSR-3 debug logging",
  9673. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  9674. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  9675. },
  9676. "type": "library",
  9677. "autoload": {
  9678. "psr-4": {
  9679. "PHPMailer\\PHPMailer\\": "src/"
  9680. }
  9681. },
  9682. "notification-url": "https://packagist.org/downloads/",
  9683. "license": [
  9684. "LGPL-2.1-only"
  9685. ],
  9686. "authors": [
  9687. {
  9688. "name": "Marcus Bointon",
  9689. "email": "phpmailer@synchromedia.co.uk"
  9690. },
  9691. {
  9692. "name": "Jim Jagielski",
  9693. "email": "jimjag@gmail.com"
  9694. },
  9695. {
  9696. "name": "Andy Prevost",
  9697. "email": "codeworxtech@users.sourceforge.net"
  9698. },
  9699. {
  9700. "name": "Brent R. Matzelle"
  9701. }
  9702. ],
  9703. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  9704. "funding": [
  9705. {
  9706. "url": "https://github.com/Synchro",
  9707. "type": "github"
  9708. }
  9709. ],
  9710. "time": "2020-11-25T15:24:57+00:00"
  9711. },
  9712. {
  9713. "name": "psr/container",
  9714. "version": "1.0.0",
  9715. "source": {
  9716. "type": "git",
  9717. "url": "https://github.com/php-fig/container.git",
  9718. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  9719. },
  9720. "dist": {
  9721. "type": "zip",
  9722. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  9723. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  9724. "shasum": ""
  9725. },
  9726. "require": {
  9727. "php": ">=5.3.0"
  9728. },
  9729. "type": "library",
  9730. "extra": {
  9731. "branch-alias": {
  9732. "dev-master": "1.0.x-dev"
  9733. }
  9734. },
  9735. "autoload": {
  9736. "psr-4": {
  9737. "Psr\\Container\\": "src/"
  9738. }
  9739. },
  9740. "notification-url": "https://packagist.org/downloads/",
  9741. "license": [
  9742. "MIT"
  9743. ],
  9744. "authors": [
  9745. {
  9746. "name": "PHP-FIG",
  9747. "homepage": "http://www.php-fig.org/"
  9748. }
  9749. ],
  9750. "description": "Common Container Interface (PHP FIG PSR-11)",
  9751. "homepage": "https://github.com/php-fig/container",
  9752. "keywords": [
  9753. "PSR-11",
  9754. "container",
  9755. "container-interface",
  9756. "container-interop",
  9757. "psr"
  9758. ],
  9759. "time": "2017-02-14T16:28:37+00:00"
  9760. },
  9761. {
  9762. "name": "psr/http-factory",
  9763. "version": "1.0.1",
  9764. "source": {
  9765. "type": "git",
  9766. "url": "https://github.com/php-fig/http-factory.git",
  9767. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  9768. },
  9769. "dist": {
  9770. "type": "zip",
  9771. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  9772. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  9773. "shasum": ""
  9774. },
  9775. "require": {
  9776. "php": ">=7.0.0",
  9777. "psr/http-message": "^1.0"
  9778. },
  9779. "type": "library",
  9780. "extra": {
  9781. "branch-alias": {
  9782. "dev-master": "1.0.x-dev"
  9783. }
  9784. },
  9785. "autoload": {
  9786. "psr-4": {
  9787. "Psr\\Http\\Message\\": "src/"
  9788. }
  9789. },
  9790. "notification-url": "https://packagist.org/downloads/",
  9791. "license": [
  9792. "MIT"
  9793. ],
  9794. "authors": [
  9795. {
  9796. "name": "PHP-FIG",
  9797. "homepage": "http://www.php-fig.org/"
  9798. }
  9799. ],
  9800. "description": "Common interfaces for PSR-7 HTTP message factories",
  9801. "keywords": [
  9802. "factory",
  9803. "http",
  9804. "message",
  9805. "psr",
  9806. "psr-17",
  9807. "psr-7",
  9808. "request",
  9809. "response"
  9810. ],
  9811. "time": "2019-04-30T12:38:16+00:00"
  9812. },
  9813. {
  9814. "name": "psr/http-message",
  9815. "version": "1.0.1",
  9816. "source": {
  9817. "type": "git",
  9818. "url": "https://github.com/php-fig/http-message.git",
  9819. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  9820. },
  9821. "dist": {
  9822. "type": "zip",
  9823. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  9824. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  9825. "shasum": ""
  9826. },
  9827. "require": {
  9828. "php": ">=5.3.0"
  9829. },
  9830. "type": "library",
  9831. "extra": {
  9832. "branch-alias": {
  9833. "dev-master": "1.0.x-dev"
  9834. }
  9835. },
  9836. "autoload": {
  9837. "psr-4": {
  9838. "Psr\\Http\\Message\\": "src/"
  9839. }
  9840. },
  9841. "notification-url": "https://packagist.org/downloads/",
  9842. "license": [
  9843. "MIT"
  9844. ],
  9845. "authors": [
  9846. {
  9847. "name": "PHP-FIG",
  9848. "homepage": "http://www.php-fig.org/"
  9849. }
  9850. ],
  9851. "description": "Common interface for HTTP messages",
  9852. "homepage": "https://github.com/php-fig/http-message",
  9853. "keywords": [
  9854. "http",
  9855. "http-message",
  9856. "psr",
  9857. "psr-7",
  9858. "request",
  9859. "response"
  9860. ],
  9861. "time": "2016-08-06T14:39:51+00:00"
  9862. },
  9863. {
  9864. "name": "psr/log",
  9865. "version": "1.1.3",
  9866. "source": {
  9867. "type": "git",
  9868. "url": "https://github.com/php-fig/log.git",
  9869. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  9870. },
  9871. "dist": {
  9872. "type": "zip",
  9873. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  9874. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  9875. "shasum": ""
  9876. },
  9877. "require": {
  9878. "php": ">=5.3.0"
  9879. },
  9880. "type": "library",
  9881. "extra": {
  9882. "branch-alias": {
  9883. "dev-master": "1.1.x-dev"
  9884. }
  9885. },
  9886. "autoload": {
  9887. "psr-4": {
  9888. "Psr\\Log\\": "Psr/Log/"
  9889. }
  9890. },
  9891. "notification-url": "https://packagist.org/downloads/",
  9892. "license": [
  9893. "MIT"
  9894. ],
  9895. "authors": [
  9896. {
  9897. "name": "PHP-FIG",
  9898. "homepage": "http://www.php-fig.org/"
  9899. }
  9900. ],
  9901. "description": "Common interface for logging libraries",
  9902. "homepage": "https://github.com/php-fig/log",
  9903. "keywords": [
  9904. "log",
  9905. "psr",
  9906. "psr-3"
  9907. ],
  9908. "time": "2020-03-23T09:12:05+00:00"
  9909. },
  9910. {
  9911. "name": "psy/psysh",
  9912. "version": "v0.10.5",
  9913. "source": {
  9914. "type": "git",
  9915. "url": "https://github.com/bobthecow/psysh.git",
  9916. "reference": "7c710551d4a2653afa259c544508dc18a9098956"
  9917. },
  9918. "dist": {
  9919. "type": "zip",
  9920. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/7c710551d4a2653afa259c544508dc18a9098956",
  9921. "reference": "7c710551d4a2653afa259c544508dc18a9098956",
  9922. "shasum": ""
  9923. },
  9924. "require": {
  9925. "dnoegel/php-xdg-base-dir": "0.1.*",
  9926. "ext-json": "*",
  9927. "ext-tokenizer": "*",
  9928. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  9929. "php": "^8.0 || ^7.0 || ^5.5.9",
  9930. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  9931. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  9932. },
  9933. "require-dev": {
  9934. "bamarni/composer-bin-plugin": "^1.2",
  9935. "hoa/console": "3.17.*"
  9936. },
  9937. "suggest": {
  9938. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  9939. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  9940. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  9941. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  9942. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  9943. },
  9944. "bin": [
  9945. "bin/psysh"
  9946. ],
  9947. "type": "library",
  9948. "extra": {
  9949. "branch-alias": {
  9950. "dev-master": "0.10.x-dev"
  9951. }
  9952. },
  9953. "autoload": {
  9954. "files": [
  9955. "src/functions.php"
  9956. ],
  9957. "psr-4": {
  9958. "Psy\\": "src/"
  9959. }
  9960. },
  9961. "notification-url": "https://packagist.org/downloads/",
  9962. "license": [
  9963. "MIT"
  9964. ],
  9965. "authors": [
  9966. {
  9967. "name": "Justin Hileman",
  9968. "email": "justin@justinhileman.info",
  9969. "homepage": "http://justinhileman.com"
  9970. }
  9971. ],
  9972. "description": "An interactive shell for modern PHP.",
  9973. "homepage": "http://psysh.org",
  9974. "keywords": [
  9975. "REPL",
  9976. "console",
  9977. "interactive",
  9978. "shell"
  9979. ],
  9980. "time": "2020-12-04T02:51:30+00:00"
  9981. },
  9982. {
  9983. "name": "ralouphie/getallheaders",
  9984. "version": "3.0.3",
  9985. "source": {
  9986. "type": "git",
  9987. "url": "https://github.com/ralouphie/getallheaders.git",
  9988. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  9989. },
  9990. "dist": {
  9991. "type": "zip",
  9992. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  9993. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  9994. "shasum": ""
  9995. },
  9996. "require": {
  9997. "php": ">=5.6"
  9998. },
  9999. "require-dev": {
  10000. "php-coveralls/php-coveralls": "^2.1",
  10001. "phpunit/phpunit": "^5 || ^6.5"
  10002. },
  10003. "type": "library",
  10004. "autoload": {
  10005. "files": [
  10006. "src/getallheaders.php"
  10007. ]
  10008. },
  10009. "notification-url": "https://packagist.org/downloads/",
  10010. "license": [
  10011. "MIT"
  10012. ],
  10013. "authors": [
  10014. {
  10015. "name": "Ralph Khattar",
  10016. "email": "ralph.khattar@gmail.com"
  10017. }
  10018. ],
  10019. "description": "A polyfill for getallheaders.",
  10020. "time": "2019-03-08T08:55:37+00:00"
  10021. },
  10022. {
  10023. "name": "stack/builder",
  10024. "version": "v1.0.6",
  10025. "source": {
  10026. "type": "git",
  10027. "url": "https://github.com/stackphp/builder.git",
  10028. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c"
  10029. },
  10030. "dist": {
  10031. "type": "zip",
  10032. "url": "https://api.github.com/repos/stackphp/builder/zipball/a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  10033. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  10034. "shasum": ""
  10035. },
  10036. "require": {
  10037. "php": ">=7.2.0",
  10038. "symfony/http-foundation": "~2.1|~3.0|~4.0|~5.0",
  10039. "symfony/http-kernel": "~2.1|~3.0|~4.0|~5.0"
  10040. },
  10041. "require-dev": {
  10042. "phpunit/phpunit": "~8.0",
  10043. "symfony/routing": "^5.0"
  10044. },
  10045. "type": "library",
  10046. "extra": {
  10047. "branch-alias": {
  10048. "dev-master": "1.0-dev"
  10049. }
  10050. },
  10051. "autoload": {
  10052. "psr-0": {
  10053. "Stack": "src"
  10054. }
  10055. },
  10056. "notification-url": "https://packagist.org/downloads/",
  10057. "license": [
  10058. "MIT"
  10059. ],
  10060. "authors": [
  10061. {
  10062. "name": "Igor Wiedler",
  10063. "email": "igor@wiedler.ch"
  10064. }
  10065. ],
  10066. "description": "Builder for stack middleware based on HttpKernelInterface.",
  10067. "keywords": [
  10068. "stack"
  10069. ],
  10070. "time": "2020-01-30T12:17:27+00:00"
  10071. },
  10072. {
  10073. "name": "stecman/symfony-console-completion",
  10074. "version": "0.11.0",
  10075. "source": {
  10076. "type": "git",
  10077. "url": "https://github.com/stecman/symfony-console-completion.git",
  10078. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518"
  10079. },
  10080. "dist": {
  10081. "type": "zip",
  10082. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/a9502dab59405e275a9f264536c4e1cb61fc3518",
  10083. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518",
  10084. "shasum": ""
  10085. },
  10086. "require": {
  10087. "php": ">=5.3.2",
  10088. "symfony/console": "~2.3 || ~3.0 || ~4.0 || ~5.0"
  10089. },
  10090. "require-dev": {
  10091. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  10092. },
  10093. "type": "library",
  10094. "extra": {
  10095. "branch-alias": {
  10096. "dev-master": "0.10.x-dev"
  10097. }
  10098. },
  10099. "autoload": {
  10100. "psr-4": {
  10101. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  10102. }
  10103. },
  10104. "notification-url": "https://packagist.org/downloads/",
  10105. "license": [
  10106. "MIT"
  10107. ],
  10108. "authors": [
  10109. {
  10110. "name": "Stephen Holdaway",
  10111. "email": "stephen@stecman.co.nz"
  10112. }
  10113. ],
  10114. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  10115. "time": "2019-11-24T17:03:06+00:00"
  10116. },
  10117. {
  10118. "name": "symfony-cmf/routing",
  10119. "version": "2.3.3",
  10120. "source": {
  10121. "type": "git",
  10122. "url": "https://github.com/symfony-cmf/Routing.git",
  10123. "reference": "3c97e7b7709b313cecfb76d691ad4cc22acbf3f5"
  10124. },
  10125. "dist": {
  10126. "type": "zip",
  10127. "url": "https://api.github.com/repos/symfony-cmf/Routing/zipball/3c97e7b7709b313cecfb76d691ad4cc22acbf3f5",
  10128. "reference": "3c97e7b7709b313cecfb76d691ad4cc22acbf3f5",
  10129. "shasum": ""
  10130. },
  10131. "require": {
  10132. "php": "^7.2 || ^8.0",
  10133. "psr/log": "^1.0",
  10134. "symfony/http-kernel": "^4.4 || ^5.0",
  10135. "symfony/routing": "^4.4 || ^5.0"
  10136. },
  10137. "require-dev": {
  10138. "symfony-cmf/testing": "^3@dev",
  10139. "symfony/config": "^4.4 || ^5.0",
  10140. "symfony/dependency-injection": "^4.4 || ^5.0",
  10141. "symfony/event-dispatcher": "^4.4 || ^5.0",
  10142. "symfony/phpunit-bridge": "^5.0"
  10143. },
  10144. "suggest": {
  10145. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (^4.4 || ^5.0)"
  10146. },
  10147. "type": "library",
  10148. "extra": {
  10149. "branch-alias": {
  10150. "dev-master": "2.x-dev"
  10151. }
  10152. },
  10153. "autoload": {
  10154. "psr-4": {
  10155. "Symfony\\Cmf\\Component\\Routing\\": "src/"
  10156. }
  10157. },
  10158. "notification-url": "https://packagist.org/downloads/",
  10159. "license": [
  10160. "MIT"
  10161. ],
  10162. "authors": [
  10163. {
  10164. "name": "Symfony CMF Community",
  10165. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  10166. }
  10167. ],
  10168. "description": "Extends the Symfony routing component for dynamic routes and chaining several routers",
  10169. "homepage": "http://cmf.symfony.com",
  10170. "keywords": [
  10171. "database",
  10172. "routing"
  10173. ],
  10174. "time": "2020-10-06T10:15:37+00:00"
  10175. },
  10176. {
  10177. "name": "symfony/config",
  10178. "version": "v4.4.17",
  10179. "source": {
  10180. "type": "git",
  10181. "url": "https://github.com/symfony/config.git",
  10182. "reference": "4da4a6b07cc7d8d7d3e29842bc9c20401d555065"
  10183. },
  10184. "dist": {
  10185. "type": "zip",
  10186. "url": "https://api.github.com/repos/symfony/config/zipball/4da4a6b07cc7d8d7d3e29842bc9c20401d555065",
  10187. "reference": "4da4a6b07cc7d8d7d3e29842bc9c20401d555065",
  10188. "shasum": ""
  10189. },
  10190. "require": {
  10191. "php": ">=7.1.3",
  10192. "symfony/filesystem": "^3.4|^4.0|^5.0",
  10193. "symfony/polyfill-ctype": "~1.8"
  10194. },
  10195. "conflict": {
  10196. "symfony/finder": "<3.4"
  10197. },
  10198. "require-dev": {
  10199. "symfony/event-dispatcher": "^3.4|^4.0|^5.0",
  10200. "symfony/finder": "^3.4|^4.0|^5.0",
  10201. "symfony/messenger": "^4.1|^5.0",
  10202. "symfony/service-contracts": "^1.1|^2",
  10203. "symfony/yaml": "^3.4|^4.0|^5.0"
  10204. },
  10205. "suggest": {
  10206. "symfony/yaml": "To use the yaml reference dumper"
  10207. },
  10208. "type": "library",
  10209. "autoload": {
  10210. "psr-4": {
  10211. "Symfony\\Component\\Config\\": ""
  10212. },
  10213. "exclude-from-classmap": [
  10214. "/Tests/"
  10215. ]
  10216. },
  10217. "notification-url": "https://packagist.org/downloads/",
  10218. "license": [
  10219. "MIT"
  10220. ],
  10221. "authors": [
  10222. {
  10223. "name": "Fabien Potencier",
  10224. "email": "fabien@symfony.com"
  10225. },
  10226. {
  10227. "name": "Symfony Community",
  10228. "homepage": "https://symfony.com/contributors"
  10229. }
  10230. ],
  10231. "description": "Symfony Config Component",
  10232. "homepage": "https://symfony.com",
  10233. "funding": [
  10234. {
  10235. "url": "https://symfony.com/sponsor",
  10236. "type": "custom"
  10237. },
  10238. {
  10239. "url": "https://github.com/fabpot",
  10240. "type": "github"
  10241. },
  10242. {
  10243. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10244. "type": "tidelift"
  10245. }
  10246. ],
  10247. "time": "2020-11-16T11:15:53+00:00"
  10248. },
  10249. {
  10250. "name": "symfony/console",
  10251. "version": "v4.4.16",
  10252. "source": {
  10253. "type": "git",
  10254. "url": "https://github.com/symfony/console.git",
  10255. "reference": "20f73dd143a5815d475e0838ff867bce1eebd9d5"
  10256. },
  10257. "dist": {
  10258. "type": "zip",
  10259. "url": "https://api.github.com/repos/symfony/console/zipball/20f73dd143a5815d475e0838ff867bce1eebd9d5",
  10260. "reference": "20f73dd143a5815d475e0838ff867bce1eebd9d5",
  10261. "shasum": ""
  10262. },
  10263. "require": {
  10264. "php": ">=7.1.3",
  10265. "symfony/polyfill-mbstring": "~1.0",
  10266. "symfony/polyfill-php73": "^1.8",
  10267. "symfony/polyfill-php80": "^1.15",
  10268. "symfony/service-contracts": "^1.1|^2"
  10269. },
  10270. "conflict": {
  10271. "symfony/dependency-injection": "<3.4",
  10272. "symfony/event-dispatcher": "<4.3|>=5",
  10273. "symfony/lock": "<4.4",
  10274. "symfony/process": "<3.3"
  10275. },
  10276. "provide": {
  10277. "psr/log-implementation": "1.0"
  10278. },
  10279. "require-dev": {
  10280. "psr/log": "~1.0",
  10281. "symfony/config": "^3.4|^4.0|^5.0",
  10282. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  10283. "symfony/event-dispatcher": "^4.3",
  10284. "symfony/lock": "^4.4|^5.0",
  10285. "symfony/process": "^3.4|^4.0|^5.0",
  10286. "symfony/var-dumper": "^4.3|^5.0"
  10287. },
  10288. "suggest": {
  10289. "psr/log": "For using the console logger",
  10290. "symfony/event-dispatcher": "",
  10291. "symfony/lock": "",
  10292. "symfony/process": ""
  10293. },
  10294. "type": "library",
  10295. "autoload": {
  10296. "psr-4": {
  10297. "Symfony\\Component\\Console\\": ""
  10298. },
  10299. "exclude-from-classmap": [
  10300. "/Tests/"
  10301. ]
  10302. },
  10303. "notification-url": "https://packagist.org/downloads/",
  10304. "license": [
  10305. "MIT"
  10306. ],
  10307. "authors": [
  10308. {
  10309. "name": "Fabien Potencier",
  10310. "email": "fabien@symfony.com"
  10311. },
  10312. {
  10313. "name": "Symfony Community",
  10314. "homepage": "https://symfony.com/contributors"
  10315. }
  10316. ],
  10317. "description": "Symfony Console Component",
  10318. "homepage": "https://symfony.com",
  10319. "funding": [
  10320. {
  10321. "url": "https://symfony.com/sponsor",
  10322. "type": "custom"
  10323. },
  10324. {
  10325. "url": "https://github.com/fabpot",
  10326. "type": "github"
  10327. },
  10328. {
  10329. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10330. "type": "tidelift"
  10331. }
  10332. ],
  10333. "time": "2020-10-24T11:50:19+00:00"
  10334. },
  10335. {
  10336. "name": "symfony/css-selector",
  10337. "version": "v4.4.17",
  10338. "source": {
  10339. "type": "git",
  10340. "url": "https://github.com/symfony/css-selector.git",
  10341. "reference": "5e6efcb6e5d120249da366417e2517c55b50c931"
  10342. },
  10343. "dist": {
  10344. "type": "zip",
  10345. "url": "https://api.github.com/repos/symfony/css-selector/zipball/5e6efcb6e5d120249da366417e2517c55b50c931",
  10346. "reference": "5e6efcb6e5d120249da366417e2517c55b50c931",
  10347. "shasum": ""
  10348. },
  10349. "require": {
  10350. "php": ">=7.1.3"
  10351. },
  10352. "type": "library",
  10353. "autoload": {
  10354. "psr-4": {
  10355. "Symfony\\Component\\CssSelector\\": ""
  10356. },
  10357. "exclude-from-classmap": [
  10358. "/Tests/"
  10359. ]
  10360. },
  10361. "notification-url": "https://packagist.org/downloads/",
  10362. "license": [
  10363. "MIT"
  10364. ],
  10365. "authors": [
  10366. {
  10367. "name": "Fabien Potencier",
  10368. "email": "fabien@symfony.com"
  10369. },
  10370. {
  10371. "name": "Jean-François Simon",
  10372. "email": "jeanfrancois.simon@sensiolabs.com"
  10373. },
  10374. {
  10375. "name": "Symfony Community",
  10376. "homepage": "https://symfony.com/contributors"
  10377. }
  10378. ],
  10379. "description": "Symfony CssSelector Component",
  10380. "homepage": "https://symfony.com",
  10381. "funding": [
  10382. {
  10383. "url": "https://symfony.com/sponsor",
  10384. "type": "custom"
  10385. },
  10386. {
  10387. "url": "https://github.com/fabpot",
  10388. "type": "github"
  10389. },
  10390. {
  10391. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10392. "type": "tidelift"
  10393. }
  10394. ],
  10395. "time": "2020-10-28T20:42:29+00:00"
  10396. },
  10397. {
  10398. "name": "symfony/debug",
  10399. "version": "v4.4.16",
  10400. "source": {
  10401. "type": "git",
  10402. "url": "https://github.com/symfony/debug.git",
  10403. "reference": "c87adf3fc1cd0bf4758316a3a150d50a8f957ef4"
  10404. },
  10405. "dist": {
  10406. "type": "zip",
  10407. "url": "https://api.github.com/repos/symfony/debug/zipball/c87adf3fc1cd0bf4758316a3a150d50a8f957ef4",
  10408. "reference": "c87adf3fc1cd0bf4758316a3a150d50a8f957ef4",
  10409. "shasum": ""
  10410. },
  10411. "require": {
  10412. "php": ">=7.1.3",
  10413. "psr/log": "~1.0",
  10414. "symfony/polyfill-php80": "^1.15"
  10415. },
  10416. "conflict": {
  10417. "symfony/http-kernel": "<3.4"
  10418. },
  10419. "require-dev": {
  10420. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  10421. },
  10422. "type": "library",
  10423. "autoload": {
  10424. "psr-4": {
  10425. "Symfony\\Component\\Debug\\": ""
  10426. },
  10427. "exclude-from-classmap": [
  10428. "/Tests/"
  10429. ]
  10430. },
  10431. "notification-url": "https://packagist.org/downloads/",
  10432. "license": [
  10433. "MIT"
  10434. ],
  10435. "authors": [
  10436. {
  10437. "name": "Fabien Potencier",
  10438. "email": "fabien@symfony.com"
  10439. },
  10440. {
  10441. "name": "Symfony Community",
  10442. "homepage": "https://symfony.com/contributors"
  10443. }
  10444. ],
  10445. "description": "Symfony Debug Component",
  10446. "homepage": "https://symfony.com",
  10447. "funding": [
  10448. {
  10449. "url": "https://symfony.com/sponsor",
  10450. "type": "custom"
  10451. },
  10452. {
  10453. "url": "https://github.com/fabpot",
  10454. "type": "github"
  10455. },
  10456. {
  10457. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10458. "type": "tidelift"
  10459. }
  10460. ],
  10461. "time": "2020-10-24T11:50:19+00:00"
  10462. },
  10463. {
  10464. "name": "symfony/dependency-injection",
  10465. "version": "v4.4.16",
  10466. "source": {
  10467. "type": "git",
  10468. "url": "https://github.com/symfony/dependency-injection.git",
  10469. "reference": "4c41ad68924fd8f9e55e1cd77fd6bc28daa3fe89"
  10470. },
  10471. "dist": {
  10472. "type": "zip",
  10473. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/4c41ad68924fd8f9e55e1cd77fd6bc28daa3fe89",
  10474. "reference": "4c41ad68924fd8f9e55e1cd77fd6bc28daa3fe89",
  10475. "shasum": ""
  10476. },
  10477. "require": {
  10478. "php": ">=7.1.3",
  10479. "psr/container": "^1.0",
  10480. "symfony/service-contracts": "^1.1.6|^2"
  10481. },
  10482. "conflict": {
  10483. "symfony/config": "<4.3|>=5.0",
  10484. "symfony/finder": "<3.4",
  10485. "symfony/proxy-manager-bridge": "<3.4",
  10486. "symfony/yaml": "<3.4"
  10487. },
  10488. "provide": {
  10489. "psr/container-implementation": "1.0",
  10490. "symfony/service-implementation": "1.0"
  10491. },
  10492. "require-dev": {
  10493. "symfony/config": "^4.3",
  10494. "symfony/expression-language": "^3.4|^4.0|^5.0",
  10495. "symfony/yaml": "^3.4|^4.0|^5.0"
  10496. },
  10497. "suggest": {
  10498. "symfony/config": "",
  10499. "symfony/expression-language": "For using expressions in service container configuration",
  10500. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  10501. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  10502. "symfony/yaml": ""
  10503. },
  10504. "type": "library",
  10505. "autoload": {
  10506. "psr-4": {
  10507. "Symfony\\Component\\DependencyInjection\\": ""
  10508. },
  10509. "exclude-from-classmap": [
  10510. "/Tests/"
  10511. ]
  10512. },
  10513. "notification-url": "https://packagist.org/downloads/",
  10514. "license": [
  10515. "MIT"
  10516. ],
  10517. "authors": [
  10518. {
  10519. "name": "Fabien Potencier",
  10520. "email": "fabien@symfony.com"
  10521. },
  10522. {
  10523. "name": "Symfony Community",
  10524. "homepage": "https://symfony.com/contributors"
  10525. }
  10526. ],
  10527. "description": "Symfony DependencyInjection Component",
  10528. "homepage": "https://symfony.com",
  10529. "funding": [
  10530. {
  10531. "url": "https://symfony.com/sponsor",
  10532. "type": "custom"
  10533. },
  10534. {
  10535. "url": "https://github.com/fabpot",
  10536. "type": "github"
  10537. },
  10538. {
  10539. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10540. "type": "tidelift"
  10541. }
  10542. ],
  10543. "time": "2020-10-27T10:05:40+00:00"
  10544. },
  10545. {
  10546. "name": "symfony/dom-crawler",
  10547. "version": "v4.4.17",
  10548. "source": {
  10549. "type": "git",
  10550. "url": "https://github.com/symfony/dom-crawler.git",
  10551. "reference": "30ad9ac96a01913195bf0328d48e29d54fa53e6e"
  10552. },
  10553. "dist": {
  10554. "type": "zip",
  10555. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/30ad9ac96a01913195bf0328d48e29d54fa53e6e",
  10556. "reference": "30ad9ac96a01913195bf0328d48e29d54fa53e6e",
  10557. "shasum": ""
  10558. },
  10559. "require": {
  10560. "php": ">=7.1.3",
  10561. "symfony/polyfill-ctype": "~1.8",
  10562. "symfony/polyfill-mbstring": "~1.0"
  10563. },
  10564. "conflict": {
  10565. "masterminds/html5": "<2.6"
  10566. },
  10567. "require-dev": {
  10568. "masterminds/html5": "^2.6",
  10569. "symfony/css-selector": "^3.4|^4.0|^5.0"
  10570. },
  10571. "suggest": {
  10572. "symfony/css-selector": ""
  10573. },
  10574. "type": "library",
  10575. "autoload": {
  10576. "psr-4": {
  10577. "Symfony\\Component\\DomCrawler\\": ""
  10578. },
  10579. "exclude-from-classmap": [
  10580. "/Tests/"
  10581. ]
  10582. },
  10583. "notification-url": "https://packagist.org/downloads/",
  10584. "license": [
  10585. "MIT"
  10586. ],
  10587. "authors": [
  10588. {
  10589. "name": "Fabien Potencier",
  10590. "email": "fabien@symfony.com"
  10591. },
  10592. {
  10593. "name": "Symfony Community",
  10594. "homepage": "https://symfony.com/contributors"
  10595. }
  10596. ],
  10597. "description": "Symfony DomCrawler Component",
  10598. "homepage": "https://symfony.com",
  10599. "funding": [
  10600. {
  10601. "url": "https://symfony.com/sponsor",
  10602. "type": "custom"
  10603. },
  10604. {
  10605. "url": "https://github.com/fabpot",
  10606. "type": "github"
  10607. },
  10608. {
  10609. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10610. "type": "tidelift"
  10611. }
  10612. ],
  10613. "time": "2020-10-24T11:50:19+00:00"
  10614. },
  10615. {
  10616. "name": "symfony/error-handler",
  10617. "version": "v4.4.16",
  10618. "source": {
  10619. "type": "git",
  10620. "url": "https://github.com/symfony/error-handler.git",
  10621. "reference": "363cca01cabf98e4f1c447b14d0a68617f003613"
  10622. },
  10623. "dist": {
  10624. "type": "zip",
  10625. "url": "https://api.github.com/repos/symfony/error-handler/zipball/363cca01cabf98e4f1c447b14d0a68617f003613",
  10626. "reference": "363cca01cabf98e4f1c447b14d0a68617f003613",
  10627. "shasum": ""
  10628. },
  10629. "require": {
  10630. "php": ">=7.1.3",
  10631. "psr/log": "~1.0",
  10632. "symfony/debug": "^4.4.5",
  10633. "symfony/polyfill-php80": "^1.15",
  10634. "symfony/var-dumper": "^4.4|^5.0"
  10635. },
  10636. "require-dev": {
  10637. "symfony/http-kernel": "^4.4|^5.0",
  10638. "symfony/serializer": "^4.4|^5.0"
  10639. },
  10640. "type": "library",
  10641. "autoload": {
  10642. "psr-4": {
  10643. "Symfony\\Component\\ErrorHandler\\": ""
  10644. },
  10645. "exclude-from-classmap": [
  10646. "/Tests/"
  10647. ]
  10648. },
  10649. "notification-url": "https://packagist.org/downloads/",
  10650. "license": [
  10651. "MIT"
  10652. ],
  10653. "authors": [
  10654. {
  10655. "name": "Fabien Potencier",
  10656. "email": "fabien@symfony.com"
  10657. },
  10658. {
  10659. "name": "Symfony Community",
  10660. "homepage": "https://symfony.com/contributors"
  10661. }
  10662. ],
  10663. "description": "Symfony ErrorHandler Component",
  10664. "homepage": "https://symfony.com",
  10665. "funding": [
  10666. {
  10667. "url": "https://symfony.com/sponsor",
  10668. "type": "custom"
  10669. },
  10670. {
  10671. "url": "https://github.com/fabpot",
  10672. "type": "github"
  10673. },
  10674. {
  10675. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10676. "type": "tidelift"
  10677. }
  10678. ],
  10679. "time": "2020-10-24T11:50:19+00:00"
  10680. },
  10681. {
  10682. "name": "symfony/event-dispatcher",
  10683. "version": "v4.4.16",
  10684. "source": {
  10685. "type": "git",
  10686. "url": "https://github.com/symfony/event-dispatcher.git",
  10687. "reference": "4204f13d2d0b7ad09454f221bb2195fccdf1fe98"
  10688. },
  10689. "dist": {
  10690. "type": "zip",
  10691. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/4204f13d2d0b7ad09454f221bb2195fccdf1fe98",
  10692. "reference": "4204f13d2d0b7ad09454f221bb2195fccdf1fe98",
  10693. "shasum": ""
  10694. },
  10695. "require": {
  10696. "php": ">=7.1.3",
  10697. "symfony/event-dispatcher-contracts": "^1.1"
  10698. },
  10699. "conflict": {
  10700. "symfony/dependency-injection": "<3.4"
  10701. },
  10702. "provide": {
  10703. "psr/event-dispatcher-implementation": "1.0",
  10704. "symfony/event-dispatcher-implementation": "1.1"
  10705. },
  10706. "require-dev": {
  10707. "psr/log": "~1.0",
  10708. "symfony/config": "^3.4|^4.0|^5.0",
  10709. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  10710. "symfony/error-handler": "~3.4|~4.4",
  10711. "symfony/expression-language": "^3.4|^4.0|^5.0",
  10712. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  10713. "symfony/service-contracts": "^1.1|^2",
  10714. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  10715. },
  10716. "suggest": {
  10717. "symfony/dependency-injection": "",
  10718. "symfony/http-kernel": ""
  10719. },
  10720. "type": "library",
  10721. "autoload": {
  10722. "psr-4": {
  10723. "Symfony\\Component\\EventDispatcher\\": ""
  10724. },
  10725. "exclude-from-classmap": [
  10726. "/Tests/"
  10727. ]
  10728. },
  10729. "notification-url": "https://packagist.org/downloads/",
  10730. "license": [
  10731. "MIT"
  10732. ],
  10733. "authors": [
  10734. {
  10735. "name": "Fabien Potencier",
  10736. "email": "fabien@symfony.com"
  10737. },
  10738. {
  10739. "name": "Symfony Community",
  10740. "homepage": "https://symfony.com/contributors"
  10741. }
  10742. ],
  10743. "description": "Symfony EventDispatcher Component",
  10744. "homepage": "https://symfony.com",
  10745. "funding": [
  10746. {
  10747. "url": "https://symfony.com/sponsor",
  10748. "type": "custom"
  10749. },
  10750. {
  10751. "url": "https://github.com/fabpot",
  10752. "type": "github"
  10753. },
  10754. {
  10755. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10756. "type": "tidelift"
  10757. }
  10758. ],
  10759. "time": "2020-10-24T11:50:19+00:00"
  10760. },
  10761. {
  10762. "name": "symfony/event-dispatcher-contracts",
  10763. "version": "v1.1.9",
  10764. "source": {
  10765. "type": "git",
  10766. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10767. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7"
  10768. },
  10769. "dist": {
  10770. "type": "zip",
  10771. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  10772. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  10773. "shasum": ""
  10774. },
  10775. "require": {
  10776. "php": ">=7.1.3"
  10777. },
  10778. "suggest": {
  10779. "psr/event-dispatcher": "",
  10780. "symfony/event-dispatcher-implementation": ""
  10781. },
  10782. "type": "library",
  10783. "extra": {
  10784. "branch-alias": {
  10785. "dev-master": "1.1-dev"
  10786. },
  10787. "thanks": {
  10788. "name": "symfony/contracts",
  10789. "url": "https://github.com/symfony/contracts"
  10790. }
  10791. },
  10792. "autoload": {
  10793. "psr-4": {
  10794. "Symfony\\Contracts\\EventDispatcher\\": ""
  10795. }
  10796. },
  10797. "notification-url": "https://packagist.org/downloads/",
  10798. "license": [
  10799. "MIT"
  10800. ],
  10801. "authors": [
  10802. {
  10803. "name": "Nicolas Grekas",
  10804. "email": "p@tchwork.com"
  10805. },
  10806. {
  10807. "name": "Symfony Community",
  10808. "homepage": "https://symfony.com/contributors"
  10809. }
  10810. ],
  10811. "description": "Generic abstractions related to dispatching event",
  10812. "homepage": "https://symfony.com",
  10813. "keywords": [
  10814. "abstractions",
  10815. "contracts",
  10816. "decoupling",
  10817. "interfaces",
  10818. "interoperability",
  10819. "standards"
  10820. ],
  10821. "funding": [
  10822. {
  10823. "url": "https://symfony.com/sponsor",
  10824. "type": "custom"
  10825. },
  10826. {
  10827. "url": "https://github.com/fabpot",
  10828. "type": "github"
  10829. },
  10830. {
  10831. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10832. "type": "tidelift"
  10833. }
  10834. ],
  10835. "time": "2020-07-06T13:19:58+00:00"
  10836. },
  10837. {
  10838. "name": "symfony/filesystem",
  10839. "version": "v4.4.17",
  10840. "source": {
  10841. "type": "git",
  10842. "url": "https://github.com/symfony/filesystem.git",
  10843. "reference": "17b83e36a911aefa2cfe04bbf6328ec4c040c1b2"
  10844. },
  10845. "dist": {
  10846. "type": "zip",
  10847. "url": "https://api.github.com/repos/symfony/filesystem/zipball/17b83e36a911aefa2cfe04bbf6328ec4c040c1b2",
  10848. "reference": "17b83e36a911aefa2cfe04bbf6328ec4c040c1b2",
  10849. "shasum": ""
  10850. },
  10851. "require": {
  10852. "php": ">=7.1.3",
  10853. "symfony/polyfill-ctype": "~1.8"
  10854. },
  10855. "type": "library",
  10856. "autoload": {
  10857. "psr-4": {
  10858. "Symfony\\Component\\Filesystem\\": ""
  10859. },
  10860. "exclude-from-classmap": [
  10861. "/Tests/"
  10862. ]
  10863. },
  10864. "notification-url": "https://packagist.org/downloads/",
  10865. "license": [
  10866. "MIT"
  10867. ],
  10868. "authors": [
  10869. {
  10870. "name": "Fabien Potencier",
  10871. "email": "fabien@symfony.com"
  10872. },
  10873. {
  10874. "name": "Symfony Community",
  10875. "homepage": "https://symfony.com/contributors"
  10876. }
  10877. ],
  10878. "description": "Symfony Filesystem Component",
  10879. "homepage": "https://symfony.com",
  10880. "funding": [
  10881. {
  10882. "url": "https://symfony.com/sponsor",
  10883. "type": "custom"
  10884. },
  10885. {
  10886. "url": "https://github.com/fabpot",
  10887. "type": "github"
  10888. },
  10889. {
  10890. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10891. "type": "tidelift"
  10892. }
  10893. ],
  10894. "time": "2020-11-11T22:20:15+00:00"
  10895. },
  10896. {
  10897. "name": "symfony/finder",
  10898. "version": "v4.4.17",
  10899. "source": {
  10900. "type": "git",
  10901. "url": "https://github.com/symfony/finder.git",
  10902. "reference": "9f1d1d883b79a91ef320c0c6e803494e042ef36e"
  10903. },
  10904. "dist": {
  10905. "type": "zip",
  10906. "url": "https://api.github.com/repos/symfony/finder/zipball/9f1d1d883b79a91ef320c0c6e803494e042ef36e",
  10907. "reference": "9f1d1d883b79a91ef320c0c6e803494e042ef36e",
  10908. "shasum": ""
  10909. },
  10910. "require": {
  10911. "php": ">=7.1.3"
  10912. },
  10913. "type": "library",
  10914. "autoload": {
  10915. "psr-4": {
  10916. "Symfony\\Component\\Finder\\": ""
  10917. },
  10918. "exclude-from-classmap": [
  10919. "/Tests/"
  10920. ]
  10921. },
  10922. "notification-url": "https://packagist.org/downloads/",
  10923. "license": [
  10924. "MIT"
  10925. ],
  10926. "authors": [
  10927. {
  10928. "name": "Fabien Potencier",
  10929. "email": "fabien@symfony.com"
  10930. },
  10931. {
  10932. "name": "Symfony Community",
  10933. "homepage": "https://symfony.com/contributors"
  10934. }
  10935. ],
  10936. "description": "Symfony Finder Component",
  10937. "homepage": "https://symfony.com",
  10938. "funding": [
  10939. {
  10940. "url": "https://symfony.com/sponsor",
  10941. "type": "custom"
  10942. },
  10943. {
  10944. "url": "https://github.com/fabpot",
  10945. "type": "github"
  10946. },
  10947. {
  10948. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10949. "type": "tidelift"
  10950. }
  10951. ],
  10952. "time": "2020-11-17T19:45:34+00:00"
  10953. },
  10954. {
  10955. "name": "symfony/http-client-contracts",
  10956. "version": "v2.3.1",
  10957. "source": {
  10958. "type": "git",
  10959. "url": "https://github.com/symfony/http-client-contracts.git",
  10960. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  10961. },
  10962. "dist": {
  10963. "type": "zip",
  10964. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  10965. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  10966. "shasum": ""
  10967. },
  10968. "require": {
  10969. "php": ">=7.2.5"
  10970. },
  10971. "suggest": {
  10972. "symfony/http-client-implementation": ""
  10973. },
  10974. "type": "library",
  10975. "extra": {
  10976. "branch-version": "2.3",
  10977. "branch-alias": {
  10978. "dev-main": "2.3-dev"
  10979. },
  10980. "thanks": {
  10981. "name": "symfony/contracts",
  10982. "url": "https://github.com/symfony/contracts"
  10983. }
  10984. },
  10985. "autoload": {
  10986. "psr-4": {
  10987. "Symfony\\Contracts\\HttpClient\\": ""
  10988. }
  10989. },
  10990. "notification-url": "https://packagist.org/downloads/",
  10991. "license": [
  10992. "MIT"
  10993. ],
  10994. "authors": [
  10995. {
  10996. "name": "Nicolas Grekas",
  10997. "email": "p@tchwork.com"
  10998. },
  10999. {
  11000. "name": "Symfony Community",
  11001. "homepage": "https://symfony.com/contributors"
  11002. }
  11003. ],
  11004. "description": "Generic abstractions related to HTTP clients",
  11005. "homepage": "https://symfony.com",
  11006. "keywords": [
  11007. "abstractions",
  11008. "contracts",
  11009. "decoupling",
  11010. "interfaces",
  11011. "interoperability",
  11012. "standards"
  11013. ],
  11014. "funding": [
  11015. {
  11016. "url": "https://symfony.com/sponsor",
  11017. "type": "custom"
  11018. },
  11019. {
  11020. "url": "https://github.com/fabpot",
  11021. "type": "github"
  11022. },
  11023. {
  11024. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11025. "type": "tidelift"
  11026. }
  11027. ],
  11028. "time": "2020-10-14T17:08:19+00:00"
  11029. },
  11030. {
  11031. "name": "symfony/http-foundation",
  11032. "version": "v4.4.16",
  11033. "source": {
  11034. "type": "git",
  11035. "url": "https://github.com/symfony/http-foundation.git",
  11036. "reference": "827a00811ef699e809a201ceafac0b2b246bf38a"
  11037. },
  11038. "dist": {
  11039. "type": "zip",
  11040. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/827a00811ef699e809a201ceafac0b2b246bf38a",
  11041. "reference": "827a00811ef699e809a201ceafac0b2b246bf38a",
  11042. "shasum": ""
  11043. },
  11044. "require": {
  11045. "php": ">=7.1.3",
  11046. "symfony/mime": "^4.3|^5.0",
  11047. "symfony/polyfill-mbstring": "~1.1"
  11048. },
  11049. "require-dev": {
  11050. "predis/predis": "~1.0",
  11051. "symfony/expression-language": "^3.4|^4.0|^5.0"
  11052. },
  11053. "type": "library",
  11054. "autoload": {
  11055. "psr-4": {
  11056. "Symfony\\Component\\HttpFoundation\\": ""
  11057. },
  11058. "exclude-from-classmap": [
  11059. "/Tests/"
  11060. ]
  11061. },
  11062. "notification-url": "https://packagist.org/downloads/",
  11063. "license": [
  11064. "MIT"
  11065. ],
  11066. "authors": [
  11067. {
  11068. "name": "Fabien Potencier",
  11069. "email": "fabien@symfony.com"
  11070. },
  11071. {
  11072. "name": "Symfony Community",
  11073. "homepage": "https://symfony.com/contributors"
  11074. }
  11075. ],
  11076. "description": "Symfony HttpFoundation Component",
  11077. "homepage": "https://symfony.com",
  11078. "funding": [
  11079. {
  11080. "url": "https://symfony.com/sponsor",
  11081. "type": "custom"
  11082. },
  11083. {
  11084. "url": "https://github.com/fabpot",
  11085. "type": "github"
  11086. },
  11087. {
  11088. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11089. "type": "tidelift"
  11090. }
  11091. ],
  11092. "time": "2020-10-24T11:50:19+00:00"
  11093. },
  11094. {
  11095. "name": "symfony/http-kernel",
  11096. "version": "v4.4.16",
  11097. "source": {
  11098. "type": "git",
  11099. "url": "https://github.com/symfony/http-kernel.git",
  11100. "reference": "109b2a46e470a487ec8b0ffea4b0bb993aaf42ed"
  11101. },
  11102. "dist": {
  11103. "type": "zip",
  11104. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/109b2a46e470a487ec8b0ffea4b0bb993aaf42ed",
  11105. "reference": "109b2a46e470a487ec8b0ffea4b0bb993aaf42ed",
  11106. "shasum": ""
  11107. },
  11108. "require": {
  11109. "php": ">=7.1.3",
  11110. "psr/log": "~1.0",
  11111. "symfony/error-handler": "^4.4",
  11112. "symfony/event-dispatcher": "^4.4",
  11113. "symfony/http-client-contracts": "^1.1|^2",
  11114. "symfony/http-foundation": "^4.4|^5.0",
  11115. "symfony/polyfill-ctype": "^1.8",
  11116. "symfony/polyfill-php73": "^1.9",
  11117. "symfony/polyfill-php80": "^1.15"
  11118. },
  11119. "conflict": {
  11120. "symfony/browser-kit": "<4.3",
  11121. "symfony/config": "<3.4",
  11122. "symfony/console": ">=5",
  11123. "symfony/dependency-injection": "<4.3",
  11124. "symfony/translation": "<4.2",
  11125. "twig/twig": "<1.34|<2.4,>=2"
  11126. },
  11127. "provide": {
  11128. "psr/log-implementation": "1.0"
  11129. },
  11130. "require-dev": {
  11131. "psr/cache": "~1.0",
  11132. "symfony/browser-kit": "^4.3|^5.0",
  11133. "symfony/config": "^3.4|^4.0|^5.0",
  11134. "symfony/console": "^3.4|^4.0",
  11135. "symfony/css-selector": "^3.4|^4.0|^5.0",
  11136. "symfony/dependency-injection": "^4.3|^5.0",
  11137. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  11138. "symfony/expression-language": "^3.4|^4.0|^5.0",
  11139. "symfony/finder": "^3.4|^4.0|^5.0",
  11140. "symfony/process": "^3.4|^4.0|^5.0",
  11141. "symfony/routing": "^3.4|^4.0|^5.0",
  11142. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  11143. "symfony/templating": "^3.4|^4.0|^5.0",
  11144. "symfony/translation": "^4.2|^5.0",
  11145. "symfony/translation-contracts": "^1.1|^2",
  11146. "twig/twig": "^1.34|^2.4|^3.0"
  11147. },
  11148. "suggest": {
  11149. "symfony/browser-kit": "",
  11150. "symfony/config": "",
  11151. "symfony/console": "",
  11152. "symfony/dependency-injection": ""
  11153. },
  11154. "type": "library",
  11155. "autoload": {
  11156. "psr-4": {
  11157. "Symfony\\Component\\HttpKernel\\": ""
  11158. },
  11159. "exclude-from-classmap": [
  11160. "/Tests/"
  11161. ]
  11162. },
  11163. "notification-url": "https://packagist.org/downloads/",
  11164. "license": [
  11165. "MIT"
  11166. ],
  11167. "authors": [
  11168. {
  11169. "name": "Fabien Potencier",
  11170. "email": "fabien@symfony.com"
  11171. },
  11172. {
  11173. "name": "Symfony Community",
  11174. "homepage": "https://symfony.com/contributors"
  11175. }
  11176. ],
  11177. "description": "Symfony HttpKernel Component",
  11178. "homepage": "https://symfony.com",
  11179. "funding": [
  11180. {
  11181. "url": "https://symfony.com/sponsor",
  11182. "type": "custom"
  11183. },
  11184. {
  11185. "url": "https://github.com/fabpot",
  11186. "type": "github"
  11187. },
  11188. {
  11189. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11190. "type": "tidelift"
  11191. }
  11192. ],
  11193. "time": "2020-10-28T05:50:56+00:00"
  11194. },
  11195. {
  11196. "name": "symfony/mime",
  11197. "version": "v5.1.8",
  11198. "source": {
  11199. "type": "git",
  11200. "url": "https://github.com/symfony/mime.git",
  11201. "reference": "f5485a92c24d4bcfc2f3fc648744fb398482ff1b"
  11202. },
  11203. "dist": {
  11204. "type": "zip",
  11205. "url": "https://api.github.com/repos/symfony/mime/zipball/f5485a92c24d4bcfc2f3fc648744fb398482ff1b",
  11206. "reference": "f5485a92c24d4bcfc2f3fc648744fb398482ff1b",
  11207. "shasum": ""
  11208. },
  11209. "require": {
  11210. "php": ">=7.2.5",
  11211. "symfony/polyfill-intl-idn": "^1.10",
  11212. "symfony/polyfill-mbstring": "^1.0",
  11213. "symfony/polyfill-php80": "^1.15"
  11214. },
  11215. "conflict": {
  11216. "symfony/mailer": "<4.4"
  11217. },
  11218. "require-dev": {
  11219. "egulias/email-validator": "^2.1.10",
  11220. "symfony/dependency-injection": "^4.4|^5.0"
  11221. },
  11222. "type": "library",
  11223. "autoload": {
  11224. "psr-4": {
  11225. "Symfony\\Component\\Mime\\": ""
  11226. },
  11227. "exclude-from-classmap": [
  11228. "/Tests/"
  11229. ]
  11230. },
  11231. "notification-url": "https://packagist.org/downloads/",
  11232. "license": [
  11233. "MIT"
  11234. ],
  11235. "authors": [
  11236. {
  11237. "name": "Fabien Potencier",
  11238. "email": "fabien@symfony.com"
  11239. },
  11240. {
  11241. "name": "Symfony Community",
  11242. "homepage": "https://symfony.com/contributors"
  11243. }
  11244. ],
  11245. "description": "A library to manipulate MIME messages",
  11246. "homepage": "https://symfony.com",
  11247. "keywords": [
  11248. "mime",
  11249. "mime-type"
  11250. ],
  11251. "funding": [
  11252. {
  11253. "url": "https://symfony.com/sponsor",
  11254. "type": "custom"
  11255. },
  11256. {
  11257. "url": "https://github.com/fabpot",
  11258. "type": "github"
  11259. },
  11260. {
  11261. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11262. "type": "tidelift"
  11263. }
  11264. ],
  11265. "time": "2020-10-24T12:01:57+00:00"
  11266. },
  11267. {
  11268. "name": "symfony/polyfill-ctype",
  11269. "version": "v1.20.0",
  11270. "source": {
  11271. "type": "git",
  11272. "url": "https://github.com/symfony/polyfill-ctype.git",
  11273. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
  11274. },
  11275. "dist": {
  11276. "type": "zip",
  11277. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  11278. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  11279. "shasum": ""
  11280. },
  11281. "require": {
  11282. "php": ">=7.1"
  11283. },
  11284. "suggest": {
  11285. "ext-ctype": "For best performance"
  11286. },
  11287. "type": "library",
  11288. "extra": {
  11289. "branch-alias": {
  11290. "dev-main": "1.20-dev"
  11291. },
  11292. "thanks": {
  11293. "name": "symfony/polyfill",
  11294. "url": "https://github.com/symfony/polyfill"
  11295. }
  11296. },
  11297. "autoload": {
  11298. "psr-4": {
  11299. "Symfony\\Polyfill\\Ctype\\": ""
  11300. },
  11301. "files": [
  11302. "bootstrap.php"
  11303. ]
  11304. },
  11305. "notification-url": "https://packagist.org/downloads/",
  11306. "license": [
  11307. "MIT"
  11308. ],
  11309. "authors": [
  11310. {
  11311. "name": "Gert de Pagter",
  11312. "email": "BackEndTea@gmail.com"
  11313. },
  11314. {
  11315. "name": "Symfony Community",
  11316. "homepage": "https://symfony.com/contributors"
  11317. }
  11318. ],
  11319. "description": "Symfony polyfill for ctype functions",
  11320. "homepage": "https://symfony.com",
  11321. "keywords": [
  11322. "compatibility",
  11323. "ctype",
  11324. "polyfill",
  11325. "portable"
  11326. ],
  11327. "funding": [
  11328. {
  11329. "url": "https://symfony.com/sponsor",
  11330. "type": "custom"
  11331. },
  11332. {
  11333. "url": "https://github.com/fabpot",
  11334. "type": "github"
  11335. },
  11336. {
  11337. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11338. "type": "tidelift"
  11339. }
  11340. ],
  11341. "time": "2020-10-23T14:02:19+00:00"
  11342. },
  11343. {
  11344. "name": "symfony/polyfill-iconv",
  11345. "version": "v1.20.0",
  11346. "source": {
  11347. "type": "git",
  11348. "url": "https://github.com/symfony/polyfill-iconv.git",
  11349. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024"
  11350. },
  11351. "dist": {
  11352. "type": "zip",
  11353. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c536646fdb4f29104dd26effc2fdcb9a5b085024",
  11354. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024",
  11355. "shasum": ""
  11356. },
  11357. "require": {
  11358. "php": ">=7.1"
  11359. },
  11360. "suggest": {
  11361. "ext-iconv": "For best performance"
  11362. },
  11363. "type": "library",
  11364. "extra": {
  11365. "branch-alias": {
  11366. "dev-main": "1.20-dev"
  11367. },
  11368. "thanks": {
  11369. "name": "symfony/polyfill",
  11370. "url": "https://github.com/symfony/polyfill"
  11371. }
  11372. },
  11373. "autoload": {
  11374. "psr-4": {
  11375. "Symfony\\Polyfill\\Iconv\\": ""
  11376. },
  11377. "files": [
  11378. "bootstrap.php"
  11379. ]
  11380. },
  11381. "notification-url": "https://packagist.org/downloads/",
  11382. "license": [
  11383. "MIT"
  11384. ],
  11385. "authors": [
  11386. {
  11387. "name": "Nicolas Grekas",
  11388. "email": "p@tchwork.com"
  11389. },
  11390. {
  11391. "name": "Symfony Community",
  11392. "homepage": "https://symfony.com/contributors"
  11393. }
  11394. ],
  11395. "description": "Symfony polyfill for the Iconv extension",
  11396. "homepage": "https://symfony.com",
  11397. "keywords": [
  11398. "compatibility",
  11399. "iconv",
  11400. "polyfill",
  11401. "portable",
  11402. "shim"
  11403. ],
  11404. "funding": [
  11405. {
  11406. "url": "https://symfony.com/sponsor",
  11407. "type": "custom"
  11408. },
  11409. {
  11410. "url": "https://github.com/fabpot",
  11411. "type": "github"
  11412. },
  11413. {
  11414. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11415. "type": "tidelift"
  11416. }
  11417. ],
  11418. "time": "2020-10-23T14:02:19+00:00"
  11419. },
  11420. {
  11421. "name": "symfony/polyfill-intl-idn",
  11422. "version": "v1.20.0",
  11423. "source": {
  11424. "type": "git",
  11425. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  11426. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117"
  11427. },
  11428. "dist": {
  11429. "type": "zip",
  11430. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117",
  11431. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117",
  11432. "shasum": ""
  11433. },
  11434. "require": {
  11435. "php": ">=7.1",
  11436. "symfony/polyfill-intl-normalizer": "^1.10",
  11437. "symfony/polyfill-php72": "^1.10"
  11438. },
  11439. "suggest": {
  11440. "ext-intl": "For best performance"
  11441. },
  11442. "type": "library",
  11443. "extra": {
  11444. "branch-alias": {
  11445. "dev-main": "1.20-dev"
  11446. },
  11447. "thanks": {
  11448. "name": "symfony/polyfill",
  11449. "url": "https://github.com/symfony/polyfill"
  11450. }
  11451. },
  11452. "autoload": {
  11453. "psr-4": {
  11454. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  11455. },
  11456. "files": [
  11457. "bootstrap.php"
  11458. ]
  11459. },
  11460. "notification-url": "https://packagist.org/downloads/",
  11461. "license": [
  11462. "MIT"
  11463. ],
  11464. "authors": [
  11465. {
  11466. "name": "Laurent Bassin",
  11467. "email": "laurent@bassin.info"
  11468. },
  11469. {
  11470. "name": "Trevor Rowbotham",
  11471. "email": "trevor.rowbotham@pm.me"
  11472. },
  11473. {
  11474. "name": "Symfony Community",
  11475. "homepage": "https://symfony.com/contributors"
  11476. }
  11477. ],
  11478. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  11479. "homepage": "https://symfony.com",
  11480. "keywords": [
  11481. "compatibility",
  11482. "idn",
  11483. "intl",
  11484. "polyfill",
  11485. "portable",
  11486. "shim"
  11487. ],
  11488. "funding": [
  11489. {
  11490. "url": "https://symfony.com/sponsor",
  11491. "type": "custom"
  11492. },
  11493. {
  11494. "url": "https://github.com/fabpot",
  11495. "type": "github"
  11496. },
  11497. {
  11498. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11499. "type": "tidelift"
  11500. }
  11501. ],
  11502. "time": "2020-10-23T14:02:19+00:00"
  11503. },
  11504. {
  11505. "name": "symfony/polyfill-intl-normalizer",
  11506. "version": "v1.20.0",
  11507. "source": {
  11508. "type": "git",
  11509. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  11510. "reference": "727d1096295d807c309fb01a851577302394c897"
  11511. },
  11512. "dist": {
  11513. "type": "zip",
  11514. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897",
  11515. "reference": "727d1096295d807c309fb01a851577302394c897",
  11516. "shasum": ""
  11517. },
  11518. "require": {
  11519. "php": ">=7.1"
  11520. },
  11521. "suggest": {
  11522. "ext-intl": "For best performance"
  11523. },
  11524. "type": "library",
  11525. "extra": {
  11526. "branch-alias": {
  11527. "dev-main": "1.20-dev"
  11528. },
  11529. "thanks": {
  11530. "name": "symfony/polyfill",
  11531. "url": "https://github.com/symfony/polyfill"
  11532. }
  11533. },
  11534. "autoload": {
  11535. "psr-4": {
  11536. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  11537. },
  11538. "files": [
  11539. "bootstrap.php"
  11540. ],
  11541. "classmap": [
  11542. "Resources/stubs"
  11543. ]
  11544. },
  11545. "notification-url": "https://packagist.org/downloads/",
  11546. "license": [
  11547. "MIT"
  11548. ],
  11549. "authors": [
  11550. {
  11551. "name": "Nicolas Grekas",
  11552. "email": "p@tchwork.com"
  11553. },
  11554. {
  11555. "name": "Symfony Community",
  11556. "homepage": "https://symfony.com/contributors"
  11557. }
  11558. ],
  11559. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  11560. "homepage": "https://symfony.com",
  11561. "keywords": [
  11562. "compatibility",
  11563. "intl",
  11564. "normalizer",
  11565. "polyfill",
  11566. "portable",
  11567. "shim"
  11568. ],
  11569. "funding": [
  11570. {
  11571. "url": "https://symfony.com/sponsor",
  11572. "type": "custom"
  11573. },
  11574. {
  11575. "url": "https://github.com/fabpot",
  11576. "type": "github"
  11577. },
  11578. {
  11579. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11580. "type": "tidelift"
  11581. }
  11582. ],
  11583. "time": "2020-10-23T14:02:19+00:00"
  11584. },
  11585. {
  11586. "name": "symfony/polyfill-mbstring",
  11587. "version": "v1.20.0",
  11588. "source": {
  11589. "type": "git",
  11590. "url": "https://github.com/symfony/polyfill-mbstring.git",
  11591. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
  11592. },
  11593. "dist": {
  11594. "type": "zip",
  11595. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
  11596. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
  11597. "shasum": ""
  11598. },
  11599. "require": {
  11600. "php": ">=7.1"
  11601. },
  11602. "suggest": {
  11603. "ext-mbstring": "For best performance"
  11604. },
  11605. "type": "library",
  11606. "extra": {
  11607. "branch-alias": {
  11608. "dev-main": "1.20-dev"
  11609. },
  11610. "thanks": {
  11611. "name": "symfony/polyfill",
  11612. "url": "https://github.com/symfony/polyfill"
  11613. }
  11614. },
  11615. "autoload": {
  11616. "psr-4": {
  11617. "Symfony\\Polyfill\\Mbstring\\": ""
  11618. },
  11619. "files": [
  11620. "bootstrap.php"
  11621. ]
  11622. },
  11623. "notification-url": "https://packagist.org/downloads/",
  11624. "license": [
  11625. "MIT"
  11626. ],
  11627. "authors": [
  11628. {
  11629. "name": "Nicolas Grekas",
  11630. "email": "p@tchwork.com"
  11631. },
  11632. {
  11633. "name": "Symfony Community",
  11634. "homepage": "https://symfony.com/contributors"
  11635. }
  11636. ],
  11637. "description": "Symfony polyfill for the Mbstring extension",
  11638. "homepage": "https://symfony.com",
  11639. "keywords": [
  11640. "compatibility",
  11641. "mbstring",
  11642. "polyfill",
  11643. "portable",
  11644. "shim"
  11645. ],
  11646. "funding": [
  11647. {
  11648. "url": "https://symfony.com/sponsor",
  11649. "type": "custom"
  11650. },
  11651. {
  11652. "url": "https://github.com/fabpot",
  11653. "type": "github"
  11654. },
  11655. {
  11656. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11657. "type": "tidelift"
  11658. }
  11659. ],
  11660. "time": "2020-10-23T14:02:19+00:00"
  11661. },
  11662. {
  11663. "name": "symfony/polyfill-php72",
  11664. "version": "v1.22.0",
  11665. "source": {
  11666. "type": "git",
  11667. "url": "https://github.com/symfony/polyfill-php72.git",
  11668. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"
  11669. },
  11670. "dist": {
  11671. "type": "zip",
  11672. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  11673. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  11674. "shasum": ""
  11675. },
  11676. "require": {
  11677. "php": ">=7.1"
  11678. },
  11679. "type": "library",
  11680. "extra": {
  11681. "branch-alias": {
  11682. "dev-main": "1.22-dev"
  11683. },
  11684. "thanks": {
  11685. "name": "symfony/polyfill",
  11686. "url": "https://github.com/symfony/polyfill"
  11687. }
  11688. },
  11689. "autoload": {
  11690. "psr-4": {
  11691. "Symfony\\Polyfill\\Php72\\": ""
  11692. },
  11693. "files": [
  11694. "bootstrap.php"
  11695. ]
  11696. },
  11697. "notification-url": "https://packagist.org/downloads/",
  11698. "license": [
  11699. "MIT"
  11700. ],
  11701. "authors": [
  11702. {
  11703. "name": "Nicolas Grekas",
  11704. "email": "p@tchwork.com"
  11705. },
  11706. {
  11707. "name": "Symfony Community",
  11708. "homepage": "https://symfony.com/contributors"
  11709. }
  11710. ],
  11711. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  11712. "homepage": "https://symfony.com",
  11713. "keywords": [
  11714. "compatibility",
  11715. "polyfill",
  11716. "portable",
  11717. "shim"
  11718. ],
  11719. "funding": [
  11720. {
  11721. "url": "https://symfony.com/sponsor",
  11722. "type": "custom"
  11723. },
  11724. {
  11725. "url": "https://github.com/fabpot",
  11726. "type": "github"
  11727. },
  11728. {
  11729. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11730. "type": "tidelift"
  11731. }
  11732. ],
  11733. "time": "2021-01-07T16:49:33+00:00"
  11734. },
  11735. {
  11736. "name": "symfony/polyfill-php73",
  11737. "version": "v1.22.0",
  11738. "source": {
  11739. "type": "git",
  11740. "url": "https://github.com/symfony/polyfill-php73.git",
  11741. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2"
  11742. },
  11743. "dist": {
  11744. "type": "zip",
  11745. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  11746. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  11747. "shasum": ""
  11748. },
  11749. "require": {
  11750. "php": ">=7.1"
  11751. },
  11752. "type": "library",
  11753. "extra": {
  11754. "branch-alias": {
  11755. "dev-main": "1.22-dev"
  11756. },
  11757. "thanks": {
  11758. "name": "symfony/polyfill",
  11759. "url": "https://github.com/symfony/polyfill"
  11760. }
  11761. },
  11762. "autoload": {
  11763. "psr-4": {
  11764. "Symfony\\Polyfill\\Php73\\": ""
  11765. },
  11766. "files": [
  11767. "bootstrap.php"
  11768. ],
  11769. "classmap": [
  11770. "Resources/stubs"
  11771. ]
  11772. },
  11773. "notification-url": "https://packagist.org/downloads/",
  11774. "license": [
  11775. "MIT"
  11776. ],
  11777. "authors": [
  11778. {
  11779. "name": "Nicolas Grekas",
  11780. "email": "p@tchwork.com"
  11781. },
  11782. {
  11783. "name": "Symfony Community",
  11784. "homepage": "https://symfony.com/contributors"
  11785. }
  11786. ],
  11787. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  11788. "homepage": "https://symfony.com",
  11789. "keywords": [
  11790. "compatibility",
  11791. "polyfill",
  11792. "portable",
  11793. "shim"
  11794. ],
  11795. "funding": [
  11796. {
  11797. "url": "https://symfony.com/sponsor",
  11798. "type": "custom"
  11799. },
  11800. {
  11801. "url": "https://github.com/fabpot",
  11802. "type": "github"
  11803. },
  11804. {
  11805. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11806. "type": "tidelift"
  11807. }
  11808. ],
  11809. "time": "2021-01-07T16:49:33+00:00"
  11810. },
  11811. {
  11812. "name": "symfony/polyfill-php80",
  11813. "version": "v1.20.0",
  11814. "source": {
  11815. "type": "git",
  11816. "url": "https://github.com/symfony/polyfill-php80.git",
  11817. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de"
  11818. },
  11819. "dist": {
  11820. "type": "zip",
  11821. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  11822. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  11823. "shasum": ""
  11824. },
  11825. "require": {
  11826. "php": ">=7.1"
  11827. },
  11828. "type": "library",
  11829. "extra": {
  11830. "branch-alias": {
  11831. "dev-main": "1.20-dev"
  11832. },
  11833. "thanks": {
  11834. "name": "symfony/polyfill",
  11835. "url": "https://github.com/symfony/polyfill"
  11836. }
  11837. },
  11838. "autoload": {
  11839. "psr-4": {
  11840. "Symfony\\Polyfill\\Php80\\": ""
  11841. },
  11842. "files": [
  11843. "bootstrap.php"
  11844. ],
  11845. "classmap": [
  11846. "Resources/stubs"
  11847. ]
  11848. },
  11849. "notification-url": "https://packagist.org/downloads/",
  11850. "license": [
  11851. "MIT"
  11852. ],
  11853. "authors": [
  11854. {
  11855. "name": "Ion Bazan",
  11856. "email": "ion.bazan@gmail.com"
  11857. },
  11858. {
  11859. "name": "Nicolas Grekas",
  11860. "email": "p@tchwork.com"
  11861. },
  11862. {
  11863. "name": "Symfony Community",
  11864. "homepage": "https://symfony.com/contributors"
  11865. }
  11866. ],
  11867. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  11868. "homepage": "https://symfony.com",
  11869. "keywords": [
  11870. "compatibility",
  11871. "polyfill",
  11872. "portable",
  11873. "shim"
  11874. ],
  11875. "funding": [
  11876. {
  11877. "url": "https://symfony.com/sponsor",
  11878. "type": "custom"
  11879. },
  11880. {
  11881. "url": "https://github.com/fabpot",
  11882. "type": "github"
  11883. },
  11884. {
  11885. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11886. "type": "tidelift"
  11887. }
  11888. ],
  11889. "time": "2020-10-23T14:02:19+00:00"
  11890. },
  11891. {
  11892. "name": "symfony/process",
  11893. "version": "v4.4.16",
  11894. "source": {
  11895. "type": "git",
  11896. "url": "https://github.com/symfony/process.git",
  11897. "reference": "2f4b049fb80ca5e9874615a2a85dc2a502090f05"
  11898. },
  11899. "dist": {
  11900. "type": "zip",
  11901. "url": "https://api.github.com/repos/symfony/process/zipball/2f4b049fb80ca5e9874615a2a85dc2a502090f05",
  11902. "reference": "2f4b049fb80ca5e9874615a2a85dc2a502090f05",
  11903. "shasum": ""
  11904. },
  11905. "require": {
  11906. "php": ">=7.1.3"
  11907. },
  11908. "type": "library",
  11909. "autoload": {
  11910. "psr-4": {
  11911. "Symfony\\Component\\Process\\": ""
  11912. },
  11913. "exclude-from-classmap": [
  11914. "/Tests/"
  11915. ]
  11916. },
  11917. "notification-url": "https://packagist.org/downloads/",
  11918. "license": [
  11919. "MIT"
  11920. ],
  11921. "authors": [
  11922. {
  11923. "name": "Fabien Potencier",
  11924. "email": "fabien@symfony.com"
  11925. },
  11926. {
  11927. "name": "Symfony Community",
  11928. "homepage": "https://symfony.com/contributors"
  11929. }
  11930. ],
  11931. "description": "Symfony Process Component",
  11932. "homepage": "https://symfony.com",
  11933. "funding": [
  11934. {
  11935. "url": "https://symfony.com/sponsor",
  11936. "type": "custom"
  11937. },
  11938. {
  11939. "url": "https://github.com/fabpot",
  11940. "type": "github"
  11941. },
  11942. {
  11943. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11944. "type": "tidelift"
  11945. }
  11946. ],
  11947. "time": "2020-10-24T11:50:19+00:00"
  11948. },
  11949. {
  11950. "name": "symfony/psr-http-message-bridge",
  11951. "version": "v2.0.2",
  11952. "source": {
  11953. "type": "git",
  11954. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  11955. "reference": "51a21cb3ba3927d4b4bf8f25cc55763351af5f2e"
  11956. },
  11957. "dist": {
  11958. "type": "zip",
  11959. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/51a21cb3ba3927d4b4bf8f25cc55763351af5f2e",
  11960. "reference": "51a21cb3ba3927d4b4bf8f25cc55763351af5f2e",
  11961. "shasum": ""
  11962. },
  11963. "require": {
  11964. "php": ">=7.1",
  11965. "psr/http-message": "^1.0",
  11966. "symfony/http-foundation": "^4.4 || ^5.0"
  11967. },
  11968. "require-dev": {
  11969. "nyholm/psr7": "^1.1",
  11970. "symfony/phpunit-bridge": "^4.4 || ^5.0"
  11971. },
  11972. "suggest": {
  11973. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  11974. },
  11975. "type": "symfony-bridge",
  11976. "extra": {
  11977. "branch-alias": {
  11978. "dev-master": "2.0-dev"
  11979. }
  11980. },
  11981. "autoload": {
  11982. "psr-4": {
  11983. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  11984. },
  11985. "exclude-from-classmap": [
  11986. "/Tests/"
  11987. ]
  11988. },
  11989. "notification-url": "https://packagist.org/downloads/",
  11990. "license": [
  11991. "MIT"
  11992. ],
  11993. "authors": [
  11994. {
  11995. "name": "Fabien Potencier",
  11996. "email": "fabien@symfony.com"
  11997. },
  11998. {
  11999. "name": "Symfony Community",
  12000. "homepage": "http://symfony.com/contributors"
  12001. }
  12002. ],
  12003. "description": "PSR HTTP message bridge",
  12004. "homepage": "http://symfony.com",
  12005. "keywords": [
  12006. "http",
  12007. "http-message",
  12008. "psr-17",
  12009. "psr-7"
  12010. ],
  12011. "funding": [
  12012. {
  12013. "url": "https://symfony.com/sponsor",
  12014. "type": "custom"
  12015. },
  12016. {
  12017. "url": "https://github.com/fabpot",
  12018. "type": "github"
  12019. },
  12020. {
  12021. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12022. "type": "tidelift"
  12023. }
  12024. ],
  12025. "time": "2020-09-29T08:17:46+00:00"
  12026. },
  12027. {
  12028. "name": "symfony/routing",
  12029. "version": "v4.4.16",
  12030. "source": {
  12031. "type": "git",
  12032. "url": "https://github.com/symfony/routing.git",
  12033. "reference": "826794f2e9305fe73cba859c60d2a336851bd202"
  12034. },
  12035. "dist": {
  12036. "type": "zip",
  12037. "url": "https://api.github.com/repos/symfony/routing/zipball/826794f2e9305fe73cba859c60d2a336851bd202",
  12038. "reference": "826794f2e9305fe73cba859c60d2a336851bd202",
  12039. "shasum": ""
  12040. },
  12041. "require": {
  12042. "php": ">=7.1.3"
  12043. },
  12044. "conflict": {
  12045. "symfony/config": "<4.2",
  12046. "symfony/dependency-injection": "<3.4",
  12047. "symfony/yaml": "<3.4"
  12048. },
  12049. "require-dev": {
  12050. "doctrine/annotations": "~1.2",
  12051. "psr/log": "~1.0",
  12052. "symfony/config": "^4.2|^5.0",
  12053. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  12054. "symfony/expression-language": "^3.4|^4.0|^5.0",
  12055. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  12056. "symfony/yaml": "^3.4|^4.0|^5.0"
  12057. },
  12058. "suggest": {
  12059. "doctrine/annotations": "For using the annotation loader",
  12060. "symfony/config": "For using the all-in-one router or any loader",
  12061. "symfony/expression-language": "For using expression matching",
  12062. "symfony/http-foundation": "For using a Symfony Request object",
  12063. "symfony/yaml": "For using the YAML loader"
  12064. },
  12065. "type": "library",
  12066. "autoload": {
  12067. "psr-4": {
  12068. "Symfony\\Component\\Routing\\": ""
  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": "Fabien Potencier",
  12081. "email": "fabien@symfony.com"
  12082. },
  12083. {
  12084. "name": "Symfony Community",
  12085. "homepage": "https://symfony.com/contributors"
  12086. }
  12087. ],
  12088. "description": "Symfony Routing Component",
  12089. "homepage": "https://symfony.com",
  12090. "keywords": [
  12091. "router",
  12092. "routing",
  12093. "uri",
  12094. "url"
  12095. ],
  12096. "funding": [
  12097. {
  12098. "url": "https://symfony.com/sponsor",
  12099. "type": "custom"
  12100. },
  12101. {
  12102. "url": "https://github.com/fabpot",
  12103. "type": "github"
  12104. },
  12105. {
  12106. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12107. "type": "tidelift"
  12108. }
  12109. ],
  12110. "time": "2020-10-24T11:50:19+00:00"
  12111. },
  12112. {
  12113. "name": "symfony/serializer",
  12114. "version": "v4.4.16",
  12115. "source": {
  12116. "type": "git",
  12117. "url": "https://github.com/symfony/serializer.git",
  12118. "reference": "2af7e86db04ee65fdf1991b17ee0b3e955c93de9"
  12119. },
  12120. "dist": {
  12121. "type": "zip",
  12122. "url": "https://api.github.com/repos/symfony/serializer/zipball/2af7e86db04ee65fdf1991b17ee0b3e955c93de9",
  12123. "reference": "2af7e86db04ee65fdf1991b17ee0b3e955c93de9",
  12124. "shasum": ""
  12125. },
  12126. "require": {
  12127. "php": ">=7.1.3",
  12128. "symfony/polyfill-ctype": "~1.8"
  12129. },
  12130. "conflict": {
  12131. "phpdocumentor/type-resolver": "<0.2.1",
  12132. "symfony/dependency-injection": "<3.4",
  12133. "symfony/property-access": "<3.4",
  12134. "symfony/property-info": "<3.4",
  12135. "symfony/yaml": "<3.4"
  12136. },
  12137. "require-dev": {
  12138. "doctrine/annotations": "~1.0",
  12139. "doctrine/cache": "~1.0",
  12140. "phpdocumentor/reflection-docblock": "^3.2|^4.0",
  12141. "symfony/cache": "^3.4|^4.0|^5.0",
  12142. "symfony/config": "^3.4|^4.0|^5.0",
  12143. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  12144. "symfony/error-handler": "^4.4|^5.0",
  12145. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  12146. "symfony/mime": "^4.4|^5.0",
  12147. "symfony/property-access": "^3.4|^4.0|^5.0",
  12148. "symfony/property-info": "^3.4.13|~4.0|^5.0",
  12149. "symfony/validator": "^3.4|^4.0|^5.0",
  12150. "symfony/yaml": "^3.4|^4.0|^5.0"
  12151. },
  12152. "suggest": {
  12153. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  12154. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  12155. "psr/cache-implementation": "For using the metadata cache.",
  12156. "symfony/config": "For using the XML mapping loader.",
  12157. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  12158. "symfony/property-access": "For using the ObjectNormalizer.",
  12159. "symfony/property-info": "To deserialize relations.",
  12160. "symfony/yaml": "For using the default YAML mapping loader."
  12161. },
  12162. "type": "library",
  12163. "autoload": {
  12164. "psr-4": {
  12165. "Symfony\\Component\\Serializer\\": ""
  12166. },
  12167. "exclude-from-classmap": [
  12168. "/Tests/"
  12169. ]
  12170. },
  12171. "notification-url": "https://packagist.org/downloads/",
  12172. "license": [
  12173. "MIT"
  12174. ],
  12175. "authors": [
  12176. {
  12177. "name": "Fabien Potencier",
  12178. "email": "fabien@symfony.com"
  12179. },
  12180. {
  12181. "name": "Symfony Community",
  12182. "homepage": "https://symfony.com/contributors"
  12183. }
  12184. ],
  12185. "description": "Symfony Serializer Component",
  12186. "homepage": "https://symfony.com",
  12187. "funding": [
  12188. {
  12189. "url": "https://symfony.com/sponsor",
  12190. "type": "custom"
  12191. },
  12192. {
  12193. "url": "https://github.com/fabpot",
  12194. "type": "github"
  12195. },
  12196. {
  12197. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12198. "type": "tidelift"
  12199. }
  12200. ],
  12201. "time": "2020-10-24T11:50:19+00:00"
  12202. },
  12203. {
  12204. "name": "symfony/service-contracts",
  12205. "version": "v2.2.0",
  12206. "source": {
  12207. "type": "git",
  12208. "url": "https://github.com/symfony/service-contracts.git",
  12209. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  12210. },
  12211. "dist": {
  12212. "type": "zip",
  12213. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  12214. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  12215. "shasum": ""
  12216. },
  12217. "require": {
  12218. "php": ">=7.2.5",
  12219. "psr/container": "^1.0"
  12220. },
  12221. "suggest": {
  12222. "symfony/service-implementation": ""
  12223. },
  12224. "type": "library",
  12225. "extra": {
  12226. "branch-alias": {
  12227. "dev-master": "2.2-dev"
  12228. },
  12229. "thanks": {
  12230. "name": "symfony/contracts",
  12231. "url": "https://github.com/symfony/contracts"
  12232. }
  12233. },
  12234. "autoload": {
  12235. "psr-4": {
  12236. "Symfony\\Contracts\\Service\\": ""
  12237. }
  12238. },
  12239. "notification-url": "https://packagist.org/downloads/",
  12240. "license": [
  12241. "MIT"
  12242. ],
  12243. "authors": [
  12244. {
  12245. "name": "Nicolas Grekas",
  12246. "email": "p@tchwork.com"
  12247. },
  12248. {
  12249. "name": "Symfony Community",
  12250. "homepage": "https://symfony.com/contributors"
  12251. }
  12252. ],
  12253. "description": "Generic abstractions related to writing services",
  12254. "homepage": "https://symfony.com",
  12255. "keywords": [
  12256. "abstractions",
  12257. "contracts",
  12258. "decoupling",
  12259. "interfaces",
  12260. "interoperability",
  12261. "standards"
  12262. ],
  12263. "funding": [
  12264. {
  12265. "url": "https://symfony.com/sponsor",
  12266. "type": "custom"
  12267. },
  12268. {
  12269. "url": "https://github.com/fabpot",
  12270. "type": "github"
  12271. },
  12272. {
  12273. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12274. "type": "tidelift"
  12275. }
  12276. ],
  12277. "time": "2020-09-07T11:33:47+00:00"
  12278. },
  12279. {
  12280. "name": "symfony/translation",
  12281. "version": "v4.4.16",
  12282. "source": {
  12283. "type": "git",
  12284. "url": "https://github.com/symfony/translation.git",
  12285. "reference": "73095716af79f610f3b6338b911357393fdd10ab"
  12286. },
  12287. "dist": {
  12288. "type": "zip",
  12289. "url": "https://api.github.com/repos/symfony/translation/zipball/73095716af79f610f3b6338b911357393fdd10ab",
  12290. "reference": "73095716af79f610f3b6338b911357393fdd10ab",
  12291. "shasum": ""
  12292. },
  12293. "require": {
  12294. "php": ">=7.1.3",
  12295. "symfony/polyfill-mbstring": "~1.0",
  12296. "symfony/translation-contracts": "^1.1.6|^2"
  12297. },
  12298. "conflict": {
  12299. "symfony/config": "<3.4",
  12300. "symfony/dependency-injection": "<3.4",
  12301. "symfony/http-kernel": "<4.4",
  12302. "symfony/yaml": "<3.4"
  12303. },
  12304. "provide": {
  12305. "symfony/translation-implementation": "1.0"
  12306. },
  12307. "require-dev": {
  12308. "psr/log": "~1.0",
  12309. "symfony/config": "^3.4|^4.0|^5.0",
  12310. "symfony/console": "^3.4|^4.0|^5.0",
  12311. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  12312. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  12313. "symfony/http-kernel": "^4.4",
  12314. "symfony/intl": "^3.4|^4.0|^5.0",
  12315. "symfony/service-contracts": "^1.1.2|^2",
  12316. "symfony/yaml": "^3.4|^4.0|^5.0"
  12317. },
  12318. "suggest": {
  12319. "psr/log-implementation": "To use logging capability in translator",
  12320. "symfony/config": "",
  12321. "symfony/yaml": ""
  12322. },
  12323. "type": "library",
  12324. "autoload": {
  12325. "psr-4": {
  12326. "Symfony\\Component\\Translation\\": ""
  12327. },
  12328. "exclude-from-classmap": [
  12329. "/Tests/"
  12330. ]
  12331. },
  12332. "notification-url": "https://packagist.org/downloads/",
  12333. "license": [
  12334. "MIT"
  12335. ],
  12336. "authors": [
  12337. {
  12338. "name": "Fabien Potencier",
  12339. "email": "fabien@symfony.com"
  12340. },
  12341. {
  12342. "name": "Symfony Community",
  12343. "homepage": "https://symfony.com/contributors"
  12344. }
  12345. ],
  12346. "description": "Symfony Translation Component",
  12347. "homepage": "https://symfony.com",
  12348. "funding": [
  12349. {
  12350. "url": "https://symfony.com/sponsor",
  12351. "type": "custom"
  12352. },
  12353. {
  12354. "url": "https://github.com/fabpot",
  12355. "type": "github"
  12356. },
  12357. {
  12358. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12359. "type": "tidelift"
  12360. }
  12361. ],
  12362. "time": "2020-10-24T11:50:19+00:00"
  12363. },
  12364. {
  12365. "name": "symfony/translation-contracts",
  12366. "version": "v2.3.0",
  12367. "source": {
  12368. "type": "git",
  12369. "url": "https://github.com/symfony/translation-contracts.git",
  12370. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  12371. },
  12372. "dist": {
  12373. "type": "zip",
  12374. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  12375. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  12376. "shasum": ""
  12377. },
  12378. "require": {
  12379. "php": ">=7.2.5"
  12380. },
  12381. "suggest": {
  12382. "symfony/translation-implementation": ""
  12383. },
  12384. "type": "library",
  12385. "extra": {
  12386. "branch-alias": {
  12387. "dev-master": "2.3-dev"
  12388. },
  12389. "thanks": {
  12390. "name": "symfony/contracts",
  12391. "url": "https://github.com/symfony/contracts"
  12392. }
  12393. },
  12394. "autoload": {
  12395. "psr-4": {
  12396. "Symfony\\Contracts\\Translation\\": ""
  12397. }
  12398. },
  12399. "notification-url": "https://packagist.org/downloads/",
  12400. "license": [
  12401. "MIT"
  12402. ],
  12403. "authors": [
  12404. {
  12405. "name": "Nicolas Grekas",
  12406. "email": "p@tchwork.com"
  12407. },
  12408. {
  12409. "name": "Symfony Community",
  12410. "homepage": "https://symfony.com/contributors"
  12411. }
  12412. ],
  12413. "description": "Generic abstractions related to translation",
  12414. "homepage": "https://symfony.com",
  12415. "keywords": [
  12416. "abstractions",
  12417. "contracts",
  12418. "decoupling",
  12419. "interfaces",
  12420. "interoperability",
  12421. "standards"
  12422. ],
  12423. "funding": [
  12424. {
  12425. "url": "https://symfony.com/sponsor",
  12426. "type": "custom"
  12427. },
  12428. {
  12429. "url": "https://github.com/fabpot",
  12430. "type": "github"
  12431. },
  12432. {
  12433. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12434. "type": "tidelift"
  12435. }
  12436. ],
  12437. "time": "2020-09-28T13:05:58+00:00"
  12438. },
  12439. {
  12440. "name": "symfony/validator",
  12441. "version": "v4.4.16",
  12442. "source": {
  12443. "type": "git",
  12444. "url": "https://github.com/symfony/validator.git",
  12445. "reference": "1d214a3aaa0753b19f94cf0479d8c315d957a10d"
  12446. },
  12447. "dist": {
  12448. "type": "zip",
  12449. "url": "https://api.github.com/repos/symfony/validator/zipball/1d214a3aaa0753b19f94cf0479d8c315d957a10d",
  12450. "reference": "1d214a3aaa0753b19f94cf0479d8c315d957a10d",
  12451. "shasum": ""
  12452. },
  12453. "require": {
  12454. "php": ">=7.1.3",
  12455. "symfony/polyfill-ctype": "~1.8",
  12456. "symfony/polyfill-mbstring": "~1.0",
  12457. "symfony/translation-contracts": "^1.1|^2"
  12458. },
  12459. "conflict": {
  12460. "doctrine/lexer": "<1.0.2",
  12461. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  12462. "symfony/dependency-injection": "<3.4",
  12463. "symfony/http-kernel": "<4.4",
  12464. "symfony/intl": "<4.3",
  12465. "symfony/translation": ">=5.0",
  12466. "symfony/yaml": "<3.4"
  12467. },
  12468. "require-dev": {
  12469. "doctrine/annotations": "~1.7",
  12470. "doctrine/cache": "~1.0",
  12471. "egulias/email-validator": "^2.1.10",
  12472. "symfony/cache": "^3.4|^4.0|^5.0",
  12473. "symfony/config": "^3.4|^4.0|^5.0",
  12474. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  12475. "symfony/expression-language": "^3.4|^4.0|^5.0",
  12476. "symfony/http-client": "^4.3|^5.0",
  12477. "symfony/http-foundation": "^4.1|^5.0",
  12478. "symfony/http-kernel": "^4.4",
  12479. "symfony/intl": "^4.3|^5.0",
  12480. "symfony/mime": "^4.4|^5.0",
  12481. "symfony/property-access": "^3.4|^4.0|^5.0",
  12482. "symfony/property-info": "^3.4|^4.0|^5.0",
  12483. "symfony/translation": "^4.2",
  12484. "symfony/yaml": "^3.4|^4.0|^5.0"
  12485. },
  12486. "suggest": {
  12487. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  12488. "doctrine/cache": "For using the default cached annotation reader.",
  12489. "egulias/email-validator": "Strict (RFC compliant) email validation",
  12490. "psr/cache-implementation": "For using the mapping cache.",
  12491. "symfony/config": "",
  12492. "symfony/expression-language": "For using the Expression validator",
  12493. "symfony/http-foundation": "",
  12494. "symfony/intl": "",
  12495. "symfony/property-access": "For accessing properties within comparison constraints",
  12496. "symfony/property-info": "To automatically add NotNull and Type constraints",
  12497. "symfony/translation": "For translating validation errors.",
  12498. "symfony/yaml": ""
  12499. },
  12500. "type": "library",
  12501. "autoload": {
  12502. "psr-4": {
  12503. "Symfony\\Component\\Validator\\": ""
  12504. },
  12505. "exclude-from-classmap": [
  12506. "/Tests/"
  12507. ]
  12508. },
  12509. "notification-url": "https://packagist.org/downloads/",
  12510. "license": [
  12511. "MIT"
  12512. ],
  12513. "authors": [
  12514. {
  12515. "name": "Fabien Potencier",
  12516. "email": "fabien@symfony.com"
  12517. },
  12518. {
  12519. "name": "Symfony Community",
  12520. "homepage": "https://symfony.com/contributors"
  12521. }
  12522. ],
  12523. "description": "Symfony Validator Component",
  12524. "homepage": "https://symfony.com",
  12525. "funding": [
  12526. {
  12527. "url": "https://symfony.com/sponsor",
  12528. "type": "custom"
  12529. },
  12530. {
  12531. "url": "https://github.com/fabpot",
  12532. "type": "github"
  12533. },
  12534. {
  12535. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12536. "type": "tidelift"
  12537. }
  12538. ],
  12539. "time": "2020-10-28T05:25:24+00:00"
  12540. },
  12541. {
  12542. "name": "symfony/var-dumper",
  12543. "version": "v5.1.8",
  12544. "source": {
  12545. "type": "git",
  12546. "url": "https://github.com/symfony/var-dumper.git",
  12547. "reference": "4e13f3fcefb1fcaaa5efb5403581406f4e840b9a"
  12548. },
  12549. "dist": {
  12550. "type": "zip",
  12551. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/4e13f3fcefb1fcaaa5efb5403581406f4e840b9a",
  12552. "reference": "4e13f3fcefb1fcaaa5efb5403581406f4e840b9a",
  12553. "shasum": ""
  12554. },
  12555. "require": {
  12556. "php": ">=7.2.5",
  12557. "symfony/polyfill-mbstring": "~1.0",
  12558. "symfony/polyfill-php80": "^1.15"
  12559. },
  12560. "conflict": {
  12561. "phpunit/phpunit": "<5.4.3",
  12562. "symfony/console": "<4.4"
  12563. },
  12564. "require-dev": {
  12565. "ext-iconv": "*",
  12566. "symfony/console": "^4.4|^5.0",
  12567. "symfony/process": "^4.4|^5.0",
  12568. "twig/twig": "^2.4|^3.0"
  12569. },
  12570. "suggest": {
  12571. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  12572. "ext-intl": "To show region name in time zone dump",
  12573. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  12574. },
  12575. "bin": [
  12576. "Resources/bin/var-dump-server"
  12577. ],
  12578. "type": "library",
  12579. "autoload": {
  12580. "files": [
  12581. "Resources/functions/dump.php"
  12582. ],
  12583. "psr-4": {
  12584. "Symfony\\Component\\VarDumper\\": ""
  12585. },
  12586. "exclude-from-classmap": [
  12587. "/Tests/"
  12588. ]
  12589. },
  12590. "notification-url": "https://packagist.org/downloads/",
  12591. "license": [
  12592. "MIT"
  12593. ],
  12594. "authors": [
  12595. {
  12596. "name": "Nicolas Grekas",
  12597. "email": "p@tchwork.com"
  12598. },
  12599. {
  12600. "name": "Symfony Community",
  12601. "homepage": "https://symfony.com/contributors"
  12602. }
  12603. ],
  12604. "description": "Symfony mechanism for exploring and dumping PHP variables",
  12605. "homepage": "https://symfony.com",
  12606. "keywords": [
  12607. "debug",
  12608. "dump"
  12609. ],
  12610. "funding": [
  12611. {
  12612. "url": "https://symfony.com/sponsor",
  12613. "type": "custom"
  12614. },
  12615. {
  12616. "url": "https://github.com/fabpot",
  12617. "type": "github"
  12618. },
  12619. {
  12620. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12621. "type": "tidelift"
  12622. }
  12623. ],
  12624. "time": "2020-10-27T10:11:13+00:00"
  12625. },
  12626. {
  12627. "name": "symfony/yaml",
  12628. "version": "v4.4.16",
  12629. "source": {
  12630. "type": "git",
  12631. "url": "https://github.com/symfony/yaml.git",
  12632. "reference": "543cb4dbd45ed803f08a9a65f27fb149b5dd20c2"
  12633. },
  12634. "dist": {
  12635. "type": "zip",
  12636. "url": "https://api.github.com/repos/symfony/yaml/zipball/543cb4dbd45ed803f08a9a65f27fb149b5dd20c2",
  12637. "reference": "543cb4dbd45ed803f08a9a65f27fb149b5dd20c2",
  12638. "shasum": ""
  12639. },
  12640. "require": {
  12641. "php": ">=7.1.3",
  12642. "symfony/polyfill-ctype": "~1.8"
  12643. },
  12644. "conflict": {
  12645. "symfony/console": "<3.4"
  12646. },
  12647. "require-dev": {
  12648. "symfony/console": "^3.4|^4.0|^5.0"
  12649. },
  12650. "suggest": {
  12651. "symfony/console": "For validating YAML files using the lint command"
  12652. },
  12653. "type": "library",
  12654. "autoload": {
  12655. "psr-4": {
  12656. "Symfony\\Component\\Yaml\\": ""
  12657. },
  12658. "exclude-from-classmap": [
  12659. "/Tests/"
  12660. ]
  12661. },
  12662. "notification-url": "https://packagist.org/downloads/",
  12663. "license": [
  12664. "MIT"
  12665. ],
  12666. "authors": [
  12667. {
  12668. "name": "Fabien Potencier",
  12669. "email": "fabien@symfony.com"
  12670. },
  12671. {
  12672. "name": "Symfony Community",
  12673. "homepage": "https://symfony.com/contributors"
  12674. }
  12675. ],
  12676. "description": "Symfony Yaml Component",
  12677. "homepage": "https://symfony.com",
  12678. "funding": [
  12679. {
  12680. "url": "https://symfony.com/sponsor",
  12681. "type": "custom"
  12682. },
  12683. {
  12684. "url": "https://github.com/fabpot",
  12685. "type": "github"
  12686. },
  12687. {
  12688. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12689. "type": "tidelift"
  12690. }
  12691. ],
  12692. "time": "2020-10-24T11:50:19+00:00"
  12693. },
  12694. {
  12695. "name": "twig/twig",
  12696. "version": "v2.14.1",
  12697. "source": {
  12698. "type": "git",
  12699. "url": "https://github.com/twigphp/Twig.git",
  12700. "reference": "5eb9ac5dfdd20c3f59495c22841adc5da980d312"
  12701. },
  12702. "dist": {
  12703. "type": "zip",
  12704. "url": "https://api.github.com/repos/twigphp/Twig/zipball/5eb9ac5dfdd20c3f59495c22841adc5da980d312",
  12705. "reference": "5eb9ac5dfdd20c3f59495c22841adc5da980d312",
  12706. "shasum": ""
  12707. },
  12708. "require": {
  12709. "php": ">=7.2.5",
  12710. "symfony/polyfill-ctype": "^1.8",
  12711. "symfony/polyfill-mbstring": "^1.3"
  12712. },
  12713. "require-dev": {
  12714. "psr/container": "^1.0",
  12715. "symfony/phpunit-bridge": "^4.4.9|^5.0.9"
  12716. },
  12717. "type": "library",
  12718. "extra": {
  12719. "branch-alias": {
  12720. "dev-master": "2.14-dev"
  12721. }
  12722. },
  12723. "autoload": {
  12724. "psr-0": {
  12725. "Twig_": "lib/"
  12726. },
  12727. "psr-4": {
  12728. "Twig\\": "src/"
  12729. }
  12730. },
  12731. "notification-url": "https://packagist.org/downloads/",
  12732. "license": [
  12733. "BSD-3-Clause"
  12734. ],
  12735. "authors": [
  12736. {
  12737. "name": "Fabien Potencier",
  12738. "email": "fabien@symfony.com",
  12739. "homepage": "http://fabien.potencier.org",
  12740. "role": "Lead Developer"
  12741. },
  12742. {
  12743. "name": "Twig Team",
  12744. "role": "Contributors"
  12745. },
  12746. {
  12747. "name": "Armin Ronacher",
  12748. "email": "armin.ronacher@active-4.com",
  12749. "role": "Project Founder"
  12750. }
  12751. ],
  12752. "description": "Twig, the flexible, fast, and secure template language for PHP",
  12753. "homepage": "https://twig.symfony.com",
  12754. "keywords": [
  12755. "templating"
  12756. ],
  12757. "funding": [
  12758. {
  12759. "url": "https://github.com/fabpot",
  12760. "type": "github"
  12761. },
  12762. {
  12763. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  12764. "type": "tidelift"
  12765. }
  12766. ],
  12767. "time": "2020-10-27T19:25:29+00:00"
  12768. },
  12769. {
  12770. "name": "typo3/phar-stream-wrapper",
  12771. "version": "v3.1.6",
  12772. "source": {
  12773. "type": "git",
  12774. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  12775. "reference": "60131cb573a1e478cfecd34e4ea38e3b31505f75"
  12776. },
  12777. "dist": {
  12778. "type": "zip",
  12779. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/60131cb573a1e478cfecd34e4ea38e3b31505f75",
  12780. "reference": "60131cb573a1e478cfecd34e4ea38e3b31505f75",
  12781. "shasum": ""
  12782. },
  12783. "require": {
  12784. "ext-json": "*",
  12785. "php": "^7.0 || ^8.0"
  12786. },
  12787. "require-dev": {
  12788. "ext-xdebug": "*",
  12789. "phpspec/prophecy": "^1.10",
  12790. "symfony/phpunit-bridge": "^5.1"
  12791. },
  12792. "suggest": {
  12793. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  12794. },
  12795. "type": "library",
  12796. "extra": {
  12797. "branch-alias": {
  12798. "dev-master": "v3.x-dev"
  12799. }
  12800. },
  12801. "autoload": {
  12802. "psr-4": {
  12803. "TYPO3\\PharStreamWrapper\\": "src/"
  12804. }
  12805. },
  12806. "notification-url": "https://packagist.org/downloads/",
  12807. "license": [
  12808. "MIT"
  12809. ],
  12810. "description": "Interceptors for PHP's native phar:// stream handling",
  12811. "homepage": "https://typo3.org/",
  12812. "keywords": [
  12813. "phar",
  12814. "php",
  12815. "security",
  12816. "stream-wrapper"
  12817. ],
  12818. "time": "2020-11-07T09:06:16+00:00"
  12819. },
  12820. {
  12821. "name": "webflo/drupal-finder",
  12822. "version": "1.2.2",
  12823. "source": {
  12824. "type": "git",
  12825. "url": "https://github.com/webflo/drupal-finder.git",
  12826. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  12827. },
  12828. "dist": {
  12829. "type": "zip",
  12830. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  12831. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  12832. "shasum": ""
  12833. },
  12834. "require": {
  12835. "ext-json": "*"
  12836. },
  12837. "require-dev": {
  12838. "mikey179/vfsstream": "^1.6",
  12839. "phpunit/phpunit": "^4.8"
  12840. },
  12841. "type": "library",
  12842. "autoload": {
  12843. "classmap": [
  12844. "src/DrupalFinder.php"
  12845. ]
  12846. },
  12847. "notification-url": "https://packagist.org/downloads/",
  12848. "license": [
  12849. "GPL-2.0-or-later"
  12850. ],
  12851. "authors": [
  12852. {
  12853. "name": "Florian Weber",
  12854. "email": "florian@webflo.org"
  12855. }
  12856. ],
  12857. "description": "Helper class to locate a Drupal installation from a given path.",
  12858. "time": "2020-10-27T09:42:17+00:00"
  12859. },
  12860. {
  12861. "name": "webmozart/assert",
  12862. "version": "1.9.1",
  12863. "source": {
  12864. "type": "git",
  12865. "url": "https://github.com/webmozarts/assert.git",
  12866. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  12867. },
  12868. "dist": {
  12869. "type": "zip",
  12870. "url": "https://api.github.com/repos/webmozarts/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  12871. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  12872. "shasum": ""
  12873. },
  12874. "require": {
  12875. "php": "^5.3.3 || ^7.0 || ^8.0",
  12876. "symfony/polyfill-ctype": "^1.8"
  12877. },
  12878. "conflict": {
  12879. "phpstan/phpstan": "<0.12.20",
  12880. "vimeo/psalm": "<3.9.1"
  12881. },
  12882. "require-dev": {
  12883. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  12884. },
  12885. "type": "library",
  12886. "autoload": {
  12887. "psr-4": {
  12888. "Webmozart\\Assert\\": "src/"
  12889. }
  12890. },
  12891. "notification-url": "https://packagist.org/downloads/",
  12892. "license": [
  12893. "MIT"
  12894. ],
  12895. "authors": [
  12896. {
  12897. "name": "Bernhard Schussek",
  12898. "email": "bschussek@gmail.com"
  12899. }
  12900. ],
  12901. "description": "Assertions to validate method input/output with nice error messages.",
  12902. "keywords": [
  12903. "assert",
  12904. "check",
  12905. "validate"
  12906. ],
  12907. "time": "2020-07-08T17:02:28+00:00"
  12908. },
  12909. {
  12910. "name": "webmozart/path-util",
  12911. "version": "2.3.0",
  12912. "source": {
  12913. "type": "git",
  12914. "url": "https://github.com/webmozart/path-util.git",
  12915. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  12916. },
  12917. "dist": {
  12918. "type": "zip",
  12919. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  12920. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  12921. "shasum": ""
  12922. },
  12923. "require": {
  12924. "php": ">=5.3.3",
  12925. "webmozart/assert": "~1.0"
  12926. },
  12927. "require-dev": {
  12928. "phpunit/phpunit": "^4.6",
  12929. "sebastian/version": "^1.0.1"
  12930. },
  12931. "type": "library",
  12932. "extra": {
  12933. "branch-alias": {
  12934. "dev-master": "2.3-dev"
  12935. }
  12936. },
  12937. "autoload": {
  12938. "psr-4": {
  12939. "Webmozart\\PathUtil\\": "src/"
  12940. }
  12941. },
  12942. "notification-url": "https://packagist.org/downloads/",
  12943. "license": [
  12944. "MIT"
  12945. ],
  12946. "authors": [
  12947. {
  12948. "name": "Bernhard Schussek",
  12949. "email": "bschussek@gmail.com"
  12950. }
  12951. ],
  12952. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  12953. "time": "2015-12-17T08:42:14+00:00"
  12954. },
  12955. {
  12956. "name": "webonyx/graphql-php",
  12957. "version": "v14.5.1",
  12958. "source": {
  12959. "type": "git",
  12960. "url": "https://github.com/webonyx/graphql-php.git",
  12961. "reference": "3af8b92d07e0d7a9085c0b83daf86beaeb76f092"
  12962. },
  12963. "dist": {
  12964. "type": "zip",
  12965. "url": "https://api.github.com/repos/webonyx/graphql-php/zipball/3af8b92d07e0d7a9085c0b83daf86beaeb76f092",
  12966. "reference": "3af8b92d07e0d7a9085c0b83daf86beaeb76f092",
  12967. "shasum": ""
  12968. },
  12969. "require": {
  12970. "ext-json": "*",
  12971. "ext-mbstring": "*",
  12972. "php": "^7.1||^8.0"
  12973. },
  12974. "require-dev": {
  12975. "amphp/amp": "^2.3",
  12976. "doctrine/coding-standard": "^6.0",
  12977. "nyholm/psr7": "^1.2",
  12978. "phpbench/phpbench": "^0.16.10",
  12979. "phpstan/extension-installer": "^1.0",
  12980. "phpstan/phpstan": "0.12.32",
  12981. "phpstan/phpstan-phpunit": "0.12.11",
  12982. "phpstan/phpstan-strict-rules": "0.12.2",
  12983. "phpunit/phpunit": "^7.2|^8.5",
  12984. "psr/http-message": "^1.0",
  12985. "react/promise": "2.*",
  12986. "simpod/php-coveralls-mirror": "^3.0",
  12987. "squizlabs/php_codesniffer": "3.5.4"
  12988. },
  12989. "suggest": {
  12990. "psr/http-message": "To use standard GraphQL server",
  12991. "react/promise": "To leverage async resolving on React PHP platform"
  12992. },
  12993. "type": "library",
  12994. "autoload": {
  12995. "psr-4": {
  12996. "GraphQL\\": "src/"
  12997. }
  12998. },
  12999. "notification-url": "https://packagist.org/downloads/",
  13000. "license": [
  13001. "MIT"
  13002. ],
  13003. "description": "A PHP port of GraphQL reference implementation",
  13004. "homepage": "https://github.com/webonyx/graphql-php",
  13005. "keywords": [
  13006. "api",
  13007. "graphql"
  13008. ],
  13009. "funding": [
  13010. {
  13011. "url": "https://opencollective.com/webonyx-graphql-php",
  13012. "type": "open_collective"
  13013. }
  13014. ],
  13015. "time": "2021-02-05T10:51:56+00:00"
  13016. },
  13017. {
  13018. "name": "wikimedia/composer-merge-plugin",
  13019. "version": "v1.4.1",
  13020. "source": {
  13021. "type": "git",
  13022. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  13023. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100"
  13024. },
  13025. "dist": {
  13026. "type": "zip",
  13027. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  13028. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  13029. "shasum": ""
  13030. },
  13031. "require": {
  13032. "composer-plugin-api": "^1.0",
  13033. "php": ">=5.3.2"
  13034. },
  13035. "require-dev": {
  13036. "composer/composer": "~1.0.0",
  13037. "jakub-onderka/php-parallel-lint": "~0.8",
  13038. "phpunit/phpunit": "~4.8|~5.0",
  13039. "squizlabs/php_codesniffer": "~2.1.0"
  13040. },
  13041. "type": "composer-plugin",
  13042. "extra": {
  13043. "branch-alias": {
  13044. "dev-master": "1.3.x-dev"
  13045. },
  13046. "class": "Wikimedia\\Composer\\MergePlugin"
  13047. },
  13048. "autoload": {
  13049. "psr-4": {
  13050. "Wikimedia\\Composer\\": "src/"
  13051. }
  13052. },
  13053. "notification-url": "https://packagist.org/downloads/",
  13054. "license": [
  13055. "MIT"
  13056. ],
  13057. "authors": [
  13058. {
  13059. "name": "Bryan Davis",
  13060. "email": "bd808@wikimedia.org"
  13061. }
  13062. ],
  13063. "description": "Composer plugin to merge multiple composer.json files",
  13064. "time": "2017-04-25T02:31:25+00:00"
  13065. }
  13066. ],
  13067. "packages-dev": [],
  13068. "aliases": [],
  13069. "minimum-stability": "stable",
  13070. "stability-flags": {
  13071. "drupal/auto_entitylabel": 20,
  13072. "drupal/cer": 15,
  13073. "drupal/insert": 20,
  13074. "drupal/typed_data": 20,
  13075. "drupal/autocomplete_deluxe": 5,
  13076. "drupal/better_exposed_filters": 10,
  13077. "drupal/bulkdelete": 20,
  13078. "drupal/cshs": 20,
  13079. "drupal/config_ignore": 5,
  13080. "drupal/config_devel": 20,
  13081. "drupal/context": 10,
  13082. "drupal/date_range_formatter": 20,
  13083. "drupal/domain": 20,
  13084. "drupal/domain_alias": 20,
  13085. "drupal/domain_config": 20,
  13086. "drupal/domain_site_settings": 20,
  13087. "drupal/email_registration": 5,
  13088. "drupal/entity_browser_enhanced": 5,
  13089. "drupal/entity_clone": 15,
  13090. "drupal/filefield_sources": 20,
  13091. "drupal/filter_perms": 20,
  13092. "drupal/inline_entity_form": 5,
  13093. "drupal/linkit": 10,
  13094. "drupal/login_destination": 20,
  13095. "drupal/maillog": 20,
  13096. "drupal/maxlength": 10,
  13097. "drupal/menu_block": 20,
  13098. "drupal/menu_position": 20,
  13099. "drupal/path_alias_xt": 20,
  13100. "drupal/pathologic": 15,
  13101. "drupal/profile": 5,
  13102. "drupal/smtp": 10,
  13103. "drupal/synonyms": 20,
  13104. "drupal/translation_views": 15,
  13105. "drupal/ultimate_cron": 15
  13106. },
  13107. "prefer-stable": true,
  13108. "prefer-lowest": false,
  13109. "platform": [],
  13110. "platform-dev": [],
  13111. "plugin-api-version": "1.1.0"
  13112. }