composer.lock 341 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432
  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": "915e6ec916535b32ce8892a6234cb992",
  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.7.0",
  2885. "source": {
  2886. "type": "git",
  2887. "url": "https://git.drupalcode.org/project/geocoder.git",
  2888. "reference": "8.x-3.7"
  2889. },
  2890. "dist": {
  2891. "type": "zip",
  2892. "url": "https://ftp.drupal.org/files/projects/geocoder-8.x-3.7.zip",
  2893. "reference": "8.x-3.7",
  2894. "shasum": "ac376686b10f3c1181cd77f2f323c975ccaea484"
  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",
  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.7",
  2937. "datestamp": "1591824580",
  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+"
  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/linkit",
  3519. "version": "4.3.0",
  3520. "source": {
  3521. "type": "git",
  3522. "url": "https://git.drupalcode.org/project/linkit.git",
  3523. "reference": "8.x-4.3"
  3524. },
  3525. "dist": {
  3526. "type": "zip",
  3527. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-4.3.zip",
  3528. "reference": "8.x-4.3",
  3529. "shasum": "e624ea2f18a6100b76a8337e24f7c08df6e2235e"
  3530. },
  3531. "require": {
  3532. "drupal/core": "~8.0"
  3533. },
  3534. "type": "drupal-module",
  3535. "extra": {
  3536. "drupal": {
  3537. "version": "8.x-4.3",
  3538. "datestamp": "1490205830",
  3539. "security-coverage": {
  3540. "status": "covered",
  3541. "message": "Covered by Drupal's security advisory policy"
  3542. }
  3543. }
  3544. },
  3545. "notification-url": "https://packages.drupal.org/8/downloads",
  3546. "license": [
  3547. "GPL-2.0+"
  3548. ],
  3549. "authors": [
  3550. {
  3551. "name": "Emil Stjerneman",
  3552. "homepage": "https://stjerneman.com",
  3553. "email": "emil@stjerneman.com",
  3554. "role": "Maintainer"
  3555. }
  3556. ],
  3557. "description": "Linkit - Enriched linking experience",
  3558. "homepage": "http://drupal.org/project/linkit",
  3559. "support": {
  3560. "source": "http://cgit.drupalcode.org/linkit",
  3561. "issues": "http://drupal.org/project/linkit"
  3562. }
  3563. },
  3564. {
  3565. "name": "drupal/masonry",
  3566. "version": "1.1.0",
  3567. "source": {
  3568. "type": "git",
  3569. "url": "https://git.drupalcode.org/project/masonry.git",
  3570. "reference": "8.x-1.1"
  3571. },
  3572. "dist": {
  3573. "type": "zip",
  3574. "url": "https://ftp.drupal.org/files/projects/masonry-8.x-1.1.zip",
  3575. "reference": "8.x-1.1",
  3576. "shasum": "c45e4b21e08b5fa3998bb1852282131ec8761c74"
  3577. },
  3578. "require": {
  3579. "drupal/core": "^8 || ^9"
  3580. },
  3581. "type": "drupal-module",
  3582. "extra": {
  3583. "drupal": {
  3584. "version": "8.x-1.1",
  3585. "datestamp": "1594537870",
  3586. "security-coverage": {
  3587. "status": "covered",
  3588. "message": "Covered by Drupal's security advisory policy"
  3589. }
  3590. }
  3591. },
  3592. "notification-url": "https://packages.drupal.org/8/downloads",
  3593. "license": [
  3594. "GPL-2.0-or-later"
  3595. ],
  3596. "authors": [
  3597. {
  3598. "name": "Dominique Clause (Dom.)",
  3599. "homepage": "https://www.drupal.org/u/dom",
  3600. "role": "Maintainer"
  3601. },
  3602. {
  3603. "name": "Dom.",
  3604. "homepage": "https://www.drupal.org/user/801982"
  3605. }
  3606. ],
  3607. "description": "Masonry integrates with Masonry library",
  3608. "homepage": "https://www.drupal.org/project/masonry",
  3609. "support": {
  3610. "source": "https://git.drupalcode.org/project/masonry",
  3611. "issues": "https://www.drupal.org/project/issues/masonry?version=8.x"
  3612. }
  3613. },
  3614. {
  3615. "name": "drupal/mediteran",
  3616. "version": "1.11.0",
  3617. "source": {
  3618. "type": "git",
  3619. "url": "https://git.drupalcode.org/project/mediteran.git",
  3620. "reference": "8.x-1.11"
  3621. },
  3622. "dist": {
  3623. "type": "zip",
  3624. "url": "https://ftp.drupal.org/files/projects/mediteran-8.x-1.11.zip",
  3625. "reference": "8.x-1.11",
  3626. "shasum": "93a72f234b862f73ec0fa43dc3a9d5fd5857f163"
  3627. },
  3628. "require": {
  3629. "drupal/core": "^8 || ^9"
  3630. },
  3631. "type": "drupal-theme",
  3632. "extra": {
  3633. "drupal": {
  3634. "version": "8.x-1.11",
  3635. "datestamp": "1594537822",
  3636. "security-coverage": {
  3637. "status": "covered",
  3638. "message": "Covered by Drupal's security advisory policy"
  3639. }
  3640. }
  3641. },
  3642. "notification-url": "https://packages.drupal.org/8/downloads",
  3643. "license": [
  3644. "GPL-2.0-or-later"
  3645. ],
  3646. "authors": [
  3647. {
  3648. "name": "bataboza",
  3649. "homepage": "https://www.drupal.org/user/3581173"
  3650. },
  3651. {
  3652. "name": "diqidoq",
  3653. "homepage": "https://www.drupal.org/user/1001934"
  3654. },
  3655. {
  3656. "name": "doxigo",
  3657. "homepage": "https://www.drupal.org/user/1331334"
  3658. }
  3659. ],
  3660. "description": "Mediteran administrator is responsive theme for Drupal 8 with clean and modern design.",
  3661. "homepage": "https://www.drupal.org/project/mediteran",
  3662. "support": {
  3663. "source": "https://git.drupalcode.org/project/mediteran"
  3664. }
  3665. },
  3666. {
  3667. "name": "drupal/metatag",
  3668. "version": "1.13.0",
  3669. "source": {
  3670. "type": "git",
  3671. "url": "https://git.drupalcode.org/project/metatag.git",
  3672. "reference": "8.x-1.13"
  3673. },
  3674. "dist": {
  3675. "type": "zip",
  3676. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.13.zip",
  3677. "reference": "8.x-1.13",
  3678. "shasum": "c471d9982a6540fd7baccc94572947923634fb6b"
  3679. },
  3680. "require": {
  3681. "drupal/core": "^8 || ^9",
  3682. "drupal/token": "^1.0"
  3683. },
  3684. "require-dev": {
  3685. "drupal/metatag_dc": "*",
  3686. "drupal/metatag_open_graph": "*",
  3687. "drupal/page_manager": "4.x-dev",
  3688. "drupal/redirect": "1.x-dev"
  3689. },
  3690. "type": "drupal-module",
  3691. "extra": {
  3692. "drupal": {
  3693. "version": "8.x-1.13",
  3694. "datestamp": "1587478404",
  3695. "security-coverage": {
  3696. "status": "covered",
  3697. "message": "Covered by Drupal's security advisory policy"
  3698. }
  3699. }
  3700. },
  3701. "notification-url": "https://packages.drupal.org/8/downloads",
  3702. "license": [
  3703. "GPL-2.0+"
  3704. ],
  3705. "authors": [
  3706. {
  3707. "name": "See contributors",
  3708. "homepage": "https://www.drupal.org/node/640498/committers",
  3709. "role": "Developer"
  3710. },
  3711. {
  3712. "name": "Dave Reid",
  3713. "homepage": "https://www.drupal.org/user/53892"
  3714. }
  3715. ],
  3716. "description": "Manage meta tags for all entities.",
  3717. "homepage": "https://www.drupal.org/project/metatag",
  3718. "keywords": [
  3719. "Drupal",
  3720. "seo"
  3721. ],
  3722. "support": {
  3723. "source": "https://git.drupalcode.org/project/metatag",
  3724. "issues": "https://www.drupal.org/project/issues/metatag",
  3725. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  3726. }
  3727. },
  3728. {
  3729. "name": "drupal/page_manager",
  3730. "version": "4.0.0-beta6",
  3731. "source": {
  3732. "type": "git",
  3733. "url": "https://git.drupalcode.org/project/page_manager.git",
  3734. "reference": "8.x-4.0-beta6"
  3735. },
  3736. "dist": {
  3737. "type": "zip",
  3738. "url": "https://ftp.drupal.org/files/projects/page_manager-8.x-4.0-beta6.zip",
  3739. "reference": "8.x-4.0-beta6",
  3740. "shasum": "bf0ac07177b1cd6c1a3da80f727f1448221ee98a"
  3741. },
  3742. "require": {
  3743. "drupal/core": "^8.8 || ^9",
  3744. "drupal/ctools": "^3.1"
  3745. },
  3746. "type": "drupal-module",
  3747. "extra": {
  3748. "drupal": {
  3749. "version": "8.x-4.0-beta6",
  3750. "datestamp": "1591125562",
  3751. "security-coverage": {
  3752. "status": "not-covered",
  3753. "message": "Project has not opted into security advisory coverage!"
  3754. }
  3755. },
  3756. "branch-alias": {
  3757. "dev-8.x-4.x": "4.x-dev"
  3758. }
  3759. },
  3760. "notification-url": "https://packages.drupal.org/8/downloads",
  3761. "license": [
  3762. "GPL-2.0-or-later"
  3763. ],
  3764. "authors": [
  3765. {
  3766. "name": "Tim Plunkett",
  3767. "homepage": "https://www.drupal.org/u/tim.plunkett",
  3768. "role": "Maintainer"
  3769. },
  3770. {
  3771. "name": "dsnopek",
  3772. "homepage": "https://www.drupal.org/user/266527"
  3773. },
  3774. {
  3775. "name": "japerry",
  3776. "homepage": "https://www.drupal.org/user/45640"
  3777. },
  3778. {
  3779. "name": "manuel.adan",
  3780. "homepage": "https://www.drupal.org/user/516420"
  3781. },
  3782. {
  3783. "name": "phenaproxima",
  3784. "homepage": "https://www.drupal.org/user/205645"
  3785. }
  3786. ],
  3787. "description": "Provides a way to place blocks on a custom page.",
  3788. "homepage": "https://www.drupal.org/project/page_manager",
  3789. "support": {
  3790. "source": "https://git.drupal.org/project/page_manager.git",
  3791. "issues": "https://www.drupal.org/project/issues/page_manager",
  3792. "irc": "irc://irc.freenode.org/drupal-contribute"
  3793. }
  3794. },
  3795. {
  3796. "name": "drupal/panels",
  3797. "version": "4.6.0",
  3798. "source": {
  3799. "type": "git",
  3800. "url": "https://git.drupalcode.org/project/panels.git",
  3801. "reference": "8.x-4.6"
  3802. },
  3803. "dist": {
  3804. "type": "zip",
  3805. "url": "https://ftp.drupal.org/files/projects/panels-8.x-4.6.zip",
  3806. "reference": "8.x-4.6",
  3807. "shasum": "6430436a4d8fb64f8c113729dd92505a1e46b794"
  3808. },
  3809. "require": {
  3810. "drupal/core": "^8.8 || ^9",
  3811. "drupal/ctools": ">=3.0.0",
  3812. "drupal/jquery_ui_droppable": "^1.2"
  3813. },
  3814. "require-dev": {
  3815. "drupal/jquery_ui_droppable": "*",
  3816. "drupal/page_manager": "^4"
  3817. },
  3818. "type": "drupal-module",
  3819. "extra": {
  3820. "drupal": {
  3821. "version": "8.x-4.6",
  3822. "datestamp": "1585870866",
  3823. "security-coverage": {
  3824. "status": "covered",
  3825. "message": "Covered by Drupal's security advisory policy"
  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+"
  3835. ],
  3836. "authors": [
  3837. {
  3838. "name": "Jakob Perry",
  3839. "homepage": "https://www.drupal.org/u/japerry"
  3840. },
  3841. {
  3842. "name": "Samuel Mortenson",
  3843. "homepage": "https://www.drupal.org/u/samuel.mortenson"
  3844. },
  3845. {
  3846. "name": "See other contributors",
  3847. "homepage": "https://www.drupal.org/node/74958/committers"
  3848. },
  3849. {
  3850. "name": "japerry",
  3851. "homepage": "https://www.drupal.org/user/45640"
  3852. },
  3853. {
  3854. "name": "joelpittet",
  3855. "homepage": "https://www.drupal.org/user/160302"
  3856. },
  3857. {
  3858. "name": "merlinofchaos",
  3859. "homepage": "https://www.drupal.org/user/26979"
  3860. },
  3861. {
  3862. "name": "neclimdul",
  3863. "homepage": "https://www.drupal.org/user/48673"
  3864. },
  3865. {
  3866. "name": "phenaproxima",
  3867. "homepage": "https://www.drupal.org/user/205645"
  3868. },
  3869. {
  3870. "name": "samuel.mortenson",
  3871. "homepage": "https://www.drupal.org/user/2582268"
  3872. },
  3873. {
  3874. "name": "tim.plunkett",
  3875. "homepage": "https://www.drupal.org/user/241634"
  3876. }
  3877. ],
  3878. "description": "Core Panels display functions; provides no external UI, at least one other Panels module should be enabled.",
  3879. "homepage": "https://www.drupal.org/project/panels",
  3880. "support": {
  3881. "source": "http://git.drupal.org/project/panels.git",
  3882. "issues": "https://www.drupal.org/project/issues/panels",
  3883. "irc": "irc://irc.freenode.org/drupal-scotch"
  3884. }
  3885. },
  3886. {
  3887. "name": "drupal/paragraphs",
  3888. "version": "1.12.0",
  3889. "source": {
  3890. "type": "git",
  3891. "url": "https://git.drupalcode.org/project/paragraphs.git",
  3892. "reference": "8.x-1.12"
  3893. },
  3894. "dist": {
  3895. "type": "zip",
  3896. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.12.zip",
  3897. "reference": "8.x-1.12",
  3898. "shasum": "3b67d8af1160af42d93a4610be1e02869e428965"
  3899. },
  3900. "require": {
  3901. "drupal/core": "^8.8 || ^9",
  3902. "drupal/entity_reference_revisions": "~1.3"
  3903. },
  3904. "require-dev": {
  3905. "drupal/block_field": "~1.0",
  3906. "drupal/ctools": "3.x-dev",
  3907. "drupal/diff": "~1.0",
  3908. "drupal/entity_browser": "2.x-dev",
  3909. "drupal/entity_usage": "2.x-dev",
  3910. "drupal/field_group": "3.x-dev",
  3911. "drupal/inline_entity_form": "~1.0",
  3912. "drupal/paragraphs-paragraphs_library": "*",
  3913. "drupal/replicate": "~1.0",
  3914. "drupal/search_api": "~1.0",
  3915. "drupal/search_api_db": "*"
  3916. },
  3917. "suggest": {
  3918. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  3919. },
  3920. "type": "drupal-module",
  3921. "extra": {
  3922. "drupal": {
  3923. "version": "8.x-1.12",
  3924. "datestamp": "1590140081",
  3925. "security-coverage": {
  3926. "status": "covered",
  3927. "message": "Covered by Drupal's security advisory policy"
  3928. }
  3929. }
  3930. },
  3931. "notification-url": "https://packages.drupal.org/8/downloads",
  3932. "license": [
  3933. "GPL-2.0-or-later"
  3934. ],
  3935. "authors": [
  3936. {
  3937. "name": "Berdir",
  3938. "homepage": "https://www.drupal.org/user/214652"
  3939. },
  3940. {
  3941. "name": "Frans",
  3942. "homepage": "https://www.drupal.org/user/514222"
  3943. },
  3944. {
  3945. "name": "Primsi",
  3946. "homepage": "https://www.drupal.org/user/282629"
  3947. },
  3948. {
  3949. "name": "jeroen.b",
  3950. "homepage": "https://www.drupal.org/user/1853532"
  3951. },
  3952. {
  3953. "name": "jstoller",
  3954. "homepage": "https://www.drupal.org/user/99012"
  3955. },
  3956. {
  3957. "name": "miro_dietiker",
  3958. "homepage": "https://www.drupal.org/user/227761"
  3959. }
  3960. ],
  3961. "description": "Enables the creation of Paragraphs entities.",
  3962. "homepage": "https://www.drupal.org/project/paragraphs",
  3963. "support": {
  3964. "source": "https://git.drupalcode.org/project/paragraphs"
  3965. }
  3966. },
  3967. {
  3968. "name": "drupal/pathauto",
  3969. "version": "1.8.0",
  3970. "source": {
  3971. "type": "git",
  3972. "url": "https://git.drupalcode.org/project/pathauto.git",
  3973. "reference": "8.x-1.8"
  3974. },
  3975. "dist": {
  3976. "type": "zip",
  3977. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.8.zip",
  3978. "reference": "8.x-1.8",
  3979. "shasum": "ede3216abb9c4f77709338d9147334c595046329"
  3980. },
  3981. "require": {
  3982. "drupal/core": "^8.8 || ^9",
  3983. "drupal/ctools": "*",
  3984. "drupal/token": "*"
  3985. },
  3986. "suggest": {
  3987. "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."
  3988. },
  3989. "type": "drupal-module",
  3990. "extra": {
  3991. "drupal": {
  3992. "version": "8.x-1.8",
  3993. "datestamp": "1588103046",
  3994. "security-coverage": {
  3995. "status": "covered",
  3996. "message": "Covered by Drupal's security advisory policy"
  3997. }
  3998. },
  3999. "drush": {
  4000. "services": {
  4001. "drush.services.yml": "^9 || ^10"
  4002. }
  4003. }
  4004. },
  4005. "notification-url": "https://packages.drupal.org/8/downloads",
  4006. "license": [
  4007. "GPL-2.0-or-later"
  4008. ],
  4009. "authors": [
  4010. {
  4011. "name": "Berdir",
  4012. "homepage": "https://www.drupal.org/user/214652"
  4013. },
  4014. {
  4015. "name": "Dave Reid",
  4016. "homepage": "https://www.drupal.org/user/53892"
  4017. },
  4018. {
  4019. "name": "Freso",
  4020. "homepage": "https://www.drupal.org/user/27504"
  4021. },
  4022. {
  4023. "name": "greggles",
  4024. "homepage": "https://www.drupal.org/user/36762"
  4025. }
  4026. ],
  4027. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4028. "homepage": "https://www.drupal.org/project/pathauto",
  4029. "support": {
  4030. "source": "https://cgit.drupalcode.org/pathauto",
  4031. "issues": "https://www.drupal.org/project/issues/pathauto",
  4032. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  4033. }
  4034. },
  4035. {
  4036. "name": "drupal/schema_metatag",
  4037. "version": "1.6.0",
  4038. "source": {
  4039. "type": "git",
  4040. "url": "https://git.drupalcode.org/project/schema_metatag.git",
  4041. "reference": "8.x-1.6"
  4042. },
  4043. "dist": {
  4044. "type": "zip",
  4045. "url": "https://ftp.drupal.org/files/projects/schema_metatag-8.x-1.6.zip",
  4046. "reference": "8.x-1.6",
  4047. "shasum": "89816975afc0345b57c3b0550c88a8f371ba56c9"
  4048. },
  4049. "require": {
  4050. "drupal/core": "^8 || ^9",
  4051. "drupal/metatag": "*"
  4052. },
  4053. "require-dev": {
  4054. "drupal/metatag_views": "*",
  4055. "drupal/schema_article": "*",
  4056. "drupal/schema_organization": "*"
  4057. },
  4058. "type": "drupal-module",
  4059. "extra": {
  4060. "drupal": {
  4061. "version": "8.x-1.6",
  4062. "datestamp": "1592573603",
  4063. "security-coverage": {
  4064. "status": "covered",
  4065. "message": "Covered by Drupal's security advisory policy"
  4066. }
  4067. }
  4068. },
  4069. "notification-url": "https://packages.drupal.org/8/downloads",
  4070. "license": [
  4071. "GPL-2.0+"
  4072. ],
  4073. "authors": [
  4074. {
  4075. "name": "KarenS",
  4076. "homepage": "https://www.drupal.org/user/45874"
  4077. }
  4078. ],
  4079. "description": "Metatag implementation of Schema.org structured data (JSON-LD)",
  4080. "homepage": "https://www.drupal.org/project/schema_metatag",
  4081. "keywords": [
  4082. "Drupal"
  4083. ],
  4084. "support": {
  4085. "source": "http://cgit.drupalcode.org/schema_metatag",
  4086. "issues": "https://www.drupal.org/project/issues/schema_metatag"
  4087. }
  4088. },
  4089. {
  4090. "name": "drupal/site_settings",
  4091. "version": "1.19.0",
  4092. "source": {
  4093. "type": "git",
  4094. "url": "https://git.drupalcode.org/project/site_settings.git",
  4095. "reference": "8.x-1.19"
  4096. },
  4097. "dist": {
  4098. "type": "zip",
  4099. "url": "https://ftp.drupal.org/files/projects/site_settings-8.x-1.19.zip",
  4100. "reference": "8.x-1.19",
  4101. "shasum": "93977299549d33c4fbaad7a332fe7d3e1e2648b8"
  4102. },
  4103. "require": {
  4104. "drupal/core": "^8 || ^9"
  4105. },
  4106. "type": "drupal-module",
  4107. "extra": {
  4108. "drupal": {
  4109. "version": "8.x-1.19",
  4110. "datestamp": "1590234916",
  4111. "security-coverage": {
  4112. "status": "covered",
  4113. "message": "Covered by Drupal's security advisory policy"
  4114. }
  4115. }
  4116. },
  4117. "notification-url": "https://packages.drupal.org/8/downloads",
  4118. "license": [
  4119. "GPL-2.0+"
  4120. ],
  4121. "authors": [
  4122. {
  4123. "name": "scott_euser",
  4124. "homepage": "https://www.drupal.org/user/3267594"
  4125. },
  4126. {
  4127. "name": "stuart.wilkes@actionaid.org",
  4128. "homepage": "https://www.drupal.org/user/3584735"
  4129. }
  4130. ],
  4131. "description": "Provides a site settings entity",
  4132. "homepage": "https://www.drupal.org/project/site_settings",
  4133. "keywords": [
  4134. "Drupal"
  4135. ],
  4136. "support": {
  4137. "source": "http://cgit.drupalcode.org/site_settings",
  4138. "issues": "http://drupal.org/project/issues/site_settings"
  4139. }
  4140. },
  4141. {
  4142. "name": "drupal/subpathauto",
  4143. "version": "1.1.0",
  4144. "source": {
  4145. "type": "git",
  4146. "url": "https://git.drupalcode.org/project/subpathauto.git",
  4147. "reference": "8.x-1.1"
  4148. },
  4149. "dist": {
  4150. "type": "zip",
  4151. "url": "https://ftp.drupal.org/files/projects/subpathauto-8.x-1.1.zip",
  4152. "reference": "8.x-1.1",
  4153. "shasum": "1d027be84e82705c65669f5717b148562be3e766"
  4154. },
  4155. "require": {
  4156. "drupal/core": "^8.8 || ^9"
  4157. },
  4158. "type": "drupal-module",
  4159. "extra": {
  4160. "drupal": {
  4161. "version": "8.x-1.1",
  4162. "datestamp": "1590076268",
  4163. "security-coverage": {
  4164. "status": "covered",
  4165. "message": "Covered by Drupal's security advisory policy"
  4166. }
  4167. }
  4168. },
  4169. "notification-url": "https://packages.drupal.org/8/downloads",
  4170. "license": [
  4171. "GPL-2.0-or-later"
  4172. ],
  4173. "authors": [
  4174. {
  4175. "name": "Dave Reid",
  4176. "homepage": "https://www.drupal.org/user/53892"
  4177. },
  4178. {
  4179. "name": "lauriii",
  4180. "homepage": "https://www.drupal.org/user/1078742"
  4181. }
  4182. ],
  4183. "description": "Provides support for extending sub-paths of URL aliases.",
  4184. "homepage": "https://www.drupal.org/project/subpathauto",
  4185. "support": {
  4186. "source": "https://git.drupalcode.org/project/subpathauto"
  4187. }
  4188. },
  4189. {
  4190. "name": "drupal/time_range",
  4191. "version": "8.1.3",
  4192. "source": {
  4193. "type": "git",
  4194. "url": "https://git.drupalcode.org/project/time_range.git",
  4195. "reference": "8.1.3"
  4196. },
  4197. "dist": {
  4198. "type": "zip",
  4199. "url": "https://ftp.drupal.org/files/projects/time_range-8.1.3.zip",
  4200. "reference": "8.1.3",
  4201. "shasum": "404597e00e2e972c32647e8c1963efb0d7566d90"
  4202. },
  4203. "require": {
  4204. "drupal/core": "^8 || ^9"
  4205. },
  4206. "type": "drupal-module",
  4207. "extra": {
  4208. "drupal": {
  4209. "version": "8.1.3",
  4210. "datestamp": "1591497359",
  4211. "security-coverage": {
  4212. "status": "covered",
  4213. "message": "Covered by Drupal's security advisory policy"
  4214. }
  4215. }
  4216. },
  4217. "notification-url": "https://packages.drupal.org/8/downloads",
  4218. "license": [
  4219. "GPL-2.0+"
  4220. ],
  4221. "authors": [
  4222. {
  4223. "name": "dravenk",
  4224. "homepage": "https://www.drupal.org/user/3452417"
  4225. }
  4226. ],
  4227. "description": "Provides the form widget to fill in time range.",
  4228. "homepage": "https://github.com/DravenK/time-range.git",
  4229. "support": {
  4230. "source": "https://github.com/DravenK/time-range.git",
  4231. "issues": "https://github.com/DravenK/time-range/issues"
  4232. }
  4233. },
  4234. {
  4235. "name": "drupal/token",
  4236. "version": "1.7.0",
  4237. "source": {
  4238. "type": "git",
  4239. "url": "https://git.drupalcode.org/project/token.git",
  4240. "reference": "8.x-1.7"
  4241. },
  4242. "dist": {
  4243. "type": "zip",
  4244. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.7.zip",
  4245. "reference": "8.x-1.7",
  4246. "shasum": "c7e3a3757282e4c94e3c1fff08d01e22155cb853"
  4247. },
  4248. "require": {
  4249. "drupal/core": "^8.8 || ^9"
  4250. },
  4251. "type": "drupal-module",
  4252. "extra": {
  4253. "drupal": {
  4254. "version": "8.x-1.7",
  4255. "datestamp": "1589314266",
  4256. "security-coverage": {
  4257. "status": "covered",
  4258. "message": "Covered by Drupal's security advisory policy"
  4259. }
  4260. },
  4261. "drush": {
  4262. "services": {
  4263. "drush.services.yml": "^9 || ^10"
  4264. }
  4265. }
  4266. },
  4267. "notification-url": "https://packages.drupal.org/8/downloads",
  4268. "license": [
  4269. "GPL-2.0+"
  4270. ],
  4271. "authors": [
  4272. {
  4273. "name": "Berdir",
  4274. "homepage": "https://www.drupal.org/user/214652"
  4275. },
  4276. {
  4277. "name": "Dave Reid",
  4278. "homepage": "https://www.drupal.org/user/53892"
  4279. },
  4280. {
  4281. "name": "eaton",
  4282. "homepage": "https://www.drupal.org/user/16496"
  4283. },
  4284. {
  4285. "name": "fago",
  4286. "homepage": "https://www.drupal.org/user/16747"
  4287. },
  4288. {
  4289. "name": "greggles",
  4290. "homepage": "https://www.drupal.org/user/36762"
  4291. },
  4292. {
  4293. "name": "mikeryan",
  4294. "homepage": "https://www.drupal.org/user/4420"
  4295. }
  4296. ],
  4297. "description": "Provides a user interface for the Token API, some missing core tokens.",
  4298. "homepage": "https://www.drupal.org/project/token",
  4299. "support": {
  4300. "source": "https://git.drupalcode.org/project/token"
  4301. }
  4302. },
  4303. {
  4304. "name": "drupal/total_control",
  4305. "version": "2.0.0",
  4306. "source": {
  4307. "type": "git",
  4308. "url": "https://git.drupalcode.org/project/total_control.git",
  4309. "reference": "8.x-2.0"
  4310. },
  4311. "dist": {
  4312. "type": "zip",
  4313. "url": "https://ftp.drupal.org/files/projects/total_control-8.x-2.0.zip",
  4314. "reference": "8.x-2.0",
  4315. "shasum": "67e4bcf348fbc4647402de7903b48fc6414beece"
  4316. },
  4317. "require": {
  4318. "drupal/core": "^8 || ^9",
  4319. "drupal/ctools": "~3.0",
  4320. "drupal/page_manager": "~4.0",
  4321. "drupal/panels": "~4.0"
  4322. },
  4323. "type": "drupal-module",
  4324. "extra": {
  4325. "drupal": {
  4326. "version": "8.x-2.0",
  4327. "datestamp": "1583399169",
  4328. "security-coverage": {
  4329. "status": "covered",
  4330. "message": "Covered by Drupal's security advisory policy"
  4331. }
  4332. },
  4333. "branch-alias": {
  4334. "dev-8.x-2.x": "8.2.x-dev"
  4335. }
  4336. },
  4337. "notification-url": "https://packages.drupal.org/8/downloads",
  4338. "license": [
  4339. "GPL-2.0-or-later"
  4340. ],
  4341. "authors": [
  4342. {
  4343. "name": "Jen Lampton",
  4344. "homepage": "https://www.drupal.org/u/jenlampton",
  4345. "role": "Maintainer"
  4346. },
  4347. {
  4348. "name": "Mohammed J. Razem",
  4349. "homepage": "https://www.drupal.org/u/mohammed-j-razem",
  4350. "role": "Maintainer"
  4351. },
  4352. {
  4353. "name": "Abdulla Abu-Zakham",
  4354. "homepage": "https://www.drupal.org/u/abu-zakham",
  4355. "role": "Maintainer"
  4356. },
  4357. {
  4358. "name": "Rajab Natshah",
  4359. "homepage": "https://www.drupal.org/u/rajabnatshah",
  4360. "role": "Maintainer"
  4361. },
  4362. {
  4363. "name": "populist",
  4364. "homepage": "https://www.drupal.org/user/58600"
  4365. },
  4366. {
  4367. "name": "squiggy",
  4368. "homepage": "https://www.drupal.org/user/44299"
  4369. }
  4370. ],
  4371. "description": "Total Control Administration Dashboard",
  4372. "homepage": "https://www.drupal.org/project/total_control",
  4373. "support": {
  4374. "source": "https://git.drupalcode.org/project/total_control/tree/8.x-2.x",
  4375. "issues": "https://www.drupal.org/project/issues/total_control"
  4376. }
  4377. },
  4378. {
  4379. "name": "drupal/transliterate_filenames",
  4380. "version": "1.4.0",
  4381. "source": {
  4382. "type": "git",
  4383. "url": "https://git.drupalcode.org/project/transliterate_filenames.git",
  4384. "reference": "8.x-1.4"
  4385. },
  4386. "dist": {
  4387. "type": "zip",
  4388. "url": "https://ftp.drupal.org/files/projects/transliterate_filenames-8.x-1.4.zip",
  4389. "reference": "8.x-1.4",
  4390. "shasum": "de190ae6d1923f95c61e597a00ef50d64cfd982b"
  4391. },
  4392. "require": {
  4393. "drupal/core": "^8 || ^9"
  4394. },
  4395. "type": "drupal-module",
  4396. "extra": {
  4397. "drupal": {
  4398. "version": "8.x-1.4",
  4399. "datestamp": "1589218989",
  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": "Alexander Dubovskoy",
  4413. "homepage": "https://www.drupal.org/u/adubovskoy",
  4414. "role": "Maintainer"
  4415. },
  4416. {
  4417. "name": "Andrei Ivnitskii",
  4418. "homepage": "https://www.drupal.org/u/ivnish",
  4419. "role": "Maintainer"
  4420. },
  4421. {
  4422. "name": "ivnish",
  4423. "homepage": "https://www.drupal.org/user/3547706"
  4424. }
  4425. ],
  4426. "description": "Transliteration for all uploading files (includes fields and ckeditor inline upload)",
  4427. "homepage": "https://www.drupal.org/project/transliterate_filenames",
  4428. "support": {
  4429. "source": "https://git.drupalcode.org/project/transliterate_filenames",
  4430. "issues": "https://www.drupal.org/project/issues/transliterate_filenames"
  4431. }
  4432. },
  4433. {
  4434. "name": "drupal/varbase_total_control",
  4435. "version": "6.11.0",
  4436. "source": {
  4437. "type": "git",
  4438. "url": "https://git.drupalcode.org/project/varbase_total_control.git",
  4439. "reference": "8.x-6.11"
  4440. },
  4441. "dist": {
  4442. "type": "zip",
  4443. "url": "https://ftp.drupal.org/files/projects/varbase_total_control-8.x-6.11.zip",
  4444. "reference": "8.x-6.11",
  4445. "shasum": "ce01ed87c8733433f3b129ae040d03e14bcdd3db"
  4446. },
  4447. "require": {
  4448. "composer/installers": "~1.0",
  4449. "cweagans/composer-patches": "~1.0",
  4450. "drupal/charts": "~3.0",
  4451. "drupal/core": "^8.8.0 || ~9.0.0",
  4452. "drupal/drupal-library-installer-plugin": "^0.3",
  4453. "drupal/google_analytics_reports": "~3.0",
  4454. "drupal/masonry": "~1.0",
  4455. "drupal/total_control": "~2.0",
  4456. "oomphinc/composer-installers-extender": "~1.0"
  4457. },
  4458. "suggest": {
  4459. "bower-asset/c3": "0.4.*: Provides JavaScript library necessary for C3",
  4460. "bower-asset/chartjs": "2.7.*: Provides JavaScript library necessary for Chart JS",
  4461. "bower-asset/d3": "3.5.*: Provides JavaScript library necessary for D3",
  4462. "npm-asset/imagesloaded": "~4.0: Provides JavaScript library necessary for Image Loaded",
  4463. "npm-asset/masonry-layout": "~4.0: Provides JavaScript library necessary for Masonry Layout"
  4464. },
  4465. "type": "drupal-module",
  4466. "extra": {
  4467. "drupal": {
  4468. "version": "8.x-6.11",
  4469. "datestamp": "1591080576",
  4470. "security-coverage": {
  4471. "status": "covered",
  4472. "message": "Covered by Drupal's security advisory policy"
  4473. }
  4474. },
  4475. "branch-alias": {
  4476. "dev-8.x-6.x": "8.6.x-dev"
  4477. },
  4478. "installer-types": [
  4479. "bower-asset",
  4480. "npm-asset"
  4481. ],
  4482. "drupal-libraries": {
  4483. "libraries": [
  4484. {
  4485. "name": "chartjs",
  4486. "package": "bower-asset/chartjs"
  4487. },
  4488. {
  4489. "name": "c3",
  4490. "package": "bower-asset/c3"
  4491. },
  4492. {
  4493. "name": "d3",
  4494. "package": "bower-asset/d3"
  4495. },
  4496. {
  4497. "name": "masonry",
  4498. "package": "npm-asset/masonry-layout"
  4499. },
  4500. {
  4501. "name": "imagesloaded",
  4502. "package": "npm-asset/imagesloaded"
  4503. }
  4504. ]
  4505. },
  4506. "enable-patching": true,
  4507. "composer-exit-on-patch-failure": true
  4508. },
  4509. "notification-url": "https://packages.drupal.org/8/downloads",
  4510. "license": [
  4511. "GPL-2.0-or-later"
  4512. ],
  4513. "authors": [
  4514. {
  4515. "name": "Vardot",
  4516. "homepage": "https://www.drupal.org/vardot",
  4517. "role": "Maintainer"
  4518. },
  4519. {
  4520. "name": "RajabNatshah",
  4521. "homepage": "https://www.drupal.org/user/1414312"
  4522. },
  4523. {
  4524. "name": "abu-zakham",
  4525. "homepage": "https://www.drupal.org/user/2836067"
  4526. }
  4527. ],
  4528. "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.",
  4529. "homepage": "https://github.com/Vardot/varbase_total_control",
  4530. "support": {
  4531. "source": "http://cgit.drupalcode.org/varbase_total_control",
  4532. "issues": "https://www.drupal.org/project/issues/varbase_total_control"
  4533. }
  4534. },
  4535. {
  4536. "name": "drupal/video_embed_field",
  4537. "version": "2.4.0",
  4538. "source": {
  4539. "type": "git",
  4540. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  4541. "reference": "8.x-2.4"
  4542. },
  4543. "dist": {
  4544. "type": "zip",
  4545. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.4.zip",
  4546. "reference": "8.x-2.4",
  4547. "shasum": "96b14bb93c1bb6a07b84315a4f87367870f8b574"
  4548. },
  4549. "require": {
  4550. "drupal/core": "^8.8 || ^9"
  4551. },
  4552. "require-dev": {
  4553. "drupal/colorbox": "^1.0",
  4554. "drupal/video_embed_media": "*"
  4555. },
  4556. "type": "drupal-module",
  4557. "extra": {
  4558. "drupal": {
  4559. "version": "8.x-2.4",
  4560. "datestamp": "1587686284",
  4561. "security-coverage": {
  4562. "status": "covered",
  4563. "message": "Covered by Drupal's security advisory policy"
  4564. }
  4565. }
  4566. },
  4567. "notification-url": "https://packages.drupal.org/8/downloads",
  4568. "license": [
  4569. "GPL-2.0+"
  4570. ],
  4571. "authors": [
  4572. {
  4573. "name": "Sam152",
  4574. "homepage": "https://www.drupal.org/user/1485048"
  4575. },
  4576. {
  4577. "name": "jec006",
  4578. "homepage": "https://www.drupal.org/user/855980"
  4579. },
  4580. {
  4581. "name": "plopesc",
  4582. "homepage": "https://www.drupal.org/user/282415"
  4583. }
  4584. ],
  4585. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  4586. "homepage": "https://www.drupal.org/project/video_embed_field",
  4587. "support": {
  4588. "source": "https://git.drupalcode.org/project/video_embed_field"
  4589. }
  4590. },
  4591. {
  4592. "name": "drupal/views_url_path_arguments",
  4593. "version": "1.1.0",
  4594. "source": {
  4595. "type": "git",
  4596. "url": "https://git.drupalcode.org/project/views_url_path_arguments.git",
  4597. "reference": "8.x-1.1"
  4598. },
  4599. "dist": {
  4600. "type": "zip",
  4601. "url": "https://ftp.drupal.org/files/projects/views_url_path_arguments-8.x-1.1.zip",
  4602. "reference": "8.x-1.1",
  4603. "shasum": "55f38957395ae8f35bcdbc44a0f12822e844c73e"
  4604. },
  4605. "require": {
  4606. "drupal/core": "^8 || ^9"
  4607. },
  4608. "type": "drupal-module",
  4609. "extra": {
  4610. "drupal": {
  4611. "version": "8.x-1.1",
  4612. "datestamp": "1586279325",
  4613. "security-coverage": {
  4614. "status": "covered",
  4615. "message": "Covered by Drupal's security advisory policy"
  4616. }
  4617. }
  4618. },
  4619. "notification-url": "https://packages.drupal.org/8/downloads",
  4620. "license": [
  4621. "GPL-2.0+"
  4622. ],
  4623. "authors": [
  4624. {
  4625. "name": "heddn",
  4626. "homepage": "https://www.drupal.org/user/1463982"
  4627. }
  4628. ],
  4629. "description": "Simple module to convert a view argument's entity id into its url path.",
  4630. "homepage": "https://www.drupal.org/project/views_url_path_arguments",
  4631. "keywords": [
  4632. "Drupal"
  4633. ],
  4634. "support": {
  4635. "source": "http://cgit.drupalcode.org/views_url_path_arguments",
  4636. "issues": "https://www.drupal.org/project/issues/views_url_path_arguments"
  4637. }
  4638. },
  4639. {
  4640. "name": "drush/drush",
  4641. "version": "10.3.1",
  4642. "source": {
  4643. "type": "git",
  4644. "url": "https://github.com/drush-ops/drush.git",
  4645. "reference": "aad2b17ad34801d9b55cff903e3e7db65d754b80"
  4646. },
  4647. "dist": {
  4648. "type": "zip",
  4649. "url": "https://api.github.com/repos/drush-ops/drush/zipball/aad2b17ad34801d9b55cff903e3e7db65d754b80",
  4650. "reference": "aad2b17ad34801d9b55cff903e3e7db65d754b80",
  4651. "shasum": ""
  4652. },
  4653. "require": {
  4654. "chi-teck/drupal-code-generator": "^1.30.5",
  4655. "composer/semver": "^1.4",
  4656. "consolidation/config": "^1.2",
  4657. "consolidation/filter-via-dot-access-data": "^1",
  4658. "consolidation/robo": "^1.4.11 || ^2",
  4659. "consolidation/site-alias": "^3.0.0@stable",
  4660. "consolidation/site-process": "^2.1 || ^4",
  4661. "ext-dom": "*",
  4662. "grasmash/yaml-expander": "^1.1.1",
  4663. "league/container": "~2",
  4664. "php": ">=7.1.3",
  4665. "psr/log": "~1.0",
  4666. "psy/psysh": "~0.6",
  4667. "symfony/event-dispatcher": "^3.4 || ^4.0",
  4668. "symfony/finder": "^3.4 || ^4.0",
  4669. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0",
  4670. "symfony/yaml": "^3.4 || ^4.0",
  4671. "webflo/drupal-finder": "^1.2",
  4672. "webmozart/path-util": "^2.1.0"
  4673. },
  4674. "require-dev": {
  4675. "composer/installers": "^1.7",
  4676. "cweagans/composer-patches": "~1.0",
  4677. "david-garcia/phpwhois": "4.3.0",
  4678. "drupal/alinks": "1.0.0",
  4679. "drupal/core-recommended": "^8.8",
  4680. "g1a/composer-test-scenarios": "^3",
  4681. "lox/xhprof": "dev-master",
  4682. "phpunit/phpunit": "^4.8.36 || ^6.1",
  4683. "squizlabs/php_codesniffer": "^2.7 || ^3",
  4684. "vlucas/phpdotenv": "^2.4"
  4685. },
  4686. "bin": [
  4687. "drush"
  4688. ],
  4689. "type": "library",
  4690. "extra": {
  4691. "installer-paths": {
  4692. "sut/core": [
  4693. "type:drupal-core"
  4694. ],
  4695. "sut/libraries/{$name}": [
  4696. "type:drupal-library"
  4697. ],
  4698. "sut/modules/unish/{$name}": [
  4699. "drupal/devel"
  4700. ],
  4701. "sut/themes/unish/{$name}": [
  4702. "drupal/empty_theme"
  4703. ],
  4704. "sut/modules/contrib/{$name}": [
  4705. "type:drupal-module"
  4706. ],
  4707. "sut/profiles/contrib/{$name}": [
  4708. "type:drupal-profile"
  4709. ],
  4710. "sut/themes/contrib/{$name}": [
  4711. "type:drupal-theme"
  4712. ],
  4713. "sut/drush/contrib/{$name}": [
  4714. "type:drupal-drush"
  4715. ]
  4716. },
  4717. "branch-alias": {
  4718. "dev-master": "10.x-dev"
  4719. }
  4720. },
  4721. "autoload": {
  4722. "psr-4": {
  4723. "Drush\\": "src/",
  4724. "Drush\\Internal\\": "src/internal-forks"
  4725. }
  4726. },
  4727. "notification-url": "https://packagist.org/downloads/",
  4728. "license": [
  4729. "GPL-2.0-or-later"
  4730. ],
  4731. "authors": [
  4732. {
  4733. "name": "Moshe Weitzman",
  4734. "email": "weitzman@tejasa.com"
  4735. },
  4736. {
  4737. "name": "Owen Barton",
  4738. "email": "drupal@owenbarton.com"
  4739. },
  4740. {
  4741. "name": "Greg Anderson",
  4742. "email": "greg.1.anderson@greenknowe.org"
  4743. },
  4744. {
  4745. "name": "Jonathan Araña Cruz",
  4746. "email": "jonhattan@faita.net"
  4747. },
  4748. {
  4749. "name": "Jonathan Hedstrom",
  4750. "email": "jhedstrom@gmail.com"
  4751. },
  4752. {
  4753. "name": "Christopher Gervais",
  4754. "email": "chris@ergonlogic.com"
  4755. },
  4756. {
  4757. "name": "Dave Reid",
  4758. "email": "dave@davereid.net"
  4759. },
  4760. {
  4761. "name": "Damian Lee",
  4762. "email": "damiankloip@googlemail.com"
  4763. }
  4764. ],
  4765. "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.",
  4766. "homepage": "http://www.drush.org",
  4767. "funding": [
  4768. {
  4769. "url": "https://github.com/weitzman",
  4770. "type": "github"
  4771. }
  4772. ],
  4773. "time": "2020-06-30T19:43:45+00:00"
  4774. },
  4775. {
  4776. "name": "easyrdf/easyrdf",
  4777. "version": "0.9.1",
  4778. "source": {
  4779. "type": "git",
  4780. "url": "https://github.com/easyrdf/easyrdf.git",
  4781. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  4782. },
  4783. "dist": {
  4784. "type": "zip",
  4785. "url": "https://api.github.com/repos/easyrdf/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  4786. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  4787. "shasum": ""
  4788. },
  4789. "require": {
  4790. "ext-mbstring": "*",
  4791. "ext-pcre": "*",
  4792. "php": ">=5.2.8"
  4793. },
  4794. "require-dev": {
  4795. "phpunit/phpunit": "~3.5",
  4796. "sami/sami": "~1.4",
  4797. "squizlabs/php_codesniffer": "~1.4.3"
  4798. },
  4799. "suggest": {
  4800. "ml/json-ld": "~1.0"
  4801. },
  4802. "type": "library",
  4803. "autoload": {
  4804. "psr-0": {
  4805. "EasyRdf_": "lib/"
  4806. }
  4807. },
  4808. "notification-url": "https://packagist.org/downloads/",
  4809. "license": [
  4810. "BSD-3-Clause"
  4811. ],
  4812. "authors": [
  4813. {
  4814. "name": "Nicholas Humfrey",
  4815. "email": "njh@aelius.com",
  4816. "homepage": "http://www.aelius.com/njh/",
  4817. "role": "Developer"
  4818. },
  4819. {
  4820. "name": "Alexey Zakhlestin",
  4821. "email": "indeyets@gmail.com",
  4822. "role": "Developer"
  4823. }
  4824. ],
  4825. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  4826. "homepage": "http://www.easyrdf.org/",
  4827. "keywords": [
  4828. "Linked Data",
  4829. "RDF",
  4830. "Semantic Web",
  4831. "Turtle",
  4832. "rdfa",
  4833. "sparql"
  4834. ],
  4835. "time": "2015-02-27T09:45:49+00:00"
  4836. },
  4837. {
  4838. "name": "egulias/email-validator",
  4839. "version": "2.1.17",
  4840. "source": {
  4841. "type": "git",
  4842. "url": "https://github.com/egulias/EmailValidator.git",
  4843. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a"
  4844. },
  4845. "dist": {
  4846. "type": "zip",
  4847. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ade6887fd9bd74177769645ab5c474824f8a418a",
  4848. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a",
  4849. "shasum": ""
  4850. },
  4851. "require": {
  4852. "doctrine/lexer": "^1.0.1",
  4853. "php": ">=5.5",
  4854. "symfony/polyfill-intl-idn": "^1.10"
  4855. },
  4856. "require-dev": {
  4857. "dominicsayers/isemail": "^3.0.7",
  4858. "phpunit/phpunit": "^4.8.36|^7.5.15",
  4859. "satooshi/php-coveralls": "^1.0.1"
  4860. },
  4861. "suggest": {
  4862. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  4863. },
  4864. "type": "library",
  4865. "extra": {
  4866. "branch-alias": {
  4867. "dev-master": "2.1.x-dev"
  4868. }
  4869. },
  4870. "autoload": {
  4871. "psr-4": {
  4872. "Egulias\\EmailValidator\\": "EmailValidator"
  4873. }
  4874. },
  4875. "notification-url": "https://packagist.org/downloads/",
  4876. "license": [
  4877. "MIT"
  4878. ],
  4879. "authors": [
  4880. {
  4881. "name": "Eduardo Gulias Davis"
  4882. }
  4883. ],
  4884. "description": "A library for validating emails against several RFCs",
  4885. "homepage": "https://github.com/egulias/EmailValidator",
  4886. "keywords": [
  4887. "email",
  4888. "emailvalidation",
  4889. "emailvalidator",
  4890. "validation",
  4891. "validator"
  4892. ],
  4893. "time": "2020-02-13T22:36:52+00:00"
  4894. },
  4895. {
  4896. "name": "gasparesganga/php-shapefile",
  4897. "version": "v3.3.0",
  4898. "source": {
  4899. "type": "git",
  4900. "url": "https://github.com/gasparesganga/php-shapefile.git",
  4901. "reference": "af9b7221ddaf36a85a37e6a23281bd53ed750c4d"
  4902. },
  4903. "dist": {
  4904. "type": "zip",
  4905. "url": "https://api.github.com/repos/gasparesganga/php-shapefile/zipball/af9b7221ddaf36a85a37e6a23281bd53ed750c4d",
  4906. "reference": "af9b7221ddaf36a85a37e6a23281bd53ed750c4d",
  4907. "shasum": ""
  4908. },
  4909. "require": {
  4910. "php": ">=5.4.0"
  4911. },
  4912. "type": "library",
  4913. "autoload": {
  4914. "psr-4": {
  4915. "Shapefile\\": "src/Shapefile/"
  4916. }
  4917. },
  4918. "notification-url": "https://packagist.org/downloads/",
  4919. "license": [
  4920. "MIT"
  4921. ],
  4922. "authors": [
  4923. {
  4924. "name": "Gaspare Sganga",
  4925. "email": "contact@gasparesganga.com",
  4926. "homepage": "https://gasparesganga.com/labs/php-shapefile/",
  4927. "role": "Developer"
  4928. }
  4929. ],
  4930. "description": "PHP library to read and write ESRI Shapefiles, compatible with WKT and GeoJSON",
  4931. "homepage": "https://gasparesganga.com/labs/php-shapefile/",
  4932. "keywords": [
  4933. "ESRI",
  4934. "Shapefile",
  4935. "dbf",
  4936. "geojson",
  4937. "shape",
  4938. "shp",
  4939. "wkt"
  4940. ],
  4941. "time": "2020-05-23T09:10:21+00:00"
  4942. },
  4943. {
  4944. "name": "geocoder-php/common-http",
  4945. "version": "4.3.0",
  4946. "source": {
  4947. "type": "git",
  4948. "url": "https://github.com/geocoder-php/php-common-http.git",
  4949. "reference": "2995af04aa877ecb705054556bdea540662db971"
  4950. },
  4951. "dist": {
  4952. "type": "zip",
  4953. "url": "https://api.github.com/repos/geocoder-php/php-common-http/zipball/2995af04aa877ecb705054556bdea540662db971",
  4954. "reference": "2995af04aa877ecb705054556bdea540662db971",
  4955. "shasum": ""
  4956. },
  4957. "require": {
  4958. "php": "^7.2",
  4959. "php-http/client-implementation": "^1.0",
  4960. "php-http/discovery": "^1.6",
  4961. "php-http/httplug": "^1.0 || ^2.0",
  4962. "php-http/message-factory": "^1.0.2",
  4963. "psr/http-message": "^1.0",
  4964. "psr/http-message-implementation": "^1.0",
  4965. "willdurand/geocoder": "^4.0"
  4966. },
  4967. "require-dev": {
  4968. "nyholm/psr7": "^1.0",
  4969. "php-http/message": "^1.0",
  4970. "php-http/mock-client": "^1.0",
  4971. "phpunit/phpunit": "^7.5",
  4972. "symfony/stopwatch": "~2.5"
  4973. },
  4974. "type": "library",
  4975. "extra": {
  4976. "branch-alias": {
  4977. "dev-master": "4.0-dev"
  4978. }
  4979. },
  4980. "autoload": {
  4981. "psr-4": {
  4982. "Geocoder\\Http\\": ""
  4983. },
  4984. "exclude-from-classmap": [
  4985. "/Tests/"
  4986. ]
  4987. },
  4988. "notification-url": "https://packagist.org/downloads/",
  4989. "license": [
  4990. "MIT"
  4991. ],
  4992. "authors": [
  4993. {
  4994. "name": "Tobias Nyholm",
  4995. "email": "tobias.nyholm@gmail.com"
  4996. }
  4997. ],
  4998. "description": "Common files for HTTP based Geocoders",
  4999. "homepage": "http://geocoder-php.org",
  5000. "keywords": [
  5001. "http geocoder"
  5002. ],
  5003. "time": "2020-07-04T13:18:10+00:00"
  5004. },
  5005. {
  5006. "name": "geocoder-php/google-maps-provider",
  5007. "version": "4.5.0",
  5008. "source": {
  5009. "type": "git",
  5010. "url": "https://github.com/geocoder-php/google-maps-provider.git",
  5011. "reference": "830e5cd42eba6cb42a7a72788049edcb73f2d632"
  5012. },
  5013. "dist": {
  5014. "type": "zip",
  5015. "url": "https://api.github.com/repos/geocoder-php/google-maps-provider/zipball/830e5cd42eba6cb42a7a72788049edcb73f2d632",
  5016. "reference": "830e5cd42eba6cb42a7a72788049edcb73f2d632",
  5017. "shasum": ""
  5018. },
  5019. "require": {
  5020. "geocoder-php/common-http": "^4.0",
  5021. "php": "^7.2",
  5022. "willdurand/geocoder": "^4.0"
  5023. },
  5024. "provide": {
  5025. "geocoder-php/provider-implementation": "1.0"
  5026. },
  5027. "require-dev": {
  5028. "geocoder-php/provider-integration-tests": "^1.0",
  5029. "php-http/curl-client": "^1.7",
  5030. "php-http/message": "^1.0",
  5031. "phpunit/phpunit": "^7.5"
  5032. },
  5033. "type": "library",
  5034. "extra": {
  5035. "branch-alias": {
  5036. "dev-master": "4.0-dev"
  5037. }
  5038. },
  5039. "autoload": {
  5040. "psr-4": {
  5041. "Geocoder\\Provider\\GoogleMaps\\": ""
  5042. },
  5043. "exclude-from-classmap": [
  5044. "/Tests/"
  5045. ]
  5046. },
  5047. "notification-url": "https://packagist.org/downloads/",
  5048. "license": [
  5049. "MIT"
  5050. ],
  5051. "authors": [
  5052. {
  5053. "name": "William Durand",
  5054. "email": "william.durand1@gmail.com"
  5055. }
  5056. ],
  5057. "description": "Geocoder GoogleMaps adapter",
  5058. "homepage": "http://geocoder-php.org/Geocoder/",
  5059. "time": "2020-07-04T13:18:10+00:00"
  5060. },
  5061. {
  5062. "name": "google/protobuf",
  5063. "version": "v3.6.1.3",
  5064. "source": {
  5065. "type": "git",
  5066. "url": "https://github.com/protocolbuffers/protobuf-php.git",
  5067. "reference": "c39346815303f63ad295d6499e11d914c40040e6"
  5068. },
  5069. "dist": {
  5070. "type": "zip",
  5071. "url": "https://api.github.com/repos/protocolbuffers/protobuf-php/zipball/c39346815303f63ad295d6499e11d914c40040e6",
  5072. "reference": "c39346815303f63ad295d6499e11d914c40040e6",
  5073. "shasum": ""
  5074. },
  5075. "require": {
  5076. "php": ">=5.5.0"
  5077. },
  5078. "require-dev": {
  5079. "phpunit/phpunit": ">=4.8.0"
  5080. },
  5081. "suggest": {
  5082. "ext-bcmath": "Need to support JSON deserialization"
  5083. },
  5084. "type": "library",
  5085. "autoload": {
  5086. "psr-4": {
  5087. "Google\\Protobuf\\": "src/Google/Protobuf",
  5088. "GPBMetadata\\Google\\Protobuf\\": "src/GPBMetadata/Google/Protobuf"
  5089. }
  5090. },
  5091. "notification-url": "https://packagist.org/downloads/",
  5092. "license": [
  5093. "BSD-3-Clause"
  5094. ],
  5095. "description": "proto library for PHP",
  5096. "homepage": "https://developers.google.com/protocol-buffers/",
  5097. "keywords": [
  5098. "proto"
  5099. ],
  5100. "time": "2019-02-25T22:48:21+00:00"
  5101. },
  5102. {
  5103. "name": "grasmash/expander",
  5104. "version": "1.0.0",
  5105. "source": {
  5106. "type": "git",
  5107. "url": "https://github.com/grasmash/expander.git",
  5108. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  5109. },
  5110. "dist": {
  5111. "type": "zip",
  5112. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5113. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5114. "shasum": ""
  5115. },
  5116. "require": {
  5117. "dflydev/dot-access-data": "^1.1.0",
  5118. "php": ">=5.4"
  5119. },
  5120. "require-dev": {
  5121. "greg-1-anderson/composer-test-scenarios": "^1",
  5122. "phpunit/phpunit": "^4|^5.5.4",
  5123. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5124. "squizlabs/php_codesniffer": "^2.7"
  5125. },
  5126. "type": "library",
  5127. "extra": {
  5128. "branch-alias": {
  5129. "dev-master": "1.x-dev"
  5130. }
  5131. },
  5132. "autoload": {
  5133. "psr-4": {
  5134. "Grasmash\\Expander\\": "src/"
  5135. }
  5136. },
  5137. "notification-url": "https://packagist.org/downloads/",
  5138. "license": [
  5139. "MIT"
  5140. ],
  5141. "authors": [
  5142. {
  5143. "name": "Matthew Grasmick"
  5144. }
  5145. ],
  5146. "description": "Expands internal property references in PHP arrays file.",
  5147. "time": "2017-12-21T22:14:55+00:00"
  5148. },
  5149. {
  5150. "name": "grasmash/yaml-expander",
  5151. "version": "1.4.0",
  5152. "source": {
  5153. "type": "git",
  5154. "url": "https://github.com/grasmash/yaml-expander.git",
  5155. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  5156. },
  5157. "dist": {
  5158. "type": "zip",
  5159. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5160. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5161. "shasum": ""
  5162. },
  5163. "require": {
  5164. "dflydev/dot-access-data": "^1.1.0",
  5165. "php": ">=5.4",
  5166. "symfony/yaml": "^2.8.11|^3|^4"
  5167. },
  5168. "require-dev": {
  5169. "greg-1-anderson/composer-test-scenarios": "^1",
  5170. "phpunit/phpunit": "^4.8|^5.5.4",
  5171. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5172. "squizlabs/php_codesniffer": "^2.7"
  5173. },
  5174. "type": "library",
  5175. "extra": {
  5176. "branch-alias": {
  5177. "dev-master": "1.x-dev"
  5178. }
  5179. },
  5180. "autoload": {
  5181. "psr-4": {
  5182. "Grasmash\\YamlExpander\\": "src/"
  5183. }
  5184. },
  5185. "notification-url": "https://packagist.org/downloads/",
  5186. "license": [
  5187. "MIT"
  5188. ],
  5189. "authors": [
  5190. {
  5191. "name": "Matthew Grasmick"
  5192. }
  5193. ],
  5194. "description": "Expands internal property references in a yaml file.",
  5195. "time": "2017-12-16T16:06:03+00:00"
  5196. },
  5197. {
  5198. "name": "guzzlehttp/guzzle",
  5199. "version": "6.5.4",
  5200. "source": {
  5201. "type": "git",
  5202. "url": "https://github.com/guzzle/guzzle.git",
  5203. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d"
  5204. },
  5205. "dist": {
  5206. "type": "zip",
  5207. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  5208. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  5209. "shasum": ""
  5210. },
  5211. "require": {
  5212. "ext-json": "*",
  5213. "guzzlehttp/promises": "^1.0",
  5214. "guzzlehttp/psr7": "^1.6.1",
  5215. "php": ">=5.5",
  5216. "symfony/polyfill-intl-idn": "1.17.0"
  5217. },
  5218. "require-dev": {
  5219. "ext-curl": "*",
  5220. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  5221. "psr/log": "^1.1"
  5222. },
  5223. "suggest": {
  5224. "psr/log": "Required for using the Log middleware"
  5225. },
  5226. "type": "library",
  5227. "extra": {
  5228. "branch-alias": {
  5229. "dev-master": "6.5-dev"
  5230. }
  5231. },
  5232. "autoload": {
  5233. "psr-4": {
  5234. "GuzzleHttp\\": "src/"
  5235. },
  5236. "files": [
  5237. "src/functions_include.php"
  5238. ]
  5239. },
  5240. "notification-url": "https://packagist.org/downloads/",
  5241. "license": [
  5242. "MIT"
  5243. ],
  5244. "authors": [
  5245. {
  5246. "name": "Michael Dowling",
  5247. "email": "mtdowling@gmail.com",
  5248. "homepage": "https://github.com/mtdowling"
  5249. }
  5250. ],
  5251. "description": "Guzzle is a PHP HTTP client library",
  5252. "homepage": "http://guzzlephp.org/",
  5253. "keywords": [
  5254. "client",
  5255. "curl",
  5256. "framework",
  5257. "http",
  5258. "http client",
  5259. "rest",
  5260. "web service"
  5261. ],
  5262. "time": "2020-05-25T19:35:05+00:00"
  5263. },
  5264. {
  5265. "name": "guzzlehttp/promises",
  5266. "version": "v1.3.1",
  5267. "source": {
  5268. "type": "git",
  5269. "url": "https://github.com/guzzle/promises.git",
  5270. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  5271. },
  5272. "dist": {
  5273. "type": "zip",
  5274. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  5275. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  5276. "shasum": ""
  5277. },
  5278. "require": {
  5279. "php": ">=5.5.0"
  5280. },
  5281. "require-dev": {
  5282. "phpunit/phpunit": "^4.0"
  5283. },
  5284. "type": "library",
  5285. "extra": {
  5286. "branch-alias": {
  5287. "dev-master": "1.4-dev"
  5288. }
  5289. },
  5290. "autoload": {
  5291. "psr-4": {
  5292. "GuzzleHttp\\Promise\\": "src/"
  5293. },
  5294. "files": [
  5295. "src/functions_include.php"
  5296. ]
  5297. },
  5298. "notification-url": "https://packagist.org/downloads/",
  5299. "license": [
  5300. "MIT"
  5301. ],
  5302. "authors": [
  5303. {
  5304. "name": "Michael Dowling",
  5305. "email": "mtdowling@gmail.com",
  5306. "homepage": "https://github.com/mtdowling"
  5307. }
  5308. ],
  5309. "description": "Guzzle promises library",
  5310. "keywords": [
  5311. "promise"
  5312. ],
  5313. "time": "2016-12-20T10:07:11+00:00"
  5314. },
  5315. {
  5316. "name": "guzzlehttp/psr7",
  5317. "version": "1.6.1",
  5318. "source": {
  5319. "type": "git",
  5320. "url": "https://github.com/guzzle/psr7.git",
  5321. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  5322. },
  5323. "dist": {
  5324. "type": "zip",
  5325. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  5326. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  5327. "shasum": ""
  5328. },
  5329. "require": {
  5330. "php": ">=5.4.0",
  5331. "psr/http-message": "~1.0",
  5332. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  5333. },
  5334. "provide": {
  5335. "psr/http-message-implementation": "1.0"
  5336. },
  5337. "require-dev": {
  5338. "ext-zlib": "*",
  5339. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  5340. },
  5341. "suggest": {
  5342. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  5343. },
  5344. "type": "library",
  5345. "extra": {
  5346. "branch-alias": {
  5347. "dev-master": "1.6-dev"
  5348. }
  5349. },
  5350. "autoload": {
  5351. "psr-4": {
  5352. "GuzzleHttp\\Psr7\\": "src/"
  5353. },
  5354. "files": [
  5355. "src/functions_include.php"
  5356. ]
  5357. },
  5358. "notification-url": "https://packagist.org/downloads/",
  5359. "license": [
  5360. "MIT"
  5361. ],
  5362. "authors": [
  5363. {
  5364. "name": "Michael Dowling",
  5365. "email": "mtdowling@gmail.com",
  5366. "homepage": "https://github.com/mtdowling"
  5367. },
  5368. {
  5369. "name": "Tobias Schultze",
  5370. "homepage": "https://github.com/Tobion"
  5371. }
  5372. ],
  5373. "description": "PSR-7 message implementation that also provides common utility methods",
  5374. "keywords": [
  5375. "http",
  5376. "message",
  5377. "psr-7",
  5378. "request",
  5379. "response",
  5380. "stream",
  5381. "uri",
  5382. "url"
  5383. ],
  5384. "time": "2019-07-01T23:21:34+00:00"
  5385. },
  5386. {
  5387. "name": "laminas/laminas-diactoros",
  5388. "version": "1.8.7p2",
  5389. "source": {
  5390. "type": "git",
  5391. "url": "https://github.com/laminas/laminas-diactoros.git",
  5392. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa"
  5393. },
  5394. "dist": {
  5395. "type": "zip",
  5396. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/6991c1af7c8d2c8efee81b22ba97024781824aaa",
  5397. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa",
  5398. "shasum": ""
  5399. },
  5400. "require": {
  5401. "laminas/laminas-zendframework-bridge": "^1.0",
  5402. "php": "^5.6 || ^7.0",
  5403. "psr/http-message": "^1.0"
  5404. },
  5405. "provide": {
  5406. "psr/http-message-implementation": "1.0"
  5407. },
  5408. "replace": {
  5409. "zendframework/zend-diactoros": "~1.8.7.0"
  5410. },
  5411. "require-dev": {
  5412. "ext-dom": "*",
  5413. "ext-libxml": "*",
  5414. "laminas/laminas-coding-standard": "~1.0",
  5415. "php-http/psr7-integration-tests": "dev-master",
  5416. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7"
  5417. },
  5418. "type": "library",
  5419. "extra": {
  5420. "branch-alias": {
  5421. "dev-release-1.8": "1.8.x-dev"
  5422. }
  5423. },
  5424. "autoload": {
  5425. "files": [
  5426. "src/functions/create_uploaded_file.php",
  5427. "src/functions/marshal_headers_from_sapi.php",
  5428. "src/functions/marshal_method_from_sapi.php",
  5429. "src/functions/marshal_protocol_version_from_sapi.php",
  5430. "src/functions/marshal_uri_from_sapi.php",
  5431. "src/functions/normalize_server.php",
  5432. "src/functions/normalize_uploaded_files.php",
  5433. "src/functions/parse_cookie_header.php",
  5434. "src/functions/create_uploaded_file.legacy.php",
  5435. "src/functions/marshal_headers_from_sapi.legacy.php",
  5436. "src/functions/marshal_method_from_sapi.legacy.php",
  5437. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  5438. "src/functions/marshal_uri_from_sapi.legacy.php",
  5439. "src/functions/normalize_server.legacy.php",
  5440. "src/functions/normalize_uploaded_files.legacy.php",
  5441. "src/functions/parse_cookie_header.legacy.php"
  5442. ],
  5443. "psr-4": {
  5444. "Laminas\\Diactoros\\": "src/"
  5445. }
  5446. },
  5447. "notification-url": "https://packagist.org/downloads/",
  5448. "license": [
  5449. "BSD-3-Clause"
  5450. ],
  5451. "description": "PSR HTTP Message implementations",
  5452. "homepage": "https://laminas.dev",
  5453. "keywords": [
  5454. "http",
  5455. "laminas",
  5456. "psr",
  5457. "psr-7"
  5458. ],
  5459. "time": "2020-03-23T15:28:28+00:00"
  5460. },
  5461. {
  5462. "name": "laminas/laminas-escaper",
  5463. "version": "2.6.1",
  5464. "source": {
  5465. "type": "git",
  5466. "url": "https://github.com/laminas/laminas-escaper.git",
  5467. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70"
  5468. },
  5469. "dist": {
  5470. "type": "zip",
  5471. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/25f2a053eadfa92ddacb609dcbbc39362610da70",
  5472. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70",
  5473. "shasum": ""
  5474. },
  5475. "require": {
  5476. "laminas/laminas-zendframework-bridge": "^1.0",
  5477. "php": "^5.6 || ^7.0"
  5478. },
  5479. "replace": {
  5480. "zendframework/zend-escaper": "self.version"
  5481. },
  5482. "require-dev": {
  5483. "laminas/laminas-coding-standard": "~1.0.0",
  5484. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  5485. },
  5486. "type": "library",
  5487. "extra": {
  5488. "branch-alias": {
  5489. "dev-master": "2.6.x-dev",
  5490. "dev-develop": "2.7.x-dev"
  5491. }
  5492. },
  5493. "autoload": {
  5494. "psr-4": {
  5495. "Laminas\\Escaper\\": "src/"
  5496. }
  5497. },
  5498. "notification-url": "https://packagist.org/downloads/",
  5499. "license": [
  5500. "BSD-3-Clause"
  5501. ],
  5502. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  5503. "homepage": "https://laminas.dev",
  5504. "keywords": [
  5505. "escaper",
  5506. "laminas"
  5507. ],
  5508. "time": "2019-12-31T16:43:30+00:00"
  5509. },
  5510. {
  5511. "name": "laminas/laminas-feed",
  5512. "version": "2.12.2",
  5513. "source": {
  5514. "type": "git",
  5515. "url": "https://github.com/laminas/laminas-feed.git",
  5516. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654"
  5517. },
  5518. "dist": {
  5519. "type": "zip",
  5520. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  5521. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  5522. "shasum": ""
  5523. },
  5524. "require": {
  5525. "ext-dom": "*",
  5526. "ext-libxml": "*",
  5527. "laminas/laminas-escaper": "^2.5.2",
  5528. "laminas/laminas-stdlib": "^3.2.1",
  5529. "laminas/laminas-zendframework-bridge": "^1.0",
  5530. "php": "^5.6 || ^7.0"
  5531. },
  5532. "replace": {
  5533. "zendframework/zend-feed": "^2.12.0"
  5534. },
  5535. "require-dev": {
  5536. "laminas/laminas-cache": "^2.7.2",
  5537. "laminas/laminas-coding-standard": "~1.0.0",
  5538. "laminas/laminas-db": "^2.8.2",
  5539. "laminas/laminas-http": "^2.7",
  5540. "laminas/laminas-servicemanager": "^2.7.8 || ^3.3",
  5541. "laminas/laminas-validator": "^2.10.1",
  5542. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.20",
  5543. "psr/http-message": "^1.0.1"
  5544. },
  5545. "suggest": {
  5546. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  5547. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  5548. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  5549. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  5550. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  5551. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  5552. },
  5553. "type": "library",
  5554. "extra": {
  5555. "branch-alias": {
  5556. "dev-master": "2.12.x-dev",
  5557. "dev-develop": "2.13.x-dev"
  5558. }
  5559. },
  5560. "autoload": {
  5561. "psr-4": {
  5562. "Laminas\\Feed\\": "src/"
  5563. }
  5564. },
  5565. "notification-url": "https://packagist.org/downloads/",
  5566. "license": [
  5567. "BSD-3-Clause"
  5568. ],
  5569. "description": "provides functionality for consuming RSS and Atom feeds",
  5570. "homepage": "https://laminas.dev",
  5571. "keywords": [
  5572. "feed",
  5573. "laminas"
  5574. ],
  5575. "time": "2020-03-29T12:36:29+00:00"
  5576. },
  5577. {
  5578. "name": "laminas/laminas-stdlib",
  5579. "version": "3.2.1",
  5580. "source": {
  5581. "type": "git",
  5582. "url": "https://github.com/laminas/laminas-stdlib.git",
  5583. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6"
  5584. },
  5585. "dist": {
  5586. "type": "zip",
  5587. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/2b18347625a2f06a1a485acfbc870f699dbe51c6",
  5588. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6",
  5589. "shasum": ""
  5590. },
  5591. "require": {
  5592. "laminas/laminas-zendframework-bridge": "^1.0",
  5593. "php": "^5.6 || ^7.0"
  5594. },
  5595. "replace": {
  5596. "zendframework/zend-stdlib": "self.version"
  5597. },
  5598. "require-dev": {
  5599. "laminas/laminas-coding-standard": "~1.0.0",
  5600. "phpbench/phpbench": "^0.13",
  5601. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  5602. },
  5603. "type": "library",
  5604. "extra": {
  5605. "branch-alias": {
  5606. "dev-master": "3.2.x-dev",
  5607. "dev-develop": "3.3.x-dev"
  5608. }
  5609. },
  5610. "autoload": {
  5611. "psr-4": {
  5612. "Laminas\\Stdlib\\": "src/"
  5613. }
  5614. },
  5615. "notification-url": "https://packagist.org/downloads/",
  5616. "license": [
  5617. "BSD-3-Clause"
  5618. ],
  5619. "description": "SPL extensions, array utilities, error handlers, and more",
  5620. "homepage": "https://laminas.dev",
  5621. "keywords": [
  5622. "laminas",
  5623. "stdlib"
  5624. ],
  5625. "time": "2019-12-31T17:51:15+00:00"
  5626. },
  5627. {
  5628. "name": "laminas/laminas-zendframework-bridge",
  5629. "version": "1.0.4",
  5630. "source": {
  5631. "type": "git",
  5632. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  5633. "reference": "fcd87520e4943d968557803919523772475e8ea3"
  5634. },
  5635. "dist": {
  5636. "type": "zip",
  5637. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/fcd87520e4943d968557803919523772475e8ea3",
  5638. "reference": "fcd87520e4943d968557803919523772475e8ea3",
  5639. "shasum": ""
  5640. },
  5641. "require": {
  5642. "php": "^5.6 || ^7.0"
  5643. },
  5644. "require-dev": {
  5645. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1",
  5646. "squizlabs/php_codesniffer": "^3.5"
  5647. },
  5648. "type": "library",
  5649. "extra": {
  5650. "branch-alias": {
  5651. "dev-master": "1.0.x-dev",
  5652. "dev-develop": "1.1.x-dev"
  5653. },
  5654. "laminas": {
  5655. "module": "Laminas\\ZendFrameworkBridge"
  5656. }
  5657. },
  5658. "autoload": {
  5659. "files": [
  5660. "src/autoload.php"
  5661. ],
  5662. "psr-4": {
  5663. "Laminas\\ZendFrameworkBridge\\": "src//"
  5664. }
  5665. },
  5666. "notification-url": "https://packagist.org/downloads/",
  5667. "license": [
  5668. "BSD-3-Clause"
  5669. ],
  5670. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  5671. "keywords": [
  5672. "ZendFramework",
  5673. "autoloading",
  5674. "laminas",
  5675. "zf"
  5676. ],
  5677. "funding": [
  5678. {
  5679. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5680. "type": "community_bridge"
  5681. }
  5682. ],
  5683. "time": "2020-05-20T16:45:56+00:00"
  5684. },
  5685. {
  5686. "name": "league/container",
  5687. "version": "2.4.1",
  5688. "source": {
  5689. "type": "git",
  5690. "url": "https://github.com/thephpleague/container.git",
  5691. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  5692. },
  5693. "dist": {
  5694. "type": "zip",
  5695. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  5696. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  5697. "shasum": ""
  5698. },
  5699. "require": {
  5700. "container-interop/container-interop": "^1.2",
  5701. "php": "^5.4.0 || ^7.0"
  5702. },
  5703. "provide": {
  5704. "container-interop/container-interop-implementation": "^1.2",
  5705. "psr/container-implementation": "^1.0"
  5706. },
  5707. "replace": {
  5708. "orno/di": "~2.0"
  5709. },
  5710. "require-dev": {
  5711. "phpunit/phpunit": "4.*"
  5712. },
  5713. "type": "library",
  5714. "extra": {
  5715. "branch-alias": {
  5716. "dev-2.x": "2.x-dev",
  5717. "dev-1.x": "1.x-dev"
  5718. }
  5719. },
  5720. "autoload": {
  5721. "psr-4": {
  5722. "League\\Container\\": "src"
  5723. }
  5724. },
  5725. "notification-url": "https://packagist.org/downloads/",
  5726. "license": [
  5727. "MIT"
  5728. ],
  5729. "authors": [
  5730. {
  5731. "name": "Phil Bennett",
  5732. "email": "philipobenito@gmail.com",
  5733. "homepage": "http://www.philipobenito.com",
  5734. "role": "Developer"
  5735. }
  5736. ],
  5737. "description": "A fast and intuitive dependency injection container.",
  5738. "homepage": "https://github.com/thephpleague/container",
  5739. "keywords": [
  5740. "container",
  5741. "dependency",
  5742. "di",
  5743. "injection",
  5744. "league",
  5745. "provider",
  5746. "service"
  5747. ],
  5748. "time": "2017-05-10T09:20:27+00:00"
  5749. },
  5750. {
  5751. "name": "masterminds/html5",
  5752. "version": "2.3.0",
  5753. "source": {
  5754. "type": "git",
  5755. "url": "https://github.com/Masterminds/html5-php.git",
  5756. "reference": "2c37c6c520b995b761674de3be8455a381679067"
  5757. },
  5758. "dist": {
  5759. "type": "zip",
  5760. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067",
  5761. "reference": "2c37c6c520b995b761674de3be8455a381679067",
  5762. "shasum": ""
  5763. },
  5764. "require": {
  5765. "ext-libxml": "*",
  5766. "php": ">=5.3.0"
  5767. },
  5768. "require-dev": {
  5769. "phpunit/phpunit": "4.*",
  5770. "sami/sami": "~2.0",
  5771. "satooshi/php-coveralls": "1.0.*"
  5772. },
  5773. "type": "library",
  5774. "extra": {
  5775. "branch-alias": {
  5776. "dev-master": "2.2-dev"
  5777. }
  5778. },
  5779. "autoload": {
  5780. "psr-4": {
  5781. "Masterminds\\": "src"
  5782. }
  5783. },
  5784. "notification-url": "https://packagist.org/downloads/",
  5785. "license": [
  5786. "MIT"
  5787. ],
  5788. "authors": [
  5789. {
  5790. "name": "Matt Butcher",
  5791. "email": "technosophos@gmail.com"
  5792. },
  5793. {
  5794. "name": "Asmir Mustafic",
  5795. "email": "goetas@gmail.com"
  5796. },
  5797. {
  5798. "name": "Matt Farina",
  5799. "email": "matt@mattfarina.com"
  5800. }
  5801. ],
  5802. "description": "An HTML5 parser and serializer.",
  5803. "homepage": "http://masterminds.github.io/html5-php",
  5804. "keywords": [
  5805. "HTML5",
  5806. "dom",
  5807. "html",
  5808. "parser",
  5809. "querypath",
  5810. "serializer",
  5811. "xml"
  5812. ],
  5813. "time": "2017-09-04T12:26:28+00:00"
  5814. },
  5815. {
  5816. "name": "mdurrant/php-binary-reader",
  5817. "version": "1.0.9",
  5818. "source": {
  5819. "type": "git",
  5820. "url": "https://github.com/mdurrant/php-binary-reader.git",
  5821. "reference": "9abf18d7b361d0ae1cd80fc6782e59b313586db6"
  5822. },
  5823. "dist": {
  5824. "type": "zip",
  5825. "url": "https://api.github.com/repos/mdurrant/php-binary-reader/zipball/9abf18d7b361d0ae1cd80fc6782e59b313586db6",
  5826. "reference": "9abf18d7b361d0ae1cd80fc6782e59b313586db6",
  5827. "shasum": ""
  5828. },
  5829. "require": {
  5830. "php": ">=5.4"
  5831. },
  5832. "require-dev": {
  5833. "phpunit/phpunit": "~4.0",
  5834. "squizlabs/php_codesniffer": "~1.0"
  5835. },
  5836. "type": "library",
  5837. "extra": {
  5838. "branch-alias": {
  5839. "dev-master": "1.0.x-dev"
  5840. }
  5841. },
  5842. "autoload": {
  5843. "psr-4": {
  5844. "PhpBinaryReader\\": [
  5845. "src/",
  5846. "test/"
  5847. ]
  5848. }
  5849. },
  5850. "notification-url": "https://packagist.org/downloads/",
  5851. "license": [
  5852. "MIT"
  5853. ],
  5854. "authors": [
  5855. {
  5856. "name": "Matt Durrant",
  5857. "email": "mdurrant@gmail.com"
  5858. }
  5859. ],
  5860. "description": "Lightweight binary reader for PHP",
  5861. "time": "2016-12-08T01:24:19+00:00"
  5862. },
  5863. {
  5864. "name": "nikic/php-parser",
  5865. "version": "v4.6.0",
  5866. "source": {
  5867. "type": "git",
  5868. "url": "https://github.com/nikic/PHP-Parser.git",
  5869. "reference": "c346bbfafe2ff60680258b631afb730d186ed864"
  5870. },
  5871. "dist": {
  5872. "type": "zip",
  5873. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c346bbfafe2ff60680258b631afb730d186ed864",
  5874. "reference": "c346bbfafe2ff60680258b631afb730d186ed864",
  5875. "shasum": ""
  5876. },
  5877. "require": {
  5878. "ext-tokenizer": "*",
  5879. "php": ">=7.0"
  5880. },
  5881. "require-dev": {
  5882. "ircmaxell/php-yacc": "0.0.5",
  5883. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  5884. },
  5885. "bin": [
  5886. "bin/php-parse"
  5887. ],
  5888. "type": "library",
  5889. "extra": {
  5890. "branch-alias": {
  5891. "dev-master": "4.3-dev"
  5892. }
  5893. },
  5894. "autoload": {
  5895. "psr-4": {
  5896. "PhpParser\\": "lib/PhpParser"
  5897. }
  5898. },
  5899. "notification-url": "https://packagist.org/downloads/",
  5900. "license": [
  5901. "BSD-3-Clause"
  5902. ],
  5903. "authors": [
  5904. {
  5905. "name": "Nikita Popov"
  5906. }
  5907. ],
  5908. "description": "A PHP parser written in PHP",
  5909. "keywords": [
  5910. "parser",
  5911. "php"
  5912. ],
  5913. "time": "2020-07-02T17:12:47+00:00"
  5914. },
  5915. {
  5916. "name": "oomphinc/composer-installers-extender",
  5917. "version": "v1.1.2",
  5918. "source": {
  5919. "type": "git",
  5920. "url": "https://github.com/oomphinc/composer-installers-extender.git",
  5921. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56"
  5922. },
  5923. "dist": {
  5924. "type": "zip",
  5925. "url": "https://api.github.com/repos/oomphinc/composer-installers-extender/zipball/ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  5926. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  5927. "shasum": ""
  5928. },
  5929. "require": {
  5930. "composer-plugin-api": "^1.0",
  5931. "composer/installers": "^1.0"
  5932. },
  5933. "type": "composer-plugin",
  5934. "extra": {
  5935. "class": "OomphInc\\ComposerInstallersExtender\\Plugin"
  5936. },
  5937. "autoload": {
  5938. "psr-4": {
  5939. "OomphInc\\ComposerInstallersExtender\\": "src/"
  5940. }
  5941. },
  5942. "notification-url": "https://packagist.org/downloads/",
  5943. "license": [
  5944. "MIT"
  5945. ],
  5946. "authors": [
  5947. {
  5948. "name": "Stephen Beemsterboer",
  5949. "email": "stephen@oomphinc.com",
  5950. "homepage": "https://github.com/balbuf"
  5951. }
  5952. ],
  5953. "description": "Extend the composer/installers plugin to accept any arbitrary package type.",
  5954. "homepage": "http://www.oomphinc.com/",
  5955. "time": "2017-03-31T16:57:39+00:00"
  5956. },
  5957. {
  5958. "name": "paragonie/random_compat",
  5959. "version": "v9.99.99",
  5960. "source": {
  5961. "type": "git",
  5962. "url": "https://github.com/paragonie/random_compat.git",
  5963. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  5964. },
  5965. "dist": {
  5966. "type": "zip",
  5967. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  5968. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  5969. "shasum": ""
  5970. },
  5971. "require": {
  5972. "php": "^7"
  5973. },
  5974. "require-dev": {
  5975. "phpunit/phpunit": "4.*|5.*",
  5976. "vimeo/psalm": "^1"
  5977. },
  5978. "suggest": {
  5979. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5980. },
  5981. "type": "library",
  5982. "notification-url": "https://packagist.org/downloads/",
  5983. "license": [
  5984. "MIT"
  5985. ],
  5986. "authors": [
  5987. {
  5988. "name": "Paragon Initiative Enterprises",
  5989. "email": "security@paragonie.com",
  5990. "homepage": "https://paragonie.com"
  5991. }
  5992. ],
  5993. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5994. "keywords": [
  5995. "csprng",
  5996. "polyfill",
  5997. "pseudorandom",
  5998. "random"
  5999. ],
  6000. "time": "2018-07-02T15:55:56+00:00"
  6001. },
  6002. {
  6003. "name": "pear/archive_tar",
  6004. "version": "1.4.9",
  6005. "source": {
  6006. "type": "git",
  6007. "url": "https://github.com/pear/Archive_Tar.git",
  6008. "reference": "c5b00053770e1d72128252c62c2c1a12c26639f0"
  6009. },
  6010. "dist": {
  6011. "type": "zip",
  6012. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/c5b00053770e1d72128252c62c2c1a12c26639f0",
  6013. "reference": "c5b00053770e1d72128252c62c2c1a12c26639f0",
  6014. "shasum": ""
  6015. },
  6016. "require": {
  6017. "pear/pear-core-minimal": "^1.10.0alpha2",
  6018. "php": ">=5.2.0"
  6019. },
  6020. "require-dev": {
  6021. "phpunit/phpunit": "*"
  6022. },
  6023. "suggest": {
  6024. "ext-bz2": "Bz2 compression support.",
  6025. "ext-xz": "Lzma2 compression support.",
  6026. "ext-zlib": "Gzip compression support."
  6027. },
  6028. "type": "library",
  6029. "extra": {
  6030. "branch-alias": {
  6031. "dev-master": "1.4.x-dev"
  6032. }
  6033. },
  6034. "autoload": {
  6035. "psr-0": {
  6036. "Archive_Tar": ""
  6037. }
  6038. },
  6039. "notification-url": "https://packagist.org/downloads/",
  6040. "include-path": [
  6041. "./"
  6042. ],
  6043. "license": [
  6044. "BSD-3-Clause"
  6045. ],
  6046. "authors": [
  6047. {
  6048. "name": "Vincent Blavet",
  6049. "email": "vincent@phpconcept.net"
  6050. },
  6051. {
  6052. "name": "Greg Beaver",
  6053. "email": "greg@chiaraquartet.net"
  6054. },
  6055. {
  6056. "name": "Michiel Rook",
  6057. "email": "mrook@php.net"
  6058. }
  6059. ],
  6060. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  6061. "homepage": "https://github.com/pear/Archive_Tar",
  6062. "keywords": [
  6063. "archive",
  6064. "tar"
  6065. ],
  6066. "time": "2019-12-04T10:17:28+00:00"
  6067. },
  6068. {
  6069. "name": "pear/console_getopt",
  6070. "version": "v1.4.3",
  6071. "source": {
  6072. "type": "git",
  6073. "url": "https://github.com/pear/Console_Getopt.git",
  6074. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  6075. },
  6076. "dist": {
  6077. "type": "zip",
  6078. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6079. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6080. "shasum": ""
  6081. },
  6082. "type": "library",
  6083. "autoload": {
  6084. "psr-0": {
  6085. "Console": "./"
  6086. }
  6087. },
  6088. "notification-url": "https://packagist.org/downloads/",
  6089. "include-path": [
  6090. "./"
  6091. ],
  6092. "license": [
  6093. "BSD-2-Clause"
  6094. ],
  6095. "authors": [
  6096. {
  6097. "name": "Andrei Zmievski",
  6098. "email": "andrei@php.net",
  6099. "role": "Lead"
  6100. },
  6101. {
  6102. "name": "Stig Bakken",
  6103. "email": "stig@php.net",
  6104. "role": "Developer"
  6105. },
  6106. {
  6107. "name": "Greg Beaver",
  6108. "email": "cellog@php.net",
  6109. "role": "Helper"
  6110. }
  6111. ],
  6112. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  6113. "time": "2019-11-20T18:27:48+00:00"
  6114. },
  6115. {
  6116. "name": "pear/pear-core-minimal",
  6117. "version": "v1.10.10",
  6118. "source": {
  6119. "type": "git",
  6120. "url": "https://github.com/pear/pear-core-minimal.git",
  6121. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  6122. },
  6123. "dist": {
  6124. "type": "zip",
  6125. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  6126. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  6127. "shasum": ""
  6128. },
  6129. "require": {
  6130. "pear/console_getopt": "~1.4",
  6131. "pear/pear_exception": "~1.0"
  6132. },
  6133. "replace": {
  6134. "rsky/pear-core-min": "self.version"
  6135. },
  6136. "type": "library",
  6137. "autoload": {
  6138. "psr-0": {
  6139. "": "src/"
  6140. }
  6141. },
  6142. "notification-url": "https://packagist.org/downloads/",
  6143. "include-path": [
  6144. "src/"
  6145. ],
  6146. "license": [
  6147. "BSD-3-Clause"
  6148. ],
  6149. "authors": [
  6150. {
  6151. "name": "Christian Weiske",
  6152. "email": "cweiske@php.net",
  6153. "role": "Lead"
  6154. }
  6155. ],
  6156. "description": "Minimal set of PEAR core files to be used as composer dependency",
  6157. "time": "2019-11-19T19:00:24+00:00"
  6158. },
  6159. {
  6160. "name": "pear/pear_exception",
  6161. "version": "v1.0.1",
  6162. "source": {
  6163. "type": "git",
  6164. "url": "https://github.com/pear/PEAR_Exception.git",
  6165. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7"
  6166. },
  6167. "dist": {
  6168. "type": "zip",
  6169. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  6170. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  6171. "shasum": ""
  6172. },
  6173. "require": {
  6174. "php": ">=4.4.0"
  6175. },
  6176. "require-dev": {
  6177. "phpunit/phpunit": "*"
  6178. },
  6179. "type": "class",
  6180. "extra": {
  6181. "branch-alias": {
  6182. "dev-master": "1.0.x-dev"
  6183. }
  6184. },
  6185. "autoload": {
  6186. "classmap": [
  6187. "PEAR/"
  6188. ]
  6189. },
  6190. "notification-url": "https://packagist.org/downloads/",
  6191. "include-path": [
  6192. "."
  6193. ],
  6194. "license": [
  6195. "BSD-2-Clause"
  6196. ],
  6197. "authors": [
  6198. {
  6199. "name": "Helgi Thormar",
  6200. "email": "dufuz@php.net"
  6201. },
  6202. {
  6203. "name": "Greg Beaver",
  6204. "email": "cellog@php.net"
  6205. }
  6206. ],
  6207. "description": "The PEAR Exception base class.",
  6208. "homepage": "https://github.com/pear/PEAR_Exception",
  6209. "keywords": [
  6210. "exception"
  6211. ],
  6212. "time": "2019-12-10T10:24:42+00:00"
  6213. },
  6214. {
  6215. "name": "phayes/geophp",
  6216. "version": "1.2",
  6217. "source": {
  6218. "type": "git",
  6219. "url": "https://github.com/phayes/geoPHP.git",
  6220. "reference": "015404e85b602e0df1f91441f8db0f9e98f7e567"
  6221. },
  6222. "dist": {
  6223. "type": "zip",
  6224. "url": "https://api.github.com/repos/phayes/geoPHP/zipball/015404e85b602e0df1f91441f8db0f9e98f7e567",
  6225. "reference": "015404e85b602e0df1f91441f8db0f9e98f7e567",
  6226. "shasum": ""
  6227. },
  6228. "require-dev": {
  6229. "phpunit/phpunit": "4.1.*"
  6230. },
  6231. "type": "library",
  6232. "autoload": {
  6233. "classmap": [
  6234. "geoPHP.inc"
  6235. ]
  6236. },
  6237. "notification-url": "https://packagist.org/downloads/",
  6238. "license": [
  6239. "GPL-2 or New-BSD"
  6240. ],
  6241. "authors": [
  6242. {
  6243. "name": "Patrick Hayes"
  6244. }
  6245. ],
  6246. "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.",
  6247. "homepage": "https://github.com/phayes/geoPHP",
  6248. "time": "2014-12-02T06:11:22+00:00"
  6249. },
  6250. {
  6251. "name": "php-http/discovery",
  6252. "version": "1.9.1",
  6253. "source": {
  6254. "type": "git",
  6255. "url": "https://github.com/php-http/discovery.git",
  6256. "reference": "64a18cc891957e05d91910b3c717d6bd11fbede9"
  6257. },
  6258. "dist": {
  6259. "type": "zip",
  6260. "url": "https://api.github.com/repos/php-http/discovery/zipball/64a18cc891957e05d91910b3c717d6bd11fbede9",
  6261. "reference": "64a18cc891957e05d91910b3c717d6bd11fbede9",
  6262. "shasum": ""
  6263. },
  6264. "require": {
  6265. "php": "^7.1 || ^8.0"
  6266. },
  6267. "conflict": {
  6268. "nyholm/psr7": "<1.0"
  6269. },
  6270. "require-dev": {
  6271. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  6272. "php-http/httplug": "^1.0 || ^2.0",
  6273. "php-http/message-factory": "^1.0",
  6274. "phpspec/phpspec": "^5.1 || ^6.1",
  6275. "puli/composer-plugin": "1.0.0-beta10"
  6276. },
  6277. "suggest": {
  6278. "php-http/message": "Allow to use Guzzle, Diactoros or Slim Framework factories",
  6279. "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."
  6280. },
  6281. "type": "library",
  6282. "extra": {
  6283. "branch-alias": {
  6284. "dev-master": "1.9-dev"
  6285. }
  6286. },
  6287. "autoload": {
  6288. "psr-4": {
  6289. "Http\\Discovery\\": "src/"
  6290. }
  6291. },
  6292. "notification-url": "https://packagist.org/downloads/",
  6293. "license": [
  6294. "MIT"
  6295. ],
  6296. "authors": [
  6297. {
  6298. "name": "Márk Sági-Kazár",
  6299. "email": "mark.sagikazar@gmail.com"
  6300. }
  6301. ],
  6302. "description": "Finds installed HTTPlug implementations and PSR-7 message factories",
  6303. "homepage": "http://php-http.org",
  6304. "keywords": [
  6305. "adapter",
  6306. "client",
  6307. "discovery",
  6308. "factory",
  6309. "http",
  6310. "message",
  6311. "psr7"
  6312. ],
  6313. "time": "2020-07-13T15:44:45+00:00"
  6314. },
  6315. {
  6316. "name": "php-http/guzzle6-adapter",
  6317. "version": "v1.1.1",
  6318. "source": {
  6319. "type": "git",
  6320. "url": "https://github.com/php-http/guzzle6-adapter.git",
  6321. "reference": "a56941f9dc6110409cfcddc91546ee97039277ab"
  6322. },
  6323. "dist": {
  6324. "type": "zip",
  6325. "url": "https://api.github.com/repos/php-http/guzzle6-adapter/zipball/a56941f9dc6110409cfcddc91546ee97039277ab",
  6326. "reference": "a56941f9dc6110409cfcddc91546ee97039277ab",
  6327. "shasum": ""
  6328. },
  6329. "require": {
  6330. "guzzlehttp/guzzle": "^6.0",
  6331. "php": ">=5.5.0",
  6332. "php-http/httplug": "^1.0"
  6333. },
  6334. "provide": {
  6335. "php-http/async-client-implementation": "1.0",
  6336. "php-http/client-implementation": "1.0"
  6337. },
  6338. "require-dev": {
  6339. "ext-curl": "*",
  6340. "php-http/adapter-integration-tests": "^0.4"
  6341. },
  6342. "type": "library",
  6343. "extra": {
  6344. "branch-alias": {
  6345. "dev-master": "1.2-dev"
  6346. }
  6347. },
  6348. "autoload": {
  6349. "psr-4": {
  6350. "Http\\Adapter\\Guzzle6\\": "src/"
  6351. }
  6352. },
  6353. "notification-url": "https://packagist.org/downloads/",
  6354. "license": [
  6355. "MIT"
  6356. ],
  6357. "authors": [
  6358. {
  6359. "name": "Márk Sági-Kazár",
  6360. "email": "mark.sagikazar@gmail.com"
  6361. },
  6362. {
  6363. "name": "David de Boer",
  6364. "email": "david@ddeboer.nl"
  6365. }
  6366. ],
  6367. "description": "Guzzle 6 HTTP Adapter",
  6368. "homepage": "http://httplug.io",
  6369. "keywords": [
  6370. "Guzzle",
  6371. "http"
  6372. ],
  6373. "time": "2016-05-10T06:13:32+00:00"
  6374. },
  6375. {
  6376. "name": "php-http/httplug",
  6377. "version": "v1.1.0",
  6378. "source": {
  6379. "type": "git",
  6380. "url": "https://github.com/php-http/httplug.git",
  6381. "reference": "1c6381726c18579c4ca2ef1ec1498fdae8bdf018"
  6382. },
  6383. "dist": {
  6384. "type": "zip",
  6385. "url": "https://api.github.com/repos/php-http/httplug/zipball/1c6381726c18579c4ca2ef1ec1498fdae8bdf018",
  6386. "reference": "1c6381726c18579c4ca2ef1ec1498fdae8bdf018",
  6387. "shasum": ""
  6388. },
  6389. "require": {
  6390. "php": ">=5.4",
  6391. "php-http/promise": "^1.0",
  6392. "psr/http-message": "^1.0"
  6393. },
  6394. "require-dev": {
  6395. "henrikbjorn/phpspec-code-coverage": "^1.0",
  6396. "phpspec/phpspec": "^2.4"
  6397. },
  6398. "type": "library",
  6399. "extra": {
  6400. "branch-alias": {
  6401. "dev-master": "1.1-dev"
  6402. }
  6403. },
  6404. "autoload": {
  6405. "psr-4": {
  6406. "Http\\Client\\": "src/"
  6407. }
  6408. },
  6409. "notification-url": "https://packagist.org/downloads/",
  6410. "license": [
  6411. "MIT"
  6412. ],
  6413. "authors": [
  6414. {
  6415. "name": "Eric GELOEN",
  6416. "email": "geloen.eric@gmail.com"
  6417. },
  6418. {
  6419. "name": "Márk Sági-Kazár",
  6420. "email": "mark.sagikazar@gmail.com"
  6421. }
  6422. ],
  6423. "description": "HTTPlug, the HTTP client abstraction for PHP",
  6424. "homepage": "http://httplug.io",
  6425. "keywords": [
  6426. "client",
  6427. "http"
  6428. ],
  6429. "time": "2016-08-31T08:30:17+00:00"
  6430. },
  6431. {
  6432. "name": "php-http/message",
  6433. "version": "1.8.0",
  6434. "source": {
  6435. "type": "git",
  6436. "url": "https://github.com/php-http/message.git",
  6437. "reference": "ce8f43ac1e294b54aabf5808515c3554a19c1e1c"
  6438. },
  6439. "dist": {
  6440. "type": "zip",
  6441. "url": "https://api.github.com/repos/php-http/message/zipball/ce8f43ac1e294b54aabf5808515c3554a19c1e1c",
  6442. "reference": "ce8f43ac1e294b54aabf5808515c3554a19c1e1c",
  6443. "shasum": ""
  6444. },
  6445. "require": {
  6446. "clue/stream-filter": "^1.4",
  6447. "php": "^7.1",
  6448. "php-http/message-factory": "^1.0.2",
  6449. "psr/http-message": "^1.0"
  6450. },
  6451. "provide": {
  6452. "php-http/message-factory-implementation": "1.0"
  6453. },
  6454. "require-dev": {
  6455. "akeneo/phpspec-skip-example-extension": "^1.0",
  6456. "coduo/phpspec-data-provider-extension": "^1.0",
  6457. "ext-zlib": "*",
  6458. "guzzlehttp/psr7": "^1.0",
  6459. "henrikbjorn/phpspec-code-coverage": "^1.0",
  6460. "phpspec/phpspec": "^2.4",
  6461. "slim/slim": "^3.0",
  6462. "zendframework/zend-diactoros": "^1.0"
  6463. },
  6464. "suggest": {
  6465. "ext-zlib": "Used with compressor/decompressor streams",
  6466. "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories",
  6467. "slim/slim": "Used with Slim Framework PSR-7 implementation",
  6468. "zendframework/zend-diactoros": "Used with Diactoros Factories"
  6469. },
  6470. "type": "library",
  6471. "extra": {
  6472. "branch-alias": {
  6473. "dev-master": "1.8-dev"
  6474. }
  6475. },
  6476. "autoload": {
  6477. "psr-4": {
  6478. "Http\\Message\\": "src/"
  6479. },
  6480. "files": [
  6481. "src/filters.php"
  6482. ]
  6483. },
  6484. "notification-url": "https://packagist.org/downloads/",
  6485. "license": [
  6486. "MIT"
  6487. ],
  6488. "authors": [
  6489. {
  6490. "name": "Márk Sági-Kazár",
  6491. "email": "mark.sagikazar@gmail.com"
  6492. }
  6493. ],
  6494. "description": "HTTP Message related tools",
  6495. "homepage": "http://php-http.org",
  6496. "keywords": [
  6497. "http",
  6498. "message",
  6499. "psr-7"
  6500. ],
  6501. "time": "2019-08-05T06:55:08+00:00"
  6502. },
  6503. {
  6504. "name": "php-http/message-factory",
  6505. "version": "v1.0.2",
  6506. "source": {
  6507. "type": "git",
  6508. "url": "https://github.com/php-http/message-factory.git",
  6509. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1"
  6510. },
  6511. "dist": {
  6512. "type": "zip",
  6513. "url": "https://api.github.com/repos/php-http/message-factory/zipball/a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  6514. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  6515. "shasum": ""
  6516. },
  6517. "require": {
  6518. "php": ">=5.4",
  6519. "psr/http-message": "^1.0"
  6520. },
  6521. "type": "library",
  6522. "extra": {
  6523. "branch-alias": {
  6524. "dev-master": "1.0-dev"
  6525. }
  6526. },
  6527. "autoload": {
  6528. "psr-4": {
  6529. "Http\\Message\\": "src/"
  6530. }
  6531. },
  6532. "notification-url": "https://packagist.org/downloads/",
  6533. "license": [
  6534. "MIT"
  6535. ],
  6536. "authors": [
  6537. {
  6538. "name": "Márk Sági-Kazár",
  6539. "email": "mark.sagikazar@gmail.com"
  6540. }
  6541. ],
  6542. "description": "Factory interfaces for PSR-7 HTTP Message",
  6543. "homepage": "http://php-http.org",
  6544. "keywords": [
  6545. "factory",
  6546. "http",
  6547. "message",
  6548. "stream",
  6549. "uri"
  6550. ],
  6551. "time": "2015-12-19T14:08:53+00:00"
  6552. },
  6553. {
  6554. "name": "php-http/promise",
  6555. "version": "1.1.0",
  6556. "source": {
  6557. "type": "git",
  6558. "url": "https://github.com/php-http/promise.git",
  6559. "reference": "4c4c1f9b7289a2ec57cde7f1e9762a5789506f88"
  6560. },
  6561. "dist": {
  6562. "type": "zip",
  6563. "url": "https://api.github.com/repos/php-http/promise/zipball/4c4c1f9b7289a2ec57cde7f1e9762a5789506f88",
  6564. "reference": "4c4c1f9b7289a2ec57cde7f1e9762a5789506f88",
  6565. "shasum": ""
  6566. },
  6567. "require": {
  6568. "php": "^7.1 || ^8.0"
  6569. },
  6570. "require-dev": {
  6571. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2",
  6572. "phpspec/phpspec": "^5.1.2 || ^6.2"
  6573. },
  6574. "type": "library",
  6575. "extra": {
  6576. "branch-alias": {
  6577. "dev-master": "1.1-dev"
  6578. }
  6579. },
  6580. "autoload": {
  6581. "psr-4": {
  6582. "Http\\Promise\\": "src/"
  6583. }
  6584. },
  6585. "notification-url": "https://packagist.org/downloads/",
  6586. "license": [
  6587. "MIT"
  6588. ],
  6589. "authors": [
  6590. {
  6591. "name": "Joel Wurtz",
  6592. "email": "joel.wurtz@gmail.com"
  6593. },
  6594. {
  6595. "name": "Márk Sági-Kazár",
  6596. "email": "mark.sagikazar@gmail.com"
  6597. }
  6598. ],
  6599. "description": "Promise used for asynchronous HTTP requests",
  6600. "homepage": "http://httplug.io",
  6601. "keywords": [
  6602. "promise"
  6603. ],
  6604. "time": "2020-07-07T09:29:14+00:00"
  6605. },
  6606. {
  6607. "name": "psr/container",
  6608. "version": "1.0.0",
  6609. "source": {
  6610. "type": "git",
  6611. "url": "https://github.com/php-fig/container.git",
  6612. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  6613. },
  6614. "dist": {
  6615. "type": "zip",
  6616. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  6617. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  6618. "shasum": ""
  6619. },
  6620. "require": {
  6621. "php": ">=5.3.0"
  6622. },
  6623. "type": "library",
  6624. "extra": {
  6625. "branch-alias": {
  6626. "dev-master": "1.0.x-dev"
  6627. }
  6628. },
  6629. "autoload": {
  6630. "psr-4": {
  6631. "Psr\\Container\\": "src/"
  6632. }
  6633. },
  6634. "notification-url": "https://packagist.org/downloads/",
  6635. "license": [
  6636. "MIT"
  6637. ],
  6638. "authors": [
  6639. {
  6640. "name": "PHP-FIG",
  6641. "homepage": "http://www.php-fig.org/"
  6642. }
  6643. ],
  6644. "description": "Common Container Interface (PHP FIG PSR-11)",
  6645. "homepage": "https://github.com/php-fig/container",
  6646. "keywords": [
  6647. "PSR-11",
  6648. "container",
  6649. "container-interface",
  6650. "container-interop",
  6651. "psr"
  6652. ],
  6653. "time": "2017-02-14T16:28:37+00:00"
  6654. },
  6655. {
  6656. "name": "psr/http-message",
  6657. "version": "1.0.1",
  6658. "source": {
  6659. "type": "git",
  6660. "url": "https://github.com/php-fig/http-message.git",
  6661. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  6662. },
  6663. "dist": {
  6664. "type": "zip",
  6665. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  6666. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  6667. "shasum": ""
  6668. },
  6669. "require": {
  6670. "php": ">=5.3.0"
  6671. },
  6672. "type": "library",
  6673. "extra": {
  6674. "branch-alias": {
  6675. "dev-master": "1.0.x-dev"
  6676. }
  6677. },
  6678. "autoload": {
  6679. "psr-4": {
  6680. "Psr\\Http\\Message\\": "src/"
  6681. }
  6682. },
  6683. "notification-url": "https://packagist.org/downloads/",
  6684. "license": [
  6685. "MIT"
  6686. ],
  6687. "authors": [
  6688. {
  6689. "name": "PHP-FIG",
  6690. "homepage": "http://www.php-fig.org/"
  6691. }
  6692. ],
  6693. "description": "Common interface for HTTP messages",
  6694. "homepage": "https://github.com/php-fig/http-message",
  6695. "keywords": [
  6696. "http",
  6697. "http-message",
  6698. "psr",
  6699. "psr-7",
  6700. "request",
  6701. "response"
  6702. ],
  6703. "time": "2016-08-06T14:39:51+00:00"
  6704. },
  6705. {
  6706. "name": "psr/log",
  6707. "version": "1.1.3",
  6708. "source": {
  6709. "type": "git",
  6710. "url": "https://github.com/php-fig/log.git",
  6711. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  6712. },
  6713. "dist": {
  6714. "type": "zip",
  6715. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  6716. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  6717. "shasum": ""
  6718. },
  6719. "require": {
  6720. "php": ">=5.3.0"
  6721. },
  6722. "type": "library",
  6723. "extra": {
  6724. "branch-alias": {
  6725. "dev-master": "1.1.x-dev"
  6726. }
  6727. },
  6728. "autoload": {
  6729. "psr-4": {
  6730. "Psr\\Log\\": "Psr/Log/"
  6731. }
  6732. },
  6733. "notification-url": "https://packagist.org/downloads/",
  6734. "license": [
  6735. "MIT"
  6736. ],
  6737. "authors": [
  6738. {
  6739. "name": "PHP-FIG",
  6740. "homepage": "http://www.php-fig.org/"
  6741. }
  6742. ],
  6743. "description": "Common interface for logging libraries",
  6744. "homepage": "https://github.com/php-fig/log",
  6745. "keywords": [
  6746. "log",
  6747. "psr",
  6748. "psr-3"
  6749. ],
  6750. "time": "2020-03-23T09:12:05+00:00"
  6751. },
  6752. {
  6753. "name": "psy/psysh",
  6754. "version": "v0.10.4",
  6755. "source": {
  6756. "type": "git",
  6757. "url": "https://github.com/bobthecow/psysh.git",
  6758. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560"
  6759. },
  6760. "dist": {
  6761. "type": "zip",
  6762. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560",
  6763. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560",
  6764. "shasum": ""
  6765. },
  6766. "require": {
  6767. "dnoegel/php-xdg-base-dir": "0.1.*",
  6768. "ext-json": "*",
  6769. "ext-tokenizer": "*",
  6770. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  6771. "php": "^8.0 || ^7.0 || ^5.5.9",
  6772. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  6773. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  6774. },
  6775. "require-dev": {
  6776. "bamarni/composer-bin-plugin": "^1.2",
  6777. "hoa/console": "3.17.*"
  6778. },
  6779. "suggest": {
  6780. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  6781. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  6782. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  6783. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  6784. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  6785. },
  6786. "bin": [
  6787. "bin/psysh"
  6788. ],
  6789. "type": "library",
  6790. "extra": {
  6791. "branch-alias": {
  6792. "dev-master": "0.10.x-dev"
  6793. }
  6794. },
  6795. "autoload": {
  6796. "files": [
  6797. "src/functions.php"
  6798. ],
  6799. "psr-4": {
  6800. "Psy\\": "src/"
  6801. }
  6802. },
  6803. "notification-url": "https://packagist.org/downloads/",
  6804. "license": [
  6805. "MIT"
  6806. ],
  6807. "authors": [
  6808. {
  6809. "name": "Justin Hileman",
  6810. "email": "justin@justinhileman.info",
  6811. "homepage": "http://justinhileman.com"
  6812. }
  6813. ],
  6814. "description": "An interactive shell for modern PHP.",
  6815. "homepage": "http://psysh.org",
  6816. "keywords": [
  6817. "REPL",
  6818. "console",
  6819. "interactive",
  6820. "shell"
  6821. ],
  6822. "time": "2020-05-03T19:32:03+00:00"
  6823. },
  6824. {
  6825. "name": "ralouphie/getallheaders",
  6826. "version": "3.0.3",
  6827. "source": {
  6828. "type": "git",
  6829. "url": "https://github.com/ralouphie/getallheaders.git",
  6830. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6831. },
  6832. "dist": {
  6833. "type": "zip",
  6834. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6835. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6836. "shasum": ""
  6837. },
  6838. "require": {
  6839. "php": ">=5.6"
  6840. },
  6841. "require-dev": {
  6842. "php-coveralls/php-coveralls": "^2.1",
  6843. "phpunit/phpunit": "^5 || ^6.5"
  6844. },
  6845. "type": "library",
  6846. "autoload": {
  6847. "files": [
  6848. "src/getallheaders.php"
  6849. ]
  6850. },
  6851. "notification-url": "https://packagist.org/downloads/",
  6852. "license": [
  6853. "MIT"
  6854. ],
  6855. "authors": [
  6856. {
  6857. "name": "Ralph Khattar",
  6858. "email": "ralph.khattar@gmail.com"
  6859. }
  6860. ],
  6861. "description": "A polyfill for getallheaders.",
  6862. "time": "2019-03-08T08:55:37+00:00"
  6863. },
  6864. {
  6865. "name": "sibyx/phpgpx",
  6866. "version": "1.0-RC5",
  6867. "source": {
  6868. "type": "git",
  6869. "url": "https://github.com/Sibyx/phpGPX.git",
  6870. "reference": "0bb616dda0b6ff3e78c72167087c8ffe8b1cbf2e"
  6871. },
  6872. "dist": {
  6873. "type": "zip",
  6874. "url": "https://api.github.com/repos/Sibyx/phpGPX/zipball/0bb616dda0b6ff3e78c72167087c8ffe8b1cbf2e",
  6875. "reference": "0bb616dda0b6ff3e78c72167087c8ffe8b1cbf2e",
  6876. "shasum": ""
  6877. },
  6878. "require": {
  6879. "lib-libxml": "*",
  6880. "php": ">=5.4"
  6881. },
  6882. "require-dev": {
  6883. "evert/phpdoc-md": "~0.2.0",
  6884. "phpunit/phpunit": "^6.5"
  6885. },
  6886. "type": "library",
  6887. "autoload": {
  6888. "psr-4": {
  6889. "phpGPX\\": "src/phpGPX/"
  6890. }
  6891. },
  6892. "notification-url": "https://packagist.org/downloads/",
  6893. "license": [
  6894. "MIT"
  6895. ],
  6896. "authors": [
  6897. {
  6898. "name": "Jakub Dubec",
  6899. "email": "jakub.dubec@gmail.com",
  6900. "homepage": "https://jakubdubec.me"
  6901. }
  6902. ],
  6903. "description": "A simple PHP library for GPX import/export",
  6904. "time": "2018-01-25T12:25:51+00:00"
  6905. },
  6906. {
  6907. "name": "sierrafayad/osm-pbf",
  6908. "version": "1.0.1",
  6909. "source": {
  6910. "type": "git",
  6911. "url": "https://github.com/sierrafayad/osm-pbf.git",
  6912. "reference": "5780393d043d7c3132bb513f4b23e295ed934a47"
  6913. },
  6914. "dist": {
  6915. "type": "zip",
  6916. "url": "https://api.github.com/repos/sierrafayad/osm-pbf/zipball/5780393d043d7c3132bb513f4b23e295ed934a47",
  6917. "reference": "5780393d043d7c3132bb513f4b23e295ed934a47",
  6918. "shasum": ""
  6919. },
  6920. "require": {
  6921. "ext-zlib": "*",
  6922. "google/protobuf": "v3.6.1.3",
  6923. "mdurrant/php-binary-reader": "^1.0",
  6924. "php": ">=5.6"
  6925. },
  6926. "type": "library",
  6927. "autoload": {
  6928. "psr-4": {
  6929. "OsmPbf\\": "src/",
  6930. "OsmProto\\": "src/OSMProto/"
  6931. }
  6932. },
  6933. "notification-url": "https://packagist.org/downloads/",
  6934. "license": [
  6935. "MIT"
  6936. ],
  6937. "authors": [
  6938. {
  6939. "name": "Frank Sierra-Fayad",
  6940. "email": "frank@sierrafayad.com"
  6941. }
  6942. ],
  6943. "description": "Works with Open Street Map .osm.pbf compressed files.",
  6944. "homepage": "https://github.com/sierrafayad/osm-pbf",
  6945. "keywords": [
  6946. "OpenStreetMap",
  6947. "open street map",
  6948. "osm",
  6949. "pbf"
  6950. ],
  6951. "time": "2019-09-10T22:57:33+00:00"
  6952. },
  6953. {
  6954. "name": "stack/builder",
  6955. "version": "v1.0.5",
  6956. "source": {
  6957. "type": "git",
  6958. "url": "https://github.com/stackphp/builder.git",
  6959. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  6960. },
  6961. "dist": {
  6962. "type": "zip",
  6963. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  6964. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  6965. "shasum": ""
  6966. },
  6967. "require": {
  6968. "php": ">=5.3.0",
  6969. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  6970. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  6971. },
  6972. "require-dev": {
  6973. "silex/silex": "~1.0"
  6974. },
  6975. "type": "library",
  6976. "extra": {
  6977. "branch-alias": {
  6978. "dev-master": "1.0-dev"
  6979. }
  6980. },
  6981. "autoload": {
  6982. "psr-0": {
  6983. "Stack": "src"
  6984. }
  6985. },
  6986. "notification-url": "https://packagist.org/downloads/",
  6987. "license": [
  6988. "MIT"
  6989. ],
  6990. "authors": [
  6991. {
  6992. "name": "Igor Wiedler",
  6993. "email": "igor@wiedler.ch"
  6994. }
  6995. ],
  6996. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  6997. "keywords": [
  6998. "stack"
  6999. ],
  7000. "time": "2017-11-18T14:57:29+00:00"
  7001. },
  7002. {
  7003. "name": "symfony-cmf/routing",
  7004. "version": "1.4.1",
  7005. "source": {
  7006. "type": "git",
  7007. "url": "https://github.com/symfony-cmf/routing.git",
  7008. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  7009. },
  7010. "dist": {
  7011. "type": "zip",
  7012. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7013. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7014. "shasum": ""
  7015. },
  7016. "require": {
  7017. "php": "^5.3.9|^7.0",
  7018. "psr/log": "1.*",
  7019. "symfony/http-kernel": "^2.2|3.*",
  7020. "symfony/routing": "^2.2|3.*"
  7021. },
  7022. "require-dev": {
  7023. "friendsofsymfony/jsrouting-bundle": "^1.1",
  7024. "symfony-cmf/testing": "^1.3",
  7025. "symfony/config": "^2.2|3.*",
  7026. "symfony/dependency-injection": "^2.0.5|3.*",
  7027. "symfony/event-dispatcher": "^2.1|3.*"
  7028. },
  7029. "suggest": {
  7030. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  7031. },
  7032. "type": "library",
  7033. "extra": {
  7034. "branch-alias": {
  7035. "dev-master": "1.4-dev"
  7036. }
  7037. },
  7038. "autoload": {
  7039. "psr-4": {
  7040. "Symfony\\Cmf\\Component\\Routing\\": ""
  7041. }
  7042. },
  7043. "notification-url": "https://packagist.org/downloads/",
  7044. "license": [
  7045. "MIT"
  7046. ],
  7047. "authors": [
  7048. {
  7049. "name": "Symfony CMF Community",
  7050. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  7051. }
  7052. ],
  7053. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  7054. "homepage": "http://cmf.symfony.com",
  7055. "keywords": [
  7056. "database",
  7057. "routing"
  7058. ],
  7059. "time": "2017-05-09T08:10:41+00:00"
  7060. },
  7061. {
  7062. "name": "symfony/class-loader",
  7063. "version": "v3.4.41",
  7064. "source": {
  7065. "type": "git",
  7066. "url": "https://github.com/symfony/class-loader.git",
  7067. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8"
  7068. },
  7069. "dist": {
  7070. "type": "zip",
  7071. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e4636a4f23f157278a19e5db160c63de0da297d8",
  7072. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8",
  7073. "shasum": ""
  7074. },
  7075. "require": {
  7076. "php": "^5.5.9|>=7.0.8"
  7077. },
  7078. "require-dev": {
  7079. "symfony/finder": "~2.8|~3.0|~4.0",
  7080. "symfony/polyfill-apcu": "~1.1"
  7081. },
  7082. "suggest": {
  7083. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  7084. },
  7085. "type": "library",
  7086. "extra": {
  7087. "branch-alias": {
  7088. "dev-master": "3.4-dev"
  7089. }
  7090. },
  7091. "autoload": {
  7092. "psr-4": {
  7093. "Symfony\\Component\\ClassLoader\\": ""
  7094. },
  7095. "exclude-from-classmap": [
  7096. "/Tests/"
  7097. ]
  7098. },
  7099. "notification-url": "https://packagist.org/downloads/",
  7100. "license": [
  7101. "MIT"
  7102. ],
  7103. "authors": [
  7104. {
  7105. "name": "Fabien Potencier",
  7106. "email": "fabien@symfony.com"
  7107. },
  7108. {
  7109. "name": "Symfony Community",
  7110. "homepage": "https://symfony.com/contributors"
  7111. }
  7112. ],
  7113. "description": "Symfony ClassLoader Component",
  7114. "homepage": "https://symfony.com",
  7115. "funding": [
  7116. {
  7117. "url": "https://symfony.com/sponsor",
  7118. "type": "custom"
  7119. },
  7120. {
  7121. "url": "https://github.com/fabpot",
  7122. "type": "github"
  7123. },
  7124. {
  7125. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7126. "type": "tidelift"
  7127. }
  7128. ],
  7129. "time": "2020-03-15T09:38:08+00:00"
  7130. },
  7131. {
  7132. "name": "symfony/console",
  7133. "version": "v3.4.41",
  7134. "source": {
  7135. "type": "git",
  7136. "url": "https://github.com/symfony/console.git",
  7137. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13"
  7138. },
  7139. "dist": {
  7140. "type": "zip",
  7141. "url": "https://api.github.com/repos/symfony/console/zipball/bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  7142. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  7143. "shasum": ""
  7144. },
  7145. "require": {
  7146. "php": "^5.5.9|>=7.0.8",
  7147. "symfony/debug": "~2.8|~3.0|~4.0",
  7148. "symfony/polyfill-mbstring": "~1.0"
  7149. },
  7150. "conflict": {
  7151. "symfony/dependency-injection": "<3.4",
  7152. "symfony/process": "<3.3"
  7153. },
  7154. "provide": {
  7155. "psr/log-implementation": "1.0"
  7156. },
  7157. "require-dev": {
  7158. "psr/log": "~1.0",
  7159. "symfony/config": "~3.3|~4.0",
  7160. "symfony/dependency-injection": "~3.4|~4.0",
  7161. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  7162. "symfony/lock": "~3.4|~4.0",
  7163. "symfony/process": "~3.3|~4.0"
  7164. },
  7165. "suggest": {
  7166. "psr/log": "For using the console logger",
  7167. "symfony/event-dispatcher": "",
  7168. "symfony/lock": "",
  7169. "symfony/process": ""
  7170. },
  7171. "type": "library",
  7172. "extra": {
  7173. "branch-alias": {
  7174. "dev-master": "3.4-dev"
  7175. }
  7176. },
  7177. "autoload": {
  7178. "psr-4": {
  7179. "Symfony\\Component\\Console\\": ""
  7180. },
  7181. "exclude-from-classmap": [
  7182. "/Tests/"
  7183. ]
  7184. },
  7185. "notification-url": "https://packagist.org/downloads/",
  7186. "license": [
  7187. "MIT"
  7188. ],
  7189. "authors": [
  7190. {
  7191. "name": "Fabien Potencier",
  7192. "email": "fabien@symfony.com"
  7193. },
  7194. {
  7195. "name": "Symfony Community",
  7196. "homepage": "https://symfony.com/contributors"
  7197. }
  7198. ],
  7199. "description": "Symfony Console Component",
  7200. "homepage": "https://symfony.com",
  7201. "funding": [
  7202. {
  7203. "url": "https://symfony.com/sponsor",
  7204. "type": "custom"
  7205. },
  7206. {
  7207. "url": "https://github.com/fabpot",
  7208. "type": "github"
  7209. },
  7210. {
  7211. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7212. "type": "tidelift"
  7213. }
  7214. ],
  7215. "time": "2020-05-30T18:58:05+00:00"
  7216. },
  7217. {
  7218. "name": "symfony/debug",
  7219. "version": "v3.4.41",
  7220. "source": {
  7221. "type": "git",
  7222. "url": "https://github.com/symfony/debug.git",
  7223. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d"
  7224. },
  7225. "dist": {
  7226. "type": "zip",
  7227. "url": "https://api.github.com/repos/symfony/debug/zipball/518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  7228. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  7229. "shasum": ""
  7230. },
  7231. "require": {
  7232. "php": "^5.5.9|>=7.0.8",
  7233. "psr/log": "~1.0"
  7234. },
  7235. "conflict": {
  7236. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  7237. },
  7238. "require-dev": {
  7239. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  7240. },
  7241. "type": "library",
  7242. "extra": {
  7243. "branch-alias": {
  7244. "dev-master": "3.4-dev"
  7245. }
  7246. },
  7247. "autoload": {
  7248. "psr-4": {
  7249. "Symfony\\Component\\Debug\\": ""
  7250. },
  7251. "exclude-from-classmap": [
  7252. "/Tests/"
  7253. ]
  7254. },
  7255. "notification-url": "https://packagist.org/downloads/",
  7256. "license": [
  7257. "MIT"
  7258. ],
  7259. "authors": [
  7260. {
  7261. "name": "Fabien Potencier",
  7262. "email": "fabien@symfony.com"
  7263. },
  7264. {
  7265. "name": "Symfony Community",
  7266. "homepage": "https://symfony.com/contributors"
  7267. }
  7268. ],
  7269. "description": "Symfony Debug Component",
  7270. "homepage": "https://symfony.com",
  7271. "funding": [
  7272. {
  7273. "url": "https://symfony.com/sponsor",
  7274. "type": "custom"
  7275. },
  7276. {
  7277. "url": "https://github.com/fabpot",
  7278. "type": "github"
  7279. },
  7280. {
  7281. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7282. "type": "tidelift"
  7283. }
  7284. ],
  7285. "time": "2020-05-22T18:25:20+00:00"
  7286. },
  7287. {
  7288. "name": "symfony/dependency-injection",
  7289. "version": "v3.4.41",
  7290. "source": {
  7291. "type": "git",
  7292. "url": "https://github.com/symfony/dependency-injection.git",
  7293. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac"
  7294. },
  7295. "dist": {
  7296. "type": "zip",
  7297. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/e39380b7104b0ec538a075ae919f00c7e5267bac",
  7298. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac",
  7299. "shasum": ""
  7300. },
  7301. "require": {
  7302. "php": "^5.5.9|>=7.0.8",
  7303. "psr/container": "^1.0"
  7304. },
  7305. "conflict": {
  7306. "symfony/config": "<3.3.7",
  7307. "symfony/finder": "<3.3",
  7308. "symfony/proxy-manager-bridge": "<3.4",
  7309. "symfony/yaml": "<3.4"
  7310. },
  7311. "provide": {
  7312. "psr/container-implementation": "1.0"
  7313. },
  7314. "require-dev": {
  7315. "symfony/config": "~3.3|~4.0",
  7316. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7317. "symfony/yaml": "~3.4|~4.0"
  7318. },
  7319. "suggest": {
  7320. "symfony/config": "",
  7321. "symfony/expression-language": "For using expressions in service container configuration",
  7322. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  7323. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  7324. "symfony/yaml": ""
  7325. },
  7326. "type": "library",
  7327. "extra": {
  7328. "branch-alias": {
  7329. "dev-master": "3.4-dev"
  7330. }
  7331. },
  7332. "autoload": {
  7333. "psr-4": {
  7334. "Symfony\\Component\\DependencyInjection\\": ""
  7335. },
  7336. "exclude-from-classmap": [
  7337. "/Tests/"
  7338. ]
  7339. },
  7340. "notification-url": "https://packagist.org/downloads/",
  7341. "license": [
  7342. "MIT"
  7343. ],
  7344. "authors": [
  7345. {
  7346. "name": "Fabien Potencier",
  7347. "email": "fabien@symfony.com"
  7348. },
  7349. {
  7350. "name": "Symfony Community",
  7351. "homepage": "https://symfony.com/contributors"
  7352. }
  7353. ],
  7354. "description": "Symfony DependencyInjection Component",
  7355. "homepage": "https://symfony.com",
  7356. "funding": [
  7357. {
  7358. "url": "https://symfony.com/sponsor",
  7359. "type": "custom"
  7360. },
  7361. {
  7362. "url": "https://github.com/fabpot",
  7363. "type": "github"
  7364. },
  7365. {
  7366. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7367. "type": "tidelift"
  7368. }
  7369. ],
  7370. "time": "2020-05-30T21:06:01+00:00"
  7371. },
  7372. {
  7373. "name": "symfony/event-dispatcher",
  7374. "version": "v3.4.41",
  7375. "source": {
  7376. "type": "git",
  7377. "url": "https://github.com/symfony/event-dispatcher.git",
  7378. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081"
  7379. },
  7380. "dist": {
  7381. "type": "zip",
  7382. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/14d978f8e8555f2de719c00eb65376be7d2e9081",
  7383. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081",
  7384. "shasum": ""
  7385. },
  7386. "require": {
  7387. "php": "^5.5.9|>=7.0.8"
  7388. },
  7389. "conflict": {
  7390. "symfony/dependency-injection": "<3.3"
  7391. },
  7392. "require-dev": {
  7393. "psr/log": "~1.0",
  7394. "symfony/config": "~2.8|~3.0|~4.0",
  7395. "symfony/dependency-injection": "~3.3|~4.0",
  7396. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7397. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  7398. },
  7399. "suggest": {
  7400. "symfony/dependency-injection": "",
  7401. "symfony/http-kernel": ""
  7402. },
  7403. "type": "library",
  7404. "extra": {
  7405. "branch-alias": {
  7406. "dev-master": "3.4-dev"
  7407. }
  7408. },
  7409. "autoload": {
  7410. "psr-4": {
  7411. "Symfony\\Component\\EventDispatcher\\": ""
  7412. },
  7413. "exclude-from-classmap": [
  7414. "/Tests/"
  7415. ]
  7416. },
  7417. "notification-url": "https://packagist.org/downloads/",
  7418. "license": [
  7419. "MIT"
  7420. ],
  7421. "authors": [
  7422. {
  7423. "name": "Fabien Potencier",
  7424. "email": "fabien@symfony.com"
  7425. },
  7426. {
  7427. "name": "Symfony Community",
  7428. "homepage": "https://symfony.com/contributors"
  7429. }
  7430. ],
  7431. "description": "Symfony EventDispatcher Component",
  7432. "homepage": "https://symfony.com",
  7433. "funding": [
  7434. {
  7435. "url": "https://symfony.com/sponsor",
  7436. "type": "custom"
  7437. },
  7438. {
  7439. "url": "https://github.com/fabpot",
  7440. "type": "github"
  7441. },
  7442. {
  7443. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7444. "type": "tidelift"
  7445. }
  7446. ],
  7447. "time": "2020-05-05T15:06:23+00:00"
  7448. },
  7449. {
  7450. "name": "symfony/filesystem",
  7451. "version": "v4.4.10",
  7452. "source": {
  7453. "type": "git",
  7454. "url": "https://github.com/symfony/filesystem.git",
  7455. "reference": "b27f491309db5757816db672b256ea2e03677d30"
  7456. },
  7457. "dist": {
  7458. "type": "zip",
  7459. "url": "https://api.github.com/repos/symfony/filesystem/zipball/b27f491309db5757816db672b256ea2e03677d30",
  7460. "reference": "b27f491309db5757816db672b256ea2e03677d30",
  7461. "shasum": ""
  7462. },
  7463. "require": {
  7464. "php": ">=7.1.3",
  7465. "symfony/polyfill-ctype": "~1.8"
  7466. },
  7467. "type": "library",
  7468. "extra": {
  7469. "branch-alias": {
  7470. "dev-master": "4.4-dev"
  7471. }
  7472. },
  7473. "autoload": {
  7474. "psr-4": {
  7475. "Symfony\\Component\\Filesystem\\": ""
  7476. },
  7477. "exclude-from-classmap": [
  7478. "/Tests/"
  7479. ]
  7480. },
  7481. "notification-url": "https://packagist.org/downloads/",
  7482. "license": [
  7483. "MIT"
  7484. ],
  7485. "authors": [
  7486. {
  7487. "name": "Fabien Potencier",
  7488. "email": "fabien@symfony.com"
  7489. },
  7490. {
  7491. "name": "Symfony Community",
  7492. "homepage": "https://symfony.com/contributors"
  7493. }
  7494. ],
  7495. "description": "Symfony Filesystem Component",
  7496. "homepage": "https://symfony.com",
  7497. "funding": [
  7498. {
  7499. "url": "https://symfony.com/sponsor",
  7500. "type": "custom"
  7501. },
  7502. {
  7503. "url": "https://github.com/fabpot",
  7504. "type": "github"
  7505. },
  7506. {
  7507. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7508. "type": "tidelift"
  7509. }
  7510. ],
  7511. "time": "2020-05-30T18:50:54+00:00"
  7512. },
  7513. {
  7514. "name": "symfony/finder",
  7515. "version": "v4.4.10",
  7516. "source": {
  7517. "type": "git",
  7518. "url": "https://github.com/symfony/finder.git",
  7519. "reference": "5729f943f9854c5781984ed4907bbb817735776b"
  7520. },
  7521. "dist": {
  7522. "type": "zip",
  7523. "url": "https://api.github.com/repos/symfony/finder/zipball/5729f943f9854c5781984ed4907bbb817735776b",
  7524. "reference": "5729f943f9854c5781984ed4907bbb817735776b",
  7525. "shasum": ""
  7526. },
  7527. "require": {
  7528. "php": "^7.1.3"
  7529. },
  7530. "type": "library",
  7531. "extra": {
  7532. "branch-alias": {
  7533. "dev-master": "4.4-dev"
  7534. }
  7535. },
  7536. "autoload": {
  7537. "psr-4": {
  7538. "Symfony\\Component\\Finder\\": ""
  7539. },
  7540. "exclude-from-classmap": [
  7541. "/Tests/"
  7542. ]
  7543. },
  7544. "notification-url": "https://packagist.org/downloads/",
  7545. "license": [
  7546. "MIT"
  7547. ],
  7548. "authors": [
  7549. {
  7550. "name": "Fabien Potencier",
  7551. "email": "fabien@symfony.com"
  7552. },
  7553. {
  7554. "name": "Symfony Community",
  7555. "homepage": "https://symfony.com/contributors"
  7556. }
  7557. ],
  7558. "description": "Symfony Finder Component",
  7559. "homepage": "https://symfony.com",
  7560. "funding": [
  7561. {
  7562. "url": "https://symfony.com/sponsor",
  7563. "type": "custom"
  7564. },
  7565. {
  7566. "url": "https://github.com/fabpot",
  7567. "type": "github"
  7568. },
  7569. {
  7570. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7571. "type": "tidelift"
  7572. }
  7573. ],
  7574. "time": "2020-03-27T16:54:36+00:00"
  7575. },
  7576. {
  7577. "name": "symfony/http-foundation",
  7578. "version": "v3.4.41",
  7579. "source": {
  7580. "type": "git",
  7581. "url": "https://github.com/symfony/http-foundation.git",
  7582. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359"
  7583. },
  7584. "dist": {
  7585. "type": "zip",
  7586. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/fbd216d2304b1a3fe38d6392b04729c8dd356359",
  7587. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359",
  7588. "shasum": ""
  7589. },
  7590. "require": {
  7591. "php": "^5.5.9|>=7.0.8",
  7592. "symfony/polyfill-mbstring": "~1.1",
  7593. "symfony/polyfill-php70": "~1.6"
  7594. },
  7595. "require-dev": {
  7596. "symfony/expression-language": "~2.8|~3.0|~4.0"
  7597. },
  7598. "type": "library",
  7599. "extra": {
  7600. "branch-alias": {
  7601. "dev-master": "3.4-dev"
  7602. }
  7603. },
  7604. "autoload": {
  7605. "psr-4": {
  7606. "Symfony\\Component\\HttpFoundation\\": ""
  7607. },
  7608. "exclude-from-classmap": [
  7609. "/Tests/"
  7610. ]
  7611. },
  7612. "notification-url": "https://packagist.org/downloads/",
  7613. "license": [
  7614. "MIT"
  7615. ],
  7616. "authors": [
  7617. {
  7618. "name": "Fabien Potencier",
  7619. "email": "fabien@symfony.com"
  7620. },
  7621. {
  7622. "name": "Symfony Community",
  7623. "homepage": "https://symfony.com/contributors"
  7624. }
  7625. ],
  7626. "description": "Symfony HttpFoundation Component",
  7627. "homepage": "https://symfony.com",
  7628. "funding": [
  7629. {
  7630. "url": "https://symfony.com/sponsor",
  7631. "type": "custom"
  7632. },
  7633. {
  7634. "url": "https://github.com/fabpot",
  7635. "type": "github"
  7636. },
  7637. {
  7638. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7639. "type": "tidelift"
  7640. }
  7641. ],
  7642. "time": "2020-05-16T13:15:54+00:00"
  7643. },
  7644. {
  7645. "name": "symfony/http-kernel",
  7646. "version": "v3.4.41",
  7647. "source": {
  7648. "type": "git",
  7649. "url": "https://github.com/symfony/http-kernel.git",
  7650. "reference": "e4e4ed6c008c983645b4eee6b67d8f258cde54df"
  7651. },
  7652. "dist": {
  7653. "type": "zip",
  7654. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/e4e4ed6c008c983645b4eee6b67d8f258cde54df",
  7655. "reference": "e4e4ed6c008c983645b4eee6b67d8f258cde54df",
  7656. "shasum": ""
  7657. },
  7658. "require": {
  7659. "php": "^5.5.9|>=7.0.8",
  7660. "psr/log": "~1.0",
  7661. "symfony/debug": "^3.3.3|~4.0",
  7662. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  7663. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  7664. "symfony/polyfill-ctype": "~1.8",
  7665. "symfony/polyfill-php56": "~1.8"
  7666. },
  7667. "conflict": {
  7668. "symfony/config": "<2.8",
  7669. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  7670. "symfony/var-dumper": "<3.3",
  7671. "twig/twig": "<1.34|<2.4,>=2"
  7672. },
  7673. "provide": {
  7674. "psr/log-implementation": "1.0"
  7675. },
  7676. "require-dev": {
  7677. "psr/cache": "~1.0",
  7678. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  7679. "symfony/class-loader": "~2.8|~3.0",
  7680. "symfony/config": "~2.8|~3.0|~4.0",
  7681. "symfony/console": "~2.8|~3.0|~4.0",
  7682. "symfony/css-selector": "~2.8|~3.0|~4.0",
  7683. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  7684. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  7685. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7686. "symfony/finder": "~2.8|~3.0|~4.0",
  7687. "symfony/process": "~2.8|~3.0|~4.0",
  7688. "symfony/routing": "~3.4|~4.0",
  7689. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  7690. "symfony/templating": "~2.8|~3.0|~4.0",
  7691. "symfony/translation": "~2.8|~3.0|~4.0",
  7692. "symfony/var-dumper": "~3.3|~4.0"
  7693. },
  7694. "suggest": {
  7695. "symfony/browser-kit": "",
  7696. "symfony/config": "",
  7697. "symfony/console": "",
  7698. "symfony/dependency-injection": "",
  7699. "symfony/finder": "",
  7700. "symfony/var-dumper": ""
  7701. },
  7702. "type": "library",
  7703. "extra": {
  7704. "branch-alias": {
  7705. "dev-master": "3.4-dev"
  7706. }
  7707. },
  7708. "autoload": {
  7709. "psr-4": {
  7710. "Symfony\\Component\\HttpKernel\\": ""
  7711. },
  7712. "exclude-from-classmap": [
  7713. "/Tests/"
  7714. ]
  7715. },
  7716. "notification-url": "https://packagist.org/downloads/",
  7717. "license": [
  7718. "MIT"
  7719. ],
  7720. "authors": [
  7721. {
  7722. "name": "Fabien Potencier",
  7723. "email": "fabien@symfony.com"
  7724. },
  7725. {
  7726. "name": "Symfony Community",
  7727. "homepage": "https://symfony.com/contributors"
  7728. }
  7729. ],
  7730. "description": "Symfony HttpKernel Component",
  7731. "homepage": "https://symfony.com",
  7732. "funding": [
  7733. {
  7734. "url": "https://symfony.com/sponsor",
  7735. "type": "custom"
  7736. },
  7737. {
  7738. "url": "https://github.com/fabpot",
  7739. "type": "github"
  7740. },
  7741. {
  7742. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7743. "type": "tidelift"
  7744. }
  7745. ],
  7746. "time": "2020-05-31T05:14:17+00:00"
  7747. },
  7748. {
  7749. "name": "symfony/polyfill-ctype",
  7750. "version": "v1.17.0",
  7751. "source": {
  7752. "type": "git",
  7753. "url": "https://github.com/symfony/polyfill-ctype.git",
  7754. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9"
  7755. },
  7756. "dist": {
  7757. "type": "zip",
  7758. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  7759. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  7760. "shasum": ""
  7761. },
  7762. "require": {
  7763. "php": ">=5.3.3"
  7764. },
  7765. "suggest": {
  7766. "ext-ctype": "For best performance"
  7767. },
  7768. "type": "library",
  7769. "extra": {
  7770. "branch-alias": {
  7771. "dev-master": "1.17-dev"
  7772. }
  7773. },
  7774. "autoload": {
  7775. "psr-4": {
  7776. "Symfony\\Polyfill\\Ctype\\": ""
  7777. },
  7778. "files": [
  7779. "bootstrap.php"
  7780. ]
  7781. },
  7782. "notification-url": "https://packagist.org/downloads/",
  7783. "license": [
  7784. "MIT"
  7785. ],
  7786. "authors": [
  7787. {
  7788. "name": "Gert de Pagter",
  7789. "email": "BackEndTea@gmail.com"
  7790. },
  7791. {
  7792. "name": "Symfony Community",
  7793. "homepage": "https://symfony.com/contributors"
  7794. }
  7795. ],
  7796. "description": "Symfony polyfill for ctype functions",
  7797. "homepage": "https://symfony.com",
  7798. "keywords": [
  7799. "compatibility",
  7800. "ctype",
  7801. "polyfill",
  7802. "portable"
  7803. ],
  7804. "funding": [
  7805. {
  7806. "url": "https://symfony.com/sponsor",
  7807. "type": "custom"
  7808. },
  7809. {
  7810. "url": "https://github.com/fabpot",
  7811. "type": "github"
  7812. },
  7813. {
  7814. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7815. "type": "tidelift"
  7816. }
  7817. ],
  7818. "time": "2020-05-12T16:14:59+00:00"
  7819. },
  7820. {
  7821. "name": "symfony/polyfill-iconv",
  7822. "version": "v1.17.0",
  7823. "source": {
  7824. "type": "git",
  7825. "url": "https://github.com/symfony/polyfill-iconv.git",
  7826. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424"
  7827. },
  7828. "dist": {
  7829. "type": "zip",
  7830. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c4de7601eefbf25f9d47190abe07f79fe0a27424",
  7831. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424",
  7832. "shasum": ""
  7833. },
  7834. "require": {
  7835. "php": ">=5.3.3"
  7836. },
  7837. "suggest": {
  7838. "ext-iconv": "For best performance"
  7839. },
  7840. "type": "library",
  7841. "extra": {
  7842. "branch-alias": {
  7843. "dev-master": "1.17-dev"
  7844. }
  7845. },
  7846. "autoload": {
  7847. "psr-4": {
  7848. "Symfony\\Polyfill\\Iconv\\": ""
  7849. },
  7850. "files": [
  7851. "bootstrap.php"
  7852. ]
  7853. },
  7854. "notification-url": "https://packagist.org/downloads/",
  7855. "license": [
  7856. "MIT"
  7857. ],
  7858. "authors": [
  7859. {
  7860. "name": "Nicolas Grekas",
  7861. "email": "p@tchwork.com"
  7862. },
  7863. {
  7864. "name": "Symfony Community",
  7865. "homepage": "https://symfony.com/contributors"
  7866. }
  7867. ],
  7868. "description": "Symfony polyfill for the Iconv extension",
  7869. "homepage": "https://symfony.com",
  7870. "keywords": [
  7871. "compatibility",
  7872. "iconv",
  7873. "polyfill",
  7874. "portable",
  7875. "shim"
  7876. ],
  7877. "funding": [
  7878. {
  7879. "url": "https://symfony.com/sponsor",
  7880. "type": "custom"
  7881. },
  7882. {
  7883. "url": "https://github.com/fabpot",
  7884. "type": "github"
  7885. },
  7886. {
  7887. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7888. "type": "tidelift"
  7889. }
  7890. ],
  7891. "time": "2020-05-12T16:47:27+00:00"
  7892. },
  7893. {
  7894. "name": "symfony/polyfill-intl-idn",
  7895. "version": "v1.17.0",
  7896. "source": {
  7897. "type": "git",
  7898. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7899. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a"
  7900. },
  7901. "dist": {
  7902. "type": "zip",
  7903. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  7904. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  7905. "shasum": ""
  7906. },
  7907. "require": {
  7908. "php": ">=5.3.3",
  7909. "symfony/polyfill-mbstring": "^1.3",
  7910. "symfony/polyfill-php72": "^1.10"
  7911. },
  7912. "suggest": {
  7913. "ext-intl": "For best performance"
  7914. },
  7915. "type": "library",
  7916. "extra": {
  7917. "branch-alias": {
  7918. "dev-master": "1.17-dev"
  7919. }
  7920. },
  7921. "autoload": {
  7922. "psr-4": {
  7923. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7924. },
  7925. "files": [
  7926. "bootstrap.php"
  7927. ]
  7928. },
  7929. "notification-url": "https://packagist.org/downloads/",
  7930. "license": [
  7931. "MIT"
  7932. ],
  7933. "authors": [
  7934. {
  7935. "name": "Laurent Bassin",
  7936. "email": "laurent@bassin.info"
  7937. },
  7938. {
  7939. "name": "Symfony Community",
  7940. "homepage": "https://symfony.com/contributors"
  7941. }
  7942. ],
  7943. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7944. "homepage": "https://symfony.com",
  7945. "keywords": [
  7946. "compatibility",
  7947. "idn",
  7948. "intl",
  7949. "polyfill",
  7950. "portable",
  7951. "shim"
  7952. ],
  7953. "funding": [
  7954. {
  7955. "url": "https://symfony.com/sponsor",
  7956. "type": "custom"
  7957. },
  7958. {
  7959. "url": "https://github.com/fabpot",
  7960. "type": "github"
  7961. },
  7962. {
  7963. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7964. "type": "tidelift"
  7965. }
  7966. ],
  7967. "time": "2020-05-12T16:47:27+00:00"
  7968. },
  7969. {
  7970. "name": "symfony/polyfill-mbstring",
  7971. "version": "v1.17.0",
  7972. "source": {
  7973. "type": "git",
  7974. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7975. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c"
  7976. },
  7977. "dist": {
  7978. "type": "zip",
  7979. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fa79b11539418b02fc5e1897267673ba2c19419c",
  7980. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c",
  7981. "shasum": ""
  7982. },
  7983. "require": {
  7984. "php": ">=5.3.3"
  7985. },
  7986. "suggest": {
  7987. "ext-mbstring": "For best performance"
  7988. },
  7989. "type": "library",
  7990. "extra": {
  7991. "branch-alias": {
  7992. "dev-master": "1.17-dev"
  7993. }
  7994. },
  7995. "autoload": {
  7996. "psr-4": {
  7997. "Symfony\\Polyfill\\Mbstring\\": ""
  7998. },
  7999. "files": [
  8000. "bootstrap.php"
  8001. ]
  8002. },
  8003. "notification-url": "https://packagist.org/downloads/",
  8004. "license": [
  8005. "MIT"
  8006. ],
  8007. "authors": [
  8008. {
  8009. "name": "Nicolas Grekas",
  8010. "email": "p@tchwork.com"
  8011. },
  8012. {
  8013. "name": "Symfony Community",
  8014. "homepage": "https://symfony.com/contributors"
  8015. }
  8016. ],
  8017. "description": "Symfony polyfill for the Mbstring extension",
  8018. "homepage": "https://symfony.com",
  8019. "keywords": [
  8020. "compatibility",
  8021. "mbstring",
  8022. "polyfill",
  8023. "portable",
  8024. "shim"
  8025. ],
  8026. "funding": [
  8027. {
  8028. "url": "https://symfony.com/sponsor",
  8029. "type": "custom"
  8030. },
  8031. {
  8032. "url": "https://github.com/fabpot",
  8033. "type": "github"
  8034. },
  8035. {
  8036. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8037. "type": "tidelift"
  8038. }
  8039. ],
  8040. "time": "2020-05-12T16:47:27+00:00"
  8041. },
  8042. {
  8043. "name": "symfony/polyfill-php56",
  8044. "version": "v1.17.0",
  8045. "source": {
  8046. "type": "git",
  8047. "url": "https://github.com/symfony/polyfill-php56.git",
  8048. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23"
  8049. },
  8050. "dist": {
  8051. "type": "zip",
  8052. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/e3c8c138280cdfe4b81488441555583aa1984e23",
  8053. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23",
  8054. "shasum": ""
  8055. },
  8056. "require": {
  8057. "php": ">=5.3.3",
  8058. "symfony/polyfill-util": "~1.0"
  8059. },
  8060. "type": "library",
  8061. "extra": {
  8062. "branch-alias": {
  8063. "dev-master": "1.17-dev"
  8064. }
  8065. },
  8066. "autoload": {
  8067. "psr-4": {
  8068. "Symfony\\Polyfill\\Php56\\": ""
  8069. },
  8070. "files": [
  8071. "bootstrap.php"
  8072. ]
  8073. },
  8074. "notification-url": "https://packagist.org/downloads/",
  8075. "license": [
  8076. "MIT"
  8077. ],
  8078. "authors": [
  8079. {
  8080. "name": "Nicolas Grekas",
  8081. "email": "p@tchwork.com"
  8082. },
  8083. {
  8084. "name": "Symfony Community",
  8085. "homepage": "https://symfony.com/contributors"
  8086. }
  8087. ],
  8088. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  8089. "homepage": "https://symfony.com",
  8090. "keywords": [
  8091. "compatibility",
  8092. "polyfill",
  8093. "portable",
  8094. "shim"
  8095. ],
  8096. "funding": [
  8097. {
  8098. "url": "https://symfony.com/sponsor",
  8099. "type": "custom"
  8100. },
  8101. {
  8102. "url": "https://github.com/fabpot",
  8103. "type": "github"
  8104. },
  8105. {
  8106. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8107. "type": "tidelift"
  8108. }
  8109. ],
  8110. "time": "2020-05-12T16:47:27+00:00"
  8111. },
  8112. {
  8113. "name": "symfony/polyfill-php70",
  8114. "version": "v1.17.0",
  8115. "source": {
  8116. "type": "git",
  8117. "url": "https://github.com/symfony/polyfill-php70.git",
  8118. "reference": "82225c2d7d23d7e70515496d249c0152679b468e"
  8119. },
  8120. "dist": {
  8121. "type": "zip",
  8122. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/82225c2d7d23d7e70515496d249c0152679b468e",
  8123. "reference": "82225c2d7d23d7e70515496d249c0152679b468e",
  8124. "shasum": ""
  8125. },
  8126. "require": {
  8127. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  8128. "php": ">=5.3.3"
  8129. },
  8130. "type": "library",
  8131. "extra": {
  8132. "branch-alias": {
  8133. "dev-master": "1.17-dev"
  8134. }
  8135. },
  8136. "autoload": {
  8137. "psr-4": {
  8138. "Symfony\\Polyfill\\Php70\\": ""
  8139. },
  8140. "files": [
  8141. "bootstrap.php"
  8142. ],
  8143. "classmap": [
  8144. "Resources/stubs"
  8145. ]
  8146. },
  8147. "notification-url": "https://packagist.org/downloads/",
  8148. "license": [
  8149. "MIT"
  8150. ],
  8151. "authors": [
  8152. {
  8153. "name": "Nicolas Grekas",
  8154. "email": "p@tchwork.com"
  8155. },
  8156. {
  8157. "name": "Symfony Community",
  8158. "homepage": "https://symfony.com/contributors"
  8159. }
  8160. ],
  8161. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  8162. "homepage": "https://symfony.com",
  8163. "keywords": [
  8164. "compatibility",
  8165. "polyfill",
  8166. "portable",
  8167. "shim"
  8168. ],
  8169. "funding": [
  8170. {
  8171. "url": "https://symfony.com/sponsor",
  8172. "type": "custom"
  8173. },
  8174. {
  8175. "url": "https://github.com/fabpot",
  8176. "type": "github"
  8177. },
  8178. {
  8179. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8180. "type": "tidelift"
  8181. }
  8182. ],
  8183. "time": "2020-05-12T16:47:27+00:00"
  8184. },
  8185. {
  8186. "name": "symfony/polyfill-php72",
  8187. "version": "v1.17.0",
  8188. "source": {
  8189. "type": "git",
  8190. "url": "https://github.com/symfony/polyfill-php72.git",
  8191. "reference": "f048e612a3905f34931127360bdd2def19a5e582"
  8192. },
  8193. "dist": {
  8194. "type": "zip",
  8195. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/f048e612a3905f34931127360bdd2def19a5e582",
  8196. "reference": "f048e612a3905f34931127360bdd2def19a5e582",
  8197. "shasum": ""
  8198. },
  8199. "require": {
  8200. "php": ">=5.3.3"
  8201. },
  8202. "type": "library",
  8203. "extra": {
  8204. "branch-alias": {
  8205. "dev-master": "1.17-dev"
  8206. }
  8207. },
  8208. "autoload": {
  8209. "psr-4": {
  8210. "Symfony\\Polyfill\\Php72\\": ""
  8211. },
  8212. "files": [
  8213. "bootstrap.php"
  8214. ]
  8215. },
  8216. "notification-url": "https://packagist.org/downloads/",
  8217. "license": [
  8218. "MIT"
  8219. ],
  8220. "authors": [
  8221. {
  8222. "name": "Nicolas Grekas",
  8223. "email": "p@tchwork.com"
  8224. },
  8225. {
  8226. "name": "Symfony Community",
  8227. "homepage": "https://symfony.com/contributors"
  8228. }
  8229. ],
  8230. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  8231. "homepage": "https://symfony.com",
  8232. "keywords": [
  8233. "compatibility",
  8234. "polyfill",
  8235. "portable",
  8236. "shim"
  8237. ],
  8238. "funding": [
  8239. {
  8240. "url": "https://symfony.com/sponsor",
  8241. "type": "custom"
  8242. },
  8243. {
  8244. "url": "https://github.com/fabpot",
  8245. "type": "github"
  8246. },
  8247. {
  8248. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8249. "type": "tidelift"
  8250. }
  8251. ],
  8252. "time": "2020-05-12T16:47:27+00:00"
  8253. },
  8254. {
  8255. "name": "symfony/polyfill-php80",
  8256. "version": "v1.17.1",
  8257. "source": {
  8258. "type": "git",
  8259. "url": "https://github.com/symfony/polyfill-php80.git",
  8260. "reference": "4a5b6bba3259902e386eb80dd1956181ee90b5b2"
  8261. },
  8262. "dist": {
  8263. "type": "zip",
  8264. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/4a5b6bba3259902e386eb80dd1956181ee90b5b2",
  8265. "reference": "4a5b6bba3259902e386eb80dd1956181ee90b5b2",
  8266. "shasum": ""
  8267. },
  8268. "require": {
  8269. "php": ">=7.0.8"
  8270. },
  8271. "type": "library",
  8272. "extra": {
  8273. "branch-alias": {
  8274. "dev-master": "1.17-dev"
  8275. },
  8276. "thanks": {
  8277. "name": "symfony/polyfill",
  8278. "url": "https://github.com/symfony/polyfill"
  8279. }
  8280. },
  8281. "autoload": {
  8282. "psr-4": {
  8283. "Symfony\\Polyfill\\Php80\\": ""
  8284. },
  8285. "files": [
  8286. "bootstrap.php"
  8287. ],
  8288. "classmap": [
  8289. "Resources/stubs"
  8290. ]
  8291. },
  8292. "notification-url": "https://packagist.org/downloads/",
  8293. "license": [
  8294. "MIT"
  8295. ],
  8296. "authors": [
  8297. {
  8298. "name": "Ion Bazan",
  8299. "email": "ion.bazan@gmail.com"
  8300. },
  8301. {
  8302. "name": "Nicolas Grekas",
  8303. "email": "p@tchwork.com"
  8304. },
  8305. {
  8306. "name": "Symfony Community",
  8307. "homepage": "https://symfony.com/contributors"
  8308. }
  8309. ],
  8310. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8311. "homepage": "https://symfony.com",
  8312. "keywords": [
  8313. "compatibility",
  8314. "polyfill",
  8315. "portable",
  8316. "shim"
  8317. ],
  8318. "funding": [
  8319. {
  8320. "url": "https://symfony.com/sponsor",
  8321. "type": "custom"
  8322. },
  8323. {
  8324. "url": "https://github.com/fabpot",
  8325. "type": "github"
  8326. },
  8327. {
  8328. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8329. "type": "tidelift"
  8330. }
  8331. ],
  8332. "time": "2020-06-06T08:46:27+00:00"
  8333. },
  8334. {
  8335. "name": "symfony/polyfill-util",
  8336. "version": "v1.17.0",
  8337. "source": {
  8338. "type": "git",
  8339. "url": "https://github.com/symfony/polyfill-util.git",
  8340. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7"
  8341. },
  8342. "dist": {
  8343. "type": "zip",
  8344. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  8345. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  8346. "shasum": ""
  8347. },
  8348. "require": {
  8349. "php": ">=5.3.3"
  8350. },
  8351. "type": "library",
  8352. "extra": {
  8353. "branch-alias": {
  8354. "dev-master": "1.17-dev"
  8355. }
  8356. },
  8357. "autoload": {
  8358. "psr-4": {
  8359. "Symfony\\Polyfill\\Util\\": ""
  8360. }
  8361. },
  8362. "notification-url": "https://packagist.org/downloads/",
  8363. "license": [
  8364. "MIT"
  8365. ],
  8366. "authors": [
  8367. {
  8368. "name": "Nicolas Grekas",
  8369. "email": "p@tchwork.com"
  8370. },
  8371. {
  8372. "name": "Symfony Community",
  8373. "homepage": "https://symfony.com/contributors"
  8374. }
  8375. ],
  8376. "description": "Symfony utilities for portability of PHP codes",
  8377. "homepage": "https://symfony.com",
  8378. "keywords": [
  8379. "compat",
  8380. "compatibility",
  8381. "polyfill",
  8382. "shim"
  8383. ],
  8384. "funding": [
  8385. {
  8386. "url": "https://symfony.com/sponsor",
  8387. "type": "custom"
  8388. },
  8389. {
  8390. "url": "https://github.com/fabpot",
  8391. "type": "github"
  8392. },
  8393. {
  8394. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8395. "type": "tidelift"
  8396. }
  8397. ],
  8398. "time": "2020-05-12T16:14:59+00:00"
  8399. },
  8400. {
  8401. "name": "symfony/process",
  8402. "version": "v3.4.41",
  8403. "source": {
  8404. "type": "git",
  8405. "url": "https://github.com/symfony/process.git",
  8406. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21"
  8407. },
  8408. "dist": {
  8409. "type": "zip",
  8410. "url": "https://api.github.com/repos/symfony/process/zipball/8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  8411. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  8412. "shasum": ""
  8413. },
  8414. "require": {
  8415. "php": "^5.5.9|>=7.0.8"
  8416. },
  8417. "type": "library",
  8418. "extra": {
  8419. "branch-alias": {
  8420. "dev-master": "3.4-dev"
  8421. }
  8422. },
  8423. "autoload": {
  8424. "psr-4": {
  8425. "Symfony\\Component\\Process\\": ""
  8426. },
  8427. "exclude-from-classmap": [
  8428. "/Tests/"
  8429. ]
  8430. },
  8431. "notification-url": "https://packagist.org/downloads/",
  8432. "license": [
  8433. "MIT"
  8434. ],
  8435. "authors": [
  8436. {
  8437. "name": "Fabien Potencier",
  8438. "email": "fabien@symfony.com"
  8439. },
  8440. {
  8441. "name": "Symfony Community",
  8442. "homepage": "https://symfony.com/contributors"
  8443. }
  8444. ],
  8445. "description": "Symfony Process Component",
  8446. "homepage": "https://symfony.com",
  8447. "funding": [
  8448. {
  8449. "url": "https://symfony.com/sponsor",
  8450. "type": "custom"
  8451. },
  8452. {
  8453. "url": "https://github.com/fabpot",
  8454. "type": "github"
  8455. },
  8456. {
  8457. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8458. "type": "tidelift"
  8459. }
  8460. ],
  8461. "time": "2020-05-23T17:05:51+00:00"
  8462. },
  8463. {
  8464. "name": "symfony/psr-http-message-bridge",
  8465. "version": "v1.1.2",
  8466. "source": {
  8467. "type": "git",
  8468. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  8469. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b"
  8470. },
  8471. "dist": {
  8472. "type": "zip",
  8473. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b",
  8474. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b",
  8475. "shasum": ""
  8476. },
  8477. "require": {
  8478. "php": "^5.3.3 || ^7.0",
  8479. "psr/http-message": "^1.0",
  8480. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  8481. },
  8482. "require-dev": {
  8483. "symfony/phpunit-bridge": "^3.4 || ^4.0"
  8484. },
  8485. "suggest": {
  8486. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  8487. },
  8488. "type": "symfony-bridge",
  8489. "extra": {
  8490. "branch-alias": {
  8491. "dev-master": "1.1-dev"
  8492. }
  8493. },
  8494. "autoload": {
  8495. "psr-4": {
  8496. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  8497. },
  8498. "exclude-from-classmap": [
  8499. "/Tests/"
  8500. ]
  8501. },
  8502. "notification-url": "https://packagist.org/downloads/",
  8503. "license": [
  8504. "MIT"
  8505. ],
  8506. "authors": [
  8507. {
  8508. "name": "Symfony Community",
  8509. "homepage": "http://symfony.com/contributors"
  8510. },
  8511. {
  8512. "name": "Fabien Potencier",
  8513. "email": "fabien@symfony.com"
  8514. }
  8515. ],
  8516. "description": "PSR HTTP message bridge",
  8517. "homepage": "http://symfony.com",
  8518. "keywords": [
  8519. "http",
  8520. "http-message",
  8521. "psr-17",
  8522. "psr-7"
  8523. ],
  8524. "time": "2019-04-03T17:09:40+00:00"
  8525. },
  8526. {
  8527. "name": "symfony/routing",
  8528. "version": "v3.4.41",
  8529. "source": {
  8530. "type": "git",
  8531. "url": "https://github.com/symfony/routing.git",
  8532. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f"
  8533. },
  8534. "dist": {
  8535. "type": "zip",
  8536. "url": "https://api.github.com/repos/symfony/routing/zipball/e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  8537. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  8538. "shasum": ""
  8539. },
  8540. "require": {
  8541. "php": "^5.5.9|>=7.0.8"
  8542. },
  8543. "conflict": {
  8544. "symfony/config": "<3.3.1",
  8545. "symfony/dependency-injection": "<3.3",
  8546. "symfony/yaml": "<3.4"
  8547. },
  8548. "require-dev": {
  8549. "doctrine/annotations": "~1.0",
  8550. "psr/log": "~1.0",
  8551. "symfony/config": "^3.3.1|~4.0",
  8552. "symfony/dependency-injection": "~3.3|~4.0",
  8553. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8554. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8555. "symfony/yaml": "~3.4|~4.0"
  8556. },
  8557. "suggest": {
  8558. "doctrine/annotations": "For using the annotation loader",
  8559. "symfony/config": "For using the all-in-one router or any loader",
  8560. "symfony/expression-language": "For using expression matching",
  8561. "symfony/http-foundation": "For using a Symfony Request object",
  8562. "symfony/yaml": "For using the YAML loader"
  8563. },
  8564. "type": "library",
  8565. "extra": {
  8566. "branch-alias": {
  8567. "dev-master": "3.4-dev"
  8568. }
  8569. },
  8570. "autoload": {
  8571. "psr-4": {
  8572. "Symfony\\Component\\Routing\\": ""
  8573. },
  8574. "exclude-from-classmap": [
  8575. "/Tests/"
  8576. ]
  8577. },
  8578. "notification-url": "https://packagist.org/downloads/",
  8579. "license": [
  8580. "MIT"
  8581. ],
  8582. "authors": [
  8583. {
  8584. "name": "Fabien Potencier",
  8585. "email": "fabien@symfony.com"
  8586. },
  8587. {
  8588. "name": "Symfony Community",
  8589. "homepage": "https://symfony.com/contributors"
  8590. }
  8591. ],
  8592. "description": "Symfony Routing Component",
  8593. "homepage": "https://symfony.com",
  8594. "keywords": [
  8595. "router",
  8596. "routing",
  8597. "uri",
  8598. "url"
  8599. ],
  8600. "funding": [
  8601. {
  8602. "url": "https://symfony.com/sponsor",
  8603. "type": "custom"
  8604. },
  8605. {
  8606. "url": "https://github.com/fabpot",
  8607. "type": "github"
  8608. },
  8609. {
  8610. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8611. "type": "tidelift"
  8612. }
  8613. ],
  8614. "time": "2020-05-30T19:50:06+00:00"
  8615. },
  8616. {
  8617. "name": "symfony/serializer",
  8618. "version": "v3.4.41",
  8619. "source": {
  8620. "type": "git",
  8621. "url": "https://github.com/symfony/serializer.git",
  8622. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f"
  8623. },
  8624. "dist": {
  8625. "type": "zip",
  8626. "url": "https://api.github.com/repos/symfony/serializer/zipball/0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  8627. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  8628. "shasum": ""
  8629. },
  8630. "require": {
  8631. "php": "^5.5.9|>=7.0.8",
  8632. "symfony/polyfill-ctype": "~1.8"
  8633. },
  8634. "conflict": {
  8635. "phpdocumentor/type-resolver": "<0.2.1",
  8636. "symfony/dependency-injection": "<3.2",
  8637. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  8638. "symfony/property-info": "<3.1",
  8639. "symfony/yaml": "<3.4"
  8640. },
  8641. "require-dev": {
  8642. "doctrine/annotations": "~1.0",
  8643. "doctrine/cache": "~1.0",
  8644. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  8645. "symfony/cache": "~3.1|~4.0",
  8646. "symfony/config": "~2.8|~3.0|~4.0",
  8647. "symfony/dependency-injection": "~3.2|~4.0",
  8648. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8649. "symfony/property-access": "~2.8|~3.0|~4.0",
  8650. "symfony/property-info": "^3.4.13|~4.0",
  8651. "symfony/yaml": "~3.4|~4.0"
  8652. },
  8653. "suggest": {
  8654. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  8655. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  8656. "psr/cache-implementation": "For using the metadata cache.",
  8657. "symfony/config": "For using the XML mapping loader.",
  8658. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  8659. "symfony/property-access": "For using the ObjectNormalizer.",
  8660. "symfony/property-info": "To deserialize relations.",
  8661. "symfony/yaml": "For using the default YAML mapping loader."
  8662. },
  8663. "type": "library",
  8664. "extra": {
  8665. "branch-alias": {
  8666. "dev-master": "3.4-dev"
  8667. }
  8668. },
  8669. "autoload": {
  8670. "psr-4": {
  8671. "Symfony\\Component\\Serializer\\": ""
  8672. },
  8673. "exclude-from-classmap": [
  8674. "/Tests/"
  8675. ]
  8676. },
  8677. "notification-url": "https://packagist.org/downloads/",
  8678. "license": [
  8679. "MIT"
  8680. ],
  8681. "authors": [
  8682. {
  8683. "name": "Fabien Potencier",
  8684. "email": "fabien@symfony.com"
  8685. },
  8686. {
  8687. "name": "Symfony Community",
  8688. "homepage": "https://symfony.com/contributors"
  8689. }
  8690. ],
  8691. "description": "Symfony Serializer Component",
  8692. "homepage": "https://symfony.com",
  8693. "funding": [
  8694. {
  8695. "url": "https://symfony.com/sponsor",
  8696. "type": "custom"
  8697. },
  8698. {
  8699. "url": "https://github.com/fabpot",
  8700. "type": "github"
  8701. },
  8702. {
  8703. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8704. "type": "tidelift"
  8705. }
  8706. ],
  8707. "time": "2020-05-30T18:58:05+00:00"
  8708. },
  8709. {
  8710. "name": "symfony/translation",
  8711. "version": "v3.4.41",
  8712. "source": {
  8713. "type": "git",
  8714. "url": "https://github.com/symfony/translation.git",
  8715. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f"
  8716. },
  8717. "dist": {
  8718. "type": "zip",
  8719. "url": "https://api.github.com/repos/symfony/translation/zipball/b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  8720. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  8721. "shasum": ""
  8722. },
  8723. "require": {
  8724. "php": "^5.5.9|>=7.0.8",
  8725. "symfony/polyfill-mbstring": "~1.0"
  8726. },
  8727. "conflict": {
  8728. "symfony/config": "<2.8",
  8729. "symfony/dependency-injection": "<3.4",
  8730. "symfony/yaml": "<3.4"
  8731. },
  8732. "require-dev": {
  8733. "psr/log": "~1.0",
  8734. "symfony/config": "~2.8|~3.0|~4.0",
  8735. "symfony/dependency-injection": "~3.4|~4.0",
  8736. "symfony/finder": "~2.8|~3.0|~4.0",
  8737. "symfony/http-kernel": "~3.4|~4.0",
  8738. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  8739. "symfony/var-dumper": "~3.4|~4.0",
  8740. "symfony/yaml": "~3.4|~4.0"
  8741. },
  8742. "suggest": {
  8743. "psr/log-implementation": "To use logging capability in translator",
  8744. "symfony/config": "",
  8745. "symfony/yaml": ""
  8746. },
  8747. "type": "library",
  8748. "extra": {
  8749. "branch-alias": {
  8750. "dev-master": "3.4-dev"
  8751. }
  8752. },
  8753. "autoload": {
  8754. "psr-4": {
  8755. "Symfony\\Component\\Translation\\": ""
  8756. },
  8757. "exclude-from-classmap": [
  8758. "/Tests/"
  8759. ]
  8760. },
  8761. "notification-url": "https://packagist.org/downloads/",
  8762. "license": [
  8763. "MIT"
  8764. ],
  8765. "authors": [
  8766. {
  8767. "name": "Fabien Potencier",
  8768. "email": "fabien@symfony.com"
  8769. },
  8770. {
  8771. "name": "Symfony Community",
  8772. "homepage": "https://symfony.com/contributors"
  8773. }
  8774. ],
  8775. "description": "Symfony Translation Component",
  8776. "homepage": "https://symfony.com",
  8777. "funding": [
  8778. {
  8779. "url": "https://symfony.com/sponsor",
  8780. "type": "custom"
  8781. },
  8782. {
  8783. "url": "https://github.com/fabpot",
  8784. "type": "github"
  8785. },
  8786. {
  8787. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8788. "type": "tidelift"
  8789. }
  8790. ],
  8791. "time": "2020-05-30T18:58:05+00:00"
  8792. },
  8793. {
  8794. "name": "symfony/validator",
  8795. "version": "v3.4.41",
  8796. "source": {
  8797. "type": "git",
  8798. "url": "https://github.com/symfony/validator.git",
  8799. "reference": "5fb88120a11a75e17b602103a893dd8b27804529"
  8800. },
  8801. "dist": {
  8802. "type": "zip",
  8803. "url": "https://api.github.com/repos/symfony/validator/zipball/5fb88120a11a75e17b602103a893dd8b27804529",
  8804. "reference": "5fb88120a11a75e17b602103a893dd8b27804529",
  8805. "shasum": ""
  8806. },
  8807. "require": {
  8808. "php": "^5.5.9|>=7.0.8",
  8809. "symfony/polyfill-ctype": "~1.8",
  8810. "symfony/polyfill-mbstring": "~1.0",
  8811. "symfony/translation": "~2.8|~3.0|~4.0"
  8812. },
  8813. "conflict": {
  8814. "doctrine/lexer": "<1.0.2",
  8815. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  8816. "symfony/dependency-injection": "<3.3",
  8817. "symfony/http-kernel": "<3.3.5",
  8818. "symfony/yaml": "<3.4"
  8819. },
  8820. "require-dev": {
  8821. "doctrine/annotations": "~1.7",
  8822. "doctrine/cache": "~1.0",
  8823. "egulias/email-validator": "^2.1.10",
  8824. "symfony/cache": "~3.1|~4.0",
  8825. "symfony/config": "~2.8|~3.0|~4.0",
  8826. "symfony/dependency-injection": "~3.3|~4.0",
  8827. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8828. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8829. "symfony/http-kernel": "^3.3.5|~4.0",
  8830. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  8831. "symfony/property-access": "~2.8|~3.0|~4.0",
  8832. "symfony/var-dumper": "~3.3|~4.0",
  8833. "symfony/yaml": "~3.4|~4.0"
  8834. },
  8835. "suggest": {
  8836. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  8837. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  8838. "egulias/email-validator": "Strict (RFC compliant) email validation",
  8839. "psr/cache-implementation": "For using the metadata cache.",
  8840. "symfony/config": "",
  8841. "symfony/expression-language": "For using the Expression validator",
  8842. "symfony/http-foundation": "",
  8843. "symfony/intl": "",
  8844. "symfony/property-access": "For accessing properties within comparison constraints",
  8845. "symfony/yaml": ""
  8846. },
  8847. "type": "library",
  8848. "extra": {
  8849. "branch-alias": {
  8850. "dev-master": "3.4-dev"
  8851. }
  8852. },
  8853. "autoload": {
  8854. "psr-4": {
  8855. "Symfony\\Component\\Validator\\": ""
  8856. },
  8857. "exclude-from-classmap": [
  8858. "/Tests/"
  8859. ]
  8860. },
  8861. "notification-url": "https://packagist.org/downloads/",
  8862. "license": [
  8863. "MIT"
  8864. ],
  8865. "authors": [
  8866. {
  8867. "name": "Fabien Potencier",
  8868. "email": "fabien@symfony.com"
  8869. },
  8870. {
  8871. "name": "Symfony Community",
  8872. "homepage": "https://symfony.com/contributors"
  8873. }
  8874. ],
  8875. "description": "Symfony Validator Component",
  8876. "homepage": "https://symfony.com",
  8877. "funding": [
  8878. {
  8879. "url": "https://symfony.com/sponsor",
  8880. "type": "custom"
  8881. },
  8882. {
  8883. "url": "https://github.com/fabpot",
  8884. "type": "github"
  8885. },
  8886. {
  8887. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8888. "type": "tidelift"
  8889. }
  8890. ],
  8891. "time": "2020-05-30T18:43:38+00:00"
  8892. },
  8893. {
  8894. "name": "symfony/var-dumper",
  8895. "version": "v4.4.10",
  8896. "source": {
  8897. "type": "git",
  8898. "url": "https://github.com/symfony/var-dumper.git",
  8899. "reference": "56b3aa5eab0ac6720dcd559fd1d590ce301594ac"
  8900. },
  8901. "dist": {
  8902. "type": "zip",
  8903. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/56b3aa5eab0ac6720dcd559fd1d590ce301594ac",
  8904. "reference": "56b3aa5eab0ac6720dcd559fd1d590ce301594ac",
  8905. "shasum": ""
  8906. },
  8907. "require": {
  8908. "php": ">=7.1.3",
  8909. "symfony/polyfill-mbstring": "~1.0",
  8910. "symfony/polyfill-php72": "~1.5",
  8911. "symfony/polyfill-php80": "^1.15"
  8912. },
  8913. "conflict": {
  8914. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  8915. "symfony/console": "<3.4"
  8916. },
  8917. "require-dev": {
  8918. "ext-iconv": "*",
  8919. "symfony/console": "^3.4|^4.0|^5.0",
  8920. "symfony/process": "^4.4|^5.0",
  8921. "twig/twig": "^1.34|^2.4|^3.0"
  8922. },
  8923. "suggest": {
  8924. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  8925. "ext-intl": "To show region name in time zone dump",
  8926. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  8927. },
  8928. "bin": [
  8929. "Resources/bin/var-dump-server"
  8930. ],
  8931. "type": "library",
  8932. "extra": {
  8933. "branch-alias": {
  8934. "dev-master": "4.4-dev"
  8935. }
  8936. },
  8937. "autoload": {
  8938. "files": [
  8939. "Resources/functions/dump.php"
  8940. ],
  8941. "psr-4": {
  8942. "Symfony\\Component\\VarDumper\\": ""
  8943. },
  8944. "exclude-from-classmap": [
  8945. "/Tests/"
  8946. ]
  8947. },
  8948. "notification-url": "https://packagist.org/downloads/",
  8949. "license": [
  8950. "MIT"
  8951. ],
  8952. "authors": [
  8953. {
  8954. "name": "Nicolas Grekas",
  8955. "email": "p@tchwork.com"
  8956. },
  8957. {
  8958. "name": "Symfony Community",
  8959. "homepage": "https://symfony.com/contributors"
  8960. }
  8961. ],
  8962. "description": "Symfony mechanism for exploring and dumping PHP variables",
  8963. "homepage": "https://symfony.com",
  8964. "keywords": [
  8965. "debug",
  8966. "dump"
  8967. ],
  8968. "funding": [
  8969. {
  8970. "url": "https://symfony.com/sponsor",
  8971. "type": "custom"
  8972. },
  8973. {
  8974. "url": "https://github.com/fabpot",
  8975. "type": "github"
  8976. },
  8977. {
  8978. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8979. "type": "tidelift"
  8980. }
  8981. ],
  8982. "time": "2020-05-30T20:06:45+00:00"
  8983. },
  8984. {
  8985. "name": "symfony/yaml",
  8986. "version": "v3.4.41",
  8987. "source": {
  8988. "type": "git",
  8989. "url": "https://github.com/symfony/yaml.git",
  8990. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb"
  8991. },
  8992. "dist": {
  8993. "type": "zip",
  8994. "url": "https://api.github.com/repos/symfony/yaml/zipball/7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  8995. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  8996. "shasum": ""
  8997. },
  8998. "require": {
  8999. "php": "^5.5.9|>=7.0.8",
  9000. "symfony/polyfill-ctype": "~1.8"
  9001. },
  9002. "conflict": {
  9003. "symfony/console": "<3.4"
  9004. },
  9005. "require-dev": {
  9006. "symfony/console": "~3.4|~4.0"
  9007. },
  9008. "suggest": {
  9009. "symfony/console": "For validating YAML files using the lint command"
  9010. },
  9011. "type": "library",
  9012. "extra": {
  9013. "branch-alias": {
  9014. "dev-master": "3.4-dev"
  9015. }
  9016. },
  9017. "autoload": {
  9018. "psr-4": {
  9019. "Symfony\\Component\\Yaml\\": ""
  9020. },
  9021. "exclude-from-classmap": [
  9022. "/Tests/"
  9023. ]
  9024. },
  9025. "notification-url": "https://packagist.org/downloads/",
  9026. "license": [
  9027. "MIT"
  9028. ],
  9029. "authors": [
  9030. {
  9031. "name": "Fabien Potencier",
  9032. "email": "fabien@symfony.com"
  9033. },
  9034. {
  9035. "name": "Symfony Community",
  9036. "homepage": "https://symfony.com/contributors"
  9037. }
  9038. ],
  9039. "description": "Symfony Yaml Component",
  9040. "homepage": "https://symfony.com",
  9041. "funding": [
  9042. {
  9043. "url": "https://symfony.com/sponsor",
  9044. "type": "custom"
  9045. },
  9046. {
  9047. "url": "https://github.com/fabpot",
  9048. "type": "github"
  9049. },
  9050. {
  9051. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9052. "type": "tidelift"
  9053. }
  9054. ],
  9055. "time": "2020-05-11T07:51:54+00:00"
  9056. },
  9057. {
  9058. "name": "twbs/bootstrap",
  9059. "version": "v4.5.0",
  9060. "source": {
  9061. "type": "git",
  9062. "url": "https://github.com/twbs/bootstrap.git",
  9063. "reference": "7a6da5e3e7ad7c749dde806546a35d4d4259d965"
  9064. },
  9065. "dist": {
  9066. "type": "zip",
  9067. "url": "https://api.github.com/repos/twbs/bootstrap/zipball/7a6da5e3e7ad7c749dde806546a35d4d4259d965",
  9068. "reference": "7a6da5e3e7ad7c749dde806546a35d4d4259d965",
  9069. "shasum": ""
  9070. },
  9071. "replace": {
  9072. "twitter/bootstrap": "self.version"
  9073. },
  9074. "type": "library",
  9075. "extra": {
  9076. "branch-alias": {
  9077. "dev-master": "3.3.x-dev"
  9078. }
  9079. },
  9080. "notification-url": "https://packagist.org/downloads/",
  9081. "license": [
  9082. "MIT"
  9083. ],
  9084. "authors": [
  9085. {
  9086. "name": "Mark Otto",
  9087. "email": "markdotto@gmail.com"
  9088. },
  9089. {
  9090. "name": "Jacob Thornton",
  9091. "email": "jacobthornton@gmail.com"
  9092. }
  9093. ],
  9094. "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
  9095. "homepage": "https://getbootstrap.com/",
  9096. "keywords": [
  9097. "JS",
  9098. "css",
  9099. "framework",
  9100. "front-end",
  9101. "mobile-first",
  9102. "responsive",
  9103. "sass",
  9104. "web"
  9105. ],
  9106. "funding": [
  9107. {
  9108. "url": "https://opencollective.com/bootstrap",
  9109. "type": "open_collective"
  9110. }
  9111. ],
  9112. "time": "2020-05-12T17:44:42+00:00"
  9113. },
  9114. {
  9115. "name": "twig/twig",
  9116. "version": "v1.42.5",
  9117. "source": {
  9118. "type": "git",
  9119. "url": "https://github.com/twigphp/Twig.git",
  9120. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e"
  9121. },
  9122. "dist": {
  9123. "type": "zip",
  9124. "url": "https://api.github.com/repos/twigphp/Twig/zipball/87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  9125. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  9126. "shasum": ""
  9127. },
  9128. "require": {
  9129. "php": ">=5.5.0",
  9130. "symfony/polyfill-ctype": "^1.8"
  9131. },
  9132. "require-dev": {
  9133. "psr/container": "^1.0",
  9134. "symfony/phpunit-bridge": "^4.4|^5.0"
  9135. },
  9136. "type": "library",
  9137. "extra": {
  9138. "branch-alias": {
  9139. "dev-master": "1.42-dev"
  9140. }
  9141. },
  9142. "autoload": {
  9143. "psr-0": {
  9144. "Twig_": "lib/"
  9145. },
  9146. "psr-4": {
  9147. "Twig\\": "src/"
  9148. }
  9149. },
  9150. "notification-url": "https://packagist.org/downloads/",
  9151. "license": [
  9152. "BSD-3-Clause"
  9153. ],
  9154. "authors": [
  9155. {
  9156. "name": "Fabien Potencier",
  9157. "email": "fabien@symfony.com",
  9158. "homepage": "http://fabien.potencier.org",
  9159. "role": "Lead Developer"
  9160. },
  9161. {
  9162. "name": "Twig Team",
  9163. "role": "Contributors"
  9164. },
  9165. {
  9166. "name": "Armin Ronacher",
  9167. "email": "armin.ronacher@active-4.com",
  9168. "role": "Project Founder"
  9169. }
  9170. ],
  9171. "description": "Twig, the flexible, fast, and secure template language for PHP",
  9172. "homepage": "https://twig.symfony.com",
  9173. "keywords": [
  9174. "templating"
  9175. ],
  9176. "time": "2020-02-11T05:59:23+00:00"
  9177. },
  9178. {
  9179. "name": "typo3/phar-stream-wrapper",
  9180. "version": "v3.1.4",
  9181. "source": {
  9182. "type": "git",
  9183. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  9184. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04"
  9185. },
  9186. "dist": {
  9187. "type": "zip",
  9188. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  9189. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  9190. "shasum": ""
  9191. },
  9192. "require": {
  9193. "ext-json": "*",
  9194. "php": "^7.0"
  9195. },
  9196. "require-dev": {
  9197. "ext-xdebug": "*",
  9198. "phpunit/phpunit": "^6.5"
  9199. },
  9200. "suggest": {
  9201. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  9202. },
  9203. "type": "library",
  9204. "extra": {
  9205. "branch-alias": {
  9206. "dev-master": "v3.x-dev"
  9207. }
  9208. },
  9209. "autoload": {
  9210. "psr-4": {
  9211. "TYPO3\\PharStreamWrapper\\": "src/"
  9212. }
  9213. },
  9214. "notification-url": "https://packagist.org/downloads/",
  9215. "license": [
  9216. "MIT"
  9217. ],
  9218. "description": "Interceptors for PHP's native phar:// stream handling",
  9219. "homepage": "https://typo3.org/",
  9220. "keywords": [
  9221. "phar",
  9222. "php",
  9223. "security",
  9224. "stream-wrapper"
  9225. ],
  9226. "time": "2019-12-10T11:53:27+00:00"
  9227. },
  9228. {
  9229. "name": "webflo/drupal-finder",
  9230. "version": "1.2.0",
  9231. "source": {
  9232. "type": "git",
  9233. "url": "https://github.com/webflo/drupal-finder.git",
  9234. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e"
  9235. },
  9236. "dist": {
  9237. "type": "zip",
  9238. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  9239. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  9240. "shasum": ""
  9241. },
  9242. "require": {
  9243. "ext-json": "*"
  9244. },
  9245. "require-dev": {
  9246. "mikey179/vfsstream": "^1.6",
  9247. "phpunit/phpunit": "^4.8"
  9248. },
  9249. "type": "library",
  9250. "autoload": {
  9251. "classmap": [
  9252. "src/DrupalFinder.php"
  9253. ]
  9254. },
  9255. "notification-url": "https://packagist.org/downloads/",
  9256. "license": [
  9257. "GPL-2.0+"
  9258. ],
  9259. "authors": [
  9260. {
  9261. "name": "Florian Weber",
  9262. "email": "florian@webflo.org"
  9263. }
  9264. ],
  9265. "description": "Helper class to locate a Drupal installation from a given path.",
  9266. "time": "2019-08-02T08:06:18+00:00"
  9267. },
  9268. {
  9269. "name": "webmozart/assert",
  9270. "version": "1.9.1",
  9271. "source": {
  9272. "type": "git",
  9273. "url": "https://github.com/webmozart/assert.git",
  9274. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  9275. },
  9276. "dist": {
  9277. "type": "zip",
  9278. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  9279. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  9280. "shasum": ""
  9281. },
  9282. "require": {
  9283. "php": "^5.3.3 || ^7.0 || ^8.0",
  9284. "symfony/polyfill-ctype": "^1.8"
  9285. },
  9286. "conflict": {
  9287. "phpstan/phpstan": "<0.12.20",
  9288. "vimeo/psalm": "<3.9.1"
  9289. },
  9290. "require-dev": {
  9291. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  9292. },
  9293. "type": "library",
  9294. "autoload": {
  9295. "psr-4": {
  9296. "Webmozart\\Assert\\": "src/"
  9297. }
  9298. },
  9299. "notification-url": "https://packagist.org/downloads/",
  9300. "license": [
  9301. "MIT"
  9302. ],
  9303. "authors": [
  9304. {
  9305. "name": "Bernhard Schussek",
  9306. "email": "bschussek@gmail.com"
  9307. }
  9308. ],
  9309. "description": "Assertions to validate method input/output with nice error messages.",
  9310. "keywords": [
  9311. "assert",
  9312. "check",
  9313. "validate"
  9314. ],
  9315. "time": "2020-07-08T17:02:28+00:00"
  9316. },
  9317. {
  9318. "name": "webmozart/path-util",
  9319. "version": "2.3.0",
  9320. "source": {
  9321. "type": "git",
  9322. "url": "https://github.com/webmozart/path-util.git",
  9323. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  9324. },
  9325. "dist": {
  9326. "type": "zip",
  9327. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  9328. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  9329. "shasum": ""
  9330. },
  9331. "require": {
  9332. "php": ">=5.3.3",
  9333. "webmozart/assert": "~1.0"
  9334. },
  9335. "require-dev": {
  9336. "phpunit/phpunit": "^4.6",
  9337. "sebastian/version": "^1.0.1"
  9338. },
  9339. "type": "library",
  9340. "extra": {
  9341. "branch-alias": {
  9342. "dev-master": "2.3-dev"
  9343. }
  9344. },
  9345. "autoload": {
  9346. "psr-4": {
  9347. "Webmozart\\PathUtil\\": "src/"
  9348. }
  9349. },
  9350. "notification-url": "https://packagist.org/downloads/",
  9351. "license": [
  9352. "MIT"
  9353. ],
  9354. "authors": [
  9355. {
  9356. "name": "Bernhard Schussek",
  9357. "email": "bschussek@gmail.com"
  9358. }
  9359. ],
  9360. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  9361. "time": "2015-12-17T08:42:14+00:00"
  9362. },
  9363. {
  9364. "name": "willdurand/geocoder",
  9365. "version": "4.3.0",
  9366. "source": {
  9367. "type": "git",
  9368. "url": "https://github.com/geocoder-php/php-common.git",
  9369. "reference": "199d6a853947a5051e7ff14d35849759009bad5d"
  9370. },
  9371. "dist": {
  9372. "type": "zip",
  9373. "url": "https://api.github.com/repos/geocoder-php/php-common/zipball/199d6a853947a5051e7ff14d35849759009bad5d",
  9374. "reference": "199d6a853947a5051e7ff14d35849759009bad5d",
  9375. "shasum": ""
  9376. },
  9377. "require": {
  9378. "php": "^7.2"
  9379. },
  9380. "require-dev": {
  9381. "nyholm/nsa": "^1.1",
  9382. "phpunit/phpunit": "^7.5",
  9383. "symfony/stopwatch": "~2.5"
  9384. },
  9385. "suggest": {
  9386. "symfony/stopwatch": "If you want to use the TimedGeocoder"
  9387. },
  9388. "type": "library",
  9389. "extra": {
  9390. "branch-alias": {
  9391. "dev-master": "4.1-dev"
  9392. }
  9393. },
  9394. "autoload": {
  9395. "psr-4": {
  9396. "Geocoder\\": ""
  9397. },
  9398. "exclude-from-classmap": [
  9399. "/Tests/"
  9400. ]
  9401. },
  9402. "notification-url": "https://packagist.org/downloads/",
  9403. "license": [
  9404. "MIT"
  9405. ],
  9406. "authors": [
  9407. {
  9408. "name": "William Durand",
  9409. "email": "william.durand1@gmail.com"
  9410. }
  9411. ],
  9412. "description": "Common files for PHP Geocoder",
  9413. "homepage": "http://geocoder-php.org",
  9414. "keywords": [
  9415. "abstraction",
  9416. "geocoder",
  9417. "geocoding",
  9418. "geoip"
  9419. ],
  9420. "time": "2020-07-04T13:18:10+00:00"
  9421. }
  9422. ],
  9423. "packages-dev": [],
  9424. "aliases": [],
  9425. "minimum-stability": "dev",
  9426. "stability-flags": [],
  9427. "prefer-stable": true,
  9428. "prefer-lowest": false,
  9429. "platform": [],
  9430. "platform-dev": [],
  9431. "plugin-api-version": "1.1.0"
  9432. }