composer.lock 360 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963
  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": "0f2c18ce9172cbf63b8d9e91fde3bfbf",
  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/search_api",
  4373. "version": "1.18.0",
  4374. "source": {
  4375. "type": "git",
  4376. "url": "https://git.drupalcode.org/project/search_api.git",
  4377. "reference": "8.x-1.18"
  4378. },
  4379. "dist": {
  4380. "type": "zip",
  4381. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.18.zip",
  4382. "reference": "8.x-1.18",
  4383. "shasum": "6cf1d6820ba55891e204bac40b6031ed15db482a"
  4384. },
  4385. "require": {
  4386. "drupal/core": "^8.8 || ^9"
  4387. },
  4388. "conflict": {
  4389. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  4390. },
  4391. "require-dev": {
  4392. "drupal/language_fallback_fix": "@dev",
  4393. "drupal/search_api_autocomplete": "@dev",
  4394. "drupal/search_api_db": "*"
  4395. },
  4396. "suggest": {
  4397. "drupal/facets": "Adds the ability to create faceted searches.",
  4398. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  4399. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  4400. },
  4401. "type": "drupal-module",
  4402. "extra": {
  4403. "drupal": {
  4404. "version": "8.x-1.18",
  4405. "datestamp": "1603359374",
  4406. "security-coverage": {
  4407. "status": "covered",
  4408. "message": "Covered by Drupal's security advisory policy"
  4409. }
  4410. },
  4411. "drush": {
  4412. "services": {
  4413. "drush.services.yml": "^9"
  4414. }
  4415. }
  4416. },
  4417. "notification-url": "https://packages.drupal.org/8/downloads",
  4418. "license": [
  4419. "GPL-2.0-or-later"
  4420. ],
  4421. "authors": [
  4422. {
  4423. "name": "Thomas Seidl",
  4424. "homepage": "https://www.drupal.org/u/drunken-monkey"
  4425. },
  4426. {
  4427. "name": "Nick Veenhof",
  4428. "homepage": "https://www.drupal.org/u/nick_vh"
  4429. },
  4430. {
  4431. "name": "See other contributors",
  4432. "homepage": "https://www.drupal.org/node/790418/committers"
  4433. }
  4434. ],
  4435. "description": "Provides a generic framework for modules offering search capabilities.",
  4436. "homepage": "https://www.drupal.org/project/search_api",
  4437. "support": {
  4438. "source": "https://git.drupalcode.org/project/search_api",
  4439. "issues": "https://www.drupal.org/project/issues/search_api",
  4440. "irc": "irc://irc.freenode.org/drupal-search-api"
  4441. }
  4442. },
  4443. {
  4444. "name": "drupal/site_settings",
  4445. "version": "1.19.0",
  4446. "source": {
  4447. "type": "git",
  4448. "url": "https://git.drupalcode.org/project/site_settings.git",
  4449. "reference": "8.x-1.19"
  4450. },
  4451. "dist": {
  4452. "type": "zip",
  4453. "url": "https://ftp.drupal.org/files/projects/site_settings-8.x-1.19.zip",
  4454. "reference": "8.x-1.19",
  4455. "shasum": "93977299549d33c4fbaad7a332fe7d3e1e2648b8"
  4456. },
  4457. "require": {
  4458. "drupal/core": "^8 || ^9"
  4459. },
  4460. "type": "drupal-module",
  4461. "extra": {
  4462. "drupal": {
  4463. "version": "8.x-1.19",
  4464. "datestamp": "1590234916",
  4465. "security-coverage": {
  4466. "status": "covered",
  4467. "message": "Covered by Drupal's security advisory policy"
  4468. }
  4469. }
  4470. },
  4471. "notification-url": "https://packages.drupal.org/8/downloads",
  4472. "license": [
  4473. "GPL-2.0+"
  4474. ],
  4475. "authors": [
  4476. {
  4477. "name": "scott_euser",
  4478. "homepage": "https://www.drupal.org/user/3267594"
  4479. },
  4480. {
  4481. "name": "stuart.wilkes@actionaid.org",
  4482. "homepage": "https://www.drupal.org/user/3584735"
  4483. }
  4484. ],
  4485. "description": "Provides a site settings entity",
  4486. "homepage": "https://www.drupal.org/project/site_settings",
  4487. "keywords": [
  4488. "Drupal"
  4489. ],
  4490. "support": {
  4491. "source": "http://cgit.drupalcode.org/site_settings",
  4492. "issues": "http://drupal.org/project/issues/site_settings"
  4493. }
  4494. },
  4495. {
  4496. "name": "drupal/subpathauto",
  4497. "version": "1.1.0",
  4498. "source": {
  4499. "type": "git",
  4500. "url": "https://git.drupalcode.org/project/subpathauto.git",
  4501. "reference": "8.x-1.1"
  4502. },
  4503. "dist": {
  4504. "type": "zip",
  4505. "url": "https://ftp.drupal.org/files/projects/subpathauto-8.x-1.1.zip",
  4506. "reference": "8.x-1.1",
  4507. "shasum": "1d027be84e82705c65669f5717b148562be3e766"
  4508. },
  4509. "require": {
  4510. "drupal/core": "^8.8 || ^9"
  4511. },
  4512. "type": "drupal-module",
  4513. "extra": {
  4514. "drupal": {
  4515. "version": "8.x-1.1",
  4516. "datestamp": "1590076268",
  4517. "security-coverage": {
  4518. "status": "covered",
  4519. "message": "Covered by Drupal's security advisory policy"
  4520. }
  4521. }
  4522. },
  4523. "notification-url": "https://packages.drupal.org/8/downloads",
  4524. "license": [
  4525. "GPL-2.0-or-later"
  4526. ],
  4527. "authors": [
  4528. {
  4529. "name": "Dave Reid",
  4530. "homepage": "https://www.drupal.org/user/53892"
  4531. },
  4532. {
  4533. "name": "lauriii",
  4534. "homepage": "https://www.drupal.org/user/1078742"
  4535. }
  4536. ],
  4537. "description": "Provides support for extending sub-paths of URL aliases.",
  4538. "homepage": "https://www.drupal.org/project/subpathauto",
  4539. "support": {
  4540. "source": "https://git.drupalcode.org/project/subpathauto"
  4541. }
  4542. },
  4543. {
  4544. "name": "drupal/tacjs",
  4545. "version": "3.10.0",
  4546. "source": {
  4547. "type": "git",
  4548. "url": "https://git.drupalcode.org/project/tacjs.git",
  4549. "reference": "8.x-3.10"
  4550. },
  4551. "dist": {
  4552. "type": "zip",
  4553. "url": "https://ftp.drupal.org/files/projects/tacjs-8.x-3.10.zip",
  4554. "reference": "8.x-3.10",
  4555. "shasum": "7b26dea8c20dc7925cc38c1fe3bcd75de65df6ec"
  4556. },
  4557. "require": {
  4558. "drupal/core": "^8 || ^9"
  4559. },
  4560. "type": "drupal-module",
  4561. "extra": {
  4562. "drupal": {
  4563. "version": "8.x-3.10",
  4564. "datestamp": "1597403474",
  4565. "security-coverage": {
  4566. "status": "covered",
  4567. "message": "Covered by Drupal's security advisory policy"
  4568. }
  4569. }
  4570. },
  4571. "notification-url": "https://packages.drupal.org/8/downloads",
  4572. "license": [
  4573. "GPL-2.0-or-later"
  4574. ],
  4575. "authors": [
  4576. {
  4577. "name": "a.boutakaoua",
  4578. "homepage": "https://www.drupal.org/user/3587144"
  4579. },
  4580. {
  4581. "name": "asmaakhalfi",
  4582. "homepage": "https://www.drupal.org/user/3587145"
  4583. },
  4584. {
  4585. "name": "boulaffasae",
  4586. "homepage": "https://www.drupal.org/user/3584750"
  4587. },
  4588. {
  4589. "name": "chaimaariz",
  4590. "homepage": "https://www.drupal.org/user/3549766"
  4591. },
  4592. {
  4593. "name": "k.asmouh",
  4594. "homepage": "https://www.drupal.org/user/3135943"
  4595. },
  4596. {
  4597. "name": "netsliver",
  4598. "homepage": "https://www.drupal.org/user/3082011"
  4599. },
  4600. {
  4601. "name": "z.yakoubi",
  4602. "homepage": "https://www.drupal.org/user/3621406"
  4603. }
  4604. ],
  4605. "description": "Comply to the European cookie law using tarteaucitron.js",
  4606. "homepage": "https://www.drupal.org/project/tacjs",
  4607. "support": {
  4608. "source": "https://git.drupalcode.org/project/tacjs"
  4609. }
  4610. },
  4611. {
  4612. "name": "drupal/time_range",
  4613. "version": "8.1.3",
  4614. "source": {
  4615. "type": "git",
  4616. "url": "https://git.drupalcode.org/project/time_range.git",
  4617. "reference": "8.1.3"
  4618. },
  4619. "dist": {
  4620. "type": "zip",
  4621. "url": "https://ftp.drupal.org/files/projects/time_range-8.1.3.zip",
  4622. "reference": "8.1.3",
  4623. "shasum": "404597e00e2e972c32647e8c1963efb0d7566d90"
  4624. },
  4625. "require": {
  4626. "drupal/core": "^8 || ^9"
  4627. },
  4628. "type": "drupal-module",
  4629. "extra": {
  4630. "drupal": {
  4631. "version": "8.1.3",
  4632. "datestamp": "1591497359",
  4633. "security-coverage": {
  4634. "status": "covered",
  4635. "message": "Covered by Drupal's security advisory policy"
  4636. }
  4637. }
  4638. },
  4639. "notification-url": "https://packages.drupal.org/8/downloads",
  4640. "license": [
  4641. "GPL-2.0+"
  4642. ],
  4643. "authors": [
  4644. {
  4645. "name": "dravenk",
  4646. "homepage": "https://www.drupal.org/user/3452417"
  4647. }
  4648. ],
  4649. "description": "Provides the form widget to fill in time range.",
  4650. "homepage": "https://github.com/DravenK/time-range.git",
  4651. "support": {
  4652. "source": "https://github.com/DravenK/time-range.git",
  4653. "issues": "https://github.com/DravenK/time-range/issues"
  4654. }
  4655. },
  4656. {
  4657. "name": "drupal/token",
  4658. "version": "1.7.0",
  4659. "source": {
  4660. "type": "git",
  4661. "url": "https://git.drupalcode.org/project/token.git",
  4662. "reference": "8.x-1.7"
  4663. },
  4664. "dist": {
  4665. "type": "zip",
  4666. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.7.zip",
  4667. "reference": "8.x-1.7",
  4668. "shasum": "c7e3a3757282e4c94e3c1fff08d01e22155cb853"
  4669. },
  4670. "require": {
  4671. "drupal/core": "^8.8 || ^9"
  4672. },
  4673. "type": "drupal-module",
  4674. "extra": {
  4675. "drupal": {
  4676. "version": "8.x-1.7",
  4677. "datestamp": "1589314266",
  4678. "security-coverage": {
  4679. "status": "covered",
  4680. "message": "Covered by Drupal's security advisory policy"
  4681. }
  4682. },
  4683. "drush": {
  4684. "services": {
  4685. "drush.services.yml": "^9 || ^10"
  4686. }
  4687. }
  4688. },
  4689. "notification-url": "https://packages.drupal.org/8/downloads",
  4690. "license": [
  4691. "GPL-2.0+"
  4692. ],
  4693. "authors": [
  4694. {
  4695. "name": "Berdir",
  4696. "homepage": "https://www.drupal.org/user/214652"
  4697. },
  4698. {
  4699. "name": "Dave Reid",
  4700. "homepage": "https://www.drupal.org/user/53892"
  4701. },
  4702. {
  4703. "name": "eaton",
  4704. "homepage": "https://www.drupal.org/user/16496"
  4705. },
  4706. {
  4707. "name": "fago",
  4708. "homepage": "https://www.drupal.org/user/16747"
  4709. },
  4710. {
  4711. "name": "greggles",
  4712. "homepage": "https://www.drupal.org/user/36762"
  4713. },
  4714. {
  4715. "name": "mikeryan",
  4716. "homepage": "https://www.drupal.org/user/4420"
  4717. }
  4718. ],
  4719. "description": "Provides a user interface for the Token API, some missing core tokens.",
  4720. "homepage": "https://www.drupal.org/project/token",
  4721. "support": {
  4722. "source": "https://git.drupalcode.org/project/token"
  4723. }
  4724. },
  4725. {
  4726. "name": "drupal/total_control",
  4727. "version": "2.0.0",
  4728. "source": {
  4729. "type": "git",
  4730. "url": "https://git.drupalcode.org/project/total_control.git",
  4731. "reference": "8.x-2.0"
  4732. },
  4733. "dist": {
  4734. "type": "zip",
  4735. "url": "https://ftp.drupal.org/files/projects/total_control-8.x-2.0.zip",
  4736. "reference": "8.x-2.0",
  4737. "shasum": "67e4bcf348fbc4647402de7903b48fc6414beece"
  4738. },
  4739. "require": {
  4740. "drupal/core": "^8 || ^9",
  4741. "drupal/ctools": "~3.0",
  4742. "drupal/page_manager": "~4.0",
  4743. "drupal/panels": "~4.0"
  4744. },
  4745. "type": "drupal-module",
  4746. "extra": {
  4747. "drupal": {
  4748. "version": "8.x-2.0",
  4749. "datestamp": "1583399169",
  4750. "security-coverage": {
  4751. "status": "covered",
  4752. "message": "Covered by Drupal's security advisory policy"
  4753. }
  4754. },
  4755. "branch-alias": {
  4756. "dev-8.x-2.x": "8.2.x-dev"
  4757. }
  4758. },
  4759. "notification-url": "https://packages.drupal.org/8/downloads",
  4760. "license": [
  4761. "GPL-2.0-or-later"
  4762. ],
  4763. "authors": [
  4764. {
  4765. "name": "Jen Lampton",
  4766. "homepage": "https://www.drupal.org/u/jenlampton",
  4767. "role": "Maintainer"
  4768. },
  4769. {
  4770. "name": "Mohammed J. Razem",
  4771. "homepage": "https://www.drupal.org/u/mohammed-j-razem",
  4772. "role": "Maintainer"
  4773. },
  4774. {
  4775. "name": "Abdulla Abu-Zakham",
  4776. "homepage": "https://www.drupal.org/u/abu-zakham",
  4777. "role": "Maintainer"
  4778. },
  4779. {
  4780. "name": "Rajab Natshah",
  4781. "homepage": "https://www.drupal.org/u/rajabnatshah",
  4782. "role": "Maintainer"
  4783. },
  4784. {
  4785. "name": "populist",
  4786. "homepage": "https://www.drupal.org/user/58600"
  4787. },
  4788. {
  4789. "name": "squiggy",
  4790. "homepage": "https://www.drupal.org/user/44299"
  4791. }
  4792. ],
  4793. "description": "Total Control Administration Dashboard",
  4794. "homepage": "https://www.drupal.org/project/total_control",
  4795. "support": {
  4796. "source": "https://git.drupalcode.org/project/total_control/tree/8.x-2.x",
  4797. "issues": "https://www.drupal.org/project/issues/total_control"
  4798. }
  4799. },
  4800. {
  4801. "name": "drupal/transliterate_filenames",
  4802. "version": "1.4.0",
  4803. "source": {
  4804. "type": "git",
  4805. "url": "https://git.drupalcode.org/project/transliterate_filenames.git",
  4806. "reference": "8.x-1.4"
  4807. },
  4808. "dist": {
  4809. "type": "zip",
  4810. "url": "https://ftp.drupal.org/files/projects/transliterate_filenames-8.x-1.4.zip",
  4811. "reference": "8.x-1.4",
  4812. "shasum": "de190ae6d1923f95c61e597a00ef50d64cfd982b"
  4813. },
  4814. "require": {
  4815. "drupal/core": "^8 || ^9"
  4816. },
  4817. "type": "drupal-module",
  4818. "extra": {
  4819. "drupal": {
  4820. "version": "8.x-1.4",
  4821. "datestamp": "1589218989",
  4822. "security-coverage": {
  4823. "status": "covered",
  4824. "message": "Covered by Drupal's security advisory policy"
  4825. }
  4826. }
  4827. },
  4828. "notification-url": "https://packages.drupal.org/8/downloads",
  4829. "license": [
  4830. "GPL-2.0-or-later"
  4831. ],
  4832. "authors": [
  4833. {
  4834. "name": "Alexander Dubovskoy",
  4835. "homepage": "https://www.drupal.org/u/adubovskoy",
  4836. "role": "Maintainer"
  4837. },
  4838. {
  4839. "name": "Andrei Ivnitskii",
  4840. "homepage": "https://www.drupal.org/u/ivnish",
  4841. "role": "Maintainer"
  4842. },
  4843. {
  4844. "name": "ivnish",
  4845. "homepage": "https://www.drupal.org/user/3547706"
  4846. }
  4847. ],
  4848. "description": "Transliteration for all uploading files (includes fields and ckeditor inline upload)",
  4849. "homepage": "https://www.drupal.org/project/transliterate_filenames",
  4850. "support": {
  4851. "source": "https://git.drupalcode.org/project/transliterate_filenames",
  4852. "issues": "https://www.drupal.org/project/issues/transliterate_filenames"
  4853. }
  4854. },
  4855. {
  4856. "name": "drupal/varbase_total_control",
  4857. "version": "6.12.0",
  4858. "source": {
  4859. "type": "git",
  4860. "url": "https://git.drupalcode.org/project/varbase_total_control.git",
  4861. "reference": "8.x-6.12"
  4862. },
  4863. "dist": {
  4864. "type": "zip",
  4865. "url": "https://ftp.drupal.org/files/projects/varbase_total_control-8.x-6.12.zip",
  4866. "reference": "8.x-6.12",
  4867. "shasum": "20acd0cf46e71d11f47ef641ec58ef3ed579e2f8"
  4868. },
  4869. "require": {
  4870. "composer/installers": "~1.0",
  4871. "cweagans/composer-patches": "~1.0",
  4872. "drupal/charts": "~3.0",
  4873. "drupal/core": "^8.8.0 || ~9.0.0",
  4874. "drupal/drupal-library-installer-plugin": "^0.3",
  4875. "drupal/google_analytics_reports": "~3.0",
  4876. "drupal/masonry": "~1.0",
  4877. "drupal/total_control": "~2.0",
  4878. "oomphinc/composer-installers-extender": "~1.0"
  4879. },
  4880. "suggest": {
  4881. "bower-asset/c3": "0.4.*: Provides JavaScript library necessary for C3",
  4882. "bower-asset/chartjs": "2.7.*: Provides JavaScript library necessary for Chart JS",
  4883. "bower-asset/d3": "3.5.*: Provides JavaScript library necessary for D3",
  4884. "npm-asset/imagesloaded": "~4.0: Provides JavaScript library necessary for Image Loaded",
  4885. "npm-asset/masonry-layout": "~4.0: Provides JavaScript library necessary for Masonry Layout"
  4886. },
  4887. "type": "drupal-module",
  4888. "extra": {
  4889. "drupal": {
  4890. "version": "8.x-6.12",
  4891. "datestamp": "1602078570",
  4892. "security-coverage": {
  4893. "status": "covered",
  4894. "message": "Covered by Drupal's security advisory policy"
  4895. }
  4896. },
  4897. "branch-alias": {
  4898. "dev-8.x-6.x": "8.6.x-dev"
  4899. },
  4900. "installer-types": [
  4901. "bower-asset",
  4902. "npm-asset"
  4903. ],
  4904. "drupal-libraries": {
  4905. "libraries": [
  4906. {
  4907. "name": "chartjs",
  4908. "package": "bower-asset/chartjs"
  4909. },
  4910. {
  4911. "name": "c3",
  4912. "package": "bower-asset/c3"
  4913. },
  4914. {
  4915. "name": "d3",
  4916. "package": "bower-asset/d3"
  4917. },
  4918. {
  4919. "name": "masonry",
  4920. "package": "npm-asset/masonry-layout"
  4921. },
  4922. {
  4923. "name": "imagesloaded",
  4924. "package": "npm-asset/imagesloaded"
  4925. }
  4926. ]
  4927. },
  4928. "enable-patching": true,
  4929. "composer-exit-on-patch-failure": true
  4930. },
  4931. "notification-url": "https://packages.drupal.org/8/downloads",
  4932. "license": [
  4933. "GPL-2.0-or-later"
  4934. ],
  4935. "authors": [
  4936. {
  4937. "name": "Vardot",
  4938. "homepage": "https://www.drupal.org/vardot",
  4939. "role": "Maintainer"
  4940. },
  4941. {
  4942. "name": "RajabNatshah",
  4943. "homepage": "https://www.drupal.org/user/1414312"
  4944. },
  4945. {
  4946. "name": "abu-zakham",
  4947. "homepage": "https://www.drupal.org/user/2836067"
  4948. }
  4949. ],
  4950. "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.",
  4951. "homepage": "https://github.com/Vardot/varbase_total_control",
  4952. "support": {
  4953. "source": "http://cgit.drupalcode.org/varbase_total_control",
  4954. "issues": "https://www.drupal.org/project/issues/varbase_total_control"
  4955. }
  4956. },
  4957. {
  4958. "name": "drupal/video_embed_field",
  4959. "version": "2.4.0",
  4960. "source": {
  4961. "type": "git",
  4962. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  4963. "reference": "8.x-2.4"
  4964. },
  4965. "dist": {
  4966. "type": "zip",
  4967. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.4.zip",
  4968. "reference": "8.x-2.4",
  4969. "shasum": "96b14bb93c1bb6a07b84315a4f87367870f8b574"
  4970. },
  4971. "require": {
  4972. "drupal/core": "^8.8 || ^9"
  4973. },
  4974. "require-dev": {
  4975. "drupal/colorbox": "^1.0",
  4976. "drupal/video_embed_media": "*"
  4977. },
  4978. "type": "drupal-module",
  4979. "extra": {
  4980. "drupal": {
  4981. "version": "8.x-2.4",
  4982. "datestamp": "1587686284",
  4983. "security-coverage": {
  4984. "status": "covered",
  4985. "message": "Covered by Drupal's security advisory policy"
  4986. }
  4987. }
  4988. },
  4989. "notification-url": "https://packages.drupal.org/8/downloads",
  4990. "license": [
  4991. "GPL-2.0+"
  4992. ],
  4993. "authors": [
  4994. {
  4995. "name": "Sam152",
  4996. "homepage": "https://www.drupal.org/user/1485048"
  4997. },
  4998. {
  4999. "name": "jec006",
  5000. "homepage": "https://www.drupal.org/user/855980"
  5001. },
  5002. {
  5003. "name": "plopesc",
  5004. "homepage": "https://www.drupal.org/user/282415"
  5005. }
  5006. ],
  5007. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  5008. "homepage": "https://www.drupal.org/project/video_embed_field",
  5009. "support": {
  5010. "source": "https://git.drupalcode.org/project/video_embed_field"
  5011. }
  5012. },
  5013. {
  5014. "name": "drupal/views_url_path_arguments",
  5015. "version": "1.1.0",
  5016. "source": {
  5017. "type": "git",
  5018. "url": "https://git.drupalcode.org/project/views_url_path_arguments.git",
  5019. "reference": "8.x-1.1"
  5020. },
  5021. "dist": {
  5022. "type": "zip",
  5023. "url": "https://ftp.drupal.org/files/projects/views_url_path_arguments-8.x-1.1.zip",
  5024. "reference": "8.x-1.1",
  5025. "shasum": "55f38957395ae8f35bcdbc44a0f12822e844c73e"
  5026. },
  5027. "require": {
  5028. "drupal/core": "^8 || ^9"
  5029. },
  5030. "type": "drupal-module",
  5031. "extra": {
  5032. "drupal": {
  5033. "version": "8.x-1.1",
  5034. "datestamp": "1586279325",
  5035. "security-coverage": {
  5036. "status": "covered",
  5037. "message": "Covered by Drupal's security advisory policy"
  5038. }
  5039. }
  5040. },
  5041. "notification-url": "https://packages.drupal.org/8/downloads",
  5042. "license": [
  5043. "GPL-2.0+"
  5044. ],
  5045. "authors": [
  5046. {
  5047. "name": "heddn",
  5048. "homepage": "https://www.drupal.org/user/1463982"
  5049. }
  5050. ],
  5051. "description": "Simple module to convert a view argument's entity id into its url path.",
  5052. "homepage": "https://www.drupal.org/project/views_url_path_arguments",
  5053. "keywords": [
  5054. "Drupal"
  5055. ],
  5056. "support": {
  5057. "source": "http://cgit.drupalcode.org/views_url_path_arguments",
  5058. "issues": "https://www.drupal.org/project/issues/views_url_path_arguments"
  5059. }
  5060. },
  5061. {
  5062. "name": "drush/drush",
  5063. "version": "10.3.5",
  5064. "source": {
  5065. "type": "git",
  5066. "url": "https://github.com/drush-ops/drush.git",
  5067. "reference": "ce1352c816d8852e64226142eeddc68f823646f1"
  5068. },
  5069. "dist": {
  5070. "type": "zip",
  5071. "url": "https://api.github.com/repos/drush-ops/drush/zipball/ce1352c816d8852e64226142eeddc68f823646f1",
  5072. "reference": "ce1352c816d8852e64226142eeddc68f823646f1",
  5073. "shasum": ""
  5074. },
  5075. "require": {
  5076. "chi-teck/drupal-code-generator": "^1.32.1",
  5077. "composer/semver": "^1.4",
  5078. "consolidation/config": "^1.2",
  5079. "consolidation/filter-via-dot-access-data": "^1",
  5080. "consolidation/robo": "^1.4.11 || ^2",
  5081. "consolidation/site-alias": "^3.0.0@stable",
  5082. "consolidation/site-process": "^2.1 || ^4",
  5083. "ext-dom": "*",
  5084. "grasmash/yaml-expander": "^1.1.1",
  5085. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  5086. "league/container": "~2",
  5087. "php": ">=7.1.3",
  5088. "psr/log": "~1.0",
  5089. "psy/psysh": "~0.6",
  5090. "symfony/event-dispatcher": "^3.4 || ^4.0",
  5091. "symfony/finder": "^3.4 || ^4.0",
  5092. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0",
  5093. "symfony/yaml": "^3.4 || ^4.0",
  5094. "webflo/drupal-finder": "^1.2",
  5095. "webmozart/path-util": "^2.1.0"
  5096. },
  5097. "require-dev": {
  5098. "composer/installers": "^1.7",
  5099. "cweagans/composer-patches": "~1.0",
  5100. "david-garcia/phpwhois": "4.3.0",
  5101. "drupal/alinks": "1.0.0",
  5102. "drupal/core-recommended": "^8.8",
  5103. "g1a/composer-test-scenarios": "^3",
  5104. "lox/xhprof": "dev-master",
  5105. "phpunit/phpunit": "^4.8.36 || ^6.1",
  5106. "squizlabs/php_codesniffer": "^2.7 || ^3",
  5107. "vlucas/phpdotenv": "^2.4"
  5108. },
  5109. "bin": [
  5110. "drush"
  5111. ],
  5112. "type": "library",
  5113. "extra": {
  5114. "installer-paths": {
  5115. "sut/core": [
  5116. "type:drupal-core"
  5117. ],
  5118. "sut/libraries/{$name}": [
  5119. "type:drupal-library"
  5120. ],
  5121. "sut/modules/unish/{$name}": [
  5122. "drupal/devel"
  5123. ],
  5124. "sut/themes/unish/{$name}": [
  5125. "drupal/empty_theme"
  5126. ],
  5127. "sut/modules/contrib/{$name}": [
  5128. "type:drupal-module"
  5129. ],
  5130. "sut/profiles/contrib/{$name}": [
  5131. "type:drupal-profile"
  5132. ],
  5133. "sut/themes/contrib/{$name}": [
  5134. "type:drupal-theme"
  5135. ],
  5136. "sut/drush/contrib/{$name}": [
  5137. "type:drupal-drush"
  5138. ]
  5139. }
  5140. },
  5141. "autoload": {
  5142. "psr-4": {
  5143. "Drush\\": "src/",
  5144. "Drush\\Internal\\": "src/internal-forks"
  5145. }
  5146. },
  5147. "notification-url": "https://packagist.org/downloads/",
  5148. "license": [
  5149. "GPL-2.0-or-later"
  5150. ],
  5151. "authors": [
  5152. {
  5153. "name": "Moshe Weitzman",
  5154. "email": "weitzman@tejasa.com"
  5155. },
  5156. {
  5157. "name": "Owen Barton",
  5158. "email": "drupal@owenbarton.com"
  5159. },
  5160. {
  5161. "name": "Greg Anderson",
  5162. "email": "greg.1.anderson@greenknowe.org"
  5163. },
  5164. {
  5165. "name": "Jonathan Araña Cruz",
  5166. "email": "jonhattan@faita.net"
  5167. },
  5168. {
  5169. "name": "Jonathan Hedstrom",
  5170. "email": "jhedstrom@gmail.com"
  5171. },
  5172. {
  5173. "name": "Christopher Gervais",
  5174. "email": "chris@ergonlogic.com"
  5175. },
  5176. {
  5177. "name": "Dave Reid",
  5178. "email": "dave@davereid.net"
  5179. },
  5180. {
  5181. "name": "Damian Lee",
  5182. "email": "damiankloip@googlemail.com"
  5183. }
  5184. ],
  5185. "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.",
  5186. "homepage": "http://www.drush.org",
  5187. "funding": [
  5188. {
  5189. "url": "https://github.com/weitzman",
  5190. "type": "github"
  5191. }
  5192. ],
  5193. "time": "2020-10-05T11:50:13+00:00"
  5194. },
  5195. {
  5196. "name": "easyrdf/easyrdf",
  5197. "version": "0.9.1",
  5198. "source": {
  5199. "type": "git",
  5200. "url": "https://github.com/easyrdf/easyrdf.git",
  5201. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  5202. },
  5203. "dist": {
  5204. "type": "zip",
  5205. "url": "https://api.github.com/repos/easyrdf/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  5206. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  5207. "shasum": ""
  5208. },
  5209. "require": {
  5210. "ext-mbstring": "*",
  5211. "ext-pcre": "*",
  5212. "php": ">=5.2.8"
  5213. },
  5214. "require-dev": {
  5215. "phpunit/phpunit": "~3.5",
  5216. "sami/sami": "~1.4",
  5217. "squizlabs/php_codesniffer": "~1.4.3"
  5218. },
  5219. "suggest": {
  5220. "ml/json-ld": "~1.0"
  5221. },
  5222. "type": "library",
  5223. "autoload": {
  5224. "psr-0": {
  5225. "EasyRdf_": "lib/"
  5226. }
  5227. },
  5228. "notification-url": "https://packagist.org/downloads/",
  5229. "license": [
  5230. "BSD-3-Clause"
  5231. ],
  5232. "authors": [
  5233. {
  5234. "name": "Nicholas Humfrey",
  5235. "email": "njh@aelius.com",
  5236. "homepage": "http://www.aelius.com/njh/",
  5237. "role": "Developer"
  5238. },
  5239. {
  5240. "name": "Alexey Zakhlestin",
  5241. "email": "indeyets@gmail.com",
  5242. "role": "Developer"
  5243. }
  5244. ],
  5245. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  5246. "homepage": "http://www.easyrdf.org/",
  5247. "keywords": [
  5248. "Linked Data",
  5249. "RDF",
  5250. "Semantic Web",
  5251. "Turtle",
  5252. "rdfa",
  5253. "sparql"
  5254. ],
  5255. "time": "2015-02-27T09:45:49+00:00"
  5256. },
  5257. {
  5258. "name": "egulias/email-validator",
  5259. "version": "2.1.17",
  5260. "source": {
  5261. "type": "git",
  5262. "url": "https://github.com/egulias/EmailValidator.git",
  5263. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a"
  5264. },
  5265. "dist": {
  5266. "type": "zip",
  5267. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ade6887fd9bd74177769645ab5c474824f8a418a",
  5268. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a",
  5269. "shasum": ""
  5270. },
  5271. "require": {
  5272. "doctrine/lexer": "^1.0.1",
  5273. "php": ">=5.5",
  5274. "symfony/polyfill-intl-idn": "^1.10"
  5275. },
  5276. "require-dev": {
  5277. "dominicsayers/isemail": "^3.0.7",
  5278. "phpunit/phpunit": "^4.8.36|^7.5.15",
  5279. "satooshi/php-coveralls": "^1.0.1"
  5280. },
  5281. "suggest": {
  5282. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  5283. },
  5284. "type": "library",
  5285. "extra": {
  5286. "branch-alias": {
  5287. "dev-master": "2.1.x-dev"
  5288. }
  5289. },
  5290. "autoload": {
  5291. "psr-4": {
  5292. "Egulias\\EmailValidator\\": "EmailValidator"
  5293. }
  5294. },
  5295. "notification-url": "https://packagist.org/downloads/",
  5296. "license": [
  5297. "MIT"
  5298. ],
  5299. "authors": [
  5300. {
  5301. "name": "Eduardo Gulias Davis"
  5302. }
  5303. ],
  5304. "description": "A library for validating emails against several RFCs",
  5305. "homepage": "https://github.com/egulias/EmailValidator",
  5306. "keywords": [
  5307. "email",
  5308. "emailvalidation",
  5309. "emailvalidator",
  5310. "validation",
  5311. "validator"
  5312. ],
  5313. "time": "2020-02-13T22:36:52+00:00"
  5314. },
  5315. {
  5316. "name": "gasparesganga/php-shapefile",
  5317. "version": "v3.3.3",
  5318. "source": {
  5319. "type": "git",
  5320. "url": "https://github.com/gasparesganga/php-shapefile.git",
  5321. "reference": "839475272ef8c7585f5afa31939c95d6d02371a6"
  5322. },
  5323. "dist": {
  5324. "type": "zip",
  5325. "url": "https://api.github.com/repos/gasparesganga/php-shapefile/zipball/839475272ef8c7585f5afa31939c95d6d02371a6",
  5326. "reference": "839475272ef8c7585f5afa31939c95d6d02371a6",
  5327. "shasum": ""
  5328. },
  5329. "require": {
  5330. "php": ">=5.4.0"
  5331. },
  5332. "type": "library",
  5333. "autoload": {
  5334. "psr-4": {
  5335. "Shapefile\\": "src/Shapefile/"
  5336. }
  5337. },
  5338. "notification-url": "https://packagist.org/downloads/",
  5339. "license": [
  5340. "MIT"
  5341. ],
  5342. "authors": [
  5343. {
  5344. "name": "Gaspare Sganga",
  5345. "email": "contact@gasparesganga.com",
  5346. "homepage": "https://gasparesganga.com/labs/php-shapefile/",
  5347. "role": "Developer"
  5348. }
  5349. ],
  5350. "description": "PHP library to read and write ESRI Shapefiles, compatible with WKT and GeoJSON",
  5351. "homepage": "https://gasparesganga.com/labs/php-shapefile/",
  5352. "keywords": [
  5353. "ESRI",
  5354. "Shapefile",
  5355. "dbf",
  5356. "geojson",
  5357. "shape",
  5358. "shp",
  5359. "wkt"
  5360. ],
  5361. "time": "2020-09-17T08:22:36+00:00"
  5362. },
  5363. {
  5364. "name": "geocoder-php/chain-provider",
  5365. "version": "4.2.0",
  5366. "source": {
  5367. "type": "git",
  5368. "url": "https://github.com/geocoder-php/chain-provider.git",
  5369. "reference": "f9f8d33e958eb795c80a86a98064793d2a1084aa"
  5370. },
  5371. "dist": {
  5372. "type": "zip",
  5373. "url": "https://api.github.com/repos/geocoder-php/chain-provider/zipball/f9f8d33e958eb795c80a86a98064793d2a1084aa",
  5374. "reference": "f9f8d33e958eb795c80a86a98064793d2a1084aa",
  5375. "shasum": ""
  5376. },
  5377. "require": {
  5378. "php": "^7.2",
  5379. "psr/log": "^1.0",
  5380. "willdurand/geocoder": "^4.0"
  5381. },
  5382. "provide": {
  5383. "geocoder-php/provider-implementation": "1.0"
  5384. },
  5385. "require-dev": {
  5386. "nyholm/nsa": "^1.1",
  5387. "php-http/curl-client": "^1.7",
  5388. "php-http/message": "^1.0",
  5389. "phpunit/phpunit": "^7.5"
  5390. },
  5391. "type": "library",
  5392. "extra": {
  5393. "branch-alias": {
  5394. "dev-master": "4.0-dev"
  5395. }
  5396. },
  5397. "autoload": {
  5398. "psr-4": {
  5399. "Geocoder\\Provider\\Chain\\": ""
  5400. },
  5401. "exclude-from-classmap": [
  5402. "/Tests/"
  5403. ]
  5404. },
  5405. "notification-url": "https://packagist.org/downloads/",
  5406. "license": [
  5407. "MIT"
  5408. ],
  5409. "authors": [
  5410. {
  5411. "name": "William Durand",
  5412. "email": "william.durand1@gmail.com"
  5413. }
  5414. ],
  5415. "description": "Geocoder chain adapter",
  5416. "homepage": "http://geocoder-php.org/Geocoder/",
  5417. "time": "2020-07-04T13:18:10+00:00"
  5418. },
  5419. {
  5420. "name": "geocoder-php/common-http",
  5421. "version": "4.3.0",
  5422. "source": {
  5423. "type": "git",
  5424. "url": "https://github.com/geocoder-php/php-common-http.git",
  5425. "reference": "2995af04aa877ecb705054556bdea540662db971"
  5426. },
  5427. "dist": {
  5428. "type": "zip",
  5429. "url": "https://api.github.com/repos/geocoder-php/php-common-http/zipball/2995af04aa877ecb705054556bdea540662db971",
  5430. "reference": "2995af04aa877ecb705054556bdea540662db971",
  5431. "shasum": ""
  5432. },
  5433. "require": {
  5434. "php": "^7.2",
  5435. "php-http/client-implementation": "^1.0",
  5436. "php-http/discovery": "^1.6",
  5437. "php-http/httplug": "^1.0 || ^2.0",
  5438. "php-http/message-factory": "^1.0.2",
  5439. "psr/http-message": "^1.0",
  5440. "psr/http-message-implementation": "^1.0",
  5441. "willdurand/geocoder": "^4.0"
  5442. },
  5443. "require-dev": {
  5444. "nyholm/psr7": "^1.0",
  5445. "php-http/message": "^1.0",
  5446. "php-http/mock-client": "^1.0",
  5447. "phpunit/phpunit": "^7.5",
  5448. "symfony/stopwatch": "~2.5"
  5449. },
  5450. "type": "library",
  5451. "extra": {
  5452. "branch-alias": {
  5453. "dev-master": "4.0-dev"
  5454. }
  5455. },
  5456. "autoload": {
  5457. "psr-4": {
  5458. "Geocoder\\Http\\": ""
  5459. },
  5460. "exclude-from-classmap": [
  5461. "/Tests/"
  5462. ]
  5463. },
  5464. "notification-url": "https://packagist.org/downloads/",
  5465. "license": [
  5466. "MIT"
  5467. ],
  5468. "authors": [
  5469. {
  5470. "name": "Tobias Nyholm",
  5471. "email": "tobias.nyholm@gmail.com"
  5472. }
  5473. ],
  5474. "description": "Common files for HTTP based Geocoders",
  5475. "homepage": "http://geocoder-php.org",
  5476. "keywords": [
  5477. "http geocoder"
  5478. ],
  5479. "time": "2020-07-04T13:18:10+00:00"
  5480. },
  5481. {
  5482. "name": "geocoder-php/google-maps-provider",
  5483. "version": "4.5.0",
  5484. "source": {
  5485. "type": "git",
  5486. "url": "https://github.com/geocoder-php/google-maps-provider.git",
  5487. "reference": "830e5cd42eba6cb42a7a72788049edcb73f2d632"
  5488. },
  5489. "dist": {
  5490. "type": "zip",
  5491. "url": "https://api.github.com/repos/geocoder-php/google-maps-provider/zipball/830e5cd42eba6cb42a7a72788049edcb73f2d632",
  5492. "reference": "830e5cd42eba6cb42a7a72788049edcb73f2d632",
  5493. "shasum": ""
  5494. },
  5495. "require": {
  5496. "geocoder-php/common-http": "^4.0",
  5497. "php": "^7.2",
  5498. "willdurand/geocoder": "^4.0"
  5499. },
  5500. "provide": {
  5501. "geocoder-php/provider-implementation": "1.0"
  5502. },
  5503. "require-dev": {
  5504. "geocoder-php/provider-integration-tests": "^1.0",
  5505. "php-http/curl-client": "^1.7",
  5506. "php-http/message": "^1.0",
  5507. "phpunit/phpunit": "^7.5"
  5508. },
  5509. "type": "library",
  5510. "extra": {
  5511. "branch-alias": {
  5512. "dev-master": "4.0-dev"
  5513. }
  5514. },
  5515. "autoload": {
  5516. "psr-4": {
  5517. "Geocoder\\Provider\\GoogleMaps\\": ""
  5518. },
  5519. "exclude-from-classmap": [
  5520. "/Tests/"
  5521. ]
  5522. },
  5523. "notification-url": "https://packagist.org/downloads/",
  5524. "license": [
  5525. "MIT"
  5526. ],
  5527. "authors": [
  5528. {
  5529. "name": "William Durand",
  5530. "email": "william.durand1@gmail.com"
  5531. }
  5532. ],
  5533. "description": "Geocoder GoogleMaps adapter",
  5534. "homepage": "http://geocoder-php.org/Geocoder/",
  5535. "time": "2020-07-04T13:18:10+00:00"
  5536. },
  5537. {
  5538. "name": "google/protobuf",
  5539. "version": "v3.6.1.3",
  5540. "source": {
  5541. "type": "git",
  5542. "url": "https://github.com/protocolbuffers/protobuf-php.git",
  5543. "reference": "c39346815303f63ad295d6499e11d914c40040e6"
  5544. },
  5545. "dist": {
  5546. "type": "zip",
  5547. "url": "https://api.github.com/repos/protocolbuffers/protobuf-php/zipball/c39346815303f63ad295d6499e11d914c40040e6",
  5548. "reference": "c39346815303f63ad295d6499e11d914c40040e6",
  5549. "shasum": ""
  5550. },
  5551. "require": {
  5552. "php": ">=5.5.0"
  5553. },
  5554. "require-dev": {
  5555. "phpunit/phpunit": ">=4.8.0"
  5556. },
  5557. "suggest": {
  5558. "ext-bcmath": "Need to support JSON deserialization"
  5559. },
  5560. "type": "library",
  5561. "autoload": {
  5562. "psr-4": {
  5563. "Google\\Protobuf\\": "src/Google/Protobuf",
  5564. "GPBMetadata\\Google\\Protobuf\\": "src/GPBMetadata/Google/Protobuf"
  5565. }
  5566. },
  5567. "notification-url": "https://packagist.org/downloads/",
  5568. "license": [
  5569. "BSD-3-Clause"
  5570. ],
  5571. "description": "proto library for PHP",
  5572. "homepage": "https://developers.google.com/protocol-buffers/",
  5573. "keywords": [
  5574. "proto"
  5575. ],
  5576. "time": "2019-02-25T22:48:21+00:00"
  5577. },
  5578. {
  5579. "name": "grasmash/expander",
  5580. "version": "1.0.0",
  5581. "source": {
  5582. "type": "git",
  5583. "url": "https://github.com/grasmash/expander.git",
  5584. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  5585. },
  5586. "dist": {
  5587. "type": "zip",
  5588. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5589. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5590. "shasum": ""
  5591. },
  5592. "require": {
  5593. "dflydev/dot-access-data": "^1.1.0",
  5594. "php": ">=5.4"
  5595. },
  5596. "require-dev": {
  5597. "greg-1-anderson/composer-test-scenarios": "^1",
  5598. "phpunit/phpunit": "^4|^5.5.4",
  5599. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5600. "squizlabs/php_codesniffer": "^2.7"
  5601. },
  5602. "type": "library",
  5603. "extra": {
  5604. "branch-alias": {
  5605. "dev-master": "1.x-dev"
  5606. }
  5607. },
  5608. "autoload": {
  5609. "psr-4": {
  5610. "Grasmash\\Expander\\": "src/"
  5611. }
  5612. },
  5613. "notification-url": "https://packagist.org/downloads/",
  5614. "license": [
  5615. "MIT"
  5616. ],
  5617. "authors": [
  5618. {
  5619. "name": "Matthew Grasmick"
  5620. }
  5621. ],
  5622. "description": "Expands internal property references in PHP arrays file.",
  5623. "time": "2017-12-21T22:14:55+00:00"
  5624. },
  5625. {
  5626. "name": "grasmash/yaml-expander",
  5627. "version": "1.4.0",
  5628. "source": {
  5629. "type": "git",
  5630. "url": "https://github.com/grasmash/yaml-expander.git",
  5631. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  5632. },
  5633. "dist": {
  5634. "type": "zip",
  5635. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5636. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5637. "shasum": ""
  5638. },
  5639. "require": {
  5640. "dflydev/dot-access-data": "^1.1.0",
  5641. "php": ">=5.4",
  5642. "symfony/yaml": "^2.8.11|^3|^4"
  5643. },
  5644. "require-dev": {
  5645. "greg-1-anderson/composer-test-scenarios": "^1",
  5646. "phpunit/phpunit": "^4.8|^5.5.4",
  5647. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5648. "squizlabs/php_codesniffer": "^2.7"
  5649. },
  5650. "type": "library",
  5651. "extra": {
  5652. "branch-alias": {
  5653. "dev-master": "1.x-dev"
  5654. }
  5655. },
  5656. "autoload": {
  5657. "psr-4": {
  5658. "Grasmash\\YamlExpander\\": "src/"
  5659. }
  5660. },
  5661. "notification-url": "https://packagist.org/downloads/",
  5662. "license": [
  5663. "MIT"
  5664. ],
  5665. "authors": [
  5666. {
  5667. "name": "Matthew Grasmick"
  5668. }
  5669. ],
  5670. "description": "Expands internal property references in a yaml file.",
  5671. "time": "2017-12-16T16:06:03+00:00"
  5672. },
  5673. {
  5674. "name": "guzzlehttp/guzzle",
  5675. "version": "6.5.4",
  5676. "source": {
  5677. "type": "git",
  5678. "url": "https://github.com/guzzle/guzzle.git",
  5679. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d"
  5680. },
  5681. "dist": {
  5682. "type": "zip",
  5683. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  5684. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  5685. "shasum": ""
  5686. },
  5687. "require": {
  5688. "ext-json": "*",
  5689. "guzzlehttp/promises": "^1.0",
  5690. "guzzlehttp/psr7": "^1.6.1",
  5691. "php": ">=5.5",
  5692. "symfony/polyfill-intl-idn": "1.17.0"
  5693. },
  5694. "require-dev": {
  5695. "ext-curl": "*",
  5696. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  5697. "psr/log": "^1.1"
  5698. },
  5699. "suggest": {
  5700. "psr/log": "Required for using the Log middleware"
  5701. },
  5702. "type": "library",
  5703. "extra": {
  5704. "branch-alias": {
  5705. "dev-master": "6.5-dev"
  5706. }
  5707. },
  5708. "autoload": {
  5709. "psr-4": {
  5710. "GuzzleHttp\\": "src/"
  5711. },
  5712. "files": [
  5713. "src/functions_include.php"
  5714. ]
  5715. },
  5716. "notification-url": "https://packagist.org/downloads/",
  5717. "license": [
  5718. "MIT"
  5719. ],
  5720. "authors": [
  5721. {
  5722. "name": "Michael Dowling",
  5723. "email": "mtdowling@gmail.com",
  5724. "homepage": "https://github.com/mtdowling"
  5725. }
  5726. ],
  5727. "description": "Guzzle is a PHP HTTP client library",
  5728. "homepage": "http://guzzlephp.org/",
  5729. "keywords": [
  5730. "client",
  5731. "curl",
  5732. "framework",
  5733. "http",
  5734. "http client",
  5735. "rest",
  5736. "web service"
  5737. ],
  5738. "time": "2020-05-25T19:35:05+00:00"
  5739. },
  5740. {
  5741. "name": "guzzlehttp/promises",
  5742. "version": "v1.3.1",
  5743. "source": {
  5744. "type": "git",
  5745. "url": "https://github.com/guzzle/promises.git",
  5746. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  5747. },
  5748. "dist": {
  5749. "type": "zip",
  5750. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  5751. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  5752. "shasum": ""
  5753. },
  5754. "require": {
  5755. "php": ">=5.5.0"
  5756. },
  5757. "require-dev": {
  5758. "phpunit/phpunit": "^4.0"
  5759. },
  5760. "type": "library",
  5761. "extra": {
  5762. "branch-alias": {
  5763. "dev-master": "1.4-dev"
  5764. }
  5765. },
  5766. "autoload": {
  5767. "psr-4": {
  5768. "GuzzleHttp\\Promise\\": "src/"
  5769. },
  5770. "files": [
  5771. "src/functions_include.php"
  5772. ]
  5773. },
  5774. "notification-url": "https://packagist.org/downloads/",
  5775. "license": [
  5776. "MIT"
  5777. ],
  5778. "authors": [
  5779. {
  5780. "name": "Michael Dowling",
  5781. "email": "mtdowling@gmail.com",
  5782. "homepage": "https://github.com/mtdowling"
  5783. }
  5784. ],
  5785. "description": "Guzzle promises library",
  5786. "keywords": [
  5787. "promise"
  5788. ],
  5789. "time": "2016-12-20T10:07:11+00:00"
  5790. },
  5791. {
  5792. "name": "guzzlehttp/psr7",
  5793. "version": "1.6.1",
  5794. "source": {
  5795. "type": "git",
  5796. "url": "https://github.com/guzzle/psr7.git",
  5797. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  5798. },
  5799. "dist": {
  5800. "type": "zip",
  5801. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  5802. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  5803. "shasum": ""
  5804. },
  5805. "require": {
  5806. "php": ">=5.4.0",
  5807. "psr/http-message": "~1.0",
  5808. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  5809. },
  5810. "provide": {
  5811. "psr/http-message-implementation": "1.0"
  5812. },
  5813. "require-dev": {
  5814. "ext-zlib": "*",
  5815. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  5816. },
  5817. "suggest": {
  5818. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  5819. },
  5820. "type": "library",
  5821. "extra": {
  5822. "branch-alias": {
  5823. "dev-master": "1.6-dev"
  5824. }
  5825. },
  5826. "autoload": {
  5827. "psr-4": {
  5828. "GuzzleHttp\\Psr7\\": "src/"
  5829. },
  5830. "files": [
  5831. "src/functions_include.php"
  5832. ]
  5833. },
  5834. "notification-url": "https://packagist.org/downloads/",
  5835. "license": [
  5836. "MIT"
  5837. ],
  5838. "authors": [
  5839. {
  5840. "name": "Michael Dowling",
  5841. "email": "mtdowling@gmail.com",
  5842. "homepage": "https://github.com/mtdowling"
  5843. },
  5844. {
  5845. "name": "Tobias Schultze",
  5846. "homepage": "https://github.com/Tobion"
  5847. }
  5848. ],
  5849. "description": "PSR-7 message implementation that also provides common utility methods",
  5850. "keywords": [
  5851. "http",
  5852. "message",
  5853. "psr-7",
  5854. "request",
  5855. "response",
  5856. "stream",
  5857. "uri",
  5858. "url"
  5859. ],
  5860. "time": "2019-07-01T23:21:34+00:00"
  5861. },
  5862. {
  5863. "name": "laminas/laminas-diactoros",
  5864. "version": "1.8.7p2",
  5865. "source": {
  5866. "type": "git",
  5867. "url": "https://github.com/laminas/laminas-diactoros.git",
  5868. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa"
  5869. },
  5870. "dist": {
  5871. "type": "zip",
  5872. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/6991c1af7c8d2c8efee81b22ba97024781824aaa",
  5873. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa",
  5874. "shasum": ""
  5875. },
  5876. "require": {
  5877. "laminas/laminas-zendframework-bridge": "^1.0",
  5878. "php": "^5.6 || ^7.0",
  5879. "psr/http-message": "^1.0"
  5880. },
  5881. "provide": {
  5882. "psr/http-message-implementation": "1.0"
  5883. },
  5884. "replace": {
  5885. "zendframework/zend-diactoros": "~1.8.7.0"
  5886. },
  5887. "require-dev": {
  5888. "ext-dom": "*",
  5889. "ext-libxml": "*",
  5890. "laminas/laminas-coding-standard": "~1.0",
  5891. "php-http/psr7-integration-tests": "dev-master",
  5892. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7"
  5893. },
  5894. "type": "library",
  5895. "extra": {
  5896. "branch-alias": {
  5897. "dev-release-1.8": "1.8.x-dev"
  5898. }
  5899. },
  5900. "autoload": {
  5901. "files": [
  5902. "src/functions/create_uploaded_file.php",
  5903. "src/functions/marshal_headers_from_sapi.php",
  5904. "src/functions/marshal_method_from_sapi.php",
  5905. "src/functions/marshal_protocol_version_from_sapi.php",
  5906. "src/functions/marshal_uri_from_sapi.php",
  5907. "src/functions/normalize_server.php",
  5908. "src/functions/normalize_uploaded_files.php",
  5909. "src/functions/parse_cookie_header.php",
  5910. "src/functions/create_uploaded_file.legacy.php",
  5911. "src/functions/marshal_headers_from_sapi.legacy.php",
  5912. "src/functions/marshal_method_from_sapi.legacy.php",
  5913. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  5914. "src/functions/marshal_uri_from_sapi.legacy.php",
  5915. "src/functions/normalize_server.legacy.php",
  5916. "src/functions/normalize_uploaded_files.legacy.php",
  5917. "src/functions/parse_cookie_header.legacy.php"
  5918. ],
  5919. "psr-4": {
  5920. "Laminas\\Diactoros\\": "src/"
  5921. }
  5922. },
  5923. "notification-url": "https://packagist.org/downloads/",
  5924. "license": [
  5925. "BSD-3-Clause"
  5926. ],
  5927. "description": "PSR HTTP Message implementations",
  5928. "homepage": "https://laminas.dev",
  5929. "keywords": [
  5930. "http",
  5931. "laminas",
  5932. "psr",
  5933. "psr-7"
  5934. ],
  5935. "time": "2020-03-23T15:28:28+00:00"
  5936. },
  5937. {
  5938. "name": "laminas/laminas-escaper",
  5939. "version": "2.6.1",
  5940. "source": {
  5941. "type": "git",
  5942. "url": "https://github.com/laminas/laminas-escaper.git",
  5943. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70"
  5944. },
  5945. "dist": {
  5946. "type": "zip",
  5947. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/25f2a053eadfa92ddacb609dcbbc39362610da70",
  5948. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70",
  5949. "shasum": ""
  5950. },
  5951. "require": {
  5952. "laminas/laminas-zendframework-bridge": "^1.0",
  5953. "php": "^5.6 || ^7.0"
  5954. },
  5955. "replace": {
  5956. "zendframework/zend-escaper": "self.version"
  5957. },
  5958. "require-dev": {
  5959. "laminas/laminas-coding-standard": "~1.0.0",
  5960. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  5961. },
  5962. "type": "library",
  5963. "extra": {
  5964. "branch-alias": {
  5965. "dev-master": "2.6.x-dev",
  5966. "dev-develop": "2.7.x-dev"
  5967. }
  5968. },
  5969. "autoload": {
  5970. "psr-4": {
  5971. "Laminas\\Escaper\\": "src/"
  5972. }
  5973. },
  5974. "notification-url": "https://packagist.org/downloads/",
  5975. "license": [
  5976. "BSD-3-Clause"
  5977. ],
  5978. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  5979. "homepage": "https://laminas.dev",
  5980. "keywords": [
  5981. "escaper",
  5982. "laminas"
  5983. ],
  5984. "time": "2019-12-31T16:43:30+00:00"
  5985. },
  5986. {
  5987. "name": "laminas/laminas-feed",
  5988. "version": "2.12.2",
  5989. "source": {
  5990. "type": "git",
  5991. "url": "https://github.com/laminas/laminas-feed.git",
  5992. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654"
  5993. },
  5994. "dist": {
  5995. "type": "zip",
  5996. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  5997. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  5998. "shasum": ""
  5999. },
  6000. "require": {
  6001. "ext-dom": "*",
  6002. "ext-libxml": "*",
  6003. "laminas/laminas-escaper": "^2.5.2",
  6004. "laminas/laminas-stdlib": "^3.2.1",
  6005. "laminas/laminas-zendframework-bridge": "^1.0",
  6006. "php": "^5.6 || ^7.0"
  6007. },
  6008. "replace": {
  6009. "zendframework/zend-feed": "^2.12.0"
  6010. },
  6011. "require-dev": {
  6012. "laminas/laminas-cache": "^2.7.2",
  6013. "laminas/laminas-coding-standard": "~1.0.0",
  6014. "laminas/laminas-db": "^2.8.2",
  6015. "laminas/laminas-http": "^2.7",
  6016. "laminas/laminas-servicemanager": "^2.7.8 || ^3.3",
  6017. "laminas/laminas-validator": "^2.10.1",
  6018. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.20",
  6019. "psr/http-message": "^1.0.1"
  6020. },
  6021. "suggest": {
  6022. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  6023. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  6024. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  6025. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  6026. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  6027. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  6028. },
  6029. "type": "library",
  6030. "extra": {
  6031. "branch-alias": {
  6032. "dev-master": "2.12.x-dev",
  6033. "dev-develop": "2.13.x-dev"
  6034. }
  6035. },
  6036. "autoload": {
  6037. "psr-4": {
  6038. "Laminas\\Feed\\": "src/"
  6039. }
  6040. },
  6041. "notification-url": "https://packagist.org/downloads/",
  6042. "license": [
  6043. "BSD-3-Clause"
  6044. ],
  6045. "description": "provides functionality for consuming RSS and Atom feeds",
  6046. "homepage": "https://laminas.dev",
  6047. "keywords": [
  6048. "feed",
  6049. "laminas"
  6050. ],
  6051. "time": "2020-03-29T12:36:29+00:00"
  6052. },
  6053. {
  6054. "name": "laminas/laminas-stdlib",
  6055. "version": "3.2.1",
  6056. "source": {
  6057. "type": "git",
  6058. "url": "https://github.com/laminas/laminas-stdlib.git",
  6059. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6"
  6060. },
  6061. "dist": {
  6062. "type": "zip",
  6063. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/2b18347625a2f06a1a485acfbc870f699dbe51c6",
  6064. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6",
  6065. "shasum": ""
  6066. },
  6067. "require": {
  6068. "laminas/laminas-zendframework-bridge": "^1.0",
  6069. "php": "^5.6 || ^7.0"
  6070. },
  6071. "replace": {
  6072. "zendframework/zend-stdlib": "self.version"
  6073. },
  6074. "require-dev": {
  6075. "laminas/laminas-coding-standard": "~1.0.0",
  6076. "phpbench/phpbench": "^0.13",
  6077. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  6078. },
  6079. "type": "library",
  6080. "extra": {
  6081. "branch-alias": {
  6082. "dev-master": "3.2.x-dev",
  6083. "dev-develop": "3.3.x-dev"
  6084. }
  6085. },
  6086. "autoload": {
  6087. "psr-4": {
  6088. "Laminas\\Stdlib\\": "src/"
  6089. }
  6090. },
  6091. "notification-url": "https://packagist.org/downloads/",
  6092. "license": [
  6093. "BSD-3-Clause"
  6094. ],
  6095. "description": "SPL extensions, array utilities, error handlers, and more",
  6096. "homepage": "https://laminas.dev",
  6097. "keywords": [
  6098. "laminas",
  6099. "stdlib"
  6100. ],
  6101. "time": "2019-12-31T17:51:15+00:00"
  6102. },
  6103. {
  6104. "name": "laminas/laminas-zendframework-bridge",
  6105. "version": "1.0.4",
  6106. "source": {
  6107. "type": "git",
  6108. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  6109. "reference": "fcd87520e4943d968557803919523772475e8ea3"
  6110. },
  6111. "dist": {
  6112. "type": "zip",
  6113. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/fcd87520e4943d968557803919523772475e8ea3",
  6114. "reference": "fcd87520e4943d968557803919523772475e8ea3",
  6115. "shasum": ""
  6116. },
  6117. "require": {
  6118. "php": "^5.6 || ^7.0"
  6119. },
  6120. "require-dev": {
  6121. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1",
  6122. "squizlabs/php_codesniffer": "^3.5"
  6123. },
  6124. "type": "library",
  6125. "extra": {
  6126. "branch-alias": {
  6127. "dev-master": "1.0.x-dev",
  6128. "dev-develop": "1.1.x-dev"
  6129. },
  6130. "laminas": {
  6131. "module": "Laminas\\ZendFrameworkBridge"
  6132. }
  6133. },
  6134. "autoload": {
  6135. "files": [
  6136. "src/autoload.php"
  6137. ],
  6138. "psr-4": {
  6139. "Laminas\\ZendFrameworkBridge\\": "src//"
  6140. }
  6141. },
  6142. "notification-url": "https://packagist.org/downloads/",
  6143. "license": [
  6144. "BSD-3-Clause"
  6145. ],
  6146. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  6147. "keywords": [
  6148. "ZendFramework",
  6149. "autoloading",
  6150. "laminas",
  6151. "zf"
  6152. ],
  6153. "funding": [
  6154. {
  6155. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6156. "type": "community_bridge"
  6157. }
  6158. ],
  6159. "time": "2020-05-20T16:45:56+00:00"
  6160. },
  6161. {
  6162. "name": "league/container",
  6163. "version": "2.4.1",
  6164. "source": {
  6165. "type": "git",
  6166. "url": "https://github.com/thephpleague/container.git",
  6167. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  6168. },
  6169. "dist": {
  6170. "type": "zip",
  6171. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  6172. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  6173. "shasum": ""
  6174. },
  6175. "require": {
  6176. "container-interop/container-interop": "^1.2",
  6177. "php": "^5.4.0 || ^7.0"
  6178. },
  6179. "provide": {
  6180. "container-interop/container-interop-implementation": "^1.2",
  6181. "psr/container-implementation": "^1.0"
  6182. },
  6183. "replace": {
  6184. "orno/di": "~2.0"
  6185. },
  6186. "require-dev": {
  6187. "phpunit/phpunit": "4.*"
  6188. },
  6189. "type": "library",
  6190. "extra": {
  6191. "branch-alias": {
  6192. "dev-2.x": "2.x-dev",
  6193. "dev-1.x": "1.x-dev"
  6194. }
  6195. },
  6196. "autoload": {
  6197. "psr-4": {
  6198. "League\\Container\\": "src"
  6199. }
  6200. },
  6201. "notification-url": "https://packagist.org/downloads/",
  6202. "license": [
  6203. "MIT"
  6204. ],
  6205. "authors": [
  6206. {
  6207. "name": "Phil Bennett",
  6208. "email": "philipobenito@gmail.com",
  6209. "homepage": "http://www.philipobenito.com",
  6210. "role": "Developer"
  6211. }
  6212. ],
  6213. "description": "A fast and intuitive dependency injection container.",
  6214. "homepage": "https://github.com/thephpleague/container",
  6215. "keywords": [
  6216. "container",
  6217. "dependency",
  6218. "di",
  6219. "injection",
  6220. "league",
  6221. "provider",
  6222. "service"
  6223. ],
  6224. "time": "2017-05-10T09:20:27+00:00"
  6225. },
  6226. {
  6227. "name": "masterminds/html5",
  6228. "version": "2.3.0",
  6229. "source": {
  6230. "type": "git",
  6231. "url": "https://github.com/Masterminds/html5-php.git",
  6232. "reference": "2c37c6c520b995b761674de3be8455a381679067"
  6233. },
  6234. "dist": {
  6235. "type": "zip",
  6236. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067",
  6237. "reference": "2c37c6c520b995b761674de3be8455a381679067",
  6238. "shasum": ""
  6239. },
  6240. "require": {
  6241. "ext-libxml": "*",
  6242. "php": ">=5.3.0"
  6243. },
  6244. "require-dev": {
  6245. "phpunit/phpunit": "4.*",
  6246. "sami/sami": "~2.0",
  6247. "satooshi/php-coveralls": "1.0.*"
  6248. },
  6249. "type": "library",
  6250. "extra": {
  6251. "branch-alias": {
  6252. "dev-master": "2.2-dev"
  6253. }
  6254. },
  6255. "autoload": {
  6256. "psr-4": {
  6257. "Masterminds\\": "src"
  6258. }
  6259. },
  6260. "notification-url": "https://packagist.org/downloads/",
  6261. "license": [
  6262. "MIT"
  6263. ],
  6264. "authors": [
  6265. {
  6266. "name": "Matt Butcher",
  6267. "email": "technosophos@gmail.com"
  6268. },
  6269. {
  6270. "name": "Asmir Mustafic",
  6271. "email": "goetas@gmail.com"
  6272. },
  6273. {
  6274. "name": "Matt Farina",
  6275. "email": "matt@mattfarina.com"
  6276. }
  6277. ],
  6278. "description": "An HTML5 parser and serializer.",
  6279. "homepage": "http://masterminds.github.io/html5-php",
  6280. "keywords": [
  6281. "HTML5",
  6282. "dom",
  6283. "html",
  6284. "parser",
  6285. "querypath",
  6286. "serializer",
  6287. "xml"
  6288. ],
  6289. "time": "2017-09-04T12:26:28+00:00"
  6290. },
  6291. {
  6292. "name": "mdurrant/php-binary-reader",
  6293. "version": "1.0.9",
  6294. "source": {
  6295. "type": "git",
  6296. "url": "https://github.com/mdurrant/php-binary-reader.git",
  6297. "reference": "9abf18d7b361d0ae1cd80fc6782e59b313586db6"
  6298. },
  6299. "dist": {
  6300. "type": "zip",
  6301. "url": "https://api.github.com/repos/mdurrant/php-binary-reader/zipball/9abf18d7b361d0ae1cd80fc6782e59b313586db6",
  6302. "reference": "9abf18d7b361d0ae1cd80fc6782e59b313586db6",
  6303. "shasum": ""
  6304. },
  6305. "require": {
  6306. "php": ">=5.4"
  6307. },
  6308. "require-dev": {
  6309. "phpunit/phpunit": "~4.0",
  6310. "squizlabs/php_codesniffer": "~1.0"
  6311. },
  6312. "type": "library",
  6313. "extra": {
  6314. "branch-alias": {
  6315. "dev-master": "1.0.x-dev"
  6316. }
  6317. },
  6318. "autoload": {
  6319. "psr-4": {
  6320. "PhpBinaryReader\\": [
  6321. "src/",
  6322. "test/"
  6323. ]
  6324. }
  6325. },
  6326. "notification-url": "https://packagist.org/downloads/",
  6327. "license": [
  6328. "MIT"
  6329. ],
  6330. "authors": [
  6331. {
  6332. "name": "Matt Durrant",
  6333. "email": "mdurrant@gmail.com"
  6334. }
  6335. ],
  6336. "description": "Lightweight binary reader for PHP",
  6337. "time": "2016-12-08T01:24:19+00:00"
  6338. },
  6339. {
  6340. "name": "nikic/php-parser",
  6341. "version": "v4.10.2",
  6342. "source": {
  6343. "type": "git",
  6344. "url": "https://github.com/nikic/PHP-Parser.git",
  6345. "reference": "658f1be311a230e0907f5dfe0213742aff0596de"
  6346. },
  6347. "dist": {
  6348. "type": "zip",
  6349. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/658f1be311a230e0907f5dfe0213742aff0596de",
  6350. "reference": "658f1be311a230e0907f5dfe0213742aff0596de",
  6351. "shasum": ""
  6352. },
  6353. "require": {
  6354. "ext-tokenizer": "*",
  6355. "php": ">=7.0"
  6356. },
  6357. "require-dev": {
  6358. "ircmaxell/php-yacc": "^0.0.7",
  6359. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  6360. },
  6361. "bin": [
  6362. "bin/php-parse"
  6363. ],
  6364. "type": "library",
  6365. "extra": {
  6366. "branch-alias": {
  6367. "dev-master": "4.9-dev"
  6368. }
  6369. },
  6370. "autoload": {
  6371. "psr-4": {
  6372. "PhpParser\\": "lib/PhpParser"
  6373. }
  6374. },
  6375. "notification-url": "https://packagist.org/downloads/",
  6376. "license": [
  6377. "BSD-3-Clause"
  6378. ],
  6379. "authors": [
  6380. {
  6381. "name": "Nikita Popov"
  6382. }
  6383. ],
  6384. "description": "A PHP parser written in PHP",
  6385. "keywords": [
  6386. "parser",
  6387. "php"
  6388. ],
  6389. "time": "2020-09-26T10:30:38+00:00"
  6390. },
  6391. {
  6392. "name": "oomphinc/composer-installers-extender",
  6393. "version": "v1.1.2",
  6394. "source": {
  6395. "type": "git",
  6396. "url": "https://github.com/oomphinc/composer-installers-extender.git",
  6397. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56"
  6398. },
  6399. "dist": {
  6400. "type": "zip",
  6401. "url": "https://api.github.com/repos/oomphinc/composer-installers-extender/zipball/ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  6402. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  6403. "shasum": ""
  6404. },
  6405. "require": {
  6406. "composer-plugin-api": "^1.0",
  6407. "composer/installers": "^1.0"
  6408. },
  6409. "type": "composer-plugin",
  6410. "extra": {
  6411. "class": "OomphInc\\ComposerInstallersExtender\\Plugin"
  6412. },
  6413. "autoload": {
  6414. "psr-4": {
  6415. "OomphInc\\ComposerInstallersExtender\\": "src/"
  6416. }
  6417. },
  6418. "notification-url": "https://packagist.org/downloads/",
  6419. "license": [
  6420. "MIT"
  6421. ],
  6422. "authors": [
  6423. {
  6424. "name": "Stephen Beemsterboer",
  6425. "email": "stephen@oomphinc.com",
  6426. "homepage": "https://github.com/balbuf"
  6427. }
  6428. ],
  6429. "description": "Extend the composer/installers plugin to accept any arbitrary package type.",
  6430. "homepage": "http://www.oomphinc.com/",
  6431. "time": "2017-03-31T16:57:39+00:00"
  6432. },
  6433. {
  6434. "name": "paragonie/random_compat",
  6435. "version": "v9.99.99",
  6436. "source": {
  6437. "type": "git",
  6438. "url": "https://github.com/paragonie/random_compat.git",
  6439. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  6440. },
  6441. "dist": {
  6442. "type": "zip",
  6443. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  6444. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  6445. "shasum": ""
  6446. },
  6447. "require": {
  6448. "php": "^7"
  6449. },
  6450. "require-dev": {
  6451. "phpunit/phpunit": "4.*|5.*",
  6452. "vimeo/psalm": "^1"
  6453. },
  6454. "suggest": {
  6455. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  6456. },
  6457. "type": "library",
  6458. "notification-url": "https://packagist.org/downloads/",
  6459. "license": [
  6460. "MIT"
  6461. ],
  6462. "authors": [
  6463. {
  6464. "name": "Paragon Initiative Enterprises",
  6465. "email": "security@paragonie.com",
  6466. "homepage": "https://paragonie.com"
  6467. }
  6468. ],
  6469. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  6470. "keywords": [
  6471. "csprng",
  6472. "polyfill",
  6473. "pseudorandom",
  6474. "random"
  6475. ],
  6476. "time": "2018-07-02T15:55:56+00:00"
  6477. },
  6478. {
  6479. "name": "pear/archive_tar",
  6480. "version": "1.4.9",
  6481. "source": {
  6482. "type": "git",
  6483. "url": "https://github.com/pear/Archive_Tar.git",
  6484. "reference": "c5b00053770e1d72128252c62c2c1a12c26639f0"
  6485. },
  6486. "dist": {
  6487. "type": "zip",
  6488. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/c5b00053770e1d72128252c62c2c1a12c26639f0",
  6489. "reference": "c5b00053770e1d72128252c62c2c1a12c26639f0",
  6490. "shasum": ""
  6491. },
  6492. "require": {
  6493. "pear/pear-core-minimal": "^1.10.0alpha2",
  6494. "php": ">=5.2.0"
  6495. },
  6496. "require-dev": {
  6497. "phpunit/phpunit": "*"
  6498. },
  6499. "suggest": {
  6500. "ext-bz2": "Bz2 compression support.",
  6501. "ext-xz": "Lzma2 compression support.",
  6502. "ext-zlib": "Gzip compression support."
  6503. },
  6504. "type": "library",
  6505. "extra": {
  6506. "branch-alias": {
  6507. "dev-master": "1.4.x-dev"
  6508. }
  6509. },
  6510. "autoload": {
  6511. "psr-0": {
  6512. "Archive_Tar": ""
  6513. }
  6514. },
  6515. "notification-url": "https://packagist.org/downloads/",
  6516. "include-path": [
  6517. "./"
  6518. ],
  6519. "license": [
  6520. "BSD-3-Clause"
  6521. ],
  6522. "authors": [
  6523. {
  6524. "name": "Vincent Blavet",
  6525. "email": "vincent@phpconcept.net"
  6526. },
  6527. {
  6528. "name": "Greg Beaver",
  6529. "email": "greg@chiaraquartet.net"
  6530. },
  6531. {
  6532. "name": "Michiel Rook",
  6533. "email": "mrook@php.net"
  6534. }
  6535. ],
  6536. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  6537. "homepage": "https://github.com/pear/Archive_Tar",
  6538. "keywords": [
  6539. "archive",
  6540. "tar"
  6541. ],
  6542. "time": "2019-12-04T10:17:28+00:00"
  6543. },
  6544. {
  6545. "name": "pear/console_getopt",
  6546. "version": "v1.4.3",
  6547. "source": {
  6548. "type": "git",
  6549. "url": "https://github.com/pear/Console_Getopt.git",
  6550. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  6551. },
  6552. "dist": {
  6553. "type": "zip",
  6554. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6555. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6556. "shasum": ""
  6557. },
  6558. "type": "library",
  6559. "autoload": {
  6560. "psr-0": {
  6561. "Console": "./"
  6562. }
  6563. },
  6564. "notification-url": "https://packagist.org/downloads/",
  6565. "include-path": [
  6566. "./"
  6567. ],
  6568. "license": [
  6569. "BSD-2-Clause"
  6570. ],
  6571. "authors": [
  6572. {
  6573. "name": "Andrei Zmievski",
  6574. "email": "andrei@php.net",
  6575. "role": "Lead"
  6576. },
  6577. {
  6578. "name": "Stig Bakken",
  6579. "email": "stig@php.net",
  6580. "role": "Developer"
  6581. },
  6582. {
  6583. "name": "Greg Beaver",
  6584. "email": "cellog@php.net",
  6585. "role": "Helper"
  6586. }
  6587. ],
  6588. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  6589. "time": "2019-11-20T18:27:48+00:00"
  6590. },
  6591. {
  6592. "name": "pear/pear-core-minimal",
  6593. "version": "v1.10.10",
  6594. "source": {
  6595. "type": "git",
  6596. "url": "https://github.com/pear/pear-core-minimal.git",
  6597. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  6598. },
  6599. "dist": {
  6600. "type": "zip",
  6601. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  6602. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  6603. "shasum": ""
  6604. },
  6605. "require": {
  6606. "pear/console_getopt": "~1.4",
  6607. "pear/pear_exception": "~1.0"
  6608. },
  6609. "replace": {
  6610. "rsky/pear-core-min": "self.version"
  6611. },
  6612. "type": "library",
  6613. "autoload": {
  6614. "psr-0": {
  6615. "": "src/"
  6616. }
  6617. },
  6618. "notification-url": "https://packagist.org/downloads/",
  6619. "include-path": [
  6620. "src/"
  6621. ],
  6622. "license": [
  6623. "BSD-3-Clause"
  6624. ],
  6625. "authors": [
  6626. {
  6627. "name": "Christian Weiske",
  6628. "email": "cweiske@php.net",
  6629. "role": "Lead"
  6630. }
  6631. ],
  6632. "description": "Minimal set of PEAR core files to be used as composer dependency",
  6633. "time": "2019-11-19T19:00:24+00:00"
  6634. },
  6635. {
  6636. "name": "pear/pear_exception",
  6637. "version": "v1.0.1",
  6638. "source": {
  6639. "type": "git",
  6640. "url": "https://github.com/pear/PEAR_Exception.git",
  6641. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7"
  6642. },
  6643. "dist": {
  6644. "type": "zip",
  6645. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  6646. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  6647. "shasum": ""
  6648. },
  6649. "require": {
  6650. "php": ">=4.4.0"
  6651. },
  6652. "require-dev": {
  6653. "phpunit/phpunit": "*"
  6654. },
  6655. "type": "class",
  6656. "extra": {
  6657. "branch-alias": {
  6658. "dev-master": "1.0.x-dev"
  6659. }
  6660. },
  6661. "autoload": {
  6662. "classmap": [
  6663. "PEAR/"
  6664. ]
  6665. },
  6666. "notification-url": "https://packagist.org/downloads/",
  6667. "include-path": [
  6668. "."
  6669. ],
  6670. "license": [
  6671. "BSD-2-Clause"
  6672. ],
  6673. "authors": [
  6674. {
  6675. "name": "Helgi Thormar",
  6676. "email": "dufuz@php.net"
  6677. },
  6678. {
  6679. "name": "Greg Beaver",
  6680. "email": "cellog@php.net"
  6681. }
  6682. ],
  6683. "description": "The PEAR Exception base class.",
  6684. "homepage": "https://github.com/pear/PEAR_Exception",
  6685. "keywords": [
  6686. "exception"
  6687. ],
  6688. "time": "2019-12-10T10:24:42+00:00"
  6689. },
  6690. {
  6691. "name": "phayes/geophp",
  6692. "version": "1.2",
  6693. "source": {
  6694. "type": "git",
  6695. "url": "https://github.com/phayes/geoPHP.git",
  6696. "reference": "015404e85b602e0df1f91441f8db0f9e98f7e567"
  6697. },
  6698. "dist": {
  6699. "type": "zip",
  6700. "url": "https://api.github.com/repos/phayes/geoPHP/zipball/015404e85b602e0df1f91441f8db0f9e98f7e567",
  6701. "reference": "015404e85b602e0df1f91441f8db0f9e98f7e567",
  6702. "shasum": ""
  6703. },
  6704. "require-dev": {
  6705. "phpunit/phpunit": "4.1.*"
  6706. },
  6707. "type": "library",
  6708. "autoload": {
  6709. "classmap": [
  6710. "geoPHP.inc"
  6711. ]
  6712. },
  6713. "notification-url": "https://packagist.org/downloads/",
  6714. "license": [
  6715. "GPL-2 or New-BSD"
  6716. ],
  6717. "authors": [
  6718. {
  6719. "name": "Patrick Hayes"
  6720. }
  6721. ],
  6722. "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.",
  6723. "homepage": "https://github.com/phayes/geoPHP",
  6724. "time": "2014-12-02T06:11:22+00:00"
  6725. },
  6726. {
  6727. "name": "php-http/discovery",
  6728. "version": "1.12.0",
  6729. "source": {
  6730. "type": "git",
  6731. "url": "https://github.com/php-http/discovery.git",
  6732. "reference": "4366bf1bc39b663aa87459bd725501d2f1988b6c"
  6733. },
  6734. "dist": {
  6735. "type": "zip",
  6736. "url": "https://api.github.com/repos/php-http/discovery/zipball/4366bf1bc39b663aa87459bd725501d2f1988b6c",
  6737. "reference": "4366bf1bc39b663aa87459bd725501d2f1988b6c",
  6738. "shasum": ""
  6739. },
  6740. "require": {
  6741. "php": "^7.1 || ^8.0"
  6742. },
  6743. "conflict": {
  6744. "nyholm/psr7": "<1.0"
  6745. },
  6746. "require-dev": {
  6747. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  6748. "php-http/httplug": "^1.0 || ^2.0",
  6749. "php-http/message-factory": "^1.0",
  6750. "phpspec/phpspec": "^5.1 || ^6.1",
  6751. "puli/composer-plugin": "1.0.0-beta10"
  6752. },
  6753. "suggest": {
  6754. "php-http/message": "Allow to use Guzzle, Diactoros or Slim Framework factories",
  6755. "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."
  6756. },
  6757. "type": "library",
  6758. "extra": {
  6759. "branch-alias": {
  6760. "dev-master": "1.9-dev"
  6761. }
  6762. },
  6763. "autoload": {
  6764. "psr-4": {
  6765. "Http\\Discovery\\": "src/"
  6766. }
  6767. },
  6768. "notification-url": "https://packagist.org/downloads/",
  6769. "license": [
  6770. "MIT"
  6771. ],
  6772. "authors": [
  6773. {
  6774. "name": "Márk Sági-Kazár",
  6775. "email": "mark.sagikazar@gmail.com"
  6776. }
  6777. ],
  6778. "description": "Finds installed HTTPlug implementations and PSR-7 message factories",
  6779. "homepage": "http://php-http.org",
  6780. "keywords": [
  6781. "adapter",
  6782. "client",
  6783. "discovery",
  6784. "factory",
  6785. "http",
  6786. "message",
  6787. "psr7"
  6788. ],
  6789. "time": "2020-09-22T13:31:04+00:00"
  6790. },
  6791. {
  6792. "name": "php-http/guzzle6-adapter",
  6793. "version": "v2.0.1",
  6794. "source": {
  6795. "type": "git",
  6796. "url": "https://github.com/php-http/guzzle6-adapter.git",
  6797. "reference": "6074a4b1f4d5c21061b70bab3b8ad484282fe31f"
  6798. },
  6799. "dist": {
  6800. "type": "zip",
  6801. "url": "https://api.github.com/repos/php-http/guzzle6-adapter/zipball/6074a4b1f4d5c21061b70bab3b8ad484282fe31f",
  6802. "reference": "6074a4b1f4d5c21061b70bab3b8ad484282fe31f",
  6803. "shasum": ""
  6804. },
  6805. "require": {
  6806. "guzzlehttp/guzzle": "^6.0",
  6807. "php": "^7.1",
  6808. "php-http/httplug": "^2.0",
  6809. "psr/http-client": "^1.0"
  6810. },
  6811. "provide": {
  6812. "php-http/async-client-implementation": "1.0",
  6813. "php-http/client-implementation": "1.0",
  6814. "psr/http-client-implementation": "1.0"
  6815. },
  6816. "require-dev": {
  6817. "ext-curl": "*",
  6818. "php-http/client-integration-tests": "^2.0",
  6819. "phpunit/phpunit": "^7.4"
  6820. },
  6821. "type": "library",
  6822. "extra": {
  6823. "branch-alias": {
  6824. "dev-master": "2.x-dev"
  6825. }
  6826. },
  6827. "autoload": {
  6828. "psr-4": {
  6829. "Http\\Adapter\\Guzzle6\\": "src/"
  6830. }
  6831. },
  6832. "notification-url": "https://packagist.org/downloads/",
  6833. "license": [
  6834. "MIT"
  6835. ],
  6836. "authors": [
  6837. {
  6838. "name": "Márk Sági-Kazár",
  6839. "email": "mark.sagikazar@gmail.com"
  6840. },
  6841. {
  6842. "name": "David de Boer",
  6843. "email": "david@ddeboer.nl"
  6844. }
  6845. ],
  6846. "description": "Guzzle 6 HTTP Adapter",
  6847. "homepage": "http://httplug.io",
  6848. "keywords": [
  6849. "Guzzle",
  6850. "http"
  6851. ],
  6852. "time": "2018-12-16T14:44:03+00:00"
  6853. },
  6854. {
  6855. "name": "php-http/httplug",
  6856. "version": "2.2.0",
  6857. "source": {
  6858. "type": "git",
  6859. "url": "https://github.com/php-http/httplug.git",
  6860. "reference": "191a0a1b41ed026b717421931f8d3bd2514ffbf9"
  6861. },
  6862. "dist": {
  6863. "type": "zip",
  6864. "url": "https://api.github.com/repos/php-http/httplug/zipball/191a0a1b41ed026b717421931f8d3bd2514ffbf9",
  6865. "reference": "191a0a1b41ed026b717421931f8d3bd2514ffbf9",
  6866. "shasum": ""
  6867. },
  6868. "require": {
  6869. "php": "^7.1 || ^8.0",
  6870. "php-http/promise": "^1.1",
  6871. "psr/http-client": "^1.0",
  6872. "psr/http-message": "^1.0"
  6873. },
  6874. "require-dev": {
  6875. "friends-of-phpspec/phpspec-code-coverage": "^4.1",
  6876. "phpspec/phpspec": "^5.1 || ^6.0"
  6877. },
  6878. "type": "library",
  6879. "extra": {
  6880. "branch-alias": {
  6881. "dev-master": "2.x-dev"
  6882. }
  6883. },
  6884. "autoload": {
  6885. "psr-4": {
  6886. "Http\\Client\\": "src/"
  6887. }
  6888. },
  6889. "notification-url": "https://packagist.org/downloads/",
  6890. "license": [
  6891. "MIT"
  6892. ],
  6893. "authors": [
  6894. {
  6895. "name": "Eric GELOEN",
  6896. "email": "geloen.eric@gmail.com"
  6897. },
  6898. {
  6899. "name": "Márk Sági-Kazár",
  6900. "email": "mark.sagikazar@gmail.com",
  6901. "homepage": "https://sagikazarmark.hu"
  6902. }
  6903. ],
  6904. "description": "HTTPlug, the HTTP client abstraction for PHP",
  6905. "homepage": "http://httplug.io",
  6906. "keywords": [
  6907. "client",
  6908. "http"
  6909. ],
  6910. "time": "2020-07-13T15:43:23+00:00"
  6911. },
  6912. {
  6913. "name": "php-http/message",
  6914. "version": "1.9.1",
  6915. "source": {
  6916. "type": "git",
  6917. "url": "https://github.com/php-http/message.git",
  6918. "reference": "09f3f13af3a1a4273ecbf8e6b27248c002a3db29"
  6919. },
  6920. "dist": {
  6921. "type": "zip",
  6922. "url": "https://api.github.com/repos/php-http/message/zipball/09f3f13af3a1a4273ecbf8e6b27248c002a3db29",
  6923. "reference": "09f3f13af3a1a4273ecbf8e6b27248c002a3db29",
  6924. "shasum": ""
  6925. },
  6926. "require": {
  6927. "clue/stream-filter": "^1.4.1",
  6928. "php": "^7.1",
  6929. "php-http/message-factory": "^1.0.2",
  6930. "psr/http-message": "^1.0"
  6931. },
  6932. "provide": {
  6933. "php-http/message-factory-implementation": "1.0"
  6934. },
  6935. "require-dev": {
  6936. "akeneo/phpspec-skip-example-extension": "^1.0",
  6937. "coduo/phpspec-data-provider-extension": "^1.0",
  6938. "ergebnis/composer-normalize": "^2.1",
  6939. "ext-zlib": "*",
  6940. "guzzlehttp/psr7": "^1.0",
  6941. "henrikbjorn/phpspec-code-coverage": "^1.0",
  6942. "phpspec/phpspec": "^2.4",
  6943. "slim/slim": "^3.0",
  6944. "zendframework/zend-diactoros": "^1.0"
  6945. },
  6946. "suggest": {
  6947. "ext-zlib": "Used with compressor/decompressor streams",
  6948. "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories",
  6949. "slim/slim": "Used with Slim Framework PSR-7 implementation",
  6950. "zendframework/zend-diactoros": "Used with Diactoros Factories"
  6951. },
  6952. "type": "library",
  6953. "extra": {
  6954. "branch-alias": {
  6955. "dev-master": "1.8-dev"
  6956. }
  6957. },
  6958. "autoload": {
  6959. "psr-4": {
  6960. "Http\\Message\\": "src/"
  6961. },
  6962. "files": [
  6963. "src/filters.php"
  6964. ]
  6965. },
  6966. "notification-url": "https://packagist.org/downloads/",
  6967. "license": [
  6968. "MIT"
  6969. ],
  6970. "authors": [
  6971. {
  6972. "name": "Márk Sági-Kazár",
  6973. "email": "mark.sagikazar@gmail.com"
  6974. }
  6975. ],
  6976. "description": "HTTP Message related tools",
  6977. "homepage": "http://php-http.org",
  6978. "keywords": [
  6979. "http",
  6980. "message",
  6981. "psr-7"
  6982. ],
  6983. "time": "2020-10-13T06:21:08+00:00"
  6984. },
  6985. {
  6986. "name": "php-http/message-factory",
  6987. "version": "v1.0.2",
  6988. "source": {
  6989. "type": "git",
  6990. "url": "https://github.com/php-http/message-factory.git",
  6991. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1"
  6992. },
  6993. "dist": {
  6994. "type": "zip",
  6995. "url": "https://api.github.com/repos/php-http/message-factory/zipball/a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  6996. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  6997. "shasum": ""
  6998. },
  6999. "require": {
  7000. "php": ">=5.4",
  7001. "psr/http-message": "^1.0"
  7002. },
  7003. "type": "library",
  7004. "extra": {
  7005. "branch-alias": {
  7006. "dev-master": "1.0-dev"
  7007. }
  7008. },
  7009. "autoload": {
  7010. "psr-4": {
  7011. "Http\\Message\\": "src/"
  7012. }
  7013. },
  7014. "notification-url": "https://packagist.org/downloads/",
  7015. "license": [
  7016. "MIT"
  7017. ],
  7018. "authors": [
  7019. {
  7020. "name": "Márk Sági-Kazár",
  7021. "email": "mark.sagikazar@gmail.com"
  7022. }
  7023. ],
  7024. "description": "Factory interfaces for PSR-7 HTTP Message",
  7025. "homepage": "http://php-http.org",
  7026. "keywords": [
  7027. "factory",
  7028. "http",
  7029. "message",
  7030. "stream",
  7031. "uri"
  7032. ],
  7033. "time": "2015-12-19T14:08:53+00:00"
  7034. },
  7035. {
  7036. "name": "php-http/promise",
  7037. "version": "1.1.0",
  7038. "source": {
  7039. "type": "git",
  7040. "url": "https://github.com/php-http/promise.git",
  7041. "reference": "4c4c1f9b7289a2ec57cde7f1e9762a5789506f88"
  7042. },
  7043. "dist": {
  7044. "type": "zip",
  7045. "url": "https://api.github.com/repos/php-http/promise/zipball/4c4c1f9b7289a2ec57cde7f1e9762a5789506f88",
  7046. "reference": "4c4c1f9b7289a2ec57cde7f1e9762a5789506f88",
  7047. "shasum": ""
  7048. },
  7049. "require": {
  7050. "php": "^7.1 || ^8.0"
  7051. },
  7052. "require-dev": {
  7053. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2",
  7054. "phpspec/phpspec": "^5.1.2 || ^6.2"
  7055. },
  7056. "type": "library",
  7057. "extra": {
  7058. "branch-alias": {
  7059. "dev-master": "1.1-dev"
  7060. }
  7061. },
  7062. "autoload": {
  7063. "psr-4": {
  7064. "Http\\Promise\\": "src/"
  7065. }
  7066. },
  7067. "notification-url": "https://packagist.org/downloads/",
  7068. "license": [
  7069. "MIT"
  7070. ],
  7071. "authors": [
  7072. {
  7073. "name": "Joel Wurtz",
  7074. "email": "joel.wurtz@gmail.com"
  7075. },
  7076. {
  7077. "name": "Márk Sági-Kazár",
  7078. "email": "mark.sagikazar@gmail.com"
  7079. }
  7080. ],
  7081. "description": "Promise used for asynchronous HTTP requests",
  7082. "homepage": "http://httplug.io",
  7083. "keywords": [
  7084. "promise"
  7085. ],
  7086. "time": "2020-07-07T09:29:14+00:00"
  7087. },
  7088. {
  7089. "name": "psr/container",
  7090. "version": "1.0.0",
  7091. "source": {
  7092. "type": "git",
  7093. "url": "https://github.com/php-fig/container.git",
  7094. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  7095. },
  7096. "dist": {
  7097. "type": "zip",
  7098. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7099. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7100. "shasum": ""
  7101. },
  7102. "require": {
  7103. "php": ">=5.3.0"
  7104. },
  7105. "type": "library",
  7106. "extra": {
  7107. "branch-alias": {
  7108. "dev-master": "1.0.x-dev"
  7109. }
  7110. },
  7111. "autoload": {
  7112. "psr-4": {
  7113. "Psr\\Container\\": "src/"
  7114. }
  7115. },
  7116. "notification-url": "https://packagist.org/downloads/",
  7117. "license": [
  7118. "MIT"
  7119. ],
  7120. "authors": [
  7121. {
  7122. "name": "PHP-FIG",
  7123. "homepage": "http://www.php-fig.org/"
  7124. }
  7125. ],
  7126. "description": "Common Container Interface (PHP FIG PSR-11)",
  7127. "homepage": "https://github.com/php-fig/container",
  7128. "keywords": [
  7129. "PSR-11",
  7130. "container",
  7131. "container-interface",
  7132. "container-interop",
  7133. "psr"
  7134. ],
  7135. "time": "2017-02-14T16:28:37+00:00"
  7136. },
  7137. {
  7138. "name": "psr/http-client",
  7139. "version": "1.0.1",
  7140. "source": {
  7141. "type": "git",
  7142. "url": "https://github.com/php-fig/http-client.git",
  7143. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  7144. },
  7145. "dist": {
  7146. "type": "zip",
  7147. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  7148. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  7149. "shasum": ""
  7150. },
  7151. "require": {
  7152. "php": "^7.0 || ^8.0",
  7153. "psr/http-message": "^1.0"
  7154. },
  7155. "type": "library",
  7156. "extra": {
  7157. "branch-alias": {
  7158. "dev-master": "1.0.x-dev"
  7159. }
  7160. },
  7161. "autoload": {
  7162. "psr-4": {
  7163. "Psr\\Http\\Client\\": "src/"
  7164. }
  7165. },
  7166. "notification-url": "https://packagist.org/downloads/",
  7167. "license": [
  7168. "MIT"
  7169. ],
  7170. "authors": [
  7171. {
  7172. "name": "PHP-FIG",
  7173. "homepage": "http://www.php-fig.org/"
  7174. }
  7175. ],
  7176. "description": "Common interface for HTTP clients",
  7177. "homepage": "https://github.com/php-fig/http-client",
  7178. "keywords": [
  7179. "http",
  7180. "http-client",
  7181. "psr",
  7182. "psr-18"
  7183. ],
  7184. "time": "2020-06-29T06:28:15+00:00"
  7185. },
  7186. {
  7187. "name": "psr/http-message",
  7188. "version": "1.0.1",
  7189. "source": {
  7190. "type": "git",
  7191. "url": "https://github.com/php-fig/http-message.git",
  7192. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  7193. },
  7194. "dist": {
  7195. "type": "zip",
  7196. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  7197. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  7198. "shasum": ""
  7199. },
  7200. "require": {
  7201. "php": ">=5.3.0"
  7202. },
  7203. "type": "library",
  7204. "extra": {
  7205. "branch-alias": {
  7206. "dev-master": "1.0.x-dev"
  7207. }
  7208. },
  7209. "autoload": {
  7210. "psr-4": {
  7211. "Psr\\Http\\Message\\": "src/"
  7212. }
  7213. },
  7214. "notification-url": "https://packagist.org/downloads/",
  7215. "license": [
  7216. "MIT"
  7217. ],
  7218. "authors": [
  7219. {
  7220. "name": "PHP-FIG",
  7221. "homepage": "http://www.php-fig.org/"
  7222. }
  7223. ],
  7224. "description": "Common interface for HTTP messages",
  7225. "homepage": "https://github.com/php-fig/http-message",
  7226. "keywords": [
  7227. "http",
  7228. "http-message",
  7229. "psr",
  7230. "psr-7",
  7231. "request",
  7232. "response"
  7233. ],
  7234. "time": "2016-08-06T14:39:51+00:00"
  7235. },
  7236. {
  7237. "name": "psr/log",
  7238. "version": "1.1.3",
  7239. "source": {
  7240. "type": "git",
  7241. "url": "https://github.com/php-fig/log.git",
  7242. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  7243. },
  7244. "dist": {
  7245. "type": "zip",
  7246. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  7247. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  7248. "shasum": ""
  7249. },
  7250. "require": {
  7251. "php": ">=5.3.0"
  7252. },
  7253. "type": "library",
  7254. "extra": {
  7255. "branch-alias": {
  7256. "dev-master": "1.1.x-dev"
  7257. }
  7258. },
  7259. "autoload": {
  7260. "psr-4": {
  7261. "Psr\\Log\\": "Psr/Log/"
  7262. }
  7263. },
  7264. "notification-url": "https://packagist.org/downloads/",
  7265. "license": [
  7266. "MIT"
  7267. ],
  7268. "authors": [
  7269. {
  7270. "name": "PHP-FIG",
  7271. "homepage": "http://www.php-fig.org/"
  7272. }
  7273. ],
  7274. "description": "Common interface for logging libraries",
  7275. "homepage": "https://github.com/php-fig/log",
  7276. "keywords": [
  7277. "log",
  7278. "psr",
  7279. "psr-3"
  7280. ],
  7281. "time": "2020-03-23T09:12:05+00:00"
  7282. },
  7283. {
  7284. "name": "psy/psysh",
  7285. "version": "v0.10.4",
  7286. "source": {
  7287. "type": "git",
  7288. "url": "https://github.com/bobthecow/psysh.git",
  7289. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560"
  7290. },
  7291. "dist": {
  7292. "type": "zip",
  7293. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560",
  7294. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560",
  7295. "shasum": ""
  7296. },
  7297. "require": {
  7298. "dnoegel/php-xdg-base-dir": "0.1.*",
  7299. "ext-json": "*",
  7300. "ext-tokenizer": "*",
  7301. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  7302. "php": "^8.0 || ^7.0 || ^5.5.9",
  7303. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  7304. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  7305. },
  7306. "require-dev": {
  7307. "bamarni/composer-bin-plugin": "^1.2",
  7308. "hoa/console": "3.17.*"
  7309. },
  7310. "suggest": {
  7311. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7312. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  7313. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  7314. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  7315. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  7316. },
  7317. "bin": [
  7318. "bin/psysh"
  7319. ],
  7320. "type": "library",
  7321. "extra": {
  7322. "branch-alias": {
  7323. "dev-master": "0.10.x-dev"
  7324. }
  7325. },
  7326. "autoload": {
  7327. "files": [
  7328. "src/functions.php"
  7329. ],
  7330. "psr-4": {
  7331. "Psy\\": "src/"
  7332. }
  7333. },
  7334. "notification-url": "https://packagist.org/downloads/",
  7335. "license": [
  7336. "MIT"
  7337. ],
  7338. "authors": [
  7339. {
  7340. "name": "Justin Hileman",
  7341. "email": "justin@justinhileman.info",
  7342. "homepage": "http://justinhileman.com"
  7343. }
  7344. ],
  7345. "description": "An interactive shell for modern PHP.",
  7346. "homepage": "http://psysh.org",
  7347. "keywords": [
  7348. "REPL",
  7349. "console",
  7350. "interactive",
  7351. "shell"
  7352. ],
  7353. "time": "2020-05-03T19:32:03+00:00"
  7354. },
  7355. {
  7356. "name": "ralouphie/getallheaders",
  7357. "version": "3.0.3",
  7358. "source": {
  7359. "type": "git",
  7360. "url": "https://github.com/ralouphie/getallheaders.git",
  7361. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7362. },
  7363. "dist": {
  7364. "type": "zip",
  7365. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7366. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7367. "shasum": ""
  7368. },
  7369. "require": {
  7370. "php": ">=5.6"
  7371. },
  7372. "require-dev": {
  7373. "php-coveralls/php-coveralls": "^2.1",
  7374. "phpunit/phpunit": "^5 || ^6.5"
  7375. },
  7376. "type": "library",
  7377. "autoload": {
  7378. "files": [
  7379. "src/getallheaders.php"
  7380. ]
  7381. },
  7382. "notification-url": "https://packagist.org/downloads/",
  7383. "license": [
  7384. "MIT"
  7385. ],
  7386. "authors": [
  7387. {
  7388. "name": "Ralph Khattar",
  7389. "email": "ralph.khattar@gmail.com"
  7390. }
  7391. ],
  7392. "description": "A polyfill for getallheaders.",
  7393. "time": "2019-03-08T08:55:37+00:00"
  7394. },
  7395. {
  7396. "name": "sibyx/phpgpx",
  7397. "version": "1.0-RC5",
  7398. "source": {
  7399. "type": "git",
  7400. "url": "https://github.com/Sibyx/phpGPX.git",
  7401. "reference": "0bb616dda0b6ff3e78c72167087c8ffe8b1cbf2e"
  7402. },
  7403. "dist": {
  7404. "type": "zip",
  7405. "url": "https://api.github.com/repos/Sibyx/phpGPX/zipball/0bb616dda0b6ff3e78c72167087c8ffe8b1cbf2e",
  7406. "reference": "0bb616dda0b6ff3e78c72167087c8ffe8b1cbf2e",
  7407. "shasum": ""
  7408. },
  7409. "require": {
  7410. "lib-libxml": "*",
  7411. "php": ">=5.4"
  7412. },
  7413. "require-dev": {
  7414. "evert/phpdoc-md": "~0.2.0",
  7415. "phpunit/phpunit": "^6.5"
  7416. },
  7417. "type": "library",
  7418. "autoload": {
  7419. "psr-4": {
  7420. "phpGPX\\": "src/phpGPX/"
  7421. }
  7422. },
  7423. "notification-url": "https://packagist.org/downloads/",
  7424. "license": [
  7425. "MIT"
  7426. ],
  7427. "authors": [
  7428. {
  7429. "name": "Jakub Dubec",
  7430. "email": "jakub.dubec@gmail.com",
  7431. "homepage": "https://jakubdubec.me"
  7432. }
  7433. ],
  7434. "description": "A simple PHP library for GPX import/export",
  7435. "time": "2018-01-25T12:25:51+00:00"
  7436. },
  7437. {
  7438. "name": "sierrafayad/osm-pbf",
  7439. "version": "1.0.1",
  7440. "source": {
  7441. "type": "git",
  7442. "url": "https://github.com/sierrafayad/osm-pbf.git",
  7443. "reference": "5780393d043d7c3132bb513f4b23e295ed934a47"
  7444. },
  7445. "dist": {
  7446. "type": "zip",
  7447. "url": "https://api.github.com/repos/sierrafayad/osm-pbf/zipball/5780393d043d7c3132bb513f4b23e295ed934a47",
  7448. "reference": "5780393d043d7c3132bb513f4b23e295ed934a47",
  7449. "shasum": ""
  7450. },
  7451. "require": {
  7452. "ext-zlib": "*",
  7453. "google/protobuf": "v3.6.1.3",
  7454. "mdurrant/php-binary-reader": "^1.0",
  7455. "php": ">=5.6"
  7456. },
  7457. "type": "library",
  7458. "autoload": {
  7459. "psr-4": {
  7460. "OsmPbf\\": "src/",
  7461. "OsmProto\\": "src/OSMProto/"
  7462. }
  7463. },
  7464. "notification-url": "https://packagist.org/downloads/",
  7465. "license": [
  7466. "MIT"
  7467. ],
  7468. "authors": [
  7469. {
  7470. "name": "Frank Sierra-Fayad",
  7471. "email": "frank@sierrafayad.com"
  7472. }
  7473. ],
  7474. "description": "Works with Open Street Map .osm.pbf compressed files.",
  7475. "homepage": "https://github.com/sierrafayad/osm-pbf",
  7476. "keywords": [
  7477. "OpenStreetMap",
  7478. "open street map",
  7479. "osm",
  7480. "pbf"
  7481. ],
  7482. "time": "2019-09-10T22:57:33+00:00"
  7483. },
  7484. {
  7485. "name": "stack/builder",
  7486. "version": "v1.0.5",
  7487. "source": {
  7488. "type": "git",
  7489. "url": "https://github.com/stackphp/builder.git",
  7490. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  7491. },
  7492. "dist": {
  7493. "type": "zip",
  7494. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7495. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7496. "shasum": ""
  7497. },
  7498. "require": {
  7499. "php": ">=5.3.0",
  7500. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  7501. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  7502. },
  7503. "require-dev": {
  7504. "silex/silex": "~1.0"
  7505. },
  7506. "type": "library",
  7507. "extra": {
  7508. "branch-alias": {
  7509. "dev-master": "1.0-dev"
  7510. }
  7511. },
  7512. "autoload": {
  7513. "psr-0": {
  7514. "Stack": "src"
  7515. }
  7516. },
  7517. "notification-url": "https://packagist.org/downloads/",
  7518. "license": [
  7519. "MIT"
  7520. ],
  7521. "authors": [
  7522. {
  7523. "name": "Igor Wiedler",
  7524. "email": "igor@wiedler.ch"
  7525. }
  7526. ],
  7527. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  7528. "keywords": [
  7529. "stack"
  7530. ],
  7531. "time": "2017-11-18T14:57:29+00:00"
  7532. },
  7533. {
  7534. "name": "symfony-cmf/routing",
  7535. "version": "1.4.1",
  7536. "source": {
  7537. "type": "git",
  7538. "url": "https://github.com/symfony-cmf/routing.git",
  7539. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  7540. },
  7541. "dist": {
  7542. "type": "zip",
  7543. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7544. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7545. "shasum": ""
  7546. },
  7547. "require": {
  7548. "php": "^5.3.9|^7.0",
  7549. "psr/log": "1.*",
  7550. "symfony/http-kernel": "^2.2|3.*",
  7551. "symfony/routing": "^2.2|3.*"
  7552. },
  7553. "require-dev": {
  7554. "friendsofsymfony/jsrouting-bundle": "^1.1",
  7555. "symfony-cmf/testing": "^1.3",
  7556. "symfony/config": "^2.2|3.*",
  7557. "symfony/dependency-injection": "^2.0.5|3.*",
  7558. "symfony/event-dispatcher": "^2.1|3.*"
  7559. },
  7560. "suggest": {
  7561. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  7562. },
  7563. "type": "library",
  7564. "extra": {
  7565. "branch-alias": {
  7566. "dev-master": "1.4-dev"
  7567. }
  7568. },
  7569. "autoload": {
  7570. "psr-4": {
  7571. "Symfony\\Cmf\\Component\\Routing\\": ""
  7572. }
  7573. },
  7574. "notification-url": "https://packagist.org/downloads/",
  7575. "license": [
  7576. "MIT"
  7577. ],
  7578. "authors": [
  7579. {
  7580. "name": "Symfony CMF Community",
  7581. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  7582. }
  7583. ],
  7584. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  7585. "homepage": "http://cmf.symfony.com",
  7586. "keywords": [
  7587. "database",
  7588. "routing"
  7589. ],
  7590. "time": "2017-05-09T08:10:41+00:00"
  7591. },
  7592. {
  7593. "name": "symfony/class-loader",
  7594. "version": "v3.4.41",
  7595. "source": {
  7596. "type": "git",
  7597. "url": "https://github.com/symfony/class-loader.git",
  7598. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8"
  7599. },
  7600. "dist": {
  7601. "type": "zip",
  7602. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e4636a4f23f157278a19e5db160c63de0da297d8",
  7603. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8",
  7604. "shasum": ""
  7605. },
  7606. "require": {
  7607. "php": "^5.5.9|>=7.0.8"
  7608. },
  7609. "require-dev": {
  7610. "symfony/finder": "~2.8|~3.0|~4.0",
  7611. "symfony/polyfill-apcu": "~1.1"
  7612. },
  7613. "suggest": {
  7614. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  7615. },
  7616. "type": "library",
  7617. "extra": {
  7618. "branch-alias": {
  7619. "dev-master": "3.4-dev"
  7620. }
  7621. },
  7622. "autoload": {
  7623. "psr-4": {
  7624. "Symfony\\Component\\ClassLoader\\": ""
  7625. },
  7626. "exclude-from-classmap": [
  7627. "/Tests/"
  7628. ]
  7629. },
  7630. "notification-url": "https://packagist.org/downloads/",
  7631. "license": [
  7632. "MIT"
  7633. ],
  7634. "authors": [
  7635. {
  7636. "name": "Fabien Potencier",
  7637. "email": "fabien@symfony.com"
  7638. },
  7639. {
  7640. "name": "Symfony Community",
  7641. "homepage": "https://symfony.com/contributors"
  7642. }
  7643. ],
  7644. "description": "Symfony ClassLoader Component",
  7645. "homepage": "https://symfony.com",
  7646. "funding": [
  7647. {
  7648. "url": "https://symfony.com/sponsor",
  7649. "type": "custom"
  7650. },
  7651. {
  7652. "url": "https://github.com/fabpot",
  7653. "type": "github"
  7654. },
  7655. {
  7656. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7657. "type": "tidelift"
  7658. }
  7659. ],
  7660. "time": "2020-03-15T09:38:08+00:00"
  7661. },
  7662. {
  7663. "name": "symfony/console",
  7664. "version": "v3.4.41",
  7665. "source": {
  7666. "type": "git",
  7667. "url": "https://github.com/symfony/console.git",
  7668. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13"
  7669. },
  7670. "dist": {
  7671. "type": "zip",
  7672. "url": "https://api.github.com/repos/symfony/console/zipball/bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  7673. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  7674. "shasum": ""
  7675. },
  7676. "require": {
  7677. "php": "^5.5.9|>=7.0.8",
  7678. "symfony/debug": "~2.8|~3.0|~4.0",
  7679. "symfony/polyfill-mbstring": "~1.0"
  7680. },
  7681. "conflict": {
  7682. "symfony/dependency-injection": "<3.4",
  7683. "symfony/process": "<3.3"
  7684. },
  7685. "provide": {
  7686. "psr/log-implementation": "1.0"
  7687. },
  7688. "require-dev": {
  7689. "psr/log": "~1.0",
  7690. "symfony/config": "~3.3|~4.0",
  7691. "symfony/dependency-injection": "~3.4|~4.0",
  7692. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  7693. "symfony/lock": "~3.4|~4.0",
  7694. "symfony/process": "~3.3|~4.0"
  7695. },
  7696. "suggest": {
  7697. "psr/log": "For using the console logger",
  7698. "symfony/event-dispatcher": "",
  7699. "symfony/lock": "",
  7700. "symfony/process": ""
  7701. },
  7702. "type": "library",
  7703. "extra": {
  7704. "branch-alias": {
  7705. "dev-master": "3.4-dev"
  7706. }
  7707. },
  7708. "autoload": {
  7709. "psr-4": {
  7710. "Symfony\\Component\\Console\\": ""
  7711. },
  7712. "exclude-from-classmap": [
  7713. "/Tests/"
  7714. ]
  7715. },
  7716. "notification-url": "https://packagist.org/downloads/",
  7717. "license": [
  7718. "MIT"
  7719. ],
  7720. "authors": [
  7721. {
  7722. "name": "Fabien Potencier",
  7723. "email": "fabien@symfony.com"
  7724. },
  7725. {
  7726. "name": "Symfony Community",
  7727. "homepage": "https://symfony.com/contributors"
  7728. }
  7729. ],
  7730. "description": "Symfony Console Component",
  7731. "homepage": "https://symfony.com",
  7732. "funding": [
  7733. {
  7734. "url": "https://symfony.com/sponsor",
  7735. "type": "custom"
  7736. },
  7737. {
  7738. "url": "https://github.com/fabpot",
  7739. "type": "github"
  7740. },
  7741. {
  7742. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7743. "type": "tidelift"
  7744. }
  7745. ],
  7746. "time": "2020-05-30T18:58:05+00:00"
  7747. },
  7748. {
  7749. "name": "symfony/debug",
  7750. "version": "v3.4.41",
  7751. "source": {
  7752. "type": "git",
  7753. "url": "https://github.com/symfony/debug.git",
  7754. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d"
  7755. },
  7756. "dist": {
  7757. "type": "zip",
  7758. "url": "https://api.github.com/repos/symfony/debug/zipball/518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  7759. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  7760. "shasum": ""
  7761. },
  7762. "require": {
  7763. "php": "^5.5.9|>=7.0.8",
  7764. "psr/log": "~1.0"
  7765. },
  7766. "conflict": {
  7767. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  7768. },
  7769. "require-dev": {
  7770. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  7771. },
  7772. "type": "library",
  7773. "extra": {
  7774. "branch-alias": {
  7775. "dev-master": "3.4-dev"
  7776. }
  7777. },
  7778. "autoload": {
  7779. "psr-4": {
  7780. "Symfony\\Component\\Debug\\": ""
  7781. },
  7782. "exclude-from-classmap": [
  7783. "/Tests/"
  7784. ]
  7785. },
  7786. "notification-url": "https://packagist.org/downloads/",
  7787. "license": [
  7788. "MIT"
  7789. ],
  7790. "authors": [
  7791. {
  7792. "name": "Fabien Potencier",
  7793. "email": "fabien@symfony.com"
  7794. },
  7795. {
  7796. "name": "Symfony Community",
  7797. "homepage": "https://symfony.com/contributors"
  7798. }
  7799. ],
  7800. "description": "Symfony Debug Component",
  7801. "homepage": "https://symfony.com",
  7802. "funding": [
  7803. {
  7804. "url": "https://symfony.com/sponsor",
  7805. "type": "custom"
  7806. },
  7807. {
  7808. "url": "https://github.com/fabpot",
  7809. "type": "github"
  7810. },
  7811. {
  7812. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7813. "type": "tidelift"
  7814. }
  7815. ],
  7816. "time": "2020-05-22T18:25:20+00:00"
  7817. },
  7818. {
  7819. "name": "symfony/dependency-injection",
  7820. "version": "v3.4.41",
  7821. "source": {
  7822. "type": "git",
  7823. "url": "https://github.com/symfony/dependency-injection.git",
  7824. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac"
  7825. },
  7826. "dist": {
  7827. "type": "zip",
  7828. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/e39380b7104b0ec538a075ae919f00c7e5267bac",
  7829. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac",
  7830. "shasum": ""
  7831. },
  7832. "require": {
  7833. "php": "^5.5.9|>=7.0.8",
  7834. "psr/container": "^1.0"
  7835. },
  7836. "conflict": {
  7837. "symfony/config": "<3.3.7",
  7838. "symfony/finder": "<3.3",
  7839. "symfony/proxy-manager-bridge": "<3.4",
  7840. "symfony/yaml": "<3.4"
  7841. },
  7842. "provide": {
  7843. "psr/container-implementation": "1.0"
  7844. },
  7845. "require-dev": {
  7846. "symfony/config": "~3.3|~4.0",
  7847. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7848. "symfony/yaml": "~3.4|~4.0"
  7849. },
  7850. "suggest": {
  7851. "symfony/config": "",
  7852. "symfony/expression-language": "For using expressions in service container configuration",
  7853. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  7854. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  7855. "symfony/yaml": ""
  7856. },
  7857. "type": "library",
  7858. "extra": {
  7859. "branch-alias": {
  7860. "dev-master": "3.4-dev"
  7861. }
  7862. },
  7863. "autoload": {
  7864. "psr-4": {
  7865. "Symfony\\Component\\DependencyInjection\\": ""
  7866. },
  7867. "exclude-from-classmap": [
  7868. "/Tests/"
  7869. ]
  7870. },
  7871. "notification-url": "https://packagist.org/downloads/",
  7872. "license": [
  7873. "MIT"
  7874. ],
  7875. "authors": [
  7876. {
  7877. "name": "Fabien Potencier",
  7878. "email": "fabien@symfony.com"
  7879. },
  7880. {
  7881. "name": "Symfony Community",
  7882. "homepage": "https://symfony.com/contributors"
  7883. }
  7884. ],
  7885. "description": "Symfony DependencyInjection Component",
  7886. "homepage": "https://symfony.com",
  7887. "funding": [
  7888. {
  7889. "url": "https://symfony.com/sponsor",
  7890. "type": "custom"
  7891. },
  7892. {
  7893. "url": "https://github.com/fabpot",
  7894. "type": "github"
  7895. },
  7896. {
  7897. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7898. "type": "tidelift"
  7899. }
  7900. ],
  7901. "time": "2020-05-30T21:06:01+00:00"
  7902. },
  7903. {
  7904. "name": "symfony/event-dispatcher",
  7905. "version": "v3.4.41",
  7906. "source": {
  7907. "type": "git",
  7908. "url": "https://github.com/symfony/event-dispatcher.git",
  7909. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081"
  7910. },
  7911. "dist": {
  7912. "type": "zip",
  7913. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/14d978f8e8555f2de719c00eb65376be7d2e9081",
  7914. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081",
  7915. "shasum": ""
  7916. },
  7917. "require": {
  7918. "php": "^5.5.9|>=7.0.8"
  7919. },
  7920. "conflict": {
  7921. "symfony/dependency-injection": "<3.3"
  7922. },
  7923. "require-dev": {
  7924. "psr/log": "~1.0",
  7925. "symfony/config": "~2.8|~3.0|~4.0",
  7926. "symfony/dependency-injection": "~3.3|~4.0",
  7927. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7928. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  7929. },
  7930. "suggest": {
  7931. "symfony/dependency-injection": "",
  7932. "symfony/http-kernel": ""
  7933. },
  7934. "type": "library",
  7935. "extra": {
  7936. "branch-alias": {
  7937. "dev-master": "3.4-dev"
  7938. }
  7939. },
  7940. "autoload": {
  7941. "psr-4": {
  7942. "Symfony\\Component\\EventDispatcher\\": ""
  7943. },
  7944. "exclude-from-classmap": [
  7945. "/Tests/"
  7946. ]
  7947. },
  7948. "notification-url": "https://packagist.org/downloads/",
  7949. "license": [
  7950. "MIT"
  7951. ],
  7952. "authors": [
  7953. {
  7954. "name": "Fabien Potencier",
  7955. "email": "fabien@symfony.com"
  7956. },
  7957. {
  7958. "name": "Symfony Community",
  7959. "homepage": "https://symfony.com/contributors"
  7960. }
  7961. ],
  7962. "description": "Symfony EventDispatcher Component",
  7963. "homepage": "https://symfony.com",
  7964. "funding": [
  7965. {
  7966. "url": "https://symfony.com/sponsor",
  7967. "type": "custom"
  7968. },
  7969. {
  7970. "url": "https://github.com/fabpot",
  7971. "type": "github"
  7972. },
  7973. {
  7974. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7975. "type": "tidelift"
  7976. }
  7977. ],
  7978. "time": "2020-05-05T15:06:23+00:00"
  7979. },
  7980. {
  7981. "name": "symfony/filesystem",
  7982. "version": "v4.4.15",
  7983. "source": {
  7984. "type": "git",
  7985. "url": "https://github.com/symfony/filesystem.git",
  7986. "reference": "ebc51494739d3b081ea543ed7c462fa73a4f74db"
  7987. },
  7988. "dist": {
  7989. "type": "zip",
  7990. "url": "https://api.github.com/repos/symfony/filesystem/zipball/ebc51494739d3b081ea543ed7c462fa73a4f74db",
  7991. "reference": "ebc51494739d3b081ea543ed7c462fa73a4f74db",
  7992. "shasum": ""
  7993. },
  7994. "require": {
  7995. "php": ">=7.1.3",
  7996. "symfony/polyfill-ctype": "~1.8"
  7997. },
  7998. "type": "library",
  7999. "extra": {
  8000. "branch-alias": {
  8001. "dev-master": "4.4-dev"
  8002. }
  8003. },
  8004. "autoload": {
  8005. "psr-4": {
  8006. "Symfony\\Component\\Filesystem\\": ""
  8007. },
  8008. "exclude-from-classmap": [
  8009. "/Tests/"
  8010. ]
  8011. },
  8012. "notification-url": "https://packagist.org/downloads/",
  8013. "license": [
  8014. "MIT"
  8015. ],
  8016. "authors": [
  8017. {
  8018. "name": "Fabien Potencier",
  8019. "email": "fabien@symfony.com"
  8020. },
  8021. {
  8022. "name": "Symfony Community",
  8023. "homepage": "https://symfony.com/contributors"
  8024. }
  8025. ],
  8026. "description": "Symfony Filesystem Component",
  8027. "homepage": "https://symfony.com",
  8028. "funding": [
  8029. {
  8030. "url": "https://symfony.com/sponsor",
  8031. "type": "custom"
  8032. },
  8033. {
  8034. "url": "https://github.com/fabpot",
  8035. "type": "github"
  8036. },
  8037. {
  8038. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8039. "type": "tidelift"
  8040. }
  8041. ],
  8042. "time": "2020-09-27T13:54:16+00:00"
  8043. },
  8044. {
  8045. "name": "symfony/finder",
  8046. "version": "v4.4.15",
  8047. "source": {
  8048. "type": "git",
  8049. "url": "https://github.com/symfony/finder.git",
  8050. "reference": "60d08560f9aa72997c44077c40d47aa28a963230"
  8051. },
  8052. "dist": {
  8053. "type": "zip",
  8054. "url": "https://api.github.com/repos/symfony/finder/zipball/60d08560f9aa72997c44077c40d47aa28a963230",
  8055. "reference": "60d08560f9aa72997c44077c40d47aa28a963230",
  8056. "shasum": ""
  8057. },
  8058. "require": {
  8059. "php": ">=7.1.3"
  8060. },
  8061. "type": "library",
  8062. "extra": {
  8063. "branch-alias": {
  8064. "dev-master": "4.4-dev"
  8065. }
  8066. },
  8067. "autoload": {
  8068. "psr-4": {
  8069. "Symfony\\Component\\Finder\\": ""
  8070. },
  8071. "exclude-from-classmap": [
  8072. "/Tests/"
  8073. ]
  8074. },
  8075. "notification-url": "https://packagist.org/downloads/",
  8076. "license": [
  8077. "MIT"
  8078. ],
  8079. "authors": [
  8080. {
  8081. "name": "Fabien Potencier",
  8082. "email": "fabien@symfony.com"
  8083. },
  8084. {
  8085. "name": "Symfony Community",
  8086. "homepage": "https://symfony.com/contributors"
  8087. }
  8088. ],
  8089. "description": "Symfony Finder Component",
  8090. "homepage": "https://symfony.com",
  8091. "funding": [
  8092. {
  8093. "url": "https://symfony.com/sponsor",
  8094. "type": "custom"
  8095. },
  8096. {
  8097. "url": "https://github.com/fabpot",
  8098. "type": "github"
  8099. },
  8100. {
  8101. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8102. "type": "tidelift"
  8103. }
  8104. ],
  8105. "time": "2020-10-02T07:34:48+00:00"
  8106. },
  8107. {
  8108. "name": "symfony/http-foundation",
  8109. "version": "v3.4.41",
  8110. "source": {
  8111. "type": "git",
  8112. "url": "https://github.com/symfony/http-foundation.git",
  8113. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359"
  8114. },
  8115. "dist": {
  8116. "type": "zip",
  8117. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/fbd216d2304b1a3fe38d6392b04729c8dd356359",
  8118. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359",
  8119. "shasum": ""
  8120. },
  8121. "require": {
  8122. "php": "^5.5.9|>=7.0.8",
  8123. "symfony/polyfill-mbstring": "~1.1",
  8124. "symfony/polyfill-php70": "~1.6"
  8125. },
  8126. "require-dev": {
  8127. "symfony/expression-language": "~2.8|~3.0|~4.0"
  8128. },
  8129. "type": "library",
  8130. "extra": {
  8131. "branch-alias": {
  8132. "dev-master": "3.4-dev"
  8133. }
  8134. },
  8135. "autoload": {
  8136. "psr-4": {
  8137. "Symfony\\Component\\HttpFoundation\\": ""
  8138. },
  8139. "exclude-from-classmap": [
  8140. "/Tests/"
  8141. ]
  8142. },
  8143. "notification-url": "https://packagist.org/downloads/",
  8144. "license": [
  8145. "MIT"
  8146. ],
  8147. "authors": [
  8148. {
  8149. "name": "Fabien Potencier",
  8150. "email": "fabien@symfony.com"
  8151. },
  8152. {
  8153. "name": "Symfony Community",
  8154. "homepage": "https://symfony.com/contributors"
  8155. }
  8156. ],
  8157. "description": "Symfony HttpFoundation Component",
  8158. "homepage": "https://symfony.com",
  8159. "funding": [
  8160. {
  8161. "url": "https://symfony.com/sponsor",
  8162. "type": "custom"
  8163. },
  8164. {
  8165. "url": "https://github.com/fabpot",
  8166. "type": "github"
  8167. },
  8168. {
  8169. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8170. "type": "tidelift"
  8171. }
  8172. ],
  8173. "time": "2020-05-16T13:15:54+00:00"
  8174. },
  8175. {
  8176. "name": "symfony/http-kernel",
  8177. "version": "v3.4.44",
  8178. "source": {
  8179. "type": "git",
  8180. "url": "https://github.com/symfony/http-kernel.git",
  8181. "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326"
  8182. },
  8183. "dist": {
  8184. "type": "zip",
  8185. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/27dcaa8c6b18c75df9f37badeb4d3564ffaa1326",
  8186. "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326",
  8187. "shasum": ""
  8188. },
  8189. "require": {
  8190. "php": "^5.5.9|>=7.0.8",
  8191. "psr/log": "~1.0",
  8192. "symfony/debug": "^3.3.3|~4.0",
  8193. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  8194. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  8195. "symfony/polyfill-ctype": "~1.8",
  8196. "symfony/polyfill-php56": "~1.8"
  8197. },
  8198. "conflict": {
  8199. "symfony/config": "<2.8",
  8200. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  8201. "symfony/var-dumper": "<3.3",
  8202. "twig/twig": "<1.34|<2.4,>=2"
  8203. },
  8204. "provide": {
  8205. "psr/log-implementation": "1.0"
  8206. },
  8207. "require-dev": {
  8208. "psr/cache": "~1.0",
  8209. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  8210. "symfony/class-loader": "~2.8|~3.0",
  8211. "symfony/config": "~2.8|~3.0|~4.0",
  8212. "symfony/console": "~2.8|~3.0|~4.0",
  8213. "symfony/css-selector": "~2.8|~3.0|~4.0",
  8214. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  8215. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  8216. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8217. "symfony/finder": "~2.8|~3.0|~4.0",
  8218. "symfony/process": "~2.8|~3.0|~4.0",
  8219. "symfony/routing": "~3.4|~4.0",
  8220. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  8221. "symfony/templating": "~2.8|~3.0|~4.0",
  8222. "symfony/translation": "~2.8|~3.0|~4.0",
  8223. "symfony/var-dumper": "~3.3|~4.0"
  8224. },
  8225. "suggest": {
  8226. "symfony/browser-kit": "",
  8227. "symfony/config": "",
  8228. "symfony/console": "",
  8229. "symfony/dependency-injection": "",
  8230. "symfony/finder": "",
  8231. "symfony/var-dumper": ""
  8232. },
  8233. "type": "library",
  8234. "extra": {
  8235. "branch-alias": {
  8236. "dev-master": "3.4-dev"
  8237. }
  8238. },
  8239. "autoload": {
  8240. "psr-4": {
  8241. "Symfony\\Component\\HttpKernel\\": ""
  8242. },
  8243. "exclude-from-classmap": [
  8244. "/Tests/"
  8245. ]
  8246. },
  8247. "notification-url": "https://packagist.org/downloads/",
  8248. "license": [
  8249. "MIT"
  8250. ],
  8251. "authors": [
  8252. {
  8253. "name": "Fabien Potencier",
  8254. "email": "fabien@symfony.com"
  8255. },
  8256. {
  8257. "name": "Symfony Community",
  8258. "homepage": "https://symfony.com/contributors"
  8259. }
  8260. ],
  8261. "description": "Symfony HttpKernel Component",
  8262. "homepage": "https://symfony.com",
  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-08-31T05:53:42+00:00"
  8278. },
  8279. {
  8280. "name": "symfony/polyfill-ctype",
  8281. "version": "v1.17.0",
  8282. "source": {
  8283. "type": "git",
  8284. "url": "https://github.com/symfony/polyfill-ctype.git",
  8285. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9"
  8286. },
  8287. "dist": {
  8288. "type": "zip",
  8289. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  8290. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  8291. "shasum": ""
  8292. },
  8293. "require": {
  8294. "php": ">=5.3.3"
  8295. },
  8296. "suggest": {
  8297. "ext-ctype": "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\\Ctype\\": ""
  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": "Gert de Pagter",
  8320. "email": "BackEndTea@gmail.com"
  8321. },
  8322. {
  8323. "name": "Symfony Community",
  8324. "homepage": "https://symfony.com/contributors"
  8325. }
  8326. ],
  8327. "description": "Symfony polyfill for ctype functions",
  8328. "homepage": "https://symfony.com",
  8329. "keywords": [
  8330. "compatibility",
  8331. "ctype",
  8332. "polyfill",
  8333. "portable"
  8334. ],
  8335. "funding": [
  8336. {
  8337. "url": "https://symfony.com/sponsor",
  8338. "type": "custom"
  8339. },
  8340. {
  8341. "url": "https://github.com/fabpot",
  8342. "type": "github"
  8343. },
  8344. {
  8345. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8346. "type": "tidelift"
  8347. }
  8348. ],
  8349. "time": "2020-05-12T16:14:59+00:00"
  8350. },
  8351. {
  8352. "name": "symfony/polyfill-iconv",
  8353. "version": "v1.17.0",
  8354. "source": {
  8355. "type": "git",
  8356. "url": "https://github.com/symfony/polyfill-iconv.git",
  8357. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424"
  8358. },
  8359. "dist": {
  8360. "type": "zip",
  8361. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c4de7601eefbf25f9d47190abe07f79fe0a27424",
  8362. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424",
  8363. "shasum": ""
  8364. },
  8365. "require": {
  8366. "php": ">=5.3.3"
  8367. },
  8368. "suggest": {
  8369. "ext-iconv": "For best performance"
  8370. },
  8371. "type": "library",
  8372. "extra": {
  8373. "branch-alias": {
  8374. "dev-master": "1.17-dev"
  8375. }
  8376. },
  8377. "autoload": {
  8378. "psr-4": {
  8379. "Symfony\\Polyfill\\Iconv\\": ""
  8380. },
  8381. "files": [
  8382. "bootstrap.php"
  8383. ]
  8384. },
  8385. "notification-url": "https://packagist.org/downloads/",
  8386. "license": [
  8387. "MIT"
  8388. ],
  8389. "authors": [
  8390. {
  8391. "name": "Nicolas Grekas",
  8392. "email": "p@tchwork.com"
  8393. },
  8394. {
  8395. "name": "Symfony Community",
  8396. "homepage": "https://symfony.com/contributors"
  8397. }
  8398. ],
  8399. "description": "Symfony polyfill for the Iconv extension",
  8400. "homepage": "https://symfony.com",
  8401. "keywords": [
  8402. "compatibility",
  8403. "iconv",
  8404. "polyfill",
  8405. "portable",
  8406. "shim"
  8407. ],
  8408. "funding": [
  8409. {
  8410. "url": "https://symfony.com/sponsor",
  8411. "type": "custom"
  8412. },
  8413. {
  8414. "url": "https://github.com/fabpot",
  8415. "type": "github"
  8416. },
  8417. {
  8418. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8419. "type": "tidelift"
  8420. }
  8421. ],
  8422. "time": "2020-05-12T16:47:27+00:00"
  8423. },
  8424. {
  8425. "name": "symfony/polyfill-intl-idn",
  8426. "version": "v1.17.0",
  8427. "source": {
  8428. "type": "git",
  8429. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8430. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a"
  8431. },
  8432. "dist": {
  8433. "type": "zip",
  8434. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  8435. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  8436. "shasum": ""
  8437. },
  8438. "require": {
  8439. "php": ">=5.3.3",
  8440. "symfony/polyfill-mbstring": "^1.3",
  8441. "symfony/polyfill-php72": "^1.10"
  8442. },
  8443. "suggest": {
  8444. "ext-intl": "For best performance"
  8445. },
  8446. "type": "library",
  8447. "extra": {
  8448. "branch-alias": {
  8449. "dev-master": "1.17-dev"
  8450. }
  8451. },
  8452. "autoload": {
  8453. "psr-4": {
  8454. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8455. },
  8456. "files": [
  8457. "bootstrap.php"
  8458. ]
  8459. },
  8460. "notification-url": "https://packagist.org/downloads/",
  8461. "license": [
  8462. "MIT"
  8463. ],
  8464. "authors": [
  8465. {
  8466. "name": "Laurent Bassin",
  8467. "email": "laurent@bassin.info"
  8468. },
  8469. {
  8470. "name": "Symfony Community",
  8471. "homepage": "https://symfony.com/contributors"
  8472. }
  8473. ],
  8474. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8475. "homepage": "https://symfony.com",
  8476. "keywords": [
  8477. "compatibility",
  8478. "idn",
  8479. "intl",
  8480. "polyfill",
  8481. "portable",
  8482. "shim"
  8483. ],
  8484. "funding": [
  8485. {
  8486. "url": "https://symfony.com/sponsor",
  8487. "type": "custom"
  8488. },
  8489. {
  8490. "url": "https://github.com/fabpot",
  8491. "type": "github"
  8492. },
  8493. {
  8494. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8495. "type": "tidelift"
  8496. }
  8497. ],
  8498. "time": "2020-05-12T16:47:27+00:00"
  8499. },
  8500. {
  8501. "name": "symfony/polyfill-mbstring",
  8502. "version": "v1.17.0",
  8503. "source": {
  8504. "type": "git",
  8505. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8506. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c"
  8507. },
  8508. "dist": {
  8509. "type": "zip",
  8510. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fa79b11539418b02fc5e1897267673ba2c19419c",
  8511. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c",
  8512. "shasum": ""
  8513. },
  8514. "require": {
  8515. "php": ">=5.3.3"
  8516. },
  8517. "suggest": {
  8518. "ext-mbstring": "For best performance"
  8519. },
  8520. "type": "library",
  8521. "extra": {
  8522. "branch-alias": {
  8523. "dev-master": "1.17-dev"
  8524. }
  8525. },
  8526. "autoload": {
  8527. "psr-4": {
  8528. "Symfony\\Polyfill\\Mbstring\\": ""
  8529. },
  8530. "files": [
  8531. "bootstrap.php"
  8532. ]
  8533. },
  8534. "notification-url": "https://packagist.org/downloads/",
  8535. "license": [
  8536. "MIT"
  8537. ],
  8538. "authors": [
  8539. {
  8540. "name": "Nicolas Grekas",
  8541. "email": "p@tchwork.com"
  8542. },
  8543. {
  8544. "name": "Symfony Community",
  8545. "homepage": "https://symfony.com/contributors"
  8546. }
  8547. ],
  8548. "description": "Symfony polyfill for the Mbstring extension",
  8549. "homepage": "https://symfony.com",
  8550. "keywords": [
  8551. "compatibility",
  8552. "mbstring",
  8553. "polyfill",
  8554. "portable",
  8555. "shim"
  8556. ],
  8557. "funding": [
  8558. {
  8559. "url": "https://symfony.com/sponsor",
  8560. "type": "custom"
  8561. },
  8562. {
  8563. "url": "https://github.com/fabpot",
  8564. "type": "github"
  8565. },
  8566. {
  8567. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8568. "type": "tidelift"
  8569. }
  8570. ],
  8571. "time": "2020-05-12T16:47:27+00:00"
  8572. },
  8573. {
  8574. "name": "symfony/polyfill-php56",
  8575. "version": "v1.17.0",
  8576. "source": {
  8577. "type": "git",
  8578. "url": "https://github.com/symfony/polyfill-php56.git",
  8579. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23"
  8580. },
  8581. "dist": {
  8582. "type": "zip",
  8583. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/e3c8c138280cdfe4b81488441555583aa1984e23",
  8584. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23",
  8585. "shasum": ""
  8586. },
  8587. "require": {
  8588. "php": ">=5.3.3",
  8589. "symfony/polyfill-util": "~1.0"
  8590. },
  8591. "type": "library",
  8592. "extra": {
  8593. "branch-alias": {
  8594. "dev-master": "1.17-dev"
  8595. }
  8596. },
  8597. "autoload": {
  8598. "psr-4": {
  8599. "Symfony\\Polyfill\\Php56\\": ""
  8600. },
  8601. "files": [
  8602. "bootstrap.php"
  8603. ]
  8604. },
  8605. "notification-url": "https://packagist.org/downloads/",
  8606. "license": [
  8607. "MIT"
  8608. ],
  8609. "authors": [
  8610. {
  8611. "name": "Nicolas Grekas",
  8612. "email": "p@tchwork.com"
  8613. },
  8614. {
  8615. "name": "Symfony Community",
  8616. "homepage": "https://symfony.com/contributors"
  8617. }
  8618. ],
  8619. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  8620. "homepage": "https://symfony.com",
  8621. "keywords": [
  8622. "compatibility",
  8623. "polyfill",
  8624. "portable",
  8625. "shim"
  8626. ],
  8627. "funding": [
  8628. {
  8629. "url": "https://symfony.com/sponsor",
  8630. "type": "custom"
  8631. },
  8632. {
  8633. "url": "https://github.com/fabpot",
  8634. "type": "github"
  8635. },
  8636. {
  8637. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8638. "type": "tidelift"
  8639. }
  8640. ],
  8641. "time": "2020-05-12T16:47:27+00:00"
  8642. },
  8643. {
  8644. "name": "symfony/polyfill-php70",
  8645. "version": "v1.17.0",
  8646. "source": {
  8647. "type": "git",
  8648. "url": "https://github.com/symfony/polyfill-php70.git",
  8649. "reference": "82225c2d7d23d7e70515496d249c0152679b468e"
  8650. },
  8651. "dist": {
  8652. "type": "zip",
  8653. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/82225c2d7d23d7e70515496d249c0152679b468e",
  8654. "reference": "82225c2d7d23d7e70515496d249c0152679b468e",
  8655. "shasum": ""
  8656. },
  8657. "require": {
  8658. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  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\\Php70\\": ""
  8670. },
  8671. "files": [
  8672. "bootstrap.php"
  8673. ],
  8674. "classmap": [
  8675. "Resources/stubs"
  8676. ]
  8677. },
  8678. "notification-url": "https://packagist.org/downloads/",
  8679. "license": [
  8680. "MIT"
  8681. ],
  8682. "authors": [
  8683. {
  8684. "name": "Nicolas Grekas",
  8685. "email": "p@tchwork.com"
  8686. },
  8687. {
  8688. "name": "Symfony Community",
  8689. "homepage": "https://symfony.com/contributors"
  8690. }
  8691. ],
  8692. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  8693. "homepage": "https://symfony.com",
  8694. "keywords": [
  8695. "compatibility",
  8696. "polyfill",
  8697. "portable",
  8698. "shim"
  8699. ],
  8700. "funding": [
  8701. {
  8702. "url": "https://symfony.com/sponsor",
  8703. "type": "custom"
  8704. },
  8705. {
  8706. "url": "https://github.com/fabpot",
  8707. "type": "github"
  8708. },
  8709. {
  8710. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8711. "type": "tidelift"
  8712. }
  8713. ],
  8714. "time": "2020-05-12T16:47:27+00:00"
  8715. },
  8716. {
  8717. "name": "symfony/polyfill-php72",
  8718. "version": "v1.17.0",
  8719. "source": {
  8720. "type": "git",
  8721. "url": "https://github.com/symfony/polyfill-php72.git",
  8722. "reference": "f048e612a3905f34931127360bdd2def19a5e582"
  8723. },
  8724. "dist": {
  8725. "type": "zip",
  8726. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/f048e612a3905f34931127360bdd2def19a5e582",
  8727. "reference": "f048e612a3905f34931127360bdd2def19a5e582",
  8728. "shasum": ""
  8729. },
  8730. "require": {
  8731. "php": ">=5.3.3"
  8732. },
  8733. "type": "library",
  8734. "extra": {
  8735. "branch-alias": {
  8736. "dev-master": "1.17-dev"
  8737. }
  8738. },
  8739. "autoload": {
  8740. "psr-4": {
  8741. "Symfony\\Polyfill\\Php72\\": ""
  8742. },
  8743. "files": [
  8744. "bootstrap.php"
  8745. ]
  8746. },
  8747. "notification-url": "https://packagist.org/downloads/",
  8748. "license": [
  8749. "MIT"
  8750. ],
  8751. "authors": [
  8752. {
  8753. "name": "Nicolas Grekas",
  8754. "email": "p@tchwork.com"
  8755. },
  8756. {
  8757. "name": "Symfony Community",
  8758. "homepage": "https://symfony.com/contributors"
  8759. }
  8760. ],
  8761. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  8762. "homepage": "https://symfony.com",
  8763. "keywords": [
  8764. "compatibility",
  8765. "polyfill",
  8766. "portable",
  8767. "shim"
  8768. ],
  8769. "funding": [
  8770. {
  8771. "url": "https://symfony.com/sponsor",
  8772. "type": "custom"
  8773. },
  8774. {
  8775. "url": "https://github.com/fabpot",
  8776. "type": "github"
  8777. },
  8778. {
  8779. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8780. "type": "tidelift"
  8781. }
  8782. ],
  8783. "time": "2020-05-12T16:47:27+00:00"
  8784. },
  8785. {
  8786. "name": "symfony/polyfill-php80",
  8787. "version": "v1.18.1",
  8788. "source": {
  8789. "type": "git",
  8790. "url": "https://github.com/symfony/polyfill-php80.git",
  8791. "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981"
  8792. },
  8793. "dist": {
  8794. "type": "zip",
  8795. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/d87d5766cbf48d72388a9f6b85f280c8ad51f981",
  8796. "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981",
  8797. "shasum": ""
  8798. },
  8799. "require": {
  8800. "php": ">=7.0.8"
  8801. },
  8802. "type": "library",
  8803. "extra": {
  8804. "branch-alias": {
  8805. "dev-master": "1.18-dev"
  8806. },
  8807. "thanks": {
  8808. "name": "symfony/polyfill",
  8809. "url": "https://github.com/symfony/polyfill"
  8810. }
  8811. },
  8812. "autoload": {
  8813. "psr-4": {
  8814. "Symfony\\Polyfill\\Php80\\": ""
  8815. },
  8816. "files": [
  8817. "bootstrap.php"
  8818. ],
  8819. "classmap": [
  8820. "Resources/stubs"
  8821. ]
  8822. },
  8823. "notification-url": "https://packagist.org/downloads/",
  8824. "license": [
  8825. "MIT"
  8826. ],
  8827. "authors": [
  8828. {
  8829. "name": "Ion Bazan",
  8830. "email": "ion.bazan@gmail.com"
  8831. },
  8832. {
  8833. "name": "Nicolas Grekas",
  8834. "email": "p@tchwork.com"
  8835. },
  8836. {
  8837. "name": "Symfony Community",
  8838. "homepage": "https://symfony.com/contributors"
  8839. }
  8840. ],
  8841. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8842. "homepage": "https://symfony.com",
  8843. "keywords": [
  8844. "compatibility",
  8845. "polyfill",
  8846. "portable",
  8847. "shim"
  8848. ],
  8849. "funding": [
  8850. {
  8851. "url": "https://symfony.com/sponsor",
  8852. "type": "custom"
  8853. },
  8854. {
  8855. "url": "https://github.com/fabpot",
  8856. "type": "github"
  8857. },
  8858. {
  8859. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8860. "type": "tidelift"
  8861. }
  8862. ],
  8863. "time": "2020-07-14T12:35:20+00:00"
  8864. },
  8865. {
  8866. "name": "symfony/polyfill-util",
  8867. "version": "v1.17.0",
  8868. "source": {
  8869. "type": "git",
  8870. "url": "https://github.com/symfony/polyfill-util.git",
  8871. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7"
  8872. },
  8873. "dist": {
  8874. "type": "zip",
  8875. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  8876. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  8877. "shasum": ""
  8878. },
  8879. "require": {
  8880. "php": ">=5.3.3"
  8881. },
  8882. "type": "library",
  8883. "extra": {
  8884. "branch-alias": {
  8885. "dev-master": "1.17-dev"
  8886. }
  8887. },
  8888. "autoload": {
  8889. "psr-4": {
  8890. "Symfony\\Polyfill\\Util\\": ""
  8891. }
  8892. },
  8893. "notification-url": "https://packagist.org/downloads/",
  8894. "license": [
  8895. "MIT"
  8896. ],
  8897. "authors": [
  8898. {
  8899. "name": "Nicolas Grekas",
  8900. "email": "p@tchwork.com"
  8901. },
  8902. {
  8903. "name": "Symfony Community",
  8904. "homepage": "https://symfony.com/contributors"
  8905. }
  8906. ],
  8907. "description": "Symfony utilities for portability of PHP codes",
  8908. "homepage": "https://symfony.com",
  8909. "keywords": [
  8910. "compat",
  8911. "compatibility",
  8912. "polyfill",
  8913. "shim"
  8914. ],
  8915. "funding": [
  8916. {
  8917. "url": "https://symfony.com/sponsor",
  8918. "type": "custom"
  8919. },
  8920. {
  8921. "url": "https://github.com/fabpot",
  8922. "type": "github"
  8923. },
  8924. {
  8925. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8926. "type": "tidelift"
  8927. }
  8928. ],
  8929. "time": "2020-05-12T16:14:59+00:00"
  8930. },
  8931. {
  8932. "name": "symfony/process",
  8933. "version": "v3.4.41",
  8934. "source": {
  8935. "type": "git",
  8936. "url": "https://github.com/symfony/process.git",
  8937. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21"
  8938. },
  8939. "dist": {
  8940. "type": "zip",
  8941. "url": "https://api.github.com/repos/symfony/process/zipball/8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  8942. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  8943. "shasum": ""
  8944. },
  8945. "require": {
  8946. "php": "^5.5.9|>=7.0.8"
  8947. },
  8948. "type": "library",
  8949. "extra": {
  8950. "branch-alias": {
  8951. "dev-master": "3.4-dev"
  8952. }
  8953. },
  8954. "autoload": {
  8955. "psr-4": {
  8956. "Symfony\\Component\\Process\\": ""
  8957. },
  8958. "exclude-from-classmap": [
  8959. "/Tests/"
  8960. ]
  8961. },
  8962. "notification-url": "https://packagist.org/downloads/",
  8963. "license": [
  8964. "MIT"
  8965. ],
  8966. "authors": [
  8967. {
  8968. "name": "Fabien Potencier",
  8969. "email": "fabien@symfony.com"
  8970. },
  8971. {
  8972. "name": "Symfony Community",
  8973. "homepage": "https://symfony.com/contributors"
  8974. }
  8975. ],
  8976. "description": "Symfony Process Component",
  8977. "homepage": "https://symfony.com",
  8978. "funding": [
  8979. {
  8980. "url": "https://symfony.com/sponsor",
  8981. "type": "custom"
  8982. },
  8983. {
  8984. "url": "https://github.com/fabpot",
  8985. "type": "github"
  8986. },
  8987. {
  8988. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8989. "type": "tidelift"
  8990. }
  8991. ],
  8992. "time": "2020-05-23T17:05:51+00:00"
  8993. },
  8994. {
  8995. "name": "symfony/psr-http-message-bridge",
  8996. "version": "v1.1.2",
  8997. "source": {
  8998. "type": "git",
  8999. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9000. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b"
  9001. },
  9002. "dist": {
  9003. "type": "zip",
  9004. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b",
  9005. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b",
  9006. "shasum": ""
  9007. },
  9008. "require": {
  9009. "php": "^5.3.3 || ^7.0",
  9010. "psr/http-message": "^1.0",
  9011. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  9012. },
  9013. "require-dev": {
  9014. "symfony/phpunit-bridge": "^3.4 || ^4.0"
  9015. },
  9016. "suggest": {
  9017. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  9018. },
  9019. "type": "symfony-bridge",
  9020. "extra": {
  9021. "branch-alias": {
  9022. "dev-master": "1.1-dev"
  9023. }
  9024. },
  9025. "autoload": {
  9026. "psr-4": {
  9027. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9028. },
  9029. "exclude-from-classmap": [
  9030. "/Tests/"
  9031. ]
  9032. },
  9033. "notification-url": "https://packagist.org/downloads/",
  9034. "license": [
  9035. "MIT"
  9036. ],
  9037. "authors": [
  9038. {
  9039. "name": "Symfony Community",
  9040. "homepage": "http://symfony.com/contributors"
  9041. },
  9042. {
  9043. "name": "Fabien Potencier",
  9044. "email": "fabien@symfony.com"
  9045. }
  9046. ],
  9047. "description": "PSR HTTP message bridge",
  9048. "homepage": "http://symfony.com",
  9049. "keywords": [
  9050. "http",
  9051. "http-message",
  9052. "psr-17",
  9053. "psr-7"
  9054. ],
  9055. "time": "2019-04-03T17:09:40+00:00"
  9056. },
  9057. {
  9058. "name": "symfony/routing",
  9059. "version": "v3.4.41",
  9060. "source": {
  9061. "type": "git",
  9062. "url": "https://github.com/symfony/routing.git",
  9063. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f"
  9064. },
  9065. "dist": {
  9066. "type": "zip",
  9067. "url": "https://api.github.com/repos/symfony/routing/zipball/e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  9068. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  9069. "shasum": ""
  9070. },
  9071. "require": {
  9072. "php": "^5.5.9|>=7.0.8"
  9073. },
  9074. "conflict": {
  9075. "symfony/config": "<3.3.1",
  9076. "symfony/dependency-injection": "<3.3",
  9077. "symfony/yaml": "<3.4"
  9078. },
  9079. "require-dev": {
  9080. "doctrine/annotations": "~1.0",
  9081. "psr/log": "~1.0",
  9082. "symfony/config": "^3.3.1|~4.0",
  9083. "symfony/dependency-injection": "~3.3|~4.0",
  9084. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9085. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9086. "symfony/yaml": "~3.4|~4.0"
  9087. },
  9088. "suggest": {
  9089. "doctrine/annotations": "For using the annotation loader",
  9090. "symfony/config": "For using the all-in-one router or any loader",
  9091. "symfony/expression-language": "For using expression matching",
  9092. "symfony/http-foundation": "For using a Symfony Request object",
  9093. "symfony/yaml": "For using the YAML loader"
  9094. },
  9095. "type": "library",
  9096. "extra": {
  9097. "branch-alias": {
  9098. "dev-master": "3.4-dev"
  9099. }
  9100. },
  9101. "autoload": {
  9102. "psr-4": {
  9103. "Symfony\\Component\\Routing\\": ""
  9104. },
  9105. "exclude-from-classmap": [
  9106. "/Tests/"
  9107. ]
  9108. },
  9109. "notification-url": "https://packagist.org/downloads/",
  9110. "license": [
  9111. "MIT"
  9112. ],
  9113. "authors": [
  9114. {
  9115. "name": "Fabien Potencier",
  9116. "email": "fabien@symfony.com"
  9117. },
  9118. {
  9119. "name": "Symfony Community",
  9120. "homepage": "https://symfony.com/contributors"
  9121. }
  9122. ],
  9123. "description": "Symfony Routing Component",
  9124. "homepage": "https://symfony.com",
  9125. "keywords": [
  9126. "router",
  9127. "routing",
  9128. "uri",
  9129. "url"
  9130. ],
  9131. "funding": [
  9132. {
  9133. "url": "https://symfony.com/sponsor",
  9134. "type": "custom"
  9135. },
  9136. {
  9137. "url": "https://github.com/fabpot",
  9138. "type": "github"
  9139. },
  9140. {
  9141. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9142. "type": "tidelift"
  9143. }
  9144. ],
  9145. "time": "2020-05-30T19:50:06+00:00"
  9146. },
  9147. {
  9148. "name": "symfony/serializer",
  9149. "version": "v3.4.41",
  9150. "source": {
  9151. "type": "git",
  9152. "url": "https://github.com/symfony/serializer.git",
  9153. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f"
  9154. },
  9155. "dist": {
  9156. "type": "zip",
  9157. "url": "https://api.github.com/repos/symfony/serializer/zipball/0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  9158. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  9159. "shasum": ""
  9160. },
  9161. "require": {
  9162. "php": "^5.5.9|>=7.0.8",
  9163. "symfony/polyfill-ctype": "~1.8"
  9164. },
  9165. "conflict": {
  9166. "phpdocumentor/type-resolver": "<0.2.1",
  9167. "symfony/dependency-injection": "<3.2",
  9168. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  9169. "symfony/property-info": "<3.1",
  9170. "symfony/yaml": "<3.4"
  9171. },
  9172. "require-dev": {
  9173. "doctrine/annotations": "~1.0",
  9174. "doctrine/cache": "~1.0",
  9175. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  9176. "symfony/cache": "~3.1|~4.0",
  9177. "symfony/config": "~2.8|~3.0|~4.0",
  9178. "symfony/dependency-injection": "~3.2|~4.0",
  9179. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9180. "symfony/property-access": "~2.8|~3.0|~4.0",
  9181. "symfony/property-info": "^3.4.13|~4.0",
  9182. "symfony/yaml": "~3.4|~4.0"
  9183. },
  9184. "suggest": {
  9185. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9186. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9187. "psr/cache-implementation": "For using the metadata cache.",
  9188. "symfony/config": "For using the XML mapping loader.",
  9189. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  9190. "symfony/property-access": "For using the ObjectNormalizer.",
  9191. "symfony/property-info": "To deserialize relations.",
  9192. "symfony/yaml": "For using the default YAML mapping loader."
  9193. },
  9194. "type": "library",
  9195. "extra": {
  9196. "branch-alias": {
  9197. "dev-master": "3.4-dev"
  9198. }
  9199. },
  9200. "autoload": {
  9201. "psr-4": {
  9202. "Symfony\\Component\\Serializer\\": ""
  9203. },
  9204. "exclude-from-classmap": [
  9205. "/Tests/"
  9206. ]
  9207. },
  9208. "notification-url": "https://packagist.org/downloads/",
  9209. "license": [
  9210. "MIT"
  9211. ],
  9212. "authors": [
  9213. {
  9214. "name": "Fabien Potencier",
  9215. "email": "fabien@symfony.com"
  9216. },
  9217. {
  9218. "name": "Symfony Community",
  9219. "homepage": "https://symfony.com/contributors"
  9220. }
  9221. ],
  9222. "description": "Symfony Serializer Component",
  9223. "homepage": "https://symfony.com",
  9224. "funding": [
  9225. {
  9226. "url": "https://symfony.com/sponsor",
  9227. "type": "custom"
  9228. },
  9229. {
  9230. "url": "https://github.com/fabpot",
  9231. "type": "github"
  9232. },
  9233. {
  9234. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9235. "type": "tidelift"
  9236. }
  9237. ],
  9238. "time": "2020-05-30T18:58:05+00:00"
  9239. },
  9240. {
  9241. "name": "symfony/translation",
  9242. "version": "v3.4.41",
  9243. "source": {
  9244. "type": "git",
  9245. "url": "https://github.com/symfony/translation.git",
  9246. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f"
  9247. },
  9248. "dist": {
  9249. "type": "zip",
  9250. "url": "https://api.github.com/repos/symfony/translation/zipball/b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  9251. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  9252. "shasum": ""
  9253. },
  9254. "require": {
  9255. "php": "^5.5.9|>=7.0.8",
  9256. "symfony/polyfill-mbstring": "~1.0"
  9257. },
  9258. "conflict": {
  9259. "symfony/config": "<2.8",
  9260. "symfony/dependency-injection": "<3.4",
  9261. "symfony/yaml": "<3.4"
  9262. },
  9263. "require-dev": {
  9264. "psr/log": "~1.0",
  9265. "symfony/config": "~2.8|~3.0|~4.0",
  9266. "symfony/dependency-injection": "~3.4|~4.0",
  9267. "symfony/finder": "~2.8|~3.0|~4.0",
  9268. "symfony/http-kernel": "~3.4|~4.0",
  9269. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9270. "symfony/var-dumper": "~3.4|~4.0",
  9271. "symfony/yaml": "~3.4|~4.0"
  9272. },
  9273. "suggest": {
  9274. "psr/log-implementation": "To use logging capability in translator",
  9275. "symfony/config": "",
  9276. "symfony/yaml": ""
  9277. },
  9278. "type": "library",
  9279. "extra": {
  9280. "branch-alias": {
  9281. "dev-master": "3.4-dev"
  9282. }
  9283. },
  9284. "autoload": {
  9285. "psr-4": {
  9286. "Symfony\\Component\\Translation\\": ""
  9287. },
  9288. "exclude-from-classmap": [
  9289. "/Tests/"
  9290. ]
  9291. },
  9292. "notification-url": "https://packagist.org/downloads/",
  9293. "license": [
  9294. "MIT"
  9295. ],
  9296. "authors": [
  9297. {
  9298. "name": "Fabien Potencier",
  9299. "email": "fabien@symfony.com"
  9300. },
  9301. {
  9302. "name": "Symfony Community",
  9303. "homepage": "https://symfony.com/contributors"
  9304. }
  9305. ],
  9306. "description": "Symfony Translation Component",
  9307. "homepage": "https://symfony.com",
  9308. "funding": [
  9309. {
  9310. "url": "https://symfony.com/sponsor",
  9311. "type": "custom"
  9312. },
  9313. {
  9314. "url": "https://github.com/fabpot",
  9315. "type": "github"
  9316. },
  9317. {
  9318. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9319. "type": "tidelift"
  9320. }
  9321. ],
  9322. "time": "2020-05-30T18:58:05+00:00"
  9323. },
  9324. {
  9325. "name": "symfony/validator",
  9326. "version": "v3.4.41",
  9327. "source": {
  9328. "type": "git",
  9329. "url": "https://github.com/symfony/validator.git",
  9330. "reference": "5fb88120a11a75e17b602103a893dd8b27804529"
  9331. },
  9332. "dist": {
  9333. "type": "zip",
  9334. "url": "https://api.github.com/repos/symfony/validator/zipball/5fb88120a11a75e17b602103a893dd8b27804529",
  9335. "reference": "5fb88120a11a75e17b602103a893dd8b27804529",
  9336. "shasum": ""
  9337. },
  9338. "require": {
  9339. "php": "^5.5.9|>=7.0.8",
  9340. "symfony/polyfill-ctype": "~1.8",
  9341. "symfony/polyfill-mbstring": "~1.0",
  9342. "symfony/translation": "~2.8|~3.0|~4.0"
  9343. },
  9344. "conflict": {
  9345. "doctrine/lexer": "<1.0.2",
  9346. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9347. "symfony/dependency-injection": "<3.3",
  9348. "symfony/http-kernel": "<3.3.5",
  9349. "symfony/yaml": "<3.4"
  9350. },
  9351. "require-dev": {
  9352. "doctrine/annotations": "~1.7",
  9353. "doctrine/cache": "~1.0",
  9354. "egulias/email-validator": "^2.1.10",
  9355. "symfony/cache": "~3.1|~4.0",
  9356. "symfony/config": "~2.8|~3.0|~4.0",
  9357. "symfony/dependency-injection": "~3.3|~4.0",
  9358. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9359. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9360. "symfony/http-kernel": "^3.3.5|~4.0",
  9361. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9362. "symfony/property-access": "~2.8|~3.0|~4.0",
  9363. "symfony/var-dumper": "~3.3|~4.0",
  9364. "symfony/yaml": "~3.4|~4.0"
  9365. },
  9366. "suggest": {
  9367. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9368. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9369. "egulias/email-validator": "Strict (RFC compliant) email validation",
  9370. "psr/cache-implementation": "For using the metadata cache.",
  9371. "symfony/config": "",
  9372. "symfony/expression-language": "For using the Expression validator",
  9373. "symfony/http-foundation": "",
  9374. "symfony/intl": "",
  9375. "symfony/property-access": "For accessing properties within comparison constraints",
  9376. "symfony/yaml": ""
  9377. },
  9378. "type": "library",
  9379. "extra": {
  9380. "branch-alias": {
  9381. "dev-master": "3.4-dev"
  9382. }
  9383. },
  9384. "autoload": {
  9385. "psr-4": {
  9386. "Symfony\\Component\\Validator\\": ""
  9387. },
  9388. "exclude-from-classmap": [
  9389. "/Tests/"
  9390. ]
  9391. },
  9392. "notification-url": "https://packagist.org/downloads/",
  9393. "license": [
  9394. "MIT"
  9395. ],
  9396. "authors": [
  9397. {
  9398. "name": "Fabien Potencier",
  9399. "email": "fabien@symfony.com"
  9400. },
  9401. {
  9402. "name": "Symfony Community",
  9403. "homepage": "https://symfony.com/contributors"
  9404. }
  9405. ],
  9406. "description": "Symfony Validator Component",
  9407. "homepage": "https://symfony.com",
  9408. "funding": [
  9409. {
  9410. "url": "https://symfony.com/sponsor",
  9411. "type": "custom"
  9412. },
  9413. {
  9414. "url": "https://github.com/fabpot",
  9415. "type": "github"
  9416. },
  9417. {
  9418. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9419. "type": "tidelift"
  9420. }
  9421. ],
  9422. "time": "2020-05-30T18:43:38+00:00"
  9423. },
  9424. {
  9425. "name": "symfony/var-dumper",
  9426. "version": "v4.4.15",
  9427. "source": {
  9428. "type": "git",
  9429. "url": "https://github.com/symfony/var-dumper.git",
  9430. "reference": "0dc22bdf9d1197467bb04d505355180b6f20bcca"
  9431. },
  9432. "dist": {
  9433. "type": "zip",
  9434. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/0dc22bdf9d1197467bb04d505355180b6f20bcca",
  9435. "reference": "0dc22bdf9d1197467bb04d505355180b6f20bcca",
  9436. "shasum": ""
  9437. },
  9438. "require": {
  9439. "php": ">=7.1.3",
  9440. "symfony/polyfill-mbstring": "~1.0",
  9441. "symfony/polyfill-php72": "~1.5",
  9442. "symfony/polyfill-php80": "^1.15"
  9443. },
  9444. "conflict": {
  9445. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9446. "symfony/console": "<3.4"
  9447. },
  9448. "require-dev": {
  9449. "ext-iconv": "*",
  9450. "symfony/console": "^3.4|^4.0|^5.0",
  9451. "symfony/process": "^4.4|^5.0",
  9452. "twig/twig": "^1.34|^2.4|^3.0"
  9453. },
  9454. "suggest": {
  9455. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  9456. "ext-intl": "To show region name in time zone dump",
  9457. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  9458. },
  9459. "bin": [
  9460. "Resources/bin/var-dump-server"
  9461. ],
  9462. "type": "library",
  9463. "extra": {
  9464. "branch-alias": {
  9465. "dev-master": "4.4-dev"
  9466. }
  9467. },
  9468. "autoload": {
  9469. "files": [
  9470. "Resources/functions/dump.php"
  9471. ],
  9472. "psr-4": {
  9473. "Symfony\\Component\\VarDumper\\": ""
  9474. },
  9475. "exclude-from-classmap": [
  9476. "/Tests/"
  9477. ]
  9478. },
  9479. "notification-url": "https://packagist.org/downloads/",
  9480. "license": [
  9481. "MIT"
  9482. ],
  9483. "authors": [
  9484. {
  9485. "name": "Nicolas Grekas",
  9486. "email": "p@tchwork.com"
  9487. },
  9488. {
  9489. "name": "Symfony Community",
  9490. "homepage": "https://symfony.com/contributors"
  9491. }
  9492. ],
  9493. "description": "Symfony mechanism for exploring and dumping PHP variables",
  9494. "homepage": "https://symfony.com",
  9495. "keywords": [
  9496. "debug",
  9497. "dump"
  9498. ],
  9499. "funding": [
  9500. {
  9501. "url": "https://symfony.com/sponsor",
  9502. "type": "custom"
  9503. },
  9504. {
  9505. "url": "https://github.com/fabpot",
  9506. "type": "github"
  9507. },
  9508. {
  9509. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9510. "type": "tidelift"
  9511. }
  9512. ],
  9513. "time": "2020-09-18T08:35:10+00:00"
  9514. },
  9515. {
  9516. "name": "symfony/yaml",
  9517. "version": "v3.4.41",
  9518. "source": {
  9519. "type": "git",
  9520. "url": "https://github.com/symfony/yaml.git",
  9521. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb"
  9522. },
  9523. "dist": {
  9524. "type": "zip",
  9525. "url": "https://api.github.com/repos/symfony/yaml/zipball/7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  9526. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  9527. "shasum": ""
  9528. },
  9529. "require": {
  9530. "php": "^5.5.9|>=7.0.8",
  9531. "symfony/polyfill-ctype": "~1.8"
  9532. },
  9533. "conflict": {
  9534. "symfony/console": "<3.4"
  9535. },
  9536. "require-dev": {
  9537. "symfony/console": "~3.4|~4.0"
  9538. },
  9539. "suggest": {
  9540. "symfony/console": "For validating YAML files using the lint command"
  9541. },
  9542. "type": "library",
  9543. "extra": {
  9544. "branch-alias": {
  9545. "dev-master": "3.4-dev"
  9546. }
  9547. },
  9548. "autoload": {
  9549. "psr-4": {
  9550. "Symfony\\Component\\Yaml\\": ""
  9551. },
  9552. "exclude-from-classmap": [
  9553. "/Tests/"
  9554. ]
  9555. },
  9556. "notification-url": "https://packagist.org/downloads/",
  9557. "license": [
  9558. "MIT"
  9559. ],
  9560. "authors": [
  9561. {
  9562. "name": "Fabien Potencier",
  9563. "email": "fabien@symfony.com"
  9564. },
  9565. {
  9566. "name": "Symfony Community",
  9567. "homepage": "https://symfony.com/contributors"
  9568. }
  9569. ],
  9570. "description": "Symfony Yaml Component",
  9571. "homepage": "https://symfony.com",
  9572. "funding": [
  9573. {
  9574. "url": "https://symfony.com/sponsor",
  9575. "type": "custom"
  9576. },
  9577. {
  9578. "url": "https://github.com/fabpot",
  9579. "type": "github"
  9580. },
  9581. {
  9582. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9583. "type": "tidelift"
  9584. }
  9585. ],
  9586. "time": "2020-05-11T07:51:54+00:00"
  9587. },
  9588. {
  9589. "name": "twbs/bootstrap",
  9590. "version": "v4.5.0",
  9591. "source": {
  9592. "type": "git",
  9593. "url": "https://github.com/twbs/bootstrap.git",
  9594. "reference": "7a6da5e3e7ad7c749dde806546a35d4d4259d965"
  9595. },
  9596. "dist": {
  9597. "type": "zip",
  9598. "url": "https://api.github.com/repos/twbs/bootstrap/zipball/7a6da5e3e7ad7c749dde806546a35d4d4259d965",
  9599. "reference": "7a6da5e3e7ad7c749dde806546a35d4d4259d965",
  9600. "shasum": ""
  9601. },
  9602. "replace": {
  9603. "twitter/bootstrap": "self.version"
  9604. },
  9605. "type": "library",
  9606. "extra": {
  9607. "branch-alias": {
  9608. "dev-master": "3.3.x-dev"
  9609. }
  9610. },
  9611. "notification-url": "https://packagist.org/downloads/",
  9612. "license": [
  9613. "MIT"
  9614. ],
  9615. "authors": [
  9616. {
  9617. "name": "Mark Otto",
  9618. "email": "markdotto@gmail.com"
  9619. },
  9620. {
  9621. "name": "Jacob Thornton",
  9622. "email": "jacobthornton@gmail.com"
  9623. }
  9624. ],
  9625. "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
  9626. "homepage": "https://getbootstrap.com/",
  9627. "keywords": [
  9628. "JS",
  9629. "css",
  9630. "framework",
  9631. "front-end",
  9632. "mobile-first",
  9633. "responsive",
  9634. "sass",
  9635. "web"
  9636. ],
  9637. "funding": [
  9638. {
  9639. "url": "https://opencollective.com/bootstrap",
  9640. "type": "open_collective"
  9641. }
  9642. ],
  9643. "time": "2020-05-12T17:44:42+00:00"
  9644. },
  9645. {
  9646. "name": "twig/twig",
  9647. "version": "v1.42.5",
  9648. "source": {
  9649. "type": "git",
  9650. "url": "https://github.com/twigphp/Twig.git",
  9651. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e"
  9652. },
  9653. "dist": {
  9654. "type": "zip",
  9655. "url": "https://api.github.com/repos/twigphp/Twig/zipball/87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  9656. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  9657. "shasum": ""
  9658. },
  9659. "require": {
  9660. "php": ">=5.5.0",
  9661. "symfony/polyfill-ctype": "^1.8"
  9662. },
  9663. "require-dev": {
  9664. "psr/container": "^1.0",
  9665. "symfony/phpunit-bridge": "^4.4|^5.0"
  9666. },
  9667. "type": "library",
  9668. "extra": {
  9669. "branch-alias": {
  9670. "dev-master": "1.42-dev"
  9671. }
  9672. },
  9673. "autoload": {
  9674. "psr-0": {
  9675. "Twig_": "lib/"
  9676. },
  9677. "psr-4": {
  9678. "Twig\\": "src/"
  9679. }
  9680. },
  9681. "notification-url": "https://packagist.org/downloads/",
  9682. "license": [
  9683. "BSD-3-Clause"
  9684. ],
  9685. "authors": [
  9686. {
  9687. "name": "Fabien Potencier",
  9688. "email": "fabien@symfony.com",
  9689. "homepage": "http://fabien.potencier.org",
  9690. "role": "Lead Developer"
  9691. },
  9692. {
  9693. "name": "Twig Team",
  9694. "role": "Contributors"
  9695. },
  9696. {
  9697. "name": "Armin Ronacher",
  9698. "email": "armin.ronacher@active-4.com",
  9699. "role": "Project Founder"
  9700. }
  9701. ],
  9702. "description": "Twig, the flexible, fast, and secure template language for PHP",
  9703. "homepage": "https://twig.symfony.com",
  9704. "keywords": [
  9705. "templating"
  9706. ],
  9707. "time": "2020-02-11T05:59:23+00:00"
  9708. },
  9709. {
  9710. "name": "typo3/phar-stream-wrapper",
  9711. "version": "v3.1.4",
  9712. "source": {
  9713. "type": "git",
  9714. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  9715. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04"
  9716. },
  9717. "dist": {
  9718. "type": "zip",
  9719. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  9720. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  9721. "shasum": ""
  9722. },
  9723. "require": {
  9724. "ext-json": "*",
  9725. "php": "^7.0"
  9726. },
  9727. "require-dev": {
  9728. "ext-xdebug": "*",
  9729. "phpunit/phpunit": "^6.5"
  9730. },
  9731. "suggest": {
  9732. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  9733. },
  9734. "type": "library",
  9735. "extra": {
  9736. "branch-alias": {
  9737. "dev-master": "v3.x-dev"
  9738. }
  9739. },
  9740. "autoload": {
  9741. "psr-4": {
  9742. "TYPO3\\PharStreamWrapper\\": "src/"
  9743. }
  9744. },
  9745. "notification-url": "https://packagist.org/downloads/",
  9746. "license": [
  9747. "MIT"
  9748. ],
  9749. "description": "Interceptors for PHP's native phar:// stream handling",
  9750. "homepage": "https://typo3.org/",
  9751. "keywords": [
  9752. "phar",
  9753. "php",
  9754. "security",
  9755. "stream-wrapper"
  9756. ],
  9757. "time": "2019-12-10T11:53:27+00:00"
  9758. },
  9759. {
  9760. "name": "webflo/drupal-finder",
  9761. "version": "1.2.0",
  9762. "source": {
  9763. "type": "git",
  9764. "url": "https://github.com/webflo/drupal-finder.git",
  9765. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e"
  9766. },
  9767. "dist": {
  9768. "type": "zip",
  9769. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  9770. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  9771. "shasum": ""
  9772. },
  9773. "require": {
  9774. "ext-json": "*"
  9775. },
  9776. "require-dev": {
  9777. "mikey179/vfsstream": "^1.6",
  9778. "phpunit/phpunit": "^4.8"
  9779. },
  9780. "type": "library",
  9781. "autoload": {
  9782. "classmap": [
  9783. "src/DrupalFinder.php"
  9784. ]
  9785. },
  9786. "notification-url": "https://packagist.org/downloads/",
  9787. "license": [
  9788. "GPL-2.0+"
  9789. ],
  9790. "authors": [
  9791. {
  9792. "name": "Florian Weber",
  9793. "email": "florian@webflo.org"
  9794. }
  9795. ],
  9796. "description": "Helper class to locate a Drupal installation from a given path.",
  9797. "time": "2019-08-02T08:06:18+00:00"
  9798. },
  9799. {
  9800. "name": "webmozart/assert",
  9801. "version": "1.9.1",
  9802. "source": {
  9803. "type": "git",
  9804. "url": "https://github.com/webmozart/assert.git",
  9805. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  9806. },
  9807. "dist": {
  9808. "type": "zip",
  9809. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  9810. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  9811. "shasum": ""
  9812. },
  9813. "require": {
  9814. "php": "^5.3.3 || ^7.0 || ^8.0",
  9815. "symfony/polyfill-ctype": "^1.8"
  9816. },
  9817. "conflict": {
  9818. "phpstan/phpstan": "<0.12.20",
  9819. "vimeo/psalm": "<3.9.1"
  9820. },
  9821. "require-dev": {
  9822. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  9823. },
  9824. "type": "library",
  9825. "autoload": {
  9826. "psr-4": {
  9827. "Webmozart\\Assert\\": "src/"
  9828. }
  9829. },
  9830. "notification-url": "https://packagist.org/downloads/",
  9831. "license": [
  9832. "MIT"
  9833. ],
  9834. "authors": [
  9835. {
  9836. "name": "Bernhard Schussek",
  9837. "email": "bschussek@gmail.com"
  9838. }
  9839. ],
  9840. "description": "Assertions to validate method input/output with nice error messages.",
  9841. "keywords": [
  9842. "assert",
  9843. "check",
  9844. "validate"
  9845. ],
  9846. "time": "2020-07-08T17:02:28+00:00"
  9847. },
  9848. {
  9849. "name": "webmozart/path-util",
  9850. "version": "2.3.0",
  9851. "source": {
  9852. "type": "git",
  9853. "url": "https://github.com/webmozart/path-util.git",
  9854. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  9855. },
  9856. "dist": {
  9857. "type": "zip",
  9858. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  9859. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  9860. "shasum": ""
  9861. },
  9862. "require": {
  9863. "php": ">=5.3.3",
  9864. "webmozart/assert": "~1.0"
  9865. },
  9866. "require-dev": {
  9867. "phpunit/phpunit": "^4.6",
  9868. "sebastian/version": "^1.0.1"
  9869. },
  9870. "type": "library",
  9871. "extra": {
  9872. "branch-alias": {
  9873. "dev-master": "2.3-dev"
  9874. }
  9875. },
  9876. "autoload": {
  9877. "psr-4": {
  9878. "Webmozart\\PathUtil\\": "src/"
  9879. }
  9880. },
  9881. "notification-url": "https://packagist.org/downloads/",
  9882. "license": [
  9883. "MIT"
  9884. ],
  9885. "authors": [
  9886. {
  9887. "name": "Bernhard Schussek",
  9888. "email": "bschussek@gmail.com"
  9889. }
  9890. ],
  9891. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  9892. "time": "2015-12-17T08:42:14+00:00"
  9893. },
  9894. {
  9895. "name": "willdurand/geocoder",
  9896. "version": "4.3.0",
  9897. "source": {
  9898. "type": "git",
  9899. "url": "https://github.com/geocoder-php/php-common.git",
  9900. "reference": "199d6a853947a5051e7ff14d35849759009bad5d"
  9901. },
  9902. "dist": {
  9903. "type": "zip",
  9904. "url": "https://api.github.com/repos/geocoder-php/php-common/zipball/199d6a853947a5051e7ff14d35849759009bad5d",
  9905. "reference": "199d6a853947a5051e7ff14d35849759009bad5d",
  9906. "shasum": ""
  9907. },
  9908. "require": {
  9909. "php": "^7.2"
  9910. },
  9911. "require-dev": {
  9912. "nyholm/nsa": "^1.1",
  9913. "phpunit/phpunit": "^7.5",
  9914. "symfony/stopwatch": "~2.5"
  9915. },
  9916. "suggest": {
  9917. "symfony/stopwatch": "If you want to use the TimedGeocoder"
  9918. },
  9919. "type": "library",
  9920. "extra": {
  9921. "branch-alias": {
  9922. "dev-master": "4.1-dev"
  9923. }
  9924. },
  9925. "autoload": {
  9926. "psr-4": {
  9927. "Geocoder\\": ""
  9928. },
  9929. "exclude-from-classmap": [
  9930. "/Tests/"
  9931. ]
  9932. },
  9933. "notification-url": "https://packagist.org/downloads/",
  9934. "license": [
  9935. "MIT"
  9936. ],
  9937. "authors": [
  9938. {
  9939. "name": "William Durand",
  9940. "email": "william.durand1@gmail.com"
  9941. }
  9942. ],
  9943. "description": "Common files for PHP Geocoder",
  9944. "homepage": "http://geocoder-php.org",
  9945. "keywords": [
  9946. "abstraction",
  9947. "geocoder",
  9948. "geocoding",
  9949. "geoip"
  9950. ],
  9951. "time": "2020-07-04T13:18:10+00:00"
  9952. }
  9953. ],
  9954. "packages-dev": [],
  9955. "aliases": [],
  9956. "minimum-stability": "dev",
  9957. "stability-flags": [],
  9958. "prefer-stable": true,
  9959. "prefer-lowest": false,
  9960. "platform": [],
  9961. "platform-dev": [],
  9962. "plugin-api-version": "1.1.0"
  9963. }