composer.lock 346 KB

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