composer.lock 362 KB

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