composer.lock 339 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325
  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": "ead3aa1d4c00da934baa3f1a72126308",
  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.2.0",
  76. "source": {
  77. "type": "git",
  78. "url": "https://github.com/asm89/stack-cors.git",
  79. "reference": "c163e2b614550aedcf71165db2473d936abbced6"
  80. },
  81. "dist": {
  82. "type": "zip",
  83. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/c163e2b614550aedcf71165db2473d936abbced6",
  84. "reference": "c163e2b614550aedcf71165db2473d936abbced6",
  85. "shasum": ""
  86. },
  87. "require": {
  88. "php": ">=5.5.9",
  89. "symfony/http-foundation": "~2.7|~3.0|~4.0",
  90. "symfony/http-kernel": "~2.7|~3.0|~4.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": "2017-12-20T14:37:45+00:00"
  124. },
  125. {
  126. "name": "chi-teck/drupal-code-generator",
  127. "version": "1.32.0",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  131. "reference": "0e045f7a7e747af3d8f603156bf4d73be5768246"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/0e045f7a7e747af3d8f603156bf4d73be5768246",
  136. "reference": "0e045f7a7e747af3d8f603156bf4d73be5768246",
  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. "bin": [
  147. "bin/dcg"
  148. ],
  149. "type": "library",
  150. "extra": {
  151. "branch-alias": {
  152. "dev-master": "1.x-dev"
  153. }
  154. },
  155. "autoload": {
  156. "files": [
  157. "src/bootstrap.php"
  158. ],
  159. "psr-4": {
  160. "DrupalCodeGenerator\\": "src"
  161. }
  162. },
  163. "notification-url": "https://packagist.org/downloads/",
  164. "license": [
  165. "GPL-2.0-or-later"
  166. ],
  167. "description": "Drupal code generator",
  168. "time": "2020-04-16T06:45:06+00:00"
  169. },
  170. {
  171. "name": "composer/installers",
  172. "version": "v1.7.0",
  173. "source": {
  174. "type": "git",
  175. "url": "https://github.com/composer/installers.git",
  176. "reference": "141b272484481432cda342727a427dc1e206bfa0"
  177. },
  178. "dist": {
  179. "type": "zip",
  180. "url": "https://api.github.com/repos/composer/installers/zipball/141b272484481432cda342727a427dc1e206bfa0",
  181. "reference": "141b272484481432cda342727a427dc1e206bfa0",
  182. "shasum": ""
  183. },
  184. "require": {
  185. "composer-plugin-api": "^1.0"
  186. },
  187. "replace": {
  188. "roundcube/plugin-installer": "*",
  189. "shama/baton": "*"
  190. },
  191. "require-dev": {
  192. "composer/composer": "1.0.*@dev",
  193. "phpunit/phpunit": "^4.8.36"
  194. },
  195. "type": "composer-plugin",
  196. "extra": {
  197. "class": "Composer\\Installers\\Plugin",
  198. "branch-alias": {
  199. "dev-master": "1.0-dev"
  200. }
  201. },
  202. "autoload": {
  203. "psr-4": {
  204. "Composer\\Installers\\": "src/Composer/Installers"
  205. }
  206. },
  207. "notification-url": "https://packagist.org/downloads/",
  208. "license": [
  209. "MIT"
  210. ],
  211. "authors": [
  212. {
  213. "name": "Kyle Robinson Young",
  214. "email": "kyle@dontkry.com",
  215. "homepage": "https://github.com/shama"
  216. }
  217. ],
  218. "description": "A multi-framework Composer library installer",
  219. "homepage": "https://composer.github.io/installers/",
  220. "keywords": [
  221. "Craft",
  222. "Dolibarr",
  223. "Eliasis",
  224. "Hurad",
  225. "ImageCMS",
  226. "Kanboard",
  227. "Lan Management System",
  228. "MODX Evo",
  229. "Mautic",
  230. "Maya",
  231. "OXID",
  232. "Plentymarkets",
  233. "Porto",
  234. "RadPHP",
  235. "SMF",
  236. "Thelia",
  237. "Whmcs",
  238. "WolfCMS",
  239. "agl",
  240. "aimeos",
  241. "annotatecms",
  242. "attogram",
  243. "bitrix",
  244. "cakephp",
  245. "chef",
  246. "cockpit",
  247. "codeigniter",
  248. "concrete5",
  249. "croogo",
  250. "dokuwiki",
  251. "drupal",
  252. "eZ Platform",
  253. "elgg",
  254. "expressionengine",
  255. "fuelphp",
  256. "grav",
  257. "installer",
  258. "itop",
  259. "joomla",
  260. "known",
  261. "kohana",
  262. "laravel",
  263. "lavalite",
  264. "lithium",
  265. "magento",
  266. "majima",
  267. "mako",
  268. "mediawiki",
  269. "modulework",
  270. "modx",
  271. "moodle",
  272. "osclass",
  273. "phpbb",
  274. "piwik",
  275. "ppi",
  276. "puppet",
  277. "pxcms",
  278. "reindex",
  279. "roundcube",
  280. "shopware",
  281. "silverstripe",
  282. "sydes",
  283. "symfony",
  284. "typo3",
  285. "wordpress",
  286. "yawik",
  287. "zend",
  288. "zikula"
  289. ],
  290. "time": "2019-08-12T15:00:31+00:00"
  291. },
  292. {
  293. "name": "composer/semver",
  294. "version": "1.5.0",
  295. "source": {
  296. "type": "git",
  297. "url": "https://github.com/composer/semver.git",
  298. "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e"
  299. },
  300. "dist": {
  301. "type": "zip",
  302. "url": "https://api.github.com/repos/composer/semver/zipball/46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
  303. "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
  304. "shasum": ""
  305. },
  306. "require": {
  307. "php": "^5.3.2 || ^7.0"
  308. },
  309. "require-dev": {
  310. "phpunit/phpunit": "^4.5 || ^5.0.5",
  311. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  312. },
  313. "type": "library",
  314. "extra": {
  315. "branch-alias": {
  316. "dev-master": "1.x-dev"
  317. }
  318. },
  319. "autoload": {
  320. "psr-4": {
  321. "Composer\\Semver\\": "src"
  322. }
  323. },
  324. "notification-url": "https://packagist.org/downloads/",
  325. "license": [
  326. "MIT"
  327. ],
  328. "authors": [
  329. {
  330. "name": "Nils Adermann",
  331. "email": "naderman@naderman.de",
  332. "homepage": "http://www.naderman.de"
  333. },
  334. {
  335. "name": "Jordi Boggiano",
  336. "email": "j.boggiano@seld.be",
  337. "homepage": "http://seld.be"
  338. },
  339. {
  340. "name": "Rob Bast",
  341. "email": "rob.bast@gmail.com",
  342. "homepage": "http://robbast.nl"
  343. }
  344. ],
  345. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  346. "keywords": [
  347. "semantic",
  348. "semver",
  349. "validation",
  350. "versioning"
  351. ],
  352. "time": "2019-03-19T17:25:45+00:00"
  353. },
  354. {
  355. "name": "consolidation/annotated-command",
  356. "version": "2.12.0",
  357. "source": {
  358. "type": "git",
  359. "url": "https://github.com/consolidation/annotated-command.git",
  360. "reference": "512a2e54c98f3af377589de76c43b24652bcb789"
  361. },
  362. "dist": {
  363. "type": "zip",
  364. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/512a2e54c98f3af377589de76c43b24652bcb789",
  365. "reference": "512a2e54c98f3af377589de76c43b24652bcb789",
  366. "shasum": ""
  367. },
  368. "require": {
  369. "consolidation/output-formatters": "^3.4",
  370. "php": ">=5.4.5",
  371. "psr/log": "^1",
  372. "symfony/console": "^2.8|^3|^4",
  373. "symfony/event-dispatcher": "^2.5|^3|^4",
  374. "symfony/finder": "^2.5|^3|^4"
  375. },
  376. "require-dev": {
  377. "g1a/composer-test-scenarios": "^3",
  378. "php-coveralls/php-coveralls": "^1",
  379. "phpunit/phpunit": "^6",
  380. "squizlabs/php_codesniffer": "^2.7"
  381. },
  382. "type": "library",
  383. "extra": {
  384. "scenarios": {
  385. "symfony4": {
  386. "require": {
  387. "symfony/console": "^4.0"
  388. },
  389. "config": {
  390. "platform": {
  391. "php": "7.1.3"
  392. }
  393. }
  394. },
  395. "symfony2": {
  396. "require": {
  397. "symfony/console": "^2.8"
  398. },
  399. "require-dev": {
  400. "phpunit/phpunit": "^4.8.36"
  401. },
  402. "remove": [
  403. "php-coveralls/php-coveralls"
  404. ],
  405. "config": {
  406. "platform": {
  407. "php": "5.4.8"
  408. }
  409. },
  410. "scenario-options": {
  411. "create-lockfile": "false"
  412. }
  413. },
  414. "phpunit4": {
  415. "require-dev": {
  416. "phpunit/phpunit": "^4.8.36"
  417. },
  418. "remove": [
  419. "php-coveralls/php-coveralls"
  420. ],
  421. "config": {
  422. "platform": {
  423. "php": "5.4.8"
  424. }
  425. }
  426. }
  427. },
  428. "branch-alias": {
  429. "dev-master": "2.x-dev"
  430. }
  431. },
  432. "autoload": {
  433. "psr-4": {
  434. "Consolidation\\AnnotatedCommand\\": "src"
  435. }
  436. },
  437. "notification-url": "https://packagist.org/downloads/",
  438. "license": [
  439. "MIT"
  440. ],
  441. "authors": [
  442. {
  443. "name": "Greg Anderson",
  444. "email": "greg.1.anderson@greenknowe.org"
  445. }
  446. ],
  447. "description": "Initialize Symfony Console commands from annotated command class methods.",
  448. "time": "2019-03-08T16:55:03+00:00"
  449. },
  450. {
  451. "name": "consolidation/config",
  452. "version": "1.2.1",
  453. "source": {
  454. "type": "git",
  455. "url": "https://github.com/consolidation/config.git",
  456. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  457. },
  458. "dist": {
  459. "type": "zip",
  460. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  461. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  462. "shasum": ""
  463. },
  464. "require": {
  465. "dflydev/dot-access-data": "^1.1.0",
  466. "grasmash/expander": "^1",
  467. "php": ">=5.4.0"
  468. },
  469. "require-dev": {
  470. "g1a/composer-test-scenarios": "^3",
  471. "php-coveralls/php-coveralls": "^1",
  472. "phpunit/phpunit": "^5",
  473. "squizlabs/php_codesniffer": "2.*",
  474. "symfony/console": "^2.5|^3|^4",
  475. "symfony/yaml": "^2.8.11|^3|^4"
  476. },
  477. "suggest": {
  478. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  479. },
  480. "type": "library",
  481. "extra": {
  482. "scenarios": {
  483. "symfony4": {
  484. "require-dev": {
  485. "symfony/console": "^4.0"
  486. },
  487. "config": {
  488. "platform": {
  489. "php": "7.1.3"
  490. }
  491. }
  492. },
  493. "symfony2": {
  494. "require-dev": {
  495. "symfony/console": "^2.8",
  496. "symfony/event-dispatcher": "^2.8",
  497. "phpunit/phpunit": "^4.8.36"
  498. },
  499. "remove": [
  500. "php-coveralls/php-coveralls"
  501. ],
  502. "config": {
  503. "platform": {
  504. "php": "5.4.8"
  505. }
  506. }
  507. }
  508. },
  509. "branch-alias": {
  510. "dev-master": "1.x-dev"
  511. }
  512. },
  513. "autoload": {
  514. "psr-4": {
  515. "Consolidation\\Config\\": "src"
  516. }
  517. },
  518. "notification-url": "https://packagist.org/downloads/",
  519. "license": [
  520. "MIT"
  521. ],
  522. "authors": [
  523. {
  524. "name": "Greg Anderson",
  525. "email": "greg.1.anderson@greenknowe.org"
  526. }
  527. ],
  528. "description": "Provide configuration services for a commandline tool.",
  529. "time": "2019-03-03T19:37:04+00:00"
  530. },
  531. {
  532. "name": "consolidation/filter-via-dot-access-data",
  533. "version": "1.0.0",
  534. "source": {
  535. "type": "git",
  536. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  537. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  538. },
  539. "dist": {
  540. "type": "zip",
  541. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  542. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  543. "shasum": ""
  544. },
  545. "require": {
  546. "dflydev/dot-access-data": "^1.1.0",
  547. "php": ">=5.5.0"
  548. },
  549. "require-dev": {
  550. "consolidation/robo": "^1.2.3",
  551. "g1a/composer-test-scenarios": "^3",
  552. "knplabs/github-api": "^2.7",
  553. "php-coveralls/php-coveralls": "^1",
  554. "php-http/guzzle6-adapter": "^1.1",
  555. "phpunit/phpunit": "^5",
  556. "squizlabs/php_codesniffer": "^2.8",
  557. "symfony/console": "^2.8|^3|^4"
  558. },
  559. "type": "library",
  560. "extra": {
  561. "scenarios": {
  562. "phpunit5": {
  563. "require-dev": {
  564. "phpunit/phpunit": "^5.7.27"
  565. },
  566. "remove": [
  567. "php-coveralls/php-coveralls"
  568. ],
  569. "config": {
  570. "platform": {
  571. "php": "5.6.33"
  572. }
  573. }
  574. }
  575. },
  576. "branch-alias": {
  577. "dev-master": "1.x-dev"
  578. }
  579. },
  580. "autoload": {
  581. "psr-4": {
  582. "Consolidation\\Filter\\": "src"
  583. }
  584. },
  585. "notification-url": "https://packagist.org/downloads/",
  586. "license": [
  587. "MIT"
  588. ],
  589. "authors": [
  590. {
  591. "name": "Greg Anderson",
  592. "email": "greg.1.anderson@greenknowe.org"
  593. }
  594. ],
  595. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  596. "time": "2019-01-18T06:05:07+00:00"
  597. },
  598. {
  599. "name": "consolidation/log",
  600. "version": "1.1.1",
  601. "source": {
  602. "type": "git",
  603. "url": "https://github.com/consolidation/log.git",
  604. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a"
  605. },
  606. "dist": {
  607. "type": "zip",
  608. "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  609. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  610. "shasum": ""
  611. },
  612. "require": {
  613. "php": ">=5.4.5",
  614. "psr/log": "^1.0",
  615. "symfony/console": "^2.8|^3|^4"
  616. },
  617. "require-dev": {
  618. "g1a/composer-test-scenarios": "^3",
  619. "php-coveralls/php-coveralls": "^1",
  620. "phpunit/phpunit": "^6",
  621. "squizlabs/php_codesniffer": "^2"
  622. },
  623. "type": "library",
  624. "extra": {
  625. "scenarios": {
  626. "symfony4": {
  627. "require": {
  628. "symfony/console": "^4.0"
  629. },
  630. "config": {
  631. "platform": {
  632. "php": "7.1.3"
  633. }
  634. }
  635. },
  636. "symfony2": {
  637. "require": {
  638. "symfony/console": "^2.8"
  639. },
  640. "require-dev": {
  641. "phpunit/phpunit": "^4.8.36"
  642. },
  643. "remove": [
  644. "php-coveralls/php-coveralls"
  645. ],
  646. "config": {
  647. "platform": {
  648. "php": "5.4.8"
  649. }
  650. }
  651. },
  652. "phpunit4": {
  653. "require-dev": {
  654. "phpunit/phpunit": "^4.8.36"
  655. },
  656. "remove": [
  657. "php-coveralls/php-coveralls"
  658. ],
  659. "config": {
  660. "platform": {
  661. "php": "5.4.8"
  662. }
  663. }
  664. }
  665. },
  666. "branch-alias": {
  667. "dev-master": "1.x-dev"
  668. }
  669. },
  670. "autoload": {
  671. "psr-4": {
  672. "Consolidation\\Log\\": "src"
  673. }
  674. },
  675. "notification-url": "https://packagist.org/downloads/",
  676. "license": [
  677. "MIT"
  678. ],
  679. "authors": [
  680. {
  681. "name": "Greg Anderson",
  682. "email": "greg.1.anderson@greenknowe.org"
  683. }
  684. ],
  685. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  686. "time": "2019-01-01T17:30:51+00:00"
  687. },
  688. {
  689. "name": "consolidation/output-formatters",
  690. "version": "3.5.0",
  691. "source": {
  692. "type": "git",
  693. "url": "https://github.com/consolidation/output-formatters.git",
  694. "reference": "99ec998ffb697e0eada5aacf81feebfb13023605"
  695. },
  696. "dist": {
  697. "type": "zip",
  698. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/99ec998ffb697e0eada5aacf81feebfb13023605",
  699. "reference": "99ec998ffb697e0eada5aacf81feebfb13023605",
  700. "shasum": ""
  701. },
  702. "require": {
  703. "dflydev/dot-access-data": "^1.1.0",
  704. "php": ">=5.4.0",
  705. "symfony/console": "^2.8|^3|^4",
  706. "symfony/finder": "^2.5|^3|^4"
  707. },
  708. "require-dev": {
  709. "g1a/composer-test-scenarios": "^3",
  710. "php-coveralls/php-coveralls": "^1",
  711. "phpunit/phpunit": "^5.7.27",
  712. "squizlabs/php_codesniffer": "^2.7",
  713. "symfony/var-dumper": "^2.8|^3|^4",
  714. "victorjonsson/markdowndocs": "^1.3"
  715. },
  716. "suggest": {
  717. "symfony/var-dumper": "For using the var_dump formatter"
  718. },
  719. "type": "library",
  720. "extra": {
  721. "scenarios": {
  722. "symfony4": {
  723. "require": {
  724. "symfony/console": "^4.0"
  725. },
  726. "require-dev": {
  727. "phpunit/phpunit": "^6"
  728. },
  729. "config": {
  730. "platform": {
  731. "php": "7.1.3"
  732. }
  733. }
  734. },
  735. "symfony3": {
  736. "require": {
  737. "symfony/console": "^3.4",
  738. "symfony/finder": "^3.4",
  739. "symfony/var-dumper": "^3.4"
  740. },
  741. "config": {
  742. "platform": {
  743. "php": "5.6.32"
  744. }
  745. }
  746. },
  747. "symfony2": {
  748. "require": {
  749. "symfony/console": "^2.8"
  750. },
  751. "require-dev": {
  752. "phpunit/phpunit": "^4.8.36"
  753. },
  754. "remove": [
  755. "php-coveralls/php-coveralls"
  756. ],
  757. "config": {
  758. "platform": {
  759. "php": "5.4.8"
  760. }
  761. },
  762. "scenario-options": {
  763. "create-lockfile": "false"
  764. }
  765. }
  766. },
  767. "branch-alias": {
  768. "dev-master": "3.x-dev"
  769. }
  770. },
  771. "autoload": {
  772. "psr-4": {
  773. "Consolidation\\OutputFormatters\\": "src"
  774. }
  775. },
  776. "notification-url": "https://packagist.org/downloads/",
  777. "license": [
  778. "MIT"
  779. ],
  780. "authors": [
  781. {
  782. "name": "Greg Anderson",
  783. "email": "greg.1.anderson@greenknowe.org"
  784. }
  785. ],
  786. "description": "Format text by applying transformations provided by plug-in formatters.",
  787. "time": "2019-05-30T23:16:01+00:00"
  788. },
  789. {
  790. "name": "consolidation/robo",
  791. "version": "1.4.12",
  792. "source": {
  793. "type": "git",
  794. "url": "https://github.com/consolidation/Robo.git",
  795. "reference": "eb45606f498b3426b9a98b7c85e300666a968e51"
  796. },
  797. "dist": {
  798. "type": "zip",
  799. "url": "https://api.github.com/repos/consolidation/Robo/zipball/eb45606f498b3426b9a98b7c85e300666a968e51",
  800. "reference": "eb45606f498b3426b9a98b7c85e300666a968e51",
  801. "shasum": ""
  802. },
  803. "require": {
  804. "consolidation/annotated-command": "^2.11.0|^4.1",
  805. "consolidation/config": "^1.2.1",
  806. "consolidation/log": "^1.1.1|^2",
  807. "consolidation/output-formatters": "^3.1.13|^4.1",
  808. "consolidation/self-update": "^1.1.5",
  809. "grasmash/yaml-expander": "^1.4",
  810. "league/container": "^2.4.1",
  811. "php": ">=5.5.0",
  812. "symfony/console": "^2.8|^3|^4",
  813. "symfony/event-dispatcher": "^2.5|^3|^4",
  814. "symfony/filesystem": "^2.5|^3|^4",
  815. "symfony/finder": "^2.5|^3|^4",
  816. "symfony/process": "^2.5|^3|^4"
  817. },
  818. "replace": {
  819. "codegyre/robo": "< 1.0"
  820. },
  821. "require-dev": {
  822. "g1a/composer-test-scenarios": "^3",
  823. "natxet/cssmin": "3.0.4",
  824. "patchwork/jsqueeze": "^2",
  825. "pear/archive_tar": "^1.4.4",
  826. "php-coveralls/php-coveralls": "^1",
  827. "phpunit/phpunit": "^5.7.27",
  828. "squizlabs/php_codesniffer": "^3"
  829. },
  830. "suggest": {
  831. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  832. "natxet/CssMin": "For minifying CSS files in taskMinify",
  833. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  834. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  835. },
  836. "bin": [
  837. "robo"
  838. ],
  839. "type": "library",
  840. "extra": {
  841. "scenarios": {
  842. "symfony4": {
  843. "require": {
  844. "symfony/console": "^4"
  845. },
  846. "config": {
  847. "platform": {
  848. "php": "7.1.3"
  849. }
  850. }
  851. },
  852. "symfony2": {
  853. "require": {
  854. "symfony/console": "^2.8"
  855. },
  856. "require-dev": {
  857. "phpunit/phpunit": "^4.8.36"
  858. },
  859. "remove": [
  860. "php-coveralls/php-coveralls"
  861. ],
  862. "config": {
  863. "platform": {
  864. "php": "5.5.9"
  865. }
  866. },
  867. "scenario-options": {
  868. "create-lockfile": "false"
  869. }
  870. }
  871. },
  872. "branch-alias": {
  873. "dev-master": "1.x-dev"
  874. }
  875. },
  876. "autoload": {
  877. "psr-4": {
  878. "Robo\\": "src"
  879. }
  880. },
  881. "notification-url": "https://packagist.org/downloads/",
  882. "license": [
  883. "MIT"
  884. ],
  885. "authors": [
  886. {
  887. "name": "Davert",
  888. "email": "davert.php@resend.cc"
  889. }
  890. ],
  891. "description": "Modern task runner",
  892. "time": "2020-02-18T17:31:26+00:00"
  893. },
  894. {
  895. "name": "consolidation/self-update",
  896. "version": "1.2.0",
  897. "source": {
  898. "type": "git",
  899. "url": "https://github.com/consolidation/self-update.git",
  900. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4"
  901. },
  902. "dist": {
  903. "type": "zip",
  904. "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4",
  905. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4",
  906. "shasum": ""
  907. },
  908. "require": {
  909. "php": ">=5.5.0",
  910. "symfony/console": "^2.8|^3|^4|^5",
  911. "symfony/filesystem": "^2.5|^3|^4|^5"
  912. },
  913. "bin": [
  914. "scripts/release"
  915. ],
  916. "type": "library",
  917. "extra": {
  918. "branch-alias": {
  919. "dev-master": "1.x-dev"
  920. }
  921. },
  922. "autoload": {
  923. "psr-4": {
  924. "SelfUpdate\\": "src"
  925. }
  926. },
  927. "notification-url": "https://packagist.org/downloads/",
  928. "license": [
  929. "MIT"
  930. ],
  931. "authors": [
  932. {
  933. "name": "Alexander Menk",
  934. "email": "menk@mestrona.net"
  935. },
  936. {
  937. "name": "Greg Anderson",
  938. "email": "greg.1.anderson@greenknowe.org"
  939. }
  940. ],
  941. "description": "Provides a self:update command for Symfony Console applications.",
  942. "time": "2020-04-13T02:49:20+00:00"
  943. },
  944. {
  945. "name": "consolidation/site-alias",
  946. "version": "3.0.0",
  947. "source": {
  948. "type": "git",
  949. "url": "https://github.com/consolidation/site-alias.git",
  950. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f"
  951. },
  952. "dist": {
  953. "type": "zip",
  954. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/8cfd3b6ab6d541086fc970bf850864293b284e6f",
  955. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f",
  956. "shasum": ""
  957. },
  958. "require": {
  959. "consolidation/config": "^1.2.1",
  960. "php": ">=5.5.0"
  961. },
  962. "require-dev": {
  963. "consolidation/robo": "^1.2.3",
  964. "g1a/composer-test-scenarios": "^3",
  965. "knplabs/github-api": "^2.7",
  966. "php-coveralls/php-coveralls": "^1",
  967. "php-http/guzzle6-adapter": "^1.1",
  968. "phpunit/phpunit": "^6",
  969. "squizlabs/php_codesniffer": "^2.8",
  970. "symfony/console": "^2.8|^3|^4",
  971. "symfony/yaml": "~2.3|^3"
  972. },
  973. "type": "library",
  974. "extra": {
  975. "scenarios": {
  976. "phpunit5": {
  977. "require-dev": {
  978. "phpunit/phpunit": "^5.7.27"
  979. },
  980. "remove": [
  981. "php-coveralls/php-coveralls"
  982. ],
  983. "config": {
  984. "platform": {
  985. "php": "5.6.33"
  986. }
  987. }
  988. }
  989. },
  990. "branch-alias": {
  991. "dev-master": "3.x-dev"
  992. }
  993. },
  994. "autoload": {
  995. "psr-4": {
  996. "Consolidation\\SiteAlias\\": "src"
  997. }
  998. },
  999. "notification-url": "https://packagist.org/downloads/",
  1000. "license": [
  1001. "MIT"
  1002. ],
  1003. "authors": [
  1004. {
  1005. "name": "Moshe Weitzman",
  1006. "email": "weitzman@tejasa.com"
  1007. },
  1008. {
  1009. "name": "Greg Anderson",
  1010. "email": "greg.1.anderson@greenknowe.org"
  1011. }
  1012. ],
  1013. "description": "Manage alias records for local and remote sites.",
  1014. "time": "2019-03-12T17:31:48+00:00"
  1015. },
  1016. {
  1017. "name": "consolidation/site-process",
  1018. "version": "2.1.0",
  1019. "source": {
  1020. "type": "git",
  1021. "url": "https://github.com/consolidation/site-process.git",
  1022. "reference": "f3211fa4c60671c6f068184221f06f932556e443"
  1023. },
  1024. "dist": {
  1025. "type": "zip",
  1026. "url": "https://api.github.com/repos/consolidation/site-process/zipball/f3211fa4c60671c6f068184221f06f932556e443",
  1027. "reference": "f3211fa4c60671c6f068184221f06f932556e443",
  1028. "shasum": ""
  1029. },
  1030. "require": {
  1031. "consolidation/config": "^1.2.1",
  1032. "consolidation/site-alias": "^3",
  1033. "php": ">=5.6.0",
  1034. "symfony/process": "^3.4"
  1035. },
  1036. "require-dev": {
  1037. "consolidation/robo": "^1.3",
  1038. "g1a/composer-test-scenarios": "^3",
  1039. "knplabs/github-api": "^2.7",
  1040. "php-coveralls/php-coveralls": "^1",
  1041. "php-http/guzzle6-adapter": "^1.1",
  1042. "phpunit/phpunit": "^6",
  1043. "squizlabs/php_codesniffer": "^2.8"
  1044. },
  1045. "type": "library",
  1046. "extra": {
  1047. "scenarios": {
  1048. "phpunit5": {
  1049. "require-dev": {
  1050. "phpunit/phpunit": "^5.7.27"
  1051. },
  1052. "remove": [
  1053. "php-coveralls/php-coveralls"
  1054. ],
  1055. "config": {
  1056. "platform": {
  1057. "php": "5.6.33"
  1058. }
  1059. }
  1060. }
  1061. },
  1062. "branch-alias": {
  1063. "dev-master": "0.x-dev"
  1064. }
  1065. },
  1066. "autoload": {
  1067. "psr-4": {
  1068. "Consolidation\\SiteProcess\\": "src"
  1069. }
  1070. },
  1071. "notification-url": "https://packagist.org/downloads/",
  1072. "license": [
  1073. "MIT"
  1074. ],
  1075. "authors": [
  1076. {
  1077. "name": "Greg Anderson",
  1078. "email": "greg.1.anderson@greenknowe.org"
  1079. },
  1080. {
  1081. "name": "Moshe Weitzman",
  1082. "email": "weitzman@tejasa.com"
  1083. }
  1084. ],
  1085. "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.",
  1086. "time": "2019-09-10T17:56:24+00:00"
  1087. },
  1088. {
  1089. "name": "container-interop/container-interop",
  1090. "version": "1.2.0",
  1091. "source": {
  1092. "type": "git",
  1093. "url": "https://github.com/container-interop/container-interop.git",
  1094. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  1095. },
  1096. "dist": {
  1097. "type": "zip",
  1098. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1099. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1100. "shasum": ""
  1101. },
  1102. "require": {
  1103. "psr/container": "^1.0"
  1104. },
  1105. "type": "library",
  1106. "autoload": {
  1107. "psr-4": {
  1108. "Interop\\Container\\": "src/Interop/Container/"
  1109. }
  1110. },
  1111. "notification-url": "https://packagist.org/downloads/",
  1112. "license": [
  1113. "MIT"
  1114. ],
  1115. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  1116. "homepage": "https://github.com/container-interop/container-interop",
  1117. "abandoned": "psr/container",
  1118. "time": "2017-02-14T19:40:03+00:00"
  1119. },
  1120. {
  1121. "name": "cweagans/composer-patches",
  1122. "version": "1.6.7",
  1123. "source": {
  1124. "type": "git",
  1125. "url": "https://github.com/cweagans/composer-patches.git",
  1126. "reference": "2e6f72a2ad8d59cd7e2b729f218bf42adb14f590"
  1127. },
  1128. "dist": {
  1129. "type": "zip",
  1130. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/2e6f72a2ad8d59cd7e2b729f218bf42adb14f590",
  1131. "reference": "2e6f72a2ad8d59cd7e2b729f218bf42adb14f590",
  1132. "shasum": ""
  1133. },
  1134. "require": {
  1135. "composer-plugin-api": "^1.0",
  1136. "php": ">=5.3.0"
  1137. },
  1138. "require-dev": {
  1139. "composer/composer": "~1.0",
  1140. "phpunit/phpunit": "~4.6"
  1141. },
  1142. "type": "composer-plugin",
  1143. "extra": {
  1144. "class": "cweagans\\Composer\\Patches"
  1145. },
  1146. "autoload": {
  1147. "psr-4": {
  1148. "cweagans\\Composer\\": "src"
  1149. }
  1150. },
  1151. "notification-url": "https://packagist.org/downloads/",
  1152. "license": [
  1153. "BSD-3-Clause"
  1154. ],
  1155. "authors": [
  1156. {
  1157. "name": "Cameron Eagans",
  1158. "email": "me@cweagans.net"
  1159. }
  1160. ],
  1161. "description": "Provides a way to patch Composer packages.",
  1162. "time": "2019-08-29T20:11:49+00:00"
  1163. },
  1164. {
  1165. "name": "dflydev/dot-access-configuration",
  1166. "version": "v1.0.3",
  1167. "source": {
  1168. "type": "git",
  1169. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  1170. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  1171. },
  1172. "dist": {
  1173. "type": "zip",
  1174. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1175. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1176. "shasum": ""
  1177. },
  1178. "require": {
  1179. "dflydev/dot-access-data": "1.*",
  1180. "dflydev/placeholder-resolver": "1.*",
  1181. "php": ">=5.3.2"
  1182. },
  1183. "require-dev": {
  1184. "symfony/yaml": "~2.1"
  1185. },
  1186. "suggest": {
  1187. "symfony/yaml": "Required for using the YAML Configuration Builders"
  1188. },
  1189. "type": "library",
  1190. "extra": {
  1191. "branch-alias": {
  1192. "dev-master": "1.0-dev"
  1193. }
  1194. },
  1195. "autoload": {
  1196. "psr-0": {
  1197. "Dflydev\\DotAccessConfiguration": "src"
  1198. }
  1199. },
  1200. "notification-url": "https://packagist.org/downloads/",
  1201. "license": [
  1202. "MIT"
  1203. ],
  1204. "authors": [
  1205. {
  1206. "name": "Dragonfly Development Inc.",
  1207. "email": "info@dflydev.com",
  1208. "homepage": "http://dflydev.com"
  1209. },
  1210. {
  1211. "name": "Beau Simensen",
  1212. "email": "beau@dflydev.com",
  1213. "homepage": "http://beausimensen.com"
  1214. }
  1215. ],
  1216. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  1217. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  1218. "keywords": [
  1219. "config",
  1220. "configuration"
  1221. ],
  1222. "time": "2018-09-08T23:00:17+00:00"
  1223. },
  1224. {
  1225. "name": "dflydev/dot-access-data",
  1226. "version": "v1.1.0",
  1227. "source": {
  1228. "type": "git",
  1229. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1230. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1231. },
  1232. "dist": {
  1233. "type": "zip",
  1234. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1235. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1236. "shasum": ""
  1237. },
  1238. "require": {
  1239. "php": ">=5.3.2"
  1240. },
  1241. "type": "library",
  1242. "extra": {
  1243. "branch-alias": {
  1244. "dev-master": "1.0-dev"
  1245. }
  1246. },
  1247. "autoload": {
  1248. "psr-0": {
  1249. "Dflydev\\DotAccessData": "src"
  1250. }
  1251. },
  1252. "notification-url": "https://packagist.org/downloads/",
  1253. "license": [
  1254. "MIT"
  1255. ],
  1256. "authors": [
  1257. {
  1258. "name": "Dragonfly Development Inc.",
  1259. "email": "info@dflydev.com",
  1260. "homepage": "http://dflydev.com"
  1261. },
  1262. {
  1263. "name": "Beau Simensen",
  1264. "email": "beau@dflydev.com",
  1265. "homepage": "http://beausimensen.com"
  1266. },
  1267. {
  1268. "name": "Carlos Frutos",
  1269. "email": "carlos@kiwing.it",
  1270. "homepage": "https://github.com/cfrutos"
  1271. }
  1272. ],
  1273. "description": "Given a deep data structure, access data by dot notation.",
  1274. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1275. "keywords": [
  1276. "access",
  1277. "data",
  1278. "dot",
  1279. "notation"
  1280. ],
  1281. "time": "2017-01-20T21:14:22+00:00"
  1282. },
  1283. {
  1284. "name": "dflydev/placeholder-resolver",
  1285. "version": "v1.0.2",
  1286. "source": {
  1287. "type": "git",
  1288. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1289. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  1290. },
  1291. "dist": {
  1292. "type": "zip",
  1293. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1294. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1295. "shasum": ""
  1296. },
  1297. "require": {
  1298. "php": ">=5.3.2"
  1299. },
  1300. "type": "library",
  1301. "extra": {
  1302. "branch-alias": {
  1303. "dev-master": "1.0-dev"
  1304. }
  1305. },
  1306. "autoload": {
  1307. "psr-0": {
  1308. "Dflydev\\PlaceholderResolver": "src"
  1309. }
  1310. },
  1311. "notification-url": "https://packagist.org/downloads/",
  1312. "license": [
  1313. "MIT"
  1314. ],
  1315. "authors": [
  1316. {
  1317. "name": "Dragonfly Development Inc.",
  1318. "email": "info@dflydev.com",
  1319. "homepage": "http://dflydev.com"
  1320. },
  1321. {
  1322. "name": "Beau Simensen",
  1323. "email": "beau@dflydev.com",
  1324. "homepage": "http://beausimensen.com"
  1325. }
  1326. ],
  1327. "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.",
  1328. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1329. "keywords": [
  1330. "placeholder",
  1331. "resolver"
  1332. ],
  1333. "time": "2012-10-28T21:08:28+00:00"
  1334. },
  1335. {
  1336. "name": "dnoegel/php-xdg-base-dir",
  1337. "version": "v0.1.1",
  1338. "source": {
  1339. "type": "git",
  1340. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1341. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  1342. },
  1343. "dist": {
  1344. "type": "zip",
  1345. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1346. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1347. "shasum": ""
  1348. },
  1349. "require": {
  1350. "php": ">=5.3.2"
  1351. },
  1352. "require-dev": {
  1353. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  1354. },
  1355. "type": "library",
  1356. "autoload": {
  1357. "psr-4": {
  1358. "XdgBaseDir\\": "src/"
  1359. }
  1360. },
  1361. "notification-url": "https://packagist.org/downloads/",
  1362. "license": [
  1363. "MIT"
  1364. ],
  1365. "description": "implementation of xdg base directory specification for php",
  1366. "time": "2019-12-04T15:06:13+00:00"
  1367. },
  1368. {
  1369. "name": "doctrine/annotations",
  1370. "version": "v1.4.0",
  1371. "source": {
  1372. "type": "git",
  1373. "url": "https://github.com/doctrine/annotations.git",
  1374. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  1375. },
  1376. "dist": {
  1377. "type": "zip",
  1378. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  1379. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  1380. "shasum": ""
  1381. },
  1382. "require": {
  1383. "doctrine/lexer": "1.*",
  1384. "php": "^5.6 || ^7.0"
  1385. },
  1386. "require-dev": {
  1387. "doctrine/cache": "1.*",
  1388. "phpunit/phpunit": "^5.7"
  1389. },
  1390. "type": "library",
  1391. "extra": {
  1392. "branch-alias": {
  1393. "dev-master": "1.4.x-dev"
  1394. }
  1395. },
  1396. "autoload": {
  1397. "psr-4": {
  1398. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1399. }
  1400. },
  1401. "notification-url": "https://packagist.org/downloads/",
  1402. "license": [
  1403. "MIT"
  1404. ],
  1405. "authors": [
  1406. {
  1407. "name": "Roman Borschel",
  1408. "email": "roman@code-factory.org"
  1409. },
  1410. {
  1411. "name": "Benjamin Eberlei",
  1412. "email": "kontakt@beberlei.de"
  1413. },
  1414. {
  1415. "name": "Guilherme Blanco",
  1416. "email": "guilhermeblanco@gmail.com"
  1417. },
  1418. {
  1419. "name": "Jonathan Wage",
  1420. "email": "jonwage@gmail.com"
  1421. },
  1422. {
  1423. "name": "Johannes Schmitt",
  1424. "email": "schmittjoh@gmail.com"
  1425. }
  1426. ],
  1427. "description": "Docblock Annotations Parser",
  1428. "homepage": "http://www.doctrine-project.org",
  1429. "keywords": [
  1430. "annotations",
  1431. "docblock",
  1432. "parser"
  1433. ],
  1434. "time": "2017-02-24T16:22:25+00:00"
  1435. },
  1436. {
  1437. "name": "doctrine/cache",
  1438. "version": "v1.6.2",
  1439. "source": {
  1440. "type": "git",
  1441. "url": "https://github.com/doctrine/cache.git",
  1442. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  1443. },
  1444. "dist": {
  1445. "type": "zip",
  1446. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1447. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1448. "shasum": ""
  1449. },
  1450. "require": {
  1451. "php": "~5.5|~7.0"
  1452. },
  1453. "conflict": {
  1454. "doctrine/common": ">2.2,<2.4"
  1455. },
  1456. "require-dev": {
  1457. "phpunit/phpunit": "~4.8|~5.0",
  1458. "predis/predis": "~1.0",
  1459. "satooshi/php-coveralls": "~0.6"
  1460. },
  1461. "type": "library",
  1462. "extra": {
  1463. "branch-alias": {
  1464. "dev-master": "1.6.x-dev"
  1465. }
  1466. },
  1467. "autoload": {
  1468. "psr-4": {
  1469. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1470. }
  1471. },
  1472. "notification-url": "https://packagist.org/downloads/",
  1473. "license": [
  1474. "MIT"
  1475. ],
  1476. "authors": [
  1477. {
  1478. "name": "Roman Borschel",
  1479. "email": "roman@code-factory.org"
  1480. },
  1481. {
  1482. "name": "Benjamin Eberlei",
  1483. "email": "kontakt@beberlei.de"
  1484. },
  1485. {
  1486. "name": "Guilherme Blanco",
  1487. "email": "guilhermeblanco@gmail.com"
  1488. },
  1489. {
  1490. "name": "Jonathan Wage",
  1491. "email": "jonwage@gmail.com"
  1492. },
  1493. {
  1494. "name": "Johannes Schmitt",
  1495. "email": "schmittjoh@gmail.com"
  1496. }
  1497. ],
  1498. "description": "Caching library offering an object-oriented API for many cache backends",
  1499. "homepage": "http://www.doctrine-project.org",
  1500. "keywords": [
  1501. "cache",
  1502. "caching"
  1503. ],
  1504. "time": "2017-07-22T12:49:21+00:00"
  1505. },
  1506. {
  1507. "name": "doctrine/collections",
  1508. "version": "v1.4.0",
  1509. "source": {
  1510. "type": "git",
  1511. "url": "https://github.com/doctrine/collections.git",
  1512. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1513. },
  1514. "dist": {
  1515. "type": "zip",
  1516. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1517. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1518. "shasum": ""
  1519. },
  1520. "require": {
  1521. "php": "^5.6 || ^7.0"
  1522. },
  1523. "require-dev": {
  1524. "doctrine/coding-standard": "~0.1@dev",
  1525. "phpunit/phpunit": "^5.7"
  1526. },
  1527. "type": "library",
  1528. "extra": {
  1529. "branch-alias": {
  1530. "dev-master": "1.3.x-dev"
  1531. }
  1532. },
  1533. "autoload": {
  1534. "psr-0": {
  1535. "Doctrine\\Common\\Collections\\": "lib/"
  1536. }
  1537. },
  1538. "notification-url": "https://packagist.org/downloads/",
  1539. "license": [
  1540. "MIT"
  1541. ],
  1542. "authors": [
  1543. {
  1544. "name": "Roman Borschel",
  1545. "email": "roman@code-factory.org"
  1546. },
  1547. {
  1548. "name": "Benjamin Eberlei",
  1549. "email": "kontakt@beberlei.de"
  1550. },
  1551. {
  1552. "name": "Guilherme Blanco",
  1553. "email": "guilhermeblanco@gmail.com"
  1554. },
  1555. {
  1556. "name": "Jonathan Wage",
  1557. "email": "jonwage@gmail.com"
  1558. },
  1559. {
  1560. "name": "Johannes Schmitt",
  1561. "email": "schmittjoh@gmail.com"
  1562. }
  1563. ],
  1564. "description": "Collections Abstraction library",
  1565. "homepage": "http://www.doctrine-project.org",
  1566. "keywords": [
  1567. "array",
  1568. "collections",
  1569. "iterator"
  1570. ],
  1571. "time": "2017-01-03T10:49:41+00:00"
  1572. },
  1573. {
  1574. "name": "doctrine/common",
  1575. "version": "v2.7.3",
  1576. "source": {
  1577. "type": "git",
  1578. "url": "https://github.com/doctrine/common.git",
  1579. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1580. },
  1581. "dist": {
  1582. "type": "zip",
  1583. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1584. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1585. "shasum": ""
  1586. },
  1587. "require": {
  1588. "doctrine/annotations": "1.*",
  1589. "doctrine/cache": "1.*",
  1590. "doctrine/collections": "1.*",
  1591. "doctrine/inflector": "1.*",
  1592. "doctrine/lexer": "1.*",
  1593. "php": "~5.6|~7.0"
  1594. },
  1595. "require-dev": {
  1596. "phpunit/phpunit": "^5.4.6"
  1597. },
  1598. "type": "library",
  1599. "extra": {
  1600. "branch-alias": {
  1601. "dev-master": "2.7.x-dev"
  1602. }
  1603. },
  1604. "autoload": {
  1605. "psr-4": {
  1606. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1607. }
  1608. },
  1609. "notification-url": "https://packagist.org/downloads/",
  1610. "license": [
  1611. "MIT"
  1612. ],
  1613. "authors": [
  1614. {
  1615. "name": "Roman Borschel",
  1616. "email": "roman@code-factory.org"
  1617. },
  1618. {
  1619. "name": "Benjamin Eberlei",
  1620. "email": "kontakt@beberlei.de"
  1621. },
  1622. {
  1623. "name": "Guilherme Blanco",
  1624. "email": "guilhermeblanco@gmail.com"
  1625. },
  1626. {
  1627. "name": "Jonathan Wage",
  1628. "email": "jonwage@gmail.com"
  1629. },
  1630. {
  1631. "name": "Johannes Schmitt",
  1632. "email": "schmittjoh@gmail.com"
  1633. }
  1634. ],
  1635. "description": "Common Library for Doctrine projects",
  1636. "homepage": "http://www.doctrine-project.org",
  1637. "keywords": [
  1638. "annotations",
  1639. "collections",
  1640. "eventmanager",
  1641. "persistence",
  1642. "spl"
  1643. ],
  1644. "time": "2017-07-22T08:35:12+00:00"
  1645. },
  1646. {
  1647. "name": "doctrine/inflector",
  1648. "version": "v1.2.0",
  1649. "source": {
  1650. "type": "git",
  1651. "url": "https://github.com/doctrine/inflector.git",
  1652. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1653. },
  1654. "dist": {
  1655. "type": "zip",
  1656. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1657. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1658. "shasum": ""
  1659. },
  1660. "require": {
  1661. "php": "^7.0"
  1662. },
  1663. "require-dev": {
  1664. "phpunit/phpunit": "^6.2"
  1665. },
  1666. "type": "library",
  1667. "extra": {
  1668. "branch-alias": {
  1669. "dev-master": "1.2.x-dev"
  1670. }
  1671. },
  1672. "autoload": {
  1673. "psr-4": {
  1674. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1675. }
  1676. },
  1677. "notification-url": "https://packagist.org/downloads/",
  1678. "license": [
  1679. "MIT"
  1680. ],
  1681. "authors": [
  1682. {
  1683. "name": "Roman Borschel",
  1684. "email": "roman@code-factory.org"
  1685. },
  1686. {
  1687. "name": "Benjamin Eberlei",
  1688. "email": "kontakt@beberlei.de"
  1689. },
  1690. {
  1691. "name": "Guilherme Blanco",
  1692. "email": "guilhermeblanco@gmail.com"
  1693. },
  1694. {
  1695. "name": "Jonathan Wage",
  1696. "email": "jonwage@gmail.com"
  1697. },
  1698. {
  1699. "name": "Johannes Schmitt",
  1700. "email": "schmittjoh@gmail.com"
  1701. }
  1702. ],
  1703. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1704. "homepage": "http://www.doctrine-project.org",
  1705. "keywords": [
  1706. "inflection",
  1707. "pluralize",
  1708. "singularize",
  1709. "string"
  1710. ],
  1711. "time": "2017-07-22T12:18:28+00:00"
  1712. },
  1713. {
  1714. "name": "doctrine/lexer",
  1715. "version": "1.0.2",
  1716. "source": {
  1717. "type": "git",
  1718. "url": "https://github.com/doctrine/lexer.git",
  1719. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8"
  1720. },
  1721. "dist": {
  1722. "type": "zip",
  1723. "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  1724. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  1725. "shasum": ""
  1726. },
  1727. "require": {
  1728. "php": ">=5.3.2"
  1729. },
  1730. "require-dev": {
  1731. "phpunit/phpunit": "^4.5"
  1732. },
  1733. "type": "library",
  1734. "extra": {
  1735. "branch-alias": {
  1736. "dev-master": "1.0.x-dev"
  1737. }
  1738. },
  1739. "autoload": {
  1740. "psr-4": {
  1741. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1742. }
  1743. },
  1744. "notification-url": "https://packagist.org/downloads/",
  1745. "license": [
  1746. "MIT"
  1747. ],
  1748. "authors": [
  1749. {
  1750. "name": "Roman Borschel",
  1751. "email": "roman@code-factory.org"
  1752. },
  1753. {
  1754. "name": "Guilherme Blanco",
  1755. "email": "guilhermeblanco@gmail.com"
  1756. },
  1757. {
  1758. "name": "Johannes Schmitt",
  1759. "email": "schmittjoh@gmail.com"
  1760. }
  1761. ],
  1762. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1763. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1764. "keywords": [
  1765. "annotations",
  1766. "docblock",
  1767. "lexer",
  1768. "parser",
  1769. "php"
  1770. ],
  1771. "time": "2019-06-08T11:03:04+00:00"
  1772. },
  1773. {
  1774. "name": "drupal/addtoany",
  1775. "version": "1.12.0",
  1776. "source": {
  1777. "type": "git",
  1778. "url": "https://git.drupalcode.org/project/addtoany.git",
  1779. "reference": "8.x-1.12"
  1780. },
  1781. "dist": {
  1782. "type": "zip",
  1783. "url": "https://ftp.drupal.org/files/projects/addtoany-8.x-1.12.zip",
  1784. "reference": "8.x-1.12",
  1785. "shasum": "f66b3cb0a95b500e4802e8ff9c29af04554327d8"
  1786. },
  1787. "require": {
  1788. "drupal/core": "*"
  1789. },
  1790. "type": "drupal-module",
  1791. "extra": {
  1792. "drupal": {
  1793. "version": "8.x-1.12",
  1794. "datestamp": "1554702781",
  1795. "security-coverage": {
  1796. "status": "covered",
  1797. "message": "Covered by Drupal's security advisory policy"
  1798. }
  1799. }
  1800. },
  1801. "notification-url": "https://packages.drupal.org/8/downloads",
  1802. "license": [
  1803. "GPL-2.0-or-later"
  1804. ],
  1805. "authors": [
  1806. {
  1807. "name": "AddToAny",
  1808. "homepage": "https://www.drupal.org/user/2640913"
  1809. },
  1810. {
  1811. "name": "micropat",
  1812. "homepage": "https://www.drupal.org/user/260224"
  1813. }
  1814. ],
  1815. "description": "Share buttons by AddToAny, including the AddToAny universal sharing button, Facebook, Twitter, Google+, Pinterest, and over 100 more on the <a href=\"https://www.addtoany.com/\" target=\"_blank\">AddToAny</a> platform.",
  1816. "homepage": "https://www.drupal.org/project/addtoany",
  1817. "support": {
  1818. "source": "https://git.drupalcode.org/project/addtoany"
  1819. }
  1820. },
  1821. {
  1822. "name": "drupal/admin_toolbar",
  1823. "version": "2.0.0",
  1824. "source": {
  1825. "type": "git",
  1826. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1827. "reference": "8.x-2.0"
  1828. },
  1829. "dist": {
  1830. "type": "zip",
  1831. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.0.zip",
  1832. "reference": "8.x-2.0",
  1833. "shasum": "568de63dbaa8046a82d327dbd0b892ab79fb87aa"
  1834. },
  1835. "require": {
  1836. "drupal/core": "*"
  1837. },
  1838. "type": "drupal-module",
  1839. "extra": {
  1840. "drupal": {
  1841. "version": "8.x-2.0",
  1842. "datestamp": "1573751237",
  1843. "security-coverage": {
  1844. "status": "covered",
  1845. "message": "Covered by Drupal's security advisory policy"
  1846. }
  1847. }
  1848. },
  1849. "notification-url": "https://packages.drupal.org/8/downloads",
  1850. "license": [
  1851. "GPL-2.0+"
  1852. ],
  1853. "authors": [
  1854. {
  1855. "name": "Wilfrid Roze (eme)",
  1856. "homepage": "https://www.drupal.org/u/eme",
  1857. "role": "Maintainer"
  1858. },
  1859. {
  1860. "name": "Romain Jarraud (romainj)",
  1861. "homepage": "https://www.drupal.org/u/romainj",
  1862. "role": "Maintainer"
  1863. },
  1864. {
  1865. "name": "Adrian Cid Almaguer (adriancid)",
  1866. "homepage": "https://www.drupal.org/u/adriancid",
  1867. "email": "adriancid@gmail.com",
  1868. "role": "Maintainer"
  1869. },
  1870. {
  1871. "name": "Mohamed Anis Taktak (matio89)",
  1872. "homepage": "https://www.drupal.org/u/matio89",
  1873. "role": "Maintainer"
  1874. },
  1875. {
  1876. "name": "fethi.krout",
  1877. "homepage": "https://www.drupal.org/user/3206765"
  1878. },
  1879. {
  1880. "name": "matio89",
  1881. "homepage": "https://www.drupal.org/user/2320090"
  1882. },
  1883. {
  1884. "name": "romainj",
  1885. "homepage": "https://www.drupal.org/user/370706"
  1886. }
  1887. ],
  1888. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1889. "homepage": "http://drupal.org/project/admin_toolbar",
  1890. "keywords": [
  1891. "Drupal",
  1892. "Toolbar"
  1893. ],
  1894. "support": {
  1895. "source": "http://cgit.drupalcode.org/admin_toolbar",
  1896. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1897. }
  1898. },
  1899. {
  1900. "name": "drupal/adminimal_theme",
  1901. "version": "1.5.0",
  1902. "source": {
  1903. "type": "git",
  1904. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1905. "reference": "8.x-1.5"
  1906. },
  1907. "dist": {
  1908. "type": "zip",
  1909. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.5.zip",
  1910. "reference": "8.x-1.5",
  1911. "shasum": "fb4457015d743faafecaa0776d2bebf2829a6738"
  1912. },
  1913. "require": {
  1914. "drupal/core": "~8.0"
  1915. },
  1916. "type": "drupal-theme",
  1917. "extra": {
  1918. "branch-alias": {
  1919. "dev-1.x": "1.x-dev"
  1920. },
  1921. "drupal": {
  1922. "version": "8.x-1.5",
  1923. "datestamp": "1558584484",
  1924. "security-coverage": {
  1925. "status": "covered",
  1926. "message": "Covered by Drupal's security advisory policy"
  1927. }
  1928. }
  1929. },
  1930. "notification-url": "https://packages.drupal.org/8/downloads",
  1931. "license": [
  1932. "GPL-2.0+"
  1933. ],
  1934. "authors": [
  1935. {
  1936. "name": "ANDiTKO",
  1937. "homepage": "https://www.drupal.org/user/1428124"
  1938. },
  1939. {
  1940. "name": "andrey.troeglazov",
  1941. "homepage": "https://www.drupal.org/user/3145389"
  1942. },
  1943. {
  1944. "name": "realityloop",
  1945. "homepage": "https://www.drupal.org/user/139189"
  1946. }
  1947. ],
  1948. "description": "Drupal administration theme with modern minimalist design.",
  1949. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1950. "support": {
  1951. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1952. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1953. }
  1954. },
  1955. {
  1956. "name": "drupal/audiofield",
  1957. "version": "1.9.0",
  1958. "source": {
  1959. "type": "git",
  1960. "url": "https://git.drupalcode.org/project/audiofield.git",
  1961. "reference": "8.x-1.9"
  1962. },
  1963. "dist": {
  1964. "type": "zip",
  1965. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.9.zip",
  1966. "reference": "8.x-1.9",
  1967. "shasum": "ddb2ca8dd5125a2bd0104e0001037c6fa2716682"
  1968. },
  1969. "require": {
  1970. "drupal/core": "~8.0"
  1971. },
  1972. "type": "drupal-module",
  1973. "extra": {
  1974. "drupal": {
  1975. "version": "8.x-1.9",
  1976. "datestamp": "1553712781",
  1977. "security-coverage": {
  1978. "status": "covered",
  1979. "message": "Covered by Drupal's security advisory policy"
  1980. }
  1981. },
  1982. "drush": {
  1983. "services": {
  1984. "drush.services.yml": "^9"
  1985. }
  1986. }
  1987. },
  1988. "notification-url": "https://packages.drupal.org/8/downloads",
  1989. "license": [
  1990. "GPL-2.0+"
  1991. ],
  1992. "authors": [
  1993. {
  1994. "name": "Daniel Moberly",
  1995. "homepage": "https://www.drupal.org/u/danielmoberly",
  1996. "role": "Maintainer"
  1997. },
  1998. {
  1999. "name": "josipsaric",
  2000. "homepage": "https://www.drupal.org/user/3063287"
  2001. },
  2002. {
  2003. "name": "tamerzg",
  2004. "homepage": "https://www.drupal.org/user/464564"
  2005. }
  2006. ],
  2007. "description": "AudioField Module",
  2008. "homepage": "https://www.drupal.org/project/audiofield",
  2009. "support": {
  2010. "source": "https://git.drupalcode.org/project/audiofield",
  2011. "issues": "https://www.drupal.org/project/issues/audiofield"
  2012. }
  2013. },
  2014. {
  2015. "name": "drupal/autologout",
  2016. "version": "1.0.0",
  2017. "source": {
  2018. "type": "git",
  2019. "url": "https://git.drupalcode.org/project/autologout.git",
  2020. "reference": "8.x-1.0"
  2021. },
  2022. "dist": {
  2023. "type": "zip",
  2024. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.0.zip",
  2025. "reference": "8.x-1.0",
  2026. "shasum": "0a5f67d4393b0acdf8522b1b1a5c9eb40bb05d93"
  2027. },
  2028. "require": {
  2029. "drupal/core": "~8.0"
  2030. },
  2031. "type": "drupal-module",
  2032. "extra": {
  2033. "drupal": {
  2034. "version": "8.x-1.0",
  2035. "datestamp": "1494237185",
  2036. "security-coverage": {
  2037. "status": "covered",
  2038. "message": "Covered by Drupal's security advisory policy"
  2039. }
  2040. }
  2041. },
  2042. "notification-url": "https://packages.drupal.org/8/downloads",
  2043. "license": [
  2044. "GPL-2.0+"
  2045. ],
  2046. "authors": [
  2047. {
  2048. "name": "AjK",
  2049. "homepage": "https://www.drupal.org/user/39030"
  2050. },
  2051. {
  2052. "name": "AjitS",
  2053. "homepage": "https://www.drupal.org/user/981944"
  2054. },
  2055. {
  2056. "name": "boshtian",
  2057. "homepage": "https://www.drupal.org/user/1773456"
  2058. },
  2059. {
  2060. "name": "dandrews",
  2061. "homepage": "https://www.drupal.org/user/2014490"
  2062. },
  2063. {
  2064. "name": "darksnow",
  2065. "homepage": "https://www.drupal.org/user/391915"
  2066. },
  2067. {
  2068. "name": "johnennew",
  2069. "homepage": "https://www.drupal.org/user/1150042"
  2070. },
  2071. {
  2072. "name": "jrglasgow",
  2073. "homepage": "https://www.drupal.org/user/36590"
  2074. },
  2075. {
  2076. "name": "kmasood",
  2077. "homepage": "https://www.drupal.org/user/1262860"
  2078. },
  2079. {
  2080. "name": "levelos",
  2081. "homepage": "https://www.drupal.org/user/54135"
  2082. },
  2083. {
  2084. "name": "prabeen.giri",
  2085. "homepage": "https://www.drupal.org/user/913078"
  2086. },
  2087. {
  2088. "name": "str8",
  2089. "homepage": "https://www.drupal.org/user/2865063"
  2090. }
  2091. ],
  2092. "description": "Adds automated timed logout.",
  2093. "homepage": "http://drupal.org/project/autologout",
  2094. "support": {
  2095. "source": "https://git.drupalcode.org/project/autologout"
  2096. }
  2097. },
  2098. {
  2099. "name": "drupal/basic",
  2100. "version": "1.3.0",
  2101. "source": {
  2102. "type": "git",
  2103. "url": "https://git.drupalcode.org/project/basic.git",
  2104. "reference": "8.x-1.3"
  2105. },
  2106. "dist": {
  2107. "type": "zip",
  2108. "url": "https://ftp.drupal.org/files/projects/basic-8.x-1.3.zip",
  2109. "reference": "8.x-1.3",
  2110. "shasum": "d42e75327d54ae38cf988ebe77f995b44fbc45f7"
  2111. },
  2112. "require": {
  2113. "drupal/core": "~8.0"
  2114. },
  2115. "type": "drupal-theme",
  2116. "extra": {
  2117. "branch-alias": {
  2118. "dev-1.x": "1.x-dev"
  2119. },
  2120. "drupal": {
  2121. "version": "8.x-1.3",
  2122. "datestamp": "1508096944",
  2123. "security-coverage": {
  2124. "status": "covered",
  2125. "message": "Covered by Drupal's security advisory policy"
  2126. }
  2127. }
  2128. },
  2129. "notification-url": "https://packages.drupal.org/8/downloads",
  2130. "license": [
  2131. "GPL-2.0+"
  2132. ],
  2133. "authors": [
  2134. {
  2135. "name": "Steve Krueger",
  2136. "homepage": "http://thejibe.com",
  2137. "email": "steve@thejibe.com",
  2138. "role": "Maintainer"
  2139. },
  2140. {
  2141. "name": "Joël Pittet",
  2142. "homepage": "https://www.drupal.org/u/joelpittet",
  2143. "email": "joel@pittet.ca",
  2144. "role": "Maintainer"
  2145. },
  2146. {
  2147. "name": "Leah Wagner",
  2148. "homepage": "http://thejibe.com",
  2149. "email": "leah@thejibe.com",
  2150. "role": "Maintainer"
  2151. },
  2152. {
  2153. "name": "Catherine Winters",
  2154. "homepage": "http://www.catherinewinters.com",
  2155. "email": "catherine@catherinewinters.com",
  2156. "role": "Maintainer"
  2157. },
  2158. {
  2159. "name": "Johannes Schmidt",
  2160. "homepage": "http://2tabs.com",
  2161. "email": "mail@2tabs.com",
  2162. "role": "Maintainer"
  2163. },
  2164. {
  2165. "name": "johannez",
  2166. "homepage": "https://www.drupal.org/user/670988"
  2167. },
  2168. {
  2169. "name": "leahtard",
  2170. "homepage": "https://www.drupal.org/user/683812"
  2171. }
  2172. ],
  2173. "description": "HTML5, SASS, Responsive grid starter theme.",
  2174. "homepage": "http://drupal.org/project/basic",
  2175. "support": {
  2176. "source": "http://cgit.drupalcode.org/basic",
  2177. "issues": "https://www.drupal.org/project/issues/basic",
  2178. "irc": "irc://irc.freenode.org/drupal-contribute"
  2179. }
  2180. },
  2181. {
  2182. "name": "drupal/better_messages",
  2183. "version": "1.0.0-alpha2",
  2184. "source": {
  2185. "type": "git",
  2186. "url": "https://git.drupalcode.org/project/better_messages.git",
  2187. "reference": "8.x-1.0-alpha2"
  2188. },
  2189. "dist": {
  2190. "type": "zip",
  2191. "url": "https://ftp.drupal.org/files/projects/better_messages-8.x-1.0-alpha2.zip",
  2192. "reference": "8.x-1.0-alpha2",
  2193. "shasum": "ca09231502d5e0d8a5c0d16f9efc5430091b8a38"
  2194. },
  2195. "require": {
  2196. "drupal/core": "~8.0"
  2197. },
  2198. "type": "drupal-module",
  2199. "extra": {
  2200. "branch-alias": {
  2201. "dev-1.x": "1.x-dev"
  2202. },
  2203. "drupal": {
  2204. "version": "8.x-1.0-alpha2",
  2205. "datestamp": "1517663880",
  2206. "security-coverage": {
  2207. "status": "not-covered",
  2208. "message": "Alpha releases are not covered by Drupal security advisories."
  2209. }
  2210. }
  2211. },
  2212. "notification-url": "https://packages.drupal.org/8/downloads",
  2213. "license": [
  2214. "GPL-2.0-or-later"
  2215. ],
  2216. "authors": [
  2217. {
  2218. "name": "Mohammed J. Razem",
  2219. "homepage": "https://www.drupal.org/user/255384"
  2220. },
  2221. {
  2222. "name": "bucefal91",
  2223. "homepage": "https://www.drupal.org/user/504128"
  2224. },
  2225. {
  2226. "name": "le72",
  2227. "homepage": "https://www.drupal.org/user/1866896"
  2228. }
  2229. ],
  2230. "description": "Better Messages module for Drupal 8.",
  2231. "homepage": "https://www.drupal.org/project/better_messages",
  2232. "support": {
  2233. "source": "https://git.drupalcode.org/project/better_messages"
  2234. }
  2235. },
  2236. {
  2237. "name": "drupal/bulkdelete",
  2238. "version": "dev-1.x",
  2239. "source": {
  2240. "type": "git",
  2241. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2242. "reference": "36e12429e99606463b9ef15203c2018de69965b2"
  2243. },
  2244. "require": {
  2245. "drupal/core": "^8.7.7 || ^9"
  2246. },
  2247. "type": "drupal-module",
  2248. "extra": {
  2249. "branch-alias": {
  2250. "dev-1.x": "1.x-dev"
  2251. },
  2252. "drupal": {
  2253. "version": "8.x-1.x-dev",
  2254. "datestamp": "1569586386",
  2255. "security-coverage": {
  2256. "status": "not-covered",
  2257. "message": "Dev releases are not covered by Drupal security advisories."
  2258. }
  2259. }
  2260. },
  2261. "notification-url": "https://packages.drupal.org/8/downloads",
  2262. "license": [
  2263. "GPL-2.0-or-later"
  2264. ],
  2265. "authors": [
  2266. {
  2267. "name": "Kars-T",
  2268. "homepage": "https://www.drupal.org/user/224499"
  2269. },
  2270. {
  2271. "name": "Rahul Seth",
  2272. "homepage": "https://www.drupal.org/user/2694359"
  2273. },
  2274. {
  2275. "name": "adriancid",
  2276. "homepage": "https://www.drupal.org/user/1962106"
  2277. },
  2278. {
  2279. "name": "robertDouglass",
  2280. "homepage": "https://www.drupal.org/user/5449"
  2281. }
  2282. ],
  2283. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2284. "homepage": "https://www.drupal.org/project/bulkdelete",
  2285. "support": {
  2286. "source": "https://git.drupalcode.org/project/bulkdelete"
  2287. },
  2288. "time": "2020-05-24T06:01:38+00:00"
  2289. },
  2290. {
  2291. "name": "drupal/color_field",
  2292. "version": "2.0.0",
  2293. "source": {
  2294. "type": "git",
  2295. "url": "https://git.drupalcode.org/project/color_field.git",
  2296. "reference": "8.x-2.0"
  2297. },
  2298. "dist": {
  2299. "type": "zip",
  2300. "url": "https://ftp.drupal.org/files/projects/color_field-8.x-2.0.zip",
  2301. "reference": "8.x-2.0",
  2302. "shasum": "27c510d258e409e1d029d69cf7747e96c1087df6"
  2303. },
  2304. "require": {
  2305. "drupal/core": "*"
  2306. },
  2307. "require-dev": {
  2308. "drupal/token": "~1.3"
  2309. },
  2310. "suggest": {
  2311. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  2312. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  2313. },
  2314. "type": "drupal-module",
  2315. "extra": {
  2316. "branch-alias": {
  2317. "dev-2.x": "2.x-dev"
  2318. },
  2319. "drupal": {
  2320. "version": "8.x-2.0",
  2321. "datestamp": "1579324387",
  2322. "security-coverage": {
  2323. "status": "covered",
  2324. "message": "Covered by Drupal's security advisory policy"
  2325. }
  2326. }
  2327. },
  2328. "notification-url": "https://packages.drupal.org/8/downloads",
  2329. "license": [
  2330. "GPL-2.0-or-later"
  2331. ],
  2332. "authors": [
  2333. {
  2334. "name": "targoo",
  2335. "homepage": "https://www.drupal.org/user/431910",
  2336. "role": "Maintainer"
  2337. },
  2338. {
  2339. "name": "Nick Wilde",
  2340. "homepage": "https://www.drupal.org/user/nickwilde",
  2341. "role": "Maintainer"
  2342. }
  2343. ],
  2344. "description": "Provides a color field type to store the color value and opacity",
  2345. "homepage": "https://www.drupal.org/project/color_field",
  2346. "support": {
  2347. "source": "http://cgit.drupalcode.org/color_field",
  2348. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2349. }
  2350. },
  2351. {
  2352. "name": "drupal/config_devel",
  2353. "version": "1.7.0",
  2354. "source": {
  2355. "type": "git",
  2356. "url": "https://git.drupalcode.org/project/config_devel.git",
  2357. "reference": "8.x-1.7"
  2358. },
  2359. "dist": {
  2360. "type": "zip",
  2361. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.7.zip",
  2362. "reference": "8.x-1.7",
  2363. "shasum": "4ebcf4fb2a2842232b9bf9b0855e3728df918fc7"
  2364. },
  2365. "require": {
  2366. "drupal/core": "*"
  2367. },
  2368. "type": "drupal-module",
  2369. "extra": {
  2370. "drupal": {
  2371. "version": "8.x-1.7",
  2372. "datestamp": "1590070764",
  2373. "security-coverage": {
  2374. "status": "covered",
  2375. "message": "Covered by Drupal's security advisory policy"
  2376. }
  2377. }
  2378. },
  2379. "notification-url": "https://packages.drupal.org/8/downloads",
  2380. "license": [
  2381. "GPL-2.0+"
  2382. ],
  2383. "authors": [
  2384. {
  2385. "name": "alexpott",
  2386. "homepage": "https://www.drupal.org/user/157725"
  2387. },
  2388. {
  2389. "name": "benjy",
  2390. "homepage": "https://www.drupal.org/user/1852732"
  2391. },
  2392. {
  2393. "name": "chx",
  2394. "homepage": "https://www.drupal.org/user/9446"
  2395. },
  2396. {
  2397. "name": "joachim",
  2398. "homepage": "https://www.drupal.org/user/107701"
  2399. },
  2400. {
  2401. "name": "nedjo",
  2402. "homepage": "https://www.drupal.org/user/4481"
  2403. },
  2404. {
  2405. "name": "tim.plunkett",
  2406. "homepage": "https://www.drupal.org/user/241634"
  2407. },
  2408. {
  2409. "name": "vijaycs85",
  2410. "homepage": "https://www.drupal.org/user/93488"
  2411. }
  2412. ],
  2413. "description": "Helps developers work with configuration.",
  2414. "homepage": "https://www.drupal.org/project/config_devel",
  2415. "support": {
  2416. "source": "https://git.drupalcode.org/project/config_devel"
  2417. }
  2418. },
  2419. {
  2420. "name": "drupal/config_filter",
  2421. "version": "1.5.0",
  2422. "source": {
  2423. "type": "git",
  2424. "url": "https://git.drupalcode.org/project/config_filter.git",
  2425. "reference": "8.x-1.5"
  2426. },
  2427. "dist": {
  2428. "type": "zip",
  2429. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.5.zip",
  2430. "reference": "8.x-1.5",
  2431. "shasum": "81210684c378dab856b3c2bce5eeaa58992d2efc"
  2432. },
  2433. "require": {
  2434. "drupal/core": "^8 || ^9"
  2435. },
  2436. "suggest": {
  2437. "drupal/config_split": "Split site configuration for different environments."
  2438. },
  2439. "type": "drupal-module",
  2440. "extra": {
  2441. "branch-alias": {
  2442. "dev-1.x": "1.x-dev"
  2443. },
  2444. "drupal": {
  2445. "version": "8.x-1.5",
  2446. "datestamp": "1572542288",
  2447. "security-coverage": {
  2448. "status": "covered",
  2449. "message": "Covered by Drupal's security advisory policy"
  2450. }
  2451. }
  2452. },
  2453. "notification-url": "https://packages.drupal.org/8/downloads",
  2454. "license": [
  2455. "GPL-2.0+"
  2456. ],
  2457. "authors": [
  2458. {
  2459. "name": "Fabian Bircher",
  2460. "homepage": "https://www.drupal.org/u/bircher",
  2461. "email": "opensource@fabianbircher.com",
  2462. "role": "Maintainer"
  2463. },
  2464. {
  2465. "name": "Nuvole Web",
  2466. "homepage": "http://nuvole.org",
  2467. "email": "info@nuvole.org",
  2468. "role": "Maintainer"
  2469. },
  2470. {
  2471. "name": "pescetti",
  2472. "homepage": "https://www.drupal.org/user/436244"
  2473. }
  2474. ],
  2475. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2476. "homepage": "https://www.drupal.org/project/config_filter",
  2477. "keywords": [
  2478. "Drupal",
  2479. "configuration",
  2480. "configuration management"
  2481. ],
  2482. "support": {
  2483. "source": "http://cgit.drupalcode.org/config_filter",
  2484. "issues": "https://www.drupal.org/project/issues/config_filter",
  2485. "irc": "irc://irc.freenode.org/drupal-contribute"
  2486. }
  2487. },
  2488. {
  2489. "name": "drupal/config_ignore",
  2490. "version": "2.1.0",
  2491. "source": {
  2492. "type": "git",
  2493. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2494. "reference": "8.x-2.1"
  2495. },
  2496. "dist": {
  2497. "type": "zip",
  2498. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.1.zip",
  2499. "reference": "8.x-2.1",
  2500. "shasum": "07e00684930706632b3f2fc2a7433ffdae57cde7"
  2501. },
  2502. "require": {
  2503. "drupal/config_filter": "1.*",
  2504. "drupal/core": "~8.0"
  2505. },
  2506. "type": "drupal-module",
  2507. "extra": {
  2508. "branch-alias": {
  2509. "dev-2.x": "2.x-dev"
  2510. },
  2511. "drupal": {
  2512. "version": "8.x-2.1",
  2513. "datestamp": "1576528386",
  2514. "security-coverage": {
  2515. "status": "covered",
  2516. "message": "Covered by Drupal's security advisory policy"
  2517. }
  2518. }
  2519. },
  2520. "notification-url": "https://packages.drupal.org/8/downloads",
  2521. "license": [
  2522. "GPL-2.0+"
  2523. ],
  2524. "authors": [
  2525. {
  2526. "name": "Tommy Lynge Jørgensen",
  2527. "homepage": "https://www.drupal.org/u/tlyngej",
  2528. "email": "tlyngej@gmail.com",
  2529. "role": "Maintainer"
  2530. },
  2531. {
  2532. "name": "Fabian Bircher",
  2533. "homepage": "https://www.drupal.org/u/bircher",
  2534. "role": "Maintainer"
  2535. },
  2536. {
  2537. "name": "tlyngej",
  2538. "homepage": "https://www.drupal.org/user/413139"
  2539. }
  2540. ],
  2541. "description": "Ignore certain configuration during import.",
  2542. "homepage": "http://drupal.org/project/config_ignore",
  2543. "support": {
  2544. "source": "http://cgit.drupalcode.org/config_ignore",
  2545. "issues": "http://drupal.org/project/config_ignore",
  2546. "irc": "irc://irc.freenode.org/drupal-contribute"
  2547. }
  2548. },
  2549. {
  2550. "name": "drupal/config_update",
  2551. "version": "1.7.0",
  2552. "source": {
  2553. "type": "git",
  2554. "url": "https://git.drupalcode.org/project/config_update.git",
  2555. "reference": "8.x-1.7"
  2556. },
  2557. "dist": {
  2558. "type": "zip",
  2559. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.7.zip",
  2560. "reference": "8.x-1.7",
  2561. "shasum": "8f079abf7c2ea826a27fa5224b0770a26404c968"
  2562. },
  2563. "require": {
  2564. "drupal/core": "^8 || ^9"
  2565. },
  2566. "type": "drupal-module",
  2567. "extra": {
  2568. "drupal": {
  2569. "version": "8.x-1.7",
  2570. "datestamp": "1586355587",
  2571. "security-coverage": {
  2572. "status": "covered",
  2573. "message": "Covered by Drupal's security advisory policy"
  2574. }
  2575. }
  2576. },
  2577. "notification-url": "https://packages.drupal.org/8/downloads",
  2578. "license": [
  2579. "GPL-2.0-or-later"
  2580. ],
  2581. "authors": [
  2582. {
  2583. "name": "jhodgdon",
  2584. "homepage": "https://www.drupal.org/user/155601"
  2585. },
  2586. {
  2587. "name": "nedjo",
  2588. "homepage": "https://www.drupal.org/user/4481"
  2589. }
  2590. ],
  2591. "description": "Provides basic revert and update functionality for other modules",
  2592. "homepage": "https://www.drupal.org/project/config_update",
  2593. "support": {
  2594. "source": "https://git.drupalcode.org/project/config_update"
  2595. }
  2596. },
  2597. {
  2598. "name": "drupal/console",
  2599. "version": "1.9.4",
  2600. "source": {
  2601. "type": "git",
  2602. "url": "https://github.com/hechoendrupal/drupal-console.git",
  2603. "reference": "04522b687b2149dc1f808599e716421a20d50a5b"
  2604. },
  2605. "dist": {
  2606. "type": "zip",
  2607. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/04522b687b2149dc1f808599e716421a20d50a5b",
  2608. "reference": "04522b687b2149dc1f808599e716421a20d50a5b",
  2609. "shasum": ""
  2610. },
  2611. "require": {
  2612. "alchemy/zippy": "~0.4",
  2613. "composer/installers": "~1.0",
  2614. "doctrine/annotations": "^1.2",
  2615. "doctrine/collections": "^1.3",
  2616. "drupal/console-core": "1.9.4",
  2617. "drupal/console-extend-plugin": "~0",
  2618. "php": "^5.5.9 || ^7.0",
  2619. "psy/psysh": "0.6.* || ~0.8",
  2620. "symfony/css-selector": "~2.8|~3.0",
  2621. "symfony/dom-crawler": "~2.8|~3.0",
  2622. "symfony/http-foundation": "~2.8|~3.0"
  2623. },
  2624. "suggest": {
  2625. "symfony/thanks": "Thank your favorite PHP projects on GitHub using the CLI",
  2626. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically"
  2627. },
  2628. "bin": [
  2629. "bin/drupal"
  2630. ],
  2631. "type": "library",
  2632. "autoload": {
  2633. "psr-4": {
  2634. "Drupal\\Console\\": "src"
  2635. }
  2636. },
  2637. "notification-url": "https://packagist.org/downloads/",
  2638. "license": [
  2639. "GPL-2.0-or-later"
  2640. ],
  2641. "authors": [
  2642. {
  2643. "name": "David Flores",
  2644. "email": "dmousex@gmail.com",
  2645. "homepage": "http://dmouse.net"
  2646. },
  2647. {
  2648. "name": "Jesus Manuel Olivas",
  2649. "email": "jesus.olivas@gmail.com",
  2650. "homepage": "http://jmolivas.com"
  2651. },
  2652. {
  2653. "name": "Eduardo Garcia",
  2654. "email": "enzo@enzolutions.com",
  2655. "homepage": "http://enzolutions.com/"
  2656. },
  2657. {
  2658. "name": "Omar Aguirre",
  2659. "email": "omersguchigu@gmail.com"
  2660. },
  2661. {
  2662. "name": "Drupal Console Contributors",
  2663. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  2664. }
  2665. ],
  2666. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  2667. "homepage": "http://drupalconsole.com/",
  2668. "keywords": [
  2669. "console",
  2670. "development",
  2671. "drupal",
  2672. "symfony"
  2673. ],
  2674. "time": "2019-11-11T19:35:01+00:00"
  2675. },
  2676. {
  2677. "name": "drupal/console-core",
  2678. "version": "1.9.4",
  2679. "source": {
  2680. "type": "git",
  2681. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  2682. "reference": "cc6f50c6ac8199140224347c862df75fd2d2f5ed"
  2683. },
  2684. "dist": {
  2685. "type": "zip",
  2686. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/cc6f50c6ac8199140224347c862df75fd2d2f5ed",
  2687. "reference": "cc6f50c6ac8199140224347c862df75fd2d2f5ed",
  2688. "shasum": ""
  2689. },
  2690. "require": {
  2691. "dflydev/dot-access-configuration": "^1.0",
  2692. "drupal/console-en": "1.9.4",
  2693. "guzzlehttp/guzzle": "~6.1",
  2694. "php": "^5.5.9 || ^7.0",
  2695. "stecman/symfony-console-completion": "~0.7",
  2696. "symfony/config": "~2.8|~3.0",
  2697. "symfony/console": "~2.8|~3.0",
  2698. "symfony/debug": "~2.8|~3.0",
  2699. "symfony/dependency-injection": "~2.8|~3.0",
  2700. "symfony/event-dispatcher": "~2.8|~3.0",
  2701. "symfony/filesystem": "~2.8|~3.0",
  2702. "symfony/finder": "~2.8|~3.0",
  2703. "symfony/process": "~2.8|~3.0",
  2704. "symfony/translation": "~2.8|~3.0",
  2705. "symfony/yaml": "~2.8|~3.0",
  2706. "twig/twig": "^1.23.1",
  2707. "webflo/drupal-finder": "^1.0",
  2708. "webmozart/path-util": "^2.3"
  2709. },
  2710. "type": "library",
  2711. "autoload": {
  2712. "files": [
  2713. "src/functions.php"
  2714. ],
  2715. "psr-4": {
  2716. "Drupal\\Console\\Core\\": "src"
  2717. }
  2718. },
  2719. "notification-url": "https://packagist.org/downloads/",
  2720. "license": [
  2721. "GPL-2.0-or-later"
  2722. ],
  2723. "authors": [
  2724. {
  2725. "name": "David Flores",
  2726. "email": "dmousex@gmail.com",
  2727. "homepage": "http://dmouse.net"
  2728. },
  2729. {
  2730. "name": "Jesus Manuel Olivas",
  2731. "email": "jesus.olivas@gmail.com",
  2732. "homepage": "http://jmolivas.com"
  2733. },
  2734. {
  2735. "name": "Eduardo Garcia",
  2736. "email": "enzo@enzolutions.com",
  2737. "homepage": "http://enzolutions.com/"
  2738. },
  2739. {
  2740. "name": "Omar Aguirre",
  2741. "email": "omersguchigu@gmail.com"
  2742. },
  2743. {
  2744. "name": "Drupal Console Contributors",
  2745. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  2746. }
  2747. ],
  2748. "description": "Drupal Console Core",
  2749. "homepage": "http://drupalconsole.com/",
  2750. "keywords": [
  2751. "console",
  2752. "development",
  2753. "drupal",
  2754. "symfony"
  2755. ],
  2756. "time": "2019-11-11T19:26:28+00:00"
  2757. },
  2758. {
  2759. "name": "drupal/console-en",
  2760. "version": "1.9.4",
  2761. "source": {
  2762. "type": "git",
  2763. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  2764. "reference": "30813a832fdb1244e84cbcc012cd103d5e9d673d"
  2765. },
  2766. "dist": {
  2767. "type": "zip",
  2768. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/30813a832fdb1244e84cbcc012cd103d5e9d673d",
  2769. "reference": "30813a832fdb1244e84cbcc012cd103d5e9d673d",
  2770. "shasum": ""
  2771. },
  2772. "type": "library",
  2773. "notification-url": "https://packagist.org/downloads/",
  2774. "license": [
  2775. "GPL-2.0-or-later"
  2776. ],
  2777. "authors": [
  2778. {
  2779. "name": "David Flores",
  2780. "email": "dmousex@gmail.com",
  2781. "homepage": "http://dmouse.net"
  2782. },
  2783. {
  2784. "name": "Jesus Manuel Olivas",
  2785. "email": "jesus.olivas@gmail.com",
  2786. "homepage": "http://jmolivas.com"
  2787. },
  2788. {
  2789. "name": "Eduardo Garcia",
  2790. "email": "enzo@enzolutions.com",
  2791. "homepage": "http://enzolutions.com/"
  2792. },
  2793. {
  2794. "name": "Omar Aguirre",
  2795. "email": "omersguchigu@gmail.com"
  2796. },
  2797. {
  2798. "name": "Drupal Console Contributors",
  2799. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  2800. }
  2801. ],
  2802. "description": "Drupal Console English Language",
  2803. "homepage": "http://drupalconsole.com/",
  2804. "keywords": [
  2805. "console",
  2806. "development",
  2807. "drupal",
  2808. "symfony"
  2809. ],
  2810. "time": "2019-10-07T23:45:30+00:00"
  2811. },
  2812. {
  2813. "name": "drupal/console-extend-plugin",
  2814. "version": "0.9.3",
  2815. "source": {
  2816. "type": "git",
  2817. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  2818. "reference": "ad8e52df34b2e78bdacfffecc9fe8edf41843342"
  2819. },
  2820. "dist": {
  2821. "type": "zip",
  2822. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/ad8e52df34b2e78bdacfffecc9fe8edf41843342",
  2823. "reference": "ad8e52df34b2e78bdacfffecc9fe8edf41843342",
  2824. "shasum": ""
  2825. },
  2826. "require": {
  2827. "composer-plugin-api": "^1.0",
  2828. "composer/installers": "^1.2",
  2829. "symfony/finder": "~2.7|~3.0",
  2830. "symfony/yaml": "~2.7|~3.0"
  2831. },
  2832. "type": "composer-plugin",
  2833. "extra": {
  2834. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  2835. },
  2836. "autoload": {
  2837. "psr-4": {
  2838. "Drupal\\Console\\Composer\\Plugin\\": "src"
  2839. }
  2840. },
  2841. "notification-url": "https://packagist.org/downloads/",
  2842. "license": [
  2843. "GPL-2.0+"
  2844. ],
  2845. "authors": [
  2846. {
  2847. "name": "Jesus Manuel Olivas",
  2848. "email": "jesus.olivas@gmail.com"
  2849. }
  2850. ],
  2851. "description": "Drupal Console Extend Plugin",
  2852. "time": "2019-11-07T20:15:27+00:00"
  2853. },
  2854. {
  2855. "name": "drupal/context",
  2856. "version": "4.0.0-beta2",
  2857. "source": {
  2858. "type": "git",
  2859. "url": "https://git.drupalcode.org/project/context.git",
  2860. "reference": "8.x-4.0-beta2"
  2861. },
  2862. "dist": {
  2863. "type": "zip",
  2864. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta2.zip",
  2865. "reference": "8.x-4.0-beta2",
  2866. "shasum": "e41bc912e1ec73bc4d08a3cf730dc2405a9213d3"
  2867. },
  2868. "require": {
  2869. "drupal/core": "~8.0"
  2870. },
  2871. "type": "drupal-module",
  2872. "extra": {
  2873. "drupal": {
  2874. "version": "8.x-4.0-beta2",
  2875. "datestamp": "1505378944",
  2876. "security-coverage": {
  2877. "status": "not-covered",
  2878. "message": "Beta releases are not covered by Drupal security advisories."
  2879. }
  2880. }
  2881. },
  2882. "notification-url": "https://packages.drupal.org/8/downloads",
  2883. "license": [
  2884. "MIT"
  2885. ],
  2886. "authors": [
  2887. {
  2888. "name": "Christoffer Palm",
  2889. "homepage": "http://www.oddhill.se/",
  2890. "email": "christoffer.palm@oddhill.se",
  2891. "role": "Developer"
  2892. },
  2893. {
  2894. "name": "NormySan",
  2895. "homepage": "https://www.drupal.org/user/112352"
  2896. },
  2897. {
  2898. "name": "Steven Jones",
  2899. "homepage": "https://www.drupal.org/user/99644"
  2900. },
  2901. {
  2902. "name": "alex_b",
  2903. "homepage": "https://www.drupal.org/user/53995"
  2904. },
  2905. {
  2906. "name": "boshtian",
  2907. "homepage": "https://www.drupal.org/user/1773456"
  2908. },
  2909. {
  2910. "name": "colan",
  2911. "homepage": "https://www.drupal.org/user/58704"
  2912. },
  2913. {
  2914. "name": "emanaton",
  2915. "homepage": "https://www.drupal.org/user/120853"
  2916. },
  2917. {
  2918. "name": "febbraro",
  2919. "homepage": "https://www.drupal.org/user/43670"
  2920. },
  2921. {
  2922. "name": "fizk",
  2923. "homepage": "https://www.drupal.org/user/473174"
  2924. },
  2925. {
  2926. "name": "hass",
  2927. "homepage": "https://www.drupal.org/user/85918"
  2928. },
  2929. {
  2930. "name": "hefox",
  2931. "homepage": "https://www.drupal.org/user/426416"
  2932. },
  2933. {
  2934. "name": "hyrcan",
  2935. "homepage": "https://www.drupal.org/user/26618"
  2936. },
  2937. {
  2938. "name": "jmiccolis",
  2939. "homepage": "https://www.drupal.org/user/31731"
  2940. },
  2941. {
  2942. "name": "nedjo",
  2943. "homepage": "https://www.drupal.org/user/4481"
  2944. },
  2945. {
  2946. "name": "tekante",
  2947. "homepage": "https://www.drupal.org/user/640024"
  2948. },
  2949. {
  2950. "name": "yhahn",
  2951. "homepage": "https://www.drupal.org/user/264833"
  2952. }
  2953. ],
  2954. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2955. "homepage": "https://github.com/oddhill/context",
  2956. "keywords": [
  2957. "Drupal",
  2958. "block",
  2959. "conditions",
  2960. "context",
  2961. "visibility"
  2962. ],
  2963. "support": {
  2964. "source": "https://github.com/oddhill/context",
  2965. "issues": "https://github.com/oddhill/context/issues",
  2966. "docs": "https://github.com/oddhill/context"
  2967. }
  2968. },
  2969. {
  2970. "name": "drupal/core",
  2971. "version": "8.8.6",
  2972. "source": {
  2973. "type": "git",
  2974. "url": "https://github.com/drupal/core.git",
  2975. "reference": "a5daf2aa45bbc72da72e1e64d5261f746ffb508c"
  2976. },
  2977. "dist": {
  2978. "type": "zip",
  2979. "url": "https://api.github.com/repos/drupal/core/zipball/a5daf2aa45bbc72da72e1e64d5261f746ffb508c",
  2980. "reference": "a5daf2aa45bbc72da72e1e64d5261f746ffb508c",
  2981. "shasum": ""
  2982. },
  2983. "require": {
  2984. "asm89/stack-cors": "^1.1",
  2985. "composer/semver": "^1.0",
  2986. "doctrine/annotations": "^1.4",
  2987. "doctrine/common": "^2.7",
  2988. "easyrdf/easyrdf": "^0.9",
  2989. "egulias/email-validator": "^2.0",
  2990. "ext-date": "*",
  2991. "ext-dom": "*",
  2992. "ext-filter": "*",
  2993. "ext-gd": "*",
  2994. "ext-hash": "*",
  2995. "ext-json": "*",
  2996. "ext-pcre": "*",
  2997. "ext-pdo": "*",
  2998. "ext-session": "*",
  2999. "ext-simplexml": "*",
  3000. "ext-spl": "*",
  3001. "ext-tokenizer": "*",
  3002. "ext-xml": "*",
  3003. "guzzlehttp/guzzle": "^6.3",
  3004. "masterminds/html5": "^2.1",
  3005. "pear/archive_tar": "^1.4.9",
  3006. "php": ">=7.0.8",
  3007. "stack/builder": "^1.0",
  3008. "symfony-cmf/routing": "^1.4",
  3009. "symfony/class-loader": "~3.4.0",
  3010. "symfony/console": "~3.4.0",
  3011. "symfony/dependency-injection": "~3.4.26",
  3012. "symfony/event-dispatcher": "~3.4.0",
  3013. "symfony/http-foundation": "~3.4.27",
  3014. "symfony/http-kernel": "~3.4.14",
  3015. "symfony/polyfill-iconv": "^1.0",
  3016. "symfony/process": "~3.4.0",
  3017. "symfony/psr-http-message-bridge": "^1.1.2",
  3018. "symfony/routing": "~3.4.0",
  3019. "symfony/serializer": "~3.4.0",
  3020. "symfony/translation": "~3.4.0",
  3021. "symfony/validator": "~3.4.0",
  3022. "symfony/yaml": "~3.4.5",
  3023. "twig/twig": "^1.38.2",
  3024. "typo3/phar-stream-wrapper": "^3.1.3",
  3025. "zendframework/zend-diactoros": "^1.8",
  3026. "zendframework/zend-feed": "^2.12"
  3027. },
  3028. "conflict": {
  3029. "drupal/pathauto": "<1.6",
  3030. "drush/drush": "<8.1.10"
  3031. },
  3032. "replace": {
  3033. "drupal/action": "self.version",
  3034. "drupal/aggregator": "self.version",
  3035. "drupal/automated_cron": "self.version",
  3036. "drupal/ban": "self.version",
  3037. "drupal/bartik": "self.version",
  3038. "drupal/basic_auth": "self.version",
  3039. "drupal/big_pipe": "self.version",
  3040. "drupal/block": "self.version",
  3041. "drupal/block_content": "self.version",
  3042. "drupal/block_place": "self.version",
  3043. "drupal/book": "self.version",
  3044. "drupal/breakpoint": "self.version",
  3045. "drupal/ckeditor": "self.version",
  3046. "drupal/claro": "self.version",
  3047. "drupal/classy": "self.version",
  3048. "drupal/color": "self.version",
  3049. "drupal/comment": "self.version",
  3050. "drupal/config": "self.version",
  3051. "drupal/config_translation": "self.version",
  3052. "drupal/contact": "self.version",
  3053. "drupal/content_moderation": "self.version",
  3054. "drupal/content_translation": "self.version",
  3055. "drupal/contextual": "self.version",
  3056. "drupal/core-annotation": "self.version",
  3057. "drupal/core-assertion": "self.version",
  3058. "drupal/core-bridge": "self.version",
  3059. "drupal/core-class-finder": "self.version",
  3060. "drupal/core-datetime": "self.version",
  3061. "drupal/core-dependency-injection": "self.version",
  3062. "drupal/core-diff": "self.version",
  3063. "drupal/core-discovery": "self.version",
  3064. "drupal/core-event-dispatcher": "self.version",
  3065. "drupal/core-file-cache": "self.version",
  3066. "drupal/core-file-security": "self.version",
  3067. "drupal/core-filesystem": "self.version",
  3068. "drupal/core-gettext": "self.version",
  3069. "drupal/core-graph": "self.version",
  3070. "drupal/core-http-foundation": "self.version",
  3071. "drupal/core-php-storage": "self.version",
  3072. "drupal/core-plugin": "self.version",
  3073. "drupal/core-proxy-builder": "self.version",
  3074. "drupal/core-render": "self.version",
  3075. "drupal/core-serialization": "self.version",
  3076. "drupal/core-transliteration": "self.version",
  3077. "drupal/core-utility": "self.version",
  3078. "drupal/core-uuid": "self.version",
  3079. "drupal/core-version": "self.version",
  3080. "drupal/datetime": "self.version",
  3081. "drupal/datetime_range": "self.version",
  3082. "drupal/dblog": "self.version",
  3083. "drupal/dynamic_page_cache": "self.version",
  3084. "drupal/editor": "self.version",
  3085. "drupal/entity_reference": "self.version",
  3086. "drupal/field": "self.version",
  3087. "drupal/field_layout": "self.version",
  3088. "drupal/field_ui": "self.version",
  3089. "drupal/file": "self.version",
  3090. "drupal/filter": "self.version",
  3091. "drupal/forum": "self.version",
  3092. "drupal/hal": "self.version",
  3093. "drupal/help": "self.version",
  3094. "drupal/help_topics": "self.version",
  3095. "drupal/history": "self.version",
  3096. "drupal/image": "self.version",
  3097. "drupal/inline_form_errors": "self.version",
  3098. "drupal/jsonapi": "self.version",
  3099. "drupal/language": "self.version",
  3100. "drupal/layout_builder": "self.version",
  3101. "drupal/layout_discovery": "self.version",
  3102. "drupal/link": "self.version",
  3103. "drupal/locale": "self.version",
  3104. "drupal/media": "self.version",
  3105. "drupal/media_library": "self.version",
  3106. "drupal/menu_link_content": "self.version",
  3107. "drupal/menu_ui": "self.version",
  3108. "drupal/migrate": "self.version",
  3109. "drupal/migrate_drupal": "self.version",
  3110. "drupal/migrate_drupal_multilingual": "self.version",
  3111. "drupal/migrate_drupal_ui": "self.version",
  3112. "drupal/minimal": "self.version",
  3113. "drupal/node": "self.version",
  3114. "drupal/options": "self.version",
  3115. "drupal/page_cache": "self.version",
  3116. "drupal/path": "self.version",
  3117. "drupal/path_alias": "self.version",
  3118. "drupal/quickedit": "self.version",
  3119. "drupal/rdf": "self.version",
  3120. "drupal/responsive_image": "self.version",
  3121. "drupal/rest": "self.version",
  3122. "drupal/search": "self.version",
  3123. "drupal/serialization": "self.version",
  3124. "drupal/settings_tray": "self.version",
  3125. "drupal/seven": "self.version",
  3126. "drupal/shortcut": "self.version",
  3127. "drupal/simpletest": "self.version",
  3128. "drupal/standard": "self.version",
  3129. "drupal/stark": "self.version",
  3130. "drupal/statistics": "self.version",
  3131. "drupal/syslog": "self.version",
  3132. "drupal/system": "self.version",
  3133. "drupal/taxonomy": "self.version",
  3134. "drupal/telephone": "self.version",
  3135. "drupal/text": "self.version",
  3136. "drupal/toolbar": "self.version",
  3137. "drupal/tour": "self.version",
  3138. "drupal/tracker": "self.version",
  3139. "drupal/update": "self.version",
  3140. "drupal/user": "self.version",
  3141. "drupal/views": "self.version",
  3142. "drupal/views_ui": "self.version",
  3143. "drupal/workflows": "self.version",
  3144. "drupal/workspaces": "self.version"
  3145. },
  3146. "type": "drupal-core",
  3147. "extra": {
  3148. "drupal-scaffold": {
  3149. "file-mapping": {
  3150. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  3151. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  3152. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  3153. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  3154. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  3155. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  3156. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  3157. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  3158. "[web-root]/index.php": "assets/scaffold/files/index.php",
  3159. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  3160. "[web-root]/README.txt": "assets/scaffold/files/drupal.README.txt",
  3161. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  3162. "[web-root]/update.php": "assets/scaffold/files/update.php",
  3163. "[web-root]/web.config": "assets/scaffold/files/web.config",
  3164. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  3165. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  3166. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  3167. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  3168. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  3169. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  3170. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  3171. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  3172. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  3173. }
  3174. }
  3175. },
  3176. "autoload": {
  3177. "psr-4": {
  3178. "Drupal\\Core\\": "lib/Drupal/Core",
  3179. "Drupal\\Component\\": "lib/Drupal/Component",
  3180. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
  3181. },
  3182. "classmap": [
  3183. "lib/Drupal.php",
  3184. "lib/Drupal/Component/Utility/Timer.php",
  3185. "lib/Drupal/Component/Utility/Unicode.php",
  3186. "lib/Drupal/Core/Database/Database.php",
  3187. "lib/Drupal/Core/DrupalKernel.php",
  3188. "lib/Drupal/Core/DrupalKernelInterface.php",
  3189. "lib/Drupal/Core/Site/Settings.php"
  3190. ]
  3191. },
  3192. "notification-url": "https://packagist.org/downloads/",
  3193. "license": [
  3194. "GPL-2.0-or-later"
  3195. ],
  3196. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3197. "time": "2020-05-20T08:22:02+00:00"
  3198. },
  3199. {
  3200. "name": "drupal/core-composer-scaffold",
  3201. "version": "8.8.6",
  3202. "source": {
  3203. "type": "git",
  3204. "url": "https://github.com/drupal/core-composer-scaffold.git",
  3205. "reference": "4825cb5234c28dff79ad298db582dfb23ff4ca59"
  3206. },
  3207. "dist": {
  3208. "type": "zip",
  3209. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/4825cb5234c28dff79ad298db582dfb23ff4ca59",
  3210. "reference": "4825cb5234c28dff79ad298db582dfb23ff4ca59",
  3211. "shasum": ""
  3212. },
  3213. "require": {
  3214. "composer-plugin-api": "^1.0.0",
  3215. "php": ">=7.0.8"
  3216. },
  3217. "conflict": {
  3218. "drupal-composer/drupal-scaffold": "*"
  3219. },
  3220. "require-dev": {
  3221. "composer/composer": "^1.8@stable"
  3222. },
  3223. "type": "composer-plugin",
  3224. "extra": {
  3225. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  3226. "branch-alias": {
  3227. "dev-master": "1.0.x-dev"
  3228. }
  3229. },
  3230. "autoload": {
  3231. "psr-4": {
  3232. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  3233. }
  3234. },
  3235. "notification-url": "https://packagist.org/downloads/",
  3236. "license": [
  3237. "GPL-2.0-or-later"
  3238. ],
  3239. "description": "A flexible Composer project scaffold builder.",
  3240. "homepage": "https://www.drupal.org/project/drupal",
  3241. "keywords": [
  3242. "drupal"
  3243. ],
  3244. "time": "2020-03-10T10:15:17+00:00"
  3245. },
  3246. {
  3247. "name": "drupal/core-recommended",
  3248. "version": "8.8.6",
  3249. "source": {
  3250. "type": "git",
  3251. "url": "https://github.com/drupal/core-recommended.git",
  3252. "reference": "361d61f272767e0e34f8ac8c7a51e7c14e387714"
  3253. },
  3254. "dist": {
  3255. "type": "zip",
  3256. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/361d61f272767e0e34f8ac8c7a51e7c14e387714",
  3257. "reference": "361d61f272767e0e34f8ac8c7a51e7c14e387714",
  3258. "shasum": ""
  3259. },
  3260. "require": {
  3261. "asm89/stack-cors": "1.2.0",
  3262. "composer/installers": "v1.7.0",
  3263. "composer/semver": "1.5.0",
  3264. "doctrine/annotations": "v1.4.0",
  3265. "doctrine/cache": "v1.6.2",
  3266. "doctrine/collections": "v1.4.0",
  3267. "doctrine/common": "v2.7.3",
  3268. "doctrine/inflector": "v1.2.0",
  3269. "doctrine/lexer": "1.0.2",
  3270. "drupal/core": "8.8.6",
  3271. "easyrdf/easyrdf": "0.9.1",
  3272. "egulias/email-validator": "2.1.11",
  3273. "guzzlehttp/guzzle": "6.3.3",
  3274. "guzzlehttp/promises": "v1.3.1",
  3275. "guzzlehttp/psr7": "1.6.1",
  3276. "masterminds/html5": "2.3.0",
  3277. "paragonie/random_compat": "v9.99.99",
  3278. "pear/archive_tar": "1.4.9",
  3279. "pear/console_getopt": "v1.4.2",
  3280. "pear/pear-core-minimal": "v1.10.9",
  3281. "pear/pear_exception": "v1.0.0",
  3282. "psr/container": "1.0.0",
  3283. "psr/http-message": "1.0.1",
  3284. "psr/log": "1.1.0",
  3285. "ralouphie/getallheaders": "3.0.3",
  3286. "stack/builder": "v1.0.5",
  3287. "symfony-cmf/routing": "1.4.1",
  3288. "symfony/class-loader": "v3.4.35",
  3289. "symfony/console": "v3.4.35",
  3290. "symfony/debug": "v3.4.35",
  3291. "symfony/dependency-injection": "v3.4.35",
  3292. "symfony/event-dispatcher": "v3.4.35",
  3293. "symfony/http-foundation": "v3.4.35",
  3294. "symfony/http-kernel": "v3.4.35",
  3295. "symfony/polyfill-ctype": "v1.12.0",
  3296. "symfony/polyfill-iconv": "v1.12.0",
  3297. "symfony/polyfill-mbstring": "v1.12.0",
  3298. "symfony/polyfill-php56": "v1.12.0",
  3299. "symfony/polyfill-php70": "v1.12.0",
  3300. "symfony/polyfill-util": "v1.12.0",
  3301. "symfony/process": "v3.4.35",
  3302. "symfony/psr-http-message-bridge": "v1.1.2",
  3303. "symfony/routing": "v3.4.35",
  3304. "symfony/serializer": "v3.4.35",
  3305. "symfony/translation": "v3.4.35",
  3306. "symfony/validator": "v3.4.35",
  3307. "symfony/yaml": "v3.4.35",
  3308. "twig/twig": "v1.42.3",
  3309. "typo3/phar-stream-wrapper": "v3.1.3",
  3310. "zendframework/zend-diactoros": "1.8.7",
  3311. "zendframework/zend-escaper": "2.6.1",
  3312. "zendframework/zend-feed": "2.12.0",
  3313. "zendframework/zend-stdlib": "3.2.1"
  3314. },
  3315. "conflict": {
  3316. "webflo/drupal-core-strict": "*"
  3317. },
  3318. "type": "metapackage",
  3319. "notification-url": "https://packagist.org/downloads/",
  3320. "license": [
  3321. "GPL-2.0-or-later"
  3322. ],
  3323. "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.",
  3324. "time": "2020-05-20T08:22:02+00:00"
  3325. },
  3326. {
  3327. "name": "drupal/ctools",
  3328. "version": "3.2.0",
  3329. "source": {
  3330. "type": "git",
  3331. "url": "https://git.drupalcode.org/project/ctools.git",
  3332. "reference": "8.x-3.2"
  3333. },
  3334. "dist": {
  3335. "type": "zip",
  3336. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.2.zip",
  3337. "reference": "8.x-3.2",
  3338. "shasum": "d6da87239b64ba708a5977e7b33b1e009e36b091"
  3339. },
  3340. "require": {
  3341. "drupal/core": "^8.5"
  3342. },
  3343. "type": "drupal-module",
  3344. "extra": {
  3345. "drupal": {
  3346. "version": "8.x-3.2",
  3347. "datestamp": "1550728386",
  3348. "security-coverage": {
  3349. "status": "covered",
  3350. "message": "Covered by Drupal's security advisory policy"
  3351. }
  3352. }
  3353. },
  3354. "notification-url": "https://packages.drupal.org/8/downloads",
  3355. "license": [
  3356. "GPL-2.0+"
  3357. ],
  3358. "authors": [
  3359. {
  3360. "name": "Kris Vanderwater (EclipseGc)",
  3361. "homepage": "https://www.drupal.org/u/eclipsegc",
  3362. "role": "Maintainer"
  3363. },
  3364. {
  3365. "name": "Jakob Perry (japerry)",
  3366. "homepage": "https://www.drupal.org/u/japerry",
  3367. "role": "Maintainer"
  3368. },
  3369. {
  3370. "name": "Tim Plunkett (tim.plunkett)",
  3371. "homepage": "https://www.drupal.org/u/timplunkett",
  3372. "role": "Maintainer"
  3373. },
  3374. {
  3375. "name": "James Gilliland (neclimdul)",
  3376. "homepage": "https://www.drupal.org/u/neclimdul",
  3377. "role": "Maintainer"
  3378. },
  3379. {
  3380. "name": "Daniel Wehner (dawehner)",
  3381. "homepage": "https://www.drupal.org/u/dawehner",
  3382. "role": "Maintainer"
  3383. },
  3384. {
  3385. "name": "joelpittet",
  3386. "homepage": "https://www.drupal.org/user/160302"
  3387. },
  3388. {
  3389. "name": "merlinofchaos",
  3390. "homepage": "https://www.drupal.org/user/26979"
  3391. },
  3392. {
  3393. "name": "neclimdul",
  3394. "homepage": "https://www.drupal.org/user/48673"
  3395. },
  3396. {
  3397. "name": "sdboyer",
  3398. "homepage": "https://www.drupal.org/user/146719"
  3399. },
  3400. {
  3401. "name": "sun",
  3402. "homepage": "https://www.drupal.org/user/54136"
  3403. },
  3404. {
  3405. "name": "tim.plunkett",
  3406. "homepage": "https://www.drupal.org/user/241634"
  3407. }
  3408. ],
  3409. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3410. "homepage": "https://www.drupal.org/project/ctools",
  3411. "support": {
  3412. "source": "http://cgit.drupalcode.org/ctools",
  3413. "issues": "https://www.drupal.org/project/issues/ctools"
  3414. }
  3415. },
  3416. {
  3417. "name": "drupal/date_range_formatter",
  3418. "version": "3.1.0",
  3419. "source": {
  3420. "type": "git",
  3421. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3422. "reference": "8.x-3.1"
  3423. },
  3424. "dist": {
  3425. "type": "zip",
  3426. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-8.x-3.1.zip",
  3427. "reference": "8.x-3.1",
  3428. "shasum": "a98c511ac90eb92879235bc82a3aa643f7b5c173"
  3429. },
  3430. "require": {
  3431. "drupal/core": "*"
  3432. },
  3433. "type": "drupal-module",
  3434. "extra": {
  3435. "drupal": {
  3436. "version": "8.x-3.1",
  3437. "datestamp": "1502454544",
  3438. "security-coverage": {
  3439. "status": "covered",
  3440. "message": "Covered by Drupal's security advisory policy"
  3441. }
  3442. }
  3443. },
  3444. "notification-url": "https://packages.drupal.org/8/downloads",
  3445. "license": [
  3446. "GPL-2.0-or-later"
  3447. ],
  3448. "authors": [
  3449. {
  3450. "name": "maximpodorov",
  3451. "homepage": "https://www.drupal.org/user/515310"
  3452. },
  3453. {
  3454. "name": "sudishth",
  3455. "homepage": "https://www.drupal.org/user/1440562"
  3456. }
  3457. ],
  3458. "description": "Formats date ranges.",
  3459. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3460. "support": {
  3461. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3462. }
  3463. },
  3464. {
  3465. "name": "drupal/devel",
  3466. "version": "2.1.0",
  3467. "source": {
  3468. "type": "git",
  3469. "url": "https://git.drupalcode.org/project/devel.git",
  3470. "reference": "8.x-2.1"
  3471. },
  3472. "dist": {
  3473. "type": "zip",
  3474. "url": "https://ftp.drupal.org/files/projects/devel-8.x-2.1.zip",
  3475. "reference": "8.x-2.1",
  3476. "shasum": "8f735892922aa5f228e681e645e5f02b1c008f14"
  3477. },
  3478. "require": {
  3479. "drupal/core": "~8.0",
  3480. "symfony/var-dumper": "~2.7|^3|^4"
  3481. },
  3482. "type": "drupal-module",
  3483. "extra": {
  3484. "drupal": {
  3485. "version": "8.x-2.1",
  3486. "datestamp": "1556799496",
  3487. "security-coverage": {
  3488. "status": "covered",
  3489. "message": "Covered by Drupal's security advisory policy"
  3490. }
  3491. },
  3492. "drush": {
  3493. "services": {
  3494. "drush.services.yml": "^9"
  3495. }
  3496. }
  3497. },
  3498. "notification-url": "https://packages.drupal.org/8/downloads",
  3499. "license": [
  3500. "GPL-2.0+"
  3501. ],
  3502. "authors": [
  3503. {
  3504. "name": "Moshe Weitzman",
  3505. "homepage": "https://github.com/weitzman",
  3506. "email": "weitzman@tejasa.com",
  3507. "role": "Maintainer"
  3508. },
  3509. {
  3510. "name": "Hans Salvisberg",
  3511. "homepage": "https://www.drupal.org/u/salvis",
  3512. "email": "drupal@salvisberg.com",
  3513. "role": "Maintainer"
  3514. },
  3515. {
  3516. "name": "Luca Lusso",
  3517. "homepage": "https://www.drupal.org/u/lussoluca",
  3518. "role": "Maintainer"
  3519. },
  3520. {
  3521. "name": "Marco (willzyx)",
  3522. "homepage": "https://www.drupal.org/u/willzyx",
  3523. "role": "Maintainer"
  3524. },
  3525. {
  3526. "name": "See contributors",
  3527. "homepage": "https://www.drupal.org/node/3236/committers"
  3528. }
  3529. ],
  3530. "description": "Various blocks, pages, and functions for developers.",
  3531. "homepage": "http://drupal.org/project/devel",
  3532. "support": {
  3533. "source": "http://cgit.drupalcode.org/devel",
  3534. "issues": "http://drupal.org/project/devel",
  3535. "irc": "irc://irc.freenode.org/drupal-contribute"
  3536. }
  3537. },
  3538. {
  3539. "name": "drupal/domain",
  3540. "version": "1.0.0-alpha16",
  3541. "source": {
  3542. "type": "git",
  3543. "url": "https://git.drupalcode.org/project/domain.git",
  3544. "reference": "8.x-1.0-alpha16"
  3545. },
  3546. "dist": {
  3547. "type": "zip",
  3548. "url": "https://ftp.drupal.org/files/projects/domain-8.x-1.0-alpha16.zip",
  3549. "reference": "8.x-1.0-alpha16",
  3550. "shasum": "d0088936af09e922ec873080d7960a1dc020bef8"
  3551. },
  3552. "require": {
  3553. "drupal/core": "^8.5"
  3554. },
  3555. "require-dev": {
  3556. "drupal/domain_access": "*"
  3557. },
  3558. "type": "drupal-module",
  3559. "extra": {
  3560. "drupal": {
  3561. "version": "8.x-1.0-alpha16",
  3562. "datestamp": "1561126081",
  3563. "security-coverage": {
  3564. "status": "not-covered",
  3565. "message": "Alpha releases are not covered by Drupal security advisories."
  3566. }
  3567. }
  3568. },
  3569. "notification-url": "https://packages.drupal.org/8/downloads",
  3570. "license": [
  3571. "GPL-2.0-or-later"
  3572. ],
  3573. "authors": [
  3574. {
  3575. "name": "agentrickard",
  3576. "homepage": "https://www.drupal.org/user/20975"
  3577. },
  3578. {
  3579. "name": "nonsie",
  3580. "homepage": "https://www.drupal.org/user/29899"
  3581. }
  3582. ],
  3583. "description": "Creates domain records within a Drupal installation.",
  3584. "homepage": "https://www.drupal.org/project/domain",
  3585. "support": {
  3586. "source": "https://git.drupalcode.org/project/domain"
  3587. }
  3588. },
  3589. {
  3590. "name": "drupal/domain_access",
  3591. "version": "1.0.0-alpha16",
  3592. "require": {
  3593. "drupal/core": "*",
  3594. "drupal/domain": "self.version"
  3595. },
  3596. "type": "metapackage",
  3597. "extra": {
  3598. "drupal": {
  3599. "version": "8.x-1.0-alpha16",
  3600. "datestamp": "1561126081",
  3601. "security-coverage": {
  3602. "status": "not-covered",
  3603. "message": "Alpha releases are not covered by Drupal security advisories."
  3604. }
  3605. }
  3606. },
  3607. "notification-url": "https://packages.drupal.org/8/downloads",
  3608. "license": [
  3609. "GPL-2.0-or-later"
  3610. ],
  3611. "authors": [
  3612. {
  3613. "name": "agentrickard",
  3614. "homepage": "https://www.drupal.org/user/20975"
  3615. },
  3616. {
  3617. "name": "nonsie",
  3618. "homepage": "https://www.drupal.org/user/29899"
  3619. }
  3620. ],
  3621. "description": "Domain-based access control for content.",
  3622. "homepage": "https://www.drupal.org/project/domain",
  3623. "support": {
  3624. "source": "https://git.drupalcode.org/project/domain"
  3625. }
  3626. },
  3627. {
  3628. "name": "drupal/domain_config",
  3629. "version": "1.0.0-alpha16",
  3630. "require": {
  3631. "drupal/core": "~8.0",
  3632. "drupal/domain": "self.version"
  3633. },
  3634. "type": "metapackage",
  3635. "extra": {
  3636. "drupal": {
  3637. "version": "8.x-1.0-alpha16",
  3638. "datestamp": "1561126081",
  3639. "security-coverage": {
  3640. "status": "not-covered",
  3641. "message": "Alpha releases are not covered by Drupal security advisories."
  3642. }
  3643. }
  3644. },
  3645. "notification-url": "https://packages.drupal.org/8/downloads",
  3646. "license": [
  3647. "GPL-2.0-or-later"
  3648. ],
  3649. "authors": [
  3650. {
  3651. "name": "agentrickard",
  3652. "homepage": "https://www.drupal.org/user/20975"
  3653. },
  3654. {
  3655. "name": "nonsie",
  3656. "homepage": "https://www.drupal.org/user/29899"
  3657. }
  3658. ],
  3659. "description": "Allows domain specific configuration.",
  3660. "homepage": "https://www.drupal.org/project/domain",
  3661. "support": {
  3662. "source": "https://git.drupalcode.org/project/domain"
  3663. }
  3664. },
  3665. {
  3666. "name": "drupal/domain_menu_access",
  3667. "version": "dev-1.x",
  3668. "source": {
  3669. "type": "git",
  3670. "url": "https://git.drupalcode.org/project/domain_menu_access.git",
  3671. "reference": "cd62e57ec09be4eca491e18e50092e10c19750f2"
  3672. },
  3673. "require": {
  3674. "drupal/core": "~8.0",
  3675. "drupal/domain": "^1",
  3676. "drupal/domain_access": "^1"
  3677. },
  3678. "type": "drupal-module",
  3679. "extra": {
  3680. "branch-alias": {
  3681. "dev-1.x": "1.x-dev"
  3682. },
  3683. "drupal": {
  3684. "version": "8.x-1.0-alpha2+3-dev",
  3685. "datestamp": "1551553085",
  3686. "security-coverage": {
  3687. "status": "not-covered",
  3688. "message": "Dev releases are not covered by Drupal security advisories."
  3689. }
  3690. }
  3691. },
  3692. "notification-url": "https://packages.drupal.org/8/downloads",
  3693. "license": [
  3694. "GPL-2.0+"
  3695. ],
  3696. "authors": [
  3697. {
  3698. "name": "Sebastien @Actualys",
  3699. "homepage": "https://www.drupal.org/user/380104"
  3700. },
  3701. {
  3702. "name": "maciej.zgadzaj",
  3703. "homepage": "https://www.drupal.org/user/271491"
  3704. },
  3705. {
  3706. "name": "pifagor",
  3707. "homepage": "https://www.drupal.org/user/2375692"
  3708. }
  3709. ],
  3710. "description": "Domain-based access control for menu link.",
  3711. "homepage": "https://www.drupal.org/project/domain_menu_access",
  3712. "support": {
  3713. "source": "https://git.drupalcode.org/project/domain_menu_access"
  3714. },
  3715. "time": "2019-04-11T06:07:16+00:00"
  3716. },
  3717. {
  3718. "name": "drupal/domain_site_settings",
  3719. "version": "1.3.0",
  3720. "source": {
  3721. "type": "git",
  3722. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  3723. "reference": "8.x-1.3"
  3724. },
  3725. "dist": {
  3726. "type": "zip",
  3727. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.3.zip",
  3728. "reference": "8.x-1.3",
  3729. "shasum": "36ad22d8e31400f372b9e7f587578061b4fdc5db"
  3730. },
  3731. "require": {
  3732. "drupal/core": "~8.0",
  3733. "drupal/domain": "*",
  3734. "drupal/domain_config": "*"
  3735. },
  3736. "type": "drupal-module",
  3737. "extra": {
  3738. "branch-alias": {
  3739. "dev-1.x": "1.x-dev"
  3740. },
  3741. "drupal": {
  3742. "version": "8.x-1.3",
  3743. "datestamp": "1537684980",
  3744. "security-coverage": {
  3745. "status": "covered",
  3746. "message": "Covered by Drupal's security advisory policy"
  3747. }
  3748. },
  3749. "patches_applied": {
  3750. "Circular Error or Conflict with Language_Manager": "https://www.drupal.org/files/issues/2018-10-09/2930391-21.patch"
  3751. }
  3752. },
  3753. "notification-url": "https://packages.drupal.org/8/downloads",
  3754. "license": [
  3755. "GPL-2.0+"
  3756. ],
  3757. "authors": [
  3758. {
  3759. "name": "aloknarwaria",
  3760. "homepage": "https://www.drupal.org/user/906640"
  3761. },
  3762. {
  3763. "name": "malaynayak",
  3764. "homepage": "https://www.drupal.org/user/3529755"
  3765. }
  3766. ],
  3767. "description": "Basic Site Setting for Domains.",
  3768. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3769. "keywords": [
  3770. "Drupal"
  3771. ],
  3772. "support": {
  3773. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3774. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3775. }
  3776. },
  3777. {
  3778. "name": "drupal/email_registration",
  3779. "version": "1.0.0",
  3780. "source": {
  3781. "type": "git",
  3782. "url": "https://git.drupalcode.org/project/email_registration.git",
  3783. "reference": "8.x-1.0"
  3784. },
  3785. "dist": {
  3786. "type": "zip",
  3787. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.0.zip",
  3788. "reference": "8.x-1.0",
  3789. "shasum": "f960f489f4273212b924a2d54e6cb8e43adb633e"
  3790. },
  3791. "require": {
  3792. "drupal/core": "*"
  3793. },
  3794. "conflict": {
  3795. "drupal/commerce": "<2.12"
  3796. },
  3797. "require-dev": {
  3798. "drupal/commerce": "^2.0"
  3799. },
  3800. "type": "drupal-module",
  3801. "extra": {
  3802. "branch-alias": {
  3803. "dev-1.x": "1.x-dev"
  3804. },
  3805. "drupal": {
  3806. "version": "8.x-1.0",
  3807. "datestamp": "1580243964",
  3808. "security-coverage": {
  3809. "status": "covered",
  3810. "message": "Covered by Drupal's security advisory policy"
  3811. }
  3812. }
  3813. },
  3814. "notification-url": "https://packages.drupal.org/8/downloads",
  3815. "license": [
  3816. "GPL-2.0+"
  3817. ],
  3818. "authors": [
  3819. {
  3820. "name": "Greg Knaddison (greggles)",
  3821. "homepage": "https://www.drupal.org/u/greggles",
  3822. "role": "Maintainer"
  3823. },
  3824. {
  3825. "name": "Andrey Postnikov (andypost)",
  3826. "homepage": "https://www.drupal.org/u/andypost",
  3827. "role": "Maintainer"
  3828. },
  3829. {
  3830. "name": "Chris Herberte",
  3831. "homepage": "https://www.drupal.org/u/chris-herberte",
  3832. "role": "Maintainer"
  3833. },
  3834. {
  3835. "name": "Moshe Weitzman (moshe weitzman)",
  3836. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3837. "role": "Maintainer"
  3838. }
  3839. ],
  3840. "description": "Allows users to register with an email address as their username.",
  3841. "homepage": "https://www.drupal.org/project/email_registration",
  3842. "support": {
  3843. "source": "http://cgit.drupalcode.org/email_registration",
  3844. "issues": "http://drupal.org/project/issues/email_registration"
  3845. }
  3846. },
  3847. {
  3848. "name": "drupal/entity",
  3849. "version": "1.0.0",
  3850. "source": {
  3851. "type": "git",
  3852. "url": "https://git.drupalcode.org/project/entity.git",
  3853. "reference": "8.x-1.0"
  3854. },
  3855. "dist": {
  3856. "type": "zip",
  3857. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.0.zip",
  3858. "reference": "8.x-1.0",
  3859. "shasum": "ac359ada43416ca3a8d0e44f2985b0a9fae07625"
  3860. },
  3861. "require": {
  3862. "drupal/core": "^8.7.7 || ^9"
  3863. },
  3864. "type": "drupal-module",
  3865. "extra": {
  3866. "branch-alias": {
  3867. "dev-1.x": "1.x-dev"
  3868. },
  3869. "drupal": {
  3870. "version": "8.x-1.0",
  3871. "datestamp": "1582735747",
  3872. "security-coverage": {
  3873. "status": "covered",
  3874. "message": "Covered by Drupal's security advisory policy"
  3875. }
  3876. }
  3877. },
  3878. "notification-url": "https://packages.drupal.org/8/downloads",
  3879. "license": [
  3880. "GPL-2.0+"
  3881. ],
  3882. "authors": [
  3883. {
  3884. "name": "Berdir",
  3885. "homepage": "https://www.drupal.org/user/214652"
  3886. },
  3887. {
  3888. "name": "bojanz",
  3889. "homepage": "https://www.drupal.org/user/86106"
  3890. },
  3891. {
  3892. "name": "dawehner",
  3893. "homepage": "https://www.drupal.org/user/99340"
  3894. },
  3895. {
  3896. "name": "dixon_",
  3897. "homepage": "https://www.drupal.org/user/239911"
  3898. },
  3899. {
  3900. "name": "fago",
  3901. "homepage": "https://www.drupal.org/user/16747"
  3902. }
  3903. ],
  3904. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3905. "homepage": "http://drupal.org/project/entity",
  3906. "support": {
  3907. "source": "https://git.drupalcode.org/project/entity"
  3908. }
  3909. },
  3910. {
  3911. "name": "drupal/features",
  3912. "version": "3.8.0",
  3913. "source": {
  3914. "type": "git",
  3915. "url": "https://git.drupalcode.org/project/features.git",
  3916. "reference": "8.x-3.8"
  3917. },
  3918. "dist": {
  3919. "type": "zip",
  3920. "url": "https://ftp.drupal.org/files/projects/features-8.x-3.8.zip",
  3921. "reference": "8.x-3.8",
  3922. "shasum": "15cebd00e38d63c0d946682e76327a03499c27be"
  3923. },
  3924. "require": {
  3925. "drupal/config_update": "^1.4",
  3926. "drupal/core": "*"
  3927. },
  3928. "type": "drupal-module",
  3929. "extra": {
  3930. "drupal": {
  3931. "version": "8.x-3.8",
  3932. "datestamp": "1536512284",
  3933. "security-coverage": {
  3934. "status": "covered",
  3935. "message": "Covered by Drupal's security advisory policy"
  3936. }
  3937. },
  3938. "drush": {
  3939. "services": {
  3940. "drush.services.yml": "^9"
  3941. }
  3942. }
  3943. },
  3944. "notification-url": "https://packages.drupal.org/8/downloads",
  3945. "license": [
  3946. "GPL-2.0+"
  3947. ],
  3948. "authors": [
  3949. {
  3950. "name": "dawehner",
  3951. "homepage": "https://www.drupal.org/user/99340"
  3952. },
  3953. {
  3954. "name": "donquixote",
  3955. "homepage": "https://www.drupal.org/user/459338"
  3956. },
  3957. {
  3958. "name": "e2thex",
  3959. "homepage": "https://www.drupal.org/user/189123"
  3960. },
  3961. {
  3962. "name": "febbraro",
  3963. "homepage": "https://www.drupal.org/user/43670"
  3964. },
  3965. {
  3966. "name": "flocondetoile",
  3967. "homepage": "https://www.drupal.org/user/2006064"
  3968. },
  3969. {
  3970. "name": "jmiccolis",
  3971. "homepage": "https://www.drupal.org/user/31731"
  3972. },
  3973. {
  3974. "name": "joseph.olstad",
  3975. "homepage": "https://www.drupal.org/user/1321830"
  3976. },
  3977. {
  3978. "name": "mpotter",
  3979. "homepage": "https://www.drupal.org/user/616192"
  3980. },
  3981. {
  3982. "name": "nedjo",
  3983. "homepage": "https://www.drupal.org/user/4481"
  3984. },
  3985. {
  3986. "name": "tim.plunkett",
  3987. "homepage": "https://www.drupal.org/user/241634"
  3988. }
  3989. ],
  3990. "description": "Enables administrators to package configuration into modules",
  3991. "homepage": "https://www.drupal.org/project/features",
  3992. "support": {
  3993. "source": "https://git.drupalcode.org/project/features"
  3994. }
  3995. },
  3996. {
  3997. "name": "drupal/field_group",
  3998. "version": "3.0.0",
  3999. "source": {
  4000. "type": "git",
  4001. "url": "https://git.drupalcode.org/project/field_group.git",
  4002. "reference": "8.x-3.0"
  4003. },
  4004. "dist": {
  4005. "type": "zip",
  4006. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.0.zip",
  4007. "reference": "8.x-3.0",
  4008. "shasum": "8d87cdc4abc417aa4d411bffcaeb0a3ef1afa497"
  4009. },
  4010. "require": {
  4011. "drupal/core": "^8 || ^9"
  4012. },
  4013. "type": "drupal-module",
  4014. "extra": {
  4015. "drupal": {
  4016. "version": "8.x-3.0",
  4017. "datestamp": "1580250787",
  4018. "security-coverage": {
  4019. "status": "covered",
  4020. "message": "Covered by Drupal's security advisory policy"
  4021. }
  4022. }
  4023. },
  4024. "notification-url": "https://packages.drupal.org/8/downloads",
  4025. "license": [
  4026. "GPL-2.0+"
  4027. ],
  4028. "authors": [
  4029. {
  4030. "name": "Hydra",
  4031. "homepage": "https://www.drupal.org/user/647364"
  4032. },
  4033. {
  4034. "name": "Stalski",
  4035. "homepage": "https://www.drupal.org/user/322618"
  4036. },
  4037. {
  4038. "name": "jyve",
  4039. "homepage": "https://www.drupal.org/user/591438"
  4040. },
  4041. {
  4042. "name": "nils.destoop",
  4043. "homepage": "https://www.drupal.org/user/361625"
  4044. },
  4045. {
  4046. "name": "swentel",
  4047. "homepage": "https://www.drupal.org/user/107403"
  4048. }
  4049. ],
  4050. "description": "Provides the field_group module.",
  4051. "homepage": "https://www.drupal.org/project/field_group",
  4052. "support": {
  4053. "source": "https://git.drupalcode.org/project/field_group"
  4054. }
  4055. },
  4056. {
  4057. "name": "drupal/filefield_sources",
  4058. "version": "dev-1.x",
  4059. "source": {
  4060. "type": "git",
  4061. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  4062. "reference": "38dfa6622a8876854887feefd3c348583ef0586f"
  4063. },
  4064. "require": {
  4065. "drupal/core": "*"
  4066. },
  4067. "require-dev": {
  4068. "drupal/imce": "*"
  4069. },
  4070. "type": "drupal-module",
  4071. "extra": {
  4072. "branch-alias": {
  4073. "dev-1.x": "1.x-dev"
  4074. },
  4075. "drupal": {
  4076. "version": "8.x-1.0-alpha2+2-dev",
  4077. "datestamp": "1579885386",
  4078. "security-coverage": {
  4079. "status": "not-covered",
  4080. "message": "Dev releases are not covered by Drupal security advisories."
  4081. }
  4082. }
  4083. },
  4084. "notification-url": "https://packages.drupal.org/8/downloads",
  4085. "license": [
  4086. "GPL-2.0-or-later"
  4087. ],
  4088. "authors": [
  4089. {
  4090. "name": "Nate Lampton (quicksketch)",
  4091. "homepage": "https://www.drupal.org/u/quicksketch",
  4092. "role": "Maintainer"
  4093. },
  4094. {
  4095. "name": "Andrey Khromyshev (profak)",
  4096. "homepage": "https://www.drupal.org/u/profak",
  4097. "role": "Maintainer"
  4098. },
  4099. {
  4100. "name": "David Valdez (gnuget)",
  4101. "homepage": "https://www.drupal.org/u/gnuget",
  4102. "role": "Maintainer"
  4103. }
  4104. ],
  4105. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  4106. "homepage": "https://www.drupal.org/project/filefield_sources",
  4107. "support": {
  4108. "source": "https://git.drupalcode.org/project/filefield_sources",
  4109. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  4110. "irc": "irc://irc.freenode.org/drupal-contribute"
  4111. },
  4112. "time": "2020-01-30T15:32:54+00:00"
  4113. },
  4114. {
  4115. "name": "drupal/filter_perms",
  4116. "version": "dev-1.x",
  4117. "source": {
  4118. "type": "git",
  4119. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4120. "reference": "f491dd73fd876f6de0b2252c6b9bf18e0e27b357"
  4121. },
  4122. "require": {
  4123. "drupal/core": "*"
  4124. },
  4125. "type": "drupal-module",
  4126. "extra": {
  4127. "branch-alias": {
  4128. "dev-1.x": "1.x-dev"
  4129. },
  4130. "drupal": {
  4131. "version": "8.x-1.x-dev",
  4132. "datestamp": "1469645939",
  4133. "security-coverage": {
  4134. "status": "not-covered",
  4135. "message": "Dev releases are not covered by Drupal security advisories."
  4136. }
  4137. }
  4138. },
  4139. "notification-url": "https://packages.drupal.org/8/downloads",
  4140. "license": [
  4141. "GPL-2.0-or-later"
  4142. ],
  4143. "authors": [
  4144. {
  4145. "name": "cYu",
  4146. "homepage": "https://www.drupal.org/user/202205"
  4147. },
  4148. {
  4149. "name": "deekayen",
  4150. "homepage": "https://www.drupal.org/user/972"
  4151. },
  4152. {
  4153. "name": "willzyx",
  4154. "homepage": "https://www.drupal.org/user/1043862"
  4155. }
  4156. ],
  4157. "description": "Provides role and module filters to simplify the user permissions page.",
  4158. "homepage": "https://www.drupal.org/project/filter_perms",
  4159. "support": {
  4160. "source": "https://git.drupalcode.org/project/filter_perms"
  4161. },
  4162. "time": "2016-07-27T19:01:11+00:00"
  4163. },
  4164. {
  4165. "name": "drupal/honeypot",
  4166. "version": "1.29.0",
  4167. "source": {
  4168. "type": "git",
  4169. "url": "https://git.drupalcode.org/project/honeypot.git",
  4170. "reference": "8.x-1.29"
  4171. },
  4172. "dist": {
  4173. "type": "zip",
  4174. "url": "https://ftp.drupal.org/files/projects/honeypot-8.x-1.29.zip",
  4175. "reference": "8.x-1.29",
  4176. "shasum": "029d9e068d8f6a5db52434c27dc71bd3f06da487"
  4177. },
  4178. "require": {
  4179. "drupal/core": "~8.0"
  4180. },
  4181. "type": "drupal-module",
  4182. "extra": {
  4183. "drupal": {
  4184. "version": "8.x-1.29",
  4185. "datestamp": "1576274288",
  4186. "security-coverage": {
  4187. "status": "covered",
  4188. "message": "Covered by Drupal's security advisory policy"
  4189. }
  4190. }
  4191. },
  4192. "notification-url": "https://packages.drupal.org/8/downloads",
  4193. "license": [
  4194. "GPL-2.0+"
  4195. ],
  4196. "authors": [
  4197. {
  4198. "name": "Jeff Geerling",
  4199. "homepage": "https://www.drupal.org/user/213194",
  4200. "email": "geerlingguy@mac.com"
  4201. },
  4202. {
  4203. "name": "geerlingguy",
  4204. "homepage": "https://www.drupal.org/user/389011"
  4205. },
  4206. {
  4207. "name": "vijaycs85",
  4208. "homepage": "https://www.drupal.org/user/93488"
  4209. }
  4210. ],
  4211. "description": "Mitigates spam form submissions using the honeypot method.",
  4212. "homepage": "https://www.drupal.org/project/honeypot",
  4213. "keywords": [
  4214. "deterrent",
  4215. "form",
  4216. "honeypot",
  4217. "honeytrap",
  4218. "php",
  4219. "spam"
  4220. ],
  4221. "support": {
  4222. "source": "https://git.drupalcode.org/project/honeypot"
  4223. }
  4224. },
  4225. {
  4226. "name": "drupal/linkit",
  4227. "version": "5.0.0-beta10",
  4228. "source": {
  4229. "type": "git",
  4230. "url": "https://git.drupalcode.org/project/linkit.git",
  4231. "reference": "8.x-5.0-beta10"
  4232. },
  4233. "dist": {
  4234. "type": "zip",
  4235. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta10.zip",
  4236. "reference": "8.x-5.0-beta10",
  4237. "shasum": "9980707514ec63fd1bdc27eebd4af243efda97a6"
  4238. },
  4239. "require": {
  4240. "drupal/core": "~8.0"
  4241. },
  4242. "require-dev": {
  4243. "drupal/imce": "*"
  4244. },
  4245. "type": "drupal-module",
  4246. "extra": {
  4247. "drupal": {
  4248. "version": "8.x-5.0-beta10",
  4249. "datestamp": "1573783085",
  4250. "security-coverage": {
  4251. "status": "not-covered",
  4252. "message": "Beta releases are not covered by Drupal security advisories."
  4253. }
  4254. }
  4255. },
  4256. "notification-url": "https://packages.drupal.org/8/downloads",
  4257. "license": [
  4258. "GPL-2.0+"
  4259. ],
  4260. "authors": [
  4261. {
  4262. "name": "Emil Stjerneman",
  4263. "homepage": "https://stjerneman.com",
  4264. "email": "emil@stjerneman.com",
  4265. "role": "Maintainer"
  4266. }
  4267. ],
  4268. "description": "Linkit - Enriched linking experience",
  4269. "homepage": "http://drupal.org/project/linkit",
  4270. "support": {
  4271. "source": "http://cgit.drupalcode.org/linkit",
  4272. "issues": "http://drupal.org/project/linkit"
  4273. }
  4274. },
  4275. {
  4276. "name": "drupal/login_emailusername",
  4277. "version": "1.1.0",
  4278. "source": {
  4279. "type": "git",
  4280. "url": "https://git.drupalcode.org/project/login_emailusername.git",
  4281. "reference": "8.x-1.1"
  4282. },
  4283. "dist": {
  4284. "type": "zip",
  4285. "url": "https://ftp.drupal.org/files/projects/login_emailusername-8.x-1.1.zip",
  4286. "reference": "8.x-1.1",
  4287. "shasum": "f484b76b538f4dbbae5a75b49577f4ddf576809e"
  4288. },
  4289. "require": {
  4290. "drupal/core": "~8.0"
  4291. },
  4292. "type": "drupal-module",
  4293. "extra": {
  4294. "branch-alias": {
  4295. "dev-1.x": "1.x-dev"
  4296. },
  4297. "drupal": {
  4298. "version": "8.x-1.1",
  4299. "datestamp": "1483456142",
  4300. "security-coverage": {
  4301. "status": "covered",
  4302. "message": "Covered by Drupal's security advisory policy"
  4303. }
  4304. },
  4305. "patches_applied": {
  4306. "rest login email or user name https://www.drupal.org/project/login_emailusername/issues/2910511#comment-12564801": "https://www.drupal.org/files/issues/2018-04-10/allow-rest-login-with-email-2910511-9.patch"
  4307. }
  4308. },
  4309. "notification-url": "https://packages.drupal.org/8/downloads",
  4310. "license": [
  4311. "GPL-2.0-or-later"
  4312. ],
  4313. "authors": [
  4314. {
  4315. "name": "rjjakes",
  4316. "homepage": "https://www.drupal.org/user/3457245"
  4317. }
  4318. ],
  4319. "description": "Allow users to log in with either their username OR email address using the same input box on the login form.",
  4320. "homepage": "https://www.drupal.org/project/login_emailusername",
  4321. "support": {
  4322. "source": "https://git.drupalcode.org/project/login_emailusername"
  4323. }
  4324. },
  4325. {
  4326. "name": "drupal/maillog",
  4327. "version": "dev-1.x",
  4328. "source": {
  4329. "type": "git",
  4330. "url": "https://git.drupalcode.org/project/maillog.git",
  4331. "reference": "3ec675bd7842c04bc01860fa8b3f424f95a17d93"
  4332. },
  4333. "require": {
  4334. "drupal/core": "*"
  4335. },
  4336. "type": "drupal-module",
  4337. "extra": {
  4338. "branch-alias": {
  4339. "dev-1.x": "1.x-dev"
  4340. },
  4341. "drupal": {
  4342. "version": "8.x-1.x-dev",
  4343. "datestamp": "1470431939",
  4344. "security-coverage": {
  4345. "status": "not-covered",
  4346. "message": "Project has not opted into security advisory coverage!"
  4347. }
  4348. }
  4349. },
  4350. "notification-url": "https://packages.drupal.org/8/downloads",
  4351. "license": [
  4352. "GPL-2.0-or-later"
  4353. ],
  4354. "authors": [
  4355. {
  4356. "name": "Berdir",
  4357. "homepage": "https://www.drupal.org/user/214652"
  4358. },
  4359. {
  4360. "name": "DamienMcKenna",
  4361. "homepage": "https://www.drupal.org/user/108450"
  4362. },
  4363. {
  4364. "name": "miro_dietiker",
  4365. "homepage": "https://www.drupal.org/user/227761"
  4366. },
  4367. {
  4368. "name": "pluess",
  4369. "homepage": "https://www.drupal.org/user/84659"
  4370. }
  4371. ],
  4372. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4373. "homepage": "https://www.drupal.org/project/maillog",
  4374. "support": {
  4375. "source": "https://git.drupalcode.org/project/maillog"
  4376. },
  4377. "time": "2020-05-19T01:33:41+00:00"
  4378. },
  4379. {
  4380. "name": "drupal/matomo",
  4381. "version": "1.9.0",
  4382. "source": {
  4383. "type": "git",
  4384. "url": "https://git.drupalcode.org/project/matomo.git",
  4385. "reference": "8.x-1.9"
  4386. },
  4387. "dist": {
  4388. "type": "zip",
  4389. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.9.zip",
  4390. "reference": "8.x-1.9",
  4391. "shasum": "2c818af730f834d3aef3f6b7aa29f05e6fa9246d"
  4392. },
  4393. "require": {
  4394. "drupal/core": "~8.5"
  4395. },
  4396. "require-dev": {
  4397. "drupal/php": "*",
  4398. "drupal/token": "*"
  4399. },
  4400. "type": "drupal-module",
  4401. "extra": {
  4402. "branch-alias": {
  4403. "dev-1.x": "1.x-dev"
  4404. },
  4405. "drupal": {
  4406. "version": "8.x-1.9",
  4407. "datestamp": "1549615080",
  4408. "security-coverage": {
  4409. "status": "covered",
  4410. "message": "Covered by Drupal's security advisory policy"
  4411. }
  4412. }
  4413. },
  4414. "notification-url": "https://packages.drupal.org/8/downloads",
  4415. "license": [
  4416. "GPL-2.0+"
  4417. ],
  4418. "authors": [
  4419. {
  4420. "name": "hass",
  4421. "homepage": "https://www.drupal.org/u/hass"
  4422. },
  4423. {
  4424. "name": "See other contributors",
  4425. "homepage": "https://www.drupal.org/node/247808/committers"
  4426. }
  4427. ],
  4428. "description": "Adds Matomo javascript tracking code to all your site's pages",
  4429. "homepage": "https://www.drupal.org/project/matomo",
  4430. "support": {
  4431. "source": "https://git.drupal.org/project/matomo.git",
  4432. "issues": "https://www.drupal.org/project/issues/matomo"
  4433. }
  4434. },
  4435. {
  4436. "name": "drupal/menu_admin_per_menu",
  4437. "version": "1.0.0",
  4438. "source": {
  4439. "type": "git",
  4440. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4441. "reference": "8.x-1.0"
  4442. },
  4443. "dist": {
  4444. "type": "zip",
  4445. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.0.zip",
  4446. "reference": "8.x-1.0",
  4447. "shasum": "27dbef0025146a382feab67db5e93eaf280b8de4"
  4448. },
  4449. "require": {
  4450. "drupal/core": "*"
  4451. },
  4452. "type": "drupal-module",
  4453. "extra": {
  4454. "branch-alias": {
  4455. "dev-1.x": "1.x-dev"
  4456. },
  4457. "drupal": {
  4458. "version": "8.x-1.0",
  4459. "datestamp": "1507184944",
  4460. "security-coverage": {
  4461. "status": "covered",
  4462. "message": "Covered by Drupal's security advisory policy"
  4463. }
  4464. }
  4465. },
  4466. "notification-url": "https://packages.drupal.org/8/downloads",
  4467. "license": [
  4468. "GPL-2.0-or-later"
  4469. ],
  4470. "authors": [
  4471. {
  4472. "name": "anrikun",
  4473. "homepage": "https://www.drupal.org/user/410199"
  4474. },
  4475. {
  4476. "name": "mkdok",
  4477. "homepage": "https://www.drupal.org/user/3308753"
  4478. }
  4479. ],
  4480. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4481. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4482. "support": {
  4483. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  4484. }
  4485. },
  4486. {
  4487. "name": "drupal/metatag",
  4488. "version": "1.13.0",
  4489. "source": {
  4490. "type": "git",
  4491. "url": "https://git.drupalcode.org/project/metatag.git",
  4492. "reference": "8.x-1.13"
  4493. },
  4494. "dist": {
  4495. "type": "zip",
  4496. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.13.zip",
  4497. "reference": "8.x-1.13",
  4498. "shasum": "c471d9982a6540fd7baccc94572947923634fb6b"
  4499. },
  4500. "require": {
  4501. "drupal/core": "^8 || ^9",
  4502. "drupal/token": "^1.0"
  4503. },
  4504. "require-dev": {
  4505. "drupal/metatag_dc": "*",
  4506. "drupal/metatag_open_graph": "*",
  4507. "drupal/page_manager": "4.x-dev",
  4508. "drupal/redirect": "1.x-dev"
  4509. },
  4510. "type": "drupal-module",
  4511. "extra": {
  4512. "drupal": {
  4513. "version": "8.x-1.13",
  4514. "datestamp": "1587478404",
  4515. "security-coverage": {
  4516. "status": "covered",
  4517. "message": "Covered by Drupal's security advisory policy"
  4518. }
  4519. }
  4520. },
  4521. "notification-url": "https://packages.drupal.org/8/downloads",
  4522. "license": [
  4523. "GPL-2.0+"
  4524. ],
  4525. "authors": [
  4526. {
  4527. "name": "See contributors",
  4528. "homepage": "https://www.drupal.org/node/640498/committers",
  4529. "role": "Developer"
  4530. },
  4531. {
  4532. "name": "Dave Reid",
  4533. "homepage": "https://www.drupal.org/user/53892"
  4534. }
  4535. ],
  4536. "description": "Manage meta tags for all entities.",
  4537. "homepage": "https://www.drupal.org/project/metatag",
  4538. "keywords": [
  4539. "Drupal",
  4540. "seo"
  4541. ],
  4542. "support": {
  4543. "source": "https://git.drupalcode.org/project/metatag",
  4544. "issues": "https://www.drupal.org/project/issues/metatag",
  4545. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  4546. }
  4547. },
  4548. {
  4549. "name": "drupal/migrate_plus",
  4550. "version": "5.0.0",
  4551. "source": {
  4552. "type": "git",
  4553. "url": "https://git.drupalcode.org/project/migrate_plus.git",
  4554. "reference": "8.x-5.0"
  4555. },
  4556. "dist": {
  4557. "type": "zip",
  4558. "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-5.0.zip",
  4559. "reference": "8.x-5.0",
  4560. "shasum": "5509c76498e4c6141c29db626d20904e1e8593c6"
  4561. },
  4562. "require": {
  4563. "drupal/core": "^8 || ^9"
  4564. },
  4565. "require-dev": {
  4566. "drupal/migrate_example_advanced_setup": "*",
  4567. "drupal/migrate_example_setup": "*"
  4568. },
  4569. "suggest": {
  4570. "ext-soap": "*",
  4571. "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  4572. },
  4573. "type": "drupal-module",
  4574. "extra": {
  4575. "drupal": {
  4576. "version": "8.x-5.0",
  4577. "datestamp": "1586234154",
  4578. "security-coverage": {
  4579. "status": "covered",
  4580. "message": "Covered by Drupal's security advisory policy"
  4581. }
  4582. }
  4583. },
  4584. "notification-url": "https://packages.drupal.org/8/downloads",
  4585. "license": [
  4586. "GPL-2.0+"
  4587. ],
  4588. "authors": [
  4589. {
  4590. "name": "Mike Ryan",
  4591. "homepage": "https://www.drupal.org/u/mikeryan",
  4592. "role": "Maintainer"
  4593. },
  4594. {
  4595. "name": "Lucas Hedding",
  4596. "homepage": "https://www.drupal.org/u/heddn",
  4597. "role": "Maintainer"
  4598. }
  4599. ],
  4600. "description": "Enhancements to core migration support.",
  4601. "homepage": "https://www.drupal.org/project/migrate_plus",
  4602. "support": {
  4603. "source": "https://git.drupalcode.org/project/migrate_plus",
  4604. "issues": "https://www.drupal.org/project/issues/migrate_plus",
  4605. "slack": "#migrate"
  4606. }
  4607. },
  4608. {
  4609. "name": "drupal/migrate_tools",
  4610. "version": "4.5.0",
  4611. "source": {
  4612. "type": "git",
  4613. "url": "https://git.drupalcode.org/project/migrate_tools.git",
  4614. "reference": "8.x-4.5"
  4615. },
  4616. "dist": {
  4617. "type": "zip",
  4618. "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-4.5.zip",
  4619. "reference": "8.x-4.5",
  4620. "shasum": "06390b359bf53c50a30f2d6dc4c7542bfb1fe7ca"
  4621. },
  4622. "require": {
  4623. "drupal/core": "^8 || ^9",
  4624. "drupal/migrate_plus": "^4 || ^5"
  4625. },
  4626. "require-dev": {
  4627. "drupal/migrate_plus": "4.x-dev",
  4628. "drupal/migrate_source_csv": "^2.2",
  4629. "drush/drush": "^10"
  4630. },
  4631. "type": "drupal-module",
  4632. "extra": {
  4633. "drupal": {
  4634. "version": "8.x-4.5",
  4635. "datestamp": "1574693285",
  4636. "security-coverage": {
  4637. "status": "covered",
  4638. "message": "Covered by Drupal's security advisory policy"
  4639. }
  4640. },
  4641. "drush": {
  4642. "services": {
  4643. "drush.services.yml": "^9 || ^10"
  4644. }
  4645. }
  4646. },
  4647. "notification-url": "https://packages.drupal.org/8/downloads",
  4648. "license": [
  4649. "GPL-2.0-or-later"
  4650. ],
  4651. "authors": [
  4652. {
  4653. "name": "heddn",
  4654. "homepage": "https://www.drupal.org/user/1463982"
  4655. },
  4656. {
  4657. "name": "mikeryan",
  4658. "homepage": "https://www.drupal.org/user/4420"
  4659. },
  4660. {
  4661. "name": "moshe weitzman",
  4662. "homepage": "https://www.drupal.org/user/23"
  4663. }
  4664. ],
  4665. "description": "Tools to assist in developing and running migrations.",
  4666. "homepage": "http://drupal.org/project/migrate_tools",
  4667. "support": {
  4668. "source": "http://cgit.drupalcode.org/migrate_tools",
  4669. "issues": "http://drupal.org/project/migrate_tools",
  4670. "irc": "irc://irc.freenode.org/drupal-migrate"
  4671. }
  4672. },
  4673. {
  4674. "name": "drupal/path_alias_xt",
  4675. "version": "dev-1.x",
  4676. "source": {
  4677. "type": "git",
  4678. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  4679. "reference": "10ef76dd3eb25bc1342195336291ded3f2d8cc7e"
  4680. },
  4681. "require": {
  4682. "drupal/core": "^8.7.7 || ^9"
  4683. },
  4684. "type": "drupal-module",
  4685. "extra": {
  4686. "branch-alias": {
  4687. "dev-1.x": "1.x-dev"
  4688. },
  4689. "drupal": {
  4690. "version": "8.x-1.x-dev",
  4691. "datestamp": "1582322571",
  4692. "security-coverage": {
  4693. "status": "not-covered",
  4694. "message": "Dev releases are not covered by Drupal security advisories."
  4695. }
  4696. }
  4697. },
  4698. "notification-url": "https://packages.drupal.org/8/downloads",
  4699. "license": [
  4700. "GPL-2.0-or-later"
  4701. ],
  4702. "authors": [
  4703. {
  4704. "name": "RdeBoer",
  4705. "homepage": "https://www.drupal.org/user/404007"
  4706. },
  4707. {
  4708. "name": "adriancid",
  4709. "homepage": "https://www.drupal.org/user/1962106"
  4710. },
  4711. {
  4712. "name": "sdstyles",
  4713. "homepage": "https://www.drupal.org/user/1420228"
  4714. }
  4715. ],
  4716. "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.",
  4717. "homepage": "https://www.drupal.org/project/path_alias_xt",
  4718. "support": {
  4719. "source": "https://git.drupalcode.org/project/path_alias_xt"
  4720. },
  4721. "time": "2020-05-24T05:57:09+00:00"
  4722. },
  4723. {
  4724. "name": "drupal/pathauto",
  4725. "version": "1.8.0",
  4726. "source": {
  4727. "type": "git",
  4728. "url": "https://git.drupalcode.org/project/pathauto.git",
  4729. "reference": "8.x-1.8"
  4730. },
  4731. "dist": {
  4732. "type": "zip",
  4733. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.8.zip",
  4734. "reference": "8.x-1.8",
  4735. "shasum": "ede3216abb9c4f77709338d9147334c595046329"
  4736. },
  4737. "require": {
  4738. "drupal/core": "^8.8 || ^9",
  4739. "drupal/ctools": "*",
  4740. "drupal/token": "*"
  4741. },
  4742. "suggest": {
  4743. "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."
  4744. },
  4745. "type": "drupal-module",
  4746. "extra": {
  4747. "drupal": {
  4748. "version": "8.x-1.8",
  4749. "datestamp": "1588103046",
  4750. "security-coverage": {
  4751. "status": "covered",
  4752. "message": "Covered by Drupal's security advisory policy"
  4753. }
  4754. },
  4755. "drush": {
  4756. "services": {
  4757. "drush.services.yml": "^9 || ^10"
  4758. }
  4759. }
  4760. },
  4761. "notification-url": "https://packages.drupal.org/8/downloads",
  4762. "license": [
  4763. "GPL-2.0-or-later"
  4764. ],
  4765. "authors": [
  4766. {
  4767. "name": "Berdir",
  4768. "homepage": "https://www.drupal.org/user/214652"
  4769. },
  4770. {
  4771. "name": "Dave Reid",
  4772. "homepage": "https://www.drupal.org/user/53892"
  4773. },
  4774. {
  4775. "name": "Freso",
  4776. "homepage": "https://www.drupal.org/user/27504"
  4777. },
  4778. {
  4779. "name": "greggles",
  4780. "homepage": "https://www.drupal.org/user/36762"
  4781. }
  4782. ],
  4783. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4784. "homepage": "https://www.drupal.org/project/pathauto",
  4785. "support": {
  4786. "source": "https://cgit.drupalcode.org/pathauto",
  4787. "issues": "https://www.drupal.org/project/issues/pathauto",
  4788. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  4789. }
  4790. },
  4791. {
  4792. "name": "drupal/piwik",
  4793. "version": "1.4.0",
  4794. "source": {
  4795. "type": "git",
  4796. "url": "https://git.drupalcode.org/project/piwik.git",
  4797. "reference": "8.x-1.4"
  4798. },
  4799. "dist": {
  4800. "type": "zip",
  4801. "url": "https://ftp.drupal.org/files/projects/piwik-8.x-1.4.zip",
  4802. "reference": "8.x-1.4",
  4803. "shasum": "3692831f4b3de636e90679fb052ba8f30e49ac97"
  4804. },
  4805. "require": {
  4806. "drupal/core": "~8.0",
  4807. "drupal/matomo": "^1.0"
  4808. },
  4809. "require-dev": {
  4810. "drupal/php": "*",
  4811. "drupal/token": "*"
  4812. },
  4813. "type": "drupal-module",
  4814. "extra": {
  4815. "branch-alias": {
  4816. "dev-1.x": "1.x-dev"
  4817. },
  4818. "drupal": {
  4819. "version": "8.x-1.4",
  4820. "datestamp": "1530437786",
  4821. "security-coverage": {
  4822. "status": "covered",
  4823. "message": "Covered by Drupal's security advisory policy"
  4824. }
  4825. }
  4826. },
  4827. "notification-url": "https://packages.drupal.org/8/downloads",
  4828. "license": [
  4829. "GPL-2.0+"
  4830. ],
  4831. "authors": [
  4832. {
  4833. "name": "hass",
  4834. "homepage": "https://www.drupal.org/u/hass"
  4835. },
  4836. {
  4837. "name": "See other contributors",
  4838. "homepage": "https://www.drupal.org/node/247808/committers"
  4839. }
  4840. ],
  4841. "description": "Adds Piwik javascript tracking code to all your site's pages",
  4842. "homepage": "https://www.drupal.org/project/piwik",
  4843. "support": {
  4844. "source": "http://git.drupal.org/project/piwik.git",
  4845. "issues": "https://www.drupal.org/project/issues/piwik"
  4846. }
  4847. },
  4848. {
  4849. "name": "drupal/profile",
  4850. "version": "1.1.0",
  4851. "source": {
  4852. "type": "git",
  4853. "url": "https://git.drupalcode.org/project/profile.git",
  4854. "reference": "8.x-1.1"
  4855. },
  4856. "dist": {
  4857. "type": "zip",
  4858. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.1.zip",
  4859. "reference": "8.x-1.1",
  4860. "shasum": "b8f6aca4f432228e614dca0a50cb187e936e4825"
  4861. },
  4862. "require": {
  4863. "drupal/core": "^8.7.7 || ^9",
  4864. "drupal/entity": "^1.0-rc2"
  4865. },
  4866. "require-dev": {
  4867. "drupal/token": "^1.0"
  4868. },
  4869. "type": "drupal-module",
  4870. "extra": {
  4871. "drupal": {
  4872. "version": "8.x-1.1",
  4873. "datestamp": "1582134004",
  4874. "security-coverage": {
  4875. "status": "covered",
  4876. "message": "Covered by Drupal's security advisory policy"
  4877. }
  4878. }
  4879. },
  4880. "notification-url": "https://packages.drupal.org/8/downloads",
  4881. "license": [
  4882. "GPL-2.0+"
  4883. ],
  4884. "authors": [
  4885. {
  4886. "name": "bojanz",
  4887. "homepage": "https://www.drupal.org/user/86106"
  4888. },
  4889. {
  4890. "name": "daggerhart",
  4891. "homepage": "https://www.drupal.org/user/167806"
  4892. },
  4893. {
  4894. "name": "fago",
  4895. "homepage": "https://www.drupal.org/user/16747"
  4896. },
  4897. {
  4898. "name": "jsacksick",
  4899. "homepage": "https://www.drupal.org/user/972218"
  4900. },
  4901. {
  4902. "name": "mglaman",
  4903. "homepage": "https://www.drupal.org/user/2416470"
  4904. },
  4905. {
  4906. "name": "pcambra",
  4907. "homepage": "https://www.drupal.org/user/122101"
  4908. }
  4909. ],
  4910. "description": "Provides configurable user profiles.",
  4911. "homepage": "http://drupal.org/project/profile",
  4912. "support": {
  4913. "source": "https://git.drupalcode.org/project/profile"
  4914. }
  4915. },
  4916. {
  4917. "name": "drupal/redirect",
  4918. "version": "1.6.0",
  4919. "source": {
  4920. "type": "git",
  4921. "url": "https://git.drupalcode.org/project/redirect.git",
  4922. "reference": "8.x-1.6"
  4923. },
  4924. "dist": {
  4925. "type": "zip",
  4926. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.6.zip",
  4927. "reference": "8.x-1.6",
  4928. "shasum": "f848e001deac8425ae57d4b9397087c491d37294"
  4929. },
  4930. "require": {
  4931. "drupal/core": "^8.8 || ^9"
  4932. },
  4933. "type": "drupal-module",
  4934. "extra": {
  4935. "drupal": {
  4936. "version": "8.x-1.6",
  4937. "datestamp": "1589312204",
  4938. "security-coverage": {
  4939. "status": "covered",
  4940. "message": "Covered by Drupal's security advisory policy"
  4941. }
  4942. }
  4943. },
  4944. "notification-url": "https://packages.drupal.org/8/downloads",
  4945. "license": [
  4946. "GPL-2.0-or-later"
  4947. ],
  4948. "authors": [
  4949. {
  4950. "name": "Berdir",
  4951. "homepage": "https://www.drupal.org/user/214652"
  4952. },
  4953. {
  4954. "name": "Dave Reid",
  4955. "homepage": "https://www.drupal.org/user/53892"
  4956. },
  4957. {
  4958. "name": "pifagor",
  4959. "homepage": "https://www.drupal.org/user/2375692"
  4960. }
  4961. ],
  4962. "description": "Allows users to redirect from old URLs to new URLs.",
  4963. "homepage": "https://www.drupal.org/project/redirect",
  4964. "support": {
  4965. "source": "https://git.drupalcode.org/project/redirect"
  4966. }
  4967. },
  4968. {
  4969. "name": "drupal/redis",
  4970. "version": "1.4.0",
  4971. "source": {
  4972. "type": "git",
  4973. "url": "https://git.drupalcode.org/project/redis.git",
  4974. "reference": "8.x-1.4"
  4975. },
  4976. "dist": {
  4977. "type": "zip",
  4978. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.4.zip",
  4979. "reference": "8.x-1.4",
  4980. "shasum": "87165acdda18873c1e3994c670bcb4cdafd3d0ff"
  4981. },
  4982. "require": {
  4983. "drupal/core": "^8.8 || ^9"
  4984. },
  4985. "suggest": {
  4986. "predis/predis": "^1.1.1"
  4987. },
  4988. "type": "drupal-module",
  4989. "extra": {
  4990. "branch-alias": {
  4991. "dev-1.x": "1.x-dev"
  4992. },
  4993. "drupal": {
  4994. "version": "8.x-1.4",
  4995. "datestamp": "1581504947",
  4996. "security-coverage": {
  4997. "status": "covered",
  4998. "message": "Covered by Drupal's security advisory policy"
  4999. }
  5000. }
  5001. },
  5002. "autoload": {
  5003. "psr-4": {
  5004. "Drupal\\redis\\": "src"
  5005. }
  5006. },
  5007. "notification-url": "https://packages.drupal.org/8/downloads",
  5008. "license": [
  5009. "GPL-2.0"
  5010. ],
  5011. "authors": [
  5012. {
  5013. "name": "Berdir",
  5014. "homepage": "https://www.drupal.org/user/214652"
  5015. },
  5016. {
  5017. "name": "pounard",
  5018. "homepage": "https://www.drupal.org/user/240164"
  5019. }
  5020. ],
  5021. "description": "Provide a module placeholder, for using as dependency for module that needs Redis.",
  5022. "homepage": "https://www.drupal.org/project/redis",
  5023. "support": {
  5024. "source": "https://git.drupalcode.org/project/redis"
  5025. }
  5026. },
  5027. {
  5028. "name": "drupal/restui",
  5029. "version": "1.18.0",
  5030. "source": {
  5031. "type": "git",
  5032. "url": "https://git.drupalcode.org/project/restui.git",
  5033. "reference": "8.x-1.18"
  5034. },
  5035. "dist": {
  5036. "type": "zip",
  5037. "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.18.zip",
  5038. "reference": "8.x-1.18",
  5039. "shasum": "40edbe907d5ec6d6c6a00abd219c7305d90d19e5"
  5040. },
  5041. "require": {
  5042. "drupal/core": "^8.7.7 || ^9"
  5043. },
  5044. "type": "drupal-module",
  5045. "extra": {
  5046. "drupal": {
  5047. "version": "8.x-1.18",
  5048. "datestamp": "1586170645",
  5049. "security-coverage": {
  5050. "status": "covered",
  5051. "message": "Covered by Drupal's security advisory policy"
  5052. }
  5053. }
  5054. },
  5055. "notification-url": "https://packages.drupal.org/8/downloads",
  5056. "license": [
  5057. "GPL-2.0-or-later"
  5058. ],
  5059. "authors": [
  5060. {
  5061. "name": "-enzo-",
  5062. "homepage": "https://www.drupal.org/user/294937"
  5063. },
  5064. {
  5065. "name": "clemens.tolboom",
  5066. "homepage": "https://www.drupal.org/user/125814"
  5067. },
  5068. {
  5069. "name": "juampynr",
  5070. "homepage": "https://www.drupal.org/user/682736"
  5071. },
  5072. {
  5073. "name": "klausi",
  5074. "homepage": "https://www.drupal.org/user/262198"
  5075. }
  5076. ],
  5077. "description": "Provides a user interface to manage REST resources.",
  5078. "homepage": "https://www.drupal.org/project/restui",
  5079. "support": {
  5080. "source": "https://git.drupalcode.org/project/restui"
  5081. }
  5082. },
  5083. {
  5084. "name": "drupal/search_api",
  5085. "version": "1.16.0",
  5086. "source": {
  5087. "type": "git",
  5088. "url": "https://git.drupalcode.org/project/search_api.git",
  5089. "reference": "8.x-1.16"
  5090. },
  5091. "dist": {
  5092. "type": "zip",
  5093. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.16.zip",
  5094. "reference": "8.x-1.16",
  5095. "shasum": "59bf49fd506d532b0da62e30165d06057ab90013"
  5096. },
  5097. "require": {
  5098. "drupal/core": "^8.7.4"
  5099. },
  5100. "conflict": {
  5101. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  5102. },
  5103. "require-dev": {
  5104. "drupal/language_fallback_fix": "@dev",
  5105. "drupal/search_api_autocomplete": "@dev",
  5106. "drupal/search_api_db": "*"
  5107. },
  5108. "suggest": {
  5109. "drupal/facets": "Adds the ability to create faceted searches.",
  5110. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  5111. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  5112. },
  5113. "type": "drupal-module",
  5114. "extra": {
  5115. "drupal": {
  5116. "version": "8.x-1.16",
  5117. "datestamp": "1588361091",
  5118. "security-coverage": {
  5119. "status": "covered",
  5120. "message": "Covered by Drupal's security advisory policy"
  5121. }
  5122. },
  5123. "drush": {
  5124. "services": {
  5125. "drush.services.yml": "^9"
  5126. }
  5127. }
  5128. },
  5129. "notification-url": "https://packages.drupal.org/8/downloads",
  5130. "license": [
  5131. "GPL-2.0+"
  5132. ],
  5133. "authors": [
  5134. {
  5135. "name": "Thomas Seidl",
  5136. "homepage": "https://www.drupal.org/u/drunken-monkey"
  5137. },
  5138. {
  5139. "name": "Nick Veenhof",
  5140. "homepage": "https://www.drupal.org/u/nick_vh"
  5141. },
  5142. {
  5143. "name": "See other contributors",
  5144. "homepage": "https://www.drupal.org/node/790418/committers"
  5145. }
  5146. ],
  5147. "description": "Provides a generic framework for modules offering search capabilities.",
  5148. "homepage": "https://www.drupal.org/project/search_api",
  5149. "support": {
  5150. "source": "https://git.drupalcode.org/project/search_api",
  5151. "issues": "https://www.drupal.org/project/issues/search_api",
  5152. "irc": "irc://irc.freenode.org/drupal-search-api"
  5153. }
  5154. },
  5155. {
  5156. "name": "drupal/simple_sitemap",
  5157. "version": "3.6.0",
  5158. "source": {
  5159. "type": "git",
  5160. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  5161. "reference": "8.x-3.6"
  5162. },
  5163. "dist": {
  5164. "type": "zip",
  5165. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-8.x-3.6.zip",
  5166. "reference": "8.x-3.6",
  5167. "shasum": "37fc0ae98a4ccb23316cb089ae4839913e80cbf6"
  5168. },
  5169. "require": {
  5170. "drupal/core": "^8 || ^9",
  5171. "ext-xmlwriter": "*"
  5172. },
  5173. "type": "drupal-module",
  5174. "extra": {
  5175. "drupal": {
  5176. "version": "8.x-3.6",
  5177. "datestamp": "1586469908",
  5178. "security-coverage": {
  5179. "status": "covered",
  5180. "message": "Covered by Drupal's security advisory policy"
  5181. }
  5182. },
  5183. "drush": {
  5184. "services": {
  5185. "drush.services.yml": "^9 || ^10"
  5186. }
  5187. }
  5188. },
  5189. "notification-url": "https://packages.drupal.org/8/downloads",
  5190. "license": [
  5191. "GPL-2.0+"
  5192. ],
  5193. "authors": [
  5194. {
  5195. "name": "Pawel Ginalski (gbyte.co)",
  5196. "homepage": "https://www.drupal.org/u/gbyte.co",
  5197. "email": "contact@gbyte.co",
  5198. "role": "Maintainer"
  5199. }
  5200. ],
  5201. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  5202. "homepage": "https://drupal.org/project/simple_sitemap",
  5203. "support": {
  5204. "source": "https://cgit.drupalcode.org/simple_sitemap",
  5205. "issues": "https://drupal.org/project/issues/simple_sitemap",
  5206. "irc": "irc://irc.freenode.org/drupal-contribute"
  5207. }
  5208. },
  5209. {
  5210. "name": "drupal/synonyms",
  5211. "version": "dev-1.x",
  5212. "source": {
  5213. "type": "git",
  5214. "url": "https://git.drupalcode.org/project/synonyms.git",
  5215. "reference": "5327ef244bad11e859eed9ff71b49cb8f9955190"
  5216. },
  5217. "require": {
  5218. "drupal/core": "^8.2"
  5219. },
  5220. "type": "drupal-module",
  5221. "extra": {
  5222. "branch-alias": {
  5223. "dev-1.x": "1.x-dev"
  5224. },
  5225. "drupal": {
  5226. "version": "8.x-1.0-alpha1+5-dev",
  5227. "datestamp": "1540141681",
  5228. "security-coverage": {
  5229. "status": "not-covered",
  5230. "message": "Dev releases are not covered by Drupal security advisories."
  5231. }
  5232. }
  5233. },
  5234. "notification-url": "https://packages.drupal.org/8/downloads",
  5235. "license": [
  5236. "GPL-2.0-or-later"
  5237. ],
  5238. "authors": [
  5239. {
  5240. "name": "Zen",
  5241. "homepage": "https://www.drupal.org/user/21209"
  5242. },
  5243. {
  5244. "name": "bojanz",
  5245. "homepage": "https://www.drupal.org/user/86106"
  5246. },
  5247. {
  5248. "name": "bucefal91",
  5249. "homepage": "https://www.drupal.org/user/504128"
  5250. }
  5251. ],
  5252. "description": "Provides synonyms feature for content entities.",
  5253. "homepage": "https://www.drupal.org/project/synonyms",
  5254. "support": {
  5255. "source": "https://git.drupalcode.org/project/synonyms"
  5256. },
  5257. "time": "2018-10-21T17:05:25+00:00"
  5258. },
  5259. {
  5260. "name": "drupal/token",
  5261. "version": "1.7.0",
  5262. "source": {
  5263. "type": "git",
  5264. "url": "https://git.drupalcode.org/project/token.git",
  5265. "reference": "8.x-1.7"
  5266. },
  5267. "dist": {
  5268. "type": "zip",
  5269. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.7.zip",
  5270. "reference": "8.x-1.7",
  5271. "shasum": "c7e3a3757282e4c94e3c1fff08d01e22155cb853"
  5272. },
  5273. "require": {
  5274. "drupal/core": "^8.8 || ^9"
  5275. },
  5276. "type": "drupal-module",
  5277. "extra": {
  5278. "drupal": {
  5279. "version": "8.x-1.7",
  5280. "datestamp": "1589314266",
  5281. "security-coverage": {
  5282. "status": "covered",
  5283. "message": "Covered by Drupal's security advisory policy"
  5284. }
  5285. },
  5286. "drush": {
  5287. "services": {
  5288. "drush.services.yml": "^9 || ^10"
  5289. }
  5290. }
  5291. },
  5292. "notification-url": "https://packages.drupal.org/8/downloads",
  5293. "license": [
  5294. "GPL-2.0+"
  5295. ],
  5296. "authors": [
  5297. {
  5298. "name": "Berdir",
  5299. "homepage": "https://www.drupal.org/user/214652"
  5300. },
  5301. {
  5302. "name": "Dave Reid",
  5303. "homepage": "https://www.drupal.org/user/53892"
  5304. },
  5305. {
  5306. "name": "eaton",
  5307. "homepage": "https://www.drupal.org/user/16496"
  5308. },
  5309. {
  5310. "name": "fago",
  5311. "homepage": "https://www.drupal.org/user/16747"
  5312. },
  5313. {
  5314. "name": "greggles",
  5315. "homepage": "https://www.drupal.org/user/36762"
  5316. },
  5317. {
  5318. "name": "mikeryan",
  5319. "homepage": "https://www.drupal.org/user/4420"
  5320. }
  5321. ],
  5322. "description": "Provides a user interface for the Token API, some missing core tokens.",
  5323. "homepage": "https://www.drupal.org/project/token",
  5324. "support": {
  5325. "source": "https://git.drupalcode.org/project/token"
  5326. }
  5327. },
  5328. {
  5329. "name": "drupal/toolbar_themes",
  5330. "version": "dev-1.x",
  5331. "source": {
  5332. "type": "git",
  5333. "url": "https://git.drupalcode.org/project/toolbar_themes.git",
  5334. "reference": "62e79c8635ec13fe5a4dd67b87f698a14822c044"
  5335. },
  5336. "require": {
  5337. "drupal/core": "*"
  5338. },
  5339. "type": "drupal-module",
  5340. "extra": {
  5341. "branch-alias": {
  5342. "dev-1.x": "1.x-dev"
  5343. },
  5344. "drupal": {
  5345. "version": "8.x-1.0-alpha4+10-dev",
  5346. "datestamp": "1510689485",
  5347. "security-coverage": {
  5348. "status": "not-covered",
  5349. "message": "Project has not opted into security advisory coverage!"
  5350. }
  5351. }
  5352. },
  5353. "notification-url": "https://packages.drupal.org/8/downloads",
  5354. "license": [
  5355. "GPL-2.0-or-later"
  5356. ],
  5357. "authors": [
  5358. {
  5359. "name": "Jeff Burnz",
  5360. "homepage": "https://www.drupal.org/user/61393"
  5361. }
  5362. ],
  5363. "description": "Apply themes to the toolbar.",
  5364. "homepage": "https://www.drupal.org/project/toolbar_themes",
  5365. "support": {
  5366. "source": "https://git.drupalcode.org/project/toolbar_themes"
  5367. },
  5368. "time": "2017-11-14T19:57:02+00:00"
  5369. },
  5370. {
  5371. "name": "drupal/translation_views",
  5372. "version": "1.0.0-alpha10",
  5373. "source": {
  5374. "type": "git",
  5375. "url": "https://git.drupalcode.org/project/translation_views.git",
  5376. "reference": "8.x-1.0-alpha10"
  5377. },
  5378. "dist": {
  5379. "type": "zip",
  5380. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha10.zip",
  5381. "reference": "8.x-1.0-alpha10",
  5382. "shasum": "ca1a6d4bf16293b1b094db6439f9f065de1dbbd5"
  5383. },
  5384. "require": {
  5385. "drupal/core": "^8.8 || ^9"
  5386. },
  5387. "require-dev": {
  5388. "drupal/translators": "*",
  5389. "drupal/translators_content": "*"
  5390. },
  5391. "type": "drupal-module",
  5392. "extra": {
  5393. "drupal": {
  5394. "version": "8.x-1.0-alpha10",
  5395. "datestamp": "1584303687",
  5396. "security-coverage": {
  5397. "status": "not-covered",
  5398. "message": "Project has not opted into security advisory coverage!"
  5399. }
  5400. }
  5401. },
  5402. "notification-url": "https://packages.drupal.org/8/downloads",
  5403. "license": [
  5404. "GPL-2.0-or-later"
  5405. ],
  5406. "authors": [
  5407. {
  5408. "name": "matsbla",
  5409. "homepage": "https://www.drupal.org/user/2325394"
  5410. },
  5411. {
  5412. "name": "vlad.dancer",
  5413. "homepage": "https://www.drupal.org/user/903844"
  5414. }
  5415. ],
  5416. "description": "Create customized lists and queries of translations from your database.",
  5417. "homepage": "https://www.drupal.org/project/translation_views",
  5418. "support": {
  5419. "source": "https://git.drupalcode.org/project/translation_views"
  5420. }
  5421. },
  5422. {
  5423. "name": "drupal/url_to_video_filter",
  5424. "version": "1.3.0",
  5425. "source": {
  5426. "type": "git",
  5427. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  5428. "reference": "8.x-1.3"
  5429. },
  5430. "dist": {
  5431. "type": "zip",
  5432. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-8.x-1.3.zip",
  5433. "reference": "8.x-1.3",
  5434. "shasum": "40a27d1d8948638c0202c1b0c8afe0d92f8362a6"
  5435. },
  5436. "require": {
  5437. "drupal/core": "~8.0"
  5438. },
  5439. "type": "drupal-module",
  5440. "extra": {
  5441. "drupal": {
  5442. "version": "8.x-1.3",
  5443. "datestamp": "1532695981",
  5444. "security-coverage": {
  5445. "status": "covered",
  5446. "message": "Covered by Drupal's security advisory policy"
  5447. }
  5448. }
  5449. },
  5450. "notification-url": "https://packages.drupal.org/8/downloads",
  5451. "license": [
  5452. "GPL-2.0-or-later"
  5453. ],
  5454. "authors": [
  5455. {
  5456. "name": "Jaypan",
  5457. "homepage": "https://www.drupal.org/user/324696"
  5458. }
  5459. ],
  5460. "description": "Text filter to convert URLs to embedded videos",
  5461. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  5462. "support": {
  5463. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  5464. }
  5465. },
  5466. {
  5467. "name": "drupal/views_bulk_edit",
  5468. "version": "2.4.0",
  5469. "source": {
  5470. "type": "git",
  5471. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5472. "reference": "8.x-2.4"
  5473. },
  5474. "dist": {
  5475. "type": "zip",
  5476. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.4.zip",
  5477. "reference": "8.x-2.4",
  5478. "shasum": "039ebf9c6ae3cdd0555c7bfb97c629ebfee61ddb"
  5479. },
  5480. "require": {
  5481. "drupal/core": "*",
  5482. "drupal/views_bulk_operations": "~1.0 | ~2.0 | ~3.0"
  5483. },
  5484. "type": "drupal-module",
  5485. "extra": {
  5486. "drupal": {
  5487. "version": "8.x-2.4",
  5488. "datestamp": "1570030085",
  5489. "security-coverage": {
  5490. "status": "covered",
  5491. "message": "Covered by Drupal's security advisory policy"
  5492. }
  5493. }
  5494. },
  5495. "notification-url": "https://packages.drupal.org/8/downloads",
  5496. "license": [
  5497. "GPL-2.0+"
  5498. ],
  5499. "authors": [
  5500. {
  5501. "name": "Marcin Grabias",
  5502. "homepage": "https://www.drupal.org/u/graber"
  5503. },
  5504. {
  5505. "name": "benjy",
  5506. "homepage": "https://www.drupal.org/user/1852732"
  5507. }
  5508. ],
  5509. "description": "Allows bulk edition of entity field values.",
  5510. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5511. "support": {
  5512. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5513. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5514. }
  5515. },
  5516. {
  5517. "name": "drupal/views_bulk_operations",
  5518. "version": "3.6.0",
  5519. "source": {
  5520. "type": "git",
  5521. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5522. "reference": "8.x-3.6"
  5523. },
  5524. "dist": {
  5525. "type": "zip",
  5526. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.6.zip",
  5527. "reference": "8.x-3.6",
  5528. "shasum": "e73974b85f33b6b569912b5bd880510586bd5486"
  5529. },
  5530. "require": {
  5531. "drupal/core": "~8.8"
  5532. },
  5533. "type": "drupal-module",
  5534. "extra": {
  5535. "drupal": {
  5536. "version": "8.x-3.6",
  5537. "datestamp": "1583133990",
  5538. "security-coverage": {
  5539. "status": "covered",
  5540. "message": "Covered by Drupal's security advisory policy"
  5541. }
  5542. },
  5543. "drush": {
  5544. "services": {
  5545. "drush.services.yml": "^9"
  5546. }
  5547. }
  5548. },
  5549. "notification-url": "https://packages.drupal.org/8/downloads",
  5550. "license": [
  5551. "GPL-2.0+"
  5552. ],
  5553. "authors": [
  5554. {
  5555. "name": "Marcin Grabias",
  5556. "homepage": "https://www.drupal.org/u/graber"
  5557. },
  5558. {
  5559. "name": "Jon Pugh",
  5560. "homepage": "https://www.drupal.org/user/17028"
  5561. },
  5562. {
  5563. "name": "bojanz",
  5564. "homepage": "https://www.drupal.org/user/86106"
  5565. },
  5566. {
  5567. "name": "infojunkie",
  5568. "homepage": "https://www.drupal.org/user/48424"
  5569. },
  5570. {
  5571. "name": "joelpittet",
  5572. "homepage": "https://www.drupal.org/user/160302"
  5573. }
  5574. ],
  5575. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5576. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5577. "support": {
  5578. "source": "https://git.drupalcode.org/project/views_bulk_operations",
  5579. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5580. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5581. }
  5582. },
  5583. {
  5584. "name": "drupal/workflow",
  5585. "version": "dev-1.x",
  5586. "source": {
  5587. "type": "git",
  5588. "url": "https://git.drupalcode.org/project/workflow.git",
  5589. "reference": "91e32308c022537ec7ae8e0118f1afa8a0bde7a4"
  5590. },
  5591. "require": {
  5592. "drupal/core": "^8 || ^9"
  5593. },
  5594. "type": "drupal-module",
  5595. "extra": {
  5596. "branch-alias": {
  5597. "dev-1.x": "1.x-dev"
  5598. },
  5599. "drupal": {
  5600. "version": "8.x-1.1+55-dev",
  5601. "datestamp": "1590411186",
  5602. "security-coverage": {
  5603. "status": "not-covered",
  5604. "message": "Dev releases are not covered by Drupal security advisories."
  5605. }
  5606. }
  5607. },
  5608. "notification-url": "https://packages.drupal.org/8/downloads",
  5609. "license": [
  5610. "GPL-2.0-or-later"
  5611. ],
  5612. "authors": [
  5613. {
  5614. "name": "Bastlynn",
  5615. "homepage": "https://www.drupal.org/user/275249"
  5616. },
  5617. {
  5618. "name": "Heine",
  5619. "homepage": "https://www.drupal.org/user/17943"
  5620. },
  5621. {
  5622. "name": "JacobSingh",
  5623. "homepage": "https://www.drupal.org/user/68912"
  5624. },
  5625. {
  5626. "name": "NancyDru",
  5627. "homepage": "https://www.drupal.org/user/101412"
  5628. },
  5629. {
  5630. "name": "eaton",
  5631. "homepage": "https://www.drupal.org/user/16496"
  5632. },
  5633. {
  5634. "name": "johnv",
  5635. "homepage": "https://www.drupal.org/user/591042"
  5636. },
  5637. {
  5638. "name": "jvandyk",
  5639. "homepage": "https://www.drupal.org/user/2375"
  5640. },
  5641. {
  5642. "name": "mfredrickson",
  5643. "homepage": "https://www.drupal.org/user/31994"
  5644. },
  5645. {
  5646. "name": "q0rban",
  5647. "homepage": "https://www.drupal.org/user/31022"
  5648. }
  5649. ],
  5650. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5651. "homepage": "https://www.drupal.org/project/workflow",
  5652. "support": {
  5653. "source": "https://git.drupalcode.org/project/workflow"
  5654. },
  5655. "time": "2020-05-25T13:34:05+00:00"
  5656. },
  5657. {
  5658. "name": "drush/drush",
  5659. "version": "9.7.2",
  5660. "source": {
  5661. "type": "git",
  5662. "url": "https://github.com/drush-ops/drush.git",
  5663. "reference": "ab5e345a72c9187a7d770486a09691f6526826aa"
  5664. },
  5665. "dist": {
  5666. "type": "zip",
  5667. "url": "https://api.github.com/repos/drush-ops/drush/zipball/ab5e345a72c9187a7d770486a09691f6526826aa",
  5668. "reference": "ab5e345a72c9187a7d770486a09691f6526826aa",
  5669. "shasum": ""
  5670. },
  5671. "require": {
  5672. "chi-teck/drupal-code-generator": "^1.28.1",
  5673. "composer/semver": "^1.4",
  5674. "consolidation/annotated-command": "^2.12",
  5675. "consolidation/config": "^1.2",
  5676. "consolidation/filter-via-dot-access-data": "^1",
  5677. "consolidation/output-formatters": "^3.3.1",
  5678. "consolidation/robo": "^1.4.6",
  5679. "consolidation/site-alias": "^3.0.0@stable",
  5680. "consolidation/site-process": "^2.0.3",
  5681. "ext-dom": "*",
  5682. "grasmash/yaml-expander": "^1.1.1",
  5683. "league/container": "~2",
  5684. "php": ">=5.6.0",
  5685. "psr/log": "~1.0",
  5686. "psy/psysh": "~0.6",
  5687. "symfony/console": "^3.4",
  5688. "symfony/event-dispatcher": "^3.4 || ^4.0",
  5689. "symfony/finder": "^3.4 || ^4.0",
  5690. "symfony/process": "^3.4",
  5691. "symfony/var-dumper": "^3.4 || ^4.0",
  5692. "symfony/yaml": "^3.4",
  5693. "webflo/drupal-finder": "^1.1",
  5694. "webmozart/path-util": "^2.1.0"
  5695. },
  5696. "require-dev": {
  5697. "composer/installers": "^1.2",
  5698. "cweagans/composer-patches": "~1.0",
  5699. "drupal/alinks": "1.0.0",
  5700. "drupal/devel": "^2",
  5701. "drupal/empty_theme": "1.0",
  5702. "g1a/composer-test-scenarios": "^3",
  5703. "lox/xhprof": "dev-master",
  5704. "phpunit/phpunit": "^4.8.36 || ^6.1",
  5705. "squizlabs/php_codesniffer": "^2.7 || ^3",
  5706. "vlucas/phpdotenv": "^2.4",
  5707. "webflo/drupal-core-require-dev": "8.7.x-dev",
  5708. "webflo/drupal-core-strict": "8.7.x-dev"
  5709. },
  5710. "bin": [
  5711. "drush"
  5712. ],
  5713. "type": "library",
  5714. "extra": {
  5715. "installer-paths": {
  5716. "sut/core": [
  5717. "type:drupal-core"
  5718. ],
  5719. "sut/libraries/{$name}": [
  5720. "type:drupal-library"
  5721. ],
  5722. "sut/modules/unish/{$name}": [
  5723. "drupal/devel"
  5724. ],
  5725. "sut/themes/unish/{$name}": [
  5726. "drupal/empty_theme"
  5727. ],
  5728. "sut/modules/contrib/{$name}": [
  5729. "type:drupal-module"
  5730. ],
  5731. "sut/profiles/contrib/{$name}": [
  5732. "type:drupal-profile"
  5733. ],
  5734. "sut/themes/contrib/{$name}": [
  5735. "type:drupal-theme"
  5736. ],
  5737. "sut/drush/contrib/{$name}": [
  5738. "type:drupal-drush"
  5739. ]
  5740. },
  5741. "scenarios": {
  5742. "php5": {
  5743. "config": {
  5744. "platform": {
  5745. "php": "5.6.38"
  5746. }
  5747. },
  5748. "require-dev": {
  5749. "webflo/drupal-core-strict": "8.6.x-dev",
  5750. "webflo/drupal-core-require-dev": "8.6.x-dev"
  5751. }
  5752. }
  5753. },
  5754. "branch-alias": {
  5755. "dev-master": "9.x-dev"
  5756. }
  5757. },
  5758. "autoload": {
  5759. "psr-4": {
  5760. "Drush\\": "src/",
  5761. "Drush\\Internal\\": "src/internal-forks"
  5762. }
  5763. },
  5764. "notification-url": "https://packagist.org/downloads/",
  5765. "license": [
  5766. "GPL-2.0-or-later"
  5767. ],
  5768. "authors": [
  5769. {
  5770. "name": "Moshe Weitzman",
  5771. "email": "weitzman@tejasa.com"
  5772. },
  5773. {
  5774. "name": "Owen Barton",
  5775. "email": "drupal@owenbarton.com"
  5776. },
  5777. {
  5778. "name": "Greg Anderson",
  5779. "email": "greg.1.anderson@greenknowe.org"
  5780. },
  5781. {
  5782. "name": "Jonathan Araña Cruz",
  5783. "email": "jonhattan@faita.net"
  5784. },
  5785. {
  5786. "name": "Jonathan Hedstrom",
  5787. "email": "jhedstrom@gmail.com"
  5788. },
  5789. {
  5790. "name": "Christopher Gervais",
  5791. "email": "chris@ergonlogic.com"
  5792. },
  5793. {
  5794. "name": "Dave Reid",
  5795. "email": "dave@davereid.net"
  5796. },
  5797. {
  5798. "name": "Damian Lee",
  5799. "email": "damiankloip@googlemail.com"
  5800. }
  5801. ],
  5802. "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.",
  5803. "homepage": "http://www.drush.org",
  5804. "time": "2020-02-09T17:29:51+00:00"
  5805. },
  5806. {
  5807. "name": "easyrdf/easyrdf",
  5808. "version": "0.9.1",
  5809. "source": {
  5810. "type": "git",
  5811. "url": "https://github.com/njh/easyrdf.git",
  5812. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  5813. },
  5814. "dist": {
  5815. "type": "zip",
  5816. "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  5817. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  5818. "shasum": ""
  5819. },
  5820. "require": {
  5821. "ext-mbstring": "*",
  5822. "ext-pcre": "*",
  5823. "php": ">=5.2.8"
  5824. },
  5825. "require-dev": {
  5826. "phpunit/phpunit": "~3.5",
  5827. "sami/sami": "~1.4",
  5828. "squizlabs/php_codesniffer": "~1.4.3"
  5829. },
  5830. "suggest": {
  5831. "ml/json-ld": "~1.0"
  5832. },
  5833. "type": "library",
  5834. "autoload": {
  5835. "psr-0": {
  5836. "EasyRdf_": "lib/"
  5837. }
  5838. },
  5839. "notification-url": "https://packagist.org/downloads/",
  5840. "license": [
  5841. "BSD-3-Clause"
  5842. ],
  5843. "authors": [
  5844. {
  5845. "name": "Nicholas Humfrey",
  5846. "email": "njh@aelius.com",
  5847. "homepage": "http://www.aelius.com/njh/",
  5848. "role": "Developer"
  5849. },
  5850. {
  5851. "name": "Alexey Zakhlestin",
  5852. "email": "indeyets@gmail.com",
  5853. "role": "Developer"
  5854. }
  5855. ],
  5856. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  5857. "homepage": "http://www.easyrdf.org/",
  5858. "keywords": [
  5859. "Linked Data",
  5860. "RDF",
  5861. "Semantic Web",
  5862. "Turtle",
  5863. "rdfa",
  5864. "sparql"
  5865. ],
  5866. "time": "2015-02-27T09:45:49+00:00"
  5867. },
  5868. {
  5869. "name": "egulias/email-validator",
  5870. "version": "2.1.11",
  5871. "source": {
  5872. "type": "git",
  5873. "url": "https://github.com/egulias/EmailValidator.git",
  5874. "reference": "92dd169c32f6f55ba570c309d83f5209cefb5e23"
  5875. },
  5876. "dist": {
  5877. "type": "zip",
  5878. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/92dd169c32f6f55ba570c309d83f5209cefb5e23",
  5879. "reference": "92dd169c32f6f55ba570c309d83f5209cefb5e23",
  5880. "shasum": ""
  5881. },
  5882. "require": {
  5883. "doctrine/lexer": "^1.0.1",
  5884. "php": ">= 5.5"
  5885. },
  5886. "require-dev": {
  5887. "dominicsayers/isemail": "dev-master",
  5888. "phpunit/phpunit": "^4.8.35||^5.7||^6.0",
  5889. "satooshi/php-coveralls": "^1.0.1",
  5890. "symfony/phpunit-bridge": "^4.4@dev"
  5891. },
  5892. "suggest": {
  5893. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  5894. },
  5895. "type": "library",
  5896. "extra": {
  5897. "branch-alias": {
  5898. "dev-master": "2.1.x-dev"
  5899. }
  5900. },
  5901. "autoload": {
  5902. "psr-4": {
  5903. "Egulias\\EmailValidator\\": "EmailValidator"
  5904. }
  5905. },
  5906. "notification-url": "https://packagist.org/downloads/",
  5907. "license": [
  5908. "MIT"
  5909. ],
  5910. "authors": [
  5911. {
  5912. "name": "Eduardo Gulias Davis"
  5913. }
  5914. ],
  5915. "description": "A library for validating emails against several RFCs",
  5916. "homepage": "https://github.com/egulias/EmailValidator",
  5917. "keywords": [
  5918. "email",
  5919. "emailvalidation",
  5920. "emailvalidator",
  5921. "validation",
  5922. "validator"
  5923. ],
  5924. "time": "2019-08-13T17:33:27+00:00"
  5925. },
  5926. {
  5927. "name": "grasmash/expander",
  5928. "version": "1.0.0",
  5929. "source": {
  5930. "type": "git",
  5931. "url": "https://github.com/grasmash/expander.git",
  5932. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  5933. },
  5934. "dist": {
  5935. "type": "zip",
  5936. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5937. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5938. "shasum": ""
  5939. },
  5940. "require": {
  5941. "dflydev/dot-access-data": "^1.1.0",
  5942. "php": ">=5.4"
  5943. },
  5944. "require-dev": {
  5945. "greg-1-anderson/composer-test-scenarios": "^1",
  5946. "phpunit/phpunit": "^4|^5.5.4",
  5947. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5948. "squizlabs/php_codesniffer": "^2.7"
  5949. },
  5950. "type": "library",
  5951. "extra": {
  5952. "branch-alias": {
  5953. "dev-master": "1.x-dev"
  5954. }
  5955. },
  5956. "autoload": {
  5957. "psr-4": {
  5958. "Grasmash\\Expander\\": "src/"
  5959. }
  5960. },
  5961. "notification-url": "https://packagist.org/downloads/",
  5962. "license": [
  5963. "MIT"
  5964. ],
  5965. "authors": [
  5966. {
  5967. "name": "Matthew Grasmick"
  5968. }
  5969. ],
  5970. "description": "Expands internal property references in PHP arrays file.",
  5971. "time": "2017-12-21T22:14:55+00:00"
  5972. },
  5973. {
  5974. "name": "grasmash/yaml-expander",
  5975. "version": "1.4.0",
  5976. "source": {
  5977. "type": "git",
  5978. "url": "https://github.com/grasmash/yaml-expander.git",
  5979. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  5980. },
  5981. "dist": {
  5982. "type": "zip",
  5983. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5984. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5985. "shasum": ""
  5986. },
  5987. "require": {
  5988. "dflydev/dot-access-data": "^1.1.0",
  5989. "php": ">=5.4",
  5990. "symfony/yaml": "^2.8.11|^3|^4"
  5991. },
  5992. "require-dev": {
  5993. "greg-1-anderson/composer-test-scenarios": "^1",
  5994. "phpunit/phpunit": "^4.8|^5.5.4",
  5995. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5996. "squizlabs/php_codesniffer": "^2.7"
  5997. },
  5998. "type": "library",
  5999. "extra": {
  6000. "branch-alias": {
  6001. "dev-master": "1.x-dev"
  6002. }
  6003. },
  6004. "autoload": {
  6005. "psr-4": {
  6006. "Grasmash\\YamlExpander\\": "src/"
  6007. }
  6008. },
  6009. "notification-url": "https://packagist.org/downloads/",
  6010. "license": [
  6011. "MIT"
  6012. ],
  6013. "authors": [
  6014. {
  6015. "name": "Matthew Grasmick"
  6016. }
  6017. ],
  6018. "description": "Expands internal property references in a yaml file.",
  6019. "time": "2017-12-16T16:06:03+00:00"
  6020. },
  6021. {
  6022. "name": "guzzlehttp/guzzle",
  6023. "version": "6.3.3",
  6024. "source": {
  6025. "type": "git",
  6026. "url": "https://github.com/guzzle/guzzle.git",
  6027. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  6028. },
  6029. "dist": {
  6030. "type": "zip",
  6031. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  6032. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  6033. "shasum": ""
  6034. },
  6035. "require": {
  6036. "guzzlehttp/promises": "^1.0",
  6037. "guzzlehttp/psr7": "^1.4",
  6038. "php": ">=5.5"
  6039. },
  6040. "require-dev": {
  6041. "ext-curl": "*",
  6042. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  6043. "psr/log": "^1.0"
  6044. },
  6045. "suggest": {
  6046. "psr/log": "Required for using the Log middleware"
  6047. },
  6048. "type": "library",
  6049. "extra": {
  6050. "branch-alias": {
  6051. "dev-master": "6.3-dev"
  6052. }
  6053. },
  6054. "autoload": {
  6055. "files": [
  6056. "src/functions_include.php"
  6057. ],
  6058. "psr-4": {
  6059. "GuzzleHttp\\": "src/"
  6060. }
  6061. },
  6062. "notification-url": "https://packagist.org/downloads/",
  6063. "license": [
  6064. "MIT"
  6065. ],
  6066. "authors": [
  6067. {
  6068. "name": "Michael Dowling",
  6069. "email": "mtdowling@gmail.com",
  6070. "homepage": "https://github.com/mtdowling"
  6071. }
  6072. ],
  6073. "description": "Guzzle is a PHP HTTP client library",
  6074. "homepage": "http://guzzlephp.org/",
  6075. "keywords": [
  6076. "client",
  6077. "curl",
  6078. "framework",
  6079. "http",
  6080. "http client",
  6081. "rest",
  6082. "web service"
  6083. ],
  6084. "time": "2018-04-22T15:46:56+00:00"
  6085. },
  6086. {
  6087. "name": "guzzlehttp/promises",
  6088. "version": "v1.3.1",
  6089. "source": {
  6090. "type": "git",
  6091. "url": "https://github.com/guzzle/promises.git",
  6092. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  6093. },
  6094. "dist": {
  6095. "type": "zip",
  6096. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6097. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6098. "shasum": ""
  6099. },
  6100. "require": {
  6101. "php": ">=5.5.0"
  6102. },
  6103. "require-dev": {
  6104. "phpunit/phpunit": "^4.0"
  6105. },
  6106. "type": "library",
  6107. "extra": {
  6108. "branch-alias": {
  6109. "dev-master": "1.4-dev"
  6110. }
  6111. },
  6112. "autoload": {
  6113. "psr-4": {
  6114. "GuzzleHttp\\Promise\\": "src/"
  6115. },
  6116. "files": [
  6117. "src/functions_include.php"
  6118. ]
  6119. },
  6120. "notification-url": "https://packagist.org/downloads/",
  6121. "license": [
  6122. "MIT"
  6123. ],
  6124. "authors": [
  6125. {
  6126. "name": "Michael Dowling",
  6127. "email": "mtdowling@gmail.com",
  6128. "homepage": "https://github.com/mtdowling"
  6129. }
  6130. ],
  6131. "description": "Guzzle promises library",
  6132. "keywords": [
  6133. "promise"
  6134. ],
  6135. "time": "2016-12-20T10:07:11+00:00"
  6136. },
  6137. {
  6138. "name": "guzzlehttp/psr7",
  6139. "version": "1.6.1",
  6140. "source": {
  6141. "type": "git",
  6142. "url": "https://github.com/guzzle/psr7.git",
  6143. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  6144. },
  6145. "dist": {
  6146. "type": "zip",
  6147. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  6148. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  6149. "shasum": ""
  6150. },
  6151. "require": {
  6152. "php": ">=5.4.0",
  6153. "psr/http-message": "~1.0",
  6154. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  6155. },
  6156. "provide": {
  6157. "psr/http-message-implementation": "1.0"
  6158. },
  6159. "require-dev": {
  6160. "ext-zlib": "*",
  6161. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  6162. },
  6163. "suggest": {
  6164. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  6165. },
  6166. "type": "library",
  6167. "extra": {
  6168. "branch-alias": {
  6169. "dev-master": "1.6-dev"
  6170. }
  6171. },
  6172. "autoload": {
  6173. "psr-4": {
  6174. "GuzzleHttp\\Psr7\\": "src/"
  6175. },
  6176. "files": [
  6177. "src/functions_include.php"
  6178. ]
  6179. },
  6180. "notification-url": "https://packagist.org/downloads/",
  6181. "license": [
  6182. "MIT"
  6183. ],
  6184. "authors": [
  6185. {
  6186. "name": "Michael Dowling",
  6187. "email": "mtdowling@gmail.com",
  6188. "homepage": "https://github.com/mtdowling"
  6189. },
  6190. {
  6191. "name": "Tobias Schultze",
  6192. "homepage": "https://github.com/Tobion"
  6193. }
  6194. ],
  6195. "description": "PSR-7 message implementation that also provides common utility methods",
  6196. "keywords": [
  6197. "http",
  6198. "message",
  6199. "psr-7",
  6200. "request",
  6201. "response",
  6202. "stream",
  6203. "uri",
  6204. "url"
  6205. ],
  6206. "time": "2019-07-01T23:21:34+00:00"
  6207. },
  6208. {
  6209. "name": "league/container",
  6210. "version": "2.4.1",
  6211. "source": {
  6212. "type": "git",
  6213. "url": "https://github.com/thephpleague/container.git",
  6214. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  6215. },
  6216. "dist": {
  6217. "type": "zip",
  6218. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  6219. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  6220. "shasum": ""
  6221. },
  6222. "require": {
  6223. "container-interop/container-interop": "^1.2",
  6224. "php": "^5.4.0 || ^7.0"
  6225. },
  6226. "provide": {
  6227. "container-interop/container-interop-implementation": "^1.2",
  6228. "psr/container-implementation": "^1.0"
  6229. },
  6230. "replace": {
  6231. "orno/di": "~2.0"
  6232. },
  6233. "require-dev": {
  6234. "phpunit/phpunit": "4.*"
  6235. },
  6236. "type": "library",
  6237. "extra": {
  6238. "branch-alias": {
  6239. "dev-2.x": "2.x-dev",
  6240. "dev-1.x": "1.x-dev"
  6241. }
  6242. },
  6243. "autoload": {
  6244. "psr-4": {
  6245. "League\\Container\\": "src"
  6246. }
  6247. },
  6248. "notification-url": "https://packagist.org/downloads/",
  6249. "license": [
  6250. "MIT"
  6251. ],
  6252. "authors": [
  6253. {
  6254. "name": "Phil Bennett",
  6255. "email": "philipobenito@gmail.com",
  6256. "homepage": "http://www.philipobenito.com",
  6257. "role": "Developer"
  6258. }
  6259. ],
  6260. "description": "A fast and intuitive dependency injection container.",
  6261. "homepage": "https://github.com/thephpleague/container",
  6262. "keywords": [
  6263. "container",
  6264. "dependency",
  6265. "di",
  6266. "injection",
  6267. "league",
  6268. "provider",
  6269. "service"
  6270. ],
  6271. "time": "2017-05-10T09:20:27+00:00"
  6272. },
  6273. {
  6274. "name": "masterminds/html5",
  6275. "version": "2.3.0",
  6276. "source": {
  6277. "type": "git",
  6278. "url": "https://github.com/Masterminds/html5-php.git",
  6279. "reference": "2c37c6c520b995b761674de3be8455a381679067"
  6280. },
  6281. "dist": {
  6282. "type": "zip",
  6283. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067",
  6284. "reference": "2c37c6c520b995b761674de3be8455a381679067",
  6285. "shasum": ""
  6286. },
  6287. "require": {
  6288. "ext-libxml": "*",
  6289. "php": ">=5.3.0"
  6290. },
  6291. "require-dev": {
  6292. "phpunit/phpunit": "4.*",
  6293. "sami/sami": "~2.0",
  6294. "satooshi/php-coveralls": "1.0.*"
  6295. },
  6296. "type": "library",
  6297. "extra": {
  6298. "branch-alias": {
  6299. "dev-master": "2.2-dev"
  6300. }
  6301. },
  6302. "autoload": {
  6303. "psr-4": {
  6304. "Masterminds\\": "src"
  6305. }
  6306. },
  6307. "notification-url": "https://packagist.org/downloads/",
  6308. "license": [
  6309. "MIT"
  6310. ],
  6311. "authors": [
  6312. {
  6313. "name": "Matt Butcher",
  6314. "email": "technosophos@gmail.com"
  6315. },
  6316. {
  6317. "name": "Asmir Mustafic",
  6318. "email": "goetas@gmail.com"
  6319. },
  6320. {
  6321. "name": "Matt Farina",
  6322. "email": "matt@mattfarina.com"
  6323. }
  6324. ],
  6325. "description": "An HTML5 parser and serializer.",
  6326. "homepage": "http://masterminds.github.io/html5-php",
  6327. "keywords": [
  6328. "HTML5",
  6329. "dom",
  6330. "html",
  6331. "parser",
  6332. "querypath",
  6333. "serializer",
  6334. "xml"
  6335. ],
  6336. "time": "2017-09-04T12:26:28+00:00"
  6337. },
  6338. {
  6339. "name": "nikic/php-parser",
  6340. "version": "v4.4.0",
  6341. "source": {
  6342. "type": "git",
  6343. "url": "https://github.com/nikic/PHP-Parser.git",
  6344. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120"
  6345. },
  6346. "dist": {
  6347. "type": "zip",
  6348. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  6349. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  6350. "shasum": ""
  6351. },
  6352. "require": {
  6353. "ext-tokenizer": "*",
  6354. "php": ">=7.0"
  6355. },
  6356. "require-dev": {
  6357. "ircmaxell/php-yacc": "0.0.5",
  6358. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  6359. },
  6360. "bin": [
  6361. "bin/php-parse"
  6362. ],
  6363. "type": "library",
  6364. "extra": {
  6365. "branch-alias": {
  6366. "dev-master": "4.3-dev"
  6367. }
  6368. },
  6369. "autoload": {
  6370. "psr-4": {
  6371. "PhpParser\\": "lib/PhpParser"
  6372. }
  6373. },
  6374. "notification-url": "https://packagist.org/downloads/",
  6375. "license": [
  6376. "BSD-3-Clause"
  6377. ],
  6378. "authors": [
  6379. {
  6380. "name": "Nikita Popov"
  6381. }
  6382. ],
  6383. "description": "A PHP parser written in PHP",
  6384. "keywords": [
  6385. "parser",
  6386. "php"
  6387. ],
  6388. "time": "2020-04-10T16:34:50+00:00"
  6389. },
  6390. {
  6391. "name": "oomphinc/composer-installers-extender",
  6392. "version": "v1.1.2",
  6393. "source": {
  6394. "type": "git",
  6395. "url": "https://github.com/oomphinc/composer-installers-extender.git",
  6396. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56"
  6397. },
  6398. "dist": {
  6399. "type": "zip",
  6400. "url": "https://api.github.com/repos/oomphinc/composer-installers-extender/zipball/ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  6401. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  6402. "shasum": ""
  6403. },
  6404. "require": {
  6405. "composer-plugin-api": "^1.0",
  6406. "composer/installers": "^1.0"
  6407. },
  6408. "type": "composer-plugin",
  6409. "extra": {
  6410. "class": "OomphInc\\ComposerInstallersExtender\\Plugin"
  6411. },
  6412. "autoload": {
  6413. "psr-4": {
  6414. "OomphInc\\ComposerInstallersExtender\\": "src/"
  6415. }
  6416. },
  6417. "notification-url": "https://packagist.org/downloads/",
  6418. "license": [
  6419. "MIT"
  6420. ],
  6421. "authors": [
  6422. {
  6423. "name": "Stephen Beemsterboer",
  6424. "email": "stephen@oomphinc.com",
  6425. "homepage": "https://github.com/balbuf"
  6426. }
  6427. ],
  6428. "description": "Extend the composer/installers plugin to accept any arbitrary package type.",
  6429. "homepage": "http://www.oomphinc.com/",
  6430. "time": "2017-03-31T16:57:39+00:00"
  6431. },
  6432. {
  6433. "name": "paragonie/random_compat",
  6434. "version": "v9.99.99",
  6435. "source": {
  6436. "type": "git",
  6437. "url": "https://github.com/paragonie/random_compat.git",
  6438. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  6439. },
  6440. "dist": {
  6441. "type": "zip",
  6442. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  6443. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  6444. "shasum": ""
  6445. },
  6446. "require": {
  6447. "php": "^7"
  6448. },
  6449. "require-dev": {
  6450. "phpunit/phpunit": "4.*|5.*",
  6451. "vimeo/psalm": "^1"
  6452. },
  6453. "suggest": {
  6454. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  6455. },
  6456. "type": "library",
  6457. "notification-url": "https://packagist.org/downloads/",
  6458. "license": [
  6459. "MIT"
  6460. ],
  6461. "authors": [
  6462. {
  6463. "name": "Paragon Initiative Enterprises",
  6464. "email": "security@paragonie.com",
  6465. "homepage": "https://paragonie.com"
  6466. }
  6467. ],
  6468. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  6469. "keywords": [
  6470. "csprng",
  6471. "polyfill",
  6472. "pseudorandom",
  6473. "random"
  6474. ],
  6475. "time": "2018-07-02T15:55:56+00:00"
  6476. },
  6477. {
  6478. "name": "pear/archive_tar",
  6479. "version": "1.4.9",
  6480. "source": {
  6481. "type": "git",
  6482. "url": "https://github.com/pear/Archive_Tar.git",
  6483. "reference": "c5b00053770e1d72128252c62c2c1a12c26639f0"
  6484. },
  6485. "dist": {
  6486. "type": "zip",
  6487. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/c5b00053770e1d72128252c62c2c1a12c26639f0",
  6488. "reference": "c5b00053770e1d72128252c62c2c1a12c26639f0",
  6489. "shasum": ""
  6490. },
  6491. "require": {
  6492. "pear/pear-core-minimal": "^1.10.0alpha2",
  6493. "php": ">=5.2.0"
  6494. },
  6495. "require-dev": {
  6496. "phpunit/phpunit": "*"
  6497. },
  6498. "suggest": {
  6499. "ext-bz2": "Bz2 compression support.",
  6500. "ext-xz": "Lzma2 compression support.",
  6501. "ext-zlib": "Gzip compression support."
  6502. },
  6503. "type": "library",
  6504. "extra": {
  6505. "branch-alias": {
  6506. "dev-master": "1.4.x-dev"
  6507. }
  6508. },
  6509. "autoload": {
  6510. "psr-0": {
  6511. "Archive_Tar": ""
  6512. }
  6513. },
  6514. "notification-url": "https://packagist.org/downloads/",
  6515. "include-path": [
  6516. "./"
  6517. ],
  6518. "license": [
  6519. "BSD-3-Clause"
  6520. ],
  6521. "authors": [
  6522. {
  6523. "name": "Vincent Blavet",
  6524. "email": "vincent@phpconcept.net"
  6525. },
  6526. {
  6527. "name": "Greg Beaver",
  6528. "email": "greg@chiaraquartet.net"
  6529. },
  6530. {
  6531. "name": "Michiel Rook",
  6532. "email": "mrook@php.net"
  6533. }
  6534. ],
  6535. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  6536. "homepage": "https://github.com/pear/Archive_Tar",
  6537. "keywords": [
  6538. "archive",
  6539. "tar"
  6540. ],
  6541. "time": "2019-12-04T10:17:28+00:00"
  6542. },
  6543. {
  6544. "name": "pear/console_getopt",
  6545. "version": "v1.4.2",
  6546. "source": {
  6547. "type": "git",
  6548. "url": "https://github.com/pear/Console_Getopt.git",
  6549. "reference": "6c77aeb625b32bd752e89ee17972d103588b90c0"
  6550. },
  6551. "dist": {
  6552. "type": "zip",
  6553. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/6c77aeb625b32bd752e89ee17972d103588b90c0",
  6554. "reference": "6c77aeb625b32bd752e89ee17972d103588b90c0",
  6555. "shasum": ""
  6556. },
  6557. "type": "library",
  6558. "autoload": {
  6559. "psr-0": {
  6560. "Console": "./"
  6561. }
  6562. },
  6563. "notification-url": "https://packagist.org/downloads/",
  6564. "include-path": [
  6565. "./"
  6566. ],
  6567. "license": [
  6568. "BSD-2-Clause"
  6569. ],
  6570. "authors": [
  6571. {
  6572. "name": "Greg Beaver",
  6573. "email": "cellog@php.net",
  6574. "role": "Helper"
  6575. },
  6576. {
  6577. "name": "Andrei Zmievski",
  6578. "email": "andrei@php.net",
  6579. "role": "Lead"
  6580. },
  6581. {
  6582. "name": "Stig Bakken",
  6583. "email": "stig@php.net",
  6584. "role": "Developer"
  6585. }
  6586. ],
  6587. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  6588. "time": "2019-02-06T16:52:33+00:00"
  6589. },
  6590. {
  6591. "name": "pear/pear-core-minimal",
  6592. "version": "v1.10.9",
  6593. "source": {
  6594. "type": "git",
  6595. "url": "https://github.com/pear/pear-core-minimal.git",
  6596. "reference": "742be8dd68c746a01e4b0a422258e9c9cae1c37f"
  6597. },
  6598. "dist": {
  6599. "type": "zip",
  6600. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/742be8dd68c746a01e4b0a422258e9c9cae1c37f",
  6601. "reference": "742be8dd68c746a01e4b0a422258e9c9cae1c37f",
  6602. "shasum": ""
  6603. },
  6604. "require": {
  6605. "pear/console_getopt": "~1.4",
  6606. "pear/pear_exception": "~1.0"
  6607. },
  6608. "replace": {
  6609. "rsky/pear-core-min": "self.version"
  6610. },
  6611. "type": "library",
  6612. "autoload": {
  6613. "psr-0": {
  6614. "": "src/"
  6615. }
  6616. },
  6617. "notification-url": "https://packagist.org/downloads/",
  6618. "include-path": [
  6619. "src/"
  6620. ],
  6621. "license": [
  6622. "BSD-3-Clause"
  6623. ],
  6624. "authors": [
  6625. {
  6626. "name": "Christian Weiske",
  6627. "email": "cweiske@php.net",
  6628. "role": "Lead"
  6629. }
  6630. ],
  6631. "description": "Minimal set of PEAR core files to be used as composer dependency",
  6632. "time": "2019-03-13T18:15:44+00:00"
  6633. },
  6634. {
  6635. "name": "pear/pear_exception",
  6636. "version": "v1.0.0",
  6637. "source": {
  6638. "type": "git",
  6639. "url": "https://github.com/pear/PEAR_Exception.git",
  6640. "reference": "8c18719fdae000b690e3912be401c76e406dd13b"
  6641. },
  6642. "dist": {
  6643. "type": "zip",
  6644. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/8c18719fdae000b690e3912be401c76e406dd13b",
  6645. "reference": "8c18719fdae000b690e3912be401c76e406dd13b",
  6646. "shasum": ""
  6647. },
  6648. "require": {
  6649. "php": ">=4.4.0"
  6650. },
  6651. "require-dev": {
  6652. "phpunit/phpunit": "*"
  6653. },
  6654. "type": "class",
  6655. "extra": {
  6656. "branch-alias": {
  6657. "dev-master": "1.0.x-dev"
  6658. }
  6659. },
  6660. "autoload": {
  6661. "psr-0": {
  6662. "PEAR": ""
  6663. }
  6664. },
  6665. "notification-url": "https://packagist.org/downloads/",
  6666. "include-path": [
  6667. "."
  6668. ],
  6669. "license": [
  6670. "BSD-2-Clause"
  6671. ],
  6672. "authors": [
  6673. {
  6674. "name": "Helgi Thormar",
  6675. "email": "dufuz@php.net"
  6676. },
  6677. {
  6678. "name": "Greg Beaver",
  6679. "email": "cellog@php.net"
  6680. }
  6681. ],
  6682. "description": "The PEAR Exception base class.",
  6683. "homepage": "https://github.com/pear/PEAR_Exception",
  6684. "keywords": [
  6685. "exception"
  6686. ],
  6687. "time": "2015-02-10T20:07:52+00:00"
  6688. },
  6689. {
  6690. "name": "psr/container",
  6691. "version": "1.0.0",
  6692. "source": {
  6693. "type": "git",
  6694. "url": "https://github.com/php-fig/container.git",
  6695. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  6696. },
  6697. "dist": {
  6698. "type": "zip",
  6699. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  6700. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  6701. "shasum": ""
  6702. },
  6703. "require": {
  6704. "php": ">=5.3.0"
  6705. },
  6706. "type": "library",
  6707. "extra": {
  6708. "branch-alias": {
  6709. "dev-master": "1.0.x-dev"
  6710. }
  6711. },
  6712. "autoload": {
  6713. "psr-4": {
  6714. "Psr\\Container\\": "src/"
  6715. }
  6716. },
  6717. "notification-url": "https://packagist.org/downloads/",
  6718. "license": [
  6719. "MIT"
  6720. ],
  6721. "authors": [
  6722. {
  6723. "name": "PHP-FIG",
  6724. "homepage": "http://www.php-fig.org/"
  6725. }
  6726. ],
  6727. "description": "Common Container Interface (PHP FIG PSR-11)",
  6728. "homepage": "https://github.com/php-fig/container",
  6729. "keywords": [
  6730. "PSR-11",
  6731. "container",
  6732. "container-interface",
  6733. "container-interop",
  6734. "psr"
  6735. ],
  6736. "time": "2017-02-14T16:28:37+00:00"
  6737. },
  6738. {
  6739. "name": "psr/http-message",
  6740. "version": "1.0.1",
  6741. "source": {
  6742. "type": "git",
  6743. "url": "https://github.com/php-fig/http-message.git",
  6744. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  6745. },
  6746. "dist": {
  6747. "type": "zip",
  6748. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  6749. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  6750. "shasum": ""
  6751. },
  6752. "require": {
  6753. "php": ">=5.3.0"
  6754. },
  6755. "type": "library",
  6756. "extra": {
  6757. "branch-alias": {
  6758. "dev-master": "1.0.x-dev"
  6759. }
  6760. },
  6761. "autoload": {
  6762. "psr-4": {
  6763. "Psr\\Http\\Message\\": "src/"
  6764. }
  6765. },
  6766. "notification-url": "https://packagist.org/downloads/",
  6767. "license": [
  6768. "MIT"
  6769. ],
  6770. "authors": [
  6771. {
  6772. "name": "PHP-FIG",
  6773. "homepage": "http://www.php-fig.org/"
  6774. }
  6775. ],
  6776. "description": "Common interface for HTTP messages",
  6777. "homepage": "https://github.com/php-fig/http-message",
  6778. "keywords": [
  6779. "http",
  6780. "http-message",
  6781. "psr",
  6782. "psr-7",
  6783. "request",
  6784. "response"
  6785. ],
  6786. "time": "2016-08-06T14:39:51+00:00"
  6787. },
  6788. {
  6789. "name": "psr/log",
  6790. "version": "1.1.0",
  6791. "source": {
  6792. "type": "git",
  6793. "url": "https://github.com/php-fig/log.git",
  6794. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  6795. },
  6796. "dist": {
  6797. "type": "zip",
  6798. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  6799. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  6800. "shasum": ""
  6801. },
  6802. "require": {
  6803. "php": ">=5.3.0"
  6804. },
  6805. "type": "library",
  6806. "extra": {
  6807. "branch-alias": {
  6808. "dev-master": "1.0.x-dev"
  6809. }
  6810. },
  6811. "autoload": {
  6812. "psr-4": {
  6813. "Psr\\Log\\": "Psr/Log/"
  6814. }
  6815. },
  6816. "notification-url": "https://packagist.org/downloads/",
  6817. "license": [
  6818. "MIT"
  6819. ],
  6820. "authors": [
  6821. {
  6822. "name": "PHP-FIG",
  6823. "homepage": "http://www.php-fig.org/"
  6824. }
  6825. ],
  6826. "description": "Common interface for logging libraries",
  6827. "homepage": "https://github.com/php-fig/log",
  6828. "keywords": [
  6829. "log",
  6830. "psr",
  6831. "psr-3"
  6832. ],
  6833. "time": "2018-11-20T15:27:04+00:00"
  6834. },
  6835. {
  6836. "name": "psy/psysh",
  6837. "version": "v0.10.4",
  6838. "source": {
  6839. "type": "git",
  6840. "url": "https://github.com/bobthecow/psysh.git",
  6841. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560"
  6842. },
  6843. "dist": {
  6844. "type": "zip",
  6845. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560",
  6846. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560",
  6847. "shasum": ""
  6848. },
  6849. "require": {
  6850. "dnoegel/php-xdg-base-dir": "0.1.*",
  6851. "ext-json": "*",
  6852. "ext-tokenizer": "*",
  6853. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  6854. "php": "^8.0 || ^7.0 || ^5.5.9",
  6855. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  6856. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  6857. },
  6858. "require-dev": {
  6859. "bamarni/composer-bin-plugin": "^1.2",
  6860. "hoa/console": "3.17.*"
  6861. },
  6862. "suggest": {
  6863. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  6864. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  6865. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  6866. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  6867. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  6868. },
  6869. "bin": [
  6870. "bin/psysh"
  6871. ],
  6872. "type": "library",
  6873. "extra": {
  6874. "branch-alias": {
  6875. "dev-master": "0.10.x-dev"
  6876. }
  6877. },
  6878. "autoload": {
  6879. "files": [
  6880. "src/functions.php"
  6881. ],
  6882. "psr-4": {
  6883. "Psy\\": "src/"
  6884. }
  6885. },
  6886. "notification-url": "https://packagist.org/downloads/",
  6887. "license": [
  6888. "MIT"
  6889. ],
  6890. "authors": [
  6891. {
  6892. "name": "Justin Hileman",
  6893. "email": "justin@justinhileman.info",
  6894. "homepage": "http://justinhileman.com"
  6895. }
  6896. ],
  6897. "description": "An interactive shell for modern PHP.",
  6898. "homepage": "http://psysh.org",
  6899. "keywords": [
  6900. "REPL",
  6901. "console",
  6902. "interactive",
  6903. "shell"
  6904. ],
  6905. "time": "2020-05-03T19:32:03+00:00"
  6906. },
  6907. {
  6908. "name": "ralouphie/getallheaders",
  6909. "version": "3.0.3",
  6910. "source": {
  6911. "type": "git",
  6912. "url": "https://github.com/ralouphie/getallheaders.git",
  6913. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6914. },
  6915. "dist": {
  6916. "type": "zip",
  6917. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6918. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6919. "shasum": ""
  6920. },
  6921. "require": {
  6922. "php": ">=5.6"
  6923. },
  6924. "require-dev": {
  6925. "php-coveralls/php-coveralls": "^2.1",
  6926. "phpunit/phpunit": "^5 || ^6.5"
  6927. },
  6928. "type": "library",
  6929. "autoload": {
  6930. "files": [
  6931. "src/getallheaders.php"
  6932. ]
  6933. },
  6934. "notification-url": "https://packagist.org/downloads/",
  6935. "license": [
  6936. "MIT"
  6937. ],
  6938. "authors": [
  6939. {
  6940. "name": "Ralph Khattar",
  6941. "email": "ralph.khattar@gmail.com"
  6942. }
  6943. ],
  6944. "description": "A polyfill for getallheaders.",
  6945. "time": "2019-03-08T08:55:37+00:00"
  6946. },
  6947. {
  6948. "name": "stack/builder",
  6949. "version": "v1.0.5",
  6950. "source": {
  6951. "type": "git",
  6952. "url": "https://github.com/stackphp/builder.git",
  6953. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  6954. },
  6955. "dist": {
  6956. "type": "zip",
  6957. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  6958. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  6959. "shasum": ""
  6960. },
  6961. "require": {
  6962. "php": ">=5.3.0",
  6963. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  6964. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  6965. },
  6966. "require-dev": {
  6967. "silex/silex": "~1.0"
  6968. },
  6969. "type": "library",
  6970. "extra": {
  6971. "branch-alias": {
  6972. "dev-master": "1.0-dev"
  6973. }
  6974. },
  6975. "autoload": {
  6976. "psr-0": {
  6977. "Stack": "src"
  6978. }
  6979. },
  6980. "notification-url": "https://packagist.org/downloads/",
  6981. "license": [
  6982. "MIT"
  6983. ],
  6984. "authors": [
  6985. {
  6986. "name": "Igor Wiedler",
  6987. "email": "igor@wiedler.ch"
  6988. }
  6989. ],
  6990. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  6991. "keywords": [
  6992. "stack"
  6993. ],
  6994. "time": "2017-11-18T14:57:29+00:00"
  6995. },
  6996. {
  6997. "name": "stecman/symfony-console-completion",
  6998. "version": "0.11.0",
  6999. "source": {
  7000. "type": "git",
  7001. "url": "https://github.com/stecman/symfony-console-completion.git",
  7002. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518"
  7003. },
  7004. "dist": {
  7005. "type": "zip",
  7006. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/a9502dab59405e275a9f264536c4e1cb61fc3518",
  7007. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518",
  7008. "shasum": ""
  7009. },
  7010. "require": {
  7011. "php": ">=5.3.2",
  7012. "symfony/console": "~2.3 || ~3.0 || ~4.0 || ~5.0"
  7013. },
  7014. "require-dev": {
  7015. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  7016. },
  7017. "type": "library",
  7018. "extra": {
  7019. "branch-alias": {
  7020. "dev-master": "0.10.x-dev"
  7021. }
  7022. },
  7023. "autoload": {
  7024. "psr-4": {
  7025. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  7026. }
  7027. },
  7028. "notification-url": "https://packagist.org/downloads/",
  7029. "license": [
  7030. "MIT"
  7031. ],
  7032. "authors": [
  7033. {
  7034. "name": "Stephen Holdaway",
  7035. "email": "stephen@stecman.co.nz"
  7036. }
  7037. ],
  7038. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  7039. "time": "2019-11-24T17:03:06+00:00"
  7040. },
  7041. {
  7042. "name": "symfony-cmf/routing",
  7043. "version": "1.4.1",
  7044. "source": {
  7045. "type": "git",
  7046. "url": "https://github.com/symfony-cmf/routing.git",
  7047. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  7048. },
  7049. "dist": {
  7050. "type": "zip",
  7051. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7052. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7053. "shasum": ""
  7054. },
  7055. "require": {
  7056. "php": "^5.3.9|^7.0",
  7057. "psr/log": "1.*",
  7058. "symfony/http-kernel": "^2.2|3.*",
  7059. "symfony/routing": "^2.2|3.*"
  7060. },
  7061. "require-dev": {
  7062. "friendsofsymfony/jsrouting-bundle": "^1.1",
  7063. "symfony-cmf/testing": "^1.3",
  7064. "symfony/config": "^2.2|3.*",
  7065. "symfony/dependency-injection": "^2.0.5|3.*",
  7066. "symfony/event-dispatcher": "^2.1|3.*"
  7067. },
  7068. "suggest": {
  7069. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  7070. },
  7071. "type": "library",
  7072. "extra": {
  7073. "branch-alias": {
  7074. "dev-master": "1.4-dev"
  7075. }
  7076. },
  7077. "autoload": {
  7078. "psr-4": {
  7079. "Symfony\\Cmf\\Component\\Routing\\": ""
  7080. }
  7081. },
  7082. "notification-url": "https://packagist.org/downloads/",
  7083. "license": [
  7084. "MIT"
  7085. ],
  7086. "authors": [
  7087. {
  7088. "name": "Symfony CMF Community",
  7089. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  7090. }
  7091. ],
  7092. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  7093. "homepage": "http://cmf.symfony.com",
  7094. "keywords": [
  7095. "database",
  7096. "routing"
  7097. ],
  7098. "time": "2017-05-09T08:10:41+00:00"
  7099. },
  7100. {
  7101. "name": "symfony/class-loader",
  7102. "version": "v3.4.35",
  7103. "source": {
  7104. "type": "git",
  7105. "url": "https://github.com/symfony/class-loader.git",
  7106. "reference": "e212b06996819a2bce026a63da03b7182d05a690"
  7107. },
  7108. "dist": {
  7109. "type": "zip",
  7110. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e212b06996819a2bce026a63da03b7182d05a690",
  7111. "reference": "e212b06996819a2bce026a63da03b7182d05a690",
  7112. "shasum": ""
  7113. },
  7114. "require": {
  7115. "php": "^5.5.9|>=7.0.8"
  7116. },
  7117. "require-dev": {
  7118. "symfony/finder": "~2.8|~3.0|~4.0",
  7119. "symfony/polyfill-apcu": "~1.1"
  7120. },
  7121. "suggest": {
  7122. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  7123. },
  7124. "type": "library",
  7125. "extra": {
  7126. "branch-alias": {
  7127. "dev-master": "3.4-dev"
  7128. }
  7129. },
  7130. "autoload": {
  7131. "psr-4": {
  7132. "Symfony\\Component\\ClassLoader\\": ""
  7133. },
  7134. "exclude-from-classmap": [
  7135. "/Tests/"
  7136. ]
  7137. },
  7138. "notification-url": "https://packagist.org/downloads/",
  7139. "license": [
  7140. "MIT"
  7141. ],
  7142. "authors": [
  7143. {
  7144. "name": "Fabien Potencier",
  7145. "email": "fabien@symfony.com"
  7146. },
  7147. {
  7148. "name": "Symfony Community",
  7149. "homepage": "https://symfony.com/contributors"
  7150. }
  7151. ],
  7152. "description": "Symfony ClassLoader Component",
  7153. "homepage": "https://symfony.com",
  7154. "time": "2019-08-20T13:31:17+00:00"
  7155. },
  7156. {
  7157. "name": "symfony/config",
  7158. "version": "v3.4.40",
  7159. "source": {
  7160. "type": "git",
  7161. "url": "https://github.com/symfony/config.git",
  7162. "reference": "3634991bea549e73c45a964c38f30ceeae6ed877"
  7163. },
  7164. "dist": {
  7165. "type": "zip",
  7166. "url": "https://api.github.com/repos/symfony/config/zipball/3634991bea549e73c45a964c38f30ceeae6ed877",
  7167. "reference": "3634991bea549e73c45a964c38f30ceeae6ed877",
  7168. "shasum": ""
  7169. },
  7170. "require": {
  7171. "php": "^5.5.9|>=7.0.8",
  7172. "symfony/filesystem": "~2.8|~3.0|~4.0",
  7173. "symfony/polyfill-ctype": "~1.8"
  7174. },
  7175. "conflict": {
  7176. "symfony/dependency-injection": "<3.3",
  7177. "symfony/finder": "<3.3"
  7178. },
  7179. "require-dev": {
  7180. "symfony/dependency-injection": "~3.3|~4.0",
  7181. "symfony/event-dispatcher": "~3.3|~4.0",
  7182. "symfony/finder": "~3.3|~4.0",
  7183. "symfony/yaml": "~3.0|~4.0"
  7184. },
  7185. "suggest": {
  7186. "symfony/yaml": "To use the yaml reference dumper"
  7187. },
  7188. "type": "library",
  7189. "extra": {
  7190. "branch-alias": {
  7191. "dev-master": "3.4-dev"
  7192. }
  7193. },
  7194. "autoload": {
  7195. "psr-4": {
  7196. "Symfony\\Component\\Config\\": ""
  7197. },
  7198. "exclude-from-classmap": [
  7199. "/Tests/"
  7200. ]
  7201. },
  7202. "notification-url": "https://packagist.org/downloads/",
  7203. "license": [
  7204. "MIT"
  7205. ],
  7206. "authors": [
  7207. {
  7208. "name": "Fabien Potencier",
  7209. "email": "fabien@symfony.com"
  7210. },
  7211. {
  7212. "name": "Symfony Community",
  7213. "homepage": "https://symfony.com/contributors"
  7214. }
  7215. ],
  7216. "description": "Symfony Config Component",
  7217. "homepage": "https://symfony.com",
  7218. "time": "2020-04-12T14:33:46+00:00"
  7219. },
  7220. {
  7221. "name": "symfony/console",
  7222. "version": "v3.4.35",
  7223. "source": {
  7224. "type": "git",
  7225. "url": "https://github.com/symfony/console.git",
  7226. "reference": "17b154f932c5874cdbda6d05796b6490eec9f9f7"
  7227. },
  7228. "dist": {
  7229. "type": "zip",
  7230. "url": "https://api.github.com/repos/symfony/console/zipball/17b154f932c5874cdbda6d05796b6490eec9f9f7",
  7231. "reference": "17b154f932c5874cdbda6d05796b6490eec9f9f7",
  7232. "shasum": ""
  7233. },
  7234. "require": {
  7235. "php": "^5.5.9|>=7.0.8",
  7236. "symfony/debug": "~2.8|~3.0|~4.0",
  7237. "symfony/polyfill-mbstring": "~1.0"
  7238. },
  7239. "conflict": {
  7240. "symfony/dependency-injection": "<3.4",
  7241. "symfony/process": "<3.3"
  7242. },
  7243. "provide": {
  7244. "psr/log-implementation": "1.0"
  7245. },
  7246. "require-dev": {
  7247. "psr/log": "~1.0",
  7248. "symfony/config": "~3.3|~4.0",
  7249. "symfony/dependency-injection": "~3.4|~4.0",
  7250. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  7251. "symfony/lock": "~3.4|~4.0",
  7252. "symfony/process": "~3.3|~4.0"
  7253. },
  7254. "suggest": {
  7255. "psr/log": "For using the console logger",
  7256. "symfony/event-dispatcher": "",
  7257. "symfony/lock": "",
  7258. "symfony/process": ""
  7259. },
  7260. "type": "library",
  7261. "extra": {
  7262. "branch-alias": {
  7263. "dev-master": "3.4-dev"
  7264. }
  7265. },
  7266. "autoload": {
  7267. "psr-4": {
  7268. "Symfony\\Component\\Console\\": ""
  7269. },
  7270. "exclude-from-classmap": [
  7271. "/Tests/"
  7272. ]
  7273. },
  7274. "notification-url": "https://packagist.org/downloads/",
  7275. "license": [
  7276. "MIT"
  7277. ],
  7278. "authors": [
  7279. {
  7280. "name": "Fabien Potencier",
  7281. "email": "fabien@symfony.com"
  7282. },
  7283. {
  7284. "name": "Symfony Community",
  7285. "homepage": "https://symfony.com/contributors"
  7286. }
  7287. ],
  7288. "description": "Symfony Console Component",
  7289. "homepage": "https://symfony.com",
  7290. "time": "2019-11-13T07:12:39+00:00"
  7291. },
  7292. {
  7293. "name": "symfony/css-selector",
  7294. "version": "v3.4.40",
  7295. "source": {
  7296. "type": "git",
  7297. "url": "https://github.com/symfony/css-selector.git",
  7298. "reference": "9ccf6e78077a3fc1596e6c7b5958008965a11518"
  7299. },
  7300. "dist": {
  7301. "type": "zip",
  7302. "url": "https://api.github.com/repos/symfony/css-selector/zipball/9ccf6e78077a3fc1596e6c7b5958008965a11518",
  7303. "reference": "9ccf6e78077a3fc1596e6c7b5958008965a11518",
  7304. "shasum": ""
  7305. },
  7306. "require": {
  7307. "php": "^5.5.9|>=7.0.8"
  7308. },
  7309. "type": "library",
  7310. "extra": {
  7311. "branch-alias": {
  7312. "dev-master": "3.4-dev"
  7313. }
  7314. },
  7315. "autoload": {
  7316. "psr-4": {
  7317. "Symfony\\Component\\CssSelector\\": ""
  7318. },
  7319. "exclude-from-classmap": [
  7320. "/Tests/"
  7321. ]
  7322. },
  7323. "notification-url": "https://packagist.org/downloads/",
  7324. "license": [
  7325. "MIT"
  7326. ],
  7327. "authors": [
  7328. {
  7329. "name": "Fabien Potencier",
  7330. "email": "fabien@symfony.com"
  7331. },
  7332. {
  7333. "name": "Jean-François Simon",
  7334. "email": "jeanfrancois.simon@sensiolabs.com"
  7335. },
  7336. {
  7337. "name": "Symfony Community",
  7338. "homepage": "https://symfony.com/contributors"
  7339. }
  7340. ],
  7341. "description": "Symfony CssSelector Component",
  7342. "homepage": "https://symfony.com",
  7343. "time": "2020-03-16T08:31:04+00:00"
  7344. },
  7345. {
  7346. "name": "symfony/debug",
  7347. "version": "v3.4.35",
  7348. "source": {
  7349. "type": "git",
  7350. "url": "https://github.com/symfony/debug.git",
  7351. "reference": "f72e33fdb1170b326e72c3157f0cd456351dd086"
  7352. },
  7353. "dist": {
  7354. "type": "zip",
  7355. "url": "https://api.github.com/repos/symfony/debug/zipball/f72e33fdb1170b326e72c3157f0cd456351dd086",
  7356. "reference": "f72e33fdb1170b326e72c3157f0cd456351dd086",
  7357. "shasum": ""
  7358. },
  7359. "require": {
  7360. "php": "^5.5.9|>=7.0.8",
  7361. "psr/log": "~1.0"
  7362. },
  7363. "conflict": {
  7364. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  7365. },
  7366. "require-dev": {
  7367. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  7368. },
  7369. "type": "library",
  7370. "extra": {
  7371. "branch-alias": {
  7372. "dev-master": "3.4-dev"
  7373. }
  7374. },
  7375. "autoload": {
  7376. "psr-4": {
  7377. "Symfony\\Component\\Debug\\": ""
  7378. },
  7379. "exclude-from-classmap": [
  7380. "/Tests/"
  7381. ]
  7382. },
  7383. "notification-url": "https://packagist.org/downloads/",
  7384. "license": [
  7385. "MIT"
  7386. ],
  7387. "authors": [
  7388. {
  7389. "name": "Fabien Potencier",
  7390. "email": "fabien@symfony.com"
  7391. },
  7392. {
  7393. "name": "Symfony Community",
  7394. "homepage": "https://symfony.com/contributors"
  7395. }
  7396. ],
  7397. "description": "Symfony Debug Component",
  7398. "homepage": "https://symfony.com",
  7399. "time": "2019-10-24T15:33:53+00:00"
  7400. },
  7401. {
  7402. "name": "symfony/dependency-injection",
  7403. "version": "v3.4.35",
  7404. "source": {
  7405. "type": "git",
  7406. "url": "https://github.com/symfony/dependency-injection.git",
  7407. "reference": "0ea4d39ca82409a25a43b61ce828048a90000920"
  7408. },
  7409. "dist": {
  7410. "type": "zip",
  7411. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/0ea4d39ca82409a25a43b61ce828048a90000920",
  7412. "reference": "0ea4d39ca82409a25a43b61ce828048a90000920",
  7413. "shasum": ""
  7414. },
  7415. "require": {
  7416. "php": "^5.5.9|>=7.0.8",
  7417. "psr/container": "^1.0"
  7418. },
  7419. "conflict": {
  7420. "symfony/config": "<3.3.7",
  7421. "symfony/finder": "<3.3",
  7422. "symfony/proxy-manager-bridge": "<3.4",
  7423. "symfony/yaml": "<3.4"
  7424. },
  7425. "provide": {
  7426. "psr/container-implementation": "1.0"
  7427. },
  7428. "require-dev": {
  7429. "symfony/config": "~3.3|~4.0",
  7430. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7431. "symfony/yaml": "~3.4|~4.0"
  7432. },
  7433. "suggest": {
  7434. "symfony/config": "",
  7435. "symfony/expression-language": "For using expressions in service container configuration",
  7436. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  7437. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  7438. "symfony/yaml": ""
  7439. },
  7440. "type": "library",
  7441. "extra": {
  7442. "branch-alias": {
  7443. "dev-master": "3.4-dev"
  7444. }
  7445. },
  7446. "autoload": {
  7447. "psr-4": {
  7448. "Symfony\\Component\\DependencyInjection\\": ""
  7449. },
  7450. "exclude-from-classmap": [
  7451. "/Tests/"
  7452. ]
  7453. },
  7454. "notification-url": "https://packagist.org/downloads/",
  7455. "license": [
  7456. "MIT"
  7457. ],
  7458. "authors": [
  7459. {
  7460. "name": "Fabien Potencier",
  7461. "email": "fabien@symfony.com"
  7462. },
  7463. {
  7464. "name": "Symfony Community",
  7465. "homepage": "https://symfony.com/contributors"
  7466. }
  7467. ],
  7468. "description": "Symfony DependencyInjection Component",
  7469. "homepage": "https://symfony.com",
  7470. "time": "2019-11-08T16:18:30+00:00"
  7471. },
  7472. {
  7473. "name": "symfony/dom-crawler",
  7474. "version": "v3.4.40",
  7475. "source": {
  7476. "type": "git",
  7477. "url": "https://github.com/symfony/dom-crawler.git",
  7478. "reference": "ceacdab4abf7695ef6bec77c8b7983e1544c6358"
  7479. },
  7480. "dist": {
  7481. "type": "zip",
  7482. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/ceacdab4abf7695ef6bec77c8b7983e1544c6358",
  7483. "reference": "ceacdab4abf7695ef6bec77c8b7983e1544c6358",
  7484. "shasum": ""
  7485. },
  7486. "require": {
  7487. "php": "^5.5.9|>=7.0.8",
  7488. "symfony/polyfill-ctype": "~1.8",
  7489. "symfony/polyfill-mbstring": "~1.0"
  7490. },
  7491. "require-dev": {
  7492. "symfony/css-selector": "~2.8|~3.0|~4.0"
  7493. },
  7494. "suggest": {
  7495. "symfony/css-selector": ""
  7496. },
  7497. "type": "library",
  7498. "extra": {
  7499. "branch-alias": {
  7500. "dev-master": "3.4-dev"
  7501. }
  7502. },
  7503. "autoload": {
  7504. "psr-4": {
  7505. "Symfony\\Component\\DomCrawler\\": ""
  7506. },
  7507. "exclude-from-classmap": [
  7508. "/Tests/"
  7509. ]
  7510. },
  7511. "notification-url": "https://packagist.org/downloads/",
  7512. "license": [
  7513. "MIT"
  7514. ],
  7515. "authors": [
  7516. {
  7517. "name": "Fabien Potencier",
  7518. "email": "fabien@symfony.com"
  7519. },
  7520. {
  7521. "name": "Symfony Community",
  7522. "homepage": "https://symfony.com/contributors"
  7523. }
  7524. ],
  7525. "description": "Symfony DomCrawler Component",
  7526. "homepage": "https://symfony.com",
  7527. "time": "2020-03-16T08:31:04+00:00"
  7528. },
  7529. {
  7530. "name": "symfony/event-dispatcher",
  7531. "version": "v3.4.35",
  7532. "source": {
  7533. "type": "git",
  7534. "url": "https://github.com/symfony/event-dispatcher.git",
  7535. "reference": "f9031c22ec127d4a2450760f81a8677fe8a10177"
  7536. },
  7537. "dist": {
  7538. "type": "zip",
  7539. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f9031c22ec127d4a2450760f81a8677fe8a10177",
  7540. "reference": "f9031c22ec127d4a2450760f81a8677fe8a10177",
  7541. "shasum": ""
  7542. },
  7543. "require": {
  7544. "php": "^5.5.9|>=7.0.8"
  7545. },
  7546. "conflict": {
  7547. "symfony/dependency-injection": "<3.3"
  7548. },
  7549. "require-dev": {
  7550. "psr/log": "~1.0",
  7551. "symfony/config": "~2.8|~3.0|~4.0",
  7552. "symfony/dependency-injection": "~3.3|~4.0",
  7553. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7554. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  7555. },
  7556. "suggest": {
  7557. "symfony/dependency-injection": "",
  7558. "symfony/http-kernel": ""
  7559. },
  7560. "type": "library",
  7561. "extra": {
  7562. "branch-alias": {
  7563. "dev-master": "3.4-dev"
  7564. }
  7565. },
  7566. "autoload": {
  7567. "psr-4": {
  7568. "Symfony\\Component\\EventDispatcher\\": ""
  7569. },
  7570. "exclude-from-classmap": [
  7571. "/Tests/"
  7572. ]
  7573. },
  7574. "notification-url": "https://packagist.org/downloads/",
  7575. "license": [
  7576. "MIT"
  7577. ],
  7578. "authors": [
  7579. {
  7580. "name": "Fabien Potencier",
  7581. "email": "fabien@symfony.com"
  7582. },
  7583. {
  7584. "name": "Symfony Community",
  7585. "homepage": "https://symfony.com/contributors"
  7586. }
  7587. ],
  7588. "description": "Symfony EventDispatcher Component",
  7589. "homepage": "https://symfony.com",
  7590. "time": "2019-10-24T15:33:53+00:00"
  7591. },
  7592. {
  7593. "name": "symfony/filesystem",
  7594. "version": "v3.4.40",
  7595. "source": {
  7596. "type": "git",
  7597. "url": "https://github.com/symfony/filesystem.git",
  7598. "reference": "78a93e5606a19d0fb490afc3c4a9b7ecd86e1515"
  7599. },
  7600. "dist": {
  7601. "type": "zip",
  7602. "url": "https://api.github.com/repos/symfony/filesystem/zipball/78a93e5606a19d0fb490afc3c4a9b7ecd86e1515",
  7603. "reference": "78a93e5606a19d0fb490afc3c4a9b7ecd86e1515",
  7604. "shasum": ""
  7605. },
  7606. "require": {
  7607. "php": "^5.5.9|>=7.0.8",
  7608. "symfony/polyfill-ctype": "~1.8"
  7609. },
  7610. "type": "library",
  7611. "extra": {
  7612. "branch-alias": {
  7613. "dev-master": "3.4-dev"
  7614. }
  7615. },
  7616. "autoload": {
  7617. "psr-4": {
  7618. "Symfony\\Component\\Filesystem\\": ""
  7619. },
  7620. "exclude-from-classmap": [
  7621. "/Tests/"
  7622. ]
  7623. },
  7624. "notification-url": "https://packagist.org/downloads/",
  7625. "license": [
  7626. "MIT"
  7627. ],
  7628. "authors": [
  7629. {
  7630. "name": "Fabien Potencier",
  7631. "email": "fabien@symfony.com"
  7632. },
  7633. {
  7634. "name": "Symfony Community",
  7635. "homepage": "https://symfony.com/contributors"
  7636. }
  7637. ],
  7638. "description": "Symfony Filesystem Component",
  7639. "homepage": "https://symfony.com",
  7640. "time": "2020-04-12T16:54:01+00:00"
  7641. },
  7642. {
  7643. "name": "symfony/finder",
  7644. "version": "v3.4.40",
  7645. "source": {
  7646. "type": "git",
  7647. "url": "https://github.com/symfony/finder.git",
  7648. "reference": "5ec813ccafa8164ef21757e8c725d3a57da59200"
  7649. },
  7650. "dist": {
  7651. "type": "zip",
  7652. "url": "https://api.github.com/repos/symfony/finder/zipball/5ec813ccafa8164ef21757e8c725d3a57da59200",
  7653. "reference": "5ec813ccafa8164ef21757e8c725d3a57da59200",
  7654. "shasum": ""
  7655. },
  7656. "require": {
  7657. "php": "^5.5.9|>=7.0.8"
  7658. },
  7659. "type": "library",
  7660. "extra": {
  7661. "branch-alias": {
  7662. "dev-master": "3.4-dev"
  7663. }
  7664. },
  7665. "autoload": {
  7666. "psr-4": {
  7667. "Symfony\\Component\\Finder\\": ""
  7668. },
  7669. "exclude-from-classmap": [
  7670. "/Tests/"
  7671. ]
  7672. },
  7673. "notification-url": "https://packagist.org/downloads/",
  7674. "license": [
  7675. "MIT"
  7676. ],
  7677. "authors": [
  7678. {
  7679. "name": "Fabien Potencier",
  7680. "email": "fabien@symfony.com"
  7681. },
  7682. {
  7683. "name": "Symfony Community",
  7684. "homepage": "https://symfony.com/contributors"
  7685. }
  7686. ],
  7687. "description": "Symfony Finder Component",
  7688. "homepage": "https://symfony.com",
  7689. "time": "2020-02-14T07:34:21+00:00"
  7690. },
  7691. {
  7692. "name": "symfony/http-foundation",
  7693. "version": "v3.4.35",
  7694. "source": {
  7695. "type": "git",
  7696. "url": "https://github.com/symfony/http-foundation.git",
  7697. "reference": "9e4b3ac8fa3348b4811674d23de32d201de225ce"
  7698. },
  7699. "dist": {
  7700. "type": "zip",
  7701. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/9e4b3ac8fa3348b4811674d23de32d201de225ce",
  7702. "reference": "9e4b3ac8fa3348b4811674d23de32d201de225ce",
  7703. "shasum": ""
  7704. },
  7705. "require": {
  7706. "php": "^5.5.9|>=7.0.8",
  7707. "symfony/polyfill-mbstring": "~1.1",
  7708. "symfony/polyfill-php70": "~1.6"
  7709. },
  7710. "require-dev": {
  7711. "symfony/expression-language": "~2.8|~3.0|~4.0"
  7712. },
  7713. "type": "library",
  7714. "extra": {
  7715. "branch-alias": {
  7716. "dev-master": "3.4-dev"
  7717. }
  7718. },
  7719. "autoload": {
  7720. "psr-4": {
  7721. "Symfony\\Component\\HttpFoundation\\": ""
  7722. },
  7723. "exclude-from-classmap": [
  7724. "/Tests/"
  7725. ]
  7726. },
  7727. "notification-url": "https://packagist.org/downloads/",
  7728. "license": [
  7729. "MIT"
  7730. ],
  7731. "authors": [
  7732. {
  7733. "name": "Fabien Potencier",
  7734. "email": "fabien@symfony.com"
  7735. },
  7736. {
  7737. "name": "Symfony Community",
  7738. "homepage": "https://symfony.com/contributors"
  7739. }
  7740. ],
  7741. "description": "Symfony HttpFoundation Component",
  7742. "homepage": "https://symfony.com",
  7743. "time": "2019-11-11T12:53:10+00:00"
  7744. },
  7745. {
  7746. "name": "symfony/http-kernel",
  7747. "version": "v3.4.35",
  7748. "source": {
  7749. "type": "git",
  7750. "url": "https://github.com/symfony/http-kernel.git",
  7751. "reference": "e1764b3de00ec5636dd03d02fd44bcb1147d70d9"
  7752. },
  7753. "dist": {
  7754. "type": "zip",
  7755. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/e1764b3de00ec5636dd03d02fd44bcb1147d70d9",
  7756. "reference": "e1764b3de00ec5636dd03d02fd44bcb1147d70d9",
  7757. "shasum": ""
  7758. },
  7759. "require": {
  7760. "php": "^5.5.9|>=7.0.8",
  7761. "psr/log": "~1.0",
  7762. "symfony/debug": "^3.3.3|~4.0",
  7763. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  7764. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  7765. "symfony/polyfill-ctype": "~1.8",
  7766. "symfony/polyfill-php56": "~1.8"
  7767. },
  7768. "conflict": {
  7769. "symfony/config": "<2.8",
  7770. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  7771. "symfony/var-dumper": "<3.3",
  7772. "twig/twig": "<1.34|<2.4,>=2"
  7773. },
  7774. "provide": {
  7775. "psr/log-implementation": "1.0"
  7776. },
  7777. "require-dev": {
  7778. "psr/cache": "~1.0",
  7779. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  7780. "symfony/class-loader": "~2.8|~3.0",
  7781. "symfony/config": "~2.8|~3.0|~4.0",
  7782. "symfony/console": "~2.8|~3.0|~4.0",
  7783. "symfony/css-selector": "~2.8|~3.0|~4.0",
  7784. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  7785. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  7786. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7787. "symfony/finder": "~2.8|~3.0|~4.0",
  7788. "symfony/process": "~2.8|~3.0|~4.0",
  7789. "symfony/routing": "~3.4|~4.0",
  7790. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  7791. "symfony/templating": "~2.8|~3.0|~4.0",
  7792. "symfony/translation": "~2.8|~3.0|~4.0",
  7793. "symfony/var-dumper": "~3.3|~4.0"
  7794. },
  7795. "suggest": {
  7796. "symfony/browser-kit": "",
  7797. "symfony/config": "",
  7798. "symfony/console": "",
  7799. "symfony/dependency-injection": "",
  7800. "symfony/finder": "",
  7801. "symfony/var-dumper": ""
  7802. },
  7803. "type": "library",
  7804. "extra": {
  7805. "branch-alias": {
  7806. "dev-master": "3.4-dev"
  7807. }
  7808. },
  7809. "autoload": {
  7810. "psr-4": {
  7811. "Symfony\\Component\\HttpKernel\\": ""
  7812. },
  7813. "exclude-from-classmap": [
  7814. "/Tests/"
  7815. ]
  7816. },
  7817. "notification-url": "https://packagist.org/downloads/",
  7818. "license": [
  7819. "MIT"
  7820. ],
  7821. "authors": [
  7822. {
  7823. "name": "Fabien Potencier",
  7824. "email": "fabien@symfony.com"
  7825. },
  7826. {
  7827. "name": "Symfony Community",
  7828. "homepage": "https://symfony.com/contributors"
  7829. }
  7830. ],
  7831. "description": "Symfony HttpKernel Component",
  7832. "homepage": "https://symfony.com",
  7833. "time": "2019-11-13T08:44:50+00:00"
  7834. },
  7835. {
  7836. "name": "symfony/polyfill-ctype",
  7837. "version": "v1.12.0",
  7838. "source": {
  7839. "type": "git",
  7840. "url": "https://github.com/symfony/polyfill-ctype.git",
  7841. "reference": "550ebaac289296ce228a706d0867afc34687e3f4"
  7842. },
  7843. "dist": {
  7844. "type": "zip",
  7845. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/550ebaac289296ce228a706d0867afc34687e3f4",
  7846. "reference": "550ebaac289296ce228a706d0867afc34687e3f4",
  7847. "shasum": ""
  7848. },
  7849. "require": {
  7850. "php": ">=5.3.3"
  7851. },
  7852. "suggest": {
  7853. "ext-ctype": "For best performance"
  7854. },
  7855. "type": "library",
  7856. "extra": {
  7857. "branch-alias": {
  7858. "dev-master": "1.12-dev"
  7859. }
  7860. },
  7861. "autoload": {
  7862. "psr-4": {
  7863. "Symfony\\Polyfill\\Ctype\\": ""
  7864. },
  7865. "files": [
  7866. "bootstrap.php"
  7867. ]
  7868. },
  7869. "notification-url": "https://packagist.org/downloads/",
  7870. "license": [
  7871. "MIT"
  7872. ],
  7873. "authors": [
  7874. {
  7875. "name": "Gert de Pagter",
  7876. "email": "BackEndTea@gmail.com"
  7877. },
  7878. {
  7879. "name": "Symfony Community",
  7880. "homepage": "https://symfony.com/contributors"
  7881. }
  7882. ],
  7883. "description": "Symfony polyfill for ctype functions",
  7884. "homepage": "https://symfony.com",
  7885. "keywords": [
  7886. "compatibility",
  7887. "ctype",
  7888. "polyfill",
  7889. "portable"
  7890. ],
  7891. "time": "2019-08-06T08:03:45+00:00"
  7892. },
  7893. {
  7894. "name": "symfony/polyfill-iconv",
  7895. "version": "v1.12.0",
  7896. "source": {
  7897. "type": "git",
  7898. "url": "https://github.com/symfony/polyfill-iconv.git",
  7899. "reference": "685968b11e61a347c18bf25db32effa478be610f"
  7900. },
  7901. "dist": {
  7902. "type": "zip",
  7903. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/685968b11e61a347c18bf25db32effa478be610f",
  7904. "reference": "685968b11e61a347c18bf25db32effa478be610f",
  7905. "shasum": ""
  7906. },
  7907. "require": {
  7908. "php": ">=5.3.3"
  7909. },
  7910. "suggest": {
  7911. "ext-iconv": "For best performance"
  7912. },
  7913. "type": "library",
  7914. "extra": {
  7915. "branch-alias": {
  7916. "dev-master": "1.12-dev"
  7917. }
  7918. },
  7919. "autoload": {
  7920. "psr-4": {
  7921. "Symfony\\Polyfill\\Iconv\\": ""
  7922. },
  7923. "files": [
  7924. "bootstrap.php"
  7925. ]
  7926. },
  7927. "notification-url": "https://packagist.org/downloads/",
  7928. "license": [
  7929. "MIT"
  7930. ],
  7931. "authors": [
  7932. {
  7933. "name": "Nicolas Grekas",
  7934. "email": "p@tchwork.com"
  7935. },
  7936. {
  7937. "name": "Symfony Community",
  7938. "homepage": "https://symfony.com/contributors"
  7939. }
  7940. ],
  7941. "description": "Symfony polyfill for the Iconv extension",
  7942. "homepage": "https://symfony.com",
  7943. "keywords": [
  7944. "compatibility",
  7945. "iconv",
  7946. "polyfill",
  7947. "portable",
  7948. "shim"
  7949. ],
  7950. "time": "2019-08-06T08:03:45+00:00"
  7951. },
  7952. {
  7953. "name": "symfony/polyfill-mbstring",
  7954. "version": "v1.12.0",
  7955. "source": {
  7956. "type": "git",
  7957. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7958. "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17"
  7959. },
  7960. "dist": {
  7961. "type": "zip",
  7962. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/b42a2f66e8f1b15ccf25652c3424265923eb4f17",
  7963. "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17",
  7964. "shasum": ""
  7965. },
  7966. "require": {
  7967. "php": ">=5.3.3"
  7968. },
  7969. "suggest": {
  7970. "ext-mbstring": "For best performance"
  7971. },
  7972. "type": "library",
  7973. "extra": {
  7974. "branch-alias": {
  7975. "dev-master": "1.12-dev"
  7976. }
  7977. },
  7978. "autoload": {
  7979. "psr-4": {
  7980. "Symfony\\Polyfill\\Mbstring\\": ""
  7981. },
  7982. "files": [
  7983. "bootstrap.php"
  7984. ]
  7985. },
  7986. "notification-url": "https://packagist.org/downloads/",
  7987. "license": [
  7988. "MIT"
  7989. ],
  7990. "authors": [
  7991. {
  7992. "name": "Nicolas Grekas",
  7993. "email": "p@tchwork.com"
  7994. },
  7995. {
  7996. "name": "Symfony Community",
  7997. "homepage": "https://symfony.com/contributors"
  7998. }
  7999. ],
  8000. "description": "Symfony polyfill for the Mbstring extension",
  8001. "homepage": "https://symfony.com",
  8002. "keywords": [
  8003. "compatibility",
  8004. "mbstring",
  8005. "polyfill",
  8006. "portable",
  8007. "shim"
  8008. ],
  8009. "time": "2019-08-06T08:03:45+00:00"
  8010. },
  8011. {
  8012. "name": "symfony/polyfill-php56",
  8013. "version": "v1.12.0",
  8014. "source": {
  8015. "type": "git",
  8016. "url": "https://github.com/symfony/polyfill-php56.git",
  8017. "reference": "0e3b212e96a51338639d8ce175c046d7729c3403"
  8018. },
  8019. "dist": {
  8020. "type": "zip",
  8021. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/0e3b212e96a51338639d8ce175c046d7729c3403",
  8022. "reference": "0e3b212e96a51338639d8ce175c046d7729c3403",
  8023. "shasum": ""
  8024. },
  8025. "require": {
  8026. "php": ">=5.3.3",
  8027. "symfony/polyfill-util": "~1.0"
  8028. },
  8029. "type": "library",
  8030. "extra": {
  8031. "branch-alias": {
  8032. "dev-master": "1.12-dev"
  8033. }
  8034. },
  8035. "autoload": {
  8036. "psr-4": {
  8037. "Symfony\\Polyfill\\Php56\\": ""
  8038. },
  8039. "files": [
  8040. "bootstrap.php"
  8041. ]
  8042. },
  8043. "notification-url": "https://packagist.org/downloads/",
  8044. "license": [
  8045. "MIT"
  8046. ],
  8047. "authors": [
  8048. {
  8049. "name": "Nicolas Grekas",
  8050. "email": "p@tchwork.com"
  8051. },
  8052. {
  8053. "name": "Symfony Community",
  8054. "homepage": "https://symfony.com/contributors"
  8055. }
  8056. ],
  8057. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  8058. "homepage": "https://symfony.com",
  8059. "keywords": [
  8060. "compatibility",
  8061. "polyfill",
  8062. "portable",
  8063. "shim"
  8064. ],
  8065. "time": "2019-08-06T08:03:45+00:00"
  8066. },
  8067. {
  8068. "name": "symfony/polyfill-php70",
  8069. "version": "v1.12.0",
  8070. "source": {
  8071. "type": "git",
  8072. "url": "https://github.com/symfony/polyfill-php70.git",
  8073. "reference": "54b4c428a0054e254223797d2713c31e08610831"
  8074. },
  8075. "dist": {
  8076. "type": "zip",
  8077. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/54b4c428a0054e254223797d2713c31e08610831",
  8078. "reference": "54b4c428a0054e254223797d2713c31e08610831",
  8079. "shasum": ""
  8080. },
  8081. "require": {
  8082. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  8083. "php": ">=5.3.3"
  8084. },
  8085. "type": "library",
  8086. "extra": {
  8087. "branch-alias": {
  8088. "dev-master": "1.12-dev"
  8089. }
  8090. },
  8091. "autoload": {
  8092. "psr-4": {
  8093. "Symfony\\Polyfill\\Php70\\": ""
  8094. },
  8095. "files": [
  8096. "bootstrap.php"
  8097. ],
  8098. "classmap": [
  8099. "Resources/stubs"
  8100. ]
  8101. },
  8102. "notification-url": "https://packagist.org/downloads/",
  8103. "license": [
  8104. "MIT"
  8105. ],
  8106. "authors": [
  8107. {
  8108. "name": "Nicolas Grekas",
  8109. "email": "p@tchwork.com"
  8110. },
  8111. {
  8112. "name": "Symfony Community",
  8113. "homepage": "https://symfony.com/contributors"
  8114. }
  8115. ],
  8116. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  8117. "homepage": "https://symfony.com",
  8118. "keywords": [
  8119. "compatibility",
  8120. "polyfill",
  8121. "portable",
  8122. "shim"
  8123. ],
  8124. "time": "2019-08-06T08:03:45+00:00"
  8125. },
  8126. {
  8127. "name": "symfony/polyfill-util",
  8128. "version": "v1.12.0",
  8129. "source": {
  8130. "type": "git",
  8131. "url": "https://github.com/symfony/polyfill-util.git",
  8132. "reference": "4317de1386717b4c22caed7725350a8887ab205c"
  8133. },
  8134. "dist": {
  8135. "type": "zip",
  8136. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4317de1386717b4c22caed7725350a8887ab205c",
  8137. "reference": "4317de1386717b4c22caed7725350a8887ab205c",
  8138. "shasum": ""
  8139. },
  8140. "require": {
  8141. "php": ">=5.3.3"
  8142. },
  8143. "type": "library",
  8144. "extra": {
  8145. "branch-alias": {
  8146. "dev-master": "1.12-dev"
  8147. }
  8148. },
  8149. "autoload": {
  8150. "psr-4": {
  8151. "Symfony\\Polyfill\\Util\\": ""
  8152. }
  8153. },
  8154. "notification-url": "https://packagist.org/downloads/",
  8155. "license": [
  8156. "MIT"
  8157. ],
  8158. "authors": [
  8159. {
  8160. "name": "Nicolas Grekas",
  8161. "email": "p@tchwork.com"
  8162. },
  8163. {
  8164. "name": "Symfony Community",
  8165. "homepage": "https://symfony.com/contributors"
  8166. }
  8167. ],
  8168. "description": "Symfony utilities for portability of PHP codes",
  8169. "homepage": "https://symfony.com",
  8170. "keywords": [
  8171. "compat",
  8172. "compatibility",
  8173. "polyfill",
  8174. "shim"
  8175. ],
  8176. "time": "2019-08-06T08:03:45+00:00"
  8177. },
  8178. {
  8179. "name": "symfony/process",
  8180. "version": "v3.4.35",
  8181. "source": {
  8182. "type": "git",
  8183. "url": "https://github.com/symfony/process.git",
  8184. "reference": "c19da50bc3e8fa7d60628fdb4ab5d67de534cf3e"
  8185. },
  8186. "dist": {
  8187. "type": "zip",
  8188. "url": "https://api.github.com/repos/symfony/process/zipball/c19da50bc3e8fa7d60628fdb4ab5d67de534cf3e",
  8189. "reference": "c19da50bc3e8fa7d60628fdb4ab5d67de534cf3e",
  8190. "shasum": ""
  8191. },
  8192. "require": {
  8193. "php": "^5.5.9|>=7.0.8"
  8194. },
  8195. "type": "library",
  8196. "extra": {
  8197. "branch-alias": {
  8198. "dev-master": "3.4-dev"
  8199. }
  8200. },
  8201. "autoload": {
  8202. "psr-4": {
  8203. "Symfony\\Component\\Process\\": ""
  8204. },
  8205. "exclude-from-classmap": [
  8206. "/Tests/"
  8207. ]
  8208. },
  8209. "notification-url": "https://packagist.org/downloads/",
  8210. "license": [
  8211. "MIT"
  8212. ],
  8213. "authors": [
  8214. {
  8215. "name": "Fabien Potencier",
  8216. "email": "fabien@symfony.com"
  8217. },
  8218. {
  8219. "name": "Symfony Community",
  8220. "homepage": "https://symfony.com/contributors"
  8221. }
  8222. ],
  8223. "description": "Symfony Process Component",
  8224. "homepage": "https://symfony.com",
  8225. "time": "2019-10-24T15:33:53+00:00"
  8226. },
  8227. {
  8228. "name": "symfony/psr-http-message-bridge",
  8229. "version": "v1.1.2",
  8230. "source": {
  8231. "type": "git",
  8232. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  8233. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b"
  8234. },
  8235. "dist": {
  8236. "type": "zip",
  8237. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b",
  8238. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b",
  8239. "shasum": ""
  8240. },
  8241. "require": {
  8242. "php": "^5.3.3 || ^7.0",
  8243. "psr/http-message": "^1.0",
  8244. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  8245. },
  8246. "require-dev": {
  8247. "symfony/phpunit-bridge": "^3.4 || ^4.0"
  8248. },
  8249. "suggest": {
  8250. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  8251. },
  8252. "type": "symfony-bridge",
  8253. "extra": {
  8254. "branch-alias": {
  8255. "dev-master": "1.1-dev"
  8256. }
  8257. },
  8258. "autoload": {
  8259. "psr-4": {
  8260. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  8261. },
  8262. "exclude-from-classmap": [
  8263. "/Tests/"
  8264. ]
  8265. },
  8266. "notification-url": "https://packagist.org/downloads/",
  8267. "license": [
  8268. "MIT"
  8269. ],
  8270. "authors": [
  8271. {
  8272. "name": "Symfony Community",
  8273. "homepage": "http://symfony.com/contributors"
  8274. },
  8275. {
  8276. "name": "Fabien Potencier",
  8277. "email": "fabien@symfony.com"
  8278. }
  8279. ],
  8280. "description": "PSR HTTP message bridge",
  8281. "homepage": "http://symfony.com",
  8282. "keywords": [
  8283. "http",
  8284. "http-message",
  8285. "psr-17",
  8286. "psr-7"
  8287. ],
  8288. "time": "2019-04-03T17:09:40+00:00"
  8289. },
  8290. {
  8291. "name": "symfony/routing",
  8292. "version": "v3.4.35",
  8293. "source": {
  8294. "type": "git",
  8295. "url": "https://github.com/symfony/routing.git",
  8296. "reference": "afc10b9c6b5196e0fecbc3bd373c7b4482e5b6b5"
  8297. },
  8298. "dist": {
  8299. "type": "zip",
  8300. "url": "https://api.github.com/repos/symfony/routing/zipball/afc10b9c6b5196e0fecbc3bd373c7b4482e5b6b5",
  8301. "reference": "afc10b9c6b5196e0fecbc3bd373c7b4482e5b6b5",
  8302. "shasum": ""
  8303. },
  8304. "require": {
  8305. "php": "^5.5.9|>=7.0.8"
  8306. },
  8307. "conflict": {
  8308. "symfony/config": "<3.3.1",
  8309. "symfony/dependency-injection": "<3.3",
  8310. "symfony/yaml": "<3.4"
  8311. },
  8312. "require-dev": {
  8313. "doctrine/annotations": "~1.0",
  8314. "psr/log": "~1.0",
  8315. "symfony/config": "^3.3.1|~4.0",
  8316. "symfony/dependency-injection": "~3.3|~4.0",
  8317. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8318. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8319. "symfony/yaml": "~3.4|~4.0"
  8320. },
  8321. "suggest": {
  8322. "doctrine/annotations": "For using the annotation loader",
  8323. "symfony/config": "For using the all-in-one router or any loader",
  8324. "symfony/expression-language": "For using expression matching",
  8325. "symfony/http-foundation": "For using a Symfony Request object",
  8326. "symfony/yaml": "For using the YAML loader"
  8327. },
  8328. "type": "library",
  8329. "extra": {
  8330. "branch-alias": {
  8331. "dev-master": "3.4-dev"
  8332. }
  8333. },
  8334. "autoload": {
  8335. "psr-4": {
  8336. "Symfony\\Component\\Routing\\": ""
  8337. },
  8338. "exclude-from-classmap": [
  8339. "/Tests/"
  8340. ]
  8341. },
  8342. "notification-url": "https://packagist.org/downloads/",
  8343. "license": [
  8344. "MIT"
  8345. ],
  8346. "authors": [
  8347. {
  8348. "name": "Fabien Potencier",
  8349. "email": "fabien@symfony.com"
  8350. },
  8351. {
  8352. "name": "Symfony Community",
  8353. "homepage": "https://symfony.com/contributors"
  8354. }
  8355. ],
  8356. "description": "Symfony Routing Component",
  8357. "homepage": "https://symfony.com",
  8358. "keywords": [
  8359. "router",
  8360. "routing",
  8361. "uri",
  8362. "url"
  8363. ],
  8364. "time": "2019-11-08T17:25:00+00:00"
  8365. },
  8366. {
  8367. "name": "symfony/serializer",
  8368. "version": "v3.4.35",
  8369. "source": {
  8370. "type": "git",
  8371. "url": "https://github.com/symfony/serializer.git",
  8372. "reference": "9d14f7ff2c585a8a9f6f980253066285ddc2f675"
  8373. },
  8374. "dist": {
  8375. "type": "zip",
  8376. "url": "https://api.github.com/repos/symfony/serializer/zipball/9d14f7ff2c585a8a9f6f980253066285ddc2f675",
  8377. "reference": "9d14f7ff2c585a8a9f6f980253066285ddc2f675",
  8378. "shasum": ""
  8379. },
  8380. "require": {
  8381. "php": "^5.5.9|>=7.0.8",
  8382. "symfony/polyfill-ctype": "~1.8"
  8383. },
  8384. "conflict": {
  8385. "phpdocumentor/type-resolver": "<0.2.1",
  8386. "symfony/dependency-injection": "<3.2",
  8387. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  8388. "symfony/property-info": "<3.1",
  8389. "symfony/yaml": "<3.4"
  8390. },
  8391. "require-dev": {
  8392. "doctrine/annotations": "~1.0",
  8393. "doctrine/cache": "~1.0",
  8394. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  8395. "symfony/cache": "~3.1|~4.0",
  8396. "symfony/config": "~2.8|~3.0|~4.0",
  8397. "symfony/dependency-injection": "~3.2|~4.0",
  8398. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8399. "symfony/property-access": "~2.8|~3.0|~4.0",
  8400. "symfony/property-info": "^3.4.13|~4.0",
  8401. "symfony/yaml": "~3.4|~4.0"
  8402. },
  8403. "suggest": {
  8404. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  8405. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  8406. "psr/cache-implementation": "For using the metadata cache.",
  8407. "symfony/config": "For using the XML mapping loader.",
  8408. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  8409. "symfony/property-access": "For using the ObjectNormalizer.",
  8410. "symfony/property-info": "To deserialize relations.",
  8411. "symfony/yaml": "For using the default YAML mapping loader."
  8412. },
  8413. "type": "library",
  8414. "extra": {
  8415. "branch-alias": {
  8416. "dev-master": "3.4-dev"
  8417. }
  8418. },
  8419. "autoload": {
  8420. "psr-4": {
  8421. "Symfony\\Component\\Serializer\\": ""
  8422. },
  8423. "exclude-from-classmap": [
  8424. "/Tests/"
  8425. ]
  8426. },
  8427. "notification-url": "https://packagist.org/downloads/",
  8428. "license": [
  8429. "MIT"
  8430. ],
  8431. "authors": [
  8432. {
  8433. "name": "Fabien Potencier",
  8434. "email": "fabien@symfony.com"
  8435. },
  8436. {
  8437. "name": "Symfony Community",
  8438. "homepage": "https://symfony.com/contributors"
  8439. }
  8440. ],
  8441. "description": "Symfony Serializer Component",
  8442. "homepage": "https://symfony.com",
  8443. "time": "2019-11-12T17:51:12+00:00"
  8444. },
  8445. {
  8446. "name": "symfony/translation",
  8447. "version": "v3.4.35",
  8448. "source": {
  8449. "type": "git",
  8450. "url": "https://github.com/symfony/translation.git",
  8451. "reference": "2031c895bc97ac1787d418d90bd1ed7d299f2772"
  8452. },
  8453. "dist": {
  8454. "type": "zip",
  8455. "url": "https://api.github.com/repos/symfony/translation/zipball/2031c895bc97ac1787d418d90bd1ed7d299f2772",
  8456. "reference": "2031c895bc97ac1787d418d90bd1ed7d299f2772",
  8457. "shasum": ""
  8458. },
  8459. "require": {
  8460. "php": "^5.5.9|>=7.0.8",
  8461. "symfony/polyfill-mbstring": "~1.0"
  8462. },
  8463. "conflict": {
  8464. "symfony/config": "<2.8",
  8465. "symfony/dependency-injection": "<3.4",
  8466. "symfony/yaml": "<3.4"
  8467. },
  8468. "require-dev": {
  8469. "psr/log": "~1.0",
  8470. "symfony/config": "~2.8|~3.0|~4.0",
  8471. "symfony/dependency-injection": "~3.4|~4.0",
  8472. "symfony/finder": "~2.8|~3.0|~4.0",
  8473. "symfony/http-kernel": "~3.4|~4.0",
  8474. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  8475. "symfony/var-dumper": "~3.4|~4.0",
  8476. "symfony/yaml": "~3.4|~4.0"
  8477. },
  8478. "suggest": {
  8479. "psr/log-implementation": "To use logging capability in translator",
  8480. "symfony/config": "",
  8481. "symfony/yaml": ""
  8482. },
  8483. "type": "library",
  8484. "extra": {
  8485. "branch-alias": {
  8486. "dev-master": "3.4-dev"
  8487. }
  8488. },
  8489. "autoload": {
  8490. "psr-4": {
  8491. "Symfony\\Component\\Translation\\": ""
  8492. },
  8493. "exclude-from-classmap": [
  8494. "/Tests/"
  8495. ]
  8496. },
  8497. "notification-url": "https://packagist.org/downloads/",
  8498. "license": [
  8499. "MIT"
  8500. ],
  8501. "authors": [
  8502. {
  8503. "name": "Fabien Potencier",
  8504. "email": "fabien@symfony.com"
  8505. },
  8506. {
  8507. "name": "Symfony Community",
  8508. "homepage": "https://symfony.com/contributors"
  8509. }
  8510. ],
  8511. "description": "Symfony Translation Component",
  8512. "homepage": "https://symfony.com",
  8513. "time": "2019-10-30T12:43:22+00:00"
  8514. },
  8515. {
  8516. "name": "symfony/validator",
  8517. "version": "v3.4.35",
  8518. "source": {
  8519. "type": "git",
  8520. "url": "https://github.com/symfony/validator.git",
  8521. "reference": "b11f45742c5c9a228cedc46b70c6317780a1ac80"
  8522. },
  8523. "dist": {
  8524. "type": "zip",
  8525. "url": "https://api.github.com/repos/symfony/validator/zipball/b11f45742c5c9a228cedc46b70c6317780a1ac80",
  8526. "reference": "b11f45742c5c9a228cedc46b70c6317780a1ac80",
  8527. "shasum": ""
  8528. },
  8529. "require": {
  8530. "php": "^5.5.9|>=7.0.8",
  8531. "symfony/polyfill-ctype": "~1.8",
  8532. "symfony/polyfill-mbstring": "~1.0",
  8533. "symfony/translation": "~2.8|~3.0|~4.0"
  8534. },
  8535. "conflict": {
  8536. "doctrine/lexer": "<1.0.2",
  8537. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  8538. "symfony/dependency-injection": "<3.3",
  8539. "symfony/http-kernel": "<3.3.5",
  8540. "symfony/yaml": "<3.4"
  8541. },
  8542. "require-dev": {
  8543. "doctrine/annotations": "~1.7",
  8544. "doctrine/cache": "~1.0",
  8545. "egulias/email-validator": "^2.1.10",
  8546. "symfony/cache": "~3.1|~4.0",
  8547. "symfony/config": "~2.8|~3.0|~4.0",
  8548. "symfony/dependency-injection": "~3.3|~4.0",
  8549. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8550. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8551. "symfony/http-kernel": "^3.3.5|~4.0",
  8552. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  8553. "symfony/property-access": "~2.8|~3.0|~4.0",
  8554. "symfony/var-dumper": "~3.3|~4.0",
  8555. "symfony/yaml": "~3.4|~4.0"
  8556. },
  8557. "suggest": {
  8558. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  8559. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  8560. "egulias/email-validator": "Strict (RFC compliant) email validation",
  8561. "psr/cache-implementation": "For using the metadata cache.",
  8562. "symfony/config": "",
  8563. "symfony/expression-language": "For using the Expression validator",
  8564. "symfony/http-foundation": "",
  8565. "symfony/intl": "",
  8566. "symfony/property-access": "For accessing properties within comparison constraints",
  8567. "symfony/yaml": ""
  8568. },
  8569. "type": "library",
  8570. "extra": {
  8571. "branch-alias": {
  8572. "dev-master": "3.4-dev"
  8573. }
  8574. },
  8575. "autoload": {
  8576. "psr-4": {
  8577. "Symfony\\Component\\Validator\\": ""
  8578. },
  8579. "exclude-from-classmap": [
  8580. "/Tests/"
  8581. ]
  8582. },
  8583. "notification-url": "https://packagist.org/downloads/",
  8584. "license": [
  8585. "MIT"
  8586. ],
  8587. "authors": [
  8588. {
  8589. "name": "Fabien Potencier",
  8590. "email": "fabien@symfony.com"
  8591. },
  8592. {
  8593. "name": "Symfony Community",
  8594. "homepage": "https://symfony.com/contributors"
  8595. }
  8596. ],
  8597. "description": "Symfony Validator Component",
  8598. "homepage": "https://symfony.com",
  8599. "time": "2019-11-05T22:03:38+00:00"
  8600. },
  8601. {
  8602. "name": "symfony/var-dumper",
  8603. "version": "v3.4.40",
  8604. "source": {
  8605. "type": "git",
  8606. "url": "https://github.com/symfony/var-dumper.git",
  8607. "reference": "13c03169ae485fc7f1a5143256622ce1bd3c77eb"
  8608. },
  8609. "dist": {
  8610. "type": "zip",
  8611. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/13c03169ae485fc7f1a5143256622ce1bd3c77eb",
  8612. "reference": "13c03169ae485fc7f1a5143256622ce1bd3c77eb",
  8613. "shasum": ""
  8614. },
  8615. "require": {
  8616. "php": "^5.5.9|>=7.0.8",
  8617. "symfony/polyfill-mbstring": "~1.0"
  8618. },
  8619. "conflict": {
  8620. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  8621. },
  8622. "require-dev": {
  8623. "ext-iconv": "*",
  8624. "twig/twig": "~1.34|~2.4"
  8625. },
  8626. "suggest": {
  8627. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  8628. "ext-intl": "To show region name in time zone dump",
  8629. "ext-symfony_debug": ""
  8630. },
  8631. "type": "library",
  8632. "extra": {
  8633. "branch-alias": {
  8634. "dev-master": "3.4-dev"
  8635. }
  8636. },
  8637. "autoload": {
  8638. "files": [
  8639. "Resources/functions/dump.php"
  8640. ],
  8641. "psr-4": {
  8642. "Symfony\\Component\\VarDumper\\": ""
  8643. },
  8644. "exclude-from-classmap": [
  8645. "/Tests/"
  8646. ]
  8647. },
  8648. "notification-url": "https://packagist.org/downloads/",
  8649. "license": [
  8650. "MIT"
  8651. ],
  8652. "authors": [
  8653. {
  8654. "name": "Nicolas Grekas",
  8655. "email": "p@tchwork.com"
  8656. },
  8657. {
  8658. "name": "Symfony Community",
  8659. "homepage": "https://symfony.com/contributors"
  8660. }
  8661. ],
  8662. "description": "Symfony mechanism for exploring and dumping PHP variables",
  8663. "homepage": "https://symfony.com",
  8664. "keywords": [
  8665. "debug",
  8666. "dump"
  8667. ],
  8668. "time": "2020-03-17T22:27:36+00:00"
  8669. },
  8670. {
  8671. "name": "symfony/yaml",
  8672. "version": "v3.4.35",
  8673. "source": {
  8674. "type": "git",
  8675. "url": "https://github.com/symfony/yaml.git",
  8676. "reference": "dab657db15207879217fc81df4f875947bf68804"
  8677. },
  8678. "dist": {
  8679. "type": "zip",
  8680. "url": "https://api.github.com/repos/symfony/yaml/zipball/dab657db15207879217fc81df4f875947bf68804",
  8681. "reference": "dab657db15207879217fc81df4f875947bf68804",
  8682. "shasum": ""
  8683. },
  8684. "require": {
  8685. "php": "^5.5.9|>=7.0.8",
  8686. "symfony/polyfill-ctype": "~1.8"
  8687. },
  8688. "conflict": {
  8689. "symfony/console": "<3.4"
  8690. },
  8691. "require-dev": {
  8692. "symfony/console": "~3.4|~4.0"
  8693. },
  8694. "suggest": {
  8695. "symfony/console": "For validating YAML files using the lint command"
  8696. },
  8697. "type": "library",
  8698. "extra": {
  8699. "branch-alias": {
  8700. "dev-master": "3.4-dev"
  8701. }
  8702. },
  8703. "autoload": {
  8704. "psr-4": {
  8705. "Symfony\\Component\\Yaml\\": ""
  8706. },
  8707. "exclude-from-classmap": [
  8708. "/Tests/"
  8709. ]
  8710. },
  8711. "notification-url": "https://packagist.org/downloads/",
  8712. "license": [
  8713. "MIT"
  8714. ],
  8715. "authors": [
  8716. {
  8717. "name": "Fabien Potencier",
  8718. "email": "fabien@symfony.com"
  8719. },
  8720. {
  8721. "name": "Symfony Community",
  8722. "homepage": "https://symfony.com/contributors"
  8723. }
  8724. ],
  8725. "description": "Symfony Yaml Component",
  8726. "homepage": "https://symfony.com",
  8727. "time": "2019-10-24T15:33:53+00:00"
  8728. },
  8729. {
  8730. "name": "twig/twig",
  8731. "version": "v1.42.3",
  8732. "source": {
  8733. "type": "git",
  8734. "url": "https://github.com/twigphp/Twig.git",
  8735. "reference": "201baee843e0ffe8b0b956f336dd42b2a92fae4e"
  8736. },
  8737. "dist": {
  8738. "type": "zip",
  8739. "url": "https://api.github.com/repos/twigphp/Twig/zipball/201baee843e0ffe8b0b956f336dd42b2a92fae4e",
  8740. "reference": "201baee843e0ffe8b0b956f336dd42b2a92fae4e",
  8741. "shasum": ""
  8742. },
  8743. "require": {
  8744. "php": ">=5.5.0",
  8745. "symfony/polyfill-ctype": "^1.8"
  8746. },
  8747. "require-dev": {
  8748. "psr/container": "^1.0",
  8749. "symfony/debug": "^3.4|^4.2",
  8750. "symfony/phpunit-bridge": "^4.4@dev|^5.0"
  8751. },
  8752. "type": "library",
  8753. "extra": {
  8754. "branch-alias": {
  8755. "dev-master": "1.42-dev"
  8756. }
  8757. },
  8758. "autoload": {
  8759. "psr-0": {
  8760. "Twig_": "lib/"
  8761. },
  8762. "psr-4": {
  8763. "Twig\\": "src/"
  8764. }
  8765. },
  8766. "notification-url": "https://packagist.org/downloads/",
  8767. "license": [
  8768. "BSD-3-Clause"
  8769. ],
  8770. "authors": [
  8771. {
  8772. "name": "Fabien Potencier",
  8773. "email": "fabien@symfony.com",
  8774. "homepage": "http://fabien.potencier.org",
  8775. "role": "Lead Developer"
  8776. },
  8777. {
  8778. "name": "Twig Team",
  8779. "homepage": "https://twig.symfony.com/contributors",
  8780. "role": "Contributors"
  8781. },
  8782. {
  8783. "name": "Armin Ronacher",
  8784. "email": "armin.ronacher@active-4.com",
  8785. "role": "Project Founder"
  8786. }
  8787. ],
  8788. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8789. "homepage": "https://twig.symfony.com",
  8790. "keywords": [
  8791. "templating"
  8792. ],
  8793. "time": "2019-08-24T12:51:03+00:00"
  8794. },
  8795. {
  8796. "name": "typo3/phar-stream-wrapper",
  8797. "version": "v3.1.3",
  8798. "source": {
  8799. "type": "git",
  8800. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  8801. "reference": "586ff60beea128e069a5dc271d3d8133a9bc460a"
  8802. },
  8803. "dist": {
  8804. "type": "zip",
  8805. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/586ff60beea128e069a5dc271d3d8133a9bc460a",
  8806. "reference": "586ff60beea128e069a5dc271d3d8133a9bc460a",
  8807. "shasum": ""
  8808. },
  8809. "require": {
  8810. "ext-json": "*",
  8811. "php": "^7.0"
  8812. },
  8813. "require-dev": {
  8814. "ext-xdebug": "*",
  8815. "phpunit/phpunit": "^6.5"
  8816. },
  8817. "suggest": {
  8818. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  8819. },
  8820. "type": "library",
  8821. "extra": {
  8822. "branch-alias": {
  8823. "dev-master": "v3.x-dev"
  8824. }
  8825. },
  8826. "autoload": {
  8827. "psr-4": {
  8828. "TYPO3\\PharStreamWrapper\\": "src/"
  8829. }
  8830. },
  8831. "notification-url": "https://packagist.org/downloads/",
  8832. "license": [
  8833. "MIT"
  8834. ],
  8835. "description": "Interceptors for PHP's native phar:// stream handling",
  8836. "homepage": "https://typo3.org/",
  8837. "keywords": [
  8838. "phar",
  8839. "php",
  8840. "security",
  8841. "stream-wrapper"
  8842. ],
  8843. "time": "2019-10-18T11:57:16+00:00"
  8844. },
  8845. {
  8846. "name": "vlucas/phpdotenv",
  8847. "version": "v2.6.4",
  8848. "source": {
  8849. "type": "git",
  8850. "url": "https://github.com/vlucas/phpdotenv.git",
  8851. "reference": "67d472b1794c986381a8950e4958e1adb779d561"
  8852. },
  8853. "dist": {
  8854. "type": "zip",
  8855. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/67d472b1794c986381a8950e4958e1adb779d561",
  8856. "reference": "67d472b1794c986381a8950e4958e1adb779d561",
  8857. "shasum": ""
  8858. },
  8859. "require": {
  8860. "php": "^5.3.9 || ^7.0 || ^8.0",
  8861. "symfony/polyfill-ctype": "^1.9"
  8862. },
  8863. "require-dev": {
  8864. "ext-filter": "*",
  8865. "ext-pcre": "*",
  8866. "phpunit/phpunit": "^4.8.35 || ^5.0"
  8867. },
  8868. "suggest": {
  8869. "ext-filter": "Required to use the boolean validator.",
  8870. "ext-pcre": "Required to use most of the library."
  8871. },
  8872. "type": "library",
  8873. "extra": {
  8874. "branch-alias": {
  8875. "dev-master": "2.6-dev"
  8876. }
  8877. },
  8878. "autoload": {
  8879. "psr-4": {
  8880. "Dotenv\\": "src/"
  8881. }
  8882. },
  8883. "notification-url": "https://packagist.org/downloads/",
  8884. "license": [
  8885. "BSD-3-Clause"
  8886. ],
  8887. "authors": [
  8888. {
  8889. "name": "Graham Campbell",
  8890. "email": "graham@alt-three.com",
  8891. "homepage": "https://gjcampbell.co.uk/"
  8892. },
  8893. {
  8894. "name": "Vance Lucas",
  8895. "email": "vance@vancelucas.com",
  8896. "homepage": "https://vancelucas.com/"
  8897. }
  8898. ],
  8899. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8900. "keywords": [
  8901. "dotenv",
  8902. "env",
  8903. "environment"
  8904. ],
  8905. "time": "2020-05-02T13:38:00+00:00"
  8906. },
  8907. {
  8908. "name": "webflo/drupal-finder",
  8909. "version": "1.2.0",
  8910. "source": {
  8911. "type": "git",
  8912. "url": "https://github.com/webflo/drupal-finder.git",
  8913. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e"
  8914. },
  8915. "dist": {
  8916. "type": "zip",
  8917. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  8918. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  8919. "shasum": ""
  8920. },
  8921. "require": {
  8922. "ext-json": "*"
  8923. },
  8924. "require-dev": {
  8925. "mikey179/vfsstream": "^1.6",
  8926. "phpunit/phpunit": "^4.8"
  8927. },
  8928. "type": "library",
  8929. "autoload": {
  8930. "classmap": [
  8931. "src/DrupalFinder.php"
  8932. ]
  8933. },
  8934. "notification-url": "https://packagist.org/downloads/",
  8935. "license": [
  8936. "GPL-2.0+"
  8937. ],
  8938. "authors": [
  8939. {
  8940. "name": "Florian Weber",
  8941. "email": "florian@webflo.org"
  8942. }
  8943. ],
  8944. "description": "Helper class to locate a Drupal installation from a given path.",
  8945. "time": "2019-08-02T08:06:18+00:00"
  8946. },
  8947. {
  8948. "name": "webmozart/assert",
  8949. "version": "1.8.0",
  8950. "source": {
  8951. "type": "git",
  8952. "url": "https://github.com/webmozart/assert.git",
  8953. "reference": "ab2cb0b3b559010b75981b1bdce728da3ee90ad6"
  8954. },
  8955. "dist": {
  8956. "type": "zip",
  8957. "url": "https://api.github.com/repos/webmozart/assert/zipball/ab2cb0b3b559010b75981b1bdce728da3ee90ad6",
  8958. "reference": "ab2cb0b3b559010b75981b1bdce728da3ee90ad6",
  8959. "shasum": ""
  8960. },
  8961. "require": {
  8962. "php": "^5.3.3 || ^7.0",
  8963. "symfony/polyfill-ctype": "^1.8"
  8964. },
  8965. "conflict": {
  8966. "vimeo/psalm": "<3.9.1"
  8967. },
  8968. "require-dev": {
  8969. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  8970. },
  8971. "type": "library",
  8972. "autoload": {
  8973. "psr-4": {
  8974. "Webmozart\\Assert\\": "src/"
  8975. }
  8976. },
  8977. "notification-url": "https://packagist.org/downloads/",
  8978. "license": [
  8979. "MIT"
  8980. ],
  8981. "authors": [
  8982. {
  8983. "name": "Bernhard Schussek",
  8984. "email": "bschussek@gmail.com"
  8985. }
  8986. ],
  8987. "description": "Assertions to validate method input/output with nice error messages.",
  8988. "keywords": [
  8989. "assert",
  8990. "check",
  8991. "validate"
  8992. ],
  8993. "time": "2020-04-18T12:12:48+00:00"
  8994. },
  8995. {
  8996. "name": "webmozart/path-util",
  8997. "version": "2.3.0",
  8998. "source": {
  8999. "type": "git",
  9000. "url": "https://github.com/webmozart/path-util.git",
  9001. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  9002. },
  9003. "dist": {
  9004. "type": "zip",
  9005. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  9006. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  9007. "shasum": ""
  9008. },
  9009. "require": {
  9010. "php": ">=5.3.3",
  9011. "webmozart/assert": "~1.0"
  9012. },
  9013. "require-dev": {
  9014. "phpunit/phpunit": "^4.6",
  9015. "sebastian/version": "^1.0.1"
  9016. },
  9017. "type": "library",
  9018. "extra": {
  9019. "branch-alias": {
  9020. "dev-master": "2.3-dev"
  9021. }
  9022. },
  9023. "autoload": {
  9024. "psr-4": {
  9025. "Webmozart\\PathUtil\\": "src/"
  9026. }
  9027. },
  9028. "notification-url": "https://packagist.org/downloads/",
  9029. "license": [
  9030. "MIT"
  9031. ],
  9032. "authors": [
  9033. {
  9034. "name": "Bernhard Schussek",
  9035. "email": "bschussek@gmail.com"
  9036. }
  9037. ],
  9038. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  9039. "time": "2015-12-17T08:42:14+00:00"
  9040. },
  9041. {
  9042. "name": "zaporylie/composer-drupal-optimizations",
  9043. "version": "1.1.1",
  9044. "source": {
  9045. "type": "git",
  9046. "url": "https://github.com/zaporylie/composer-drupal-optimizations.git",
  9047. "reference": "fb231d92adc862a2c9276bccbc90f684816dc75d"
  9048. },
  9049. "dist": {
  9050. "type": "zip",
  9051. "url": "https://api.github.com/repos/zaporylie/composer-drupal-optimizations/zipball/fb231d92adc862a2c9276bccbc90f684816dc75d",
  9052. "reference": "fb231d92adc862a2c9276bccbc90f684816dc75d",
  9053. "shasum": ""
  9054. },
  9055. "require": {
  9056. "composer-plugin-api": "^1.1"
  9057. },
  9058. "require-dev": {
  9059. "composer/composer": "^1.6",
  9060. "phpunit/phpunit": "^6"
  9061. },
  9062. "type": "composer-plugin",
  9063. "extra": {
  9064. "class": "zaporylie\\ComposerDrupalOptimizations\\Plugin"
  9065. },
  9066. "autoload": {
  9067. "psr-4": {
  9068. "zaporylie\\ComposerDrupalOptimizations\\": "src/"
  9069. }
  9070. },
  9071. "notification-url": "https://packagist.org/downloads/",
  9072. "license": [
  9073. "GPL-2.0-or-later"
  9074. ],
  9075. "authors": [
  9076. {
  9077. "name": "Jakub Piasecki",
  9078. "email": "jakub@piaseccy.pl"
  9079. }
  9080. ],
  9081. "description": "Composer plugin to improve composer performance for Drupal projects",
  9082. "time": "2019-10-02T17:01:11+00:00"
  9083. },
  9084. {
  9085. "name": "zendframework/zend-diactoros",
  9086. "version": "1.8.7",
  9087. "source": {
  9088. "type": "git",
  9089. "url": "https://github.com/zendframework/zend-diactoros.git",
  9090. "reference": "a85e67b86e9b8520d07e6415fcbcb8391b44a75b"
  9091. },
  9092. "dist": {
  9093. "type": "zip",
  9094. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/a85e67b86e9b8520d07e6415fcbcb8391b44a75b",
  9095. "reference": "a85e67b86e9b8520d07e6415fcbcb8391b44a75b",
  9096. "shasum": ""
  9097. },
  9098. "require": {
  9099. "php": "^5.6 || ^7.0",
  9100. "psr/http-message": "^1.0"
  9101. },
  9102. "provide": {
  9103. "psr/http-message-implementation": "1.0"
  9104. },
  9105. "require-dev": {
  9106. "ext-dom": "*",
  9107. "ext-libxml": "*",
  9108. "php-http/psr7-integration-tests": "dev-master",
  9109. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7",
  9110. "zendframework/zend-coding-standard": "~1.0"
  9111. },
  9112. "type": "library",
  9113. "extra": {
  9114. "branch-alias": {
  9115. "dev-release-1.8": "1.8.x-dev"
  9116. }
  9117. },
  9118. "autoload": {
  9119. "files": [
  9120. "src/functions/create_uploaded_file.php",
  9121. "src/functions/marshal_headers_from_sapi.php",
  9122. "src/functions/marshal_method_from_sapi.php",
  9123. "src/functions/marshal_protocol_version_from_sapi.php",
  9124. "src/functions/marshal_uri_from_sapi.php",
  9125. "src/functions/normalize_server.php",
  9126. "src/functions/normalize_uploaded_files.php",
  9127. "src/functions/parse_cookie_header.php"
  9128. ],
  9129. "psr-4": {
  9130. "Zend\\Diactoros\\": "src/"
  9131. }
  9132. },
  9133. "notification-url": "https://packagist.org/downloads/",
  9134. "license": [
  9135. "BSD-2-Clause"
  9136. ],
  9137. "description": "PSR HTTP Message implementations",
  9138. "homepage": "https://github.com/zendframework/zend-diactoros",
  9139. "keywords": [
  9140. "http",
  9141. "psr",
  9142. "psr-7"
  9143. ],
  9144. "abandoned": "laminas/laminas-diactoros",
  9145. "time": "2019-08-06T17:53:53+00:00"
  9146. },
  9147. {
  9148. "name": "zendframework/zend-escaper",
  9149. "version": "2.6.1",
  9150. "source": {
  9151. "type": "git",
  9152. "url": "https://github.com/zendframework/zend-escaper.git",
  9153. "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f"
  9154. },
  9155. "dist": {
  9156. "type": "zip",
  9157. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/3801caa21b0ca6aca57fa1c42b08d35c395ebd5f",
  9158. "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f",
  9159. "shasum": ""
  9160. },
  9161. "require": {
  9162. "php": "^5.6 || ^7.0"
  9163. },
  9164. "require-dev": {
  9165. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  9166. "zendframework/zend-coding-standard": "~1.0.0"
  9167. },
  9168. "type": "library",
  9169. "extra": {
  9170. "branch-alias": {
  9171. "dev-master": "2.6.x-dev",
  9172. "dev-develop": "2.7.x-dev"
  9173. }
  9174. },
  9175. "autoload": {
  9176. "psr-4": {
  9177. "Zend\\Escaper\\": "src/"
  9178. }
  9179. },
  9180. "notification-url": "https://packagist.org/downloads/",
  9181. "license": [
  9182. "BSD-3-Clause"
  9183. ],
  9184. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  9185. "keywords": [
  9186. "ZendFramework",
  9187. "escaper",
  9188. "zf"
  9189. ],
  9190. "abandoned": "laminas/laminas-escaper",
  9191. "time": "2019-09-05T20:03:20+00:00"
  9192. },
  9193. {
  9194. "name": "zendframework/zend-feed",
  9195. "version": "2.12.0",
  9196. "source": {
  9197. "type": "git",
  9198. "url": "https://github.com/zendframework/zend-feed.git",
  9199. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733"
  9200. },
  9201. "dist": {
  9202. "type": "zip",
  9203. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/d926c5af34b93a0121d5e2641af34ddb1533d733",
  9204. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733",
  9205. "shasum": ""
  9206. },
  9207. "require": {
  9208. "ext-dom": "*",
  9209. "ext-libxml": "*",
  9210. "php": "^5.6 || ^7.0",
  9211. "zendframework/zend-escaper": "^2.5.2",
  9212. "zendframework/zend-stdlib": "^3.2.1"
  9213. },
  9214. "require-dev": {
  9215. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  9216. "psr/http-message": "^1.0.1",
  9217. "zendframework/zend-cache": "^2.7.2",
  9218. "zendframework/zend-coding-standard": "~1.0.0",
  9219. "zendframework/zend-db": "^2.8.2",
  9220. "zendframework/zend-http": "^2.7",
  9221. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  9222. "zendframework/zend-validator": "^2.10.1"
  9223. },
  9224. "suggest": {
  9225. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  9226. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  9227. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  9228. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  9229. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  9230. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  9231. },
  9232. "type": "library",
  9233. "extra": {
  9234. "branch-alias": {
  9235. "dev-master": "2.12.x-dev",
  9236. "dev-develop": "2.13.x-dev"
  9237. }
  9238. },
  9239. "autoload": {
  9240. "psr-4": {
  9241. "Zend\\Feed\\": "src/"
  9242. }
  9243. },
  9244. "notification-url": "https://packagist.org/downloads/",
  9245. "license": [
  9246. "BSD-3-Clause"
  9247. ],
  9248. "description": "provides functionality for consuming RSS and Atom feeds",
  9249. "keywords": [
  9250. "ZendFramework",
  9251. "feed",
  9252. "zf"
  9253. ],
  9254. "abandoned": "laminas/laminas-feed",
  9255. "time": "2019-03-05T20:08:49+00:00"
  9256. },
  9257. {
  9258. "name": "zendframework/zend-stdlib",
  9259. "version": "3.2.1",
  9260. "source": {
  9261. "type": "git",
  9262. "url": "https://github.com/zendframework/zend-stdlib.git",
  9263. "reference": "66536006722aff9e62d1b331025089b7ec71c065"
  9264. },
  9265. "dist": {
  9266. "type": "zip",
  9267. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065",
  9268. "reference": "66536006722aff9e62d1b331025089b7ec71c065",
  9269. "shasum": ""
  9270. },
  9271. "require": {
  9272. "php": "^5.6 || ^7.0"
  9273. },
  9274. "require-dev": {
  9275. "phpbench/phpbench": "^0.13",
  9276. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  9277. "zendframework/zend-coding-standard": "~1.0.0"
  9278. },
  9279. "type": "library",
  9280. "extra": {
  9281. "branch-alias": {
  9282. "dev-master": "3.2.x-dev",
  9283. "dev-develop": "3.3.x-dev"
  9284. }
  9285. },
  9286. "autoload": {
  9287. "psr-4": {
  9288. "Zend\\Stdlib\\": "src/"
  9289. }
  9290. },
  9291. "notification-url": "https://packagist.org/downloads/",
  9292. "license": [
  9293. "BSD-3-Clause"
  9294. ],
  9295. "description": "SPL extensions, array utilities, error handlers, and more",
  9296. "keywords": [
  9297. "ZendFramework",
  9298. "stdlib",
  9299. "zf"
  9300. ],
  9301. "abandoned": "laminas/laminas-stdlib",
  9302. "time": "2018-08-28T21:34:05+00:00"
  9303. }
  9304. ],
  9305. "packages-dev": [],
  9306. "aliases": [],
  9307. "minimum-stability": "dev",
  9308. "stability-flags": {
  9309. "drupal/bulkdelete": 20,
  9310. "drupal/domain_menu_access": 20,
  9311. "drupal/filefield_sources": 20,
  9312. "drupal/filter_perms": 20,
  9313. "drupal/maillog": 20,
  9314. "drupal/path_alias_xt": 20,
  9315. "drupal/synonyms": 20,
  9316. "drupal/toolbar_themes": 20,
  9317. "drupal/workflow": 20
  9318. },
  9319. "prefer-stable": true,
  9320. "prefer-lowest": false,
  9321. "platform": {
  9322. "php": ">=5.6"
  9323. },
  9324. "platform-dev": []
  9325. }