composer.lock 357 KB

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