composer.lock 366 KB

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