composer.lock 356 KB

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