composer.lock 490 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371
  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": "505269d829bb63613a29f58e327aca4a",
  8. "packages": [
  9. {
  10. "name": "alchemy/zippy",
  11. "version": "0.4.9",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/alchemy-fr/Zippy.git",
  15. "reference": "59fbeefb9a249122867ef25e53addfcce31850d7"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/alchemy-fr/Zippy/zipball/59fbeefb9a249122867ef25e53addfcce31850d7",
  20. "reference": "59fbeefb9a249122867ef25e53addfcce31850d7",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "doctrine/collections": "~1.0",
  25. "php": ">=5.5",
  26. "symfony/filesystem": "^2.0.5 || ^3.0 || ^4.0",
  27. "symfony/polyfill-mbstring": "^1.3",
  28. "symfony/process": "^2.1 || ^3.0 || ^4.0"
  29. },
  30. "require-dev": {
  31. "ext-zip": "*",
  32. "guzzle/guzzle": "~3.0",
  33. "guzzlehttp/guzzle": "^6.0",
  34. "phpunit/phpunit": "^4.0 || ^5.0",
  35. "symfony/finder": "^2.0.5 || ^3.0 || ^4.0"
  36. },
  37. "suggest": {
  38. "ext-zip": "To use the ZipExtensionAdapter",
  39. "guzzle/guzzle": "To use the GuzzleTeleporter with Guzzle 3",
  40. "guzzlehttp/guzzle": "To use the GuzzleTeleporter with Guzzle 6"
  41. },
  42. "type": "library",
  43. "extra": {
  44. "branch-alias": {
  45. "dev-master": "0.4.x-dev"
  46. }
  47. },
  48. "autoload": {
  49. "psr-4": {
  50. "Alchemy\\Zippy\\": "src/"
  51. }
  52. },
  53. "notification-url": "https://packagist.org/downloads/",
  54. "license": [
  55. "MIT"
  56. ],
  57. "authors": [
  58. {
  59. "name": "Alchemy",
  60. "email": "dev.team@alchemy.fr",
  61. "homepage": "http://www.alchemy.fr/"
  62. }
  63. ],
  64. "description": "Zippy, the archive manager companion",
  65. "keywords": [
  66. "bzip",
  67. "compression",
  68. "tar",
  69. "zip"
  70. ],
  71. "time": "2018-02-22T13:58:36+00:00"
  72. },
  73. {
  74. "name": "asm89/stack-cors",
  75. "version": "1.3.0",
  76. "source": {
  77. "type": "git",
  78. "url": "https://github.com/asm89/stack-cors.git",
  79. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08"
  80. },
  81. "dist": {
  82. "type": "zip",
  83. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/b9c31def6a83f84b4d4a40d35996d375755f0e08",
  84. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08",
  85. "shasum": ""
  86. },
  87. "require": {
  88. "php": ">=5.5.9",
  89. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  90. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  91. },
  92. "require-dev": {
  93. "phpunit/phpunit": "^5.0 || ^4.8.10",
  94. "squizlabs/php_codesniffer": "^2.3"
  95. },
  96. "type": "library",
  97. "extra": {
  98. "branch-alias": {
  99. "dev-master": "1.2-dev"
  100. }
  101. },
  102. "autoload": {
  103. "psr-4": {
  104. "Asm89\\Stack\\": "src/Asm89/Stack/"
  105. }
  106. },
  107. "notification-url": "https://packagist.org/downloads/",
  108. "license": [
  109. "MIT"
  110. ],
  111. "authors": [
  112. {
  113. "name": "Alexander",
  114. "email": "iam.asm89@gmail.com"
  115. }
  116. ],
  117. "description": "Cross-origin resource sharing library and stack middleware",
  118. "homepage": "https://github.com/asm89/stack-cors",
  119. "keywords": [
  120. "cors",
  121. "stack"
  122. ],
  123. "support": {
  124. "issues": "https://github.com/asm89/stack-cors/issues",
  125. "source": "https://github.com/asm89/stack-cors/tree/1.3.0"
  126. },
  127. "time": "2019-12-24T22:41:47+00:00"
  128. },
  129. {
  130. "name": "chi-teck/drupal-code-generator",
  131. "version": "1.33.1",
  132. "source": {
  133. "type": "git",
  134. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  135. "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388"
  136. },
  137. "dist": {
  138. "type": "zip",
  139. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/5f814e980b6f9cf1ca8c74cc9385c3d81090d388",
  140. "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388",
  141. "shasum": ""
  142. },
  143. "require": {
  144. "ext-json": "*",
  145. "php": ">=5.5.9",
  146. "symfony/console": "^3.4 || ^4.0",
  147. "symfony/filesystem": "^2.7 || ^3.4 || ^4.0",
  148. "twig/twig": "^1.41 || ^2.12"
  149. },
  150. "conflict": {
  151. "drush/drush": "< 10.3.2"
  152. },
  153. "bin": [
  154. "bin/dcg"
  155. ],
  156. "type": "library",
  157. "extra": {
  158. "branch-alias": {
  159. "dev-master": "1.x-dev"
  160. }
  161. },
  162. "autoload": {
  163. "files": [
  164. "src/bootstrap.php"
  165. ],
  166. "psr-4": {
  167. "DrupalCodeGenerator\\": "src"
  168. }
  169. },
  170. "notification-url": "https://packagist.org/downloads/",
  171. "license": [
  172. "GPL-2.0-or-later"
  173. ],
  174. "description": "Drupal code generator",
  175. "time": "2020-12-05T05:59:11+00:00"
  176. },
  177. {
  178. "name": "commerceguys/addressing",
  179. "version": "v1.1.0",
  180. "source": {
  181. "type": "git",
  182. "url": "https://github.com/commerceguys/addressing.git",
  183. "reference": "2450ca97631042faf786855db206a2e48fb7dbb7"
  184. },
  185. "dist": {
  186. "type": "zip",
  187. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/2450ca97631042faf786855db206a2e48fb7dbb7",
  188. "reference": "2450ca97631042faf786855db206a2e48fb7dbb7",
  189. "shasum": ""
  190. },
  191. "require": {
  192. "doctrine/collections": "~1.0",
  193. "php": ">=7.0.8"
  194. },
  195. "require-dev": {
  196. "mikey179/vfsstream": "1.*",
  197. "phpunit/phpunit": "^6.0",
  198. "squizlabs/php_codesniffer": "2.*",
  199. "symfony/validator": "^3.4"
  200. },
  201. "suggest": {
  202. "symfony/validator": "to validate addresses"
  203. },
  204. "type": "library",
  205. "extra": {
  206. "branch-alias": {
  207. "dev-master": "1.x-dev"
  208. }
  209. },
  210. "autoload": {
  211. "psr-4": {
  212. "CommerceGuys\\Addressing\\": "src"
  213. }
  214. },
  215. "notification-url": "https://packagist.org/downloads/",
  216. "license": [
  217. "MIT"
  218. ],
  219. "authors": [
  220. {
  221. "name": "Bojan Zivanovic"
  222. },
  223. {
  224. "name": "Damien Tournoud"
  225. }
  226. ],
  227. "description": "Addressing library powered by CLDR and Google's address data.",
  228. "keywords": [
  229. "address",
  230. "internationalization",
  231. "localization",
  232. "postal"
  233. ],
  234. "time": "2020-11-29T18:48:07+00:00"
  235. },
  236. {
  237. "name": "components/highlightjs",
  238. "version": "9.7.0",
  239. "dist": {
  240. "type": "zip",
  241. "url": "https://github.com/components/highlightjs/archive/9.7.0.zip"
  242. },
  243. "type": "drupal-library"
  244. },
  245. {
  246. "name": "composer/installers",
  247. "version": "v1.9.0",
  248. "source": {
  249. "type": "git",
  250. "url": "https://github.com/composer/installers.git",
  251. "reference": "b93bcf0fa1fccb0b7d176b0967d969691cd74cca"
  252. },
  253. "dist": {
  254. "type": "zip",
  255. "url": "https://api.github.com/repos/composer/installers/zipball/b93bcf0fa1fccb0b7d176b0967d969691cd74cca",
  256. "reference": "b93bcf0fa1fccb0b7d176b0967d969691cd74cca",
  257. "shasum": ""
  258. },
  259. "require": {
  260. "composer-plugin-api": "^1.0 || ^2.0"
  261. },
  262. "replace": {
  263. "roundcube/plugin-installer": "*",
  264. "shama/baton": "*"
  265. },
  266. "require-dev": {
  267. "composer/composer": "1.6.* || 2.0.*@dev",
  268. "composer/semver": "1.0.* || 2.0.*@dev",
  269. "phpunit/phpunit": "^4.8.36",
  270. "sebastian/comparator": "^1.2.4",
  271. "symfony/process": "^2.3"
  272. },
  273. "type": "composer-plugin",
  274. "extra": {
  275. "class": "Composer\\Installers\\Plugin",
  276. "branch-alias": {
  277. "dev-master": "1.0-dev"
  278. }
  279. },
  280. "autoload": {
  281. "psr-4": {
  282. "Composer\\Installers\\": "src/Composer/Installers"
  283. }
  284. },
  285. "notification-url": "https://packagist.org/downloads/",
  286. "license": [
  287. "MIT"
  288. ],
  289. "authors": [
  290. {
  291. "name": "Kyle Robinson Young",
  292. "email": "kyle@dontkry.com",
  293. "homepage": "https://github.com/shama"
  294. }
  295. ],
  296. "description": "A multi-framework Composer library installer",
  297. "homepage": "https://composer.github.io/installers/",
  298. "keywords": [
  299. "Craft",
  300. "Dolibarr",
  301. "Eliasis",
  302. "Hurad",
  303. "ImageCMS",
  304. "Kanboard",
  305. "Lan Management System",
  306. "MODX Evo",
  307. "MantisBT",
  308. "Mautic",
  309. "Maya",
  310. "OXID",
  311. "Plentymarkets",
  312. "Porto",
  313. "RadPHP",
  314. "SMF",
  315. "Thelia",
  316. "Whmcs",
  317. "WolfCMS",
  318. "agl",
  319. "aimeos",
  320. "annotatecms",
  321. "attogram",
  322. "bitrix",
  323. "cakephp",
  324. "chef",
  325. "cockpit",
  326. "codeigniter",
  327. "concrete5",
  328. "croogo",
  329. "dokuwiki",
  330. "drupal",
  331. "eZ Platform",
  332. "elgg",
  333. "expressionengine",
  334. "fuelphp",
  335. "grav",
  336. "installer",
  337. "itop",
  338. "joomla",
  339. "known",
  340. "kohana",
  341. "laravel",
  342. "lavalite",
  343. "lithium",
  344. "magento",
  345. "majima",
  346. "mako",
  347. "mediawiki",
  348. "modulework",
  349. "modx",
  350. "moodle",
  351. "osclass",
  352. "phpbb",
  353. "piwik",
  354. "ppi",
  355. "puppet",
  356. "pxcms",
  357. "reindex",
  358. "roundcube",
  359. "shopware",
  360. "silverstripe",
  361. "sydes",
  362. "sylius",
  363. "symfony",
  364. "typo3",
  365. "wordpress",
  366. "yawik",
  367. "zend",
  368. "zikula"
  369. ],
  370. "funding": [
  371. {
  372. "url": "https://packagist.com",
  373. "type": "custom"
  374. },
  375. {
  376. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  377. "type": "tidelift"
  378. }
  379. ],
  380. "time": "2020-04-07T06:57:05+00:00"
  381. },
  382. {
  383. "name": "composer/semver",
  384. "version": "3.2.2",
  385. "source": {
  386. "type": "git",
  387. "url": "https://github.com/composer/semver.git",
  388. "reference": "4089fddb67bcf6bf860d91b979e95be303835002"
  389. },
  390. "dist": {
  391. "type": "zip",
  392. "url": "https://api.github.com/repos/composer/semver/zipball/4089fddb67bcf6bf860d91b979e95be303835002",
  393. "reference": "4089fddb67bcf6bf860d91b979e95be303835002",
  394. "shasum": ""
  395. },
  396. "require": {
  397. "php": "^5.3.2 || ^7.0 || ^8.0"
  398. },
  399. "require-dev": {
  400. "phpstan/phpstan": "^0.12.19",
  401. "symfony/phpunit-bridge": "^4.2 || ^5"
  402. },
  403. "type": "library",
  404. "extra": {
  405. "branch-alias": {
  406. "dev-main": "3.x-dev"
  407. }
  408. },
  409. "autoload": {
  410. "psr-4": {
  411. "Composer\\Semver\\": "src"
  412. }
  413. },
  414. "notification-url": "https://packagist.org/downloads/",
  415. "license": [
  416. "MIT"
  417. ],
  418. "authors": [
  419. {
  420. "name": "Nils Adermann",
  421. "email": "naderman@naderman.de",
  422. "homepage": "http://www.naderman.de"
  423. },
  424. {
  425. "name": "Jordi Boggiano",
  426. "email": "j.boggiano@seld.be",
  427. "homepage": "http://seld.be"
  428. },
  429. {
  430. "name": "Rob Bast",
  431. "email": "rob.bast@gmail.com",
  432. "homepage": "http://robbast.nl"
  433. }
  434. ],
  435. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  436. "keywords": [
  437. "semantic",
  438. "semver",
  439. "validation",
  440. "versioning"
  441. ],
  442. "support": {
  443. "irc": "irc://irc.freenode.org/composer",
  444. "issues": "https://github.com/composer/semver/issues",
  445. "source": "https://github.com/composer/semver/tree/3.2.2"
  446. },
  447. "funding": [
  448. {
  449. "url": "https://packagist.com",
  450. "type": "custom"
  451. },
  452. {
  453. "url": "https://github.com/composer",
  454. "type": "github"
  455. },
  456. {
  457. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  458. "type": "tidelift"
  459. }
  460. ],
  461. "time": "2020-10-14T08:51:15+00:00"
  462. },
  463. {
  464. "name": "consolidation/annotated-command",
  465. "version": "4.2.4",
  466. "source": {
  467. "type": "git",
  468. "url": "https://github.com/consolidation/annotated-command.git",
  469. "reference": "ec297e05cb86557671c2d6cbb1bebba6c7ae2c60"
  470. },
  471. "dist": {
  472. "type": "zip",
  473. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/ec297e05cb86557671c2d6cbb1bebba6c7ae2c60",
  474. "reference": "ec297e05cb86557671c2d6cbb1bebba6c7ae2c60",
  475. "shasum": ""
  476. },
  477. "require": {
  478. "consolidation/output-formatters": "^4.1.1",
  479. "php": ">=7.1.3",
  480. "psr/log": "^1|^2",
  481. "symfony/console": "^4.4.8|~5.1.0",
  482. "symfony/event-dispatcher": "^4.4.8|^5",
  483. "symfony/finder": "^4.4.8|^5"
  484. },
  485. "require-dev": {
  486. "phpunit/phpunit": ">=7.5.20",
  487. "squizlabs/php_codesniffer": "^3",
  488. "yoast/phpunit-polyfills": "^0.2.0"
  489. },
  490. "type": "library",
  491. "extra": {
  492. "branch-alias": {
  493. "dev-main": "4.x-dev"
  494. }
  495. },
  496. "autoload": {
  497. "psr-4": {
  498. "Consolidation\\AnnotatedCommand\\": "src"
  499. }
  500. },
  501. "notification-url": "https://packagist.org/downloads/",
  502. "license": [
  503. "MIT"
  504. ],
  505. "authors": [
  506. {
  507. "name": "Greg Anderson",
  508. "email": "greg.1.anderson@greenknowe.org"
  509. }
  510. ],
  511. "description": "Initialize Symfony Console commands from annotated command class methods.",
  512. "time": "2020-12-10T16:56:39+00:00"
  513. },
  514. {
  515. "name": "consolidation/config",
  516. "version": "1.2.1",
  517. "source": {
  518. "type": "git",
  519. "url": "https://github.com/consolidation/config.git",
  520. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  521. },
  522. "dist": {
  523. "type": "zip",
  524. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  525. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  526. "shasum": ""
  527. },
  528. "require": {
  529. "dflydev/dot-access-data": "^1.1.0",
  530. "grasmash/expander": "^1",
  531. "php": ">=5.4.0"
  532. },
  533. "require-dev": {
  534. "g1a/composer-test-scenarios": "^3",
  535. "php-coveralls/php-coveralls": "^1",
  536. "phpunit/phpunit": "^5",
  537. "squizlabs/php_codesniffer": "2.*",
  538. "symfony/console": "^2.5|^3|^4",
  539. "symfony/yaml": "^2.8.11|^3|^4"
  540. },
  541. "suggest": {
  542. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  543. },
  544. "type": "library",
  545. "extra": {
  546. "scenarios": {
  547. "symfony4": {
  548. "require-dev": {
  549. "symfony/console": "^4.0"
  550. },
  551. "config": {
  552. "platform": {
  553. "php": "7.1.3"
  554. }
  555. }
  556. },
  557. "symfony2": {
  558. "require-dev": {
  559. "symfony/console": "^2.8",
  560. "symfony/event-dispatcher": "^2.8",
  561. "phpunit/phpunit": "^4.8.36"
  562. },
  563. "remove": [
  564. "php-coveralls/php-coveralls"
  565. ],
  566. "config": {
  567. "platform": {
  568. "php": "5.4.8"
  569. }
  570. }
  571. }
  572. },
  573. "branch-alias": {
  574. "dev-master": "1.x-dev"
  575. }
  576. },
  577. "autoload": {
  578. "psr-4": {
  579. "Consolidation\\Config\\": "src"
  580. }
  581. },
  582. "notification-url": "https://packagist.org/downloads/",
  583. "license": [
  584. "MIT"
  585. ],
  586. "authors": [
  587. {
  588. "name": "Greg Anderson",
  589. "email": "greg.1.anderson@greenknowe.org"
  590. }
  591. ],
  592. "description": "Provide configuration services for a commandline tool.",
  593. "time": "2019-03-03T19:37:04+00:00"
  594. },
  595. {
  596. "name": "consolidation/filter-via-dot-access-data",
  597. "version": "1.0.0",
  598. "source": {
  599. "type": "git",
  600. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  601. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  602. },
  603. "dist": {
  604. "type": "zip",
  605. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  606. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  607. "shasum": ""
  608. },
  609. "require": {
  610. "dflydev/dot-access-data": "^1.1.0",
  611. "php": ">=5.5.0"
  612. },
  613. "require-dev": {
  614. "consolidation/robo": "^1.2.3",
  615. "g1a/composer-test-scenarios": "^3",
  616. "knplabs/github-api": "^2.7",
  617. "php-coveralls/php-coveralls": "^1",
  618. "php-http/guzzle6-adapter": "^1.1",
  619. "phpunit/phpunit": "^5",
  620. "squizlabs/php_codesniffer": "^2.8",
  621. "symfony/console": "^2.8|^3|^4"
  622. },
  623. "type": "library",
  624. "extra": {
  625. "scenarios": {
  626. "phpunit5": {
  627. "require-dev": {
  628. "phpunit/phpunit": "^5.7.27"
  629. },
  630. "remove": [
  631. "php-coveralls/php-coveralls"
  632. ],
  633. "config": {
  634. "platform": {
  635. "php": "5.6.33"
  636. }
  637. }
  638. }
  639. },
  640. "branch-alias": {
  641. "dev-master": "1.x-dev"
  642. }
  643. },
  644. "autoload": {
  645. "psr-4": {
  646. "Consolidation\\Filter\\": "src"
  647. }
  648. },
  649. "notification-url": "https://packagist.org/downloads/",
  650. "license": [
  651. "MIT"
  652. ],
  653. "authors": [
  654. {
  655. "name": "Greg Anderson",
  656. "email": "greg.1.anderson@greenknowe.org"
  657. }
  658. ],
  659. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  660. "time": "2019-01-18T06:05:07+00:00"
  661. },
  662. {
  663. "name": "consolidation/log",
  664. "version": "2.0.2",
  665. "source": {
  666. "type": "git",
  667. "url": "https://github.com/consolidation/log.git",
  668. "reference": "82a2aaaa621a7b976e50a745a8d249d5085ee2b1"
  669. },
  670. "dist": {
  671. "type": "zip",
  672. "url": "https://api.github.com/repos/consolidation/log/zipball/82a2aaaa621a7b976e50a745a8d249d5085ee2b1",
  673. "reference": "82a2aaaa621a7b976e50a745a8d249d5085ee2b1",
  674. "shasum": ""
  675. },
  676. "require": {
  677. "php": ">=7.1.3",
  678. "psr/log": "^1.0",
  679. "symfony/console": "^4|^5"
  680. },
  681. "require-dev": {
  682. "phpunit/phpunit": ">=7.5.20",
  683. "squizlabs/php_codesniffer": "^3",
  684. "yoast/phpunit-polyfills": "^0.2.0"
  685. },
  686. "type": "library",
  687. "extra": {
  688. "branch-alias": {
  689. "dev-main": "2.x-dev"
  690. }
  691. },
  692. "autoload": {
  693. "psr-4": {
  694. "Consolidation\\Log\\": "src"
  695. }
  696. },
  697. "notification-url": "https://packagist.org/downloads/",
  698. "license": [
  699. "MIT"
  700. ],
  701. "authors": [
  702. {
  703. "name": "Greg Anderson",
  704. "email": "greg.1.anderson@greenknowe.org"
  705. }
  706. ],
  707. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  708. "time": "2020-12-10T16:26:23+00:00"
  709. },
  710. {
  711. "name": "consolidation/output-formatters",
  712. "version": "4.1.2",
  713. "source": {
  714. "type": "git",
  715. "url": "https://github.com/consolidation/output-formatters.git",
  716. "reference": "5821e6ae076bf690058a4de6c94dce97398a69c9"
  717. },
  718. "dist": {
  719. "type": "zip",
  720. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/5821e6ae076bf690058a4de6c94dce97398a69c9",
  721. "reference": "5821e6ae076bf690058a4de6c94dce97398a69c9",
  722. "shasum": ""
  723. },
  724. "require": {
  725. "dflydev/dot-access-data": "^1.1.0",
  726. "php": ">=7.1.3",
  727. "symfony/console": "^4|^5",
  728. "symfony/finder": "^4|^5"
  729. },
  730. "require-dev": {
  731. "php-coveralls/php-coveralls": "^2.4.2",
  732. "phpunit/phpunit": ">=7",
  733. "squizlabs/php_codesniffer": "^3",
  734. "symfony/var-dumper": "^4",
  735. "symfony/yaml": "^4",
  736. "yoast/phpunit-polyfills": "^0.2.0"
  737. },
  738. "suggest": {
  739. "symfony/var-dumper": "For using the var_dump formatter"
  740. },
  741. "type": "library",
  742. "extra": {
  743. "branch-alias": {
  744. "dev-main": "4.x-dev"
  745. }
  746. },
  747. "autoload": {
  748. "psr-4": {
  749. "Consolidation\\OutputFormatters\\": "src"
  750. }
  751. },
  752. "notification-url": "https://packagist.org/downloads/",
  753. "license": [
  754. "MIT"
  755. ],
  756. "authors": [
  757. {
  758. "name": "Greg Anderson",
  759. "email": "greg.1.anderson@greenknowe.org"
  760. }
  761. ],
  762. "description": "Format text by applying transformations provided by plug-in formatters.",
  763. "time": "2020-12-12T19:04:59+00:00"
  764. },
  765. {
  766. "name": "consolidation/robo",
  767. "version": "2.2.1",
  768. "source": {
  769. "type": "git",
  770. "url": "https://github.com/consolidation/Robo.git",
  771. "reference": "1a7c652371615fd72ff05380ffe6ce263eb31eb3"
  772. },
  773. "dist": {
  774. "type": "zip",
  775. "url": "https://api.github.com/repos/consolidation/Robo/zipball/1a7c652371615fd72ff05380ffe6ce263eb31eb3",
  776. "reference": "1a7c652371615fd72ff05380ffe6ce263eb31eb3",
  777. "shasum": ""
  778. },
  779. "require": {
  780. "consolidation/annotated-command": "^4.2.1",
  781. "consolidation/config": "^1.2.1|^2",
  782. "consolidation/log": "^1.1.1|^2.0.1",
  783. "consolidation/output-formatters": "^4.1.1",
  784. "consolidation/self-update": "^1.2",
  785. "league/container": "^2.4.1",
  786. "php": ">=7.1.3",
  787. "symfony/console": "^4.4.11|^5",
  788. "symfony/event-dispatcher": "^4.4.11|^5",
  789. "symfony/filesystem": "^4.4.11|^5",
  790. "symfony/finder": "^4.4.11|^5",
  791. "symfony/process": "^4.4.11|^5"
  792. },
  793. "conflict": {
  794. "codegyre/robo": "*"
  795. },
  796. "require-dev": {
  797. "g1a/composer-test-scenarios": "^3",
  798. "natxet/cssmin": "3.0.4",
  799. "patchwork/jsqueeze": "^2",
  800. "pear/archive_tar": "^1.4.4",
  801. "php-coveralls/php-coveralls": "^2.2",
  802. "phpdocumentor/reflection-docblock": "^4.3.2",
  803. "phpunit/phpunit": "^6.5.14",
  804. "squizlabs/php_codesniffer": "^3"
  805. },
  806. "suggest": {
  807. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  808. "natxet/cssmin": "For minifying CSS files in taskMinify",
  809. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  810. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  811. },
  812. "bin": [
  813. "robo"
  814. ],
  815. "type": "library",
  816. "extra": {
  817. "scenarios": {
  818. "symfony4": {
  819. "require": {
  820. "symfony/console": "^4.4.11",
  821. "symfony/event-dispatcher": "^4.4.11",
  822. "symfony/filesystem": "^4.4.11",
  823. "symfony/finder": "^4.4.11",
  824. "symfony/process": "^4.4.11",
  825. "phpunit/phpunit": "^6",
  826. "nikic/php-parser": "^2"
  827. },
  828. "remove": [
  829. "codeception/phpunit-wrapper"
  830. ],
  831. "config": {
  832. "platform": {
  833. "php": "7.1.3"
  834. }
  835. }
  836. }
  837. },
  838. "branch-alias": {
  839. "dev-master": "2.x-dev",
  840. "dev-main": "2.x-dev"
  841. }
  842. },
  843. "autoload": {
  844. "psr-4": {
  845. "Robo\\": "src"
  846. }
  847. },
  848. "notification-url": "https://packagist.org/downloads/",
  849. "license": [
  850. "MIT"
  851. ],
  852. "authors": [
  853. {
  854. "name": "Davert",
  855. "email": "davert.php@resend.cc"
  856. }
  857. ],
  858. "description": "Modern task runner",
  859. "time": "2020-09-08T16:23:18+00:00"
  860. },
  861. {
  862. "name": "consolidation/self-update",
  863. "version": "1.2.0",
  864. "source": {
  865. "type": "git",
  866. "url": "https://github.com/consolidation/self-update.git",
  867. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4"
  868. },
  869. "dist": {
  870. "type": "zip",
  871. "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4",
  872. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4",
  873. "shasum": ""
  874. },
  875. "require": {
  876. "php": ">=5.5.0",
  877. "symfony/console": "^2.8|^3|^4|^5",
  878. "symfony/filesystem": "^2.5|^3|^4|^5"
  879. },
  880. "bin": [
  881. "scripts/release"
  882. ],
  883. "type": "library",
  884. "extra": {
  885. "branch-alias": {
  886. "dev-master": "1.x-dev"
  887. }
  888. },
  889. "autoload": {
  890. "psr-4": {
  891. "SelfUpdate\\": "src"
  892. }
  893. },
  894. "notification-url": "https://packagist.org/downloads/",
  895. "license": [
  896. "MIT"
  897. ],
  898. "authors": [
  899. {
  900. "name": "Alexander Menk",
  901. "email": "menk@mestrona.net"
  902. },
  903. {
  904. "name": "Greg Anderson",
  905. "email": "greg.1.anderson@greenknowe.org"
  906. }
  907. ],
  908. "description": "Provides a self:update command for Symfony Console applications.",
  909. "time": "2020-04-13T02:49:20+00:00"
  910. },
  911. {
  912. "name": "consolidation/site-alias",
  913. "version": "3.0.1",
  914. "source": {
  915. "type": "git",
  916. "url": "https://github.com/consolidation/site-alias.git",
  917. "reference": "fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26"
  918. },
  919. "dist": {
  920. "type": "zip",
  921. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26",
  922. "reference": "fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26",
  923. "shasum": ""
  924. },
  925. "require": {
  926. "consolidation/config": "^1.2.1|^2",
  927. "php": ">=5.5.0"
  928. },
  929. "require-dev": {
  930. "consolidation/robo": "^1.2.3|^2",
  931. "g1a/composer-test-scenarios": "^3",
  932. "knplabs/github-api": "^2.7",
  933. "php-coveralls/php-coveralls": "^2.2",
  934. "php-http/guzzle6-adapter": "^1.1",
  935. "phpunit/phpunit": "^6",
  936. "squizlabs/php_codesniffer": "^2.8",
  937. "symfony/yaml": "~2.3|^3|^4.4|^5"
  938. },
  939. "type": "library",
  940. "extra": {
  941. "scenarios": {
  942. "phpunit5": {
  943. "require-dev": {
  944. "phpunit/phpunit": "^5.7.27"
  945. },
  946. "remove": [
  947. "php-coveralls/php-coveralls"
  948. ],
  949. "config": {
  950. "platform": {
  951. "php": "5.6.33"
  952. }
  953. }
  954. }
  955. },
  956. "branch-alias": {
  957. "dev-master": "3.x-dev"
  958. }
  959. },
  960. "autoload": {
  961. "psr-4": {
  962. "Consolidation\\SiteAlias\\": "src"
  963. }
  964. },
  965. "notification-url": "https://packagist.org/downloads/",
  966. "license": [
  967. "MIT"
  968. ],
  969. "authors": [
  970. {
  971. "name": "Greg Anderson",
  972. "email": "greg.1.anderson@greenknowe.org"
  973. },
  974. {
  975. "name": "Moshe Weitzman",
  976. "email": "weitzman@tejasa.com"
  977. }
  978. ],
  979. "description": "Manage alias records for local and remote sites.",
  980. "time": "2020-05-28T00:33:41+00:00"
  981. },
  982. {
  983. "name": "consolidation/site-process",
  984. "version": "4.0.0",
  985. "source": {
  986. "type": "git",
  987. "url": "https://github.com/consolidation/site-process.git",
  988. "reference": "ad86475eb3fe73490eb1b6ff2e74ee0f09952e9d"
  989. },
  990. "dist": {
  991. "type": "zip",
  992. "url": "https://api.github.com/repos/consolidation/site-process/zipball/ad86475eb3fe73490eb1b6ff2e74ee0f09952e9d",
  993. "reference": "ad86475eb3fe73490eb1b6ff2e74ee0f09952e9d",
  994. "shasum": ""
  995. },
  996. "require": {
  997. "consolidation/config": "^1.2.1|^2",
  998. "consolidation/site-alias": "^3",
  999. "php": ">=7.1.3",
  1000. "symfony/process": "^4.3.4"
  1001. },
  1002. "require-dev": {
  1003. "consolidation/robo": "^1.4.10|^2",
  1004. "g1a/composer-test-scenarios": "^3.0.4",
  1005. "knplabs/github-api": "^2.7",
  1006. "php-coveralls/php-coveralls": "^2.2",
  1007. "php-http/guzzle6-adapter": "^1.1",
  1008. "phpunit/phpunit": "^6.5.14",
  1009. "squizlabs/php_codesniffer": "^2.9.2"
  1010. },
  1011. "type": "library",
  1012. "extra": {
  1013. "scenarios": {
  1014. "symfony4": {
  1015. "require": {
  1016. "symfony/console": "^4.4.8",
  1017. "symfony/event-dispatcher": "^4.4.8",
  1018. "symfony/filesystem": "^4.4.8",
  1019. "symfony/finder": "^4.4.8"
  1020. },
  1021. "config": {
  1022. "platform": {
  1023. "php": "7.1.3"
  1024. }
  1025. }
  1026. }
  1027. },
  1028. "branch-alias": {
  1029. "dev-master": "4.x-dev"
  1030. }
  1031. },
  1032. "autoload": {
  1033. "psr-4": {
  1034. "Consolidation\\SiteProcess\\": "src"
  1035. }
  1036. },
  1037. "notification-url": "https://packagist.org/downloads/",
  1038. "license": [
  1039. "MIT"
  1040. ],
  1041. "authors": [
  1042. {
  1043. "name": "Greg Anderson",
  1044. "email": "greg.1.anderson@greenknowe.org"
  1045. },
  1046. {
  1047. "name": "Moshe Weitzman",
  1048. "email": "weitzman@tejasa.com"
  1049. }
  1050. ],
  1051. "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.",
  1052. "time": "2020-05-28T00:05:34+00:00"
  1053. },
  1054. {
  1055. "name": "container-interop/container-interop",
  1056. "version": "1.2.0",
  1057. "source": {
  1058. "type": "git",
  1059. "url": "https://github.com/container-interop/container-interop.git",
  1060. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  1061. },
  1062. "dist": {
  1063. "type": "zip",
  1064. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1065. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1066. "shasum": ""
  1067. },
  1068. "require": {
  1069. "psr/container": "^1.0"
  1070. },
  1071. "type": "library",
  1072. "autoload": {
  1073. "psr-4": {
  1074. "Interop\\Container\\": "src/Interop/Container/"
  1075. }
  1076. },
  1077. "notification-url": "https://packagist.org/downloads/",
  1078. "license": [
  1079. "MIT"
  1080. ],
  1081. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  1082. "homepage": "https://github.com/container-interop/container-interop",
  1083. "abandoned": "psr/container",
  1084. "time": "2017-02-14T19:40:03+00:00"
  1085. },
  1086. {
  1087. "name": "cweagans/composer-patches",
  1088. "version": "1.7.0",
  1089. "source": {
  1090. "type": "git",
  1091. "url": "https://github.com/cweagans/composer-patches.git",
  1092. "reference": "ae02121445ad75f4eaff800cc532b5e6233e2ddf"
  1093. },
  1094. "dist": {
  1095. "type": "zip",
  1096. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/ae02121445ad75f4eaff800cc532b5e6233e2ddf",
  1097. "reference": "ae02121445ad75f4eaff800cc532b5e6233e2ddf",
  1098. "shasum": ""
  1099. },
  1100. "require": {
  1101. "composer-plugin-api": "^1.0 || ^2.0",
  1102. "php": ">=5.3.0"
  1103. },
  1104. "require-dev": {
  1105. "composer/composer": "~1.0 || ~2.0",
  1106. "phpunit/phpunit": "~4.6"
  1107. },
  1108. "type": "composer-plugin",
  1109. "extra": {
  1110. "class": "cweagans\\Composer\\Patches"
  1111. },
  1112. "autoload": {
  1113. "psr-4": {
  1114. "cweagans\\Composer\\": "src"
  1115. }
  1116. },
  1117. "notification-url": "https://packagist.org/downloads/",
  1118. "license": [
  1119. "BSD-3-Clause"
  1120. ],
  1121. "authors": [
  1122. {
  1123. "name": "Cameron Eagans",
  1124. "email": "me@cweagans.net"
  1125. }
  1126. ],
  1127. "description": "Provides a way to patch Composer packages.",
  1128. "time": "2020-09-30T17:56:20+00:00"
  1129. },
  1130. {
  1131. "name": "d3/d3",
  1132. "version": "v3.5.17",
  1133. "dist": {
  1134. "type": "zip",
  1135. "url": "https://github.com/d3/d3/archive/v3.5.17.zip"
  1136. },
  1137. "type": "drupal-library"
  1138. },
  1139. {
  1140. "name": "dflydev/dot-access-configuration",
  1141. "version": "v1.0.3",
  1142. "source": {
  1143. "type": "git",
  1144. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  1145. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  1146. },
  1147. "dist": {
  1148. "type": "zip",
  1149. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1150. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1151. "shasum": ""
  1152. },
  1153. "require": {
  1154. "dflydev/dot-access-data": "1.*",
  1155. "dflydev/placeholder-resolver": "1.*",
  1156. "php": ">=5.3.2"
  1157. },
  1158. "require-dev": {
  1159. "symfony/yaml": "~2.1"
  1160. },
  1161. "suggest": {
  1162. "symfony/yaml": "Required for using the YAML Configuration Builders"
  1163. },
  1164. "type": "library",
  1165. "extra": {
  1166. "branch-alias": {
  1167. "dev-master": "1.0-dev"
  1168. }
  1169. },
  1170. "autoload": {
  1171. "psr-0": {
  1172. "Dflydev\\DotAccessConfiguration": "src"
  1173. }
  1174. },
  1175. "notification-url": "https://packagist.org/downloads/",
  1176. "license": [
  1177. "MIT"
  1178. ],
  1179. "authors": [
  1180. {
  1181. "name": "Dragonfly Development Inc.",
  1182. "email": "info@dflydev.com",
  1183. "homepage": "http://dflydev.com"
  1184. },
  1185. {
  1186. "name": "Beau Simensen",
  1187. "email": "beau@dflydev.com",
  1188. "homepage": "http://beausimensen.com"
  1189. }
  1190. ],
  1191. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  1192. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  1193. "keywords": [
  1194. "config",
  1195. "configuration"
  1196. ],
  1197. "time": "2018-09-08T23:00:17+00:00"
  1198. },
  1199. {
  1200. "name": "dflydev/dot-access-data",
  1201. "version": "v1.1.0",
  1202. "source": {
  1203. "type": "git",
  1204. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1205. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1206. },
  1207. "dist": {
  1208. "type": "zip",
  1209. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1210. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1211. "shasum": ""
  1212. },
  1213. "require": {
  1214. "php": ">=5.3.2"
  1215. },
  1216. "type": "library",
  1217. "extra": {
  1218. "branch-alias": {
  1219. "dev-master": "1.0-dev"
  1220. }
  1221. },
  1222. "autoload": {
  1223. "psr-0": {
  1224. "Dflydev\\DotAccessData": "src"
  1225. }
  1226. },
  1227. "notification-url": "https://packagist.org/downloads/",
  1228. "license": [
  1229. "MIT"
  1230. ],
  1231. "authors": [
  1232. {
  1233. "name": "Dragonfly Development Inc.",
  1234. "email": "info@dflydev.com",
  1235. "homepage": "http://dflydev.com"
  1236. },
  1237. {
  1238. "name": "Beau Simensen",
  1239. "email": "beau@dflydev.com",
  1240. "homepage": "http://beausimensen.com"
  1241. },
  1242. {
  1243. "name": "Carlos Frutos",
  1244. "email": "carlos@kiwing.it",
  1245. "homepage": "https://github.com/cfrutos"
  1246. }
  1247. ],
  1248. "description": "Given a deep data structure, access data by dot notation.",
  1249. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1250. "keywords": [
  1251. "access",
  1252. "data",
  1253. "dot",
  1254. "notation"
  1255. ],
  1256. "time": "2017-01-20T21:14:22+00:00"
  1257. },
  1258. {
  1259. "name": "dflydev/placeholder-resolver",
  1260. "version": "v1.0.2",
  1261. "source": {
  1262. "type": "git",
  1263. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1264. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  1265. },
  1266. "dist": {
  1267. "type": "zip",
  1268. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1269. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1270. "shasum": ""
  1271. },
  1272. "require": {
  1273. "php": ">=5.3.2"
  1274. },
  1275. "type": "library",
  1276. "extra": {
  1277. "branch-alias": {
  1278. "dev-master": "1.0-dev"
  1279. }
  1280. },
  1281. "autoload": {
  1282. "psr-0": {
  1283. "Dflydev\\PlaceholderResolver": "src"
  1284. }
  1285. },
  1286. "notification-url": "https://packagist.org/downloads/",
  1287. "license": [
  1288. "MIT"
  1289. ],
  1290. "authors": [
  1291. {
  1292. "name": "Dragonfly Development Inc.",
  1293. "email": "info@dflydev.com",
  1294. "homepage": "http://dflydev.com"
  1295. },
  1296. {
  1297. "name": "Beau Simensen",
  1298. "email": "beau@dflydev.com",
  1299. "homepage": "http://beausimensen.com"
  1300. }
  1301. ],
  1302. "description": "Given a data source representing key => value pairs, resolve placeholders like ${foo.bar} to the value associated with the 'foo.bar' key in the data source.",
  1303. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1304. "keywords": [
  1305. "placeholder",
  1306. "resolver"
  1307. ],
  1308. "time": "2012-10-28T21:08:28+00:00"
  1309. },
  1310. {
  1311. "name": "dnoegel/php-xdg-base-dir",
  1312. "version": "v0.1.1",
  1313. "source": {
  1314. "type": "git",
  1315. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1316. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  1317. },
  1318. "dist": {
  1319. "type": "zip",
  1320. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1321. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1322. "shasum": ""
  1323. },
  1324. "require": {
  1325. "php": ">=5.3.2"
  1326. },
  1327. "require-dev": {
  1328. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  1329. },
  1330. "type": "library",
  1331. "autoload": {
  1332. "psr-4": {
  1333. "XdgBaseDir\\": "src/"
  1334. }
  1335. },
  1336. "notification-url": "https://packagist.org/downloads/",
  1337. "license": [
  1338. "MIT"
  1339. ],
  1340. "description": "implementation of xdg base directory specification for php",
  1341. "time": "2019-12-04T15:06:13+00:00"
  1342. },
  1343. {
  1344. "name": "doctrine/annotations",
  1345. "version": "1.11.1",
  1346. "source": {
  1347. "type": "git",
  1348. "url": "https://github.com/doctrine/annotations.git",
  1349. "reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad"
  1350. },
  1351. "dist": {
  1352. "type": "zip",
  1353. "url": "https://api.github.com/repos/doctrine/annotations/zipball/ce77a7ba1770462cd705a91a151b6c3746f9c6ad",
  1354. "reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad",
  1355. "shasum": ""
  1356. },
  1357. "require": {
  1358. "doctrine/lexer": "1.*",
  1359. "ext-tokenizer": "*",
  1360. "php": "^7.1 || ^8.0"
  1361. },
  1362. "require-dev": {
  1363. "doctrine/cache": "1.*",
  1364. "doctrine/coding-standard": "^6.0 || ^8.1",
  1365. "phpstan/phpstan": "^0.12.20",
  1366. "phpunit/phpunit": "^7.5 || ^9.1.5"
  1367. },
  1368. "type": "library",
  1369. "extra": {
  1370. "branch-alias": {
  1371. "dev-master": "1.11.x-dev"
  1372. }
  1373. },
  1374. "autoload": {
  1375. "psr-4": {
  1376. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1377. }
  1378. },
  1379. "notification-url": "https://packagist.org/downloads/",
  1380. "license": [
  1381. "MIT"
  1382. ],
  1383. "authors": [
  1384. {
  1385. "name": "Guilherme Blanco",
  1386. "email": "guilhermeblanco@gmail.com"
  1387. },
  1388. {
  1389. "name": "Roman Borschel",
  1390. "email": "roman@code-factory.org"
  1391. },
  1392. {
  1393. "name": "Benjamin Eberlei",
  1394. "email": "kontakt@beberlei.de"
  1395. },
  1396. {
  1397. "name": "Jonathan Wage",
  1398. "email": "jonwage@gmail.com"
  1399. },
  1400. {
  1401. "name": "Johannes Schmitt",
  1402. "email": "schmittjoh@gmail.com"
  1403. }
  1404. ],
  1405. "description": "Docblock Annotations Parser",
  1406. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1407. "keywords": [
  1408. "annotations",
  1409. "docblock",
  1410. "parser"
  1411. ],
  1412. "support": {
  1413. "issues": "https://github.com/doctrine/annotations/issues",
  1414. "source": "https://github.com/doctrine/annotations/tree/1.11.1"
  1415. },
  1416. "time": "2020-10-26T10:28:16+00:00"
  1417. },
  1418. {
  1419. "name": "doctrine/cache",
  1420. "version": "1.11.3",
  1421. "source": {
  1422. "type": "git",
  1423. "url": "https://github.com/doctrine/cache.git",
  1424. "reference": "3bb5588cec00a0268829cc4a518490df6741af9d"
  1425. },
  1426. "dist": {
  1427. "type": "zip",
  1428. "url": "https://api.github.com/repos/doctrine/cache/zipball/3bb5588cec00a0268829cc4a518490df6741af9d",
  1429. "reference": "3bb5588cec00a0268829cc4a518490df6741af9d",
  1430. "shasum": ""
  1431. },
  1432. "require": {
  1433. "php": "~7.1 || ^8.0"
  1434. },
  1435. "conflict": {
  1436. "doctrine/common": ">2.2,<2.4",
  1437. "psr/cache": ">=3"
  1438. },
  1439. "require-dev": {
  1440. "alcaeus/mongo-php-adapter": "^1.1",
  1441. "cache/integration-tests": "dev-master",
  1442. "doctrine/coding-standard": "^8.0",
  1443. "mongodb/mongodb": "^1.1",
  1444. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1445. "predis/predis": "~1.0",
  1446. "psr/cache": "^1.0 || ^2.0",
  1447. "symfony/cache": "^4.4 || ^5.2"
  1448. },
  1449. "suggest": {
  1450. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  1451. },
  1452. "type": "library",
  1453. "autoload": {
  1454. "psr-4": {
  1455. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1456. }
  1457. },
  1458. "notification-url": "https://packagist.org/downloads/",
  1459. "license": [
  1460. "MIT"
  1461. ],
  1462. "authors": [
  1463. {
  1464. "name": "Guilherme Blanco",
  1465. "email": "guilhermeblanco@gmail.com"
  1466. },
  1467. {
  1468. "name": "Roman Borschel",
  1469. "email": "roman@code-factory.org"
  1470. },
  1471. {
  1472. "name": "Benjamin Eberlei",
  1473. "email": "kontakt@beberlei.de"
  1474. },
  1475. {
  1476. "name": "Jonathan Wage",
  1477. "email": "jonwage@gmail.com"
  1478. },
  1479. {
  1480. "name": "Johannes Schmitt",
  1481. "email": "schmittjoh@gmail.com"
  1482. }
  1483. ],
  1484. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  1485. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  1486. "keywords": [
  1487. "abstraction",
  1488. "apcu",
  1489. "cache",
  1490. "caching",
  1491. "couchdb",
  1492. "memcached",
  1493. "php",
  1494. "redis",
  1495. "xcache"
  1496. ],
  1497. "support": {
  1498. "issues": "https://github.com/doctrine/cache/issues",
  1499. "source": "https://github.com/doctrine/cache/tree/1.11.3"
  1500. },
  1501. "funding": [
  1502. {
  1503. "url": "https://www.doctrine-project.org/sponsorship.html",
  1504. "type": "custom"
  1505. },
  1506. {
  1507. "url": "https://www.patreon.com/phpdoctrine",
  1508. "type": "patreon"
  1509. },
  1510. {
  1511. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  1512. "type": "tidelift"
  1513. }
  1514. ],
  1515. "time": "2021-05-25T09:01:55+00:00"
  1516. },
  1517. {
  1518. "name": "doctrine/collections",
  1519. "version": "1.6.7",
  1520. "source": {
  1521. "type": "git",
  1522. "url": "https://github.com/doctrine/collections.git",
  1523. "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a"
  1524. },
  1525. "dist": {
  1526. "type": "zip",
  1527. "url": "https://api.github.com/repos/doctrine/collections/zipball/55f8b799269a1a472457bd1a41b4f379d4cfba4a",
  1528. "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a",
  1529. "shasum": ""
  1530. },
  1531. "require": {
  1532. "php": "^7.1.3 || ^8.0"
  1533. },
  1534. "require-dev": {
  1535. "doctrine/coding-standard": "^6.0",
  1536. "phpstan/phpstan-shim": "^0.9.2",
  1537. "phpunit/phpunit": "^7.0",
  1538. "vimeo/psalm": "^3.8.1"
  1539. },
  1540. "type": "library",
  1541. "autoload": {
  1542. "psr-4": {
  1543. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  1544. }
  1545. },
  1546. "notification-url": "https://packagist.org/downloads/",
  1547. "license": [
  1548. "MIT"
  1549. ],
  1550. "authors": [
  1551. {
  1552. "name": "Guilherme Blanco",
  1553. "email": "guilhermeblanco@gmail.com"
  1554. },
  1555. {
  1556. "name": "Roman Borschel",
  1557. "email": "roman@code-factory.org"
  1558. },
  1559. {
  1560. "name": "Benjamin Eberlei",
  1561. "email": "kontakt@beberlei.de"
  1562. },
  1563. {
  1564. "name": "Jonathan Wage",
  1565. "email": "jonwage@gmail.com"
  1566. },
  1567. {
  1568. "name": "Johannes Schmitt",
  1569. "email": "schmittjoh@gmail.com"
  1570. }
  1571. ],
  1572. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  1573. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  1574. "keywords": [
  1575. "array",
  1576. "collections",
  1577. "iterators",
  1578. "php"
  1579. ],
  1580. "support": {
  1581. "issues": "https://github.com/doctrine/collections/issues",
  1582. "source": "https://github.com/doctrine/collections/tree/1.6.7"
  1583. },
  1584. "time": "2020-07-27T17:53:49+00:00"
  1585. },
  1586. {
  1587. "name": "doctrine/common",
  1588. "version": "2.13.3",
  1589. "source": {
  1590. "type": "git",
  1591. "url": "https://github.com/doctrine/common.git",
  1592. "reference": "f3812c026e557892c34ef37f6ab808a6b567da7f"
  1593. },
  1594. "dist": {
  1595. "type": "zip",
  1596. "url": "https://api.github.com/repos/doctrine/common/zipball/f3812c026e557892c34ef37f6ab808a6b567da7f",
  1597. "reference": "f3812c026e557892c34ef37f6ab808a6b567da7f",
  1598. "shasum": ""
  1599. },
  1600. "require": {
  1601. "doctrine/annotations": "^1.0",
  1602. "doctrine/cache": "^1.0",
  1603. "doctrine/collections": "^1.0",
  1604. "doctrine/event-manager": "^1.0",
  1605. "doctrine/inflector": "^1.0",
  1606. "doctrine/lexer": "^1.0",
  1607. "doctrine/persistence": "^1.3.3",
  1608. "doctrine/reflection": "^1.0",
  1609. "php": "^7.1 || ^8.0"
  1610. },
  1611. "require-dev": {
  1612. "doctrine/coding-standard": "^1.0",
  1613. "phpstan/phpstan": "^0.11",
  1614. "phpstan/phpstan-phpunit": "^0.11",
  1615. "phpunit/phpunit": "^7.0",
  1616. "squizlabs/php_codesniffer": "^3.0",
  1617. "symfony/phpunit-bridge": "^4.0.5"
  1618. },
  1619. "type": "library",
  1620. "extra": {
  1621. "branch-alias": {
  1622. "dev-master": "2.11.x-dev"
  1623. }
  1624. },
  1625. "autoload": {
  1626. "psr-4": {
  1627. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1628. }
  1629. },
  1630. "notification-url": "https://packagist.org/downloads/",
  1631. "license": [
  1632. "MIT"
  1633. ],
  1634. "authors": [
  1635. {
  1636. "name": "Guilherme Blanco",
  1637. "email": "guilhermeblanco@gmail.com"
  1638. },
  1639. {
  1640. "name": "Roman Borschel",
  1641. "email": "roman@code-factory.org"
  1642. },
  1643. {
  1644. "name": "Benjamin Eberlei",
  1645. "email": "kontakt@beberlei.de"
  1646. },
  1647. {
  1648. "name": "Jonathan Wage",
  1649. "email": "jonwage@gmail.com"
  1650. },
  1651. {
  1652. "name": "Johannes Schmitt",
  1653. "email": "schmittjoh@gmail.com"
  1654. },
  1655. {
  1656. "name": "Marco Pivetta",
  1657. "email": "ocramius@gmail.com"
  1658. }
  1659. ],
  1660. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, persistence interfaces, proxies, event system and much more.",
  1661. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1662. "keywords": [
  1663. "common",
  1664. "doctrine",
  1665. "php"
  1666. ],
  1667. "support": {
  1668. "issues": "https://github.com/doctrine/common/issues",
  1669. "source": "https://github.com/doctrine/common/tree/2.13.x"
  1670. },
  1671. "funding": [
  1672. {
  1673. "url": "https://www.doctrine-project.org/sponsorship.html",
  1674. "type": "custom"
  1675. },
  1676. {
  1677. "url": "https://www.patreon.com/phpdoctrine",
  1678. "type": "patreon"
  1679. },
  1680. {
  1681. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1682. "type": "tidelift"
  1683. }
  1684. ],
  1685. "time": "2020-06-05T16:46:05+00:00"
  1686. },
  1687. {
  1688. "name": "doctrine/event-manager",
  1689. "version": "1.1.1",
  1690. "source": {
  1691. "type": "git",
  1692. "url": "https://github.com/doctrine/event-manager.git",
  1693. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  1694. },
  1695. "dist": {
  1696. "type": "zip",
  1697. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1698. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1699. "shasum": ""
  1700. },
  1701. "require": {
  1702. "php": "^7.1 || ^8.0"
  1703. },
  1704. "conflict": {
  1705. "doctrine/common": "<2.9@dev"
  1706. },
  1707. "require-dev": {
  1708. "doctrine/coding-standard": "^6.0",
  1709. "phpunit/phpunit": "^7.0"
  1710. },
  1711. "type": "library",
  1712. "extra": {
  1713. "branch-alias": {
  1714. "dev-master": "1.0.x-dev"
  1715. }
  1716. },
  1717. "autoload": {
  1718. "psr-4": {
  1719. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1720. }
  1721. },
  1722. "notification-url": "https://packagist.org/downloads/",
  1723. "license": [
  1724. "MIT"
  1725. ],
  1726. "authors": [
  1727. {
  1728. "name": "Guilherme Blanco",
  1729. "email": "guilhermeblanco@gmail.com"
  1730. },
  1731. {
  1732. "name": "Roman Borschel",
  1733. "email": "roman@code-factory.org"
  1734. },
  1735. {
  1736. "name": "Benjamin Eberlei",
  1737. "email": "kontakt@beberlei.de"
  1738. },
  1739. {
  1740. "name": "Jonathan Wage",
  1741. "email": "jonwage@gmail.com"
  1742. },
  1743. {
  1744. "name": "Johannes Schmitt",
  1745. "email": "schmittjoh@gmail.com"
  1746. },
  1747. {
  1748. "name": "Marco Pivetta",
  1749. "email": "ocramius@gmail.com"
  1750. }
  1751. ],
  1752. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1753. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1754. "keywords": [
  1755. "event",
  1756. "event dispatcher",
  1757. "event manager",
  1758. "event system",
  1759. "events"
  1760. ],
  1761. "support": {
  1762. "issues": "https://github.com/doctrine/event-manager/issues",
  1763. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  1764. },
  1765. "funding": [
  1766. {
  1767. "url": "https://www.doctrine-project.org/sponsorship.html",
  1768. "type": "custom"
  1769. },
  1770. {
  1771. "url": "https://www.patreon.com/phpdoctrine",
  1772. "type": "patreon"
  1773. },
  1774. {
  1775. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1776. "type": "tidelift"
  1777. }
  1778. ],
  1779. "time": "2020-05-29T18:28:51+00:00"
  1780. },
  1781. {
  1782. "name": "doctrine/inflector",
  1783. "version": "1.4.4",
  1784. "source": {
  1785. "type": "git",
  1786. "url": "https://github.com/doctrine/inflector.git",
  1787. "reference": "4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9"
  1788. },
  1789. "dist": {
  1790. "type": "zip",
  1791. "url": "https://api.github.com/repos/doctrine/inflector/zipball/4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9",
  1792. "reference": "4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9",
  1793. "shasum": ""
  1794. },
  1795. "require": {
  1796. "php": "^7.1 || ^8.0"
  1797. },
  1798. "require-dev": {
  1799. "doctrine/coding-standard": "^8.0",
  1800. "phpstan/phpstan": "^0.12",
  1801. "phpstan/phpstan-phpunit": "^0.12",
  1802. "phpstan/phpstan-strict-rules": "^0.12",
  1803. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  1804. },
  1805. "type": "library",
  1806. "extra": {
  1807. "branch-alias": {
  1808. "dev-master": "2.0.x-dev"
  1809. }
  1810. },
  1811. "autoload": {
  1812. "psr-4": {
  1813. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector",
  1814. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1815. }
  1816. },
  1817. "notification-url": "https://packagist.org/downloads/",
  1818. "license": [
  1819. "MIT"
  1820. ],
  1821. "authors": [
  1822. {
  1823. "name": "Guilherme Blanco",
  1824. "email": "guilhermeblanco@gmail.com"
  1825. },
  1826. {
  1827. "name": "Roman Borschel",
  1828. "email": "roman@code-factory.org"
  1829. },
  1830. {
  1831. "name": "Benjamin Eberlei",
  1832. "email": "kontakt@beberlei.de"
  1833. },
  1834. {
  1835. "name": "Jonathan Wage",
  1836. "email": "jonwage@gmail.com"
  1837. },
  1838. {
  1839. "name": "Johannes Schmitt",
  1840. "email": "schmittjoh@gmail.com"
  1841. }
  1842. ],
  1843. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1844. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1845. "keywords": [
  1846. "inflection",
  1847. "inflector",
  1848. "lowercase",
  1849. "manipulation",
  1850. "php",
  1851. "plural",
  1852. "singular",
  1853. "strings",
  1854. "uppercase",
  1855. "words"
  1856. ],
  1857. "support": {
  1858. "issues": "https://github.com/doctrine/inflector/issues",
  1859. "source": "https://github.com/doctrine/inflector/tree/1.4.4"
  1860. },
  1861. "funding": [
  1862. {
  1863. "url": "https://www.doctrine-project.org/sponsorship.html",
  1864. "type": "custom"
  1865. },
  1866. {
  1867. "url": "https://www.patreon.com/phpdoctrine",
  1868. "type": "patreon"
  1869. },
  1870. {
  1871. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1872. "type": "tidelift"
  1873. }
  1874. ],
  1875. "time": "2021-04-16T17:34:40+00:00"
  1876. },
  1877. {
  1878. "name": "doctrine/lexer",
  1879. "version": "1.2.1",
  1880. "source": {
  1881. "type": "git",
  1882. "url": "https://github.com/doctrine/lexer.git",
  1883. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  1884. },
  1885. "dist": {
  1886. "type": "zip",
  1887. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  1888. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  1889. "shasum": ""
  1890. },
  1891. "require": {
  1892. "php": "^7.2 || ^8.0"
  1893. },
  1894. "require-dev": {
  1895. "doctrine/coding-standard": "^6.0",
  1896. "phpstan/phpstan": "^0.11.8",
  1897. "phpunit/phpunit": "^8.2"
  1898. },
  1899. "type": "library",
  1900. "extra": {
  1901. "branch-alias": {
  1902. "dev-master": "1.2.x-dev"
  1903. }
  1904. },
  1905. "autoload": {
  1906. "psr-4": {
  1907. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1908. }
  1909. },
  1910. "notification-url": "https://packagist.org/downloads/",
  1911. "license": [
  1912. "MIT"
  1913. ],
  1914. "authors": [
  1915. {
  1916. "name": "Guilherme Blanco",
  1917. "email": "guilhermeblanco@gmail.com"
  1918. },
  1919. {
  1920. "name": "Roman Borschel",
  1921. "email": "roman@code-factory.org"
  1922. },
  1923. {
  1924. "name": "Johannes Schmitt",
  1925. "email": "schmittjoh@gmail.com"
  1926. }
  1927. ],
  1928. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1929. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1930. "keywords": [
  1931. "annotations",
  1932. "docblock",
  1933. "lexer",
  1934. "parser",
  1935. "php"
  1936. ],
  1937. "support": {
  1938. "issues": "https://github.com/doctrine/lexer/issues",
  1939. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  1940. },
  1941. "funding": [
  1942. {
  1943. "url": "https://www.doctrine-project.org/sponsorship.html",
  1944. "type": "custom"
  1945. },
  1946. {
  1947. "url": "https://www.patreon.com/phpdoctrine",
  1948. "type": "patreon"
  1949. },
  1950. {
  1951. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1952. "type": "tidelift"
  1953. }
  1954. ],
  1955. "time": "2020-05-25T17:44:05+00:00"
  1956. },
  1957. {
  1958. "name": "doctrine/persistence",
  1959. "version": "1.3.8",
  1960. "source": {
  1961. "type": "git",
  1962. "url": "https://github.com/doctrine/persistence.git",
  1963. "reference": "7a6eac9fb6f61bba91328f15aa7547f4806ca288"
  1964. },
  1965. "dist": {
  1966. "type": "zip",
  1967. "url": "https://api.github.com/repos/doctrine/persistence/zipball/7a6eac9fb6f61bba91328f15aa7547f4806ca288",
  1968. "reference": "7a6eac9fb6f61bba91328f15aa7547f4806ca288",
  1969. "shasum": ""
  1970. },
  1971. "require": {
  1972. "doctrine/annotations": "^1.0",
  1973. "doctrine/cache": "^1.0",
  1974. "doctrine/collections": "^1.0",
  1975. "doctrine/event-manager": "^1.0",
  1976. "doctrine/reflection": "^1.2",
  1977. "php": "^7.1 || ^8.0"
  1978. },
  1979. "conflict": {
  1980. "doctrine/common": "<2.10@dev"
  1981. },
  1982. "require-dev": {
  1983. "doctrine/coding-standard": "^6.0",
  1984. "phpstan/phpstan": "^0.11",
  1985. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1986. "vimeo/psalm": "^3.11"
  1987. },
  1988. "type": "library",
  1989. "extra": {
  1990. "branch-alias": {
  1991. "dev-master": "1.3.x-dev"
  1992. }
  1993. },
  1994. "autoload": {
  1995. "psr-4": {
  1996. "Doctrine\\Common\\": "lib/Doctrine/Common",
  1997. "Doctrine\\Persistence\\": "lib/Doctrine/Persistence"
  1998. }
  1999. },
  2000. "notification-url": "https://packagist.org/downloads/",
  2001. "license": [
  2002. "MIT"
  2003. ],
  2004. "authors": [
  2005. {
  2006. "name": "Guilherme Blanco",
  2007. "email": "guilhermeblanco@gmail.com"
  2008. },
  2009. {
  2010. "name": "Roman Borschel",
  2011. "email": "roman@code-factory.org"
  2012. },
  2013. {
  2014. "name": "Benjamin Eberlei",
  2015. "email": "kontakt@beberlei.de"
  2016. },
  2017. {
  2018. "name": "Jonathan Wage",
  2019. "email": "jonwage@gmail.com"
  2020. },
  2021. {
  2022. "name": "Johannes Schmitt",
  2023. "email": "schmittjoh@gmail.com"
  2024. },
  2025. {
  2026. "name": "Marco Pivetta",
  2027. "email": "ocramius@gmail.com"
  2028. }
  2029. ],
  2030. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  2031. "homepage": "https://doctrine-project.org/projects/persistence.html",
  2032. "keywords": [
  2033. "mapper",
  2034. "object",
  2035. "odm",
  2036. "orm",
  2037. "persistence"
  2038. ],
  2039. "support": {
  2040. "issues": "https://github.com/doctrine/persistence/issues",
  2041. "source": "https://github.com/doctrine/persistence/tree/1.3.x"
  2042. },
  2043. "funding": [
  2044. {
  2045. "url": "https://www.doctrine-project.org/sponsorship.html",
  2046. "type": "custom"
  2047. },
  2048. {
  2049. "url": "https://www.patreon.com/phpdoctrine",
  2050. "type": "patreon"
  2051. },
  2052. {
  2053. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  2054. "type": "tidelift"
  2055. }
  2056. ],
  2057. "time": "2020-06-20T12:56:16+00:00"
  2058. },
  2059. {
  2060. "name": "doctrine/reflection",
  2061. "version": "1.2.2",
  2062. "source": {
  2063. "type": "git",
  2064. "url": "https://github.com/doctrine/reflection.git",
  2065. "reference": "fa587178be682efe90d005e3a322590d6ebb59a5"
  2066. },
  2067. "dist": {
  2068. "type": "zip",
  2069. "url": "https://api.github.com/repos/doctrine/reflection/zipball/fa587178be682efe90d005e3a322590d6ebb59a5",
  2070. "reference": "fa587178be682efe90d005e3a322590d6ebb59a5",
  2071. "shasum": ""
  2072. },
  2073. "require": {
  2074. "doctrine/annotations": "^1.0",
  2075. "ext-tokenizer": "*",
  2076. "php": "^7.1 || ^8.0"
  2077. },
  2078. "conflict": {
  2079. "doctrine/common": "<2.9"
  2080. },
  2081. "require-dev": {
  2082. "doctrine/coding-standard": "^6.0 || ^8.2.0",
  2083. "doctrine/common": "^2.10",
  2084. "phpstan/phpstan": "^0.11.0 || ^0.12.20",
  2085. "phpstan/phpstan-phpunit": "^0.11.0 || ^0.12.16",
  2086. "phpunit/phpunit": "^7.5 || ^9.1.5"
  2087. },
  2088. "type": "library",
  2089. "extra": {
  2090. "branch-alias": {
  2091. "dev-master": "1.2.x-dev"
  2092. }
  2093. },
  2094. "autoload": {
  2095. "psr-4": {
  2096. "Doctrine\\Common\\": "lib/Doctrine/Common"
  2097. }
  2098. },
  2099. "notification-url": "https://packagist.org/downloads/",
  2100. "license": [
  2101. "MIT"
  2102. ],
  2103. "authors": [
  2104. {
  2105. "name": "Guilherme Blanco",
  2106. "email": "guilhermeblanco@gmail.com"
  2107. },
  2108. {
  2109. "name": "Roman Borschel",
  2110. "email": "roman@code-factory.org"
  2111. },
  2112. {
  2113. "name": "Benjamin Eberlei",
  2114. "email": "kontakt@beberlei.de"
  2115. },
  2116. {
  2117. "name": "Jonathan Wage",
  2118. "email": "jonwage@gmail.com"
  2119. },
  2120. {
  2121. "name": "Johannes Schmitt",
  2122. "email": "schmittjoh@gmail.com"
  2123. },
  2124. {
  2125. "name": "Marco Pivetta",
  2126. "email": "ocramius@gmail.com"
  2127. }
  2128. ],
  2129. "description": "The Doctrine Reflection project is a simple library used by the various Doctrine projects which adds some additional functionality on top of the reflection functionality that comes with PHP. It allows you to get the reflection information about classes, methods and properties statically.",
  2130. "homepage": "https://www.doctrine-project.org/projects/reflection.html",
  2131. "keywords": [
  2132. "reflection",
  2133. "static"
  2134. ],
  2135. "support": {
  2136. "issues": "https://github.com/doctrine/reflection/issues",
  2137. "source": "https://github.com/doctrine/reflection/tree/1.2.2"
  2138. },
  2139. "abandoned": "roave/better-reflection",
  2140. "time": "2020-10-27T21:46:55+00:00"
  2141. },
  2142. {
  2143. "name": "drupal/address",
  2144. "version": "1.9.0",
  2145. "source": {
  2146. "type": "git",
  2147. "url": "https://git.drupalcode.org/project/address.git",
  2148. "reference": "8.x-1.9"
  2149. },
  2150. "dist": {
  2151. "type": "zip",
  2152. "url": "https://ftp.drupal.org/files/projects/address-8.x-1.9.zip",
  2153. "reference": "8.x-1.9",
  2154. "shasum": "c7e6406d88c6d6be9e8fe0091040d67012bdbf05"
  2155. },
  2156. "require": {
  2157. "commerceguys/addressing": "^1.0.7",
  2158. "drupal/core": "^8.8 || ^9"
  2159. },
  2160. "require-dev": {
  2161. "drupal/token": "^1.0"
  2162. },
  2163. "type": "drupal-module",
  2164. "extra": {
  2165. "drupal": {
  2166. "version": "8.x-1.9",
  2167. "datestamp": "1604422821",
  2168. "security-coverage": {
  2169. "status": "covered",
  2170. "message": "Covered by Drupal's security advisory policy"
  2171. }
  2172. }
  2173. },
  2174. "notification-url": "https://packages.drupal.org/8/downloads",
  2175. "license": [
  2176. "GPL-2.0-or-later"
  2177. ],
  2178. "authors": [
  2179. {
  2180. "name": "bojanz",
  2181. "homepage": "https://www.drupal.org/user/86106"
  2182. },
  2183. {
  2184. "name": "dww",
  2185. "homepage": "https://www.drupal.org/user/46549"
  2186. },
  2187. {
  2188. "name": "googletorp",
  2189. "homepage": "https://www.drupal.org/user/386230"
  2190. },
  2191. {
  2192. "name": "jsacksick",
  2193. "homepage": "https://www.drupal.org/user/972218"
  2194. },
  2195. {
  2196. "name": "mglaman",
  2197. "homepage": "https://www.drupal.org/user/2416470"
  2198. },
  2199. {
  2200. "name": "rszrama",
  2201. "homepage": "https://www.drupal.org/user/49344"
  2202. }
  2203. ],
  2204. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  2205. "homepage": "http://drupal.org/project/address",
  2206. "support": {
  2207. "source": "https://git.drupalcode.org/project/address"
  2208. }
  2209. },
  2210. {
  2211. "name": "drupal/admin_toolbar",
  2212. "version": "2.4.0",
  2213. "source": {
  2214. "type": "git",
  2215. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  2216. "reference": "8.x-2.4"
  2217. },
  2218. "dist": {
  2219. "type": "zip",
  2220. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.4.zip",
  2221. "reference": "8.x-2.4",
  2222. "shasum": "6240047b8d91ac78f98d861ba8282af971fa0b38"
  2223. },
  2224. "require": {
  2225. "drupal/core": "^8.8.0 || ^9.0"
  2226. },
  2227. "type": "drupal-module",
  2228. "extra": {
  2229. "drupal": {
  2230. "version": "8.x-2.4",
  2231. "datestamp": "1601999178",
  2232. "security-coverage": {
  2233. "status": "covered",
  2234. "message": "Covered by Drupal's security advisory policy"
  2235. }
  2236. }
  2237. },
  2238. "notification-url": "https://packages.drupal.org/8/downloads",
  2239. "license": [
  2240. "GPL-2.0-or-later"
  2241. ],
  2242. "authors": [
  2243. {
  2244. "name": "Wilfrid Roze (eme)",
  2245. "homepage": "https://www.drupal.org/u/eme",
  2246. "role": "Maintainer"
  2247. },
  2248. {
  2249. "name": "Romain Jarraud (romainj)",
  2250. "homepage": "https://www.drupal.org/u/romainj",
  2251. "role": "Maintainer"
  2252. },
  2253. {
  2254. "name": "Adrian Cid Almaguer (adriancid)",
  2255. "homepage": "https://www.drupal.org/u/adriancid",
  2256. "email": "adriancid@gmail.com",
  2257. "role": "Maintainer"
  2258. },
  2259. {
  2260. "name": "Mohamed Anis Taktak (matio89)",
  2261. "homepage": "https://www.drupal.org/u/matio89",
  2262. "role": "Maintainer"
  2263. },
  2264. {
  2265. "name": "fethi.krout",
  2266. "homepage": "https://www.drupal.org/user/3206765"
  2267. },
  2268. {
  2269. "name": "matio89",
  2270. "homepage": "https://www.drupal.org/user/2320090"
  2271. },
  2272. {
  2273. "name": "romainj",
  2274. "homepage": "https://www.drupal.org/user/370706"
  2275. }
  2276. ],
  2277. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  2278. "homepage": "http://drupal.org/project/admin_toolbar",
  2279. "keywords": [
  2280. "Drupal",
  2281. "Toolbar"
  2282. ],
  2283. "support": {
  2284. "source": "https://git.drupalcode.org/project/admin_toolbar",
  2285. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  2286. }
  2287. },
  2288. {
  2289. "name": "drupal/adminimal_theme",
  2290. "version": "1.6.0",
  2291. "source": {
  2292. "type": "git",
  2293. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  2294. "reference": "8.x-1.6"
  2295. },
  2296. "dist": {
  2297. "type": "zip",
  2298. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.6.zip",
  2299. "reference": "8.x-1.6",
  2300. "shasum": "89132d0853388afe8dfd11fb83c69a48d8c13413"
  2301. },
  2302. "require": {
  2303. "drupal/core": "^8.8 || ^9"
  2304. },
  2305. "type": "drupal-theme",
  2306. "extra": {
  2307. "drupal": {
  2308. "version": "8.x-1.6",
  2309. "datestamp": "1602006937",
  2310. "security-coverage": {
  2311. "status": "covered",
  2312. "message": "Covered by Drupal's security advisory policy"
  2313. }
  2314. }
  2315. },
  2316. "notification-url": "https://packages.drupal.org/8/downloads",
  2317. "license": [
  2318. "GPL-2.0+"
  2319. ],
  2320. "authors": [
  2321. {
  2322. "name": "ANDiTKO",
  2323. "homepage": "https://www.drupal.org/user/1428124"
  2324. },
  2325. {
  2326. "name": "andrey.troeglazov",
  2327. "homepage": "https://www.drupal.org/user/3145389"
  2328. },
  2329. {
  2330. "name": "realityloop",
  2331. "homepage": "https://www.drupal.org/user/139189"
  2332. }
  2333. ],
  2334. "description": "Drupal administration theme with modern minimalist design.",
  2335. "homepage": "https://www.drupal.org/project/adminimal_theme",
  2336. "support": {
  2337. "source": "https://git.drupalcode.org/project/adminimal_theme",
  2338. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  2339. }
  2340. },
  2341. {
  2342. "name": "drupal/advanced_text_formatter",
  2343. "version": "2.0.0",
  2344. "source": {
  2345. "type": "git",
  2346. "url": "https://git.drupalcode.org/project/advanced_text_formatter.git",
  2347. "reference": "2.0.0"
  2348. },
  2349. "dist": {
  2350. "type": "zip",
  2351. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-2.0.0.zip",
  2352. "reference": "2.0.0",
  2353. "shasum": "ecd1d0e46dfc137251f9b71e724c6edddd5c48df"
  2354. },
  2355. "require": {
  2356. "drupal/core": "^8 || ^9"
  2357. },
  2358. "type": "drupal-module",
  2359. "extra": {
  2360. "drupal": {
  2361. "version": "2.0.0",
  2362. "datestamp": "1591030704",
  2363. "security-coverage": {
  2364. "status": "covered",
  2365. "message": "Covered by Drupal's security advisory policy"
  2366. }
  2367. }
  2368. },
  2369. "notification-url": "https://packages.drupal.org/8/downloads",
  2370. "license": [
  2371. "GPL-2.0-or-later"
  2372. ],
  2373. "authors": [
  2374. {
  2375. "name": "azovsky",
  2376. "homepage": "https://www.drupal.org/user/330533"
  2377. },
  2378. {
  2379. "name": "thmnhat",
  2380. "homepage": "https://www.drupal.org/user/998946"
  2381. }
  2382. ],
  2383. "description": "Provides an additional formatter for text field, text area and text format.",
  2384. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  2385. "support": {
  2386. "source": "https://git.drupalcode.org/project/advanced_text_formatter"
  2387. }
  2388. },
  2389. {
  2390. "name": "drupal/audiofield",
  2391. "version": "1.10.0",
  2392. "source": {
  2393. "type": "git",
  2394. "url": "https://git.drupalcode.org/project/audiofield.git",
  2395. "reference": "8.x-1.10"
  2396. },
  2397. "dist": {
  2398. "type": "zip",
  2399. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.10.zip",
  2400. "reference": "8.x-1.10",
  2401. "shasum": "0b321f6c01b77c2ff28ef8cb646af8ec223dc4c1"
  2402. },
  2403. "require": {
  2404. "drupal/core": "^8 || ^9"
  2405. },
  2406. "type": "drupal-module",
  2407. "extra": {
  2408. "drupal": {
  2409. "version": "8.x-1.10",
  2410. "datestamp": "1607014410",
  2411. "security-coverage": {
  2412. "status": "covered",
  2413. "message": "Covered by Drupal's security advisory policy"
  2414. }
  2415. },
  2416. "drush": {
  2417. "services": {
  2418. "drush.services.yml": "^9"
  2419. }
  2420. }
  2421. },
  2422. "notification-url": "https://packages.drupal.org/8/downloads",
  2423. "license": [
  2424. "GPL-2.0-or-later"
  2425. ],
  2426. "authors": [
  2427. {
  2428. "name": "Daniel Moberly",
  2429. "homepage": "https://www.drupal.org/u/danielmoberly",
  2430. "role": "Maintainer"
  2431. },
  2432. {
  2433. "name": "josipsaric",
  2434. "homepage": "https://www.drupal.org/user/3063287"
  2435. },
  2436. {
  2437. "name": "tamerzg",
  2438. "homepage": "https://www.drupal.org/user/464564"
  2439. }
  2440. ],
  2441. "description": "AudioField Module",
  2442. "homepage": "https://www.drupal.org/project/audiofield",
  2443. "support": {
  2444. "source": "https://git.drupalcode.org/project/audiofield",
  2445. "issues": "https://www.drupal.org/project/issues/audiofield"
  2446. }
  2447. },
  2448. {
  2449. "name": "drupal/auto_entitylabel",
  2450. "version": "dev-3.x",
  2451. "source": {
  2452. "type": "git",
  2453. "url": "https://git.drupalcode.org/project/auto_entitylabel.git",
  2454. "reference": "7d2063d5ee869d20e00409eca12bf6776fff7772"
  2455. },
  2456. "require": {
  2457. "drupal/core": "^8 || ^9"
  2458. },
  2459. "require-dev": {
  2460. "drupal/token": "^1.0"
  2461. },
  2462. "type": "drupal-module",
  2463. "extra": {
  2464. "branch-alias": {
  2465. "dev-3.x": "3.x-dev"
  2466. },
  2467. "drupal": {
  2468. "version": "8.x-3.0-beta3+6-dev",
  2469. "datestamp": "1609346741",
  2470. "security-coverage": {
  2471. "status": "not-covered",
  2472. "message": "Dev releases are not covered by Drupal security advisories."
  2473. }
  2474. }
  2475. },
  2476. "notification-url": "https://packages.drupal.org/8/downloads",
  2477. "license": [
  2478. "GPL-2.0-or-later"
  2479. ],
  2480. "authors": [
  2481. {
  2482. "name": "Pravin Ajaaz",
  2483. "homepage": "https://www.drupal.org/user/2910049"
  2484. },
  2485. {
  2486. "name": "RenatoG",
  2487. "homepage": "https://www.drupal.org/user/3326031"
  2488. },
  2489. {
  2490. "name": "VladimirAus",
  2491. "homepage": "https://www.drupal.org/user/673120"
  2492. },
  2493. {
  2494. "name": "bforchhammer",
  2495. "homepage": "https://www.drupal.org/user/216396"
  2496. },
  2497. {
  2498. "name": "colan",
  2499. "homepage": "https://www.drupal.org/user/58704"
  2500. },
  2501. {
  2502. "name": "diqidoq",
  2503. "homepage": "https://www.drupal.org/user/1001934"
  2504. },
  2505. {
  2506. "name": "purushotam.rai",
  2507. "homepage": "https://www.drupal.org/user/3193859"
  2508. }
  2509. ],
  2510. "description": "Allows hiding of entity label fields and automatic label creation.",
  2511. "homepage": "https://www.drupal.org/project/auto_entitylabel",
  2512. "support": {
  2513. "source": "https://git.drupalcode.org/project/auto_entitylabel",
  2514. "issues": "https://www.drupal.org/project/issues/auto_entitylabel"
  2515. },
  2516. "time": "2021-03-01T17:14:07+00:00"
  2517. },
  2518. {
  2519. "name": "drupal/autocomplete_deluxe",
  2520. "version": "2.0.0",
  2521. "source": {
  2522. "type": "git",
  2523. "url": "https://git.drupalcode.org/project/autocomplete_deluxe.git",
  2524. "reference": "2.0.0"
  2525. },
  2526. "dist": {
  2527. "type": "zip",
  2528. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-2.0.0.zip",
  2529. "reference": "2.0.0",
  2530. "shasum": "b3b8a3b89692e6f9c6a4847b6900d5fd6cef2264"
  2531. },
  2532. "require": {
  2533. "drupal/core": "^8 || ^9"
  2534. },
  2535. "type": "drupal-module",
  2536. "extra": {
  2537. "drupal": {
  2538. "version": "2.0.0",
  2539. "datestamp": "1622966404",
  2540. "security-coverage": {
  2541. "status": "covered",
  2542. "message": "Covered by Drupal's security advisory policy"
  2543. }
  2544. }
  2545. },
  2546. "notification-url": "https://packages.drupal.org/8/downloads",
  2547. "license": [
  2548. "GPL-2.0-or-later"
  2549. ],
  2550. "authors": [
  2551. {
  2552. "name": "Vardot",
  2553. "homepage": "https://www.drupal.org/vardot",
  2554. "role": "Maintenance for D8 and D9 versions"
  2555. },
  2556. {
  2557. "name": "Mediacurrent",
  2558. "homepage": "https://www.drupal.org/mediacurrent",
  2559. "role": "Supporting organization"
  2560. },
  2561. {
  2562. "name": "edwardchiapet",
  2563. "homepage": "https://www.drupal.org/user/2354784"
  2564. },
  2565. {
  2566. "name": "mpriscella",
  2567. "homepage": "https://www.drupal.org/user/2354820"
  2568. },
  2569. {
  2570. "name": "sepgil",
  2571. "homepage": "https://www.drupal.org/user/512828"
  2572. }
  2573. ],
  2574. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  2575. "homepage": "https://www.drupal.org/project/autocomplete_deluxe",
  2576. "support": {
  2577. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  2578. "issues": "https://www.drupal.org/project/issues/autocomplete_deluxe"
  2579. }
  2580. },
  2581. {
  2582. "name": "drupal/autologout",
  2583. "version": "1.3.0",
  2584. "source": {
  2585. "type": "git",
  2586. "url": "https://git.drupalcode.org/project/autologout.git",
  2587. "reference": "8.x-1.3"
  2588. },
  2589. "dist": {
  2590. "type": "zip",
  2591. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.3.zip",
  2592. "reference": "8.x-1.3",
  2593. "shasum": "87733b2042d9dcdee0d8f33d206872208a8c97ea"
  2594. },
  2595. "require": {
  2596. "drupal/core": "^8 || ^9"
  2597. },
  2598. "type": "drupal-module",
  2599. "extra": {
  2600. "drupal": {
  2601. "version": "8.x-1.3",
  2602. "datestamp": "1587193798",
  2603. "security-coverage": {
  2604. "status": "covered",
  2605. "message": "Covered by Drupal's security advisory policy"
  2606. }
  2607. }
  2608. },
  2609. "notification-url": "https://packages.drupal.org/8/downloads",
  2610. "license": [
  2611. "GPL-2.0+"
  2612. ],
  2613. "authors": [
  2614. {
  2615. "name": "AjK",
  2616. "homepage": "https://www.drupal.org/user/39030"
  2617. },
  2618. {
  2619. "name": "AjitS",
  2620. "homepage": "https://www.drupal.org/user/981944"
  2621. },
  2622. {
  2623. "name": "boshtian",
  2624. "homepage": "https://www.drupal.org/user/1773456"
  2625. },
  2626. {
  2627. "name": "dandrews",
  2628. "homepage": "https://www.drupal.org/user/2014490"
  2629. },
  2630. {
  2631. "name": "darksnow",
  2632. "homepage": "https://www.drupal.org/user/391915"
  2633. },
  2634. {
  2635. "name": "johnennew",
  2636. "homepage": "https://www.drupal.org/user/1150042"
  2637. },
  2638. {
  2639. "name": "jrglasgow",
  2640. "homepage": "https://www.drupal.org/user/36590"
  2641. },
  2642. {
  2643. "name": "kmasood",
  2644. "homepage": "https://www.drupal.org/user/1262860"
  2645. },
  2646. {
  2647. "name": "levelos",
  2648. "homepage": "https://www.drupal.org/user/54135"
  2649. },
  2650. {
  2651. "name": "prabeen.giri",
  2652. "homepage": "https://www.drupal.org/user/913078"
  2653. },
  2654. {
  2655. "name": "str8",
  2656. "homepage": "https://www.drupal.org/user/2865063"
  2657. }
  2658. ],
  2659. "description": "Adds automated timed logout.",
  2660. "homepage": "http://drupal.org/project/autologout",
  2661. "support": {
  2662. "source": "https://git.drupalcode.org/project/autologout"
  2663. }
  2664. },
  2665. {
  2666. "name": "drupal/better_exposed_filters",
  2667. "version": "5.0.0-beta2",
  2668. "source": {
  2669. "type": "git",
  2670. "url": "https://git.drupalcode.org/project/better_exposed_filters.git",
  2671. "reference": "8.x-5.0-beta2"
  2672. },
  2673. "dist": {
  2674. "type": "zip",
  2675. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-8.x-5.0-beta2.zip",
  2676. "reference": "8.x-5.0-beta2",
  2677. "shasum": "3899191ee3fa383abe0162cc6701ddba86bae252"
  2678. },
  2679. "require": {
  2680. "drupal/core": "^8.8 || ^9",
  2681. "drupal/jquery_ui": "^1.4",
  2682. "drupal/jquery_ui_datepicker": "^1.0",
  2683. "drupal/jquery_ui_slider": "^1.1",
  2684. "drupal/jquery_ui_touch_punch": "^1.0"
  2685. },
  2686. "type": "drupal-module",
  2687. "extra": {
  2688. "drupal": {
  2689. "version": "8.x-5.0-beta2",
  2690. "datestamp": "1624554647",
  2691. "security-coverage": {
  2692. "status": "not-covered",
  2693. "message": "Beta releases are not covered by Drupal security advisories."
  2694. }
  2695. }
  2696. },
  2697. "notification-url": "https://packages.drupal.org/8/downloads",
  2698. "license": [
  2699. "GPL-2.0-or-later"
  2700. ],
  2701. "authors": [
  2702. {
  2703. "name": "Mike Keran",
  2704. "homepage": "https://www.drupal.org/u/mikeker"
  2705. },
  2706. {
  2707. "name": "Martin Keereman",
  2708. "homepage": "https://www.drupal.org/u/etroid"
  2709. },
  2710. {
  2711. "name": "Neslee Canil Pinto",
  2712. "homepage": "https://www.drupal.org/u/neslee-canil-pinto"
  2713. },
  2714. {
  2715. "name": "jkopel",
  2716. "homepage": "https://www.drupal.org/user/66207"
  2717. },
  2718. {
  2719. "name": "mikeker",
  2720. "homepage": "https://www.drupal.org/user/192273"
  2721. },
  2722. {
  2723. "name": "rlhawk",
  2724. "homepage": "https://www.drupal.org/user/352283"
  2725. }
  2726. ],
  2727. "description": "Replaces the Views default single- or multi-select boxes with more advanced options.",
  2728. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2729. "support": {
  2730. "source": "https://git.drupalcode.org/project/better_exposed_filters",
  2731. "issues": "https://www.drupal.org/project/issues/better_exposed_filters"
  2732. }
  2733. },
  2734. {
  2735. "name": "drupal/betterlogin",
  2736. "version": "1.5.0",
  2737. "source": {
  2738. "type": "git",
  2739. "url": "https://git.drupalcode.org/project/betterlogin.git",
  2740. "reference": "8.x-1.5"
  2741. },
  2742. "dist": {
  2743. "type": "zip",
  2744. "url": "https://ftp.drupal.org/files/projects/betterlogin-8.x-1.5.zip",
  2745. "reference": "8.x-1.5",
  2746. "shasum": "2351972813754d0d4f15e49c9a933450dc1297f0"
  2747. },
  2748. "require": {
  2749. "drupal/core": "^8 || ^9"
  2750. },
  2751. "type": "drupal-module",
  2752. "extra": {
  2753. "drupal": {
  2754. "version": "8.x-1.5",
  2755. "datestamp": "1588242718",
  2756. "security-coverage": {
  2757. "status": "covered",
  2758. "message": "Covered by Drupal's security advisory policy"
  2759. }
  2760. }
  2761. },
  2762. "notification-url": "https://packages.drupal.org/8/downloads",
  2763. "license": [
  2764. "GPL-2.0-or-later"
  2765. ],
  2766. "authors": [
  2767. {
  2768. "name": "theamoeba",
  2769. "homepage": "https://www.drupal.org/user/251700"
  2770. },
  2771. {
  2772. "name": "yogeshmpawar",
  2773. "homepage": "https://www.drupal.org/user/2922907"
  2774. }
  2775. ],
  2776. "description": "Make the login screens better :)",
  2777. "homepage": "https://www.drupal.org/project/betterlogin",
  2778. "support": {
  2779. "source": "https://git.drupalcode.org/project/betterlogin"
  2780. }
  2781. },
  2782. {
  2783. "name": "drupal/block_class",
  2784. "version": "1.3.0",
  2785. "source": {
  2786. "type": "git",
  2787. "url": "https://git.drupalcode.org/project/block_class.git",
  2788. "reference": "8.x-1.3"
  2789. },
  2790. "dist": {
  2791. "type": "zip",
  2792. "url": "https://ftp.drupal.org/files/projects/block_class-8.x-1.3.zip",
  2793. "reference": "8.x-1.3",
  2794. "shasum": "29cfdb646ef83210f0eced30b38243339158fe3f"
  2795. },
  2796. "require": {
  2797. "drupal/core": "^8 || ^9"
  2798. },
  2799. "type": "drupal-module",
  2800. "extra": {
  2801. "drupal": {
  2802. "version": "8.x-1.3",
  2803. "datestamp": "1604426178",
  2804. "security-coverage": {
  2805. "status": "covered",
  2806. "message": "Covered by Drupal's security advisory policy"
  2807. }
  2808. }
  2809. },
  2810. "notification-url": "https://packages.drupal.org/8/downloads",
  2811. "license": [
  2812. "GPL-2.0-or-later"
  2813. ],
  2814. "authors": [
  2815. {
  2816. "name": "Todd Nienkerk",
  2817. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2818. "role": "Maintainer"
  2819. },
  2820. {
  2821. "name": "Renato Gonçalves (RenatoG)",
  2822. "homepage": "https://www.drupal.org/u/RenatoG",
  2823. "email": "renatog@ciandt.com",
  2824. "role": "Maintainer"
  2825. },
  2826. {
  2827. "name": "Neslee Canil Pinto",
  2828. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  2829. "role": "Maintainer"
  2830. },
  2831. {
  2832. "name": "Aaron Stanush",
  2833. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2834. "role": "Maintainer"
  2835. },
  2836. {
  2837. "name": "David Suissa (DYdave)",
  2838. "homepage": "https://www.drupal.org/u/DYdave",
  2839. "role": "Maintainer"
  2840. },
  2841. {
  2842. "name": "Four Kitchens",
  2843. "homepage": "https://www.drupal.org/user/358502",
  2844. "role": "Maintainer"
  2845. },
  2846. {
  2847. "name": "berenddeboer",
  2848. "homepage": "https://www.drupal.org/u/berenddeboer",
  2849. "role": "Maintainer"
  2850. },
  2851. {
  2852. "name": "elliotttf",
  2853. "homepage": "https://www.drupal.org/u/elliotttf",
  2854. "role": "Maintainer"
  2855. },
  2856. {
  2857. "name": "Michal Minecki (mirzu)",
  2858. "homepage": "https://www.drupal.org/u/mirzu",
  2859. "role": "Maintainer"
  2860. },
  2861. {
  2862. "name": "Patrick Coffey (pcoffey)",
  2863. "homepage": "https://www.drupal.org/u/pcoffey",
  2864. "role": "Maintainer"
  2865. },
  2866. {
  2867. "name": "Taylor Smith (tsmith512)",
  2868. "homepage": "https://www.drupal.org/u/tsmith512",
  2869. "role": "Maintainer"
  2870. }
  2871. ],
  2872. "description": "Allows assigning classes to Blocks.",
  2873. "homepage": "https://www.drupal.org/project/block_class",
  2874. "keywords": [
  2875. "Drupal"
  2876. ],
  2877. "support": {
  2878. "source": "https://git.drupalcode.org/project/block_class",
  2879. "issues": "https://www.drupal.org/project/issues/block_class",
  2880. "irc": "irc://irc.freenode.org/drupal-contribute"
  2881. }
  2882. },
  2883. {
  2884. "name": "drupal/bulkdelete",
  2885. "version": "dev-1.x",
  2886. "source": {
  2887. "type": "git",
  2888. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2889. "reference": "36e12429e99606463b9ef15203c2018de69965b2"
  2890. },
  2891. "require": {
  2892. "drupal/core": "^8.7.7 || ^9"
  2893. },
  2894. "type": "drupal-module",
  2895. "extra": {
  2896. "branch-alias": {
  2897. "dev-1.x": "1.x-dev"
  2898. },
  2899. "drupal": {
  2900. "version": "8.x-1.x-dev",
  2901. "datestamp": "1590300128",
  2902. "security-coverage": {
  2903. "status": "not-covered",
  2904. "message": "Dev releases are not covered by Drupal security advisories."
  2905. }
  2906. }
  2907. },
  2908. "notification-url": "https://packages.drupal.org/8/downloads",
  2909. "license": [
  2910. "GPL-2.0-or-later"
  2911. ],
  2912. "authors": [
  2913. {
  2914. "name": "Kars-T",
  2915. "homepage": "https://www.drupal.org/user/224499"
  2916. },
  2917. {
  2918. "name": "Rahul Seth",
  2919. "homepage": "https://www.drupal.org/user/2694359"
  2920. },
  2921. {
  2922. "name": "adriancid",
  2923. "homepage": "https://www.drupal.org/user/1962106"
  2924. },
  2925. {
  2926. "name": "robertDouglass",
  2927. "homepage": "https://www.drupal.org/user/5449"
  2928. }
  2929. ],
  2930. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2931. "homepage": "https://www.drupal.org/project/bulkdelete",
  2932. "support": {
  2933. "source": "https://git.drupalcode.org/project/bulkdelete"
  2934. },
  2935. "time": "2020-05-24T06:01:38+00:00"
  2936. },
  2937. {
  2938. "name": "drupal/cer",
  2939. "version": "4.0.0-alpha3",
  2940. "source": {
  2941. "type": "git",
  2942. "url": "https://git.drupalcode.org/project/cer.git",
  2943. "reference": "8.x-4.0-alpha3"
  2944. },
  2945. "dist": {
  2946. "type": "zip",
  2947. "url": "https://ftp.drupal.org/files/projects/cer-8.x-4.0-alpha3.zip",
  2948. "reference": "8.x-4.0-alpha3",
  2949. "shasum": "3c508e842a2c17235e4c9909ab64ef1aeb9d3ebe"
  2950. },
  2951. "require": {
  2952. "drupal/core": "^8 || ^9"
  2953. },
  2954. "type": "drupal-module",
  2955. "extra": {
  2956. "drupal": {
  2957. "version": "8.x-4.0-alpha3",
  2958. "datestamp": "1620240213",
  2959. "security-coverage": {
  2960. "status": "not-covered",
  2961. "message": "Project has not opted into security advisory coverage!"
  2962. }
  2963. }
  2964. },
  2965. "notification-url": "https://packages.drupal.org/8/downloads",
  2966. "license": [
  2967. "GPL-2.0-or-later"
  2968. ],
  2969. "authors": [
  2970. {
  2971. "name": "bmcclure",
  2972. "homepage": "https://www.drupal.org/user/278485"
  2973. },
  2974. {
  2975. "name": "chertzog",
  2976. "homepage": "https://www.drupal.org/user/806366"
  2977. },
  2978. {
  2979. "name": "gcb",
  2980. "homepage": "https://www.drupal.org/user/1682976"
  2981. },
  2982. {
  2983. "name": "gregcube",
  2984. "homepage": "https://www.drupal.org/user/336930"
  2985. },
  2986. {
  2987. "name": "jrglasgow",
  2988. "homepage": "https://www.drupal.org/user/36590"
  2989. },
  2990. {
  2991. "name": "phenaproxima",
  2992. "homepage": "https://www.drupal.org/user/205645"
  2993. }
  2994. ],
  2995. "description": "Allows user to create two-way references between entities.",
  2996. "homepage": "https://www.drupal.org/project/cer",
  2997. "support": {
  2998. "source": "https://git.drupalcode.org/project/cer"
  2999. }
  3000. },
  3001. {
  3002. "name": "drupal/config_devel",
  3003. "version": "dev-1.x",
  3004. "source": {
  3005. "type": "git",
  3006. "url": "https://git.drupalcode.org/project/config_devel.git",
  3007. "reference": "e519faae46b88fc23a88f64c22b6146cfec863a9"
  3008. },
  3009. "require": {
  3010. "drupal/core": "^8 || ^9"
  3011. },
  3012. "type": "drupal-module",
  3013. "extra": {
  3014. "branch-alias": {
  3015. "dev-1.x": "1.x-dev"
  3016. },
  3017. "drupal": {
  3018. "version": "8.x-1.7+3-dev",
  3019. "datestamp": "1607535421",
  3020. "security-coverage": {
  3021. "status": "not-covered",
  3022. "message": "Dev releases are not covered by Drupal security advisories."
  3023. }
  3024. }
  3025. },
  3026. "notification-url": "https://packages.drupal.org/8/downloads",
  3027. "license": [
  3028. "GPL-2.0+"
  3029. ],
  3030. "authors": [
  3031. {
  3032. "name": "alexpott",
  3033. "homepage": "https://www.drupal.org/user/157725"
  3034. },
  3035. {
  3036. "name": "benjy",
  3037. "homepage": "https://www.drupal.org/user/1852732"
  3038. },
  3039. {
  3040. "name": "chx",
  3041. "homepage": "https://www.drupal.org/user/9446"
  3042. },
  3043. {
  3044. "name": "joachim",
  3045. "homepage": "https://www.drupal.org/user/107701"
  3046. },
  3047. {
  3048. "name": "nedjo",
  3049. "homepage": "https://www.drupal.org/user/4481"
  3050. },
  3051. {
  3052. "name": "tim.plunkett",
  3053. "homepage": "https://www.drupal.org/user/241634"
  3054. },
  3055. {
  3056. "name": "vijaycs85",
  3057. "homepage": "https://www.drupal.org/user/93488"
  3058. }
  3059. ],
  3060. "description": "Helps developers work with configuration.",
  3061. "homepage": "https://www.drupal.org/project/config_devel",
  3062. "support": {
  3063. "source": "https://git.drupalcode.org/project/config_devel"
  3064. },
  3065. "time": "2020-12-11T15:36:08+00:00"
  3066. },
  3067. {
  3068. "name": "drupal/config_filter",
  3069. "version": "1.8.0",
  3070. "source": {
  3071. "type": "git",
  3072. "url": "https://git.drupalcode.org/project/config_filter.git",
  3073. "reference": "8.x-1.8"
  3074. },
  3075. "dist": {
  3076. "type": "zip",
  3077. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.8.zip",
  3078. "reference": "8.x-1.8",
  3079. "shasum": "5def5f97e79d6f5af6bb7007f012443475c90bfe"
  3080. },
  3081. "require": {
  3082. "drupal/core": "^8 || ^9"
  3083. },
  3084. "suggest": {
  3085. "drupal/config_split": "Split site configuration for different environments."
  3086. },
  3087. "type": "drupal-module",
  3088. "extra": {
  3089. "drupal": {
  3090. "version": "8.x-1.8",
  3091. "datestamp": "1603870062",
  3092. "security-coverage": {
  3093. "status": "covered",
  3094. "message": "Covered by Drupal's security advisory policy"
  3095. }
  3096. }
  3097. },
  3098. "notification-url": "https://packages.drupal.org/8/downloads",
  3099. "license": [
  3100. "GPL-2.0-or-later"
  3101. ],
  3102. "authors": [
  3103. {
  3104. "name": "Fabian Bircher",
  3105. "homepage": "https://www.drupal.org/u/bircher",
  3106. "email": "opensource@fabianbircher.com",
  3107. "role": "Maintainer"
  3108. },
  3109. {
  3110. "name": "Nuvole Web",
  3111. "homepage": "http://nuvole.org",
  3112. "email": "info@nuvole.org",
  3113. "role": "Maintainer"
  3114. },
  3115. {
  3116. "name": "pescetti",
  3117. "homepage": "https://www.drupal.org/user/436244"
  3118. }
  3119. ],
  3120. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  3121. "homepage": "https://www.drupal.org/project/config_filter",
  3122. "keywords": [
  3123. "Drupal",
  3124. "configuration",
  3125. "configuration management"
  3126. ],
  3127. "support": {
  3128. "source": "https://git.drupalcode.org/project/config_filter",
  3129. "issues": "https://www.drupal.org/project/issues/config_filter",
  3130. "slack": "https://drupal.slack.com/archives/C45342CDD"
  3131. }
  3132. },
  3133. {
  3134. "name": "drupal/config_ignore",
  3135. "version": "2.3.0",
  3136. "source": {
  3137. "type": "git",
  3138. "url": "https://git.drupalcode.org/project/config_ignore.git",
  3139. "reference": "8.x-2.3"
  3140. },
  3141. "dist": {
  3142. "type": "zip",
  3143. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.3.zip",
  3144. "reference": "8.x-2.3",
  3145. "shasum": "2e1f07a455275fb6637909921a8915646601fc00"
  3146. },
  3147. "require": {
  3148. "drupal/config_filter": "^1 || ^2",
  3149. "drupal/core": "^8 || ^9"
  3150. },
  3151. "type": "drupal-module",
  3152. "extra": {
  3153. "drupal": {
  3154. "version": "8.x-2.3",
  3155. "datestamp": "1608306489",
  3156. "security-coverage": {
  3157. "status": "covered",
  3158. "message": "Covered by Drupal's security advisory policy"
  3159. }
  3160. }
  3161. },
  3162. "notification-url": "https://packages.drupal.org/8/downloads",
  3163. "license": [
  3164. "GPL-2.0-or-later"
  3165. ],
  3166. "authors": [
  3167. {
  3168. "name": "Tommy Lynge Jørgensen",
  3169. "homepage": "https://www.drupal.org/u/tlyngej",
  3170. "email": "tlyngej@gmail.com",
  3171. "role": "Maintainer"
  3172. },
  3173. {
  3174. "name": "Fabian Bircher",
  3175. "homepage": "https://www.drupal.org/u/bircher",
  3176. "role": "Maintainer"
  3177. },
  3178. {
  3179. "name": "tlyngej",
  3180. "homepage": "https://www.drupal.org/user/413139"
  3181. }
  3182. ],
  3183. "description": "Ignore certain configuration during import.",
  3184. "homepage": "http://drupal.org/project/config_ignore",
  3185. "support": {
  3186. "source": "https://git.drupalcode.org/project/config_ignore",
  3187. "issues": "http://drupal.org/project/config_ignore",
  3188. "irc": "irc://irc.freenode.org/drupal-contribute"
  3189. }
  3190. },
  3191. {
  3192. "name": "drupal/config_update",
  3193. "version": "1.7.0",
  3194. "source": {
  3195. "type": "git",
  3196. "url": "https://git.drupalcode.org/project/config_update.git",
  3197. "reference": "8.x-1.7"
  3198. },
  3199. "dist": {
  3200. "type": "zip",
  3201. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.7.zip",
  3202. "reference": "8.x-1.7",
  3203. "shasum": "8f079abf7c2ea826a27fa5224b0770a26404c968"
  3204. },
  3205. "require": {
  3206. "drupal/core": "^8 || ^9"
  3207. },
  3208. "type": "drupal-module",
  3209. "extra": {
  3210. "drupal": {
  3211. "version": "8.x-1.7",
  3212. "datestamp": "1586355587",
  3213. "security-coverage": {
  3214. "status": "covered",
  3215. "message": "Covered by Drupal's security advisory policy"
  3216. }
  3217. }
  3218. },
  3219. "notification-url": "https://packages.drupal.org/8/downloads",
  3220. "license": [
  3221. "GPL-2.0-or-later"
  3222. ],
  3223. "authors": [
  3224. {
  3225. "name": "jhodgdon",
  3226. "homepage": "https://www.drupal.org/user/155601"
  3227. },
  3228. {
  3229. "name": "nedjo",
  3230. "homepage": "https://www.drupal.org/user/4481"
  3231. }
  3232. ],
  3233. "description": "Provides basic revert and update functionality for other modules",
  3234. "homepage": "https://www.drupal.org/project/config_update",
  3235. "support": {
  3236. "source": "https://git.drupalcode.org/project/config_update"
  3237. }
  3238. },
  3239. {
  3240. "name": "drupal/console",
  3241. "version": "1.9.7",
  3242. "source": {
  3243. "type": "git",
  3244. "url": "https://github.com/hechoendrupal/drupal-console.git",
  3245. "reference": "90053d30f52427edb4e4941a9063acb65b5a2c1e"
  3246. },
  3247. "dist": {
  3248. "type": "zip",
  3249. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/90053d30f52427edb4e4941a9063acb65b5a2c1e",
  3250. "reference": "90053d30f52427edb4e4941a9063acb65b5a2c1e",
  3251. "shasum": ""
  3252. },
  3253. "require": {
  3254. "alchemy/zippy": "~0.4",
  3255. "composer/installers": "~1.0",
  3256. "doctrine/annotations": "^1.2",
  3257. "doctrine/collections": "^1.3",
  3258. "drupal/console-core": "1.9.7",
  3259. "drupal/console-extend-plugin": "~0.9.5",
  3260. "php": ">=7.0.8",
  3261. "psy/psysh": "0.6.* || ~0.8",
  3262. "symfony/css-selector": "~3.0|~4.0",
  3263. "symfony/dom-crawler": "~3.0|~4.0",
  3264. "symfony/http-foundation": "~3.0|~4.0"
  3265. },
  3266. "suggest": {
  3267. "symfony/thanks": "Thank your favorite PHP projects on GitHub using the CLI",
  3268. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically"
  3269. },
  3270. "bin": [
  3271. "bin/drupal"
  3272. ],
  3273. "type": "library",
  3274. "autoload": {
  3275. "psr-4": {
  3276. "Drupal\\Console\\": "src"
  3277. }
  3278. },
  3279. "notification-url": "https://packagist.org/downloads/",
  3280. "license": [
  3281. "GPL-2.0-or-later"
  3282. ],
  3283. "authors": [
  3284. {
  3285. "name": "David Flores",
  3286. "email": "dmousex@gmail.com",
  3287. "homepage": "http://dmouse.net"
  3288. },
  3289. {
  3290. "name": "Jesus Manuel Olivas",
  3291. "email": "jesus.olivas@gmail.com",
  3292. "homepage": "http://jmolivas.com"
  3293. },
  3294. {
  3295. "name": "Eduardo Garcia",
  3296. "email": "enzo@enzolutions.com",
  3297. "homepage": "http://enzolutions.com/"
  3298. },
  3299. {
  3300. "name": "Omar Aguirre",
  3301. "email": "omersguchigu@gmail.com"
  3302. },
  3303. {
  3304. "name": "Drupal Console Contributors",
  3305. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  3306. }
  3307. ],
  3308. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  3309. "homepage": "http://drupalconsole.com/",
  3310. "keywords": [
  3311. "console",
  3312. "development",
  3313. "drupal",
  3314. "symfony"
  3315. ],
  3316. "funding": [
  3317. {
  3318. "url": "https://opencollective.com/drupalconsole",
  3319. "type": "open_collective"
  3320. }
  3321. ],
  3322. "time": "2020-11-30T02:09:53+00:00"
  3323. },
  3324. {
  3325. "name": "drupal/console-core",
  3326. "version": "1.9.7",
  3327. "source": {
  3328. "type": "git",
  3329. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  3330. "reference": "ab3abc2631761c9588230ba88189d9ba4eb9ed63"
  3331. },
  3332. "dist": {
  3333. "type": "zip",
  3334. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/ab3abc2631761c9588230ba88189d9ba4eb9ed63",
  3335. "reference": "ab3abc2631761c9588230ba88189d9ba4eb9ed63",
  3336. "shasum": ""
  3337. },
  3338. "require": {
  3339. "dflydev/dot-access-configuration": "^1.0",
  3340. "drupal/console-en": "1.9.7",
  3341. "guzzlehttp/guzzle": "~6.1",
  3342. "php": ">=7.0.8",
  3343. "stecman/symfony-console-completion": "~0.7",
  3344. "symfony/config": "~3.0|^4.4",
  3345. "symfony/console": "~3.0|^4.4",
  3346. "symfony/debug": "~3.0|^4.4",
  3347. "symfony/dependency-injection": "~3.0|^4.4",
  3348. "symfony/event-dispatcher": "~3.0|^4.4",
  3349. "symfony/filesystem": "~3.0|^4.4",
  3350. "symfony/finder": "~3.0|^4.4",
  3351. "symfony/process": "~3.0|^4.4",
  3352. "symfony/translation": "~3.0|^4.4",
  3353. "symfony/yaml": "~3.0|^4.4",
  3354. "twig/twig": "^1.38.2|^2.12.0",
  3355. "webflo/drupal-finder": "^1.0",
  3356. "webmozart/path-util": "^2.3"
  3357. },
  3358. "type": "library",
  3359. "autoload": {
  3360. "files": [
  3361. "src/functions.php"
  3362. ],
  3363. "psr-4": {
  3364. "Drupal\\Console\\Core\\": "src"
  3365. }
  3366. },
  3367. "notification-url": "https://packagist.org/downloads/",
  3368. "license": [
  3369. "GPL-2.0-or-later"
  3370. ],
  3371. "authors": [
  3372. {
  3373. "name": "David Flores",
  3374. "email": "dmousex@gmail.com",
  3375. "homepage": "http://dmouse.net"
  3376. },
  3377. {
  3378. "name": "Jesus Manuel Olivas",
  3379. "email": "jesus.olivas@gmail.com",
  3380. "homepage": "http://jmolivas.com"
  3381. },
  3382. {
  3383. "name": "Eduardo Garcia",
  3384. "email": "enzo@enzolutions.com",
  3385. "homepage": "http://enzolutions.com/"
  3386. },
  3387. {
  3388. "name": "Omar Aguirre",
  3389. "email": "omersguchigu@gmail.com"
  3390. },
  3391. {
  3392. "name": "Drupal Console Contributors",
  3393. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3394. }
  3395. ],
  3396. "description": "Drupal Console Core",
  3397. "homepage": "http://drupalconsole.com/",
  3398. "keywords": [
  3399. "console",
  3400. "development",
  3401. "drupal",
  3402. "symfony"
  3403. ],
  3404. "time": "2020-11-30T01:45:57+00:00"
  3405. },
  3406. {
  3407. "name": "drupal/console-en",
  3408. "version": "v1.9.7",
  3409. "source": {
  3410. "type": "git",
  3411. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  3412. "reference": "7594601fff153c2799a62bd678ff80749baeee0c"
  3413. },
  3414. "dist": {
  3415. "type": "zip",
  3416. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/7594601fff153c2799a62bd678ff80749baeee0c",
  3417. "reference": "7594601fff153c2799a62bd678ff80749baeee0c",
  3418. "shasum": ""
  3419. },
  3420. "type": "library",
  3421. "notification-url": "https://packagist.org/downloads/",
  3422. "license": [
  3423. "GPL-2.0-or-later"
  3424. ],
  3425. "authors": [
  3426. {
  3427. "name": "David Flores",
  3428. "email": "dmousex@gmail.com",
  3429. "homepage": "http://dmouse.net"
  3430. },
  3431. {
  3432. "name": "Jesus Manuel Olivas",
  3433. "email": "jesus.olivas@gmail.com",
  3434. "homepage": "http://jmolivas.com"
  3435. },
  3436. {
  3437. "name": "Eduardo Garcia",
  3438. "email": "enzo@enzolutions.com",
  3439. "homepage": "http://enzolutions.com/"
  3440. },
  3441. {
  3442. "name": "Omar Aguirre",
  3443. "email": "omersguchigu@gmail.com"
  3444. },
  3445. {
  3446. "name": "Drupal Console Contributors",
  3447. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3448. }
  3449. ],
  3450. "description": "Drupal Console English Language",
  3451. "homepage": "http://drupalconsole.com/",
  3452. "keywords": [
  3453. "console",
  3454. "development",
  3455. "drupal",
  3456. "symfony"
  3457. ],
  3458. "time": "2020-08-15T03:34:54+00:00"
  3459. },
  3460. {
  3461. "name": "drupal/console-extend-plugin",
  3462. "version": "0.9.5",
  3463. "source": {
  3464. "type": "git",
  3465. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  3466. "reference": "eff6da99cfb5fe1fc60990672d2667c402eb3585"
  3467. },
  3468. "dist": {
  3469. "type": "zip",
  3470. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/eff6da99cfb5fe1fc60990672d2667c402eb3585",
  3471. "reference": "eff6da99cfb5fe1fc60990672d2667c402eb3585",
  3472. "shasum": ""
  3473. },
  3474. "require": {
  3475. "composer-plugin-api": "^1.0 || ^2.0",
  3476. "composer/installers": "^1.2",
  3477. "symfony/finder": "~3.0|^4.4",
  3478. "symfony/yaml": "~3.0|^4.4"
  3479. },
  3480. "type": "composer-plugin",
  3481. "extra": {
  3482. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  3483. },
  3484. "autoload": {
  3485. "psr-4": {
  3486. "Drupal\\Console\\Composer\\Plugin\\": "src"
  3487. }
  3488. },
  3489. "notification-url": "https://packagist.org/downloads/",
  3490. "license": [
  3491. "GPL-2.0+"
  3492. ],
  3493. "authors": [
  3494. {
  3495. "name": "Jesus Manuel Olivas",
  3496. "email": "jesus.olivas@gmail.com"
  3497. }
  3498. ],
  3499. "description": "Drupal Console Extend Plugin",
  3500. "time": "2020-11-18T00:15:28+00:00"
  3501. },
  3502. {
  3503. "name": "drupal/content_lock",
  3504. "version": "2.2.0",
  3505. "source": {
  3506. "type": "git",
  3507. "url": "https://git.drupalcode.org/project/content_lock.git",
  3508. "reference": "8.x-2.2"
  3509. },
  3510. "dist": {
  3511. "type": "zip",
  3512. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.2.zip",
  3513. "reference": "8.x-2.2",
  3514. "shasum": "9ea5810067c0df18879a16a19236e0cb46f9fba7"
  3515. },
  3516. "require": {
  3517. "drupal/core": "^8.8|^9.0"
  3518. },
  3519. "require-dev": {
  3520. "drupal/conflict": "^2.0@ALPHA",
  3521. "drupal/prefetch_cache": "dev-1.x"
  3522. },
  3523. "type": "drupal-module",
  3524. "extra": {
  3525. "drupal": {
  3526. "version": "8.x-2.2",
  3527. "datestamp": "1607936866",
  3528. "security-coverage": {
  3529. "status": "covered",
  3530. "message": "Covered by Drupal's security advisory policy"
  3531. }
  3532. }
  3533. },
  3534. "notification-url": "https://packages.drupal.org/8/downloads",
  3535. "license": [
  3536. "GPL-2.0-or-later"
  3537. ],
  3538. "authors": [
  3539. {
  3540. "name": "chr.fritsch",
  3541. "homepage": "https://www.drupal.org/user/2103716"
  3542. },
  3543. {
  3544. "name": "ergonlogic",
  3545. "homepage": "https://www.drupal.org/user/368613"
  3546. },
  3547. {
  3548. "name": "mfb",
  3549. "homepage": "https://www.drupal.org/user/12302"
  3550. },
  3551. {
  3552. "name": "pandaski",
  3553. "homepage": "https://www.drupal.org/user/1987218"
  3554. }
  3555. ],
  3556. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  3557. "homepage": "https://www.drupal.org/project/content_lock",
  3558. "support": {
  3559. "source": "https://git.drupalcode.org/project/content_lock"
  3560. }
  3561. },
  3562. {
  3563. "name": "drupal/context",
  3564. "version": "4.0.0-beta6",
  3565. "source": {
  3566. "type": "git",
  3567. "url": "https://git.drupalcode.org/project/context.git",
  3568. "reference": "8.x-4.0-beta6"
  3569. },
  3570. "dist": {
  3571. "type": "zip",
  3572. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta6.zip",
  3573. "reference": "8.x-4.0-beta6",
  3574. "shasum": "c377c12d8c23e8f39151f2da1d85d58b294033df"
  3575. },
  3576. "require": {
  3577. "drupal/core": "^8.8 || ^9"
  3578. },
  3579. "type": "drupal-module",
  3580. "extra": {
  3581. "drupal": {
  3582. "version": "8.x-4.0-beta6",
  3583. "datestamp": "1619440410",
  3584. "security-coverage": {
  3585. "status": "not-covered",
  3586. "message": "Beta releases are not covered by Drupal security advisories."
  3587. }
  3588. }
  3589. },
  3590. "notification-url": "https://packages.drupal.org/8/downloads",
  3591. "license": [
  3592. "MIT"
  3593. ],
  3594. "authors": [
  3595. {
  3596. "name": "Christoffer Palm",
  3597. "homepage": "http://www.oddhill.se/",
  3598. "email": "christoffer.palm@oddhill.se",
  3599. "role": "Developer"
  3600. },
  3601. {
  3602. "name": "Steven Jones",
  3603. "homepage": "https://www.drupal.org/user/99644"
  3604. },
  3605. {
  3606. "name": "alex_b",
  3607. "homepage": "https://www.drupal.org/user/53995"
  3608. },
  3609. {
  3610. "name": "boshtian",
  3611. "homepage": "https://www.drupal.org/user/1773456"
  3612. },
  3613. {
  3614. "name": "colan",
  3615. "homepage": "https://www.drupal.org/user/58704"
  3616. },
  3617. {
  3618. "name": "emanaton",
  3619. "homepage": "https://www.drupal.org/user/120853"
  3620. },
  3621. {
  3622. "name": "febbraro",
  3623. "homepage": "https://www.drupal.org/user/43670"
  3624. },
  3625. {
  3626. "name": "fizk",
  3627. "homepage": "https://www.drupal.org/user/473174"
  3628. },
  3629. {
  3630. "name": "hass",
  3631. "homepage": "https://www.drupal.org/user/85918"
  3632. },
  3633. {
  3634. "name": "hefox",
  3635. "homepage": "https://www.drupal.org/user/426416"
  3636. },
  3637. {
  3638. "name": "jmiccolis",
  3639. "homepage": "https://www.drupal.org/user/31731"
  3640. },
  3641. {
  3642. "name": "nedjo",
  3643. "homepage": "https://www.drupal.org/user/4481"
  3644. },
  3645. {
  3646. "name": "patricksettle",
  3647. "homepage": "https://www.drupal.org/user/26618"
  3648. },
  3649. {
  3650. "name": "paulocs",
  3651. "homepage": "https://www.drupal.org/user/3640109"
  3652. },
  3653. {
  3654. "name": "tekante",
  3655. "homepage": "https://www.drupal.org/user/640024"
  3656. },
  3657. {
  3658. "name": "yhahn",
  3659. "homepage": "https://www.drupal.org/user/264833"
  3660. }
  3661. ],
  3662. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3663. "homepage": "https://github.com/oddhill/context",
  3664. "keywords": [
  3665. "Drupal",
  3666. "block",
  3667. "conditions",
  3668. "context",
  3669. "visibility"
  3670. ],
  3671. "support": {
  3672. "source": "https://github.com/oddhill/context",
  3673. "issues": "https://github.com/oddhill/context/issues",
  3674. "docs": "https://github.com/oddhill/context"
  3675. }
  3676. },
  3677. {
  3678. "name": "drupal/core",
  3679. "version": "9.1.9",
  3680. "source": {
  3681. "type": "git",
  3682. "url": "https://github.com/drupal/core.git",
  3683. "reference": "2c649d5807f08f8c7945d1c6ffb4bb21d5c7849a"
  3684. },
  3685. "dist": {
  3686. "type": "zip",
  3687. "url": "https://api.github.com/repos/drupal/core/zipball/2c649d5807f08f8c7945d1c6ffb4bb21d5c7849a",
  3688. "reference": "2c649d5807f08f8c7945d1c6ffb4bb21d5c7849a",
  3689. "shasum": ""
  3690. },
  3691. "require": {
  3692. "asm89/stack-cors": "^1.1",
  3693. "composer/semver": "^3.0",
  3694. "doctrine/annotations": "^1.4",
  3695. "doctrine/reflection": "^1.1",
  3696. "egulias/email-validator": "^2.0",
  3697. "ext-date": "*",
  3698. "ext-dom": "*",
  3699. "ext-filter": "*",
  3700. "ext-gd": "*",
  3701. "ext-hash": "*",
  3702. "ext-json": "*",
  3703. "ext-pcre": "*",
  3704. "ext-pdo": "*",
  3705. "ext-session": "*",
  3706. "ext-simplexml": "*",
  3707. "ext-spl": "*",
  3708. "ext-tokenizer": "*",
  3709. "ext-xml": "*",
  3710. "guzzlehttp/guzzle": "^6.5.2",
  3711. "laminas/laminas-diactoros": "^2.1",
  3712. "laminas/laminas-feed": "^2.12",
  3713. "masterminds/html5": "^2.1",
  3714. "pear/archive_tar": "^1.4.12",
  3715. "php": ">=7.3.0",
  3716. "psr/log": "^1.0",
  3717. "stack/builder": "^1.0",
  3718. "symfony-cmf/routing": "^2.1",
  3719. "symfony/console": "^4.4",
  3720. "symfony/dependency-injection": "^4.4",
  3721. "symfony/event-dispatcher": "^4.4",
  3722. "symfony/http-foundation": "^4.4.7",
  3723. "symfony/http-kernel": "^4.4",
  3724. "symfony/polyfill-iconv": "^1.0",
  3725. "symfony/process": "^4.4",
  3726. "symfony/psr-http-message-bridge": "^2.0",
  3727. "symfony/routing": "^4.4",
  3728. "symfony/serializer": "^4.4",
  3729. "symfony/translation": "^4.4",
  3730. "symfony/validator": "^4.4",
  3731. "symfony/yaml": "^4.4",
  3732. "twig/twig": "^2.12.0",
  3733. "typo3/phar-stream-wrapper": "^3.1.3"
  3734. },
  3735. "conflict": {
  3736. "drush/drush": "<8.1.10"
  3737. },
  3738. "replace": {
  3739. "drupal/action": "self.version",
  3740. "drupal/aggregator": "self.version",
  3741. "drupal/automated_cron": "self.version",
  3742. "drupal/ban": "self.version",
  3743. "drupal/bartik": "self.version",
  3744. "drupal/basic_auth": "self.version",
  3745. "drupal/big_pipe": "self.version",
  3746. "drupal/block": "self.version",
  3747. "drupal/block_content": "self.version",
  3748. "drupal/book": "self.version",
  3749. "drupal/breakpoint": "self.version",
  3750. "drupal/ckeditor": "self.version",
  3751. "drupal/claro": "self.version",
  3752. "drupal/classy": "self.version",
  3753. "drupal/color": "self.version",
  3754. "drupal/comment": "self.version",
  3755. "drupal/config": "self.version",
  3756. "drupal/config_translation": "self.version",
  3757. "drupal/contact": "self.version",
  3758. "drupal/content_moderation": "self.version",
  3759. "drupal/content_translation": "self.version",
  3760. "drupal/contextual": "self.version",
  3761. "drupal/core-annotation": "self.version",
  3762. "drupal/core-assertion": "self.version",
  3763. "drupal/core-bridge": "self.version",
  3764. "drupal/core-class-finder": "self.version",
  3765. "drupal/core-datetime": "self.version",
  3766. "drupal/core-dependency-injection": "self.version",
  3767. "drupal/core-diff": "self.version",
  3768. "drupal/core-discovery": "self.version",
  3769. "drupal/core-event-dispatcher": "self.version",
  3770. "drupal/core-file-cache": "self.version",
  3771. "drupal/core-file-security": "self.version",
  3772. "drupal/core-filesystem": "self.version",
  3773. "drupal/core-front-matter": "self.version",
  3774. "drupal/core-gettext": "self.version",
  3775. "drupal/core-graph": "self.version",
  3776. "drupal/core-http-foundation": "self.version",
  3777. "drupal/core-php-storage": "self.version",
  3778. "drupal/core-plugin": "self.version",
  3779. "drupal/core-proxy-builder": "self.version",
  3780. "drupal/core-render": "self.version",
  3781. "drupal/core-serialization": "self.version",
  3782. "drupal/core-transliteration": "self.version",
  3783. "drupal/core-utility": "self.version",
  3784. "drupal/core-uuid": "self.version",
  3785. "drupal/core-version": "self.version",
  3786. "drupal/datetime": "self.version",
  3787. "drupal/datetime_range": "self.version",
  3788. "drupal/dblog": "self.version",
  3789. "drupal/dynamic_page_cache": "self.version",
  3790. "drupal/editor": "self.version",
  3791. "drupal/entity_reference": "self.version",
  3792. "drupal/field": "self.version",
  3793. "drupal/field_layout": "self.version",
  3794. "drupal/field_ui": "self.version",
  3795. "drupal/file": "self.version",
  3796. "drupal/filter": "self.version",
  3797. "drupal/forum": "self.version",
  3798. "drupal/hal": "self.version",
  3799. "drupal/help": "self.version",
  3800. "drupal/help_topics": "self.version",
  3801. "drupal/history": "self.version",
  3802. "drupal/image": "self.version",
  3803. "drupal/inline_form_errors": "self.version",
  3804. "drupal/jsonapi": "self.version",
  3805. "drupal/language": "self.version",
  3806. "drupal/layout_builder": "self.version",
  3807. "drupal/layout_discovery": "self.version",
  3808. "drupal/link": "self.version",
  3809. "drupal/locale": "self.version",
  3810. "drupal/media": "self.version",
  3811. "drupal/media_library": "self.version",
  3812. "drupal/menu_link_content": "self.version",
  3813. "drupal/menu_ui": "self.version",
  3814. "drupal/migrate": "self.version",
  3815. "drupal/migrate_drupal": "self.version",
  3816. "drupal/migrate_drupal_multilingual": "self.version",
  3817. "drupal/migrate_drupal_ui": "self.version",
  3818. "drupal/minimal": "self.version",
  3819. "drupal/node": "self.version",
  3820. "drupal/olivero": "self.version",
  3821. "drupal/options": "self.version",
  3822. "drupal/page_cache": "self.version",
  3823. "drupal/path": "self.version",
  3824. "drupal/path_alias": "self.version",
  3825. "drupal/quickedit": "self.version",
  3826. "drupal/rdf": "self.version",
  3827. "drupal/responsive_image": "self.version",
  3828. "drupal/rest": "self.version",
  3829. "drupal/search": "self.version",
  3830. "drupal/serialization": "self.version",
  3831. "drupal/settings_tray": "self.version",
  3832. "drupal/seven": "self.version",
  3833. "drupal/shortcut": "self.version",
  3834. "drupal/standard": "self.version",
  3835. "drupal/stark": "self.version",
  3836. "drupal/statistics": "self.version",
  3837. "drupal/syslog": "self.version",
  3838. "drupal/system": "self.version",
  3839. "drupal/taxonomy": "self.version",
  3840. "drupal/telephone": "self.version",
  3841. "drupal/text": "self.version",
  3842. "drupal/toolbar": "self.version",
  3843. "drupal/tour": "self.version",
  3844. "drupal/tracker": "self.version",
  3845. "drupal/update": "self.version",
  3846. "drupal/user": "self.version",
  3847. "drupal/views": "self.version",
  3848. "drupal/views_ui": "self.version",
  3849. "drupal/workflows": "self.version",
  3850. "drupal/workspaces": "self.version"
  3851. },
  3852. "type": "drupal-core",
  3853. "extra": {
  3854. "drupal-scaffold": {
  3855. "file-mapping": {
  3856. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  3857. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  3858. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  3859. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  3860. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  3861. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  3862. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  3863. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  3864. "[web-root]/index.php": "assets/scaffold/files/index.php",
  3865. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  3866. "[web-root]/README.txt": "assets/scaffold/files/drupal.README.txt",
  3867. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  3868. "[web-root]/update.php": "assets/scaffold/files/update.php",
  3869. "[web-root]/web.config": "assets/scaffold/files/web.config",
  3870. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  3871. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  3872. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  3873. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  3874. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  3875. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  3876. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  3877. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  3878. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  3879. }
  3880. }
  3881. },
  3882. "autoload": {
  3883. "psr-4": {
  3884. "Drupal\\Core\\": "lib/Drupal/Core",
  3885. "Drupal\\Component\\": "lib/Drupal/Component",
  3886. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
  3887. },
  3888. "classmap": [
  3889. "lib/Drupal.php",
  3890. "lib/Drupal/Component/DependencyInjection/Container.php",
  3891. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  3892. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  3893. "lib/Drupal/Component/Utility/Timer.php",
  3894. "lib/Drupal/Component/Utility/Unicode.php",
  3895. "lib/Drupal/Core/Cache/Cache.php",
  3896. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  3897. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  3898. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  3899. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  3900. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  3901. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  3902. "lib/Drupal/Core/Database/Connection.php",
  3903. "lib/Drupal/Core/Database/Database.php",
  3904. "lib/Drupal/Core/Database/Driver/mysql/Connection.php",
  3905. "lib/Drupal/Core/Database/Driver/pgsql/Connection.php",
  3906. "lib/Drupal/Core/Database/Driver/sqlite/Connection.php",
  3907. "lib/Drupal/Core/Database/Statement.php",
  3908. "lib/Drupal/Core/Database/StatementInterface.php",
  3909. "lib/Drupal/Core/DependencyInjection/Container.php",
  3910. "lib/Drupal/Core/DrupalKernel.php",
  3911. "lib/Drupal/Core/DrupalKernelInterface.php",
  3912. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  3913. "lib/Drupal/Core/Site/Settings.php"
  3914. ],
  3915. "files": [
  3916. "includes/bootstrap.inc"
  3917. ]
  3918. },
  3919. "notification-url": "https://packagist.org/downloads/",
  3920. "license": [
  3921. "GPL-2.0-or-later"
  3922. ],
  3923. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3924. "support": {
  3925. "source": "https://github.com/drupal/core/tree/9.1.9"
  3926. },
  3927. "time": "2021-05-25T09:18:28+00:00"
  3928. },
  3929. {
  3930. "name": "drupal/core-composer-scaffold",
  3931. "version": "9.1.4",
  3932. "source": {
  3933. "type": "git",
  3934. "url": "https://github.com/drupal/core-composer-scaffold.git",
  3935. "reference": "7b125516d6568b888945ee03ac2636dcced76e8d"
  3936. },
  3937. "dist": {
  3938. "type": "zip",
  3939. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/7b125516d6568b888945ee03ac2636dcced76e8d",
  3940. "reference": "7b125516d6568b888945ee03ac2636dcced76e8d",
  3941. "shasum": ""
  3942. },
  3943. "require": {
  3944. "composer-plugin-api": "^1 || ^2",
  3945. "php": ">=7.3.0"
  3946. },
  3947. "conflict": {
  3948. "drupal-composer/drupal-scaffold": "*"
  3949. },
  3950. "require-dev": {
  3951. "composer/composer": "^1.8@stable"
  3952. },
  3953. "type": "composer-plugin",
  3954. "extra": {
  3955. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  3956. "branch-alias": {
  3957. "dev-master": "1.0.x-dev"
  3958. }
  3959. },
  3960. "autoload": {
  3961. "psr-4": {
  3962. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  3963. }
  3964. },
  3965. "notification-url": "https://packagist.org/downloads/",
  3966. "license": [
  3967. "GPL-2.0-or-later"
  3968. ],
  3969. "description": "A flexible Composer project scaffold builder.",
  3970. "homepage": "https://www.drupal.org/project/drupal",
  3971. "keywords": [
  3972. "drupal"
  3973. ],
  3974. "time": "2020-08-07T22:30:13+00:00"
  3975. },
  3976. {
  3977. "name": "drupal/core-project-message",
  3978. "version": "9.1.4",
  3979. "source": {
  3980. "type": "git",
  3981. "url": "https://github.com/drupal/core-project-message.git",
  3982. "reference": "812d6da43dd49cc210af62e80fa92189e68e565a"
  3983. },
  3984. "dist": {
  3985. "type": "zip",
  3986. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/812d6da43dd49cc210af62e80fa92189e68e565a",
  3987. "reference": "812d6da43dd49cc210af62e80fa92189e68e565a",
  3988. "shasum": ""
  3989. },
  3990. "require": {
  3991. "composer-plugin-api": "^1.1 || ^2",
  3992. "php": ">=7.3.0"
  3993. },
  3994. "type": "composer-plugin",
  3995. "extra": {
  3996. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  3997. },
  3998. "autoload": {
  3999. "psr-4": {
  4000. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  4001. }
  4002. },
  4003. "notification-url": "https://packagist.org/downloads/",
  4004. "license": [
  4005. "GPL-2.0-or-later"
  4006. ],
  4007. "description": "Adds a message after Composer installation.",
  4008. "homepage": "https://www.drupal.org/project/drupal",
  4009. "keywords": [
  4010. "drupal"
  4011. ],
  4012. "time": "2020-09-14T13:40:36+00:00"
  4013. },
  4014. {
  4015. "name": "drupal/core-recommended",
  4016. "version": "9.1.9",
  4017. "source": {
  4018. "type": "git",
  4019. "url": "https://github.com/drupal/core-recommended.git",
  4020. "reference": "c29e4707ba567b7b80b86a8fa6aea0d0e50967b0"
  4021. },
  4022. "dist": {
  4023. "type": "zip",
  4024. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/c29e4707ba567b7b80b86a8fa6aea0d0e50967b0",
  4025. "reference": "c29e4707ba567b7b80b86a8fa6aea0d0e50967b0",
  4026. "shasum": ""
  4027. },
  4028. "require": {
  4029. "asm89/stack-cors": "1.3.0",
  4030. "composer/semver": "3.2.2",
  4031. "doctrine/annotations": "1.11.1",
  4032. "doctrine/lexer": "1.2.1",
  4033. "doctrine/reflection": "1.2.2",
  4034. "drupal/core": "9.1.9",
  4035. "egulias/email-validator": "2.1.22",
  4036. "guzzlehttp/guzzle": "6.5.5",
  4037. "guzzlehttp/promises": "1.4.0",
  4038. "guzzlehttp/psr7": "1.7.0",
  4039. "laminas/laminas-diactoros": "2.5.0",
  4040. "laminas/laminas-escaper": "2.7.0",
  4041. "laminas/laminas-feed": "2.13.0",
  4042. "laminas/laminas-stdlib": "3.3.0",
  4043. "laminas/laminas-zendframework-bridge": "1.1.1",
  4044. "masterminds/html5": "2.7.4",
  4045. "pear/archive_tar": "1.4.13",
  4046. "pear/console_getopt": "v1.4.3",
  4047. "pear/pear-core-minimal": "v1.10.10",
  4048. "pear/pear_exception": "v1.0.1",
  4049. "psr/container": "1.0.0",
  4050. "psr/http-factory": "1.0.1",
  4051. "psr/http-message": "1.0.1",
  4052. "psr/log": "1.1.3",
  4053. "ralouphie/getallheaders": "3.0.3",
  4054. "stack/builder": "v1.0.6",
  4055. "symfony-cmf/routing": "2.3.3",
  4056. "symfony/console": "v4.4.19",
  4057. "symfony/debug": "v4.4.19",
  4058. "symfony/dependency-injection": "v4.4.19",
  4059. "symfony/error-handler": "v4.4.19",
  4060. "symfony/event-dispatcher": "v4.4.19",
  4061. "symfony/event-dispatcher-contracts": "v1.1.9",
  4062. "symfony/http-client-contracts": "v2.3.1",
  4063. "symfony/http-foundation": "v4.4.19",
  4064. "symfony/http-kernel": "v4.4.19",
  4065. "symfony/mime": "v5.1.11",
  4066. "symfony/polyfill-ctype": "v1.20.0",
  4067. "symfony/polyfill-iconv": "v1.20.0",
  4068. "symfony/polyfill-intl-idn": "v1.20.0",
  4069. "symfony/polyfill-intl-normalizer": "v1.20.0",
  4070. "symfony/polyfill-mbstring": "v1.20.0",
  4071. "symfony/polyfill-php80": "v1.20.0",
  4072. "symfony/process": "v4.4.19",
  4073. "symfony/psr-http-message-bridge": "v2.0.2",
  4074. "symfony/routing": "v4.4.19",
  4075. "symfony/serializer": "v4.4.19",
  4076. "symfony/service-contracts": "v2.2.0",
  4077. "symfony/translation": "v4.4.19",
  4078. "symfony/translation-contracts": "v2.3.0",
  4079. "symfony/validator": "v4.4.19",
  4080. "symfony/var-dumper": "v5.1.11",
  4081. "symfony/yaml": "v4.4.19",
  4082. "twig/twig": "v2.14.1",
  4083. "typo3/phar-stream-wrapper": "v3.1.6"
  4084. },
  4085. "conflict": {
  4086. "webflo/drupal-core-strict": "*"
  4087. },
  4088. "type": "metapackage",
  4089. "notification-url": "https://packagist.org/downloads/",
  4090. "license": [
  4091. "GPL-2.0-or-later"
  4092. ],
  4093. "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.",
  4094. "support": {
  4095. "source": "https://github.com/drupal/core-recommended/tree/9.1.9"
  4096. },
  4097. "time": "2021-05-25T09:18:28+00:00"
  4098. },
  4099. {
  4100. "name": "drupal/cshs",
  4101. "version": "dev-1.x",
  4102. "source": {
  4103. "type": "git",
  4104. "url": "https://git.drupalcode.org/project/cshs.git",
  4105. "reference": "537e7fef494c71cfa59d8d90849cbf1beee80e49"
  4106. },
  4107. "require": {
  4108. "drupal/core": "^8 || ^9"
  4109. },
  4110. "type": "drupal-module",
  4111. "extra": {
  4112. "branch-alias": {
  4113. "dev-1.x": "1.x-dev"
  4114. },
  4115. "drupal": {
  4116. "version": "8.x-1.2+4-dev",
  4117. "datestamp": "1607678639",
  4118. "security-coverage": {
  4119. "status": "not-covered",
  4120. "message": "Dev releases are not covered by Drupal security advisories."
  4121. }
  4122. }
  4123. },
  4124. "notification-url": "https://packages.drupal.org/8/downloads",
  4125. "license": [
  4126. "GPL-2.0-or-later"
  4127. ],
  4128. "authors": [
  4129. {
  4130. "name": "Walter Jenner",
  4131. "homepage": "https://drupal.org/u/valderama"
  4132. },
  4133. {
  4134. "name": "Sergii Bondarenko",
  4135. "homepage": "https://drupal.org/u/BR0kEN",
  4136. "email": "sb@firstvector.org"
  4137. },
  4138. {
  4139. "name": "Daneel Cruz",
  4140. "homepage": "https://drupal.org/u/daneelcm"
  4141. },
  4142. {
  4143. "name": "Purushotam Rai",
  4144. "homepage": "https://drupal.org/u/purushotam.rai"
  4145. }
  4146. ],
  4147. "description": "A simple client-side hierarchical select widget for taxonomy terms.",
  4148. "homepage": "https://www.drupal.org/project/cshs",
  4149. "keywords": [
  4150. "client-side-select",
  4151. "hierarchical-select",
  4152. "module",
  4153. "select",
  4154. "taxonomy"
  4155. ],
  4156. "support": {
  4157. "source": "https://git.drupalcode.org/project/cshs",
  4158. "issues": "https://www.drupal.org/project/issues/cshs"
  4159. },
  4160. "time": "2020-12-11T09:23:35+00:00"
  4161. },
  4162. {
  4163. "name": "drupal/ctools",
  4164. "version": "3.7.0",
  4165. "source": {
  4166. "type": "git",
  4167. "url": "https://git.drupalcode.org/project/ctools.git",
  4168. "reference": "8.x-3.7"
  4169. },
  4170. "dist": {
  4171. "type": "zip",
  4172. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.7.zip",
  4173. "reference": "8.x-3.7",
  4174. "shasum": "b11c0981a1d2ab3cc9e8e614a337d8e2a2a70c0e"
  4175. },
  4176. "require": {
  4177. "drupal/core": "^8.8 || ^9"
  4178. },
  4179. "type": "drupal-module",
  4180. "extra": {
  4181. "drupal": {
  4182. "version": "8.x-3.7",
  4183. "datestamp": "1623860918",
  4184. "security-coverage": {
  4185. "status": "covered",
  4186. "message": "Covered by Drupal's security advisory policy"
  4187. }
  4188. },
  4189. "branch-alias": {
  4190. "dev-8.x-3.x": "3.x-dev"
  4191. }
  4192. },
  4193. "notification-url": "https://packages.drupal.org/8/downloads",
  4194. "license": [
  4195. "GPL-2.0-or-later"
  4196. ],
  4197. "authors": [
  4198. {
  4199. "name": "Kris Vanderwater (EclipseGc)",
  4200. "homepage": "https://www.drupal.org/u/eclipsegc",
  4201. "role": "Maintainer"
  4202. },
  4203. {
  4204. "name": "Jakob Perry (japerry)",
  4205. "homepage": "https://www.drupal.org/u/japerry",
  4206. "role": "Maintainer"
  4207. },
  4208. {
  4209. "name": "Tim Plunkett (tim.plunkett)",
  4210. "homepage": "https://www.drupal.org/u/timplunkett",
  4211. "role": "Maintainer"
  4212. },
  4213. {
  4214. "name": "James Gilliland (neclimdul)",
  4215. "homepage": "https://www.drupal.org/u/neclimdul",
  4216. "role": "Maintainer"
  4217. },
  4218. {
  4219. "name": "Daniel Wehner (dawehner)",
  4220. "homepage": "https://www.drupal.org/u/dawehner",
  4221. "role": "Maintainer"
  4222. },
  4223. {
  4224. "name": "joelpittet",
  4225. "homepage": "https://www.drupal.org/user/160302"
  4226. },
  4227. {
  4228. "name": "merlinofchaos",
  4229. "homepage": "https://www.drupal.org/user/26979"
  4230. },
  4231. {
  4232. "name": "neclimdul",
  4233. "homepage": "https://www.drupal.org/user/48673"
  4234. },
  4235. {
  4236. "name": "sdboyer",
  4237. "homepage": "https://www.drupal.org/user/146719"
  4238. },
  4239. {
  4240. "name": "sun",
  4241. "homepage": "https://www.drupal.org/user/54136"
  4242. },
  4243. {
  4244. "name": "tim.plunkett",
  4245. "homepage": "https://www.drupal.org/user/241634"
  4246. }
  4247. ],
  4248. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  4249. "homepage": "https://www.drupal.org/project/ctools",
  4250. "support": {
  4251. "source": "https://git.drupalcode.org/project/ctools",
  4252. "issues": "https://www.drupal.org/project/issues/ctools"
  4253. }
  4254. },
  4255. {
  4256. "name": "drupal/date_range_formatter",
  4257. "version": "dev-9.0.x",
  4258. "source": {
  4259. "type": "git",
  4260. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  4261. "reference": "c34acb20c37e6210099bf3080352a6da7227b867"
  4262. },
  4263. "require": {
  4264. "drupal/core": "^8 || ^9"
  4265. },
  4266. "type": "drupal-module",
  4267. "extra": {
  4268. "branch-alias": {
  4269. "dev-9.0.x": "9.0.x-dev"
  4270. },
  4271. "drupal": {
  4272. "version": "9.0.x-dev",
  4273. "datestamp": "1589956448",
  4274. "security-coverage": {
  4275. "status": "not-covered",
  4276. "message": "Dev releases are not covered by Drupal security advisories."
  4277. }
  4278. }
  4279. },
  4280. "notification-url": "https://packages.drupal.org/8/downloads",
  4281. "license": [
  4282. "GPL-2.0-or-later"
  4283. ],
  4284. "authors": [
  4285. {
  4286. "name": "maximpodorov",
  4287. "homepage": "https://www.drupal.org/user/515310"
  4288. },
  4289. {
  4290. "name": "sudishth",
  4291. "homepage": "https://www.drupal.org/user/1440562"
  4292. }
  4293. ],
  4294. "description": "Formats date ranges.",
  4295. "homepage": "https://www.drupal.org/project/date_range_formatter",
  4296. "support": {
  4297. "source": "https://git.drupalcode.org/project/date_range_formatter"
  4298. },
  4299. "time": "2020-05-20T06:32:37+00:00"
  4300. },
  4301. {
  4302. "name": "drupal/devel",
  4303. "version": "4.1.1",
  4304. "source": {
  4305. "type": "git",
  4306. "url": "https://git.drupalcode.org/project/devel.git",
  4307. "reference": "4.1.1"
  4308. },
  4309. "dist": {
  4310. "type": "zip",
  4311. "url": "https://ftp.drupal.org/files/projects/devel-4.1.1.zip",
  4312. "reference": "4.1.1",
  4313. "shasum": "88e5d49dda26a3136291ecd97bc6c8e897b24198"
  4314. },
  4315. "require": {
  4316. "doctrine/common": "^2.7",
  4317. "drupal/core": "^8.8 || ^9",
  4318. "symfony/var-dumper": "^4 || ^5"
  4319. },
  4320. "conflict": {
  4321. "kint-php/kint": "<3"
  4322. },
  4323. "require-dev": {
  4324. "drush/drush": "^10"
  4325. },
  4326. "suggest": {
  4327. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  4328. },
  4329. "type": "drupal-module",
  4330. "extra": {
  4331. "drupal": {
  4332. "version": "4.1.1",
  4333. "datestamp": "1609419527",
  4334. "security-coverage": {
  4335. "status": "covered",
  4336. "message": "Covered by Drupal's security advisory policy"
  4337. }
  4338. },
  4339. "drush": {
  4340. "services": {
  4341. "drush.services.yml": "^9 || ^10"
  4342. }
  4343. }
  4344. },
  4345. "notification-url": "https://packages.drupal.org/8/downloads",
  4346. "license": [
  4347. "GPL-2.0-or-later"
  4348. ],
  4349. "authors": [
  4350. {
  4351. "name": "drupalspoons",
  4352. "homepage": "https://www.drupal.org/user/3647684"
  4353. },
  4354. {
  4355. "name": "moshe weitzman",
  4356. "homepage": "https://www.drupal.org/user/23"
  4357. }
  4358. ],
  4359. "description": "Various blocks, pages, and functions for developers.",
  4360. "homepage": "https://www.drupal.org/project/devel",
  4361. "support": {
  4362. "source": "https://gitlab.com/drupalspoons/devel",
  4363. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  4364. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  4365. }
  4366. },
  4367. {
  4368. "name": "drupal/domain",
  4369. "version": "dev-1.x",
  4370. "source": {
  4371. "type": "git",
  4372. "url": "https://git.drupalcode.org/project/domain.git",
  4373. "reference": "bb4973dd3d7ecee279dcf521c05eb6a5589cf05b"
  4374. },
  4375. "require": {
  4376. "drupal/core": "^8 || ^9"
  4377. },
  4378. "require-dev": {
  4379. "drupal/domain_access": "*",
  4380. "drupal/domain_config": "*"
  4381. },
  4382. "type": "drupal-module",
  4383. "extra": {
  4384. "branch-alias": {
  4385. "dev-1.x": "1.x-dev"
  4386. },
  4387. "drupal": {
  4388. "version": "8.x-1.x-dev",
  4389. "datestamp": "1603119924",
  4390. "security-coverage": {
  4391. "status": "not-covered",
  4392. "message": "Dev releases are not covered by Drupal security advisories."
  4393. }
  4394. }
  4395. },
  4396. "notification-url": "https://packages.drupal.org/8/downloads",
  4397. "license": [
  4398. "GPL-2.0-or-later"
  4399. ],
  4400. "authors": [
  4401. {
  4402. "name": "agentrickard",
  4403. "homepage": "https://www.drupal.org/user/20975"
  4404. },
  4405. {
  4406. "name": "nonsie",
  4407. "homepage": "https://www.drupal.org/user/29899"
  4408. }
  4409. ],
  4410. "description": "Creates domain records within a Drupal installation.",
  4411. "homepage": "https://www.drupal.org/project/domain",
  4412. "support": {
  4413. "source": "https://git.drupalcode.org/project/domain"
  4414. },
  4415. "time": "2020-11-18T18:57:19+00:00"
  4416. },
  4417. {
  4418. "name": "drupal/domain_alias",
  4419. "version": "dev-1.x",
  4420. "require": {
  4421. "drupal/core": "^8 || ^9",
  4422. "drupal/domain": "*"
  4423. },
  4424. "type": "metapackage",
  4425. "extra": {
  4426. "branch-alias": {
  4427. "dev-1.x": "1.x-dev"
  4428. },
  4429. "drupal": {
  4430. "version": "8.x-1.x-dev",
  4431. "datestamp": "1603119924",
  4432. "security-coverage": {
  4433. "status": "not-covered",
  4434. "message": "Dev releases are not covered by Drupal security advisories."
  4435. }
  4436. }
  4437. },
  4438. "notification-url": "https://packages.drupal.org/8/downloads",
  4439. "license": [
  4440. "GPL-2.0-or-later"
  4441. ],
  4442. "authors": [
  4443. {
  4444. "name": "agentrickard",
  4445. "homepage": "https://www.drupal.org/user/20975"
  4446. },
  4447. {
  4448. "name": "nonsie",
  4449. "homepage": "https://www.drupal.org/user/29899"
  4450. }
  4451. ],
  4452. "description": "Maps multiple host requests to a single domain record.",
  4453. "homepage": "https://www.drupal.org/project/domain",
  4454. "support": {
  4455. "source": "https://git.drupalcode.org/project/domain"
  4456. }
  4457. },
  4458. {
  4459. "name": "drupal/domain_config",
  4460. "version": "dev-1.x",
  4461. "require": {
  4462. "drupal/core": "^8 || ^9",
  4463. "drupal/domain": "*"
  4464. },
  4465. "type": "metapackage",
  4466. "extra": {
  4467. "branch-alias": {
  4468. "dev-1.x": "1.x-dev"
  4469. },
  4470. "drupal": {
  4471. "version": "8.x-1.x-dev",
  4472. "datestamp": "1603119924",
  4473. "security-coverage": {
  4474. "status": "not-covered",
  4475. "message": "Dev releases are not covered by Drupal security advisories."
  4476. }
  4477. }
  4478. },
  4479. "notification-url": "https://packages.drupal.org/8/downloads",
  4480. "license": [
  4481. "GPL-2.0-or-later"
  4482. ],
  4483. "authors": [
  4484. {
  4485. "name": "agentrickard",
  4486. "homepage": "https://www.drupal.org/user/20975"
  4487. },
  4488. {
  4489. "name": "nonsie",
  4490. "homepage": "https://www.drupal.org/user/29899"
  4491. }
  4492. ],
  4493. "description": "Allows domain specific configuration.",
  4494. "homepage": "https://www.drupal.org/project/domain",
  4495. "support": {
  4496. "source": "https://git.drupalcode.org/project/domain"
  4497. }
  4498. },
  4499. {
  4500. "name": "drupal/domain_site_settings",
  4501. "version": "dev-1.x",
  4502. "source": {
  4503. "type": "git",
  4504. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  4505. "reference": "b3177fc7257cae13fe9c6ff6f65d86257a194d84"
  4506. },
  4507. "require": {
  4508. "drupal/core": "^8 || ^9",
  4509. "drupal/domain": "*",
  4510. "drupal/domain_config": "*"
  4511. },
  4512. "type": "drupal-module",
  4513. "extra": {
  4514. "branch-alias": {
  4515. "dev-1.x": "1.x-dev"
  4516. },
  4517. "drupal": {
  4518. "version": "8.x-1.3+7-dev",
  4519. "datestamp": "1584297727",
  4520. "security-coverage": {
  4521. "status": "not-covered",
  4522. "message": "Dev releases are not covered by Drupal security advisories."
  4523. }
  4524. }
  4525. },
  4526. "notification-url": "https://packages.drupal.org/8/downloads",
  4527. "license": [
  4528. "GPL-2.0+"
  4529. ],
  4530. "authors": [
  4531. {
  4532. "name": "aloknarwaria",
  4533. "homepage": "https://www.drupal.org/user/906640"
  4534. },
  4535. {
  4536. "name": "malaynayak",
  4537. "homepage": "https://www.drupal.org/user/3529755"
  4538. }
  4539. ],
  4540. "description": "Basic Site Setting for Domains.",
  4541. "homepage": "https://www.drupal.org/project/domain_site_settings",
  4542. "keywords": [
  4543. "Drupal"
  4544. ],
  4545. "support": {
  4546. "source": "http://cgit.drupalcode.org/domain_site_settings",
  4547. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  4548. },
  4549. "time": "2020-03-15T18:41:41+00:00"
  4550. },
  4551. {
  4552. "name": "drupal/email_registration",
  4553. "version": "1.1.0",
  4554. "source": {
  4555. "type": "git",
  4556. "url": "https://git.drupalcode.org/project/email_registration.git",
  4557. "reference": "8.x-1.1"
  4558. },
  4559. "dist": {
  4560. "type": "zip",
  4561. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.1.zip",
  4562. "reference": "8.x-1.1",
  4563. "shasum": "cc0eef597216a6d025d9017df104f2693b029f96"
  4564. },
  4565. "require": {
  4566. "drupal/core": "^8.7.7 || ^9"
  4567. },
  4568. "conflict": {
  4569. "drupal/commerce": "<2.12"
  4570. },
  4571. "require-dev": {
  4572. "drupal/commerce": "^2.0"
  4573. },
  4574. "type": "drupal-module",
  4575. "extra": {
  4576. "drupal": {
  4577. "version": "8.x-1.1",
  4578. "datestamp": "1592317072",
  4579. "security-coverage": {
  4580. "status": "covered",
  4581. "message": "Covered by Drupal's security advisory policy"
  4582. }
  4583. }
  4584. },
  4585. "notification-url": "https://packages.drupal.org/8/downloads",
  4586. "license": [
  4587. "GPL-2.0-or-later"
  4588. ],
  4589. "authors": [
  4590. {
  4591. "name": "Greg Knaddison (greggles)",
  4592. "homepage": "https://www.drupal.org/u/greggles",
  4593. "role": "Maintainer"
  4594. },
  4595. {
  4596. "name": "Andrey Postnikov (andypost)",
  4597. "homepage": "https://www.drupal.org/u/andypost",
  4598. "role": "Maintainer"
  4599. },
  4600. {
  4601. "name": "Chris Herberte",
  4602. "homepage": "https://www.drupal.org/u/chris-herberte",
  4603. "role": "Maintainer"
  4604. },
  4605. {
  4606. "name": "Moshe Weitzman (moshe weitzman)",
  4607. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  4608. "role": "Maintainer"
  4609. }
  4610. ],
  4611. "description": "Allows users to register with an email address as their username.",
  4612. "homepage": "https://www.drupal.org/project/email_registration",
  4613. "support": {
  4614. "source": "https://git.drupalcode.org/project/email_registration",
  4615. "issues": "http://drupal.org/project/issues/email_registration"
  4616. }
  4617. },
  4618. {
  4619. "name": "drupal/embed",
  4620. "version": "1.4.0",
  4621. "source": {
  4622. "type": "git",
  4623. "url": "https://git.drupalcode.org/project/embed.git",
  4624. "reference": "8.x-1.4"
  4625. },
  4626. "dist": {
  4627. "type": "zip",
  4628. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.4.zip",
  4629. "reference": "8.x-1.4",
  4630. "shasum": "09a2bda039bfbb3fff01c91964384bf3d924b8c5"
  4631. },
  4632. "require": {
  4633. "drupal/core": "^8.7.7 || ^9"
  4634. },
  4635. "type": "drupal-module",
  4636. "extra": {
  4637. "drupal": {
  4638. "version": "8.x-1.4",
  4639. "datestamp": "1590176831",
  4640. "security-coverage": {
  4641. "status": "covered",
  4642. "message": "Covered by Drupal's security advisory policy"
  4643. }
  4644. }
  4645. },
  4646. "notification-url": "https://packages.drupal.org/8/downloads",
  4647. "license": [
  4648. "GPL-2.0-or-later"
  4649. ],
  4650. "authors": [
  4651. {
  4652. "name": "Dave Reid",
  4653. "homepage": "https://www.drupal.org/user/53892"
  4654. },
  4655. {
  4656. "name": "Devin Carlson",
  4657. "homepage": "https://www.drupal.org/user/290182"
  4658. },
  4659. {
  4660. "name": "Drupal Media Team",
  4661. "homepage": "https://www.drupal.org/user/3260690"
  4662. },
  4663. {
  4664. "name": "cs_shadow",
  4665. "homepage": "https://www.drupal.org/user/2828287"
  4666. },
  4667. {
  4668. "name": "phenaproxima",
  4669. "homepage": "https://www.drupal.org/user/205645"
  4670. },
  4671. {
  4672. "name": "slashrsm",
  4673. "homepage": "https://www.drupal.org/user/744628"
  4674. }
  4675. ],
  4676. "description": "Provides a framework for different types of embeds in text editors.",
  4677. "homepage": "https://www.drupal.org/project/embed",
  4678. "support": {
  4679. "source": "https://git.drupalcode.org/project/embed"
  4680. }
  4681. },
  4682. {
  4683. "name": "drupal/entity",
  4684. "version": "1.2.0",
  4685. "source": {
  4686. "type": "git",
  4687. "url": "https://git.drupalcode.org/project/entity.git",
  4688. "reference": "8.x-1.2"
  4689. },
  4690. "dist": {
  4691. "type": "zip",
  4692. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.2.zip",
  4693. "reference": "8.x-1.2",
  4694. "shasum": "7e7cb12ea65d9f986b59935eda316387cf511079"
  4695. },
  4696. "require": {
  4697. "drupal/core": "^8.8 || ^9"
  4698. },
  4699. "type": "drupal-module",
  4700. "extra": {
  4701. "drupal": {
  4702. "version": "8.x-1.2",
  4703. "datestamp": "1606399149",
  4704. "security-coverage": {
  4705. "status": "covered",
  4706. "message": "Covered by Drupal's security advisory policy"
  4707. }
  4708. }
  4709. },
  4710. "notification-url": "https://packages.drupal.org/8/downloads",
  4711. "license": [
  4712. "GPL-2.0-or-later"
  4713. ],
  4714. "authors": [
  4715. {
  4716. "name": "Berdir",
  4717. "homepage": "https://www.drupal.org/user/214652"
  4718. },
  4719. {
  4720. "name": "bojanz",
  4721. "homepage": "https://www.drupal.org/user/86106"
  4722. },
  4723. {
  4724. "name": "dawehner",
  4725. "homepage": "https://www.drupal.org/user/99340"
  4726. },
  4727. {
  4728. "name": "dixon_",
  4729. "homepage": "https://www.drupal.org/user/239911"
  4730. },
  4731. {
  4732. "name": "fago",
  4733. "homepage": "https://www.drupal.org/user/16747"
  4734. },
  4735. {
  4736. "name": "mglaman",
  4737. "homepage": "https://www.drupal.org/user/2416470"
  4738. }
  4739. ],
  4740. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  4741. "homepage": "http://drupal.org/project/entity",
  4742. "support": {
  4743. "source": "https://git.drupalcode.org/project/entity"
  4744. }
  4745. },
  4746. {
  4747. "name": "drupal/entity_browser",
  4748. "version": "2.6.0",
  4749. "source": {
  4750. "type": "git",
  4751. "url": "https://git.drupalcode.org/project/entity_browser.git",
  4752. "reference": "8.x-2.6"
  4753. },
  4754. "dist": {
  4755. "type": "zip",
  4756. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.6.zip",
  4757. "reference": "8.x-2.6",
  4758. "shasum": "95cad4ce9620ccb4f02afa0e8b8bbf7c73fc5aac"
  4759. },
  4760. "require": {
  4761. "drupal/core": "^8.8 || ^9"
  4762. },
  4763. "require-dev": {
  4764. "drupal/embed": "~1.0",
  4765. "drupal/entity_embed": "1.x-dev",
  4766. "drupal/entity_reference_revisions": "1.x-dev",
  4767. "drupal/entityqueue": "1.x-dev",
  4768. "drupal/inline_entity_form": "1.x-dev",
  4769. "drupal/paragraphs": "1.x-dev",
  4770. "drupal/token": "~1.0"
  4771. },
  4772. "type": "drupal-module",
  4773. "extra": {
  4774. "drupal": {
  4775. "version": "8.x-2.6",
  4776. "datestamp": "1624401306",
  4777. "security-coverage": {
  4778. "status": "covered",
  4779. "message": "Covered by Drupal's security advisory policy"
  4780. }
  4781. }
  4782. },
  4783. "notification-url": "https://packages.drupal.org/8/downloads",
  4784. "license": [
  4785. "GPL-2.0+"
  4786. ],
  4787. "authors": [
  4788. {
  4789. "name": "Janez Urevc",
  4790. "homepage": "https://github.com/slashrsm",
  4791. "role": "Maintainer"
  4792. },
  4793. {
  4794. "name": "Primoz Hmeljak",
  4795. "homepage": "https://github.com/primsi",
  4796. "role": "Maintainer"
  4797. },
  4798. {
  4799. "name": "See other contributors",
  4800. "homepage": "https://www.drupal.org/node/1943336/committers",
  4801. "role": "contributor"
  4802. },
  4803. {
  4804. "name": "Drupal Media Team",
  4805. "homepage": "https://www.drupal.org/user/3260690"
  4806. },
  4807. {
  4808. "name": "Primsi",
  4809. "homepage": "https://www.drupal.org/user/282629"
  4810. },
  4811. {
  4812. "name": "marcingy",
  4813. "homepage": "https://www.drupal.org/user/77320"
  4814. },
  4815. {
  4816. "name": "oknate",
  4817. "homepage": "https://www.drupal.org/user/471638"
  4818. },
  4819. {
  4820. "name": "samuel.mortenson",
  4821. "homepage": "https://www.drupal.org/user/2582268"
  4822. },
  4823. {
  4824. "name": "slashrsm",
  4825. "homepage": "https://www.drupal.org/user/744628"
  4826. }
  4827. ],
  4828. "description": "Entity browsing and selecting component.",
  4829. "homepage": "http://drupal.org/project/entity_browser",
  4830. "support": {
  4831. "source": "https://git.drupalcode.org/project/entity_browser",
  4832. "issues": "https://www.drupal.org/project/issues/entity_browser",
  4833. "irc": "irc://irc.freenode.org/drupal-contribute"
  4834. }
  4835. },
  4836. {
  4837. "name": "drupal/entity_browser_enhanced",
  4838. "version": "1.0.0",
  4839. "source": {
  4840. "type": "git",
  4841. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  4842. "reference": "8.x-1.0"
  4843. },
  4844. "dist": {
  4845. "type": "zip",
  4846. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-8.x-1.0.zip",
  4847. "reference": "8.x-1.0",
  4848. "shasum": "c309e3c3eb65c358fafc577de68f3cbb8c118865"
  4849. },
  4850. "require": {
  4851. "drupal/core": "^8 || ^9",
  4852. "drupal/entity_browser": "~2.0"
  4853. },
  4854. "type": "drupal-module",
  4855. "extra": {
  4856. "drupal": {
  4857. "version": "8.x-1.0",
  4858. "datestamp": "1581940931",
  4859. "security-coverage": {
  4860. "status": "covered",
  4861. "message": "Covered by Drupal's security advisory policy"
  4862. }
  4863. },
  4864. "branch-alias": {
  4865. "dev-8.x-1.x": "8.1.x-dev"
  4866. }
  4867. },
  4868. "notification-url": "https://packages.drupal.org/8/downloads",
  4869. "license": [
  4870. "GPL-2.0-or-later"
  4871. ],
  4872. "authors": [
  4873. {
  4874. "name": "Vardot",
  4875. "homepage": "https://www.drupal.org/vardot",
  4876. "role": "Maintainer"
  4877. },
  4878. {
  4879. "name": "RajabNatshah",
  4880. "homepage": "https://www.drupal.org/user/1414312"
  4881. }
  4882. ],
  4883. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  4884. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  4885. "support": {
  4886. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  4887. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  4888. }
  4889. },
  4890. {
  4891. "name": "drupal/entity_clone",
  4892. "version": "1.0.0-beta4",
  4893. "source": {
  4894. "type": "git",
  4895. "url": "https://git.drupalcode.org/project/entity_clone.git",
  4896. "reference": "8.x-1.0-beta4"
  4897. },
  4898. "dist": {
  4899. "type": "zip",
  4900. "url": "https://ftp.drupal.org/files/projects/entity_clone-8.x-1.0-beta4.zip",
  4901. "reference": "8.x-1.0-beta4",
  4902. "shasum": "4568ca25634d4ce4f142f56156259ba1f0d9f3c1"
  4903. },
  4904. "require": {
  4905. "drupal/core": "^8 || ^9"
  4906. },
  4907. "type": "drupal-module",
  4908. "extra": {
  4909. "drupal": {
  4910. "version": "8.x-1.0-beta4",
  4911. "datestamp": "1588605099",
  4912. "security-coverage": {
  4913. "status": "not-covered",
  4914. "message": "Beta releases are not covered by Drupal security advisories."
  4915. }
  4916. }
  4917. },
  4918. "notification-url": "https://packages.drupal.org/8/downloads",
  4919. "license": [
  4920. "GPL-2.0-or-later"
  4921. ],
  4922. "authors": [
  4923. {
  4924. "name": "vpeltot",
  4925. "homepage": "https://www.drupal.org/user/1361586"
  4926. }
  4927. ],
  4928. "description": "Add a clone action for all entities",
  4929. "homepage": "https://www.drupal.org/project/entity_clone",
  4930. "support": {
  4931. "source": "https://git.drupalcode.org/project/entity_clone"
  4932. }
  4933. },
  4934. {
  4935. "name": "drupal/entity_reference_revisions",
  4936. "version": "1.9.0",
  4937. "source": {
  4938. "type": "git",
  4939. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  4940. "reference": "8.x-1.9"
  4941. },
  4942. "dist": {
  4943. "type": "zip",
  4944. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.9.zip",
  4945. "reference": "8.x-1.9",
  4946. "shasum": "e1c51bdea495eb3b458130d6f0a00c347f5637df"
  4947. },
  4948. "require": {
  4949. "drupal/core": "^8.7.7 || ^9"
  4950. },
  4951. "require-dev": {
  4952. "drupal/diff": "1.x-dev"
  4953. },
  4954. "type": "drupal-module",
  4955. "extra": {
  4956. "drupal": {
  4957. "version": "8.x-1.9",
  4958. "datestamp": "1614805871",
  4959. "security-coverage": {
  4960. "status": "covered",
  4961. "message": "Covered by Drupal's security advisory policy"
  4962. }
  4963. }
  4964. },
  4965. "notification-url": "https://packages.drupal.org/8/downloads",
  4966. "license": [
  4967. "GPL-2.0-or-later"
  4968. ],
  4969. "authors": [
  4970. {
  4971. "name": "Berdir",
  4972. "homepage": "https://www.drupal.org/user/214652"
  4973. },
  4974. {
  4975. "name": "Frans",
  4976. "homepage": "https://www.drupal.org/user/514222"
  4977. },
  4978. {
  4979. "name": "jeroen.b",
  4980. "homepage": "https://www.drupal.org/user/1853532"
  4981. },
  4982. {
  4983. "name": "miro_dietiker",
  4984. "homepage": "https://www.drupal.org/user/227761"
  4985. }
  4986. ],
  4987. "description": "Entity Reference Revisions",
  4988. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  4989. "support": {
  4990. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  4991. }
  4992. },
  4993. {
  4994. "name": "drupal/extlink",
  4995. "version": "1.6.0",
  4996. "source": {
  4997. "type": "git",
  4998. "url": "https://git.drupalcode.org/project/extlink.git",
  4999. "reference": "8.x-1.6"
  5000. },
  5001. "dist": {
  5002. "type": "zip",
  5003. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.6.zip",
  5004. "reference": "8.x-1.6",
  5005. "shasum": "92c2794b1d5ece7978f5f6fa37f719c0b37d470e"
  5006. },
  5007. "require": {
  5008. "drupal/core": "^8 || ^9"
  5009. },
  5010. "type": "drupal-module",
  5011. "extra": {
  5012. "drupal": {
  5013. "version": "8.x-1.6",
  5014. "datestamp": "1615218226",
  5015. "security-coverage": {
  5016. "status": "covered",
  5017. "message": "Covered by Drupal's security advisory policy"
  5018. }
  5019. }
  5020. },
  5021. "notification-url": "https://packages.drupal.org/8/downloads",
  5022. "license": [
  5023. "GPL-2.0-or-later"
  5024. ],
  5025. "authors": [
  5026. {
  5027. "name": "Nate Lampton",
  5028. "homepage": "https://www.drupal.org/u/quicksketch",
  5029. "role": "Maintainer"
  5030. },
  5031. {
  5032. "name": "Lachlan Ennis",
  5033. "homepage": "https://www.drupal.org/u/elachlan",
  5034. "role": "Maintainer"
  5035. },
  5036. {
  5037. "name": "Neslee Canil Pinto",
  5038. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  5039. "role": "Maintainer"
  5040. }
  5041. ],
  5042. "description": "Modify behavior and appearance of external links.",
  5043. "homepage": "https://www.drupal.org/project/extlink",
  5044. "keywords": [
  5045. "Drupal",
  5046. "External Links"
  5047. ],
  5048. "support": {
  5049. "source": "https://git.drupalcode.org/project/extlink",
  5050. "issues": "https://www.drupal.org/project/issues/extlink"
  5051. }
  5052. },
  5053. {
  5054. "name": "drupal/field_group",
  5055. "version": "3.1.0",
  5056. "source": {
  5057. "type": "git",
  5058. "url": "https://git.drupalcode.org/project/field_group.git",
  5059. "reference": "8.x-3.1"
  5060. },
  5061. "dist": {
  5062. "type": "zip",
  5063. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.1.zip",
  5064. "reference": "8.x-3.1",
  5065. "shasum": "8a719eaea594f0ba874172831cb28da93c66b77a"
  5066. },
  5067. "require": {
  5068. "drupal/core": "^8.8 || ^9"
  5069. },
  5070. "require-dev": {
  5071. "drupal/jquery_ui_accordion": "^1.0"
  5072. },
  5073. "type": "drupal-module",
  5074. "extra": {
  5075. "drupal": {
  5076. "version": "8.x-3.1",
  5077. "datestamp": "1591772567",
  5078. "security-coverage": {
  5079. "status": "covered",
  5080. "message": "Covered by Drupal's security advisory policy"
  5081. }
  5082. }
  5083. },
  5084. "notification-url": "https://packages.drupal.org/8/downloads",
  5085. "license": [
  5086. "GPL-2.0-or-later"
  5087. ],
  5088. "authors": [
  5089. {
  5090. "name": "Hydra",
  5091. "homepage": "https://www.drupal.org/user/647364"
  5092. },
  5093. {
  5094. "name": "Stalski",
  5095. "homepage": "https://www.drupal.org/user/322618"
  5096. },
  5097. {
  5098. "name": "jyve",
  5099. "homepage": "https://www.drupal.org/user/591438"
  5100. },
  5101. {
  5102. "name": "nils.destoop",
  5103. "homepage": "https://www.drupal.org/user/361625"
  5104. },
  5105. {
  5106. "name": "swentel",
  5107. "homepage": "https://www.drupal.org/user/107403"
  5108. }
  5109. ],
  5110. "description": "Provides the field_group module.",
  5111. "homepage": "https://www.drupal.org/project/field_group",
  5112. "support": {
  5113. "source": "https://git.drupalcode.org/project/field_group",
  5114. "issues": "https://www.drupal.org/project/issues/field_group"
  5115. }
  5116. },
  5117. {
  5118. "name": "drupal/file_mdm",
  5119. "version": "2.1.0",
  5120. "source": {
  5121. "type": "git",
  5122. "url": "https://git.drupalcode.org/project/file_mdm.git",
  5123. "reference": "8.x-2.1"
  5124. },
  5125. "dist": {
  5126. "type": "zip",
  5127. "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-2.1.zip",
  5128. "reference": "8.x-2.1",
  5129. "shasum": "5c3d75622299ebddc0e8456bb08bb371da8771bd"
  5130. },
  5131. "require": {
  5132. "drupal/core": "^8.8 || ^9",
  5133. "lsolesen/pel": "^0.9.8",
  5134. "phenx/php-font-lib": "^0.5.2",
  5135. "php": ">=7"
  5136. },
  5137. "require-dev": {
  5138. "drupal/image_effects": "*"
  5139. },
  5140. "type": "drupal-module",
  5141. "extra": {
  5142. "drupal": {
  5143. "version": "8.x-2.1",
  5144. "datestamp": "1586801064",
  5145. "security-coverage": {
  5146. "status": "covered",
  5147. "message": "Covered by Drupal's security advisory policy"
  5148. }
  5149. }
  5150. },
  5151. "notification-url": "https://packages.drupal.org/8/downloads",
  5152. "license": [
  5153. "GPL-2.0-or-later"
  5154. ],
  5155. "authors": [
  5156. {
  5157. "name": "mondrake",
  5158. "homepage": "https://www.drupal.org/user/1307444"
  5159. }
  5160. ],
  5161. "description": "Provides a service to manage file metadata.",
  5162. "homepage": "https://www.drupal.org/project/file_mdm",
  5163. "support": {
  5164. "source": "https://git.drupalcode.org/project/file_mdm"
  5165. }
  5166. },
  5167. {
  5168. "name": "drupal/filefield_sources",
  5169. "version": "dev-1.x",
  5170. "source": {
  5171. "type": "git",
  5172. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  5173. "reference": "2477ff91863c9c19569de4ebb3d379d0e5e24312"
  5174. },
  5175. "require": {
  5176. "drupal/core": "^8 || ^9"
  5177. },
  5178. "require-dev": {
  5179. "drupal/imce": "*"
  5180. },
  5181. "type": "drupal-module",
  5182. "extra": {
  5183. "branch-alias": {
  5184. "dev-1.x": "1.x-dev"
  5185. },
  5186. "drupal": {
  5187. "version": "8.x-1.0-alpha3+3-dev",
  5188. "datestamp": "1604712687",
  5189. "security-coverage": {
  5190. "status": "not-covered",
  5191. "message": "Dev releases are not covered by Drupal security advisories."
  5192. }
  5193. }
  5194. },
  5195. "notification-url": "https://packages.drupal.org/8/downloads",
  5196. "license": [
  5197. "GPL-2.0-or-later"
  5198. ],
  5199. "authors": [
  5200. {
  5201. "name": "Nate Lampton (quicksketch)",
  5202. "homepage": "https://www.drupal.org/u/quicksketch",
  5203. "role": "Maintainer"
  5204. },
  5205. {
  5206. "name": "Andrey Khromyshev (profak)",
  5207. "homepage": "https://www.drupal.org/u/profak",
  5208. "role": "Maintainer"
  5209. },
  5210. {
  5211. "name": "David Valdez (gnuget)",
  5212. "homepage": "https://www.drupal.org/u/gnuget",
  5213. "role": "Maintainer"
  5214. }
  5215. ],
  5216. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  5217. "homepage": "https://www.drupal.org/project/filefield_sources",
  5218. "support": {
  5219. "source": "https://git.drupalcode.org/project/filefield_sources",
  5220. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  5221. "irc": "irc://irc.freenode.org/drupal-contribute"
  5222. },
  5223. "time": "2020-11-07T01:30:52+00:00"
  5224. },
  5225. {
  5226. "name": "drupal/filter_perms",
  5227. "version": "dev-1.x",
  5228. "source": {
  5229. "type": "git",
  5230. "url": "https://git.drupalcode.org/project/filter_perms.git",
  5231. "reference": "f9abe65da2236de801902256f8388291bc3d2c83"
  5232. },
  5233. "require": {
  5234. "drupal/core": "^8 || ^9"
  5235. },
  5236. "type": "drupal-module",
  5237. "extra": {
  5238. "branch-alias": {
  5239. "dev-1.x": "1.x-dev"
  5240. },
  5241. "drupal": {
  5242. "version": "8.x-1.0-alpha1+2-dev",
  5243. "datestamp": "1599239698",
  5244. "security-coverage": {
  5245. "status": "not-covered",
  5246. "message": "Dev releases are not covered by Drupal security advisories."
  5247. }
  5248. }
  5249. },
  5250. "notification-url": "https://packages.drupal.org/8/downloads",
  5251. "license": [
  5252. "GPL-2.0-or-later"
  5253. ],
  5254. "authors": [
  5255. {
  5256. "name": "cYu",
  5257. "homepage": "https://www.drupal.org/user/202205"
  5258. },
  5259. {
  5260. "name": "deekayen",
  5261. "homepage": "https://www.drupal.org/user/972"
  5262. },
  5263. {
  5264. "name": "ivagold",
  5265. "homepage": "https://www.drupal.org/user/3061533"
  5266. },
  5267. {
  5268. "name": "mgbellaire",
  5269. "homepage": "https://www.drupal.org/user/1831932"
  5270. },
  5271. {
  5272. "name": "willzyx",
  5273. "homepage": "https://www.drupal.org/user/1043862"
  5274. }
  5275. ],
  5276. "description": "Provides role and module filters to simplify the user permissions page.",
  5277. "homepage": "https://www.drupal.org/project/filter_perms",
  5278. "support": {
  5279. "source": "https://git.drupalcode.org/project/filter_perms"
  5280. },
  5281. "time": "2020-11-17T18:20:11+00:00"
  5282. },
  5283. {
  5284. "name": "drupal/graphql",
  5285. "version": "4.1.0",
  5286. "source": {
  5287. "type": "git",
  5288. "url": "https://git.drupalcode.org/project/graphql.git",
  5289. "reference": "8.x-4.1"
  5290. },
  5291. "dist": {
  5292. "type": "zip",
  5293. "url": "https://ftp.drupal.org/files/projects/graphql-8.x-4.1.zip",
  5294. "reference": "8.x-4.1",
  5295. "shasum": "c37587b95e78b62b099bfee128e0a5d634696335"
  5296. },
  5297. "require": {
  5298. "drupal/core": "^8 || ^9",
  5299. "drupal/typed_data": "*",
  5300. "php": ">=7.2",
  5301. "webonyx/graphql-php": "^14.5.0"
  5302. },
  5303. "require-dev": {
  5304. "drupal/node-node": "*"
  5305. },
  5306. "type": "drupal-module",
  5307. "extra": {
  5308. "drupal": {
  5309. "version": "8.x-4.1",
  5310. "datestamp": "1622655866",
  5311. "security-coverage": {
  5312. "status": "covered",
  5313. "message": "Covered by Drupal's security advisory policy"
  5314. }
  5315. }
  5316. },
  5317. "notification-url": "https://packages.drupal.org/8/downloads",
  5318. "license": [
  5319. "GPL-2.0+"
  5320. ],
  5321. "authors": [
  5322. {
  5323. "name": "fubhy",
  5324. "homepage": "https://www.drupal.org/user/761344"
  5325. },
  5326. {
  5327. "name": "hideaway",
  5328. "homepage": "https://www.drupal.org/user/741876"
  5329. },
  5330. {
  5331. "name": "joaogarin",
  5332. "homepage": "https://www.drupal.org/user/612814"
  5333. },
  5334. {
  5335. "name": "klausi",
  5336. "homepage": "https://www.drupal.org/user/262198"
  5337. },
  5338. {
  5339. "name": "pmelab",
  5340. "homepage": "https://www.drupal.org/user/555322"
  5341. }
  5342. ],
  5343. "description": "Exposes your Drupal data model through a GraphQL schema.",
  5344. "homepage": "http://drupal.org/project/graphql",
  5345. "support": {
  5346. "source": "https://git.drupalcode.org/project/graphql"
  5347. }
  5348. },
  5349. {
  5350. "name": "drupal/honeypot",
  5351. "version": "2.0.1",
  5352. "source": {
  5353. "type": "git",
  5354. "url": "https://git.drupalcode.org/project/honeypot.git",
  5355. "reference": "2.0.1"
  5356. },
  5357. "dist": {
  5358. "type": "zip",
  5359. "url": "https://ftp.drupal.org/files/projects/honeypot-2.0.1.zip",
  5360. "reference": "2.0.1",
  5361. "shasum": "c29d248c0fdcdf733a31b9214355acfa73716632"
  5362. },
  5363. "require": {
  5364. "drupal/core": "^8.0 || ^9.0"
  5365. },
  5366. "type": "drupal-module",
  5367. "extra": {
  5368. "drupal": {
  5369. "version": "2.0.1",
  5370. "datestamp": "1597855128",
  5371. "security-coverage": {
  5372. "status": "covered",
  5373. "message": "Covered by Drupal's security advisory policy"
  5374. }
  5375. }
  5376. },
  5377. "notification-url": "https://packages.drupal.org/8/downloads",
  5378. "license": [
  5379. "GPL-2.0-or-later"
  5380. ],
  5381. "authors": [
  5382. {
  5383. "name": "Jeff Geerling",
  5384. "homepage": "https://www.drupal.org/user/213194",
  5385. "email": "geerlingguy@mac.com"
  5386. },
  5387. {
  5388. "name": "geerlingguy",
  5389. "homepage": "https://www.drupal.org/user/389011"
  5390. },
  5391. {
  5392. "name": "vijaycs85",
  5393. "homepage": "https://www.drupal.org/user/93488"
  5394. }
  5395. ],
  5396. "description": "Mitigates spam form submissions using the honeypot method.",
  5397. "homepage": "https://www.drupal.org/project/honeypot",
  5398. "keywords": [
  5399. "deterrent",
  5400. "form",
  5401. "honeypot",
  5402. "honeytrap",
  5403. "php",
  5404. "spam"
  5405. ],
  5406. "support": {
  5407. "source": "https://git.drupalcode.org/project/honeypot",
  5408. "issues": "https://www.drupal.org/project/issues/honeypot"
  5409. }
  5410. },
  5411. {
  5412. "name": "drupal/imagemagick",
  5413. "version": "3.1.0",
  5414. "source": {
  5415. "type": "git",
  5416. "url": "https://git.drupalcode.org/project/imagemagick.git",
  5417. "reference": "8.x-3.1"
  5418. },
  5419. "dist": {
  5420. "type": "zip",
  5421. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-3.1.zip",
  5422. "reference": "8.x-3.1",
  5423. "shasum": "f427b06312325aa667c549fed261f73f29e231e7"
  5424. },
  5425. "require": {
  5426. "drupal/core": "^8.8 || ^9",
  5427. "drupal/file_mdm": "^2",
  5428. "drupal/sophron": "^1",
  5429. "php": ">=7"
  5430. },
  5431. "type": "drupal-module",
  5432. "extra": {
  5433. "drupal": {
  5434. "version": "8.x-3.1",
  5435. "datestamp": "1581420882",
  5436. "security-coverage": {
  5437. "status": "covered",
  5438. "message": "Covered by Drupal's security advisory policy"
  5439. }
  5440. }
  5441. },
  5442. "notification-url": "https://packages.drupal.org/8/downloads",
  5443. "license": [
  5444. "GPL-2.0-or-later"
  5445. ],
  5446. "authors": [
  5447. {
  5448. "name": "Chris Charlton",
  5449. "homepage": "https://www.drupal.org/user/17089"
  5450. },
  5451. {
  5452. "name": "chx",
  5453. "homepage": "https://www.drupal.org/user/9446"
  5454. },
  5455. {
  5456. "name": "claudiu.cristea",
  5457. "homepage": "https://www.drupal.org/user/56348"
  5458. },
  5459. {
  5460. "name": "dman",
  5461. "homepage": "https://www.drupal.org/user/33240"
  5462. },
  5463. {
  5464. "name": "dopry",
  5465. "homepage": "https://www.drupal.org/user/22202"
  5466. },
  5467. {
  5468. "name": "drewish",
  5469. "homepage": "https://www.drupal.org/user/34869"
  5470. },
  5471. {
  5472. "name": "gdl",
  5473. "homepage": "https://www.drupal.org/user/507326"
  5474. },
  5475. {
  5476. "name": "mondrake",
  5477. "homepage": "https://www.drupal.org/user/1307444"
  5478. },
  5479. {
  5480. "name": "quicksketch",
  5481. "homepage": "https://www.drupal.org/user/35821"
  5482. },
  5483. {
  5484. "name": "sun",
  5485. "homepage": "https://www.drupal.org/user/54136"
  5486. },
  5487. {
  5488. "name": "walkah",
  5489. "homepage": "https://www.drupal.org/user/1531"
  5490. }
  5491. ],
  5492. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  5493. "homepage": "https://www.drupal.org/project/imagemagick",
  5494. "support": {
  5495. "source": "https://git.drupalcode.org/project/imagemagick"
  5496. }
  5497. },
  5498. {
  5499. "name": "drupal/inline_entity_form",
  5500. "version": "1.0.0-rc9",
  5501. "source": {
  5502. "type": "git",
  5503. "url": "https://git.drupalcode.org/project/inline_entity_form.git",
  5504. "reference": "8.x-1.0-rc9"
  5505. },
  5506. "dist": {
  5507. "type": "zip",
  5508. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc9.zip",
  5509. "reference": "8.x-1.0-rc9",
  5510. "shasum": "78953103a9c6e4e44bc877820a35f39913ea4559"
  5511. },
  5512. "require": {
  5513. "drupal/core": "^8.8 || ^9",
  5514. "php": ">=7.1"
  5515. },
  5516. "require-dev": {
  5517. "drupal/entity_reference_revisions": "^1.0"
  5518. },
  5519. "type": "drupal-module",
  5520. "extra": {
  5521. "drupal": {
  5522. "version": "8.x-1.0-rc9",
  5523. "datestamp": "1618174486",
  5524. "security-coverage": {
  5525. "status": "not-covered",
  5526. "message": "RC releases are not covered by Drupal security advisories."
  5527. }
  5528. }
  5529. },
  5530. "notification-url": "https://packages.drupal.org/8/downloads",
  5531. "license": [
  5532. "GPL-2.0-or-later"
  5533. ],
  5534. "authors": [
  5535. {
  5536. "name": "bojanz",
  5537. "homepage": "https://www.drupal.org/user/86106"
  5538. },
  5539. {
  5540. "name": "dawehner",
  5541. "homepage": "https://www.drupal.org/user/99340"
  5542. },
  5543. {
  5544. "name": "geek-merlin",
  5545. "homepage": "https://www.drupal.org/user/229048"
  5546. },
  5547. {
  5548. "name": "joachim",
  5549. "homepage": "https://www.drupal.org/user/107701"
  5550. },
  5551. {
  5552. "name": "jsacksick",
  5553. "homepage": "https://www.drupal.org/user/972218"
  5554. },
  5555. {
  5556. "name": "kaythay",
  5557. "homepage": "https://www.drupal.org/user/2182186"
  5558. },
  5559. {
  5560. "name": "oknate",
  5561. "homepage": "https://www.drupal.org/user/471638"
  5562. },
  5563. {
  5564. "name": "rszrama",
  5565. "homepage": "https://www.drupal.org/user/49344"
  5566. },
  5567. {
  5568. "name": "slashrsm",
  5569. "homepage": "https://www.drupal.org/user/744628"
  5570. },
  5571. {
  5572. "name": "webflo",
  5573. "homepage": "https://www.drupal.org/user/254778"
  5574. }
  5575. ],
  5576. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  5577. "homepage": "https://www.drupal.org/project/inline_entity_form",
  5578. "support": {
  5579. "source": "https://git.drupalcode.org/project/inline_entity_form"
  5580. }
  5581. },
  5582. {
  5583. "name": "drupal/insert",
  5584. "version": "dev-2.x",
  5585. "source": {
  5586. "type": "git",
  5587. "url": "https://git.drupalcode.org/project/insert.git",
  5588. "reference": "892cb12f5c748f29106a04b4cdfd4fe77a503118"
  5589. },
  5590. "require": {
  5591. "drupal/core": "^8 || ^9"
  5592. },
  5593. "require-dev": {
  5594. "drupal/colorbox": "*"
  5595. },
  5596. "type": "drupal-module",
  5597. "extra": {
  5598. "branch-alias": {
  5599. "dev-2.x": "2.x-dev"
  5600. },
  5601. "drupal": {
  5602. "version": "8.x-2.0-beta1+6-dev",
  5603. "datestamp": "1597165610",
  5604. "security-coverage": {
  5605. "status": "not-covered",
  5606. "message": "Dev releases are not covered by Drupal security advisories."
  5607. }
  5608. }
  5609. },
  5610. "notification-url": "https://packages.drupal.org/8/downloads",
  5611. "license": [
  5612. "GPL-2.0-or-later"
  5613. ],
  5614. "authors": [
  5615. {
  5616. "name": "Neslee Canil Pinto",
  5617. "homepage": "https://www.drupal.org/user/3580850"
  5618. },
  5619. {
  5620. "name": "Snater",
  5621. "homepage": "https://www.drupal.org/user/3513717"
  5622. },
  5623. {
  5624. "name": "quicksketch",
  5625. "homepage": "https://www.drupal.org/user/35821"
  5626. }
  5627. ],
  5628. "description": "Assists in inserting files, images, or other media into the body field as well as other editor and text areas.",
  5629. "homepage": "https://www.drupal.org/project/insert",
  5630. "support": {
  5631. "source": "https://git.drupalcode.org/project/insert"
  5632. },
  5633. "time": "2020-10-08T16:45:33+00:00"
  5634. },
  5635. {
  5636. "name": "drupal/jquery_ui",
  5637. "version": "1.4.0",
  5638. "source": {
  5639. "type": "git",
  5640. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  5641. "reference": "8.x-1.4"
  5642. },
  5643. "dist": {
  5644. "type": "zip",
  5645. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.4.zip",
  5646. "reference": "8.x-1.4",
  5647. "shasum": "64c19ecc8902e2b4b1ab0cc5f5fe28dbc83bfebe"
  5648. },
  5649. "require": {
  5650. "drupal/core": "^8 || ^9"
  5651. },
  5652. "type": "drupal-module",
  5653. "extra": {
  5654. "drupal": {
  5655. "version": "8.x-1.4",
  5656. "datestamp": "1582149957",
  5657. "security-coverage": {
  5658. "status": "covered",
  5659. "message": "Covered by Drupal's security advisory policy"
  5660. }
  5661. }
  5662. },
  5663. "notification-url": "https://packages.drupal.org/8/downloads",
  5664. "license": [
  5665. "GPL-2.0-or-later"
  5666. ],
  5667. "authors": [
  5668. {
  5669. "name": "RobLoach",
  5670. "homepage": "https://www.drupal.org/user/61114"
  5671. },
  5672. {
  5673. "name": "jjeff",
  5674. "homepage": "https://www.drupal.org/user/17190"
  5675. },
  5676. {
  5677. "name": "lauriii",
  5678. "homepage": "https://www.drupal.org/user/1078742"
  5679. },
  5680. {
  5681. "name": "litwol",
  5682. "homepage": "https://www.drupal.org/user/78134"
  5683. },
  5684. {
  5685. "name": "mfb",
  5686. "homepage": "https://www.drupal.org/user/12302"
  5687. },
  5688. {
  5689. "name": "mfer",
  5690. "homepage": "https://www.drupal.org/user/25701"
  5691. },
  5692. {
  5693. "name": "mikelutz",
  5694. "homepage": "https://www.drupal.org/user/2972409"
  5695. },
  5696. {
  5697. "name": "sun",
  5698. "homepage": "https://www.drupal.org/user/54136"
  5699. },
  5700. {
  5701. "name": "webchick",
  5702. "homepage": "https://www.drupal.org/user/24967"
  5703. },
  5704. {
  5705. "name": "zrpnr",
  5706. "homepage": "https://www.drupal.org/user/1448368"
  5707. }
  5708. ],
  5709. "description": "Provides jQuery UI library.",
  5710. "homepage": "https://www.drupal.org/project/jquery_ui",
  5711. "support": {
  5712. "source": "https://git.drupalcode.org/project/jquery_ui"
  5713. }
  5714. },
  5715. {
  5716. "name": "drupal/jquery_ui_button",
  5717. "version": "1.1.0",
  5718. "source": {
  5719. "type": "git",
  5720. "url": "https://git.drupalcode.org/project/jquery_ui_button.git",
  5721. "reference": "8.x-1.1"
  5722. },
  5723. "dist": {
  5724. "type": "zip",
  5725. "url": "https://ftp.drupal.org/files/projects/jquery_ui_button-8.x-1.1.zip",
  5726. "reference": "8.x-1.1",
  5727. "shasum": "70175a96c9034cc1cb2f28c415b2a9828355cc1a"
  5728. },
  5729. "require": {
  5730. "drupal/core": "^8 || ^9",
  5731. "drupal/jquery_ui": "*",
  5732. "drupal/jquery_ui_checkboxradio": "*",
  5733. "drupal/jquery_ui_controlgroup": "*"
  5734. },
  5735. "type": "drupal-module",
  5736. "extra": {
  5737. "drupal": {
  5738. "version": "8.x-1.1",
  5739. "datestamp": "1584106807",
  5740. "security-coverage": {
  5741. "status": "covered",
  5742. "message": "Covered by Drupal's security advisory policy"
  5743. }
  5744. }
  5745. },
  5746. "notification-url": "https://packages.drupal.org/8/downloads",
  5747. "license": [
  5748. "GPL-2.0-or-later"
  5749. ],
  5750. "authors": [
  5751. {
  5752. "name": "bnjmnm",
  5753. "homepage": "https://www.drupal.org/user/2369194"
  5754. },
  5755. {
  5756. "name": "lauriii",
  5757. "homepage": "https://www.drupal.org/user/1078742"
  5758. },
  5759. {
  5760. "name": "zrpnr",
  5761. "homepage": "https://www.drupal.org/user/1448368"
  5762. }
  5763. ],
  5764. "description": "Provides jQuery UI Button library.",
  5765. "homepage": "https://www.drupal.org/project/jquery_ui_button",
  5766. "support": {
  5767. "source": "https://git.drupalcode.org/project/jquery_ui_button"
  5768. }
  5769. },
  5770. {
  5771. "name": "drupal/jquery_ui_checkboxradio",
  5772. "version": "1.2.0",
  5773. "source": {
  5774. "type": "git",
  5775. "url": "https://git.drupalcode.org/project/jquery_ui_checkboxradio.git",
  5776. "reference": "8.x-1.2"
  5777. },
  5778. "dist": {
  5779. "type": "zip",
  5780. "url": "https://ftp.drupal.org/files/projects/jquery_ui_checkboxradio-8.x-1.2.zip",
  5781. "reference": "8.x-1.2",
  5782. "shasum": "8edb088cb89f4a0f95aa9d43894bf506dc5f6fe1"
  5783. },
  5784. "require": {
  5785. "drupal/core": "^8 || ^9",
  5786. "drupal/jquery_ui": "*"
  5787. },
  5788. "type": "drupal-module",
  5789. "extra": {
  5790. "drupal": {
  5791. "version": "8.x-1.2",
  5792. "datestamp": "1584106406",
  5793. "security-coverage": {
  5794. "status": "covered",
  5795. "message": "Covered by Drupal's security advisory policy"
  5796. }
  5797. }
  5798. },
  5799. "notification-url": "https://packages.drupal.org/8/downloads",
  5800. "license": [
  5801. "GPL-2.0-or-later"
  5802. ],
  5803. "authors": [
  5804. {
  5805. "name": "bnjmnm",
  5806. "homepage": "https://www.drupal.org/user/2369194"
  5807. },
  5808. {
  5809. "name": "lauriii",
  5810. "homepage": "https://www.drupal.org/user/1078742"
  5811. },
  5812. {
  5813. "name": "zrpnr",
  5814. "homepage": "https://www.drupal.org/user/1448368"
  5815. }
  5816. ],
  5817. "description": "Provides jQuery UI Checkboxradio library.",
  5818. "homepage": "https://www.drupal.org/project/jquery_ui_checkboxradio",
  5819. "support": {
  5820. "source": "https://git.drupalcode.org/project/jquery_ui_checkboxradio"
  5821. }
  5822. },
  5823. {
  5824. "name": "drupal/jquery_ui_controlgroup",
  5825. "version": "1.1.0",
  5826. "source": {
  5827. "type": "git",
  5828. "url": "https://git.drupalcode.org/project/jquery_ui_controlgroup.git",
  5829. "reference": "8.x-1.1"
  5830. },
  5831. "dist": {
  5832. "type": "zip",
  5833. "url": "https://ftp.drupal.org/files/projects/jquery_ui_controlgroup-8.x-1.1.zip",
  5834. "reference": "8.x-1.1",
  5835. "shasum": "ddbd4f01df4e3c9566aa76ba256217a27f45f48a"
  5836. },
  5837. "require": {
  5838. "drupal/core": "^8 || ^9",
  5839. "drupal/jquery_ui": "*"
  5840. },
  5841. "type": "drupal-module",
  5842. "extra": {
  5843. "drupal": {
  5844. "version": "8.x-1.1",
  5845. "datestamp": "1584106616",
  5846. "security-coverage": {
  5847. "status": "covered",
  5848. "message": "Covered by Drupal's security advisory policy"
  5849. }
  5850. }
  5851. },
  5852. "notification-url": "https://packages.drupal.org/8/downloads",
  5853. "license": [
  5854. "GPL-2.0-or-later"
  5855. ],
  5856. "authors": [
  5857. {
  5858. "name": "bnjmnm",
  5859. "homepage": "https://www.drupal.org/user/2369194"
  5860. },
  5861. {
  5862. "name": "lauriii",
  5863. "homepage": "https://www.drupal.org/user/1078742"
  5864. },
  5865. {
  5866. "name": "zrpnr",
  5867. "homepage": "https://www.drupal.org/user/1448368"
  5868. }
  5869. ],
  5870. "description": "Provides jQuery UI Controlgroup library.",
  5871. "homepage": "https://www.drupal.org/project/jquery_ui_controlgroup",
  5872. "support": {
  5873. "source": "https://git.drupalcode.org/project/jquery_ui_controlgroup"
  5874. }
  5875. },
  5876. {
  5877. "name": "drupal/jquery_ui_datepicker",
  5878. "version": "1.1.0",
  5879. "source": {
  5880. "type": "git",
  5881. "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
  5882. "reference": "8.x-1.1"
  5883. },
  5884. "dist": {
  5885. "type": "zip",
  5886. "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-8.x-1.1.zip",
  5887. "reference": "8.x-1.1",
  5888. "shasum": "69f62467f846bb514a10fa93f4c3b34c6275353f"
  5889. },
  5890. "require": {
  5891. "drupal/core": "^8 || ^9",
  5892. "drupal/jquery_ui": "*"
  5893. },
  5894. "type": "drupal-module",
  5895. "extra": {
  5896. "drupal": {
  5897. "version": "8.x-1.1",
  5898. "datestamp": "1615962535",
  5899. "security-coverage": {
  5900. "status": "covered",
  5901. "message": "Covered by Drupal's security advisory policy"
  5902. }
  5903. }
  5904. },
  5905. "notification-url": "https://packages.drupal.org/8/downloads",
  5906. "license": [
  5907. "GPL-2.0-or-later"
  5908. ],
  5909. "authors": [
  5910. {
  5911. "name": "bnjmnm",
  5912. "homepage": "https://www.drupal.org/user/2369194"
  5913. },
  5914. {
  5915. "name": "ivnish",
  5916. "homepage": "https://www.drupal.org/user/3547706"
  5917. },
  5918. {
  5919. "name": "jrockowitz",
  5920. "homepage": "https://www.drupal.org/user/371407"
  5921. },
  5922. {
  5923. "name": "lauriii",
  5924. "homepage": "https://www.drupal.org/user/1078742"
  5925. },
  5926. {
  5927. "name": "zrpnr",
  5928. "homepage": "https://www.drupal.org/user/1448368"
  5929. }
  5930. ],
  5931. "description": "Provides jQuery UI Datepicker library.",
  5932. "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
  5933. "support": {
  5934. "source": "https://git.drupalcode.org/project/jquery_ui_datepicker"
  5935. }
  5936. },
  5937. {
  5938. "name": "drupal/jquery_ui_slider",
  5939. "version": "1.1.0",
  5940. "source": {
  5941. "type": "git",
  5942. "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
  5943. "reference": "8.x-1.1"
  5944. },
  5945. "dist": {
  5946. "type": "zip",
  5947. "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-8.x-1.1.zip",
  5948. "reference": "8.x-1.1",
  5949. "shasum": "79b90cf60d45fc33ffdaa84bb2d6563f78a7d3d1"
  5950. },
  5951. "require": {
  5952. "drupal/core": "^8 || ^9",
  5953. "drupal/jquery_ui": "*"
  5954. },
  5955. "type": "drupal-module",
  5956. "extra": {
  5957. "drupal": {
  5958. "version": "8.x-1.1",
  5959. "datestamp": "1584107817",
  5960. "security-coverage": {
  5961. "status": "covered",
  5962. "message": "Covered by Drupal's security advisory policy"
  5963. }
  5964. }
  5965. },
  5966. "notification-url": "https://packages.drupal.org/8/downloads",
  5967. "license": [
  5968. "GPL-2.0-or-later"
  5969. ],
  5970. "authors": [
  5971. {
  5972. "name": "bnjmnm",
  5973. "homepage": "https://www.drupal.org/user/2369194"
  5974. },
  5975. {
  5976. "name": "lauriii",
  5977. "homepage": "https://www.drupal.org/user/1078742"
  5978. },
  5979. {
  5980. "name": "zrpnr",
  5981. "homepage": "https://www.drupal.org/user/1448368"
  5982. }
  5983. ],
  5984. "description": "Provides jQuery UI Slider library.",
  5985. "homepage": "https://www.drupal.org/project/jquery_ui_slider",
  5986. "support": {
  5987. "source": "https://git.drupalcode.org/project/jquery_ui_slider"
  5988. }
  5989. },
  5990. {
  5991. "name": "drupal/jquery_ui_touch_punch",
  5992. "version": "1.0.0",
  5993. "source": {
  5994. "type": "git",
  5995. "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
  5996. "reference": "1.0.0"
  5997. },
  5998. "dist": {
  5999. "type": "zip",
  6000. "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.0.0.zip",
  6001. "reference": "1.0.0",
  6002. "shasum": "8444a0ed897ba3d8e8876a9602ec8b3dca678cd1"
  6003. },
  6004. "require": {
  6005. "drupal/core": "^8 || ^9",
  6006. "drupal/jquery_ui": "^1.0"
  6007. },
  6008. "suggest": {
  6009. "furf/jquery-ui-touch-punch": "Required to use drupal/jquery_ui_touch_punch module."
  6010. },
  6011. "type": "drupal-module",
  6012. "extra": {
  6013. "drupal": {
  6014. "version": "1.0.0",
  6015. "datestamp": "1591893292",
  6016. "security-coverage": {
  6017. "status": "not-covered",
  6018. "message": "Project has not opted into security advisory coverage!"
  6019. }
  6020. }
  6021. },
  6022. "notification-url": "https://packages.drupal.org/8/downloads",
  6023. "license": [
  6024. "GPL-2.0+"
  6025. ],
  6026. "authors": [
  6027. {
  6028. "name": "Naveen Valecha",
  6029. "homepage": "https://drupal.org/u/naveenvalecha",
  6030. "role": "Maintainer"
  6031. }
  6032. ],
  6033. "description": "Provides jQuery UI Touch Punch library.",
  6034. "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
  6035. "keywords": [
  6036. "Drupal",
  6037. "jquery_ui_touch_punch"
  6038. ],
  6039. "support": {
  6040. "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
  6041. "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch",
  6042. "irc": "irc://irc.freenode.org/drupal-contribute"
  6043. }
  6044. },
  6045. {
  6046. "name": "drupal/link_attributes",
  6047. "version": "1.11.0",
  6048. "source": {
  6049. "type": "git",
  6050. "url": "https://git.drupalcode.org/project/link_attributes.git",
  6051. "reference": "8.x-1.11"
  6052. },
  6053. "dist": {
  6054. "type": "zip",
  6055. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.11.zip",
  6056. "reference": "8.x-1.11",
  6057. "shasum": "ca8c7e71c38350e3784dc3d1f779d700f55df818"
  6058. },
  6059. "require": {
  6060. "drupal/core": "^8 || ^9"
  6061. },
  6062. "type": "drupal-module",
  6063. "extra": {
  6064. "drupal": {
  6065. "version": "8.x-1.11",
  6066. "datestamp": "1598323550",
  6067. "security-coverage": {
  6068. "status": "covered",
  6069. "message": "Covered by Drupal's security advisory policy"
  6070. }
  6071. }
  6072. },
  6073. "notification-url": "https://packages.drupal.org/8/downloads",
  6074. "license": [
  6075. "GPL-2.0-or-later"
  6076. ],
  6077. "authors": [
  6078. {
  6079. "name": "larowlan",
  6080. "homepage": "https://www.drupal.org/user/395439"
  6081. }
  6082. ],
  6083. "description": "Provides a widget to allow settings of link attributes for menu links.",
  6084. "homepage": "https://www.drupal.org/project/link_attributes",
  6085. "support": {
  6086. "source": "https://git.drupalcode.org/project/link_attributes"
  6087. }
  6088. },
  6089. {
  6090. "name": "drupal/linkit",
  6091. "version": "5.0.0-beta12",
  6092. "source": {
  6093. "type": "git",
  6094. "url": "https://git.drupalcode.org/project/linkit.git",
  6095. "reference": "8.x-5.0-beta12"
  6096. },
  6097. "dist": {
  6098. "type": "zip",
  6099. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta12.zip",
  6100. "reference": "8.x-5.0-beta12",
  6101. "shasum": "9e03975b476f893112d8b12d8b8610926a4e7f2c"
  6102. },
  6103. "require": {
  6104. "drupal/core": "^8.7.7 || ^9"
  6105. },
  6106. "require-dev": {
  6107. "drupal/imce": "*"
  6108. },
  6109. "type": "drupal-module",
  6110. "extra": {
  6111. "drupal": {
  6112. "version": "8.x-5.0-beta12",
  6113. "datestamp": "1608957625",
  6114. "security-coverage": {
  6115. "status": "not-covered",
  6116. "message": "Beta releases are not covered by Drupal security advisories."
  6117. }
  6118. }
  6119. },
  6120. "notification-url": "https://packages.drupal.org/8/downloads",
  6121. "license": [
  6122. "GPL-2.0-or-later"
  6123. ],
  6124. "authors": [
  6125. {
  6126. "name": "Emil Stjerneman",
  6127. "homepage": "https://stjerneman.com",
  6128. "email": "emil@stjerneman.com",
  6129. "role": "Maintainer"
  6130. }
  6131. ],
  6132. "description": "Linkit - Enriched linking experience",
  6133. "homepage": "http://drupal.org/project/linkit",
  6134. "support": {
  6135. "source": "http://cgit.drupalcode.org/linkit",
  6136. "issues": "http://drupal.org/project/linkit"
  6137. }
  6138. },
  6139. {
  6140. "name": "drupal/login_destination",
  6141. "version": "dev-2.x",
  6142. "source": {
  6143. "type": "git",
  6144. "url": "https://git.drupalcode.org/project/login_destination.git",
  6145. "reference": "0a2c46abd451b4c83e2f5a50cb791e68b141a8ab"
  6146. },
  6147. "require": {
  6148. "drupal/core": "^8.7.10 || ^9"
  6149. },
  6150. "require-dev": {
  6151. "drupal/admin_toolbar": "^1.23",
  6152. "drupal/admin_toolbar_tools": "*"
  6153. },
  6154. "type": "drupal-module",
  6155. "extra": {
  6156. "branch-alias": {
  6157. "dev-2.x": "2.x-dev"
  6158. },
  6159. "drupal": {
  6160. "version": "8.x-2.0-alpha3+8-dev",
  6161. "datestamp": "1603450565",
  6162. "security-coverage": {
  6163. "status": "not-covered",
  6164. "message": "Dev releases are not covered by Drupal security advisories."
  6165. }
  6166. }
  6167. },
  6168. "notification-url": "https://packages.drupal.org/8/downloads",
  6169. "license": [
  6170. "GPL-2.0-or-later"
  6171. ],
  6172. "authors": [
  6173. {
  6174. "name": "3CWebDev",
  6175. "homepage": "https://www.drupal.org/user/61221"
  6176. },
  6177. {
  6178. "name": "Oliver Huynh",
  6179. "homepage": "https://www.drupal.org/user/243730"
  6180. },
  6181. {
  6182. "name": "beautifulmind",
  6183. "homepage": "https://www.drupal.org/user/219482"
  6184. },
  6185. {
  6186. "name": "ddrozdik",
  6187. "homepage": "https://www.drupal.org/user/574124"
  6188. },
  6189. {
  6190. "name": "jng12",
  6191. "homepage": "https://www.drupal.org/user/204316"
  6192. },
  6193. {
  6194. "name": "marcp",
  6195. "homepage": "https://www.drupal.org/user/20885"
  6196. },
  6197. {
  6198. "name": "mithy",
  6199. "homepage": "https://www.drupal.org/user/258911"
  6200. },
  6201. {
  6202. "name": "moshe weitzman",
  6203. "homepage": "https://www.drupal.org/user/23"
  6204. },
  6205. {
  6206. "name": "perennial.sky",
  6207. "homepage": "https://www.drupal.org/user/2622667"
  6208. },
  6209. {
  6210. "name": "rsvelko",
  6211. "homepage": "https://www.drupal.org/user/337401"
  6212. }
  6213. ],
  6214. "description": "The Login Destination module add possibility customize the destination that the user is redirected to after login.",
  6215. "homepage": "https://www.drupal.org/project/login_destination",
  6216. "support": {
  6217. "source": "https://git.drupalcode.org/project/login_destination"
  6218. },
  6219. "time": "2020-10-23T10:55:36+00:00"
  6220. },
  6221. {
  6222. "name": "drupal/maillog",
  6223. "version": "dev-1.x",
  6224. "source": {
  6225. "type": "git",
  6226. "url": "https://git.drupalcode.org/project/maillog.git",
  6227. "reference": "053d0b4a53aea4f848be75b02fc8974bb7b053b3"
  6228. },
  6229. "require": {
  6230. "drupal/core": "^8 || ^9"
  6231. },
  6232. "type": "drupal-module",
  6233. "extra": {
  6234. "branch-alias": {
  6235. "dev-1.x": "1.x-dev"
  6236. },
  6237. "drupal": {
  6238. "version": "8.x-1.0-beta1+0-dev",
  6239. "datestamp": "1600799873",
  6240. "security-coverage": {
  6241. "status": "not-covered",
  6242. "message": "Dev releases are not covered by Drupal security advisories."
  6243. }
  6244. }
  6245. },
  6246. "notification-url": "https://packages.drupal.org/8/downloads",
  6247. "license": [
  6248. "GPL-2.0-or-later"
  6249. ],
  6250. "authors": [
  6251. {
  6252. "name": "Berdir",
  6253. "homepage": "https://www.drupal.org/user/214652"
  6254. },
  6255. {
  6256. "name": "DamienMcKenna",
  6257. "homepage": "https://www.drupal.org/user/108450"
  6258. },
  6259. {
  6260. "name": "miro_dietiker",
  6261. "homepage": "https://www.drupal.org/user/227761"
  6262. },
  6263. {
  6264. "name": "pluess",
  6265. "homepage": "https://www.drupal.org/user/84659"
  6266. }
  6267. ],
  6268. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  6269. "homepage": "https://www.drupal.org/project/maillog",
  6270. "support": {
  6271. "source": "https://git.drupalcode.org/project/maillog"
  6272. },
  6273. "time": "2020-09-22T18:37:31+00:00"
  6274. },
  6275. {
  6276. "name": "drupal/mailsystem",
  6277. "version": "4.3.0",
  6278. "source": {
  6279. "type": "git",
  6280. "url": "https://git.drupalcode.org/project/mailsystem.git",
  6281. "reference": "8.x-4.3"
  6282. },
  6283. "dist": {
  6284. "type": "zip",
  6285. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.3.zip",
  6286. "reference": "8.x-4.3",
  6287. "shasum": "1a74016e268ff207535be5d5e42ac8f72ac89050"
  6288. },
  6289. "require": {
  6290. "drupal/core": "^8.7.7 || ^9"
  6291. },
  6292. "type": "drupal-module",
  6293. "extra": {
  6294. "drupal": {
  6295. "version": "8.x-4.3",
  6296. "datestamp": "1586203024",
  6297. "security-coverage": {
  6298. "status": "covered",
  6299. "message": "Covered by Drupal's security advisory policy"
  6300. }
  6301. }
  6302. },
  6303. "notification-url": "https://packages.drupal.org/8/downloads",
  6304. "license": [
  6305. "GPL-2.0+"
  6306. ],
  6307. "authors": [
  6308. {
  6309. "name": "Berdir",
  6310. "homepage": "https://www.drupal.org/user/214652"
  6311. },
  6312. {
  6313. "name": "Les Lim",
  6314. "homepage": "https://www.drupal.org/user/84263"
  6315. },
  6316. {
  6317. "name": "Manuel Garcia",
  6318. "homepage": "https://www.drupal.org/user/213194"
  6319. },
  6320. {
  6321. "name": "Nafes",
  6322. "homepage": "https://www.drupal.org/user/2489926"
  6323. },
  6324. {
  6325. "name": "miro_dietiker",
  6326. "homepage": "https://www.drupal.org/user/227761"
  6327. },
  6328. {
  6329. "name": "pillarsdotnet",
  6330. "homepage": "https://www.drupal.org/user/36148"
  6331. }
  6332. ],
  6333. "description": "Mail System",
  6334. "homepage": "https://www.drupal.org/project/mailsystem",
  6335. "support": {
  6336. "source": "https://git.drupalcode.org/project/mailsystem"
  6337. }
  6338. },
  6339. {
  6340. "name": "drupal/matomo",
  6341. "version": "1.11.0",
  6342. "source": {
  6343. "type": "git",
  6344. "url": "https://git.drupalcode.org/project/matomo.git",
  6345. "reference": "8.x-1.11"
  6346. },
  6347. "dist": {
  6348. "type": "zip",
  6349. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.11.zip",
  6350. "reference": "8.x-1.11",
  6351. "shasum": "82be96c20ab15df03d199ab98d047cef6e67d40b"
  6352. },
  6353. "require": {
  6354. "drupal/core": "^8 || ^9"
  6355. },
  6356. "require-dev": {
  6357. "drupal/php": "*",
  6358. "drupal/token": "*"
  6359. },
  6360. "type": "drupal-module",
  6361. "extra": {
  6362. "drupal": {
  6363. "version": "8.x-1.11",
  6364. "datestamp": "1601651459",
  6365. "security-coverage": {
  6366. "status": "covered",
  6367. "message": "Covered by Drupal's security advisory policy"
  6368. }
  6369. }
  6370. },
  6371. "notification-url": "https://packages.drupal.org/8/downloads",
  6372. "license": [
  6373. "GPL-2.0-or-later"
  6374. ],
  6375. "authors": [
  6376. {
  6377. "name": "Carsten Logemann",
  6378. "homepage": "https://www.drupal.org/u/C_Logemann"
  6379. },
  6380. {
  6381. "name": "Shelane French",
  6382. "homepage": "https://www.drupal.org/u/shelane"
  6383. },
  6384. {
  6385. "name": "See other contributors",
  6386. "homepage": "https://www.drupal.org/node/247808/committers"
  6387. }
  6388. ],
  6389. "description": "Adds Matomo javascript tracking code to all your site's pages",
  6390. "homepage": "https://www.drupal.org/project/matomo",
  6391. "support": {
  6392. "source": "https://git.drupal.org/project/matomo.git",
  6393. "issues": "https://www.drupal.org/project/issues/matomo"
  6394. }
  6395. },
  6396. {
  6397. "name": "drupal/maxlength",
  6398. "version": "1.0.0-rc1",
  6399. "source": {
  6400. "type": "git",
  6401. "url": "https://git.drupalcode.org/project/maxlength.git",
  6402. "reference": "8.x-1.0-rc1"
  6403. },
  6404. "dist": {
  6405. "type": "zip",
  6406. "url": "https://ftp.drupal.org/files/projects/maxlength-8.x-1.0-rc1.zip",
  6407. "reference": "8.x-1.0-rc1",
  6408. "shasum": "44eb9d79d9814cd786c2c9874c28033759665a99"
  6409. },
  6410. "require": {
  6411. "drupal/core": "^8.8 || ^9"
  6412. },
  6413. "type": "drupal-module",
  6414. "extra": {
  6415. "drupal": {
  6416. "version": "8.x-1.0-rc1",
  6417. "datestamp": "1593198218",
  6418. "security-coverage": {
  6419. "status": "not-covered",
  6420. "message": "RC releases are not covered by Drupal security advisories."
  6421. }
  6422. }
  6423. },
  6424. "notification-url": "https://packages.drupal.org/8/downloads",
  6425. "license": [
  6426. "GPL-2.0-or-later"
  6427. ],
  6428. "authors": [
  6429. {
  6430. "name": "Aron Novak",
  6431. "homepage": "https://www.drupal.org/user/61864"
  6432. },
  6433. {
  6434. "name": "Schnitzel",
  6435. "homepage": "https://www.drupal.org/user/643820"
  6436. },
  6437. {
  6438. "name": "a_c_m",
  6439. "homepage": "https://www.drupal.org/user/195063"
  6440. },
  6441. {
  6442. "name": "barneytech",
  6443. "homepage": "https://www.drupal.org/user/669922"
  6444. },
  6445. {
  6446. "name": "claudiu_cristea",
  6447. "homepage": "https://www.drupal.org/user/2623935"
  6448. },
  6449. {
  6450. "name": "dawehner",
  6451. "homepage": "https://www.drupal.org/user/99340"
  6452. },
  6453. {
  6454. "name": "derhasi",
  6455. "homepage": "https://www.drupal.org/user/83474"
  6456. },
  6457. {
  6458. "name": "frjo",
  6459. "homepage": "https://www.drupal.org/user/5546"
  6460. },
  6461. {
  6462. "name": "hefox",
  6463. "homepage": "https://www.drupal.org/user/426416"
  6464. },
  6465. {
  6466. "name": "jm.federico",
  6467. "homepage": "https://www.drupal.org/user/509892"
  6468. },
  6469. {
  6470. "name": "k4v",
  6471. "homepage": "https://www.drupal.org/user/744246"
  6472. },
  6473. {
  6474. "name": "mariano73",
  6475. "homepage": "https://www.drupal.org/user/1324866"
  6476. },
  6477. {
  6478. "name": "mariuss",
  6479. "homepage": "https://www.drupal.org/user/28539"
  6480. },
  6481. {
  6482. "name": "sanduhrs",
  6483. "homepage": "https://www.drupal.org/user/28074"
  6484. },
  6485. {
  6486. "name": "vasi1186",
  6487. "homepage": "https://www.drupal.org/user/342104"
  6488. },
  6489. {
  6490. "name": "webiator GmbH",
  6491. "homepage": "https://www.drupal.org/user/2390554"
  6492. }
  6493. ],
  6494. "description": "Limit the number of characters in textfields and textareas and shows the amount of characters left.",
  6495. "homepage": "https://www.drupal.org/project/maxlength",
  6496. "support": {
  6497. "source": "https://git.drupalcode.org/project/maxlength"
  6498. }
  6499. },
  6500. {
  6501. "name": "drupal/menu_admin_per_menu",
  6502. "version": "1.3.0",
  6503. "source": {
  6504. "type": "git",
  6505. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  6506. "reference": "8.x-1.3"
  6507. },
  6508. "dist": {
  6509. "type": "zip",
  6510. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.3.zip",
  6511. "reference": "8.x-1.3",
  6512. "shasum": "cb967bdd9ca6f5692d670d5c7c8d77587e7fd38c"
  6513. },
  6514. "require": {
  6515. "drupal/core": "^8 || ^9"
  6516. },
  6517. "type": "drupal-module",
  6518. "extra": {
  6519. "drupal": {
  6520. "version": "8.x-1.3",
  6521. "datestamp": "1593436060",
  6522. "security-coverage": {
  6523. "status": "covered",
  6524. "message": "Covered by Drupal's security advisory policy"
  6525. }
  6526. }
  6527. },
  6528. "notification-url": "https://packages.drupal.org/8/downloads",
  6529. "license": [
  6530. "GPL-2.0-or-later"
  6531. ],
  6532. "authors": [
  6533. {
  6534. "name": "JeroenT",
  6535. "homepage": "https://www.drupal.org/user/2228934"
  6536. },
  6537. {
  6538. "name": "anrikun",
  6539. "homepage": "https://www.drupal.org/user/410199"
  6540. },
  6541. {
  6542. "name": "jonas139",
  6543. "homepage": "https://www.drupal.org/user/2873401"
  6544. },
  6545. {
  6546. "name": "mkdok",
  6547. "homepage": "https://www.drupal.org/user/3308753"
  6548. }
  6549. ],
  6550. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  6551. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  6552. "support": {
  6553. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  6554. }
  6555. },
  6556. {
  6557. "name": "drupal/menu_block",
  6558. "version": "dev-1.x",
  6559. "source": {
  6560. "type": "git",
  6561. "url": "https://git.drupalcode.org/project/menu_block.git",
  6562. "reference": "567becffbb0589e824fb053f15fb38a5846e7276"
  6563. },
  6564. "require": {
  6565. "drupal/core": "^8 || ^9"
  6566. },
  6567. "type": "drupal-module",
  6568. "extra": {
  6569. "branch-alias": {
  6570. "dev-1.x": "1.x-dev"
  6571. },
  6572. "drupal": {
  6573. "version": "8.x-1.6+5-dev",
  6574. "datestamp": "1591593747",
  6575. "security-coverage": {
  6576. "status": "not-covered",
  6577. "message": "Dev releases are not covered by Drupal security advisories."
  6578. }
  6579. }
  6580. },
  6581. "notification-url": "https://packages.drupal.org/8/downloads",
  6582. "license": [
  6583. "GPL-2.0-or-later"
  6584. ],
  6585. "authors": [
  6586. {
  6587. "name": "Dave Reid",
  6588. "homepage": "https://www.drupal.org/user/53892"
  6589. },
  6590. {
  6591. "name": "JohnAlbin",
  6592. "homepage": "https://www.drupal.org/user/32095"
  6593. },
  6594. {
  6595. "name": "joelpittet",
  6596. "homepage": "https://www.drupal.org/user/160302"
  6597. },
  6598. {
  6599. "name": "kim.pepper",
  6600. "homepage": "https://www.drupal.org/user/370574"
  6601. },
  6602. {
  6603. "name": "rrrob",
  6604. "homepage": "https://www.drupal.org/user/273533"
  6605. }
  6606. ],
  6607. "description": "Provides configurable blocks of menu links.",
  6608. "homepage": "https://www.drupal.org/project/menu_block",
  6609. "support": {
  6610. "source": "https://git.drupalcode.org/project/menu_block"
  6611. },
  6612. "time": "2020-11-18T00:42:05+00:00"
  6613. },
  6614. {
  6615. "name": "drupal/menu_position",
  6616. "version": "dev-1.x",
  6617. "source": {
  6618. "type": "git",
  6619. "url": "https://git.drupalcode.org/project/menu_position.git",
  6620. "reference": "bce075f4ea167a851d7401602394de557b76c85f"
  6621. },
  6622. "require": {
  6623. "drupal/core": "^8 || ^9"
  6624. },
  6625. "type": "drupal-module",
  6626. "extra": {
  6627. "branch-alias": {
  6628. "dev-1.x": "1.x-dev"
  6629. },
  6630. "drupal": {
  6631. "version": "8.x-1.0-alpha4+4-dev",
  6632. "datestamp": "1587797468",
  6633. "security-coverage": {
  6634. "status": "not-covered",
  6635. "message": "Dev releases are not covered by Drupal security advisories."
  6636. }
  6637. }
  6638. },
  6639. "notification-url": "https://packages.drupal.org/8/downloads",
  6640. "license": [
  6641. "GPL-2.0+"
  6642. ],
  6643. "authors": [
  6644. {
  6645. "name": "BarisW",
  6646. "homepage": "https://www.drupal.org/user/107229"
  6647. },
  6648. {
  6649. "name": "JohnAlbin",
  6650. "homepage": "https://www.drupal.org/user/32095"
  6651. },
  6652. {
  6653. "name": "Sutharsan",
  6654. "homepage": "https://www.drupal.org/user/73854"
  6655. },
  6656. {
  6657. "name": "joelpittet",
  6658. "homepage": "https://www.drupal.org/user/160302"
  6659. },
  6660. {
  6661. "name": "lbainbridge",
  6662. "homepage": "https://www.drupal.org/user/2406996"
  6663. }
  6664. ],
  6665. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  6666. "homepage": "https://www.drupal.org/project/menu_position",
  6667. "support": {
  6668. "source": "https://git.drupalcode.org/project/menu_position",
  6669. "issues": "https://www.drupal.org/project/issues/menu_position"
  6670. },
  6671. "time": "2020-04-25T06:50:43+00:00"
  6672. },
  6673. {
  6674. "name": "drupal/pagerer",
  6675. "version": "2.1.0",
  6676. "source": {
  6677. "type": "git",
  6678. "url": "https://git.drupalcode.org/project/pagerer.git",
  6679. "reference": "8.x-2.1"
  6680. },
  6681. "dist": {
  6682. "type": "zip",
  6683. "url": "https://ftp.drupal.org/files/projects/pagerer-8.x-2.1.zip",
  6684. "reference": "8.x-2.1",
  6685. "shasum": "a08539fde32372b66771afbaeba4105de19ddb14"
  6686. },
  6687. "require": {
  6688. "drupal/core": "^8.9 || ^9.1",
  6689. "drupal/jquery_ui_button": "*",
  6690. "drupal/jquery_ui_slider": "*",
  6691. "php": ">=7.1"
  6692. },
  6693. "type": "drupal-module",
  6694. "extra": {
  6695. "drupal": {
  6696. "version": "8.x-2.1",
  6697. "datestamp": "1621878520",
  6698. "security-coverage": {
  6699. "status": "covered",
  6700. "message": "Covered by Drupal's security advisory policy"
  6701. }
  6702. }
  6703. },
  6704. "notification-url": "https://packages.drupal.org/8/downloads",
  6705. "license": [
  6706. "GPL-2.0-or-later"
  6707. ],
  6708. "authors": [
  6709. {
  6710. "name": "mondrake",
  6711. "homepage": "https://www.drupal.org/user/1307444"
  6712. }
  6713. ],
  6714. "description": "Configurable pager styles.",
  6715. "homepage": "https://www.drupal.org/project/pagerer",
  6716. "support": {
  6717. "source": "https://git.drupalcode.org/project/pagerer"
  6718. }
  6719. },
  6720. {
  6721. "name": "drupal/paragraphs",
  6722. "version": "1.12.0",
  6723. "source": {
  6724. "type": "git",
  6725. "url": "https://git.drupalcode.org/project/paragraphs.git",
  6726. "reference": "8.x-1.12"
  6727. },
  6728. "dist": {
  6729. "type": "zip",
  6730. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.12.zip",
  6731. "reference": "8.x-1.12",
  6732. "shasum": "3b67d8af1160af42d93a4610be1e02869e428965"
  6733. },
  6734. "require": {
  6735. "drupal/core": "^8.8 || ^9",
  6736. "drupal/entity_reference_revisions": "~1.3"
  6737. },
  6738. "require-dev": {
  6739. "drupal/block_field": "~1.0",
  6740. "drupal/ctools": "3.x-dev",
  6741. "drupal/diff": "~1.0",
  6742. "drupal/entity_browser": "2.x-dev",
  6743. "drupal/entity_usage": "2.x-dev",
  6744. "drupal/field_group": "3.x-dev",
  6745. "drupal/inline_entity_form": "~1.0",
  6746. "drupal/paragraphs-paragraphs_library": "*",
  6747. "drupal/replicate": "~1.0",
  6748. "drupal/search_api": "~1.0",
  6749. "drupal/search_api_db": "*"
  6750. },
  6751. "suggest": {
  6752. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  6753. },
  6754. "type": "drupal-module",
  6755. "extra": {
  6756. "drupal": {
  6757. "version": "8.x-1.12",
  6758. "datestamp": "1590140081",
  6759. "security-coverage": {
  6760. "status": "covered",
  6761. "message": "Covered by Drupal's security advisory policy"
  6762. }
  6763. }
  6764. },
  6765. "notification-url": "https://packages.drupal.org/8/downloads",
  6766. "license": [
  6767. "GPL-2.0-or-later"
  6768. ],
  6769. "authors": [
  6770. {
  6771. "name": "Berdir",
  6772. "homepage": "https://www.drupal.org/user/214652"
  6773. },
  6774. {
  6775. "name": "Frans",
  6776. "homepage": "https://www.drupal.org/user/514222"
  6777. },
  6778. {
  6779. "name": "Primsi",
  6780. "homepage": "https://www.drupal.org/user/282629"
  6781. },
  6782. {
  6783. "name": "jeroen.b",
  6784. "homepage": "https://www.drupal.org/user/1853532"
  6785. },
  6786. {
  6787. "name": "jstoller",
  6788. "homepage": "https://www.drupal.org/user/99012"
  6789. },
  6790. {
  6791. "name": "miro_dietiker",
  6792. "homepage": "https://www.drupal.org/user/227761"
  6793. }
  6794. ],
  6795. "description": "Enables the creation of Paragraphs entities.",
  6796. "homepage": "https://www.drupal.org/project/paragraphs",
  6797. "support": {
  6798. "source": "https://git.drupalcode.org/project/paragraphs"
  6799. }
  6800. },
  6801. {
  6802. "name": "drupal/path_alias_xt",
  6803. "version": "dev-1.x",
  6804. "source": {
  6805. "type": "git",
  6806. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  6807. "reference": "10ef76dd3eb25bc1342195336291ded3f2d8cc7e"
  6808. },
  6809. "require": {
  6810. "drupal/core": "^8.7.7 || ^9"
  6811. },
  6812. "type": "drupal-module",
  6813. "extra": {
  6814. "branch-alias": {
  6815. "dev-1.x": "1.x-dev"
  6816. },
  6817. "drupal": {
  6818. "version": "8.x-1.x-dev",
  6819. "datestamp": "1590299862",
  6820. "security-coverage": {
  6821. "status": "not-covered",
  6822. "message": "Dev releases are not covered by Drupal security advisories."
  6823. }
  6824. }
  6825. },
  6826. "notification-url": "https://packages.drupal.org/8/downloads",
  6827. "license": [
  6828. "GPL-2.0-or-later"
  6829. ],
  6830. "authors": [
  6831. {
  6832. "name": "RdeBoer",
  6833. "homepage": "https://www.drupal.org/user/404007"
  6834. },
  6835. {
  6836. "name": "adriancid",
  6837. "homepage": "https://www.drupal.org/user/1962106"
  6838. },
  6839. {
  6840. "name": "sdstyles",
  6841. "homepage": "https://www.drupal.org/user/1420228"
  6842. }
  6843. ],
  6844. "description": "Automatically extend path aliases to include tabs, like <em>about-us/edit</em> for <em>node/123/edit</em>.<br> Allow these aliases to be entered in page specification wild-cards, <em>about-us*</em>, e.g for block visibility.",
  6845. "homepage": "https://www.drupal.org/project/path_alias_xt",
  6846. "support": {
  6847. "source": "https://git.drupalcode.org/project/path_alias_xt"
  6848. },
  6849. "time": "2020-05-24T05:57:09+00:00"
  6850. },
  6851. {
  6852. "name": "drupal/pathauto",
  6853. "version": "1.8.0",
  6854. "source": {
  6855. "type": "git",
  6856. "url": "https://git.drupalcode.org/project/pathauto.git",
  6857. "reference": "8.x-1.8"
  6858. },
  6859. "dist": {
  6860. "type": "zip",
  6861. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.8.zip",
  6862. "reference": "8.x-1.8",
  6863. "shasum": "ede3216abb9c4f77709338d9147334c595046329"
  6864. },
  6865. "require": {
  6866. "drupal/core": "^8.8 || ^9",
  6867. "drupal/ctools": "*",
  6868. "drupal/token": "*"
  6869. },
  6870. "suggest": {
  6871. "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."
  6872. },
  6873. "type": "drupal-module",
  6874. "extra": {
  6875. "drupal": {
  6876. "version": "8.x-1.8",
  6877. "datestamp": "1588103046",
  6878. "security-coverage": {
  6879. "status": "covered",
  6880. "message": "Covered by Drupal's security advisory policy"
  6881. }
  6882. },
  6883. "drush": {
  6884. "services": {
  6885. "drush.services.yml": "^9 || ^10"
  6886. }
  6887. }
  6888. },
  6889. "notification-url": "https://packages.drupal.org/8/downloads",
  6890. "license": [
  6891. "GPL-2.0-or-later"
  6892. ],
  6893. "authors": [
  6894. {
  6895. "name": "Berdir",
  6896. "homepage": "https://www.drupal.org/user/214652"
  6897. },
  6898. {
  6899. "name": "Dave Reid",
  6900. "homepage": "https://www.drupal.org/user/53892"
  6901. },
  6902. {
  6903. "name": "Freso",
  6904. "homepage": "https://www.drupal.org/user/27504"
  6905. },
  6906. {
  6907. "name": "greggles",
  6908. "homepage": "https://www.drupal.org/user/36762"
  6909. }
  6910. ],
  6911. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  6912. "homepage": "https://www.drupal.org/project/pathauto",
  6913. "support": {
  6914. "source": "https://cgit.drupalcode.org/pathauto",
  6915. "issues": "https://www.drupal.org/project/issues/pathauto",
  6916. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  6917. }
  6918. },
  6919. {
  6920. "name": "drupal/pathologic",
  6921. "version": "1.0.0-alpha2",
  6922. "source": {
  6923. "type": "git",
  6924. "url": "https://git.drupalcode.org/project/pathologic.git",
  6925. "reference": "8.x-1.0-alpha2"
  6926. },
  6927. "dist": {
  6928. "type": "zip",
  6929. "url": "https://ftp.drupal.org/files/projects/pathologic-8.x-1.0-alpha2.zip",
  6930. "reference": "8.x-1.0-alpha2",
  6931. "shasum": "5b1b6846ab72e24a90dcd4cafbe855fba069e56b"
  6932. },
  6933. "require": {
  6934. "drupal/core": "^8 || ^9"
  6935. },
  6936. "type": "drupal-module",
  6937. "extra": {
  6938. "drupal": {
  6939. "version": "8.x-1.0-alpha2",
  6940. "datestamp": "1593911470",
  6941. "security-coverage": {
  6942. "status": "not-covered",
  6943. "message": "Alpha releases are not covered by Drupal security advisories."
  6944. }
  6945. }
  6946. },
  6947. "notification-url": "https://packages.drupal.org/8/downloads",
  6948. "license": [
  6949. "GPL-2.0-or-later"
  6950. ],
  6951. "authors": [
  6952. {
  6953. "name": "Berdir",
  6954. "homepage": "https://www.drupal.org/user/214652"
  6955. },
  6956. {
  6957. "name": "Garrett Albright",
  6958. "homepage": "https://www.drupal.org/user/191212"
  6959. },
  6960. {
  6961. "name": "dww",
  6962. "homepage": "https://www.drupal.org/user/46549"
  6963. }
  6964. ],
  6965. "description": "Helps avoid broken links and incorrect paths in content.",
  6966. "homepage": "https://www.drupal.org/project/pathologic",
  6967. "support": {
  6968. "source": "https://git.drupalcode.org/project/pathologic"
  6969. }
  6970. },
  6971. {
  6972. "name": "drupal/persistent_login",
  6973. "version": "1.3.0",
  6974. "source": {
  6975. "type": "git",
  6976. "url": "https://git.drupalcode.org/project/persistent_login.git",
  6977. "reference": "8.x-1.3"
  6978. },
  6979. "dist": {
  6980. "type": "zip",
  6981. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.3.zip",
  6982. "reference": "8.x-1.3",
  6983. "shasum": "dfff4cb76d6b3888073dd992bcf4d51b1bb47696"
  6984. },
  6985. "require": {
  6986. "drupal/core": "^8.3 || ^9.0"
  6987. },
  6988. "type": "drupal-module",
  6989. "extra": {
  6990. "drupal": {
  6991. "version": "8.x-1.3",
  6992. "datestamp": "1591597823",
  6993. "security-coverage": {
  6994. "status": "covered",
  6995. "message": "Covered by Drupal's security advisory policy"
  6996. }
  6997. }
  6998. },
  6999. "notification-url": "https://packages.drupal.org/8/downloads",
  7000. "license": [
  7001. "GPL-2.0-or-later"
  7002. ],
  7003. "authors": [
  7004. {
  7005. "name": "gapple",
  7006. "homepage": "https://www.drupal.org/user/490940"
  7007. }
  7008. ],
  7009. "description": "Provides a \"Remember Me\" feature on the login form.",
  7010. "homepage": "https://www.drupal.org/project/persistent_login",
  7011. "keywords": [
  7012. "Drupal"
  7013. ],
  7014. "support": {
  7015. "source": "https://git.drupalcode.org/project/persistent_login",
  7016. "issues": "https://www.drupal.org/project/issues/persistent_login"
  7017. }
  7018. },
  7019. {
  7020. "name": "drupal/profile",
  7021. "version": "1.2.0",
  7022. "source": {
  7023. "type": "git",
  7024. "url": "https://git.drupalcode.org/project/profile.git",
  7025. "reference": "8.x-1.2"
  7026. },
  7027. "dist": {
  7028. "type": "zip",
  7029. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.2.zip",
  7030. "reference": "8.x-1.2",
  7031. "shasum": "5ea5167ed6cc5b47761ea497fe20bae0fbea1cf2"
  7032. },
  7033. "require": {
  7034. "drupal/core": "^8.8 || ^9",
  7035. "drupal/entity": "^1.0-rc2"
  7036. },
  7037. "require-dev": {
  7038. "drupal/token": "^1.7"
  7039. },
  7040. "type": "drupal-module",
  7041. "extra": {
  7042. "drupal": {
  7043. "version": "8.x-1.2",
  7044. "datestamp": "1604422701",
  7045. "security-coverage": {
  7046. "status": "covered",
  7047. "message": "Covered by Drupal's security advisory policy"
  7048. }
  7049. }
  7050. },
  7051. "notification-url": "https://packages.drupal.org/8/downloads",
  7052. "license": [
  7053. "GPL-2.0-or-later"
  7054. ],
  7055. "authors": [
  7056. {
  7057. "name": "bojanz",
  7058. "homepage": "https://www.drupal.org/user/86106"
  7059. },
  7060. {
  7061. "name": "daggerhart",
  7062. "homepage": "https://www.drupal.org/user/167806"
  7063. },
  7064. {
  7065. "name": "fago",
  7066. "homepage": "https://www.drupal.org/user/16747"
  7067. },
  7068. {
  7069. "name": "jsacksick",
  7070. "homepage": "https://www.drupal.org/user/972218"
  7071. },
  7072. {
  7073. "name": "mglaman",
  7074. "homepage": "https://www.drupal.org/user/2416470"
  7075. },
  7076. {
  7077. "name": "pcambra",
  7078. "homepage": "https://www.drupal.org/user/122101"
  7079. }
  7080. ],
  7081. "description": "Provides configurable user profiles.",
  7082. "homepage": "http://drupal.org/project/profile",
  7083. "support": {
  7084. "source": "https://git.drupalcode.org/project/profile"
  7085. }
  7086. },
  7087. {
  7088. "name": "drupal/redirect",
  7089. "version": "1.6.0",
  7090. "source": {
  7091. "type": "git",
  7092. "url": "https://git.drupalcode.org/project/redirect.git",
  7093. "reference": "8.x-1.6"
  7094. },
  7095. "dist": {
  7096. "type": "zip",
  7097. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.6.zip",
  7098. "reference": "8.x-1.6",
  7099. "shasum": "f848e001deac8425ae57d4b9397087c491d37294"
  7100. },
  7101. "require": {
  7102. "drupal/core": "^8.8 || ^9"
  7103. },
  7104. "type": "drupal-module",
  7105. "extra": {
  7106. "drupal": {
  7107. "version": "8.x-1.6",
  7108. "datestamp": "1589312204",
  7109. "security-coverage": {
  7110. "status": "covered",
  7111. "message": "Covered by Drupal's security advisory policy"
  7112. }
  7113. }
  7114. },
  7115. "notification-url": "https://packages.drupal.org/8/downloads",
  7116. "license": [
  7117. "GPL-2.0-or-later"
  7118. ],
  7119. "authors": [
  7120. {
  7121. "name": "Berdir",
  7122. "homepage": "https://www.drupal.org/user/214652"
  7123. },
  7124. {
  7125. "name": "Dave Reid",
  7126. "homepage": "https://www.drupal.org/user/53892"
  7127. },
  7128. {
  7129. "name": "pifagor",
  7130. "homepage": "https://www.drupal.org/user/2375692"
  7131. }
  7132. ],
  7133. "description": "Allows users to redirect from old URLs to new URLs.",
  7134. "homepage": "https://www.drupal.org/project/redirect",
  7135. "support": {
  7136. "source": "https://git.drupalcode.org/project/redirect"
  7137. }
  7138. },
  7139. {
  7140. "name": "drupal/redirect_after_login",
  7141. "version": "2.7.0",
  7142. "source": {
  7143. "type": "git",
  7144. "url": "https://git.drupalcode.org/project/redirect_after_login.git",
  7145. "reference": "8.x-2.7"
  7146. },
  7147. "dist": {
  7148. "type": "zip",
  7149. "url": "https://ftp.drupal.org/files/projects/redirect_after_login-8.x-2.7.zip",
  7150. "reference": "8.x-2.7",
  7151. "shasum": "3ce87df792e918c2ec5a00e24818c893e558d111"
  7152. },
  7153. "require": {
  7154. "drupal/core": "^8 || ^9"
  7155. },
  7156. "type": "drupal-module",
  7157. "extra": {
  7158. "drupal": {
  7159. "version": "8.x-2.7",
  7160. "datestamp": "1611645039",
  7161. "security-coverage": {
  7162. "status": "covered",
  7163. "message": "Covered by Drupal's security advisory policy"
  7164. }
  7165. }
  7166. },
  7167. "notification-url": "https://packages.drupal.org/8/downloads",
  7168. "license": [
  7169. "GPL-2.0+"
  7170. ],
  7171. "authors": [
  7172. {
  7173. "name": "Shamsher Alam",
  7174. "homepage": "https://www.drupal.org/u/shamsher_alam",
  7175. "role": "Author"
  7176. },
  7177. {
  7178. "name": "pen",
  7179. "homepage": "https://www.drupal.org/user/2435634"
  7180. },
  7181. {
  7182. "name": "prempatel2447",
  7183. "homepage": "https://www.drupal.org/user/3250112"
  7184. },
  7185. {
  7186. "name": "rahul-kr-sh",
  7187. "homepage": "https://www.drupal.org/user/3561577"
  7188. }
  7189. ],
  7190. "description": "Redirect user after login to a configured url",
  7191. "homepage": "https://drupal.org/project/redirect_after_login",
  7192. "support": {
  7193. "source": "https://git.drupalcode.org/project/redirect_after_login"
  7194. }
  7195. },
  7196. {
  7197. "name": "drupal/redis",
  7198. "version": "1.5.0",
  7199. "source": {
  7200. "type": "git",
  7201. "url": "https://git.drupalcode.org/project/redis.git",
  7202. "reference": "8.x-1.5"
  7203. },
  7204. "dist": {
  7205. "type": "zip",
  7206. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.5.zip",
  7207. "reference": "8.x-1.5",
  7208. "shasum": "4283333dc2bf405045765b83ca662acc409a6543"
  7209. },
  7210. "require": {
  7211. "drupal/core": "^8.8 || ^9"
  7212. },
  7213. "suggest": {
  7214. "predis/predis": "^1.1.1"
  7215. },
  7216. "type": "drupal-module",
  7217. "extra": {
  7218. "drupal": {
  7219. "version": "8.x-1.5",
  7220. "datestamp": "1609972488",
  7221. "security-coverage": {
  7222. "status": "covered",
  7223. "message": "Covered by Drupal's security advisory policy"
  7224. }
  7225. }
  7226. },
  7227. "autoload": {
  7228. "psr-4": {
  7229. "Drupal\\redis\\": "src"
  7230. }
  7231. },
  7232. "notification-url": "https://packages.drupal.org/8/downloads",
  7233. "license": [
  7234. "GPL-2.0-or-later"
  7235. ],
  7236. "authors": [
  7237. {
  7238. "name": "Berdir",
  7239. "homepage": "https://www.drupal.org/user/214652"
  7240. },
  7241. {
  7242. "name": "pounard",
  7243. "homepage": "https://www.drupal.org/user/240164"
  7244. }
  7245. ],
  7246. "description": "Integration of Drupal with the Redis key-value store.",
  7247. "homepage": "https://www.drupal.org/project/redis",
  7248. "support": {
  7249. "source": "https://git.drupalcode.org/project/redis"
  7250. }
  7251. },
  7252. {
  7253. "name": "drupal/search_api",
  7254. "version": "1.19.0",
  7255. "source": {
  7256. "type": "git",
  7257. "url": "https://git.drupalcode.org/project/search_api.git",
  7258. "reference": "8.x-1.19"
  7259. },
  7260. "dist": {
  7261. "type": "zip",
  7262. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.19.zip",
  7263. "reference": "8.x-1.19",
  7264. "shasum": "5654e9d02117e28c585d89a25ea3cc40d20c5019"
  7265. },
  7266. "require": {
  7267. "drupal/core": "^8.8 || ^9"
  7268. },
  7269. "conflict": {
  7270. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  7271. },
  7272. "require-dev": {
  7273. "drupal/language_fallback_fix": "@dev",
  7274. "drupal/search_api_autocomplete": "@dev",
  7275. "drupal/search_api_db": "*"
  7276. },
  7277. "suggest": {
  7278. "drupal/facets": "Adds the ability to create faceted searches.",
  7279. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  7280. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  7281. },
  7282. "type": "drupal-module",
  7283. "extra": {
  7284. "drupal": {
  7285. "version": "8.x-1.19",
  7286. "datestamp": "1612192040",
  7287. "security-coverage": {
  7288. "status": "covered",
  7289. "message": "Covered by Drupal's security advisory policy"
  7290. }
  7291. },
  7292. "drush": {
  7293. "services": {
  7294. "drush.services.yml": "^9"
  7295. }
  7296. }
  7297. },
  7298. "notification-url": "https://packages.drupal.org/8/downloads",
  7299. "license": [
  7300. "GPL-2.0-or-later"
  7301. ],
  7302. "authors": [
  7303. {
  7304. "name": "Thomas Seidl",
  7305. "homepage": "https://www.drupal.org/u/drunken-monkey"
  7306. },
  7307. {
  7308. "name": "Nick Veenhof",
  7309. "homepage": "https://www.drupal.org/u/nick_vh"
  7310. },
  7311. {
  7312. "name": "See other contributors",
  7313. "homepage": "https://www.drupal.org/node/790418/committers"
  7314. }
  7315. ],
  7316. "description": "Provides a generic framework for modules offering search capabilities.",
  7317. "homepage": "https://www.drupal.org/project/search_api",
  7318. "support": {
  7319. "source": "https://git.drupalcode.org/project/search_api",
  7320. "issues": "https://www.drupal.org/project/issues/search_api",
  7321. "irc": "irc://irc.freenode.org/drupal-search-api"
  7322. }
  7323. },
  7324. {
  7325. "name": "drupal/search_api_db",
  7326. "version": "1.18.0",
  7327. "require": {
  7328. "drupal/core": "^8.8 || ^9",
  7329. "drupal/search_api": "*"
  7330. },
  7331. "type": "metapackage",
  7332. "extra": {
  7333. "drupal": {
  7334. "version": "8.x-1.18",
  7335. "datestamp": "1605204423",
  7336. "security-coverage": {
  7337. "status": "covered",
  7338. "message": "Covered by Drupal's security advisory policy"
  7339. }
  7340. }
  7341. },
  7342. "notification-url": "https://packages.drupal.org/8/downloads",
  7343. "license": [
  7344. "GPL-2.0-or-later"
  7345. ],
  7346. "authors": [
  7347. {
  7348. "name": "Nick_vh",
  7349. "homepage": "https://www.drupal.org/user/122682"
  7350. },
  7351. {
  7352. "name": "borisson_",
  7353. "homepage": "https://www.drupal.org/user/2393360"
  7354. },
  7355. {
  7356. "name": "drunken monkey",
  7357. "homepage": "https://www.drupal.org/user/205582"
  7358. }
  7359. ],
  7360. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  7361. "homepage": "https://www.drupal.org/project/search_api",
  7362. "support": {
  7363. "source": "https://git.drupalcode.org/project/search_api"
  7364. }
  7365. },
  7366. {
  7367. "name": "drupal/smart_trim",
  7368. "version": "1.3.0",
  7369. "source": {
  7370. "type": "git",
  7371. "url": "https://git.drupalcode.org/project/smart_trim.git",
  7372. "reference": "8.x-1.3"
  7373. },
  7374. "dist": {
  7375. "type": "zip",
  7376. "url": "https://ftp.drupal.org/files/projects/smart_trim-8.x-1.3.zip",
  7377. "reference": "8.x-1.3",
  7378. "shasum": "5894aa067fba19a3452ed8ce749f33bd9ae91907"
  7379. },
  7380. "require": {
  7381. "drupal/core": "^8 || ^9"
  7382. },
  7383. "type": "drupal-module",
  7384. "extra": {
  7385. "drupal": {
  7386. "version": "8.x-1.3",
  7387. "datestamp": "1589766531",
  7388. "security-coverage": {
  7389. "status": "covered",
  7390. "message": "Covered by Drupal's security advisory policy"
  7391. }
  7392. }
  7393. },
  7394. "notification-url": "https://packages.drupal.org/8/downloads",
  7395. "license": [
  7396. "GPL-2.0-or-later"
  7397. ],
  7398. "authors": [
  7399. {
  7400. "name": "Mark Casias (markie)",
  7401. "homepage": "https://www.drupal.org/u/markie",
  7402. "role": "Maintainer"
  7403. },
  7404. {
  7405. "name": "chrisjlee",
  7406. "homepage": "https://www.drupal.org/user/760600"
  7407. },
  7408. {
  7409. "name": "drywall",
  7410. "homepage": "https://www.drupal.org/user/192591"
  7411. },
  7412. {
  7413. "name": "jsenich",
  7414. "homepage": "https://www.drupal.org/user/58871"
  7415. },
  7416. {
  7417. "name": "markie",
  7418. "homepage": "https://www.drupal.org/user/206687"
  7419. },
  7420. {
  7421. "name": "newsignature",
  7422. "homepage": "https://www.drupal.org/user/765518"
  7423. }
  7424. ],
  7425. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  7426. "homepage": "https://drupal.org/project/smart_trim",
  7427. "support": {
  7428. "source": "https://cgit.drupalcode.org/smart_trim",
  7429. "issues": "https://drupal.org/project/issues/smart_trim"
  7430. }
  7431. },
  7432. {
  7433. "name": "drupal/smtp",
  7434. "version": "1.0.0",
  7435. "source": {
  7436. "type": "git",
  7437. "url": "https://git.drupalcode.org/project/smtp.git",
  7438. "reference": "8.x-1.0"
  7439. },
  7440. "dist": {
  7441. "type": "zip",
  7442. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.0.zip",
  7443. "reference": "8.x-1.0",
  7444. "shasum": "c40cc7a3c20d3f743e3a4e53f4cc296748da89fd"
  7445. },
  7446. "require": {
  7447. "drupal/core": "^8.8 || ^9",
  7448. "phpmailer/phpmailer": "^6.1.7"
  7449. },
  7450. "suggest": {
  7451. "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
  7452. },
  7453. "type": "drupal-module",
  7454. "extra": {
  7455. "drupal": {
  7456. "version": "8.x-1.0",
  7457. "datestamp": "1601070985",
  7458. "security-coverage": {
  7459. "status": "covered",
  7460. "message": "Covered by Drupal's security advisory policy"
  7461. }
  7462. },
  7463. "branch-alias": {
  7464. "dev-8.x-1.x": "1.x-dev"
  7465. }
  7466. },
  7467. "notification-url": "https://packages.drupal.org/8/downloads",
  7468. "license": [
  7469. "GPL-2.0-or-later"
  7470. ],
  7471. "authors": [
  7472. {
  7473. "name": "LukeLast",
  7474. "homepage": "https://www.drupal.org/user/30151"
  7475. },
  7476. {
  7477. "name": "japerry",
  7478. "homepage": "https://www.drupal.org/user/45640"
  7479. },
  7480. {
  7481. "name": "josesanmartin",
  7482. "homepage": "https://www.drupal.org/user/72012"
  7483. },
  7484. {
  7485. "name": "oadaeh",
  7486. "homepage": "https://www.drupal.org/user/4649"
  7487. },
  7488. {
  7489. "name": "sadashiv",
  7490. "homepage": "https://www.drupal.org/user/1773304"
  7491. },
  7492. {
  7493. "name": "wundo",
  7494. "homepage": "https://www.drupal.org/user/25523"
  7495. },
  7496. {
  7497. "name": "yettyn",
  7498. "homepage": "https://www.drupal.org/user/93281"
  7499. }
  7500. ],
  7501. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  7502. "homepage": "https://www.drupal.org/project/smtp",
  7503. "support": {
  7504. "source": "https://git.drupalcode.org/project/smtp",
  7505. "issues": "https://www.drupal.org/project/issues/smtp"
  7506. }
  7507. },
  7508. {
  7509. "name": "drupal/sophron",
  7510. "version": "1.1.0",
  7511. "source": {
  7512. "type": "git",
  7513. "url": "https://git.drupalcode.org/project/sophron.git",
  7514. "reference": "8.x-1.1"
  7515. },
  7516. "dist": {
  7517. "type": "zip",
  7518. "url": "https://ftp.drupal.org/files/projects/sophron-8.x-1.1.zip",
  7519. "reference": "8.x-1.1",
  7520. "shasum": "afb3650458b15b87918471defa763f24880622ca"
  7521. },
  7522. "require": {
  7523. "drupal/core": "^8.9 || ^9",
  7524. "fileeye/mimemap": "^1.1.4",
  7525. "php": ">=7.1"
  7526. },
  7527. "type": "drupal-module",
  7528. "extra": {
  7529. "drupal": {
  7530. "version": "8.x-1.1",
  7531. "datestamp": "1606047077",
  7532. "security-coverage": {
  7533. "status": "covered",
  7534. "message": "Covered by Drupal's security advisory policy"
  7535. }
  7536. }
  7537. },
  7538. "autoload": {
  7539. "psr-4": {
  7540. "Drupal\\sophron\\": "src/"
  7541. }
  7542. },
  7543. "notification-url": "https://packages.drupal.org/8/downloads",
  7544. "license": [
  7545. "GPL-2.0-or-later"
  7546. ],
  7547. "authors": [
  7548. {
  7549. "name": "mondrake",
  7550. "homepage": "https://www.drupal.org/user/1307444"
  7551. }
  7552. ],
  7553. "description": "Provides an extensive MIME types management API",
  7554. "homepage": "https://www.drupal.org/project/sophron",
  7555. "support": {
  7556. "source": "https://git.drupalcode.org/project/sophron"
  7557. }
  7558. },
  7559. {
  7560. "name": "drupal/synonyms",
  7561. "version": "dev-1.x",
  7562. "source": {
  7563. "type": "git",
  7564. "url": "https://git.drupalcode.org/project/synonyms.git",
  7565. "reference": "487a41e2b4d4c4a5f161852cbd46178edb954d5d"
  7566. },
  7567. "require": {
  7568. "drupal/core": "^8 || ^9"
  7569. },
  7570. "type": "drupal-module",
  7571. "extra": {
  7572. "branch-alias": {
  7573. "dev-1.x": "1.x-dev"
  7574. },
  7575. "drupal": {
  7576. "version": "8.x-1.0-alpha1+23-dev",
  7577. "datestamp": "1607727823",
  7578. "security-coverage": {
  7579. "status": "not-covered",
  7580. "message": "Dev releases are not covered by Drupal security advisories."
  7581. }
  7582. }
  7583. },
  7584. "notification-url": "https://packages.drupal.org/8/downloads",
  7585. "license": [
  7586. "GPL-2.0-or-later"
  7587. ],
  7588. "authors": [
  7589. {
  7590. "name": "Zen",
  7591. "homepage": "https://www.drupal.org/user/21209"
  7592. },
  7593. {
  7594. "name": "bojanz",
  7595. "homepage": "https://www.drupal.org/user/86106"
  7596. },
  7597. {
  7598. "name": "bucefal91",
  7599. "homepage": "https://www.drupal.org/user/504128"
  7600. },
  7601. {
  7602. "name": "devad",
  7603. "homepage": "https://www.drupal.org/user/2268520"
  7604. }
  7605. ],
  7606. "description": "Provides synonyms feature for content entities.",
  7607. "homepage": "https://www.drupal.org/project/synonyms",
  7608. "support": {
  7609. "source": "https://git.drupalcode.org/project/synonyms"
  7610. },
  7611. "time": "2020-12-11T23:17:33+00:00"
  7612. },
  7613. {
  7614. "name": "drupal/taxonomy_unique",
  7615. "version": "2.3.0",
  7616. "source": {
  7617. "type": "git",
  7618. "url": "https://git.drupalcode.org/project/taxonomy_unique.git",
  7619. "reference": "8.x-2.3"
  7620. },
  7621. "dist": {
  7622. "type": "zip",
  7623. "url": "https://ftp.drupal.org/files/projects/taxonomy_unique-8.x-2.3.zip",
  7624. "reference": "8.x-2.3",
  7625. "shasum": "550d06d5b9c670538b93e0aa31b43b4eb1a76f7e"
  7626. },
  7627. "require": {
  7628. "drupal/core": "^8 || ^9"
  7629. },
  7630. "require-dev": {
  7631. "drupal/coder": "^8.3.6",
  7632. "squizlabs/php_codesniffer": "^3.4.1"
  7633. },
  7634. "type": "drupal-module",
  7635. "extra": {
  7636. "drupal": {
  7637. "version": "8.x-2.3",
  7638. "datestamp": "1591087096",
  7639. "security-coverage": {
  7640. "status": "covered",
  7641. "message": "Covered by Drupal's security advisory policy"
  7642. }
  7643. }
  7644. },
  7645. "notification-url": "https://packages.drupal.org/8/downloads",
  7646. "scripts": {
  7647. "post-install-cmd": [
  7648. "./vendor/bin/phpcs --config-set installed_paths ../../drupal/coder/coder_sniffer",
  7649. "./vendor/bin/phpcs --config-set show_progress 1"
  7650. ],
  7651. "post-update-cmd": [
  7652. "./vendor/bin/phpcs --config-set installed_paths ../../drupal/coder/coder_sniffer",
  7653. "./vendor/bin/phpcs --config-set show_progress 1"
  7654. ],
  7655. "phpcs": [
  7656. "./vendor/bin/phpcs --standard=Drupal,DrupalPractice ./ --ignore=./vendor"
  7657. ],
  7658. "phpcbf": [
  7659. "./vendor/bin/phpcbf --standard=Drupal,DrupalPractice ./ --ignore=./vendor"
  7660. ]
  7661. },
  7662. "license": [
  7663. "GPL-2.0+"
  7664. ],
  7665. "authors": [
  7666. {
  7667. "name": "Rafael Schally",
  7668. "homepage": "https://www.drupal.org/user/856550",
  7669. "email": "rafael.schally@gmail.com"
  7670. }
  7671. ],
  7672. "description": "Checks for duplicate occurrences of term names.",
  7673. "homepage": "https://www.drupal.org/project/taxonomy_unique",
  7674. "keywords": [
  7675. "drupal",
  7676. "taxonomy",
  7677. "ui"
  7678. ],
  7679. "support": {
  7680. "source": "https://git.drupalcode.org/project/taxonomy_unique"
  7681. }
  7682. },
  7683. {
  7684. "name": "drupal/token",
  7685. "version": "1.9.0",
  7686. "source": {
  7687. "type": "git",
  7688. "url": "https://git.drupalcode.org/project/token.git",
  7689. "reference": "8.x-1.9"
  7690. },
  7691. "dist": {
  7692. "type": "zip",
  7693. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.9.zip",
  7694. "reference": "8.x-1.9",
  7695. "shasum": "a5d234382a1a0e4ba61d4c7a2fa10671ca656be4"
  7696. },
  7697. "require": {
  7698. "drupal/core": "^8.8 || ^9"
  7699. },
  7700. "type": "drupal-module",
  7701. "extra": {
  7702. "drupal": {
  7703. "version": "8.x-1.9",
  7704. "datestamp": "1608284866",
  7705. "security-coverage": {
  7706. "status": "covered",
  7707. "message": "Covered by Drupal's security advisory policy"
  7708. }
  7709. },
  7710. "drush": {
  7711. "services": {
  7712. "drush.services.yml": "^9 || ^10"
  7713. }
  7714. }
  7715. },
  7716. "notification-url": "https://packages.drupal.org/8/downloads",
  7717. "license": [
  7718. "GPL-2.0-or-later"
  7719. ],
  7720. "authors": [
  7721. {
  7722. "name": "Berdir",
  7723. "homepage": "https://www.drupal.org/user/214652"
  7724. },
  7725. {
  7726. "name": "Dave Reid",
  7727. "homepage": "https://www.drupal.org/user/53892"
  7728. },
  7729. {
  7730. "name": "eaton",
  7731. "homepage": "https://www.drupal.org/user/16496"
  7732. },
  7733. {
  7734. "name": "fago",
  7735. "homepage": "https://www.drupal.org/user/16747"
  7736. },
  7737. {
  7738. "name": "greggles",
  7739. "homepage": "https://www.drupal.org/user/36762"
  7740. },
  7741. {
  7742. "name": "mikeryan",
  7743. "homepage": "https://www.drupal.org/user/4420"
  7744. }
  7745. ],
  7746. "description": "Provides a user interface for the Token API, some missing core tokens.",
  7747. "homepage": "https://www.drupal.org/project/token",
  7748. "support": {
  7749. "source": "https://git.drupalcode.org/project/token"
  7750. }
  7751. },
  7752. {
  7753. "name": "drupal/translation_views",
  7754. "version": "1.0.0-alpha10",
  7755. "source": {
  7756. "type": "git",
  7757. "url": "https://git.drupalcode.org/project/translation_views.git",
  7758. "reference": "8.x-1.0-alpha10"
  7759. },
  7760. "dist": {
  7761. "type": "zip",
  7762. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha10.zip",
  7763. "reference": "8.x-1.0-alpha10",
  7764. "shasum": "ca1a6d4bf16293b1b094db6439f9f065de1dbbd5"
  7765. },
  7766. "require": {
  7767. "drupal/core": "^8.8 || ^9"
  7768. },
  7769. "require-dev": {
  7770. "drupal/translators": "*",
  7771. "drupal/translators_content": "*"
  7772. },
  7773. "type": "drupal-module",
  7774. "extra": {
  7775. "drupal": {
  7776. "version": "8.x-1.0-alpha10",
  7777. "datestamp": "1584303687",
  7778. "security-coverage": {
  7779. "status": "not-covered",
  7780. "message": "Project has not opted into security advisory coverage!"
  7781. }
  7782. }
  7783. },
  7784. "notification-url": "https://packages.drupal.org/8/downloads",
  7785. "license": [
  7786. "GPL-2.0-or-later"
  7787. ],
  7788. "authors": [
  7789. {
  7790. "name": "matsbla",
  7791. "homepage": "https://www.drupal.org/user/2325394"
  7792. },
  7793. {
  7794. "name": "vlad.dancer",
  7795. "homepage": "https://www.drupal.org/user/903844"
  7796. }
  7797. ],
  7798. "description": "Create customized lists and queries of translations from your database.",
  7799. "homepage": "https://www.drupal.org/project/translation_views",
  7800. "support": {
  7801. "source": "https://git.drupalcode.org/project/translation_views"
  7802. }
  7803. },
  7804. {
  7805. "name": "drupal/typed_data",
  7806. "version": "dev-1.x",
  7807. "source": {
  7808. "type": "git",
  7809. "url": "https://git.drupalcode.org/project/typed_data.git",
  7810. "reference": "d6550fd64428642da9ace9281670e70f7018f0b1"
  7811. },
  7812. "require": {
  7813. "drupal/core": "^8.8.2 || ^9"
  7814. },
  7815. "type": "drupal-module",
  7816. "extra": {
  7817. "branch-alias": {
  7818. "dev-1.x": "1.x-dev"
  7819. },
  7820. "drupal": {
  7821. "version": "8.x-1.0-alpha5+24-dev",
  7822. "datestamp": "1623702620",
  7823. "security-coverage": {
  7824. "status": "not-covered",
  7825. "message": "Dev releases are not covered by Drupal security advisories."
  7826. }
  7827. },
  7828. "drush": {
  7829. "services": {
  7830. "drush.services.yml": "^9 || ^10"
  7831. }
  7832. }
  7833. },
  7834. "notification-url": "https://packages.drupal.org/8/downloads",
  7835. "license": [
  7836. "GPL-2.0-or-later"
  7837. ],
  7838. "authors": [
  7839. {
  7840. "name": "TR",
  7841. "homepage": "https://www.drupal.org/user/202830"
  7842. },
  7843. {
  7844. "name": "fago",
  7845. "homepage": "https://www.drupal.org/user/16747"
  7846. }
  7847. ],
  7848. "description": "Extends the core Typed Data API with new APIs and features.",
  7849. "homepage": "https://www.drupal.org/project/typed_data",
  7850. "support": {
  7851. "source": "https://git.drupalcode.org/project/typed_data",
  7852. "issues": "https://www.drupal.org/project/issues/typed_data"
  7853. }
  7854. },
  7855. {
  7856. "name": "drupal/ultimate_cron",
  7857. "version": "2.0.0-alpha5",
  7858. "source": {
  7859. "type": "git",
  7860. "url": "https://git.drupalcode.org/project/ultimate_cron.git",
  7861. "reference": "8.x-2.0-alpha5"
  7862. },
  7863. "dist": {
  7864. "type": "zip",
  7865. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha5.zip",
  7866. "reference": "8.x-2.0-alpha5",
  7867. "shasum": "0f10464fff29eca89024e7afa5b6d8d07bd52f75"
  7868. },
  7869. "require": {
  7870. "drupal/core": "^8.7.7 || ^9"
  7871. },
  7872. "type": "drupal-module",
  7873. "extra": {
  7874. "drupal": {
  7875. "version": "8.x-2.0-alpha5",
  7876. "datestamp": "1600928948",
  7877. "security-coverage": {
  7878. "status": "not-covered",
  7879. "message": "Alpha releases are not covered by Drupal security advisories."
  7880. }
  7881. },
  7882. "drush": {
  7883. "services": {
  7884. "drush.services.yml": "^9 || ^10"
  7885. }
  7886. }
  7887. },
  7888. "notification-url": "https://packages.drupal.org/8/downloads",
  7889. "license": [
  7890. "GPL-2.0+"
  7891. ],
  7892. "authors": [
  7893. {
  7894. "name": "Berdir",
  7895. "homepage": "https://www.drupal.org/user/214652"
  7896. },
  7897. {
  7898. "name": "Dane Powell",
  7899. "homepage": "https://www.drupal.org/user/339326"
  7900. },
  7901. {
  7902. "name": "Primsi",
  7903. "homepage": "https://www.drupal.org/user/282629"
  7904. },
  7905. {
  7906. "name": "arnested",
  7907. "homepage": "https://www.drupal.org/user/245635"
  7908. },
  7909. {
  7910. "name": "gielfeldt",
  7911. "homepage": "https://www.drupal.org/user/366993"
  7912. },
  7913. {
  7914. "name": "miro_dietiker",
  7915. "homepage": "https://www.drupal.org/user/227761"
  7916. }
  7917. ],
  7918. "description": "Ultimate cron",
  7919. "homepage": "https://www.drupal.org/project/ultimate_cron",
  7920. "support": {
  7921. "source": "https://git.drupalcode.org/project/ultimate_cron"
  7922. }
  7923. },
  7924. {
  7925. "name": "drupal/url_to_video_filter",
  7926. "version": "2.0.0",
  7927. "source": {
  7928. "type": "git",
  7929. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  7930. "reference": "2.0.0"
  7931. },
  7932. "dist": {
  7933. "type": "zip",
  7934. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-2.0.0.zip",
  7935. "reference": "2.0.0",
  7936. "shasum": "ac728919cc220846d8ef2ce61dbe1b94fbbf479b"
  7937. },
  7938. "require": {
  7939. "drupal/core": "^8 || ^9"
  7940. },
  7941. "type": "drupal-module",
  7942. "extra": {
  7943. "drupal": {
  7944. "version": "2.0.0",
  7945. "datestamp": "1607298389",
  7946. "security-coverage": {
  7947. "status": "covered",
  7948. "message": "Covered by Drupal's security advisory policy"
  7949. }
  7950. }
  7951. },
  7952. "notification-url": "https://packages.drupal.org/8/downloads",
  7953. "license": [
  7954. "GPL-2.0-or-later"
  7955. ],
  7956. "authors": [
  7957. {
  7958. "name": "Jaypan",
  7959. "homepage": "https://www.drupal.org/user/324696"
  7960. }
  7961. ],
  7962. "description": "Text filter to convert URLs to embedded videos",
  7963. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  7964. "support": {
  7965. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  7966. }
  7967. },
  7968. {
  7969. "name": "drupal/video_embed_field",
  7970. "version": "2.4.0",
  7971. "source": {
  7972. "type": "git",
  7973. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  7974. "reference": "8.x-2.4"
  7975. },
  7976. "dist": {
  7977. "type": "zip",
  7978. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.4.zip",
  7979. "reference": "8.x-2.4",
  7980. "shasum": "96b14bb93c1bb6a07b84315a4f87367870f8b574"
  7981. },
  7982. "require": {
  7983. "drupal/core": "^8.8 || ^9"
  7984. },
  7985. "require-dev": {
  7986. "drupal/colorbox": "^1.0",
  7987. "drupal/video_embed_media": "*"
  7988. },
  7989. "type": "drupal-module",
  7990. "extra": {
  7991. "drupal": {
  7992. "version": "8.x-2.4",
  7993. "datestamp": "1587686337",
  7994. "security-coverage": {
  7995. "status": "covered",
  7996. "message": "Covered by Drupal's security advisory policy"
  7997. }
  7998. }
  7999. },
  8000. "notification-url": "https://packages.drupal.org/8/downloads",
  8001. "license": [
  8002. "GPL-2.0+"
  8003. ],
  8004. "authors": [
  8005. {
  8006. "name": "Sam152",
  8007. "homepage": "https://www.drupal.org/user/1485048"
  8008. },
  8009. {
  8010. "name": "jec006",
  8011. "homepage": "https://www.drupal.org/user/855980"
  8012. },
  8013. {
  8014. "name": "plopesc",
  8015. "homepage": "https://www.drupal.org/user/282415"
  8016. }
  8017. ],
  8018. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  8019. "homepage": "https://www.drupal.org/project/video_embed_field",
  8020. "support": {
  8021. "source": "https://git.drupalcode.org/project/video_embed_field"
  8022. }
  8023. },
  8024. {
  8025. "name": "drupal/views_autocomplete_filters",
  8026. "version": "1.3.0",
  8027. "source": {
  8028. "type": "git",
  8029. "url": "https://git.drupalcode.org/project/views_autocomplete_filters.git",
  8030. "reference": "8.x-1.3"
  8031. },
  8032. "dist": {
  8033. "type": "zip",
  8034. "url": "https://ftp.drupal.org/files/projects/views_autocomplete_filters-8.x-1.3.zip",
  8035. "reference": "8.x-1.3",
  8036. "shasum": "55762182e55c70f117d5edb8692049e0881ec4ce"
  8037. },
  8038. "require": {
  8039. "drupal/core": "^8 || ^9"
  8040. },
  8041. "type": "drupal-module",
  8042. "extra": {
  8043. "drupal": {
  8044. "version": "8.x-1.3",
  8045. "datestamp": "1587146330",
  8046. "security-coverage": {
  8047. "status": "covered",
  8048. "message": "Covered by Drupal's security advisory policy"
  8049. }
  8050. }
  8051. },
  8052. "notification-url": "https://packages.drupal.org/8/downloads",
  8053. "license": [
  8054. "GPL-2.0-or-later"
  8055. ],
  8056. "authors": [
  8057. {
  8058. "name": "RobLoach",
  8059. "homepage": "https://www.drupal.org/user/61114"
  8060. },
  8061. {
  8062. "name": "colan",
  8063. "homepage": "https://www.drupal.org/user/58704"
  8064. },
  8065. {
  8066. "name": "vasike",
  8067. "homepage": "https://www.drupal.org/user/156237"
  8068. }
  8069. ],
  8070. "description": "Add autocomplete functionality to the views filter text fields.",
  8071. "homepage": "https://www.drupal.org/project/views_autocomplete_filters",
  8072. "keywords": [
  8073. "Drupal",
  8074. "views_autocomplete_filters"
  8075. ],
  8076. "support": {
  8077. "source": "https://git.drupalcode.org/project/views_autocomplete_filters",
  8078. "issues": "https://www.drupal.org/project/issues/views_autocomplete_filters"
  8079. }
  8080. },
  8081. {
  8082. "name": "drupal/views_bulk_edit",
  8083. "version": "2.6.0",
  8084. "source": {
  8085. "type": "git",
  8086. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  8087. "reference": "8.x-2.6"
  8088. },
  8089. "dist": {
  8090. "type": "zip",
  8091. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.6.zip",
  8092. "reference": "8.x-2.6",
  8093. "shasum": "0e0f1dab2fa0903cbe2656e754b0d9ed3a935fbb"
  8094. },
  8095. "require": {
  8096. "drupal/core": "^8 || ^9"
  8097. },
  8098. "require-dev": {
  8099. "drupal/views_bulk_operations": "~3.0"
  8100. },
  8101. "suggest": {
  8102. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  8103. },
  8104. "type": "drupal-module",
  8105. "extra": {
  8106. "drupal": {
  8107. "version": "8.x-2.6",
  8108. "datestamp": "1623748025",
  8109. "security-coverage": {
  8110. "status": "covered",
  8111. "message": "Covered by Drupal's security advisory policy"
  8112. }
  8113. }
  8114. },
  8115. "notification-url": "https://packages.drupal.org/8/downloads",
  8116. "license": [
  8117. "GPL-2.0+"
  8118. ],
  8119. "authors": [
  8120. {
  8121. "name": "Marcin Grabias",
  8122. "homepage": "https://www.drupal.org/u/graber"
  8123. },
  8124. {
  8125. "name": "benjy",
  8126. "homepage": "https://www.drupal.org/user/1852732"
  8127. }
  8128. ],
  8129. "description": "Allows bulk edition of entity field values.",
  8130. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  8131. "support": {
  8132. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  8133. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  8134. }
  8135. },
  8136. {
  8137. "name": "drupal/views_bulk_operations",
  8138. "version": "3.13.0",
  8139. "source": {
  8140. "type": "git",
  8141. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  8142. "reference": "8.x-3.13"
  8143. },
  8144. "dist": {
  8145. "type": "zip",
  8146. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.13.zip",
  8147. "reference": "8.x-3.13",
  8148. "shasum": "70583d08b91be3b5e008f571589425c2176eb73b"
  8149. },
  8150. "require": {
  8151. "drupal/core": "^8.8 || ^9"
  8152. },
  8153. "require-dev": {
  8154. "drush/drush": "^10"
  8155. },
  8156. "suggest": {
  8157. "drush/drush": "^9 || ^10"
  8158. },
  8159. "type": "drupal-module",
  8160. "extra": {
  8161. "drupal": {
  8162. "version": "8.x-3.13",
  8163. "datestamp": "1619697066",
  8164. "security-coverage": {
  8165. "status": "covered",
  8166. "message": "Covered by Drupal's security advisory policy"
  8167. }
  8168. },
  8169. "drush": {
  8170. "services": {
  8171. "drush.services.yml": "^9 || ^10"
  8172. }
  8173. }
  8174. },
  8175. "notification-url": "https://packages.drupal.org/8/downloads",
  8176. "license": [
  8177. "GPL-2.0-or-later"
  8178. ],
  8179. "authors": [
  8180. {
  8181. "name": "Marcin Grabias",
  8182. "homepage": "https://www.drupal.org/u/graber"
  8183. },
  8184. {
  8185. "name": "Jon Pugh",
  8186. "homepage": "https://www.drupal.org/user/17028"
  8187. },
  8188. {
  8189. "name": "bojanz",
  8190. "homepage": "https://www.drupal.org/user/86106"
  8191. },
  8192. {
  8193. "name": "infojunkie",
  8194. "homepage": "https://www.drupal.org/user/48424"
  8195. },
  8196. {
  8197. "name": "joelpittet",
  8198. "homepage": "https://www.drupal.org/user/160302"
  8199. }
  8200. ],
  8201. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  8202. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  8203. "support": {
  8204. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  8205. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  8206. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  8207. }
  8208. },
  8209. {
  8210. "name": "drupal/views_ef_fieldset",
  8211. "version": "1.5.0",
  8212. "source": {
  8213. "type": "git",
  8214. "url": "https://git.drupalcode.org/project/views_ef_fieldset.git",
  8215. "reference": "8.x-1.5"
  8216. },
  8217. "dist": {
  8218. "type": "zip",
  8219. "url": "https://ftp.drupal.org/files/projects/views_ef_fieldset-8.x-1.5.zip",
  8220. "reference": "8.x-1.5",
  8221. "shasum": "72ca0b63028d0fe65e13c8472546a8803aa0d079"
  8222. },
  8223. "require": {
  8224. "drupal/core": "^8 || ^9",
  8225. "php": ">=7"
  8226. },
  8227. "type": "drupal-module",
  8228. "extra": {
  8229. "drupal": {
  8230. "version": "8.x-1.5",
  8231. "datestamp": "1604567512",
  8232. "security-coverage": {
  8233. "status": "covered",
  8234. "message": "Covered by Drupal's security advisory policy"
  8235. }
  8236. },
  8237. "composer-exit-on-patch-failure": true,
  8238. "enable-patching": true,
  8239. "patches": {
  8240. "drupal/core": {
  8241. "https://www.drupal.org/project/drupal/issues/2943172": "https://www.drupal.org/files/issues/2018-07-05/2943172-kernel-test-base-3.patch"
  8242. }
  8243. }
  8244. },
  8245. "autoload-dev": {
  8246. "psr-4": {
  8247. "Drupal\\Tests\\views_ef_fieldset\\": "./tests/"
  8248. }
  8249. },
  8250. "notification-url": "https://packages.drupal.org/8/downloads",
  8251. "scripts": {
  8252. "grumphp": [
  8253. "./vendor/bin/grumphp run"
  8254. ]
  8255. },
  8256. "license": [
  8257. "GPL-2.0+"
  8258. ],
  8259. "authors": [
  8260. {
  8261. "name": "Pol Dellaiera",
  8262. "homepage": "https://www.drupal.org/user/47194",
  8263. "email": "pol.dellaiera@protonmail.com"
  8264. },
  8265. {
  8266. "name": "ciss",
  8267. "homepage": "https://www.drupal.org/user/1632364"
  8268. }
  8269. ],
  8270. "description": "Provide an option to render the 'exposed form widgets' in a fieldset.",
  8271. "homepage": "https://drupal.org/project/views_field_formatter",
  8272. "support": {
  8273. "source": "https://git.drupalcode.org/project/views_ef_fieldset"
  8274. }
  8275. },
  8276. {
  8277. "name": "drush/drush",
  8278. "version": "10.3.6",
  8279. "source": {
  8280. "type": "git",
  8281. "url": "https://github.com/drush-ops/drush.git",
  8282. "reference": "fc985a95c6010e04891a2dbcf3f39984b8c9ef0a"
  8283. },
  8284. "dist": {
  8285. "type": "zip",
  8286. "url": "https://api.github.com/repos/drush-ops/drush/zipball/fc985a95c6010e04891a2dbcf3f39984b8c9ef0a",
  8287. "reference": "fc985a95c6010e04891a2dbcf3f39984b8c9ef0a",
  8288. "shasum": ""
  8289. },
  8290. "require": {
  8291. "chi-teck/drupal-code-generator": "^1.32.1",
  8292. "composer/semver": "^1.4 || ^3",
  8293. "consolidation/config": "^1.2",
  8294. "consolidation/filter-via-dot-access-data": "^1",
  8295. "consolidation/robo": "^1.4.11 || ^2",
  8296. "consolidation/site-alias": "^3.0.0@stable",
  8297. "consolidation/site-process": "^2.1 || ^4",
  8298. "ext-dom": "*",
  8299. "grasmash/yaml-expander": "^1.1.1",
  8300. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  8301. "league/container": "~2",
  8302. "php": ">=7.1.3",
  8303. "psr/log": "~1.0",
  8304. "psy/psysh": "~0.6",
  8305. "symfony/event-dispatcher": "^3.4 || ^4.0",
  8306. "symfony/finder": "^3.4 || ^4.0 || ^5",
  8307. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0",
  8308. "symfony/yaml": "^3.4 || ^4.0",
  8309. "webflo/drupal-finder": "^1.2",
  8310. "webmozart/path-util": "^2.1.0"
  8311. },
  8312. "require-dev": {
  8313. "composer/installers": "^1.7",
  8314. "cweagans/composer-patches": "~1.0",
  8315. "david-garcia/phpwhois": "4.3.0",
  8316. "drupal/alinks": "1.0.0",
  8317. "drupal/core-recommended": "^8.8",
  8318. "lox/xhprof": "dev-master",
  8319. "phpunit/phpunit": "^4.8.36 || ^6.1",
  8320. "squizlabs/php_codesniffer": "^2.7 || ^3",
  8321. "vlucas/phpdotenv": "^2.4"
  8322. },
  8323. "bin": [
  8324. "drush"
  8325. ],
  8326. "type": "library",
  8327. "extra": {
  8328. "installer-paths": {
  8329. "sut/core": [
  8330. "type:drupal-core"
  8331. ],
  8332. "sut/libraries/{$name}": [
  8333. "type:drupal-library"
  8334. ],
  8335. "sut/modules/unish/{$name}": [
  8336. "drupal/devel"
  8337. ],
  8338. "sut/themes/unish/{$name}": [
  8339. "drupal/empty_theme"
  8340. ],
  8341. "sut/modules/contrib/{$name}": [
  8342. "type:drupal-module"
  8343. ],
  8344. "sut/profiles/contrib/{$name}": [
  8345. "type:drupal-profile"
  8346. ],
  8347. "sut/themes/contrib/{$name}": [
  8348. "type:drupal-theme"
  8349. ],
  8350. "sut/drush/contrib/{$name}": [
  8351. "type:drupal-drush"
  8352. ]
  8353. }
  8354. },
  8355. "autoload": {
  8356. "psr-4": {
  8357. "Drush\\": "src/",
  8358. "Drush\\Internal\\": "src/internal-forks"
  8359. }
  8360. },
  8361. "notification-url": "https://packagist.org/downloads/",
  8362. "license": [
  8363. "GPL-2.0-or-later"
  8364. ],
  8365. "authors": [
  8366. {
  8367. "name": "Moshe Weitzman",
  8368. "email": "weitzman@tejasa.com"
  8369. },
  8370. {
  8371. "name": "Owen Barton",
  8372. "email": "drupal@owenbarton.com"
  8373. },
  8374. {
  8375. "name": "Greg Anderson",
  8376. "email": "greg.1.anderson@greenknowe.org"
  8377. },
  8378. {
  8379. "name": "Jonathan Araña Cruz",
  8380. "email": "jonhattan@faita.net"
  8381. },
  8382. {
  8383. "name": "Jonathan Hedstrom",
  8384. "email": "jhedstrom@gmail.com"
  8385. },
  8386. {
  8387. "name": "Christopher Gervais",
  8388. "email": "chris@ergonlogic.com"
  8389. },
  8390. {
  8391. "name": "Dave Reid",
  8392. "email": "dave@davereid.net"
  8393. },
  8394. {
  8395. "name": "Damian Lee",
  8396. "email": "damiankloip@googlemail.com"
  8397. }
  8398. ],
  8399. "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.",
  8400. "homepage": "http://www.drush.org",
  8401. "funding": [
  8402. {
  8403. "url": "https://github.com/weitzman",
  8404. "type": "github"
  8405. }
  8406. ],
  8407. "time": "2020-11-11T04:36:51+00:00"
  8408. },
  8409. {
  8410. "name": "egulias/email-validator",
  8411. "version": "2.1.22",
  8412. "source": {
  8413. "type": "git",
  8414. "url": "https://github.com/egulias/EmailValidator.git",
  8415. "reference": "68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5"
  8416. },
  8417. "dist": {
  8418. "type": "zip",
  8419. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5",
  8420. "reference": "68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5",
  8421. "shasum": ""
  8422. },
  8423. "require": {
  8424. "doctrine/lexer": "^1.0.1",
  8425. "php": ">=5.5",
  8426. "symfony/polyfill-intl-idn": "^1.10"
  8427. },
  8428. "require-dev": {
  8429. "dominicsayers/isemail": "^3.0.7",
  8430. "phpunit/phpunit": "^4.8.36|^7.5.15",
  8431. "satooshi/php-coveralls": "^1.0.1"
  8432. },
  8433. "suggest": {
  8434. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  8435. },
  8436. "type": "library",
  8437. "extra": {
  8438. "branch-alias": {
  8439. "dev-master": "2.1.x-dev"
  8440. }
  8441. },
  8442. "autoload": {
  8443. "psr-4": {
  8444. "Egulias\\EmailValidator\\": "src"
  8445. }
  8446. },
  8447. "notification-url": "https://packagist.org/downloads/",
  8448. "license": [
  8449. "MIT"
  8450. ],
  8451. "authors": [
  8452. {
  8453. "name": "Eduardo Gulias Davis"
  8454. }
  8455. ],
  8456. "description": "A library for validating emails against several RFCs",
  8457. "homepage": "https://github.com/egulias/EmailValidator",
  8458. "keywords": [
  8459. "email",
  8460. "emailvalidation",
  8461. "emailvalidator",
  8462. "validation",
  8463. "validator"
  8464. ],
  8465. "support": {
  8466. "issues": "https://github.com/egulias/EmailValidator/issues",
  8467. "source": "https://github.com/egulias/EmailValidator/tree/2.1.22"
  8468. },
  8469. "time": "2020-09-26T15:48:38+00:00"
  8470. },
  8471. {
  8472. "name": "fileeye/mimemap",
  8473. "version": "1.1.4",
  8474. "source": {
  8475. "type": "git",
  8476. "url": "https://github.com/FileEye/MimeMap.git",
  8477. "reference": "3a0ddb71f06d8fb3f84f0a3c45348af81803b16d"
  8478. },
  8479. "dist": {
  8480. "type": "zip",
  8481. "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/3a0ddb71f06d8fb3f84f0a3c45348af81803b16d",
  8482. "reference": "3a0ddb71f06d8fb3f84f0a3c45348af81803b16d",
  8483. "shasum": ""
  8484. },
  8485. "require": {
  8486. "php": ">=5.4"
  8487. },
  8488. "require-dev": {
  8489. "phpunit/phpunit": "<10",
  8490. "sebastian/comparator": "*",
  8491. "sebastian/diff": "*",
  8492. "squizlabs/php_codesniffer": "*",
  8493. "symfony/console": "*",
  8494. "symfony/filesystem": "*",
  8495. "symfony/var-dumper": "*",
  8496. "symfony/yaml": "*"
  8497. },
  8498. "bin": [
  8499. "bin/fileeye-mimemap"
  8500. ],
  8501. "type": "library",
  8502. "extra": {
  8503. "branch-alias": {
  8504. "dev-master": "1.x-dev"
  8505. }
  8506. },
  8507. "autoload": {
  8508. "psr-4": {
  8509. "FileEye\\MimeMap\\": "src/"
  8510. }
  8511. },
  8512. "notification-url": "https://packagist.org/downloads/",
  8513. "license": [
  8514. "LGPL-3.0-or-later"
  8515. ],
  8516. "description": "A PHP library to handle MIME Content-Type fields and their related file extensions.",
  8517. "homepage": "https://github.com/FileEye/MimeMap",
  8518. "keywords": [
  8519. "mime",
  8520. "mime-database",
  8521. "mime-parser",
  8522. "mime-type"
  8523. ],
  8524. "time": "2020-05-16T10:19:16+00:00"
  8525. },
  8526. {
  8527. "name": "grasmash/expander",
  8528. "version": "1.0.0",
  8529. "source": {
  8530. "type": "git",
  8531. "url": "https://github.com/grasmash/expander.git",
  8532. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  8533. },
  8534. "dist": {
  8535. "type": "zip",
  8536. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  8537. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  8538. "shasum": ""
  8539. },
  8540. "require": {
  8541. "dflydev/dot-access-data": "^1.1.0",
  8542. "php": ">=5.4"
  8543. },
  8544. "require-dev": {
  8545. "greg-1-anderson/composer-test-scenarios": "^1",
  8546. "phpunit/phpunit": "^4|^5.5.4",
  8547. "satooshi/php-coveralls": "^1.0.2|dev-master",
  8548. "squizlabs/php_codesniffer": "^2.7"
  8549. },
  8550. "type": "library",
  8551. "extra": {
  8552. "branch-alias": {
  8553. "dev-master": "1.x-dev"
  8554. }
  8555. },
  8556. "autoload": {
  8557. "psr-4": {
  8558. "Grasmash\\Expander\\": "src/"
  8559. }
  8560. },
  8561. "notification-url": "https://packagist.org/downloads/",
  8562. "license": [
  8563. "MIT"
  8564. ],
  8565. "authors": [
  8566. {
  8567. "name": "Matthew Grasmick"
  8568. }
  8569. ],
  8570. "description": "Expands internal property references in PHP arrays file.",
  8571. "time": "2017-12-21T22:14:55+00:00"
  8572. },
  8573. {
  8574. "name": "grasmash/yaml-expander",
  8575. "version": "1.4.0",
  8576. "source": {
  8577. "type": "git",
  8578. "url": "https://github.com/grasmash/yaml-expander.git",
  8579. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  8580. },
  8581. "dist": {
  8582. "type": "zip",
  8583. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  8584. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  8585. "shasum": ""
  8586. },
  8587. "require": {
  8588. "dflydev/dot-access-data": "^1.1.0",
  8589. "php": ">=5.4",
  8590. "symfony/yaml": "^2.8.11|^3|^4"
  8591. },
  8592. "require-dev": {
  8593. "greg-1-anderson/composer-test-scenarios": "^1",
  8594. "phpunit/phpunit": "^4.8|^5.5.4",
  8595. "satooshi/php-coveralls": "^1.0.2|dev-master",
  8596. "squizlabs/php_codesniffer": "^2.7"
  8597. },
  8598. "type": "library",
  8599. "extra": {
  8600. "branch-alias": {
  8601. "dev-master": "1.x-dev"
  8602. }
  8603. },
  8604. "autoload": {
  8605. "psr-4": {
  8606. "Grasmash\\YamlExpander\\": "src/"
  8607. }
  8608. },
  8609. "notification-url": "https://packagist.org/downloads/",
  8610. "license": [
  8611. "MIT"
  8612. ],
  8613. "authors": [
  8614. {
  8615. "name": "Matthew Grasmick"
  8616. }
  8617. ],
  8618. "description": "Expands internal property references in a yaml file.",
  8619. "time": "2017-12-16T16:06:03+00:00"
  8620. },
  8621. {
  8622. "name": "guzzlehttp/guzzle",
  8623. "version": "6.5.5",
  8624. "source": {
  8625. "type": "git",
  8626. "url": "https://github.com/guzzle/guzzle.git",
  8627. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  8628. },
  8629. "dist": {
  8630. "type": "zip",
  8631. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  8632. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  8633. "shasum": ""
  8634. },
  8635. "require": {
  8636. "ext-json": "*",
  8637. "guzzlehttp/promises": "^1.0",
  8638. "guzzlehttp/psr7": "^1.6.1",
  8639. "php": ">=5.5",
  8640. "symfony/polyfill-intl-idn": "^1.17.0"
  8641. },
  8642. "require-dev": {
  8643. "ext-curl": "*",
  8644. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  8645. "psr/log": "^1.1"
  8646. },
  8647. "suggest": {
  8648. "psr/log": "Required for using the Log middleware"
  8649. },
  8650. "type": "library",
  8651. "extra": {
  8652. "branch-alias": {
  8653. "dev-master": "6.5-dev"
  8654. }
  8655. },
  8656. "autoload": {
  8657. "psr-4": {
  8658. "GuzzleHttp\\": "src/"
  8659. },
  8660. "files": [
  8661. "src/functions_include.php"
  8662. ]
  8663. },
  8664. "notification-url": "https://packagist.org/downloads/",
  8665. "license": [
  8666. "MIT"
  8667. ],
  8668. "authors": [
  8669. {
  8670. "name": "Michael Dowling",
  8671. "email": "mtdowling@gmail.com",
  8672. "homepage": "https://github.com/mtdowling"
  8673. }
  8674. ],
  8675. "description": "Guzzle is a PHP HTTP client library",
  8676. "homepage": "http://guzzlephp.org/",
  8677. "keywords": [
  8678. "client",
  8679. "curl",
  8680. "framework",
  8681. "http",
  8682. "http client",
  8683. "rest",
  8684. "web service"
  8685. ],
  8686. "support": {
  8687. "issues": "https://github.com/guzzle/guzzle/issues",
  8688. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  8689. },
  8690. "time": "2020-06-16T21:01:06+00:00"
  8691. },
  8692. {
  8693. "name": "guzzlehttp/promises",
  8694. "version": "1.4.0",
  8695. "source": {
  8696. "type": "git",
  8697. "url": "https://github.com/guzzle/promises.git",
  8698. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  8699. },
  8700. "dist": {
  8701. "type": "zip",
  8702. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  8703. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  8704. "shasum": ""
  8705. },
  8706. "require": {
  8707. "php": ">=5.5"
  8708. },
  8709. "require-dev": {
  8710. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  8711. },
  8712. "type": "library",
  8713. "extra": {
  8714. "branch-alias": {
  8715. "dev-master": "1.4-dev"
  8716. }
  8717. },
  8718. "autoload": {
  8719. "psr-4": {
  8720. "GuzzleHttp\\Promise\\": "src/"
  8721. },
  8722. "files": [
  8723. "src/functions_include.php"
  8724. ]
  8725. },
  8726. "notification-url": "https://packagist.org/downloads/",
  8727. "license": [
  8728. "MIT"
  8729. ],
  8730. "authors": [
  8731. {
  8732. "name": "Michael Dowling",
  8733. "email": "mtdowling@gmail.com",
  8734. "homepage": "https://github.com/mtdowling"
  8735. }
  8736. ],
  8737. "description": "Guzzle promises library",
  8738. "keywords": [
  8739. "promise"
  8740. ],
  8741. "support": {
  8742. "issues": "https://github.com/guzzle/promises/issues",
  8743. "source": "https://github.com/guzzle/promises/tree/1.4.0"
  8744. },
  8745. "time": "2020-09-30T07:37:28+00:00"
  8746. },
  8747. {
  8748. "name": "guzzlehttp/psr7",
  8749. "version": "1.7.0",
  8750. "source": {
  8751. "type": "git",
  8752. "url": "https://github.com/guzzle/psr7.git",
  8753. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  8754. },
  8755. "dist": {
  8756. "type": "zip",
  8757. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  8758. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  8759. "shasum": ""
  8760. },
  8761. "require": {
  8762. "php": ">=5.4.0",
  8763. "psr/http-message": "~1.0",
  8764. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  8765. },
  8766. "provide": {
  8767. "psr/http-message-implementation": "1.0"
  8768. },
  8769. "require-dev": {
  8770. "ext-zlib": "*",
  8771. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  8772. },
  8773. "suggest": {
  8774. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  8775. },
  8776. "type": "library",
  8777. "extra": {
  8778. "branch-alias": {
  8779. "dev-master": "1.7-dev"
  8780. }
  8781. },
  8782. "autoload": {
  8783. "psr-4": {
  8784. "GuzzleHttp\\Psr7\\": "src/"
  8785. },
  8786. "files": [
  8787. "src/functions_include.php"
  8788. ]
  8789. },
  8790. "notification-url": "https://packagist.org/downloads/",
  8791. "license": [
  8792. "MIT"
  8793. ],
  8794. "authors": [
  8795. {
  8796. "name": "Michael Dowling",
  8797. "email": "mtdowling@gmail.com",
  8798. "homepage": "https://github.com/mtdowling"
  8799. },
  8800. {
  8801. "name": "Tobias Schultze",
  8802. "homepage": "https://github.com/Tobion"
  8803. }
  8804. ],
  8805. "description": "PSR-7 message implementation that also provides common utility methods",
  8806. "keywords": [
  8807. "http",
  8808. "message",
  8809. "psr-7",
  8810. "request",
  8811. "response",
  8812. "stream",
  8813. "uri",
  8814. "url"
  8815. ],
  8816. "support": {
  8817. "issues": "https://github.com/guzzle/psr7/issues",
  8818. "source": "https://github.com/guzzle/psr7/tree/1.7.0"
  8819. },
  8820. "time": "2020-09-30T07:37:11+00:00"
  8821. },
  8822. {
  8823. "name": "kint-php/kint",
  8824. "version": "3.3",
  8825. "source": {
  8826. "type": "git",
  8827. "url": "https://github.com/kint-php/kint.git",
  8828. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b"
  8829. },
  8830. "dist": {
  8831. "type": "zip",
  8832. "url": "https://api.github.com/repos/kint-php/kint/zipball/335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8833. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8834. "shasum": ""
  8835. },
  8836. "require": {
  8837. "php": ">=5.3.6"
  8838. },
  8839. "require-dev": {
  8840. "friendsofphp/php-cs-fixer": "^2.0",
  8841. "phpunit/phpunit": "^4.0",
  8842. "seld/phar-utils": "^1.0",
  8843. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  8844. "vimeo/psalm": "^3.0"
  8845. },
  8846. "suggest": {
  8847. "ext-ctype": "Simple data type tests",
  8848. "ext-iconv": "Provides fallback detection for ambiguous legacy string encodings such as the Windows and ISO 8859 code pages",
  8849. "ext-mbstring": "Provides string encoding detection",
  8850. "kint-php/kint-js": "Provides a simplified dump to console.log()",
  8851. "kint-php/kint-twig": "Provides d() and s() functions in twig templates",
  8852. "symfony/polyfill-ctype": "Replacement for ext-ctype if missing",
  8853. "symfony/polyfill-iconv": "Replacement for ext-iconv if missing",
  8854. "symfony/polyfill-mbstring": "Replacement for ext-mbstring if missing"
  8855. },
  8856. "type": "library",
  8857. "autoload": {
  8858. "files": [
  8859. "init.php"
  8860. ],
  8861. "psr-4": {
  8862. "Kint\\": "src/"
  8863. }
  8864. },
  8865. "notification-url": "https://packagist.org/downloads/",
  8866. "license": [
  8867. "MIT"
  8868. ],
  8869. "authors": [
  8870. {
  8871. "name": "Jonathan Vollebregt",
  8872. "homepage": "https://github.com/jnvsor"
  8873. },
  8874. {
  8875. "name": "Rokas Šleinius",
  8876. "homepage": "https://github.com/raveren"
  8877. },
  8878. {
  8879. "name": "Contributors",
  8880. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  8881. }
  8882. ],
  8883. "description": "Kint - debugging tool for PHP developers",
  8884. "homepage": "https://kint-php.github.io/kint/",
  8885. "keywords": [
  8886. "debug",
  8887. "kint",
  8888. "php"
  8889. ],
  8890. "time": "2019-10-17T18:05:24+00:00"
  8891. },
  8892. {
  8893. "name": "laminas/laminas-diactoros",
  8894. "version": "2.5.0",
  8895. "source": {
  8896. "type": "git",
  8897. "url": "https://github.com/laminas/laminas-diactoros.git",
  8898. "reference": "4ff7400c1c12e404144992ef43c8b733fd9ad516"
  8899. },
  8900. "dist": {
  8901. "type": "zip",
  8902. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/4ff7400c1c12e404144992ef43c8b733fd9ad516",
  8903. "reference": "4ff7400c1c12e404144992ef43c8b733fd9ad516",
  8904. "shasum": ""
  8905. },
  8906. "require": {
  8907. "laminas/laminas-zendframework-bridge": "^1.0",
  8908. "php": "^7.3 || ~8.0.0",
  8909. "psr/http-factory": "^1.0",
  8910. "psr/http-message": "^1.0"
  8911. },
  8912. "conflict": {
  8913. "phpspec/prophecy": "<1.9.0"
  8914. },
  8915. "provide": {
  8916. "psr/http-factory-implementation": "1.0",
  8917. "psr/http-message-implementation": "1.0"
  8918. },
  8919. "replace": {
  8920. "zendframework/zend-diactoros": "^2.2.1"
  8921. },
  8922. "require-dev": {
  8923. "ext-curl": "*",
  8924. "ext-dom": "*",
  8925. "ext-gd": "*",
  8926. "ext-libxml": "*",
  8927. "http-interop/http-factory-tests": "^0.8.0",
  8928. "laminas/laminas-coding-standard": "~1.0.0",
  8929. "php-http/psr7-integration-tests": "^1.1",
  8930. "phpspec/prophecy-phpunit": "^2.0",
  8931. "phpunit/phpunit": "^9.1"
  8932. },
  8933. "type": "library",
  8934. "extra": {
  8935. "laminas": {
  8936. "config-provider": "Laminas\\Diactoros\\ConfigProvider",
  8937. "module": "Laminas\\Diactoros"
  8938. }
  8939. },
  8940. "autoload": {
  8941. "files": [
  8942. "src/functions/create_uploaded_file.php",
  8943. "src/functions/marshal_headers_from_sapi.php",
  8944. "src/functions/marshal_method_from_sapi.php",
  8945. "src/functions/marshal_protocol_version_from_sapi.php",
  8946. "src/functions/marshal_uri_from_sapi.php",
  8947. "src/functions/normalize_server.php",
  8948. "src/functions/normalize_uploaded_files.php",
  8949. "src/functions/parse_cookie_header.php",
  8950. "src/functions/create_uploaded_file.legacy.php",
  8951. "src/functions/marshal_headers_from_sapi.legacy.php",
  8952. "src/functions/marshal_method_from_sapi.legacy.php",
  8953. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  8954. "src/functions/marshal_uri_from_sapi.legacy.php",
  8955. "src/functions/normalize_server.legacy.php",
  8956. "src/functions/normalize_uploaded_files.legacy.php",
  8957. "src/functions/parse_cookie_header.legacy.php"
  8958. ],
  8959. "psr-4": {
  8960. "Laminas\\Diactoros\\": "src/"
  8961. }
  8962. },
  8963. "notification-url": "https://packagist.org/downloads/",
  8964. "license": [
  8965. "BSD-3-Clause"
  8966. ],
  8967. "description": "PSR HTTP Message implementations",
  8968. "homepage": "https://laminas.dev",
  8969. "keywords": [
  8970. "http",
  8971. "laminas",
  8972. "psr",
  8973. "psr-17",
  8974. "psr-7"
  8975. ],
  8976. "support": {
  8977. "chat": "https://laminas.dev/chat",
  8978. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  8979. "forum": "https://discourse.laminas.dev",
  8980. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  8981. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  8982. "source": "https://github.com/laminas/laminas-diactoros"
  8983. },
  8984. "funding": [
  8985. {
  8986. "url": "https://funding.communitybridge.org/projects/laminas-project",
  8987. "type": "community_bridge"
  8988. }
  8989. ],
  8990. "time": "2020-11-18T18:39:28+00:00"
  8991. },
  8992. {
  8993. "name": "laminas/laminas-escaper",
  8994. "version": "2.7.0",
  8995. "source": {
  8996. "type": "git",
  8997. "url": "https://github.com/laminas/laminas-escaper.git",
  8998. "reference": "5e04bc5ae5990b17159d79d331055e2c645e5cc5"
  8999. },
  9000. "dist": {
  9001. "type": "zip",
  9002. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/5e04bc5ae5990b17159d79d331055e2c645e5cc5",
  9003. "reference": "5e04bc5ae5990b17159d79d331055e2c645e5cc5",
  9004. "shasum": ""
  9005. },
  9006. "require": {
  9007. "laminas/laminas-zendframework-bridge": "^1.0",
  9008. "php": "^7.3 || ~8.0.0"
  9009. },
  9010. "replace": {
  9011. "zendframework/zend-escaper": "^2.6.1"
  9012. },
  9013. "require-dev": {
  9014. "laminas/laminas-coding-standard": "~1.0.0",
  9015. "phpunit/phpunit": "^9.3",
  9016. "psalm/plugin-phpunit": "^0.12.2",
  9017. "vimeo/psalm": "^3.16"
  9018. },
  9019. "suggest": {
  9020. "ext-iconv": "*",
  9021. "ext-mbstring": "*"
  9022. },
  9023. "type": "library",
  9024. "autoload": {
  9025. "psr-4": {
  9026. "Laminas\\Escaper\\": "src/"
  9027. }
  9028. },
  9029. "notification-url": "https://packagist.org/downloads/",
  9030. "license": [
  9031. "BSD-3-Clause"
  9032. ],
  9033. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  9034. "homepage": "https://laminas.dev",
  9035. "keywords": [
  9036. "escaper",
  9037. "laminas"
  9038. ],
  9039. "support": {
  9040. "chat": "https://laminas.dev/chat",
  9041. "docs": "https://docs.laminas.dev/laminas-escaper/",
  9042. "forum": "https://discourse.laminas.dev",
  9043. "issues": "https://github.com/laminas/laminas-escaper/issues",
  9044. "rss": "https://github.com/laminas/laminas-escaper/releases.atom",
  9045. "source": "https://github.com/laminas/laminas-escaper"
  9046. },
  9047. "funding": [
  9048. {
  9049. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9050. "type": "community_bridge"
  9051. }
  9052. ],
  9053. "time": "2020-11-17T21:26:43+00:00"
  9054. },
  9055. {
  9056. "name": "laminas/laminas-feed",
  9057. "version": "2.13.0",
  9058. "source": {
  9059. "type": "git",
  9060. "url": "https://github.com/laminas/laminas-feed.git",
  9061. "reference": "fb89aac1984222227f37792dd193d34829a0762f"
  9062. },
  9063. "dist": {
  9064. "type": "zip",
  9065. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/fb89aac1984222227f37792dd193d34829a0762f",
  9066. "reference": "fb89aac1984222227f37792dd193d34829a0762f",
  9067. "shasum": ""
  9068. },
  9069. "require": {
  9070. "ext-dom": "*",
  9071. "ext-libxml": "*",
  9072. "laminas/laminas-escaper": "^2.5.2",
  9073. "laminas/laminas-stdlib": "^3.2.1",
  9074. "laminas/laminas-zendframework-bridge": "^1.0",
  9075. "php": "^7.3 || ~8.0.0"
  9076. },
  9077. "conflict": {
  9078. "laminas/laminas-servicemanager": "<3.3"
  9079. },
  9080. "replace": {
  9081. "zendframework/zend-feed": "^2.12.0"
  9082. },
  9083. "require-dev": {
  9084. "laminas/laminas-cache": "^2.7.2",
  9085. "laminas/laminas-coding-standard": "~1.0.0",
  9086. "laminas/laminas-db": "^2.8.2",
  9087. "laminas/laminas-http": "^2.7",
  9088. "laminas/laminas-servicemanager": "^3.3",
  9089. "laminas/laminas-validator": "^2.10.1",
  9090. "phpunit/phpunit": "^9.3",
  9091. "psalm/plugin-phpunit": "^0.13.0",
  9092. "psr/http-message": "^1.0.1",
  9093. "vimeo/psalm": "^4.1"
  9094. },
  9095. "suggest": {
  9096. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  9097. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  9098. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  9099. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  9100. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  9101. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  9102. },
  9103. "type": "library",
  9104. "autoload": {
  9105. "psr-4": {
  9106. "Laminas\\Feed\\": "src/"
  9107. }
  9108. },
  9109. "notification-url": "https://packagist.org/downloads/",
  9110. "license": [
  9111. "BSD-3-Clause"
  9112. ],
  9113. "description": "provides functionality for consuming RSS and Atom feeds",
  9114. "homepage": "https://laminas.dev",
  9115. "keywords": [
  9116. "feed",
  9117. "laminas"
  9118. ],
  9119. "support": {
  9120. "chat": "https://laminas.dev/chat",
  9121. "docs": "https://docs.laminas.dev/laminas-feed/",
  9122. "forum": "https://discourse.laminas.dev",
  9123. "issues": "https://github.com/laminas/laminas-feed/issues",
  9124. "rss": "https://github.com/laminas/laminas-feed/releases.atom",
  9125. "source": "https://github.com/laminas/laminas-feed"
  9126. },
  9127. "funding": [
  9128. {
  9129. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9130. "type": "community_bridge"
  9131. }
  9132. ],
  9133. "time": "2020-11-18T21:02:52+00:00"
  9134. },
  9135. {
  9136. "name": "laminas/laminas-stdlib",
  9137. "version": "3.3.0",
  9138. "source": {
  9139. "type": "git",
  9140. "url": "https://github.com/laminas/laminas-stdlib.git",
  9141. "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6"
  9142. },
  9143. "dist": {
  9144. "type": "zip",
  9145. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/b9d84eaa39fde733356ea948cdef36c631f202b6",
  9146. "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6",
  9147. "shasum": ""
  9148. },
  9149. "require": {
  9150. "laminas/laminas-zendframework-bridge": "^1.0",
  9151. "php": "^7.3 || ^8.0"
  9152. },
  9153. "replace": {
  9154. "zendframework/zend-stdlib": "^3.2.1"
  9155. },
  9156. "require-dev": {
  9157. "laminas/laminas-coding-standard": "~1.0.0",
  9158. "phpbench/phpbench": "^0.17.1",
  9159. "phpunit/phpunit": "^9.3.7"
  9160. },
  9161. "type": "library",
  9162. "extra": {
  9163. "branch-alias": {
  9164. "dev-master": "3.3.x-dev",
  9165. "dev-develop": "3.4.x-dev"
  9166. }
  9167. },
  9168. "autoload": {
  9169. "psr-4": {
  9170. "Laminas\\Stdlib\\": "src/"
  9171. }
  9172. },
  9173. "notification-url": "https://packagist.org/downloads/",
  9174. "license": [
  9175. "BSD-3-Clause"
  9176. ],
  9177. "description": "SPL extensions, array utilities, error handlers, and more",
  9178. "homepage": "https://laminas.dev",
  9179. "keywords": [
  9180. "laminas",
  9181. "stdlib"
  9182. ],
  9183. "support": {
  9184. "chat": "https://laminas.dev/chat",
  9185. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  9186. "forum": "https://discourse.laminas.dev",
  9187. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  9188. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  9189. "source": "https://github.com/laminas/laminas-stdlib"
  9190. },
  9191. "funding": [
  9192. {
  9193. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9194. "type": "community_bridge"
  9195. }
  9196. ],
  9197. "time": "2020-08-25T09:08:16+00:00"
  9198. },
  9199. {
  9200. "name": "laminas/laminas-zendframework-bridge",
  9201. "version": "1.1.1",
  9202. "source": {
  9203. "type": "git",
  9204. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  9205. "reference": "6ede70583e101030bcace4dcddd648f760ddf642"
  9206. },
  9207. "dist": {
  9208. "type": "zip",
  9209. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/6ede70583e101030bcace4dcddd648f760ddf642",
  9210. "reference": "6ede70583e101030bcace4dcddd648f760ddf642",
  9211. "shasum": ""
  9212. },
  9213. "require": {
  9214. "php": "^5.6 || ^7.0 || ^8.0"
  9215. },
  9216. "require-dev": {
  9217. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1 || ^9.3",
  9218. "squizlabs/php_codesniffer": "^3.5"
  9219. },
  9220. "type": "library",
  9221. "extra": {
  9222. "laminas": {
  9223. "module": "Laminas\\ZendFrameworkBridge"
  9224. }
  9225. },
  9226. "autoload": {
  9227. "files": [
  9228. "src/autoload.php"
  9229. ],
  9230. "psr-4": {
  9231. "Laminas\\ZendFrameworkBridge\\": "src//"
  9232. }
  9233. },
  9234. "notification-url": "https://packagist.org/downloads/",
  9235. "license": [
  9236. "BSD-3-Clause"
  9237. ],
  9238. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  9239. "keywords": [
  9240. "ZendFramework",
  9241. "autoloading",
  9242. "laminas",
  9243. "zf"
  9244. ],
  9245. "support": {
  9246. "forum": "https://discourse.laminas.dev/",
  9247. "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues",
  9248. "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom",
  9249. "source": "https://github.com/laminas/laminas-zendframework-bridge"
  9250. },
  9251. "funding": [
  9252. {
  9253. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9254. "type": "community_bridge"
  9255. }
  9256. ],
  9257. "time": "2020-09-14T14:23:00+00:00"
  9258. },
  9259. {
  9260. "name": "league/container",
  9261. "version": "2.4.1",
  9262. "source": {
  9263. "type": "git",
  9264. "url": "https://github.com/thephpleague/container.git",
  9265. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  9266. },
  9267. "dist": {
  9268. "type": "zip",
  9269. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  9270. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  9271. "shasum": ""
  9272. },
  9273. "require": {
  9274. "container-interop/container-interop": "^1.2",
  9275. "php": "^5.4.0 || ^7.0"
  9276. },
  9277. "provide": {
  9278. "container-interop/container-interop-implementation": "^1.2",
  9279. "psr/container-implementation": "^1.0"
  9280. },
  9281. "replace": {
  9282. "orno/di": "~2.0"
  9283. },
  9284. "require-dev": {
  9285. "phpunit/phpunit": "4.*"
  9286. },
  9287. "type": "library",
  9288. "extra": {
  9289. "branch-alias": {
  9290. "dev-2.x": "2.x-dev",
  9291. "dev-1.x": "1.x-dev"
  9292. }
  9293. },
  9294. "autoload": {
  9295. "psr-4": {
  9296. "League\\Container\\": "src"
  9297. }
  9298. },
  9299. "notification-url": "https://packagist.org/downloads/",
  9300. "license": [
  9301. "MIT"
  9302. ],
  9303. "authors": [
  9304. {
  9305. "name": "Phil Bennett",
  9306. "email": "philipobenito@gmail.com",
  9307. "homepage": "http://www.philipobenito.com",
  9308. "role": "Developer"
  9309. }
  9310. ],
  9311. "description": "A fast and intuitive dependency injection container.",
  9312. "homepage": "https://github.com/thephpleague/container",
  9313. "keywords": [
  9314. "container",
  9315. "dependency",
  9316. "di",
  9317. "injection",
  9318. "league",
  9319. "provider",
  9320. "service"
  9321. ],
  9322. "time": "2017-05-10T09:20:27+00:00"
  9323. },
  9324. {
  9325. "name": "lsolesen/pel",
  9326. "version": "0.9.9",
  9327. "source": {
  9328. "type": "git",
  9329. "url": "https://github.com/pel/pel.git",
  9330. "reference": "95dd3c16161c588f0ac66662c1870a073159e5ec"
  9331. },
  9332. "dist": {
  9333. "type": "zip",
  9334. "url": "https://api.github.com/repos/pel/pel/zipball/95dd3c16161c588f0ac66662c1870a073159e5ec",
  9335. "reference": "95dd3c16161c588f0ac66662c1870a073159e5ec",
  9336. "shasum": ""
  9337. },
  9338. "require": {
  9339. "php": ">=5.4.0"
  9340. },
  9341. "require-dev": {
  9342. "ext-gd": "*",
  9343. "phpunit/phpunit": ">=4.8.36 <8",
  9344. "satooshi/php-coveralls": "1.0.*",
  9345. "squizlabs/php_codesniffer": "^3.0.0"
  9346. },
  9347. "type": "library",
  9348. "autoload": {
  9349. "psr-4": {
  9350. "lsolesen\\pel\\": "src/"
  9351. }
  9352. },
  9353. "notification-url": "https://packagist.org/downloads/",
  9354. "license": [
  9355. "GPL-2.0"
  9356. ],
  9357. "authors": [
  9358. {
  9359. "name": "Lars Olesen",
  9360. "email": "lars@intraface.dk",
  9361. "homepage": "http://intraface.dk",
  9362. "role": "Developer"
  9363. },
  9364. {
  9365. "name": "Martin Geisler",
  9366. "email": "martin@geisler.net",
  9367. "homepage": "http://geisler.net",
  9368. "role": "Developer"
  9369. }
  9370. ],
  9371. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  9372. "homepage": "http://pel.github.com/pel/",
  9373. "keywords": [
  9374. "exif",
  9375. "image"
  9376. ],
  9377. "time": "2020-11-07T06:04:18+00:00"
  9378. },
  9379. {
  9380. "name": "masterminds/html5",
  9381. "version": "2.7.4",
  9382. "source": {
  9383. "type": "git",
  9384. "url": "https://github.com/Masterminds/html5-php.git",
  9385. "reference": "9227822783c75406cfe400984b2f095cdf03d417"
  9386. },
  9387. "dist": {
  9388. "type": "zip",
  9389. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/9227822783c75406cfe400984b2f095cdf03d417",
  9390. "reference": "9227822783c75406cfe400984b2f095cdf03d417",
  9391. "shasum": ""
  9392. },
  9393. "require": {
  9394. "ext-ctype": "*",
  9395. "ext-dom": "*",
  9396. "ext-libxml": "*",
  9397. "php": ">=5.3.0"
  9398. },
  9399. "require-dev": {
  9400. "phpunit/phpunit": "^4.8.35"
  9401. },
  9402. "type": "library",
  9403. "extra": {
  9404. "branch-alias": {
  9405. "dev-master": "2.7-dev"
  9406. }
  9407. },
  9408. "autoload": {
  9409. "psr-4": {
  9410. "Masterminds\\": "src"
  9411. }
  9412. },
  9413. "notification-url": "https://packagist.org/downloads/",
  9414. "license": [
  9415. "MIT"
  9416. ],
  9417. "authors": [
  9418. {
  9419. "name": "Matt Butcher",
  9420. "email": "technosophos@gmail.com"
  9421. },
  9422. {
  9423. "name": "Matt Farina",
  9424. "email": "matt@mattfarina.com"
  9425. },
  9426. {
  9427. "name": "Asmir Mustafic",
  9428. "email": "goetas@gmail.com"
  9429. }
  9430. ],
  9431. "description": "An HTML5 parser and serializer.",
  9432. "homepage": "http://masterminds.github.io/html5-php",
  9433. "keywords": [
  9434. "HTML5",
  9435. "dom",
  9436. "html",
  9437. "parser",
  9438. "querypath",
  9439. "serializer",
  9440. "xml"
  9441. ],
  9442. "support": {
  9443. "issues": "https://github.com/Masterminds/html5-php/issues",
  9444. "source": "https://github.com/Masterminds/html5-php/tree/2.7.4"
  9445. },
  9446. "time": "2020-10-01T13:52:52+00:00"
  9447. },
  9448. {
  9449. "name": "nikic/php-parser",
  9450. "version": "v4.10.3",
  9451. "source": {
  9452. "type": "git",
  9453. "url": "https://github.com/nikic/PHP-Parser.git",
  9454. "reference": "dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984"
  9455. },
  9456. "dist": {
  9457. "type": "zip",
  9458. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984",
  9459. "reference": "dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984",
  9460. "shasum": ""
  9461. },
  9462. "require": {
  9463. "ext-tokenizer": "*",
  9464. "php": ">=7.0"
  9465. },
  9466. "require-dev": {
  9467. "ircmaxell/php-yacc": "^0.0.7",
  9468. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  9469. },
  9470. "bin": [
  9471. "bin/php-parse"
  9472. ],
  9473. "type": "library",
  9474. "extra": {
  9475. "branch-alias": {
  9476. "dev-master": "4.9-dev"
  9477. }
  9478. },
  9479. "autoload": {
  9480. "psr-4": {
  9481. "PhpParser\\": "lib/PhpParser"
  9482. }
  9483. },
  9484. "notification-url": "https://packagist.org/downloads/",
  9485. "license": [
  9486. "BSD-3-Clause"
  9487. ],
  9488. "authors": [
  9489. {
  9490. "name": "Nikita Popov"
  9491. }
  9492. ],
  9493. "description": "A PHP parser written in PHP",
  9494. "keywords": [
  9495. "parser",
  9496. "php"
  9497. ],
  9498. "time": "2020-12-03T17:45:45+00:00"
  9499. },
  9500. {
  9501. "name": "pear/archive_tar",
  9502. "version": "1.4.13",
  9503. "source": {
  9504. "type": "git",
  9505. "url": "https://github.com/pear/Archive_Tar.git",
  9506. "reference": "2b87b41178cc6d4ad3cba678a46a1cae49786011"
  9507. },
  9508. "dist": {
  9509. "type": "zip",
  9510. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/2b87b41178cc6d4ad3cba678a46a1cae49786011",
  9511. "reference": "2b87b41178cc6d4ad3cba678a46a1cae49786011",
  9512. "shasum": ""
  9513. },
  9514. "require": {
  9515. "pear/pear-core-minimal": "^1.10.0alpha2",
  9516. "php": ">=5.2.0"
  9517. },
  9518. "require-dev": {
  9519. "phpunit/phpunit": "*"
  9520. },
  9521. "suggest": {
  9522. "ext-bz2": "Bz2 compression support.",
  9523. "ext-xz": "Lzma2 compression support.",
  9524. "ext-zlib": "Gzip compression support."
  9525. },
  9526. "type": "library",
  9527. "extra": {
  9528. "branch-alias": {
  9529. "dev-master": "1.4.x-dev"
  9530. }
  9531. },
  9532. "autoload": {
  9533. "psr-0": {
  9534. "Archive_Tar": ""
  9535. }
  9536. },
  9537. "notification-url": "https://packagist.org/downloads/",
  9538. "include-path": [
  9539. "./"
  9540. ],
  9541. "license": [
  9542. "BSD-3-Clause"
  9543. ],
  9544. "authors": [
  9545. {
  9546. "name": "Vincent Blavet",
  9547. "email": "vincent@phpconcept.net"
  9548. },
  9549. {
  9550. "name": "Greg Beaver",
  9551. "email": "greg@chiaraquartet.net"
  9552. },
  9553. {
  9554. "name": "Michiel Rook",
  9555. "email": "mrook@php.net"
  9556. }
  9557. ],
  9558. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  9559. "homepage": "https://github.com/pear/Archive_Tar",
  9560. "keywords": [
  9561. "archive",
  9562. "tar"
  9563. ],
  9564. "support": {
  9565. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  9566. "source": "https://github.com/pear/Archive_Tar"
  9567. },
  9568. "funding": [
  9569. {
  9570. "url": "https://github.com/mrook",
  9571. "type": "github"
  9572. },
  9573. {
  9574. "url": "https://www.patreon.com/michielrook",
  9575. "type": "patreon"
  9576. }
  9577. ],
  9578. "time": "2021-02-16T10:50:50+00:00"
  9579. },
  9580. {
  9581. "name": "pear/console_getopt",
  9582. "version": "v1.4.3",
  9583. "source": {
  9584. "type": "git",
  9585. "url": "https://github.com/pear/Console_Getopt.git",
  9586. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  9587. },
  9588. "dist": {
  9589. "type": "zip",
  9590. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9591. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9592. "shasum": ""
  9593. },
  9594. "type": "library",
  9595. "autoload": {
  9596. "psr-0": {
  9597. "Console": "./"
  9598. }
  9599. },
  9600. "notification-url": "https://packagist.org/downloads/",
  9601. "include-path": [
  9602. "./"
  9603. ],
  9604. "license": [
  9605. "BSD-2-Clause"
  9606. ],
  9607. "authors": [
  9608. {
  9609. "name": "Andrei Zmievski",
  9610. "email": "andrei@php.net",
  9611. "role": "Lead"
  9612. },
  9613. {
  9614. "name": "Stig Bakken",
  9615. "email": "stig@php.net",
  9616. "role": "Developer"
  9617. },
  9618. {
  9619. "name": "Greg Beaver",
  9620. "email": "cellog@php.net",
  9621. "role": "Helper"
  9622. }
  9623. ],
  9624. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  9625. "support": {
  9626. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  9627. "source": "https://github.com/pear/Console_Getopt"
  9628. },
  9629. "time": "2019-11-20T18:27:48+00:00"
  9630. },
  9631. {
  9632. "name": "pear/pear-core-minimal",
  9633. "version": "v1.10.10",
  9634. "source": {
  9635. "type": "git",
  9636. "url": "https://github.com/pear/pear-core-minimal.git",
  9637. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  9638. },
  9639. "dist": {
  9640. "type": "zip",
  9641. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  9642. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  9643. "shasum": ""
  9644. },
  9645. "require": {
  9646. "pear/console_getopt": "~1.4",
  9647. "pear/pear_exception": "~1.0"
  9648. },
  9649. "replace": {
  9650. "rsky/pear-core-min": "self.version"
  9651. },
  9652. "type": "library",
  9653. "autoload": {
  9654. "psr-0": {
  9655. "": "src/"
  9656. }
  9657. },
  9658. "notification-url": "https://packagist.org/downloads/",
  9659. "include-path": [
  9660. "src/"
  9661. ],
  9662. "license": [
  9663. "BSD-3-Clause"
  9664. ],
  9665. "authors": [
  9666. {
  9667. "name": "Christian Weiske",
  9668. "email": "cweiske@php.net",
  9669. "role": "Lead"
  9670. }
  9671. ],
  9672. "description": "Minimal set of PEAR core files to be used as composer dependency",
  9673. "support": {
  9674. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  9675. "source": "https://github.com/pear/pear-core-minimal"
  9676. },
  9677. "time": "2019-11-19T19:00:24+00:00"
  9678. },
  9679. {
  9680. "name": "pear/pear_exception",
  9681. "version": "v1.0.1",
  9682. "source": {
  9683. "type": "git",
  9684. "url": "https://github.com/pear/PEAR_Exception.git",
  9685. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7"
  9686. },
  9687. "dist": {
  9688. "type": "zip",
  9689. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  9690. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  9691. "shasum": ""
  9692. },
  9693. "require": {
  9694. "php": ">=4.4.0"
  9695. },
  9696. "require-dev": {
  9697. "phpunit/phpunit": "*"
  9698. },
  9699. "type": "class",
  9700. "extra": {
  9701. "branch-alias": {
  9702. "dev-master": "1.0.x-dev"
  9703. }
  9704. },
  9705. "autoload": {
  9706. "classmap": [
  9707. "PEAR/"
  9708. ]
  9709. },
  9710. "notification-url": "https://packagist.org/downloads/",
  9711. "include-path": [
  9712. "."
  9713. ],
  9714. "license": [
  9715. "BSD-2-Clause"
  9716. ],
  9717. "authors": [
  9718. {
  9719. "name": "Helgi Thormar",
  9720. "email": "dufuz@php.net"
  9721. },
  9722. {
  9723. "name": "Greg Beaver",
  9724. "email": "cellog@php.net"
  9725. }
  9726. ],
  9727. "description": "The PEAR Exception base class.",
  9728. "homepage": "https://github.com/pear/PEAR_Exception",
  9729. "keywords": [
  9730. "exception"
  9731. ],
  9732. "support": {
  9733. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  9734. "source": "https://github.com/pear/PEAR_Exception"
  9735. },
  9736. "time": "2019-12-10T10:24:42+00:00"
  9737. },
  9738. {
  9739. "name": "phenx/php-font-lib",
  9740. "version": "0.5.2",
  9741. "source": {
  9742. "type": "git",
  9743. "url": "https://github.com/PhenX/php-font-lib.git",
  9744. "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8"
  9745. },
  9746. "dist": {
  9747. "type": "zip",
  9748. "url": "https://api.github.com/repos/PhenX/php-font-lib/zipball/ca6ad461f032145fff5971b5985e5af9e7fa88d8",
  9749. "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8",
  9750. "shasum": ""
  9751. },
  9752. "require-dev": {
  9753. "phpunit/phpunit": "^4.8.35 || ^5 || ^6 || ^7"
  9754. },
  9755. "type": "library",
  9756. "autoload": {
  9757. "psr-4": {
  9758. "FontLib\\": "src/FontLib"
  9759. }
  9760. },
  9761. "notification-url": "https://packagist.org/downloads/",
  9762. "license": [
  9763. "LGPL-3.0"
  9764. ],
  9765. "authors": [
  9766. {
  9767. "name": "Fabien Ménager",
  9768. "email": "fabien.menager@gmail.com"
  9769. }
  9770. ],
  9771. "description": "A library to read, parse, export and make subsets of different types of font files.",
  9772. "homepage": "https://github.com/PhenX/php-font-lib",
  9773. "time": "2020-03-08T15:31:32+00:00"
  9774. },
  9775. {
  9776. "name": "phpmailer/phpmailer",
  9777. "version": "v6.2.0",
  9778. "source": {
  9779. "type": "git",
  9780. "url": "https://github.com/PHPMailer/PHPMailer.git",
  9781. "reference": "e38888a75c070304ca5514197d4847a59a5c853f"
  9782. },
  9783. "dist": {
  9784. "type": "zip",
  9785. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/e38888a75c070304ca5514197d4847a59a5c853f",
  9786. "reference": "e38888a75c070304ca5514197d4847a59a5c853f",
  9787. "shasum": ""
  9788. },
  9789. "require": {
  9790. "ext-ctype": "*",
  9791. "ext-filter": "*",
  9792. "ext-hash": "*",
  9793. "php": ">=5.5.0"
  9794. },
  9795. "require-dev": {
  9796. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  9797. "doctrine/annotations": "^1.2",
  9798. "phpcompatibility/php-compatibility": "^9.3.5",
  9799. "roave/security-advisories": "dev-latest",
  9800. "squizlabs/php_codesniffer": "^3.5.6",
  9801. "yoast/phpunit-polyfills": "^0.2.0"
  9802. },
  9803. "suggest": {
  9804. "ext-mbstring": "Needed to send email in multibyte encoding charset",
  9805. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  9806. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  9807. "psr/log": "For optional PSR-3 debug logging",
  9808. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  9809. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  9810. },
  9811. "type": "library",
  9812. "autoload": {
  9813. "psr-4": {
  9814. "PHPMailer\\PHPMailer\\": "src/"
  9815. }
  9816. },
  9817. "notification-url": "https://packagist.org/downloads/",
  9818. "license": [
  9819. "LGPL-2.1-only"
  9820. ],
  9821. "authors": [
  9822. {
  9823. "name": "Marcus Bointon",
  9824. "email": "phpmailer@synchromedia.co.uk"
  9825. },
  9826. {
  9827. "name": "Jim Jagielski",
  9828. "email": "jimjag@gmail.com"
  9829. },
  9830. {
  9831. "name": "Andy Prevost",
  9832. "email": "codeworxtech@users.sourceforge.net"
  9833. },
  9834. {
  9835. "name": "Brent R. Matzelle"
  9836. }
  9837. ],
  9838. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  9839. "funding": [
  9840. {
  9841. "url": "https://github.com/Synchro",
  9842. "type": "github"
  9843. }
  9844. ],
  9845. "time": "2020-11-25T15:24:57+00:00"
  9846. },
  9847. {
  9848. "name": "psr/container",
  9849. "version": "1.0.0",
  9850. "source": {
  9851. "type": "git",
  9852. "url": "https://github.com/php-fig/container.git",
  9853. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  9854. },
  9855. "dist": {
  9856. "type": "zip",
  9857. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  9858. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  9859. "shasum": ""
  9860. },
  9861. "require": {
  9862. "php": ">=5.3.0"
  9863. },
  9864. "type": "library",
  9865. "extra": {
  9866. "branch-alias": {
  9867. "dev-master": "1.0.x-dev"
  9868. }
  9869. },
  9870. "autoload": {
  9871. "psr-4": {
  9872. "Psr\\Container\\": "src/"
  9873. }
  9874. },
  9875. "notification-url": "https://packagist.org/downloads/",
  9876. "license": [
  9877. "MIT"
  9878. ],
  9879. "authors": [
  9880. {
  9881. "name": "PHP-FIG",
  9882. "homepage": "http://www.php-fig.org/"
  9883. }
  9884. ],
  9885. "description": "Common Container Interface (PHP FIG PSR-11)",
  9886. "homepage": "https://github.com/php-fig/container",
  9887. "keywords": [
  9888. "PSR-11",
  9889. "container",
  9890. "container-interface",
  9891. "container-interop",
  9892. "psr"
  9893. ],
  9894. "support": {
  9895. "issues": "https://github.com/php-fig/container/issues",
  9896. "source": "https://github.com/php-fig/container/tree/master"
  9897. },
  9898. "time": "2017-02-14T16:28:37+00:00"
  9899. },
  9900. {
  9901. "name": "psr/http-factory",
  9902. "version": "1.0.1",
  9903. "source": {
  9904. "type": "git",
  9905. "url": "https://github.com/php-fig/http-factory.git",
  9906. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  9907. },
  9908. "dist": {
  9909. "type": "zip",
  9910. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  9911. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  9912. "shasum": ""
  9913. },
  9914. "require": {
  9915. "php": ">=7.0.0",
  9916. "psr/http-message": "^1.0"
  9917. },
  9918. "type": "library",
  9919. "extra": {
  9920. "branch-alias": {
  9921. "dev-master": "1.0.x-dev"
  9922. }
  9923. },
  9924. "autoload": {
  9925. "psr-4": {
  9926. "Psr\\Http\\Message\\": "src/"
  9927. }
  9928. },
  9929. "notification-url": "https://packagist.org/downloads/",
  9930. "license": [
  9931. "MIT"
  9932. ],
  9933. "authors": [
  9934. {
  9935. "name": "PHP-FIG",
  9936. "homepage": "http://www.php-fig.org/"
  9937. }
  9938. ],
  9939. "description": "Common interfaces for PSR-7 HTTP message factories",
  9940. "keywords": [
  9941. "factory",
  9942. "http",
  9943. "message",
  9944. "psr",
  9945. "psr-17",
  9946. "psr-7",
  9947. "request",
  9948. "response"
  9949. ],
  9950. "support": {
  9951. "source": "https://github.com/php-fig/http-factory/tree/master"
  9952. },
  9953. "time": "2019-04-30T12:38:16+00:00"
  9954. },
  9955. {
  9956. "name": "psr/http-message",
  9957. "version": "1.0.1",
  9958. "source": {
  9959. "type": "git",
  9960. "url": "https://github.com/php-fig/http-message.git",
  9961. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  9962. },
  9963. "dist": {
  9964. "type": "zip",
  9965. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  9966. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  9967. "shasum": ""
  9968. },
  9969. "require": {
  9970. "php": ">=5.3.0"
  9971. },
  9972. "type": "library",
  9973. "extra": {
  9974. "branch-alias": {
  9975. "dev-master": "1.0.x-dev"
  9976. }
  9977. },
  9978. "autoload": {
  9979. "psr-4": {
  9980. "Psr\\Http\\Message\\": "src/"
  9981. }
  9982. },
  9983. "notification-url": "https://packagist.org/downloads/",
  9984. "license": [
  9985. "MIT"
  9986. ],
  9987. "authors": [
  9988. {
  9989. "name": "PHP-FIG",
  9990. "homepage": "http://www.php-fig.org/"
  9991. }
  9992. ],
  9993. "description": "Common interface for HTTP messages",
  9994. "homepage": "https://github.com/php-fig/http-message",
  9995. "keywords": [
  9996. "http",
  9997. "http-message",
  9998. "psr",
  9999. "psr-7",
  10000. "request",
  10001. "response"
  10002. ],
  10003. "support": {
  10004. "source": "https://github.com/php-fig/http-message/tree/master"
  10005. },
  10006. "time": "2016-08-06T14:39:51+00:00"
  10007. },
  10008. {
  10009. "name": "psr/log",
  10010. "version": "1.1.3",
  10011. "source": {
  10012. "type": "git",
  10013. "url": "https://github.com/php-fig/log.git",
  10014. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  10015. },
  10016. "dist": {
  10017. "type": "zip",
  10018. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  10019. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  10020. "shasum": ""
  10021. },
  10022. "require": {
  10023. "php": ">=5.3.0"
  10024. },
  10025. "type": "library",
  10026. "extra": {
  10027. "branch-alias": {
  10028. "dev-master": "1.1.x-dev"
  10029. }
  10030. },
  10031. "autoload": {
  10032. "psr-4": {
  10033. "Psr\\Log\\": "Psr/Log/"
  10034. }
  10035. },
  10036. "notification-url": "https://packagist.org/downloads/",
  10037. "license": [
  10038. "MIT"
  10039. ],
  10040. "authors": [
  10041. {
  10042. "name": "PHP-FIG",
  10043. "homepage": "http://www.php-fig.org/"
  10044. }
  10045. ],
  10046. "description": "Common interface for logging libraries",
  10047. "homepage": "https://github.com/php-fig/log",
  10048. "keywords": [
  10049. "log",
  10050. "psr",
  10051. "psr-3"
  10052. ],
  10053. "support": {
  10054. "source": "https://github.com/php-fig/log/tree/1.1.3"
  10055. },
  10056. "time": "2020-03-23T09:12:05+00:00"
  10057. },
  10058. {
  10059. "name": "psy/psysh",
  10060. "version": "v0.10.5",
  10061. "source": {
  10062. "type": "git",
  10063. "url": "https://github.com/bobthecow/psysh.git",
  10064. "reference": "7c710551d4a2653afa259c544508dc18a9098956"
  10065. },
  10066. "dist": {
  10067. "type": "zip",
  10068. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/7c710551d4a2653afa259c544508dc18a9098956",
  10069. "reference": "7c710551d4a2653afa259c544508dc18a9098956",
  10070. "shasum": ""
  10071. },
  10072. "require": {
  10073. "dnoegel/php-xdg-base-dir": "0.1.*",
  10074. "ext-json": "*",
  10075. "ext-tokenizer": "*",
  10076. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  10077. "php": "^8.0 || ^7.0 || ^5.5.9",
  10078. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  10079. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  10080. },
  10081. "require-dev": {
  10082. "bamarni/composer-bin-plugin": "^1.2",
  10083. "hoa/console": "3.17.*"
  10084. },
  10085. "suggest": {
  10086. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  10087. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  10088. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  10089. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  10090. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  10091. },
  10092. "bin": [
  10093. "bin/psysh"
  10094. ],
  10095. "type": "library",
  10096. "extra": {
  10097. "branch-alias": {
  10098. "dev-master": "0.10.x-dev"
  10099. }
  10100. },
  10101. "autoload": {
  10102. "files": [
  10103. "src/functions.php"
  10104. ],
  10105. "psr-4": {
  10106. "Psy\\": "src/"
  10107. }
  10108. },
  10109. "notification-url": "https://packagist.org/downloads/",
  10110. "license": [
  10111. "MIT"
  10112. ],
  10113. "authors": [
  10114. {
  10115. "name": "Justin Hileman",
  10116. "email": "justin@justinhileman.info",
  10117. "homepage": "http://justinhileman.com"
  10118. }
  10119. ],
  10120. "description": "An interactive shell for modern PHP.",
  10121. "homepage": "http://psysh.org",
  10122. "keywords": [
  10123. "REPL",
  10124. "console",
  10125. "interactive",
  10126. "shell"
  10127. ],
  10128. "time": "2020-12-04T02:51:30+00:00"
  10129. },
  10130. {
  10131. "name": "ralouphie/getallheaders",
  10132. "version": "3.0.3",
  10133. "source": {
  10134. "type": "git",
  10135. "url": "https://github.com/ralouphie/getallheaders.git",
  10136. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  10137. },
  10138. "dist": {
  10139. "type": "zip",
  10140. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  10141. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  10142. "shasum": ""
  10143. },
  10144. "require": {
  10145. "php": ">=5.6"
  10146. },
  10147. "require-dev": {
  10148. "php-coveralls/php-coveralls": "^2.1",
  10149. "phpunit/phpunit": "^5 || ^6.5"
  10150. },
  10151. "type": "library",
  10152. "autoload": {
  10153. "files": [
  10154. "src/getallheaders.php"
  10155. ]
  10156. },
  10157. "notification-url": "https://packagist.org/downloads/",
  10158. "license": [
  10159. "MIT"
  10160. ],
  10161. "authors": [
  10162. {
  10163. "name": "Ralph Khattar",
  10164. "email": "ralph.khattar@gmail.com"
  10165. }
  10166. ],
  10167. "description": "A polyfill for getallheaders.",
  10168. "support": {
  10169. "issues": "https://github.com/ralouphie/getallheaders/issues",
  10170. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  10171. },
  10172. "time": "2019-03-08T08:55:37+00:00"
  10173. },
  10174. {
  10175. "name": "stack/builder",
  10176. "version": "v1.0.6",
  10177. "source": {
  10178. "type": "git",
  10179. "url": "https://github.com/stackphp/builder.git",
  10180. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c"
  10181. },
  10182. "dist": {
  10183. "type": "zip",
  10184. "url": "https://api.github.com/repos/stackphp/builder/zipball/a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  10185. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  10186. "shasum": ""
  10187. },
  10188. "require": {
  10189. "php": ">=7.2.0",
  10190. "symfony/http-foundation": "~2.1|~3.0|~4.0|~5.0",
  10191. "symfony/http-kernel": "~2.1|~3.0|~4.0|~5.0"
  10192. },
  10193. "require-dev": {
  10194. "phpunit/phpunit": "~8.0",
  10195. "symfony/routing": "^5.0"
  10196. },
  10197. "type": "library",
  10198. "extra": {
  10199. "branch-alias": {
  10200. "dev-master": "1.0-dev"
  10201. }
  10202. },
  10203. "autoload": {
  10204. "psr-0": {
  10205. "Stack": "src"
  10206. }
  10207. },
  10208. "notification-url": "https://packagist.org/downloads/",
  10209. "license": [
  10210. "MIT"
  10211. ],
  10212. "authors": [
  10213. {
  10214. "name": "Igor Wiedler",
  10215. "email": "igor@wiedler.ch"
  10216. }
  10217. ],
  10218. "description": "Builder for stack middleware based on HttpKernelInterface.",
  10219. "keywords": [
  10220. "stack"
  10221. ],
  10222. "support": {
  10223. "issues": "https://github.com/stackphp/builder/issues",
  10224. "source": "https://github.com/stackphp/builder/tree/v1.0.6"
  10225. },
  10226. "time": "2020-01-30T12:17:27+00:00"
  10227. },
  10228. {
  10229. "name": "stecman/symfony-console-completion",
  10230. "version": "0.11.0",
  10231. "source": {
  10232. "type": "git",
  10233. "url": "https://github.com/stecman/symfony-console-completion.git",
  10234. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518"
  10235. },
  10236. "dist": {
  10237. "type": "zip",
  10238. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/a9502dab59405e275a9f264536c4e1cb61fc3518",
  10239. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518",
  10240. "shasum": ""
  10241. },
  10242. "require": {
  10243. "php": ">=5.3.2",
  10244. "symfony/console": "~2.3 || ~3.0 || ~4.0 || ~5.0"
  10245. },
  10246. "require-dev": {
  10247. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  10248. },
  10249. "type": "library",
  10250. "extra": {
  10251. "branch-alias": {
  10252. "dev-master": "0.10.x-dev"
  10253. }
  10254. },
  10255. "autoload": {
  10256. "psr-4": {
  10257. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  10258. }
  10259. },
  10260. "notification-url": "https://packagist.org/downloads/",
  10261. "license": [
  10262. "MIT"
  10263. ],
  10264. "authors": [
  10265. {
  10266. "name": "Stephen Holdaway",
  10267. "email": "stephen@stecman.co.nz"
  10268. }
  10269. ],
  10270. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  10271. "time": "2019-11-24T17:03:06+00:00"
  10272. },
  10273. {
  10274. "name": "symfony-cmf/routing",
  10275. "version": "2.3.3",
  10276. "source": {
  10277. "type": "git",
  10278. "url": "https://github.com/symfony-cmf/Routing.git",
  10279. "reference": "3c97e7b7709b313cecfb76d691ad4cc22acbf3f5"
  10280. },
  10281. "dist": {
  10282. "type": "zip",
  10283. "url": "https://api.github.com/repos/symfony-cmf/Routing/zipball/3c97e7b7709b313cecfb76d691ad4cc22acbf3f5",
  10284. "reference": "3c97e7b7709b313cecfb76d691ad4cc22acbf3f5",
  10285. "shasum": ""
  10286. },
  10287. "require": {
  10288. "php": "^7.2 || ^8.0",
  10289. "psr/log": "^1.0",
  10290. "symfony/http-kernel": "^4.4 || ^5.0",
  10291. "symfony/routing": "^4.4 || ^5.0"
  10292. },
  10293. "require-dev": {
  10294. "symfony-cmf/testing": "^3@dev",
  10295. "symfony/config": "^4.4 || ^5.0",
  10296. "symfony/dependency-injection": "^4.4 || ^5.0",
  10297. "symfony/event-dispatcher": "^4.4 || ^5.0",
  10298. "symfony/phpunit-bridge": "^5.0"
  10299. },
  10300. "suggest": {
  10301. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (^4.4 || ^5.0)"
  10302. },
  10303. "type": "library",
  10304. "extra": {
  10305. "branch-alias": {
  10306. "dev-master": "2.x-dev"
  10307. }
  10308. },
  10309. "autoload": {
  10310. "psr-4": {
  10311. "Symfony\\Cmf\\Component\\Routing\\": "src/"
  10312. }
  10313. },
  10314. "notification-url": "https://packagist.org/downloads/",
  10315. "license": [
  10316. "MIT"
  10317. ],
  10318. "authors": [
  10319. {
  10320. "name": "Symfony CMF Community",
  10321. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  10322. }
  10323. ],
  10324. "description": "Extends the Symfony routing component for dynamic routes and chaining several routers",
  10325. "homepage": "http://cmf.symfony.com",
  10326. "keywords": [
  10327. "database",
  10328. "routing"
  10329. ],
  10330. "support": {
  10331. "issues": "https://github.com/symfony-cmf/Routing/issues",
  10332. "source": "https://github.com/symfony-cmf/Routing/tree/2.3.3"
  10333. },
  10334. "time": "2020-10-06T10:15:37+00:00"
  10335. },
  10336. {
  10337. "name": "symfony/config",
  10338. "version": "v4.4.17",
  10339. "source": {
  10340. "type": "git",
  10341. "url": "https://github.com/symfony/config.git",
  10342. "reference": "4da4a6b07cc7d8d7d3e29842bc9c20401d555065"
  10343. },
  10344. "dist": {
  10345. "type": "zip",
  10346. "url": "https://api.github.com/repos/symfony/config/zipball/4da4a6b07cc7d8d7d3e29842bc9c20401d555065",
  10347. "reference": "4da4a6b07cc7d8d7d3e29842bc9c20401d555065",
  10348. "shasum": ""
  10349. },
  10350. "require": {
  10351. "php": ">=7.1.3",
  10352. "symfony/filesystem": "^3.4|^4.0|^5.0",
  10353. "symfony/polyfill-ctype": "~1.8"
  10354. },
  10355. "conflict": {
  10356. "symfony/finder": "<3.4"
  10357. },
  10358. "require-dev": {
  10359. "symfony/event-dispatcher": "^3.4|^4.0|^5.0",
  10360. "symfony/finder": "^3.4|^4.0|^5.0",
  10361. "symfony/messenger": "^4.1|^5.0",
  10362. "symfony/service-contracts": "^1.1|^2",
  10363. "symfony/yaml": "^3.4|^4.0|^5.0"
  10364. },
  10365. "suggest": {
  10366. "symfony/yaml": "To use the yaml reference dumper"
  10367. },
  10368. "type": "library",
  10369. "autoload": {
  10370. "psr-4": {
  10371. "Symfony\\Component\\Config\\": ""
  10372. },
  10373. "exclude-from-classmap": [
  10374. "/Tests/"
  10375. ]
  10376. },
  10377. "notification-url": "https://packagist.org/downloads/",
  10378. "license": [
  10379. "MIT"
  10380. ],
  10381. "authors": [
  10382. {
  10383. "name": "Fabien Potencier",
  10384. "email": "fabien@symfony.com"
  10385. },
  10386. {
  10387. "name": "Symfony Community",
  10388. "homepage": "https://symfony.com/contributors"
  10389. }
  10390. ],
  10391. "description": "Symfony Config Component",
  10392. "homepage": "https://symfony.com",
  10393. "funding": [
  10394. {
  10395. "url": "https://symfony.com/sponsor",
  10396. "type": "custom"
  10397. },
  10398. {
  10399. "url": "https://github.com/fabpot",
  10400. "type": "github"
  10401. },
  10402. {
  10403. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10404. "type": "tidelift"
  10405. }
  10406. ],
  10407. "time": "2020-11-16T11:15:53+00:00"
  10408. },
  10409. {
  10410. "name": "symfony/console",
  10411. "version": "v4.4.19",
  10412. "source": {
  10413. "type": "git",
  10414. "url": "https://github.com/symfony/console.git",
  10415. "reference": "24026c44fc37099fa145707fecd43672831b837a"
  10416. },
  10417. "dist": {
  10418. "type": "zip",
  10419. "url": "https://api.github.com/repos/symfony/console/zipball/24026c44fc37099fa145707fecd43672831b837a",
  10420. "reference": "24026c44fc37099fa145707fecd43672831b837a",
  10421. "shasum": ""
  10422. },
  10423. "require": {
  10424. "php": ">=7.1.3",
  10425. "symfony/polyfill-mbstring": "~1.0",
  10426. "symfony/polyfill-php73": "^1.8",
  10427. "symfony/polyfill-php80": "^1.15",
  10428. "symfony/service-contracts": "^1.1|^2"
  10429. },
  10430. "conflict": {
  10431. "symfony/dependency-injection": "<3.4",
  10432. "symfony/event-dispatcher": "<4.3|>=5",
  10433. "symfony/lock": "<4.4",
  10434. "symfony/process": "<3.3"
  10435. },
  10436. "provide": {
  10437. "psr/log-implementation": "1.0"
  10438. },
  10439. "require-dev": {
  10440. "psr/log": "~1.0",
  10441. "symfony/config": "^3.4|^4.0|^5.0",
  10442. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  10443. "symfony/event-dispatcher": "^4.3",
  10444. "symfony/lock": "^4.4|^5.0",
  10445. "symfony/process": "^3.4|^4.0|^5.0",
  10446. "symfony/var-dumper": "^4.3|^5.0"
  10447. },
  10448. "suggest": {
  10449. "psr/log": "For using the console logger",
  10450. "symfony/event-dispatcher": "",
  10451. "symfony/lock": "",
  10452. "symfony/process": ""
  10453. },
  10454. "type": "library",
  10455. "autoload": {
  10456. "psr-4": {
  10457. "Symfony\\Component\\Console\\": ""
  10458. },
  10459. "exclude-from-classmap": [
  10460. "/Tests/"
  10461. ]
  10462. },
  10463. "notification-url": "https://packagist.org/downloads/",
  10464. "license": [
  10465. "MIT"
  10466. ],
  10467. "authors": [
  10468. {
  10469. "name": "Fabien Potencier",
  10470. "email": "fabien@symfony.com"
  10471. },
  10472. {
  10473. "name": "Symfony Community",
  10474. "homepage": "https://symfony.com/contributors"
  10475. }
  10476. ],
  10477. "description": "Eases the creation of beautiful and testable command line interfaces",
  10478. "homepage": "https://symfony.com",
  10479. "support": {
  10480. "source": "https://github.com/symfony/console/tree/v4.4.19"
  10481. },
  10482. "funding": [
  10483. {
  10484. "url": "https://symfony.com/sponsor",
  10485. "type": "custom"
  10486. },
  10487. {
  10488. "url": "https://github.com/fabpot",
  10489. "type": "github"
  10490. },
  10491. {
  10492. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10493. "type": "tidelift"
  10494. }
  10495. ],
  10496. "time": "2021-01-27T09:09:26+00:00"
  10497. },
  10498. {
  10499. "name": "symfony/css-selector",
  10500. "version": "v4.4.17",
  10501. "source": {
  10502. "type": "git",
  10503. "url": "https://github.com/symfony/css-selector.git",
  10504. "reference": "5e6efcb6e5d120249da366417e2517c55b50c931"
  10505. },
  10506. "dist": {
  10507. "type": "zip",
  10508. "url": "https://api.github.com/repos/symfony/css-selector/zipball/5e6efcb6e5d120249da366417e2517c55b50c931",
  10509. "reference": "5e6efcb6e5d120249da366417e2517c55b50c931",
  10510. "shasum": ""
  10511. },
  10512. "require": {
  10513. "php": ">=7.1.3"
  10514. },
  10515. "type": "library",
  10516. "autoload": {
  10517. "psr-4": {
  10518. "Symfony\\Component\\CssSelector\\": ""
  10519. },
  10520. "exclude-from-classmap": [
  10521. "/Tests/"
  10522. ]
  10523. },
  10524. "notification-url": "https://packagist.org/downloads/",
  10525. "license": [
  10526. "MIT"
  10527. ],
  10528. "authors": [
  10529. {
  10530. "name": "Fabien Potencier",
  10531. "email": "fabien@symfony.com"
  10532. },
  10533. {
  10534. "name": "Jean-François Simon",
  10535. "email": "jeanfrancois.simon@sensiolabs.com"
  10536. },
  10537. {
  10538. "name": "Symfony Community",
  10539. "homepage": "https://symfony.com/contributors"
  10540. }
  10541. ],
  10542. "description": "Symfony CssSelector Component",
  10543. "homepage": "https://symfony.com",
  10544. "funding": [
  10545. {
  10546. "url": "https://symfony.com/sponsor",
  10547. "type": "custom"
  10548. },
  10549. {
  10550. "url": "https://github.com/fabpot",
  10551. "type": "github"
  10552. },
  10553. {
  10554. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10555. "type": "tidelift"
  10556. }
  10557. ],
  10558. "time": "2020-10-28T20:42:29+00:00"
  10559. },
  10560. {
  10561. "name": "symfony/debug",
  10562. "version": "v4.4.19",
  10563. "source": {
  10564. "type": "git",
  10565. "url": "https://github.com/symfony/debug.git",
  10566. "reference": "af4987aa4a5630e9615be9d9c3ed1b0f24ca449c"
  10567. },
  10568. "dist": {
  10569. "type": "zip",
  10570. "url": "https://api.github.com/repos/symfony/debug/zipball/af4987aa4a5630e9615be9d9c3ed1b0f24ca449c",
  10571. "reference": "af4987aa4a5630e9615be9d9c3ed1b0f24ca449c",
  10572. "shasum": ""
  10573. },
  10574. "require": {
  10575. "php": ">=7.1.3",
  10576. "psr/log": "~1.0",
  10577. "symfony/polyfill-php80": "^1.15"
  10578. },
  10579. "conflict": {
  10580. "symfony/http-kernel": "<3.4"
  10581. },
  10582. "require-dev": {
  10583. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  10584. },
  10585. "type": "library",
  10586. "autoload": {
  10587. "psr-4": {
  10588. "Symfony\\Component\\Debug\\": ""
  10589. },
  10590. "exclude-from-classmap": [
  10591. "/Tests/"
  10592. ]
  10593. },
  10594. "notification-url": "https://packagist.org/downloads/",
  10595. "license": [
  10596. "MIT"
  10597. ],
  10598. "authors": [
  10599. {
  10600. "name": "Fabien Potencier",
  10601. "email": "fabien@symfony.com"
  10602. },
  10603. {
  10604. "name": "Symfony Community",
  10605. "homepage": "https://symfony.com/contributors"
  10606. }
  10607. ],
  10608. "description": "Provides tools to ease debugging PHP code",
  10609. "homepage": "https://symfony.com",
  10610. "support": {
  10611. "source": "https://github.com/symfony/debug/tree/v4.4.19"
  10612. },
  10613. "funding": [
  10614. {
  10615. "url": "https://symfony.com/sponsor",
  10616. "type": "custom"
  10617. },
  10618. {
  10619. "url": "https://github.com/fabpot",
  10620. "type": "github"
  10621. },
  10622. {
  10623. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10624. "type": "tidelift"
  10625. }
  10626. ],
  10627. "time": "2021-01-27T09:09:26+00:00"
  10628. },
  10629. {
  10630. "name": "symfony/dependency-injection",
  10631. "version": "v4.4.19",
  10632. "source": {
  10633. "type": "git",
  10634. "url": "https://github.com/symfony/dependency-injection.git",
  10635. "reference": "2468b95d869c872c6fb1b93b395a7fcd5331f2b9"
  10636. },
  10637. "dist": {
  10638. "type": "zip",
  10639. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/2468b95d869c872c6fb1b93b395a7fcd5331f2b9",
  10640. "reference": "2468b95d869c872c6fb1b93b395a7fcd5331f2b9",
  10641. "shasum": ""
  10642. },
  10643. "require": {
  10644. "php": ">=7.1.3",
  10645. "psr/container": "^1.0",
  10646. "symfony/service-contracts": "^1.1.6|^2"
  10647. },
  10648. "conflict": {
  10649. "symfony/config": "<4.3|>=5.0",
  10650. "symfony/finder": "<3.4",
  10651. "symfony/proxy-manager-bridge": "<3.4",
  10652. "symfony/yaml": "<3.4"
  10653. },
  10654. "provide": {
  10655. "psr/container-implementation": "1.0",
  10656. "symfony/service-implementation": "1.0"
  10657. },
  10658. "require-dev": {
  10659. "symfony/config": "^4.3",
  10660. "symfony/expression-language": "^3.4|^4.0|^5.0",
  10661. "symfony/yaml": "^3.4|^4.0|^5.0"
  10662. },
  10663. "suggest": {
  10664. "symfony/config": "",
  10665. "symfony/expression-language": "For using expressions in service container configuration",
  10666. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  10667. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  10668. "symfony/yaml": ""
  10669. },
  10670. "type": "library",
  10671. "autoload": {
  10672. "psr-4": {
  10673. "Symfony\\Component\\DependencyInjection\\": ""
  10674. },
  10675. "exclude-from-classmap": [
  10676. "/Tests/"
  10677. ]
  10678. },
  10679. "notification-url": "https://packagist.org/downloads/",
  10680. "license": [
  10681. "MIT"
  10682. ],
  10683. "authors": [
  10684. {
  10685. "name": "Fabien Potencier",
  10686. "email": "fabien@symfony.com"
  10687. },
  10688. {
  10689. "name": "Symfony Community",
  10690. "homepage": "https://symfony.com/contributors"
  10691. }
  10692. ],
  10693. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  10694. "homepage": "https://symfony.com",
  10695. "support": {
  10696. "source": "https://github.com/symfony/dependency-injection/tree/v4.4.19"
  10697. },
  10698. "funding": [
  10699. {
  10700. "url": "https://symfony.com/sponsor",
  10701. "type": "custom"
  10702. },
  10703. {
  10704. "url": "https://github.com/fabpot",
  10705. "type": "github"
  10706. },
  10707. {
  10708. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10709. "type": "tidelift"
  10710. }
  10711. ],
  10712. "time": "2021-01-27T09:09:26+00:00"
  10713. },
  10714. {
  10715. "name": "symfony/dom-crawler",
  10716. "version": "v4.4.17",
  10717. "source": {
  10718. "type": "git",
  10719. "url": "https://github.com/symfony/dom-crawler.git",
  10720. "reference": "30ad9ac96a01913195bf0328d48e29d54fa53e6e"
  10721. },
  10722. "dist": {
  10723. "type": "zip",
  10724. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/30ad9ac96a01913195bf0328d48e29d54fa53e6e",
  10725. "reference": "30ad9ac96a01913195bf0328d48e29d54fa53e6e",
  10726. "shasum": ""
  10727. },
  10728. "require": {
  10729. "php": ">=7.1.3",
  10730. "symfony/polyfill-ctype": "~1.8",
  10731. "symfony/polyfill-mbstring": "~1.0"
  10732. },
  10733. "conflict": {
  10734. "masterminds/html5": "<2.6"
  10735. },
  10736. "require-dev": {
  10737. "masterminds/html5": "^2.6",
  10738. "symfony/css-selector": "^3.4|^4.0|^5.0"
  10739. },
  10740. "suggest": {
  10741. "symfony/css-selector": ""
  10742. },
  10743. "type": "library",
  10744. "autoload": {
  10745. "psr-4": {
  10746. "Symfony\\Component\\DomCrawler\\": ""
  10747. },
  10748. "exclude-from-classmap": [
  10749. "/Tests/"
  10750. ]
  10751. },
  10752. "notification-url": "https://packagist.org/downloads/",
  10753. "license": [
  10754. "MIT"
  10755. ],
  10756. "authors": [
  10757. {
  10758. "name": "Fabien Potencier",
  10759. "email": "fabien@symfony.com"
  10760. },
  10761. {
  10762. "name": "Symfony Community",
  10763. "homepage": "https://symfony.com/contributors"
  10764. }
  10765. ],
  10766. "description": "Symfony DomCrawler Component",
  10767. "homepage": "https://symfony.com",
  10768. "funding": [
  10769. {
  10770. "url": "https://symfony.com/sponsor",
  10771. "type": "custom"
  10772. },
  10773. {
  10774. "url": "https://github.com/fabpot",
  10775. "type": "github"
  10776. },
  10777. {
  10778. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10779. "type": "tidelift"
  10780. }
  10781. ],
  10782. "time": "2020-10-24T11:50:19+00:00"
  10783. },
  10784. {
  10785. "name": "symfony/error-handler",
  10786. "version": "v4.4.19",
  10787. "source": {
  10788. "type": "git",
  10789. "url": "https://github.com/symfony/error-handler.git",
  10790. "reference": "d603654eaeb713503bba3e308b9e748e5a6d3f2e"
  10791. },
  10792. "dist": {
  10793. "type": "zip",
  10794. "url": "https://api.github.com/repos/symfony/error-handler/zipball/d603654eaeb713503bba3e308b9e748e5a6d3f2e",
  10795. "reference": "d603654eaeb713503bba3e308b9e748e5a6d3f2e",
  10796. "shasum": ""
  10797. },
  10798. "require": {
  10799. "php": ">=7.1.3",
  10800. "psr/log": "~1.0",
  10801. "symfony/debug": "^4.4.5",
  10802. "symfony/polyfill-php80": "^1.15",
  10803. "symfony/var-dumper": "^4.4|^5.0"
  10804. },
  10805. "require-dev": {
  10806. "symfony/http-kernel": "^4.4|^5.0",
  10807. "symfony/serializer": "^4.4|^5.0"
  10808. },
  10809. "type": "library",
  10810. "autoload": {
  10811. "psr-4": {
  10812. "Symfony\\Component\\ErrorHandler\\": ""
  10813. },
  10814. "exclude-from-classmap": [
  10815. "/Tests/"
  10816. ]
  10817. },
  10818. "notification-url": "https://packagist.org/downloads/",
  10819. "license": [
  10820. "MIT"
  10821. ],
  10822. "authors": [
  10823. {
  10824. "name": "Fabien Potencier",
  10825. "email": "fabien@symfony.com"
  10826. },
  10827. {
  10828. "name": "Symfony Community",
  10829. "homepage": "https://symfony.com/contributors"
  10830. }
  10831. ],
  10832. "description": "Provides tools to manage errors and ease debugging PHP code",
  10833. "homepage": "https://symfony.com",
  10834. "support": {
  10835. "source": "https://github.com/symfony/error-handler/tree/v4.4.19"
  10836. },
  10837. "funding": [
  10838. {
  10839. "url": "https://symfony.com/sponsor",
  10840. "type": "custom"
  10841. },
  10842. {
  10843. "url": "https://github.com/fabpot",
  10844. "type": "github"
  10845. },
  10846. {
  10847. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10848. "type": "tidelift"
  10849. }
  10850. ],
  10851. "time": "2021-01-27T09:09:26+00:00"
  10852. },
  10853. {
  10854. "name": "symfony/event-dispatcher",
  10855. "version": "v4.4.19",
  10856. "source": {
  10857. "type": "git",
  10858. "url": "https://github.com/symfony/event-dispatcher.git",
  10859. "reference": "c352647244bd376bf7d31efbd5401f13f50dad0c"
  10860. },
  10861. "dist": {
  10862. "type": "zip",
  10863. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/c352647244bd376bf7d31efbd5401f13f50dad0c",
  10864. "reference": "c352647244bd376bf7d31efbd5401f13f50dad0c",
  10865. "shasum": ""
  10866. },
  10867. "require": {
  10868. "php": ">=7.1.3",
  10869. "symfony/event-dispatcher-contracts": "^1.1"
  10870. },
  10871. "conflict": {
  10872. "symfony/dependency-injection": "<3.4"
  10873. },
  10874. "provide": {
  10875. "psr/event-dispatcher-implementation": "1.0",
  10876. "symfony/event-dispatcher-implementation": "1.1"
  10877. },
  10878. "require-dev": {
  10879. "psr/log": "~1.0",
  10880. "symfony/config": "^3.4|^4.0|^5.0",
  10881. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  10882. "symfony/error-handler": "~3.4|~4.4",
  10883. "symfony/expression-language": "^3.4|^4.0|^5.0",
  10884. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  10885. "symfony/service-contracts": "^1.1|^2",
  10886. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  10887. },
  10888. "suggest": {
  10889. "symfony/dependency-injection": "",
  10890. "symfony/http-kernel": ""
  10891. },
  10892. "type": "library",
  10893. "autoload": {
  10894. "psr-4": {
  10895. "Symfony\\Component\\EventDispatcher\\": ""
  10896. },
  10897. "exclude-from-classmap": [
  10898. "/Tests/"
  10899. ]
  10900. },
  10901. "notification-url": "https://packagist.org/downloads/",
  10902. "license": [
  10903. "MIT"
  10904. ],
  10905. "authors": [
  10906. {
  10907. "name": "Fabien Potencier",
  10908. "email": "fabien@symfony.com"
  10909. },
  10910. {
  10911. "name": "Symfony Community",
  10912. "homepage": "https://symfony.com/contributors"
  10913. }
  10914. ],
  10915. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  10916. "homepage": "https://symfony.com",
  10917. "support": {
  10918. "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.19"
  10919. },
  10920. "funding": [
  10921. {
  10922. "url": "https://symfony.com/sponsor",
  10923. "type": "custom"
  10924. },
  10925. {
  10926. "url": "https://github.com/fabpot",
  10927. "type": "github"
  10928. },
  10929. {
  10930. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10931. "type": "tidelift"
  10932. }
  10933. ],
  10934. "time": "2021-01-27T09:09:26+00:00"
  10935. },
  10936. {
  10937. "name": "symfony/event-dispatcher-contracts",
  10938. "version": "v1.1.9",
  10939. "source": {
  10940. "type": "git",
  10941. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10942. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7"
  10943. },
  10944. "dist": {
  10945. "type": "zip",
  10946. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  10947. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  10948. "shasum": ""
  10949. },
  10950. "require": {
  10951. "php": ">=7.1.3"
  10952. },
  10953. "suggest": {
  10954. "psr/event-dispatcher": "",
  10955. "symfony/event-dispatcher-implementation": ""
  10956. },
  10957. "type": "library",
  10958. "extra": {
  10959. "branch-alias": {
  10960. "dev-master": "1.1-dev"
  10961. },
  10962. "thanks": {
  10963. "name": "symfony/contracts",
  10964. "url": "https://github.com/symfony/contracts"
  10965. }
  10966. },
  10967. "autoload": {
  10968. "psr-4": {
  10969. "Symfony\\Contracts\\EventDispatcher\\": ""
  10970. }
  10971. },
  10972. "notification-url": "https://packagist.org/downloads/",
  10973. "license": [
  10974. "MIT"
  10975. ],
  10976. "authors": [
  10977. {
  10978. "name": "Nicolas Grekas",
  10979. "email": "p@tchwork.com"
  10980. },
  10981. {
  10982. "name": "Symfony Community",
  10983. "homepage": "https://symfony.com/contributors"
  10984. }
  10985. ],
  10986. "description": "Generic abstractions related to dispatching event",
  10987. "homepage": "https://symfony.com",
  10988. "keywords": [
  10989. "abstractions",
  10990. "contracts",
  10991. "decoupling",
  10992. "interfaces",
  10993. "interoperability",
  10994. "standards"
  10995. ],
  10996. "support": {
  10997. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.9"
  10998. },
  10999. "funding": [
  11000. {
  11001. "url": "https://symfony.com/sponsor",
  11002. "type": "custom"
  11003. },
  11004. {
  11005. "url": "https://github.com/fabpot",
  11006. "type": "github"
  11007. },
  11008. {
  11009. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11010. "type": "tidelift"
  11011. }
  11012. ],
  11013. "time": "2020-07-06T13:19:58+00:00"
  11014. },
  11015. {
  11016. "name": "symfony/filesystem",
  11017. "version": "v4.4.17",
  11018. "source": {
  11019. "type": "git",
  11020. "url": "https://github.com/symfony/filesystem.git",
  11021. "reference": "17b83e36a911aefa2cfe04bbf6328ec4c040c1b2"
  11022. },
  11023. "dist": {
  11024. "type": "zip",
  11025. "url": "https://api.github.com/repos/symfony/filesystem/zipball/17b83e36a911aefa2cfe04bbf6328ec4c040c1b2",
  11026. "reference": "17b83e36a911aefa2cfe04bbf6328ec4c040c1b2",
  11027. "shasum": ""
  11028. },
  11029. "require": {
  11030. "php": ">=7.1.3",
  11031. "symfony/polyfill-ctype": "~1.8"
  11032. },
  11033. "type": "library",
  11034. "autoload": {
  11035. "psr-4": {
  11036. "Symfony\\Component\\Filesystem\\": ""
  11037. },
  11038. "exclude-from-classmap": [
  11039. "/Tests/"
  11040. ]
  11041. },
  11042. "notification-url": "https://packagist.org/downloads/",
  11043. "license": [
  11044. "MIT"
  11045. ],
  11046. "authors": [
  11047. {
  11048. "name": "Fabien Potencier",
  11049. "email": "fabien@symfony.com"
  11050. },
  11051. {
  11052. "name": "Symfony Community",
  11053. "homepage": "https://symfony.com/contributors"
  11054. }
  11055. ],
  11056. "description": "Symfony Filesystem Component",
  11057. "homepage": "https://symfony.com",
  11058. "funding": [
  11059. {
  11060. "url": "https://symfony.com/sponsor",
  11061. "type": "custom"
  11062. },
  11063. {
  11064. "url": "https://github.com/fabpot",
  11065. "type": "github"
  11066. },
  11067. {
  11068. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11069. "type": "tidelift"
  11070. }
  11071. ],
  11072. "time": "2020-11-11T22:20:15+00:00"
  11073. },
  11074. {
  11075. "name": "symfony/finder",
  11076. "version": "v4.4.17",
  11077. "source": {
  11078. "type": "git",
  11079. "url": "https://github.com/symfony/finder.git",
  11080. "reference": "9f1d1d883b79a91ef320c0c6e803494e042ef36e"
  11081. },
  11082. "dist": {
  11083. "type": "zip",
  11084. "url": "https://api.github.com/repos/symfony/finder/zipball/9f1d1d883b79a91ef320c0c6e803494e042ef36e",
  11085. "reference": "9f1d1d883b79a91ef320c0c6e803494e042ef36e",
  11086. "shasum": ""
  11087. },
  11088. "require": {
  11089. "php": ">=7.1.3"
  11090. },
  11091. "type": "library",
  11092. "autoload": {
  11093. "psr-4": {
  11094. "Symfony\\Component\\Finder\\": ""
  11095. },
  11096. "exclude-from-classmap": [
  11097. "/Tests/"
  11098. ]
  11099. },
  11100. "notification-url": "https://packagist.org/downloads/",
  11101. "license": [
  11102. "MIT"
  11103. ],
  11104. "authors": [
  11105. {
  11106. "name": "Fabien Potencier",
  11107. "email": "fabien@symfony.com"
  11108. },
  11109. {
  11110. "name": "Symfony Community",
  11111. "homepage": "https://symfony.com/contributors"
  11112. }
  11113. ],
  11114. "description": "Symfony Finder Component",
  11115. "homepage": "https://symfony.com",
  11116. "funding": [
  11117. {
  11118. "url": "https://symfony.com/sponsor",
  11119. "type": "custom"
  11120. },
  11121. {
  11122. "url": "https://github.com/fabpot",
  11123. "type": "github"
  11124. },
  11125. {
  11126. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11127. "type": "tidelift"
  11128. }
  11129. ],
  11130. "time": "2020-11-17T19:45:34+00:00"
  11131. },
  11132. {
  11133. "name": "symfony/http-client-contracts",
  11134. "version": "v2.3.1",
  11135. "source": {
  11136. "type": "git",
  11137. "url": "https://github.com/symfony/http-client-contracts.git",
  11138. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  11139. },
  11140. "dist": {
  11141. "type": "zip",
  11142. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  11143. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  11144. "shasum": ""
  11145. },
  11146. "require": {
  11147. "php": ">=7.2.5"
  11148. },
  11149. "suggest": {
  11150. "symfony/http-client-implementation": ""
  11151. },
  11152. "type": "library",
  11153. "extra": {
  11154. "branch-version": "2.3",
  11155. "branch-alias": {
  11156. "dev-main": "2.3-dev"
  11157. },
  11158. "thanks": {
  11159. "name": "symfony/contracts",
  11160. "url": "https://github.com/symfony/contracts"
  11161. }
  11162. },
  11163. "autoload": {
  11164. "psr-4": {
  11165. "Symfony\\Contracts\\HttpClient\\": ""
  11166. }
  11167. },
  11168. "notification-url": "https://packagist.org/downloads/",
  11169. "license": [
  11170. "MIT"
  11171. ],
  11172. "authors": [
  11173. {
  11174. "name": "Nicolas Grekas",
  11175. "email": "p@tchwork.com"
  11176. },
  11177. {
  11178. "name": "Symfony Community",
  11179. "homepage": "https://symfony.com/contributors"
  11180. }
  11181. ],
  11182. "description": "Generic abstractions related to HTTP clients",
  11183. "homepage": "https://symfony.com",
  11184. "keywords": [
  11185. "abstractions",
  11186. "contracts",
  11187. "decoupling",
  11188. "interfaces",
  11189. "interoperability",
  11190. "standards"
  11191. ],
  11192. "support": {
  11193. "source": "https://github.com/symfony/http-client-contracts/tree/v2.3.1"
  11194. },
  11195. "funding": [
  11196. {
  11197. "url": "https://symfony.com/sponsor",
  11198. "type": "custom"
  11199. },
  11200. {
  11201. "url": "https://github.com/fabpot",
  11202. "type": "github"
  11203. },
  11204. {
  11205. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11206. "type": "tidelift"
  11207. }
  11208. ],
  11209. "time": "2020-10-14T17:08:19+00:00"
  11210. },
  11211. {
  11212. "name": "symfony/http-foundation",
  11213. "version": "v4.4.19",
  11214. "source": {
  11215. "type": "git",
  11216. "url": "https://github.com/symfony/http-foundation.git",
  11217. "reference": "8888741b633f6c3d1e572b7735ad2cae3e03f9c5"
  11218. },
  11219. "dist": {
  11220. "type": "zip",
  11221. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/8888741b633f6c3d1e572b7735ad2cae3e03f9c5",
  11222. "reference": "8888741b633f6c3d1e572b7735ad2cae3e03f9c5",
  11223. "shasum": ""
  11224. },
  11225. "require": {
  11226. "php": ">=7.1.3",
  11227. "symfony/mime": "^4.3|^5.0",
  11228. "symfony/polyfill-mbstring": "~1.1",
  11229. "symfony/polyfill-php80": "^1.15"
  11230. },
  11231. "require-dev": {
  11232. "predis/predis": "~1.0",
  11233. "symfony/expression-language": "^3.4|^4.0|^5.0"
  11234. },
  11235. "type": "library",
  11236. "autoload": {
  11237. "psr-4": {
  11238. "Symfony\\Component\\HttpFoundation\\": ""
  11239. },
  11240. "exclude-from-classmap": [
  11241. "/Tests/"
  11242. ]
  11243. },
  11244. "notification-url": "https://packagist.org/downloads/",
  11245. "license": [
  11246. "MIT"
  11247. ],
  11248. "authors": [
  11249. {
  11250. "name": "Fabien Potencier",
  11251. "email": "fabien@symfony.com"
  11252. },
  11253. {
  11254. "name": "Symfony Community",
  11255. "homepage": "https://symfony.com/contributors"
  11256. }
  11257. ],
  11258. "description": "Defines an object-oriented layer for the HTTP specification",
  11259. "homepage": "https://symfony.com",
  11260. "support": {
  11261. "source": "https://github.com/symfony/http-foundation/tree/v4.4.19"
  11262. },
  11263. "funding": [
  11264. {
  11265. "url": "https://symfony.com/sponsor",
  11266. "type": "custom"
  11267. },
  11268. {
  11269. "url": "https://github.com/fabpot",
  11270. "type": "github"
  11271. },
  11272. {
  11273. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11274. "type": "tidelift"
  11275. }
  11276. ],
  11277. "time": "2021-01-27T09:09:26+00:00"
  11278. },
  11279. {
  11280. "name": "symfony/http-kernel",
  11281. "version": "v4.4.19",
  11282. "source": {
  11283. "type": "git",
  11284. "url": "https://github.com/symfony/http-kernel.git",
  11285. "reference": "07ea794a327d7c8c5d76e3058fde9fec6a711cb4"
  11286. },
  11287. "dist": {
  11288. "type": "zip",
  11289. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/07ea794a327d7c8c5d76e3058fde9fec6a711cb4",
  11290. "reference": "07ea794a327d7c8c5d76e3058fde9fec6a711cb4",
  11291. "shasum": ""
  11292. },
  11293. "require": {
  11294. "php": ">=7.1.3",
  11295. "psr/log": "~1.0",
  11296. "symfony/error-handler": "^4.4",
  11297. "symfony/event-dispatcher": "^4.4",
  11298. "symfony/http-client-contracts": "^1.1|^2",
  11299. "symfony/http-foundation": "^4.4|^5.0",
  11300. "symfony/polyfill-ctype": "^1.8",
  11301. "symfony/polyfill-php73": "^1.9",
  11302. "symfony/polyfill-php80": "^1.15"
  11303. },
  11304. "conflict": {
  11305. "symfony/browser-kit": "<4.3",
  11306. "symfony/config": "<3.4",
  11307. "symfony/console": ">=5",
  11308. "symfony/dependency-injection": "<4.3",
  11309. "symfony/translation": "<4.2",
  11310. "twig/twig": "<1.43|<2.13,>=2"
  11311. },
  11312. "provide": {
  11313. "psr/log-implementation": "1.0"
  11314. },
  11315. "require-dev": {
  11316. "psr/cache": "~1.0",
  11317. "symfony/browser-kit": "^4.3|^5.0",
  11318. "symfony/config": "^3.4|^4.0|^5.0",
  11319. "symfony/console": "^3.4|^4.0",
  11320. "symfony/css-selector": "^3.4|^4.0|^5.0",
  11321. "symfony/dependency-injection": "^4.3|^5.0",
  11322. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  11323. "symfony/expression-language": "^3.4|^4.0|^5.0",
  11324. "symfony/finder": "^3.4|^4.0|^5.0",
  11325. "symfony/process": "^3.4|^4.0|^5.0",
  11326. "symfony/routing": "^3.4|^4.0|^5.0",
  11327. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  11328. "symfony/templating": "^3.4|^4.0|^5.0",
  11329. "symfony/translation": "^4.2|^5.0",
  11330. "symfony/translation-contracts": "^1.1|^2",
  11331. "twig/twig": "^1.43|^2.13|^3.0.4"
  11332. },
  11333. "suggest": {
  11334. "symfony/browser-kit": "",
  11335. "symfony/config": "",
  11336. "symfony/console": "",
  11337. "symfony/dependency-injection": ""
  11338. },
  11339. "type": "library",
  11340. "autoload": {
  11341. "psr-4": {
  11342. "Symfony\\Component\\HttpKernel\\": ""
  11343. },
  11344. "exclude-from-classmap": [
  11345. "/Tests/"
  11346. ]
  11347. },
  11348. "notification-url": "https://packagist.org/downloads/",
  11349. "license": [
  11350. "MIT"
  11351. ],
  11352. "authors": [
  11353. {
  11354. "name": "Fabien Potencier",
  11355. "email": "fabien@symfony.com"
  11356. },
  11357. {
  11358. "name": "Symfony Community",
  11359. "homepage": "https://symfony.com/contributors"
  11360. }
  11361. ],
  11362. "description": "Provides a structured process for converting a Request into a Response",
  11363. "homepage": "https://symfony.com",
  11364. "support": {
  11365. "source": "https://github.com/symfony/http-kernel/tree/v4.4.19"
  11366. },
  11367. "funding": [
  11368. {
  11369. "url": "https://symfony.com/sponsor",
  11370. "type": "custom"
  11371. },
  11372. {
  11373. "url": "https://github.com/fabpot",
  11374. "type": "github"
  11375. },
  11376. {
  11377. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11378. "type": "tidelift"
  11379. }
  11380. ],
  11381. "time": "2021-01-27T13:50:53+00:00"
  11382. },
  11383. {
  11384. "name": "symfony/mime",
  11385. "version": "v5.1.11",
  11386. "source": {
  11387. "type": "git",
  11388. "url": "https://github.com/symfony/mime.git",
  11389. "reference": "d7d899822da1fa89bcf658e8e8d836f5578e6f7a"
  11390. },
  11391. "dist": {
  11392. "type": "zip",
  11393. "url": "https://api.github.com/repos/symfony/mime/zipball/d7d899822da1fa89bcf658e8e8d836f5578e6f7a",
  11394. "reference": "d7d899822da1fa89bcf658e8e8d836f5578e6f7a",
  11395. "shasum": ""
  11396. },
  11397. "require": {
  11398. "php": ">=7.2.5",
  11399. "symfony/polyfill-intl-idn": "^1.10",
  11400. "symfony/polyfill-mbstring": "^1.0",
  11401. "symfony/polyfill-php80": "^1.15"
  11402. },
  11403. "conflict": {
  11404. "symfony/mailer": "<4.4"
  11405. },
  11406. "require-dev": {
  11407. "egulias/email-validator": "^2.1.10",
  11408. "symfony/dependency-injection": "^4.4|^5.0"
  11409. },
  11410. "type": "library",
  11411. "autoload": {
  11412. "psr-4": {
  11413. "Symfony\\Component\\Mime\\": ""
  11414. },
  11415. "exclude-from-classmap": [
  11416. "/Tests/"
  11417. ]
  11418. },
  11419. "notification-url": "https://packagist.org/downloads/",
  11420. "license": [
  11421. "MIT"
  11422. ],
  11423. "authors": [
  11424. {
  11425. "name": "Fabien Potencier",
  11426. "email": "fabien@symfony.com"
  11427. },
  11428. {
  11429. "name": "Symfony Community",
  11430. "homepage": "https://symfony.com/contributors"
  11431. }
  11432. ],
  11433. "description": "Allows manipulating MIME messages",
  11434. "homepage": "https://symfony.com",
  11435. "keywords": [
  11436. "mime",
  11437. "mime-type"
  11438. ],
  11439. "support": {
  11440. "source": "https://github.com/symfony/mime/tree/v5.1.11"
  11441. },
  11442. "funding": [
  11443. {
  11444. "url": "https://symfony.com/sponsor",
  11445. "type": "custom"
  11446. },
  11447. {
  11448. "url": "https://github.com/fabpot",
  11449. "type": "github"
  11450. },
  11451. {
  11452. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11453. "type": "tidelift"
  11454. }
  11455. ],
  11456. "time": "2021-01-27T10:01:46+00:00"
  11457. },
  11458. {
  11459. "name": "symfony/polyfill-ctype",
  11460. "version": "v1.20.0",
  11461. "source": {
  11462. "type": "git",
  11463. "url": "https://github.com/symfony/polyfill-ctype.git",
  11464. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
  11465. },
  11466. "dist": {
  11467. "type": "zip",
  11468. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  11469. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  11470. "shasum": ""
  11471. },
  11472. "require": {
  11473. "php": ">=7.1"
  11474. },
  11475. "suggest": {
  11476. "ext-ctype": "For best performance"
  11477. },
  11478. "type": "library",
  11479. "extra": {
  11480. "branch-alias": {
  11481. "dev-main": "1.20-dev"
  11482. },
  11483. "thanks": {
  11484. "name": "symfony/polyfill",
  11485. "url": "https://github.com/symfony/polyfill"
  11486. }
  11487. },
  11488. "autoload": {
  11489. "psr-4": {
  11490. "Symfony\\Polyfill\\Ctype\\": ""
  11491. },
  11492. "files": [
  11493. "bootstrap.php"
  11494. ]
  11495. },
  11496. "notification-url": "https://packagist.org/downloads/",
  11497. "license": [
  11498. "MIT"
  11499. ],
  11500. "authors": [
  11501. {
  11502. "name": "Gert de Pagter",
  11503. "email": "BackEndTea@gmail.com"
  11504. },
  11505. {
  11506. "name": "Symfony Community",
  11507. "homepage": "https://symfony.com/contributors"
  11508. }
  11509. ],
  11510. "description": "Symfony polyfill for ctype functions",
  11511. "homepage": "https://symfony.com",
  11512. "keywords": [
  11513. "compatibility",
  11514. "ctype",
  11515. "polyfill",
  11516. "portable"
  11517. ],
  11518. "support": {
  11519. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.20.0"
  11520. },
  11521. "funding": [
  11522. {
  11523. "url": "https://symfony.com/sponsor",
  11524. "type": "custom"
  11525. },
  11526. {
  11527. "url": "https://github.com/fabpot",
  11528. "type": "github"
  11529. },
  11530. {
  11531. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11532. "type": "tidelift"
  11533. }
  11534. ],
  11535. "time": "2020-10-23T14:02:19+00:00"
  11536. },
  11537. {
  11538. "name": "symfony/polyfill-iconv",
  11539. "version": "v1.20.0",
  11540. "source": {
  11541. "type": "git",
  11542. "url": "https://github.com/symfony/polyfill-iconv.git",
  11543. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024"
  11544. },
  11545. "dist": {
  11546. "type": "zip",
  11547. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c536646fdb4f29104dd26effc2fdcb9a5b085024",
  11548. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024",
  11549. "shasum": ""
  11550. },
  11551. "require": {
  11552. "php": ">=7.1"
  11553. },
  11554. "suggest": {
  11555. "ext-iconv": "For best performance"
  11556. },
  11557. "type": "library",
  11558. "extra": {
  11559. "branch-alias": {
  11560. "dev-main": "1.20-dev"
  11561. },
  11562. "thanks": {
  11563. "name": "symfony/polyfill",
  11564. "url": "https://github.com/symfony/polyfill"
  11565. }
  11566. },
  11567. "autoload": {
  11568. "psr-4": {
  11569. "Symfony\\Polyfill\\Iconv\\": ""
  11570. },
  11571. "files": [
  11572. "bootstrap.php"
  11573. ]
  11574. },
  11575. "notification-url": "https://packagist.org/downloads/",
  11576. "license": [
  11577. "MIT"
  11578. ],
  11579. "authors": [
  11580. {
  11581. "name": "Nicolas Grekas",
  11582. "email": "p@tchwork.com"
  11583. },
  11584. {
  11585. "name": "Symfony Community",
  11586. "homepage": "https://symfony.com/contributors"
  11587. }
  11588. ],
  11589. "description": "Symfony polyfill for the Iconv extension",
  11590. "homepage": "https://symfony.com",
  11591. "keywords": [
  11592. "compatibility",
  11593. "iconv",
  11594. "polyfill",
  11595. "portable",
  11596. "shim"
  11597. ],
  11598. "support": {
  11599. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.20.0"
  11600. },
  11601. "funding": [
  11602. {
  11603. "url": "https://symfony.com/sponsor",
  11604. "type": "custom"
  11605. },
  11606. {
  11607. "url": "https://github.com/fabpot",
  11608. "type": "github"
  11609. },
  11610. {
  11611. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11612. "type": "tidelift"
  11613. }
  11614. ],
  11615. "time": "2020-10-23T14:02:19+00:00"
  11616. },
  11617. {
  11618. "name": "symfony/polyfill-intl-idn",
  11619. "version": "v1.20.0",
  11620. "source": {
  11621. "type": "git",
  11622. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  11623. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117"
  11624. },
  11625. "dist": {
  11626. "type": "zip",
  11627. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117",
  11628. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117",
  11629. "shasum": ""
  11630. },
  11631. "require": {
  11632. "php": ">=7.1",
  11633. "symfony/polyfill-intl-normalizer": "^1.10",
  11634. "symfony/polyfill-php72": "^1.10"
  11635. },
  11636. "suggest": {
  11637. "ext-intl": "For best performance"
  11638. },
  11639. "type": "library",
  11640. "extra": {
  11641. "branch-alias": {
  11642. "dev-main": "1.20-dev"
  11643. },
  11644. "thanks": {
  11645. "name": "symfony/polyfill",
  11646. "url": "https://github.com/symfony/polyfill"
  11647. }
  11648. },
  11649. "autoload": {
  11650. "psr-4": {
  11651. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  11652. },
  11653. "files": [
  11654. "bootstrap.php"
  11655. ]
  11656. },
  11657. "notification-url": "https://packagist.org/downloads/",
  11658. "license": [
  11659. "MIT"
  11660. ],
  11661. "authors": [
  11662. {
  11663. "name": "Laurent Bassin",
  11664. "email": "laurent@bassin.info"
  11665. },
  11666. {
  11667. "name": "Trevor Rowbotham",
  11668. "email": "trevor.rowbotham@pm.me"
  11669. },
  11670. {
  11671. "name": "Symfony Community",
  11672. "homepage": "https://symfony.com/contributors"
  11673. }
  11674. ],
  11675. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  11676. "homepage": "https://symfony.com",
  11677. "keywords": [
  11678. "compatibility",
  11679. "idn",
  11680. "intl",
  11681. "polyfill",
  11682. "portable",
  11683. "shim"
  11684. ],
  11685. "support": {
  11686. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.20.0"
  11687. },
  11688. "funding": [
  11689. {
  11690. "url": "https://symfony.com/sponsor",
  11691. "type": "custom"
  11692. },
  11693. {
  11694. "url": "https://github.com/fabpot",
  11695. "type": "github"
  11696. },
  11697. {
  11698. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11699. "type": "tidelift"
  11700. }
  11701. ],
  11702. "time": "2020-10-23T14:02:19+00:00"
  11703. },
  11704. {
  11705. "name": "symfony/polyfill-intl-normalizer",
  11706. "version": "v1.20.0",
  11707. "source": {
  11708. "type": "git",
  11709. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  11710. "reference": "727d1096295d807c309fb01a851577302394c897"
  11711. },
  11712. "dist": {
  11713. "type": "zip",
  11714. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897",
  11715. "reference": "727d1096295d807c309fb01a851577302394c897",
  11716. "shasum": ""
  11717. },
  11718. "require": {
  11719. "php": ">=7.1"
  11720. },
  11721. "suggest": {
  11722. "ext-intl": "For best performance"
  11723. },
  11724. "type": "library",
  11725. "extra": {
  11726. "branch-alias": {
  11727. "dev-main": "1.20-dev"
  11728. },
  11729. "thanks": {
  11730. "name": "symfony/polyfill",
  11731. "url": "https://github.com/symfony/polyfill"
  11732. }
  11733. },
  11734. "autoload": {
  11735. "psr-4": {
  11736. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  11737. },
  11738. "files": [
  11739. "bootstrap.php"
  11740. ],
  11741. "classmap": [
  11742. "Resources/stubs"
  11743. ]
  11744. },
  11745. "notification-url": "https://packagist.org/downloads/",
  11746. "license": [
  11747. "MIT"
  11748. ],
  11749. "authors": [
  11750. {
  11751. "name": "Nicolas Grekas",
  11752. "email": "p@tchwork.com"
  11753. },
  11754. {
  11755. "name": "Symfony Community",
  11756. "homepage": "https://symfony.com/contributors"
  11757. }
  11758. ],
  11759. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  11760. "homepage": "https://symfony.com",
  11761. "keywords": [
  11762. "compatibility",
  11763. "intl",
  11764. "normalizer",
  11765. "polyfill",
  11766. "portable",
  11767. "shim"
  11768. ],
  11769. "support": {
  11770. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.20.0"
  11771. },
  11772. "funding": [
  11773. {
  11774. "url": "https://symfony.com/sponsor",
  11775. "type": "custom"
  11776. },
  11777. {
  11778. "url": "https://github.com/fabpot",
  11779. "type": "github"
  11780. },
  11781. {
  11782. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11783. "type": "tidelift"
  11784. }
  11785. ],
  11786. "time": "2020-10-23T14:02:19+00:00"
  11787. },
  11788. {
  11789. "name": "symfony/polyfill-mbstring",
  11790. "version": "v1.20.0",
  11791. "source": {
  11792. "type": "git",
  11793. "url": "https://github.com/symfony/polyfill-mbstring.git",
  11794. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
  11795. },
  11796. "dist": {
  11797. "type": "zip",
  11798. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
  11799. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
  11800. "shasum": ""
  11801. },
  11802. "require": {
  11803. "php": ">=7.1"
  11804. },
  11805. "suggest": {
  11806. "ext-mbstring": "For best performance"
  11807. },
  11808. "type": "library",
  11809. "extra": {
  11810. "branch-alias": {
  11811. "dev-main": "1.20-dev"
  11812. },
  11813. "thanks": {
  11814. "name": "symfony/polyfill",
  11815. "url": "https://github.com/symfony/polyfill"
  11816. }
  11817. },
  11818. "autoload": {
  11819. "psr-4": {
  11820. "Symfony\\Polyfill\\Mbstring\\": ""
  11821. },
  11822. "files": [
  11823. "bootstrap.php"
  11824. ]
  11825. },
  11826. "notification-url": "https://packagist.org/downloads/",
  11827. "license": [
  11828. "MIT"
  11829. ],
  11830. "authors": [
  11831. {
  11832. "name": "Nicolas Grekas",
  11833. "email": "p@tchwork.com"
  11834. },
  11835. {
  11836. "name": "Symfony Community",
  11837. "homepage": "https://symfony.com/contributors"
  11838. }
  11839. ],
  11840. "description": "Symfony polyfill for the Mbstring extension",
  11841. "homepage": "https://symfony.com",
  11842. "keywords": [
  11843. "compatibility",
  11844. "mbstring",
  11845. "polyfill",
  11846. "portable",
  11847. "shim"
  11848. ],
  11849. "support": {
  11850. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.20.0"
  11851. },
  11852. "funding": [
  11853. {
  11854. "url": "https://symfony.com/sponsor",
  11855. "type": "custom"
  11856. },
  11857. {
  11858. "url": "https://github.com/fabpot",
  11859. "type": "github"
  11860. },
  11861. {
  11862. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11863. "type": "tidelift"
  11864. }
  11865. ],
  11866. "time": "2020-10-23T14:02:19+00:00"
  11867. },
  11868. {
  11869. "name": "symfony/polyfill-php72",
  11870. "version": "v1.23.0",
  11871. "source": {
  11872. "type": "git",
  11873. "url": "https://github.com/symfony/polyfill-php72.git",
  11874. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  11875. },
  11876. "dist": {
  11877. "type": "zip",
  11878. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  11879. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  11880. "shasum": ""
  11881. },
  11882. "require": {
  11883. "php": ">=7.1"
  11884. },
  11885. "type": "library",
  11886. "extra": {
  11887. "branch-alias": {
  11888. "dev-main": "1.23-dev"
  11889. },
  11890. "thanks": {
  11891. "name": "symfony/polyfill",
  11892. "url": "https://github.com/symfony/polyfill"
  11893. }
  11894. },
  11895. "autoload": {
  11896. "psr-4": {
  11897. "Symfony\\Polyfill\\Php72\\": ""
  11898. },
  11899. "files": [
  11900. "bootstrap.php"
  11901. ]
  11902. },
  11903. "notification-url": "https://packagist.org/downloads/",
  11904. "license": [
  11905. "MIT"
  11906. ],
  11907. "authors": [
  11908. {
  11909. "name": "Nicolas Grekas",
  11910. "email": "p@tchwork.com"
  11911. },
  11912. {
  11913. "name": "Symfony Community",
  11914. "homepage": "https://symfony.com/contributors"
  11915. }
  11916. ],
  11917. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  11918. "homepage": "https://symfony.com",
  11919. "keywords": [
  11920. "compatibility",
  11921. "polyfill",
  11922. "portable",
  11923. "shim"
  11924. ],
  11925. "support": {
  11926. "source": "https://github.com/symfony/polyfill-php72/tree/v1.23.0"
  11927. },
  11928. "funding": [
  11929. {
  11930. "url": "https://symfony.com/sponsor",
  11931. "type": "custom"
  11932. },
  11933. {
  11934. "url": "https://github.com/fabpot",
  11935. "type": "github"
  11936. },
  11937. {
  11938. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11939. "type": "tidelift"
  11940. }
  11941. ],
  11942. "time": "2021-05-27T09:17:38+00:00"
  11943. },
  11944. {
  11945. "name": "symfony/polyfill-php73",
  11946. "version": "v1.23.0",
  11947. "source": {
  11948. "type": "git",
  11949. "url": "https://github.com/symfony/polyfill-php73.git",
  11950. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010"
  11951. },
  11952. "dist": {
  11953. "type": "zip",
  11954. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010",
  11955. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010",
  11956. "shasum": ""
  11957. },
  11958. "require": {
  11959. "php": ">=7.1"
  11960. },
  11961. "type": "library",
  11962. "extra": {
  11963. "branch-alias": {
  11964. "dev-main": "1.23-dev"
  11965. },
  11966. "thanks": {
  11967. "name": "symfony/polyfill",
  11968. "url": "https://github.com/symfony/polyfill"
  11969. }
  11970. },
  11971. "autoload": {
  11972. "psr-4": {
  11973. "Symfony\\Polyfill\\Php73\\": ""
  11974. },
  11975. "files": [
  11976. "bootstrap.php"
  11977. ],
  11978. "classmap": [
  11979. "Resources/stubs"
  11980. ]
  11981. },
  11982. "notification-url": "https://packagist.org/downloads/",
  11983. "license": [
  11984. "MIT"
  11985. ],
  11986. "authors": [
  11987. {
  11988. "name": "Nicolas Grekas",
  11989. "email": "p@tchwork.com"
  11990. },
  11991. {
  11992. "name": "Symfony Community",
  11993. "homepage": "https://symfony.com/contributors"
  11994. }
  11995. ],
  11996. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  11997. "homepage": "https://symfony.com",
  11998. "keywords": [
  11999. "compatibility",
  12000. "polyfill",
  12001. "portable",
  12002. "shim"
  12003. ],
  12004. "support": {
  12005. "source": "https://github.com/symfony/polyfill-php73/tree/v1.23.0"
  12006. },
  12007. "funding": [
  12008. {
  12009. "url": "https://symfony.com/sponsor",
  12010. "type": "custom"
  12011. },
  12012. {
  12013. "url": "https://github.com/fabpot",
  12014. "type": "github"
  12015. },
  12016. {
  12017. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12018. "type": "tidelift"
  12019. }
  12020. ],
  12021. "time": "2021-02-19T12:13:01+00:00"
  12022. },
  12023. {
  12024. "name": "symfony/polyfill-php80",
  12025. "version": "v1.20.0",
  12026. "source": {
  12027. "type": "git",
  12028. "url": "https://github.com/symfony/polyfill-php80.git",
  12029. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de"
  12030. },
  12031. "dist": {
  12032. "type": "zip",
  12033. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  12034. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  12035. "shasum": ""
  12036. },
  12037. "require": {
  12038. "php": ">=7.1"
  12039. },
  12040. "type": "library",
  12041. "extra": {
  12042. "branch-alias": {
  12043. "dev-main": "1.20-dev"
  12044. },
  12045. "thanks": {
  12046. "name": "symfony/polyfill",
  12047. "url": "https://github.com/symfony/polyfill"
  12048. }
  12049. },
  12050. "autoload": {
  12051. "psr-4": {
  12052. "Symfony\\Polyfill\\Php80\\": ""
  12053. },
  12054. "files": [
  12055. "bootstrap.php"
  12056. ],
  12057. "classmap": [
  12058. "Resources/stubs"
  12059. ]
  12060. },
  12061. "notification-url": "https://packagist.org/downloads/",
  12062. "license": [
  12063. "MIT"
  12064. ],
  12065. "authors": [
  12066. {
  12067. "name": "Ion Bazan",
  12068. "email": "ion.bazan@gmail.com"
  12069. },
  12070. {
  12071. "name": "Nicolas Grekas",
  12072. "email": "p@tchwork.com"
  12073. },
  12074. {
  12075. "name": "Symfony Community",
  12076. "homepage": "https://symfony.com/contributors"
  12077. }
  12078. ],
  12079. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  12080. "homepage": "https://symfony.com",
  12081. "keywords": [
  12082. "compatibility",
  12083. "polyfill",
  12084. "portable",
  12085. "shim"
  12086. ],
  12087. "support": {
  12088. "source": "https://github.com/symfony/polyfill-php80/tree/v1.20.0"
  12089. },
  12090. "funding": [
  12091. {
  12092. "url": "https://symfony.com/sponsor",
  12093. "type": "custom"
  12094. },
  12095. {
  12096. "url": "https://github.com/fabpot",
  12097. "type": "github"
  12098. },
  12099. {
  12100. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12101. "type": "tidelift"
  12102. }
  12103. ],
  12104. "time": "2020-10-23T14:02:19+00:00"
  12105. },
  12106. {
  12107. "name": "symfony/process",
  12108. "version": "v4.4.19",
  12109. "source": {
  12110. "type": "git",
  12111. "url": "https://github.com/symfony/process.git",
  12112. "reference": "7e950b6366d4da90292c2e7fa820b3c1842b965a"
  12113. },
  12114. "dist": {
  12115. "type": "zip",
  12116. "url": "https://api.github.com/repos/symfony/process/zipball/7e950b6366d4da90292c2e7fa820b3c1842b965a",
  12117. "reference": "7e950b6366d4da90292c2e7fa820b3c1842b965a",
  12118. "shasum": ""
  12119. },
  12120. "require": {
  12121. "php": ">=7.1.3"
  12122. },
  12123. "type": "library",
  12124. "autoload": {
  12125. "psr-4": {
  12126. "Symfony\\Component\\Process\\": ""
  12127. },
  12128. "exclude-from-classmap": [
  12129. "/Tests/"
  12130. ]
  12131. },
  12132. "notification-url": "https://packagist.org/downloads/",
  12133. "license": [
  12134. "MIT"
  12135. ],
  12136. "authors": [
  12137. {
  12138. "name": "Fabien Potencier",
  12139. "email": "fabien@symfony.com"
  12140. },
  12141. {
  12142. "name": "Symfony Community",
  12143. "homepage": "https://symfony.com/contributors"
  12144. }
  12145. ],
  12146. "description": "Executes commands in sub-processes",
  12147. "homepage": "https://symfony.com",
  12148. "support": {
  12149. "source": "https://github.com/symfony/process/tree/v4.4.19"
  12150. },
  12151. "funding": [
  12152. {
  12153. "url": "https://symfony.com/sponsor",
  12154. "type": "custom"
  12155. },
  12156. {
  12157. "url": "https://github.com/fabpot",
  12158. "type": "github"
  12159. },
  12160. {
  12161. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12162. "type": "tidelift"
  12163. }
  12164. ],
  12165. "time": "2021-01-27T09:09:26+00:00"
  12166. },
  12167. {
  12168. "name": "symfony/psr-http-message-bridge",
  12169. "version": "v2.0.2",
  12170. "source": {
  12171. "type": "git",
  12172. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  12173. "reference": "51a21cb3ba3927d4b4bf8f25cc55763351af5f2e"
  12174. },
  12175. "dist": {
  12176. "type": "zip",
  12177. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/51a21cb3ba3927d4b4bf8f25cc55763351af5f2e",
  12178. "reference": "51a21cb3ba3927d4b4bf8f25cc55763351af5f2e",
  12179. "shasum": ""
  12180. },
  12181. "require": {
  12182. "php": ">=7.1",
  12183. "psr/http-message": "^1.0",
  12184. "symfony/http-foundation": "^4.4 || ^5.0"
  12185. },
  12186. "require-dev": {
  12187. "nyholm/psr7": "^1.1",
  12188. "symfony/phpunit-bridge": "^4.4 || ^5.0"
  12189. },
  12190. "suggest": {
  12191. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  12192. },
  12193. "type": "symfony-bridge",
  12194. "extra": {
  12195. "branch-alias": {
  12196. "dev-master": "2.0-dev"
  12197. }
  12198. },
  12199. "autoload": {
  12200. "psr-4": {
  12201. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  12202. },
  12203. "exclude-from-classmap": [
  12204. "/Tests/"
  12205. ]
  12206. },
  12207. "notification-url": "https://packagist.org/downloads/",
  12208. "license": [
  12209. "MIT"
  12210. ],
  12211. "authors": [
  12212. {
  12213. "name": "Fabien Potencier",
  12214. "email": "fabien@symfony.com"
  12215. },
  12216. {
  12217. "name": "Symfony Community",
  12218. "homepage": "http://symfony.com/contributors"
  12219. }
  12220. ],
  12221. "description": "PSR HTTP message bridge",
  12222. "homepage": "http://symfony.com",
  12223. "keywords": [
  12224. "http",
  12225. "http-message",
  12226. "psr-17",
  12227. "psr-7"
  12228. ],
  12229. "support": {
  12230. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  12231. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.0.2"
  12232. },
  12233. "funding": [
  12234. {
  12235. "url": "https://symfony.com/sponsor",
  12236. "type": "custom"
  12237. },
  12238. {
  12239. "url": "https://github.com/fabpot",
  12240. "type": "github"
  12241. },
  12242. {
  12243. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12244. "type": "tidelift"
  12245. }
  12246. ],
  12247. "time": "2020-09-29T08:17:46+00:00"
  12248. },
  12249. {
  12250. "name": "symfony/routing",
  12251. "version": "v4.4.19",
  12252. "source": {
  12253. "type": "git",
  12254. "url": "https://github.com/symfony/routing.git",
  12255. "reference": "87529f6e305c7acb162840d1ea57922038072425"
  12256. },
  12257. "dist": {
  12258. "type": "zip",
  12259. "url": "https://api.github.com/repos/symfony/routing/zipball/87529f6e305c7acb162840d1ea57922038072425",
  12260. "reference": "87529f6e305c7acb162840d1ea57922038072425",
  12261. "shasum": ""
  12262. },
  12263. "require": {
  12264. "php": ">=7.1.3"
  12265. },
  12266. "conflict": {
  12267. "symfony/config": "<4.2",
  12268. "symfony/dependency-injection": "<3.4",
  12269. "symfony/yaml": "<3.4"
  12270. },
  12271. "require-dev": {
  12272. "doctrine/annotations": "^1.10.4",
  12273. "psr/log": "~1.0",
  12274. "symfony/config": "^4.2|^5.0",
  12275. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  12276. "symfony/expression-language": "^3.4|^4.0|^5.0",
  12277. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  12278. "symfony/yaml": "^3.4|^4.0|^5.0"
  12279. },
  12280. "suggest": {
  12281. "doctrine/annotations": "For using the annotation loader",
  12282. "symfony/config": "For using the all-in-one router or any loader",
  12283. "symfony/expression-language": "For using expression matching",
  12284. "symfony/http-foundation": "For using a Symfony Request object",
  12285. "symfony/yaml": "For using the YAML loader"
  12286. },
  12287. "type": "library",
  12288. "autoload": {
  12289. "psr-4": {
  12290. "Symfony\\Component\\Routing\\": ""
  12291. },
  12292. "exclude-from-classmap": [
  12293. "/Tests/"
  12294. ]
  12295. },
  12296. "notification-url": "https://packagist.org/downloads/",
  12297. "license": [
  12298. "MIT"
  12299. ],
  12300. "authors": [
  12301. {
  12302. "name": "Fabien Potencier",
  12303. "email": "fabien@symfony.com"
  12304. },
  12305. {
  12306. "name": "Symfony Community",
  12307. "homepage": "https://symfony.com/contributors"
  12308. }
  12309. ],
  12310. "description": "Maps an HTTP request to a set of configuration variables",
  12311. "homepage": "https://symfony.com",
  12312. "keywords": [
  12313. "router",
  12314. "routing",
  12315. "uri",
  12316. "url"
  12317. ],
  12318. "support": {
  12319. "source": "https://github.com/symfony/routing/tree/v4.4.19"
  12320. },
  12321. "funding": [
  12322. {
  12323. "url": "https://symfony.com/sponsor",
  12324. "type": "custom"
  12325. },
  12326. {
  12327. "url": "https://github.com/fabpot",
  12328. "type": "github"
  12329. },
  12330. {
  12331. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12332. "type": "tidelift"
  12333. }
  12334. ],
  12335. "time": "2021-01-27T09:09:26+00:00"
  12336. },
  12337. {
  12338. "name": "symfony/serializer",
  12339. "version": "v4.4.19",
  12340. "source": {
  12341. "type": "git",
  12342. "url": "https://github.com/symfony/serializer.git",
  12343. "reference": "6b383bc45777d14857b634e9f8fa2b8a2e69b66d"
  12344. },
  12345. "dist": {
  12346. "type": "zip",
  12347. "url": "https://api.github.com/repos/symfony/serializer/zipball/6b383bc45777d14857b634e9f8fa2b8a2e69b66d",
  12348. "reference": "6b383bc45777d14857b634e9f8fa2b8a2e69b66d",
  12349. "shasum": ""
  12350. },
  12351. "require": {
  12352. "php": ">=7.1.3",
  12353. "symfony/polyfill-ctype": "~1.8"
  12354. },
  12355. "conflict": {
  12356. "phpdocumentor/reflection-docblock": "<3.0|>=3.2.0,<3.2.2",
  12357. "phpdocumentor/type-resolver": "<0.3.0|1.3.*",
  12358. "symfony/dependency-injection": "<3.4",
  12359. "symfony/property-access": "<3.4",
  12360. "symfony/property-info": "<3.4",
  12361. "symfony/yaml": "<3.4"
  12362. },
  12363. "require-dev": {
  12364. "doctrine/annotations": "^1.10.4",
  12365. "doctrine/cache": "~1.0",
  12366. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  12367. "symfony/cache": "^3.4|^4.0|^5.0",
  12368. "symfony/config": "^3.4|^4.0|^5.0",
  12369. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  12370. "symfony/error-handler": "^4.4|^5.0",
  12371. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  12372. "symfony/mime": "^4.4|^5.0",
  12373. "symfony/property-access": "^3.4.41|^4.4.9|^5.0.9",
  12374. "symfony/property-info": "^3.4.13|~4.0|^5.0",
  12375. "symfony/validator": "^3.4|^4.0|^5.0",
  12376. "symfony/yaml": "^3.4|^4.0|^5.0"
  12377. },
  12378. "suggest": {
  12379. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  12380. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  12381. "psr/cache-implementation": "For using the metadata cache.",
  12382. "symfony/config": "For using the XML mapping loader.",
  12383. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  12384. "symfony/property-access": "For using the ObjectNormalizer.",
  12385. "symfony/property-info": "To deserialize relations.",
  12386. "symfony/yaml": "For using the default YAML mapping loader."
  12387. },
  12388. "type": "library",
  12389. "autoload": {
  12390. "psr-4": {
  12391. "Symfony\\Component\\Serializer\\": ""
  12392. },
  12393. "exclude-from-classmap": [
  12394. "/Tests/"
  12395. ]
  12396. },
  12397. "notification-url": "https://packagist.org/downloads/",
  12398. "license": [
  12399. "MIT"
  12400. ],
  12401. "authors": [
  12402. {
  12403. "name": "Fabien Potencier",
  12404. "email": "fabien@symfony.com"
  12405. },
  12406. {
  12407. "name": "Symfony Community",
  12408. "homepage": "https://symfony.com/contributors"
  12409. }
  12410. ],
  12411. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  12412. "homepage": "https://symfony.com",
  12413. "support": {
  12414. "source": "https://github.com/symfony/serializer/tree/v4.4.19"
  12415. },
  12416. "funding": [
  12417. {
  12418. "url": "https://symfony.com/sponsor",
  12419. "type": "custom"
  12420. },
  12421. {
  12422. "url": "https://github.com/fabpot",
  12423. "type": "github"
  12424. },
  12425. {
  12426. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12427. "type": "tidelift"
  12428. }
  12429. ],
  12430. "time": "2021-01-27T09:09:26+00:00"
  12431. },
  12432. {
  12433. "name": "symfony/service-contracts",
  12434. "version": "v2.2.0",
  12435. "source": {
  12436. "type": "git",
  12437. "url": "https://github.com/symfony/service-contracts.git",
  12438. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  12439. },
  12440. "dist": {
  12441. "type": "zip",
  12442. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  12443. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  12444. "shasum": ""
  12445. },
  12446. "require": {
  12447. "php": ">=7.2.5",
  12448. "psr/container": "^1.0"
  12449. },
  12450. "suggest": {
  12451. "symfony/service-implementation": ""
  12452. },
  12453. "type": "library",
  12454. "extra": {
  12455. "branch-alias": {
  12456. "dev-master": "2.2-dev"
  12457. },
  12458. "thanks": {
  12459. "name": "symfony/contracts",
  12460. "url": "https://github.com/symfony/contracts"
  12461. }
  12462. },
  12463. "autoload": {
  12464. "psr-4": {
  12465. "Symfony\\Contracts\\Service\\": ""
  12466. }
  12467. },
  12468. "notification-url": "https://packagist.org/downloads/",
  12469. "license": [
  12470. "MIT"
  12471. ],
  12472. "authors": [
  12473. {
  12474. "name": "Nicolas Grekas",
  12475. "email": "p@tchwork.com"
  12476. },
  12477. {
  12478. "name": "Symfony Community",
  12479. "homepage": "https://symfony.com/contributors"
  12480. }
  12481. ],
  12482. "description": "Generic abstractions related to writing services",
  12483. "homepage": "https://symfony.com",
  12484. "keywords": [
  12485. "abstractions",
  12486. "contracts",
  12487. "decoupling",
  12488. "interfaces",
  12489. "interoperability",
  12490. "standards"
  12491. ],
  12492. "support": {
  12493. "source": "https://github.com/symfony/service-contracts/tree/master"
  12494. },
  12495. "funding": [
  12496. {
  12497. "url": "https://symfony.com/sponsor",
  12498. "type": "custom"
  12499. },
  12500. {
  12501. "url": "https://github.com/fabpot",
  12502. "type": "github"
  12503. },
  12504. {
  12505. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12506. "type": "tidelift"
  12507. }
  12508. ],
  12509. "time": "2020-09-07T11:33:47+00:00"
  12510. },
  12511. {
  12512. "name": "symfony/translation",
  12513. "version": "v4.4.19",
  12514. "source": {
  12515. "type": "git",
  12516. "url": "https://github.com/symfony/translation.git",
  12517. "reference": "e1d0c67167a553556d9f974b5fa79c2448df317a"
  12518. },
  12519. "dist": {
  12520. "type": "zip",
  12521. "url": "https://api.github.com/repos/symfony/translation/zipball/e1d0c67167a553556d9f974b5fa79c2448df317a",
  12522. "reference": "e1d0c67167a553556d9f974b5fa79c2448df317a",
  12523. "shasum": ""
  12524. },
  12525. "require": {
  12526. "php": ">=7.1.3",
  12527. "symfony/polyfill-mbstring": "~1.0",
  12528. "symfony/translation-contracts": "^1.1.6|^2"
  12529. },
  12530. "conflict": {
  12531. "symfony/config": "<3.4",
  12532. "symfony/dependency-injection": "<3.4",
  12533. "symfony/http-kernel": "<4.4",
  12534. "symfony/yaml": "<3.4"
  12535. },
  12536. "provide": {
  12537. "symfony/translation-implementation": "1.0"
  12538. },
  12539. "require-dev": {
  12540. "psr/log": "~1.0",
  12541. "symfony/config": "^3.4|^4.0|^5.0",
  12542. "symfony/console": "^3.4|^4.0|^5.0",
  12543. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  12544. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  12545. "symfony/http-kernel": "^4.4",
  12546. "symfony/intl": "^3.4|^4.0|^5.0",
  12547. "symfony/service-contracts": "^1.1.2|^2",
  12548. "symfony/yaml": "^3.4|^4.0|^5.0"
  12549. },
  12550. "suggest": {
  12551. "psr/log-implementation": "To use logging capability in translator",
  12552. "symfony/config": "",
  12553. "symfony/yaml": ""
  12554. },
  12555. "type": "library",
  12556. "autoload": {
  12557. "psr-4": {
  12558. "Symfony\\Component\\Translation\\": ""
  12559. },
  12560. "exclude-from-classmap": [
  12561. "/Tests/"
  12562. ]
  12563. },
  12564. "notification-url": "https://packagist.org/downloads/",
  12565. "license": [
  12566. "MIT"
  12567. ],
  12568. "authors": [
  12569. {
  12570. "name": "Fabien Potencier",
  12571. "email": "fabien@symfony.com"
  12572. },
  12573. {
  12574. "name": "Symfony Community",
  12575. "homepage": "https://symfony.com/contributors"
  12576. }
  12577. ],
  12578. "description": "Provides tools to internationalize your application",
  12579. "homepage": "https://symfony.com",
  12580. "support": {
  12581. "source": "https://github.com/symfony/translation/tree/v4.4.19"
  12582. },
  12583. "funding": [
  12584. {
  12585. "url": "https://symfony.com/sponsor",
  12586. "type": "custom"
  12587. },
  12588. {
  12589. "url": "https://github.com/fabpot",
  12590. "type": "github"
  12591. },
  12592. {
  12593. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12594. "type": "tidelift"
  12595. }
  12596. ],
  12597. "time": "2021-01-27T09:09:26+00:00"
  12598. },
  12599. {
  12600. "name": "symfony/translation-contracts",
  12601. "version": "v2.3.0",
  12602. "source": {
  12603. "type": "git",
  12604. "url": "https://github.com/symfony/translation-contracts.git",
  12605. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  12606. },
  12607. "dist": {
  12608. "type": "zip",
  12609. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  12610. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  12611. "shasum": ""
  12612. },
  12613. "require": {
  12614. "php": ">=7.2.5"
  12615. },
  12616. "suggest": {
  12617. "symfony/translation-implementation": ""
  12618. },
  12619. "type": "library",
  12620. "extra": {
  12621. "branch-alias": {
  12622. "dev-master": "2.3-dev"
  12623. },
  12624. "thanks": {
  12625. "name": "symfony/contracts",
  12626. "url": "https://github.com/symfony/contracts"
  12627. }
  12628. },
  12629. "autoload": {
  12630. "psr-4": {
  12631. "Symfony\\Contracts\\Translation\\": ""
  12632. }
  12633. },
  12634. "notification-url": "https://packagist.org/downloads/",
  12635. "license": [
  12636. "MIT"
  12637. ],
  12638. "authors": [
  12639. {
  12640. "name": "Nicolas Grekas",
  12641. "email": "p@tchwork.com"
  12642. },
  12643. {
  12644. "name": "Symfony Community",
  12645. "homepage": "https://symfony.com/contributors"
  12646. }
  12647. ],
  12648. "description": "Generic abstractions related to translation",
  12649. "homepage": "https://symfony.com",
  12650. "keywords": [
  12651. "abstractions",
  12652. "contracts",
  12653. "decoupling",
  12654. "interfaces",
  12655. "interoperability",
  12656. "standards"
  12657. ],
  12658. "support": {
  12659. "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0"
  12660. },
  12661. "funding": [
  12662. {
  12663. "url": "https://symfony.com/sponsor",
  12664. "type": "custom"
  12665. },
  12666. {
  12667. "url": "https://github.com/fabpot",
  12668. "type": "github"
  12669. },
  12670. {
  12671. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12672. "type": "tidelift"
  12673. }
  12674. ],
  12675. "time": "2020-09-28T13:05:58+00:00"
  12676. },
  12677. {
  12678. "name": "symfony/validator",
  12679. "version": "v4.4.19",
  12680. "source": {
  12681. "type": "git",
  12682. "url": "https://github.com/symfony/validator.git",
  12683. "reference": "039479123c8d824f23efba9bb413b85dc3f42e43"
  12684. },
  12685. "dist": {
  12686. "type": "zip",
  12687. "url": "https://api.github.com/repos/symfony/validator/zipball/039479123c8d824f23efba9bb413b85dc3f42e43",
  12688. "reference": "039479123c8d824f23efba9bb413b85dc3f42e43",
  12689. "shasum": ""
  12690. },
  12691. "require": {
  12692. "php": ">=7.1.3",
  12693. "symfony/polyfill-ctype": "~1.8",
  12694. "symfony/polyfill-mbstring": "~1.0",
  12695. "symfony/translation-contracts": "^1.1|^2"
  12696. },
  12697. "conflict": {
  12698. "doctrine/lexer": "<1.0.2",
  12699. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  12700. "symfony/dependency-injection": "<3.4",
  12701. "symfony/http-kernel": "<4.4",
  12702. "symfony/intl": "<4.3",
  12703. "symfony/translation": ">=5.0",
  12704. "symfony/yaml": "<3.4"
  12705. },
  12706. "require-dev": {
  12707. "doctrine/annotations": "^1.10.4",
  12708. "doctrine/cache": "~1.0",
  12709. "egulias/email-validator": "^2.1.10",
  12710. "symfony/cache": "^3.4|^4.0|^5.0",
  12711. "symfony/config": "^3.4|^4.0|^5.0",
  12712. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  12713. "symfony/expression-language": "^3.4|^4.0|^5.0",
  12714. "symfony/http-client": "^4.3|^5.0",
  12715. "symfony/http-foundation": "^4.1|^5.0",
  12716. "symfony/http-kernel": "^4.4",
  12717. "symfony/intl": "^4.3|^5.0",
  12718. "symfony/mime": "^4.4|^5.0",
  12719. "symfony/property-access": "^3.4|^4.0|^5.0",
  12720. "symfony/property-info": "^3.4|^4.0|^5.0",
  12721. "symfony/translation": "^4.2",
  12722. "symfony/yaml": "^3.4|^4.0|^5.0"
  12723. },
  12724. "suggest": {
  12725. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  12726. "doctrine/cache": "For using the default cached annotation reader.",
  12727. "egulias/email-validator": "Strict (RFC compliant) email validation",
  12728. "psr/cache-implementation": "For using the mapping cache.",
  12729. "symfony/config": "",
  12730. "symfony/expression-language": "For using the Expression validator",
  12731. "symfony/http-foundation": "",
  12732. "symfony/intl": "",
  12733. "symfony/property-access": "For accessing properties within comparison constraints",
  12734. "symfony/property-info": "To automatically add NotNull and Type constraints",
  12735. "symfony/translation": "For translating validation errors.",
  12736. "symfony/yaml": ""
  12737. },
  12738. "type": "library",
  12739. "autoload": {
  12740. "psr-4": {
  12741. "Symfony\\Component\\Validator\\": ""
  12742. },
  12743. "exclude-from-classmap": [
  12744. "/Tests/"
  12745. ]
  12746. },
  12747. "notification-url": "https://packagist.org/downloads/",
  12748. "license": [
  12749. "MIT"
  12750. ],
  12751. "authors": [
  12752. {
  12753. "name": "Fabien Potencier",
  12754. "email": "fabien@symfony.com"
  12755. },
  12756. {
  12757. "name": "Symfony Community",
  12758. "homepage": "https://symfony.com/contributors"
  12759. }
  12760. ],
  12761. "description": "Provides tools to validate values",
  12762. "homepage": "https://symfony.com",
  12763. "support": {
  12764. "source": "https://github.com/symfony/validator/tree/v4.4.19"
  12765. },
  12766. "funding": [
  12767. {
  12768. "url": "https://symfony.com/sponsor",
  12769. "type": "custom"
  12770. },
  12771. {
  12772. "url": "https://github.com/fabpot",
  12773. "type": "github"
  12774. },
  12775. {
  12776. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12777. "type": "tidelift"
  12778. }
  12779. ],
  12780. "time": "2021-01-27T09:09:26+00:00"
  12781. },
  12782. {
  12783. "name": "symfony/var-dumper",
  12784. "version": "v5.1.11",
  12785. "source": {
  12786. "type": "git",
  12787. "url": "https://github.com/symfony/var-dumper.git",
  12788. "reference": "cee600a1248b423330375c869812bdd61a085cd0"
  12789. },
  12790. "dist": {
  12791. "type": "zip",
  12792. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/cee600a1248b423330375c869812bdd61a085cd0",
  12793. "reference": "cee600a1248b423330375c869812bdd61a085cd0",
  12794. "shasum": ""
  12795. },
  12796. "require": {
  12797. "php": ">=7.2.5",
  12798. "symfony/polyfill-mbstring": "~1.0",
  12799. "symfony/polyfill-php80": "^1.15"
  12800. },
  12801. "conflict": {
  12802. "phpunit/phpunit": "<5.4.3",
  12803. "symfony/console": "<4.4"
  12804. },
  12805. "require-dev": {
  12806. "ext-iconv": "*",
  12807. "symfony/console": "^4.4|^5.0",
  12808. "symfony/process": "^4.4|^5.0",
  12809. "twig/twig": "^2.13|^3.0.4"
  12810. },
  12811. "suggest": {
  12812. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  12813. "ext-intl": "To show region name in time zone dump",
  12814. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  12815. },
  12816. "bin": [
  12817. "Resources/bin/var-dump-server"
  12818. ],
  12819. "type": "library",
  12820. "autoload": {
  12821. "files": [
  12822. "Resources/functions/dump.php"
  12823. ],
  12824. "psr-4": {
  12825. "Symfony\\Component\\VarDumper\\": ""
  12826. },
  12827. "exclude-from-classmap": [
  12828. "/Tests/"
  12829. ]
  12830. },
  12831. "notification-url": "https://packagist.org/downloads/",
  12832. "license": [
  12833. "MIT"
  12834. ],
  12835. "authors": [
  12836. {
  12837. "name": "Nicolas Grekas",
  12838. "email": "p@tchwork.com"
  12839. },
  12840. {
  12841. "name": "Symfony Community",
  12842. "homepage": "https://symfony.com/contributors"
  12843. }
  12844. ],
  12845. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  12846. "homepage": "https://symfony.com",
  12847. "keywords": [
  12848. "debug",
  12849. "dump"
  12850. ],
  12851. "support": {
  12852. "source": "https://github.com/symfony/var-dumper/tree/v5.1.11"
  12853. },
  12854. "funding": [
  12855. {
  12856. "url": "https://symfony.com/sponsor",
  12857. "type": "custom"
  12858. },
  12859. {
  12860. "url": "https://github.com/fabpot",
  12861. "type": "github"
  12862. },
  12863. {
  12864. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12865. "type": "tidelift"
  12866. }
  12867. ],
  12868. "time": "2021-01-27T10:01:46+00:00"
  12869. },
  12870. {
  12871. "name": "symfony/yaml",
  12872. "version": "v4.4.19",
  12873. "source": {
  12874. "type": "git",
  12875. "url": "https://github.com/symfony/yaml.git",
  12876. "reference": "17ed9f14c1aa05b1a5cf2e2c5ef2d0be28058ef9"
  12877. },
  12878. "dist": {
  12879. "type": "zip",
  12880. "url": "https://api.github.com/repos/symfony/yaml/zipball/17ed9f14c1aa05b1a5cf2e2c5ef2d0be28058ef9",
  12881. "reference": "17ed9f14c1aa05b1a5cf2e2c5ef2d0be28058ef9",
  12882. "shasum": ""
  12883. },
  12884. "require": {
  12885. "php": ">=7.1.3",
  12886. "symfony/polyfill-ctype": "~1.8"
  12887. },
  12888. "conflict": {
  12889. "symfony/console": "<3.4"
  12890. },
  12891. "require-dev": {
  12892. "symfony/console": "^3.4|^4.0|^5.0"
  12893. },
  12894. "suggest": {
  12895. "symfony/console": "For validating YAML files using the lint command"
  12896. },
  12897. "type": "library",
  12898. "autoload": {
  12899. "psr-4": {
  12900. "Symfony\\Component\\Yaml\\": ""
  12901. },
  12902. "exclude-from-classmap": [
  12903. "/Tests/"
  12904. ]
  12905. },
  12906. "notification-url": "https://packagist.org/downloads/",
  12907. "license": [
  12908. "MIT"
  12909. ],
  12910. "authors": [
  12911. {
  12912. "name": "Fabien Potencier",
  12913. "email": "fabien@symfony.com"
  12914. },
  12915. {
  12916. "name": "Symfony Community",
  12917. "homepage": "https://symfony.com/contributors"
  12918. }
  12919. ],
  12920. "description": "Loads and dumps YAML files",
  12921. "homepage": "https://symfony.com",
  12922. "support": {
  12923. "source": "https://github.com/symfony/yaml/tree/v4.4.19"
  12924. },
  12925. "funding": [
  12926. {
  12927. "url": "https://symfony.com/sponsor",
  12928. "type": "custom"
  12929. },
  12930. {
  12931. "url": "https://github.com/fabpot",
  12932. "type": "github"
  12933. },
  12934. {
  12935. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12936. "type": "tidelift"
  12937. }
  12938. ],
  12939. "time": "2021-01-27T09:09:26+00:00"
  12940. },
  12941. {
  12942. "name": "twig/twig",
  12943. "version": "v2.14.1",
  12944. "source": {
  12945. "type": "git",
  12946. "url": "https://github.com/twigphp/Twig.git",
  12947. "reference": "5eb9ac5dfdd20c3f59495c22841adc5da980d312"
  12948. },
  12949. "dist": {
  12950. "type": "zip",
  12951. "url": "https://api.github.com/repos/twigphp/Twig/zipball/5eb9ac5dfdd20c3f59495c22841adc5da980d312",
  12952. "reference": "5eb9ac5dfdd20c3f59495c22841adc5da980d312",
  12953. "shasum": ""
  12954. },
  12955. "require": {
  12956. "php": ">=7.2.5",
  12957. "symfony/polyfill-ctype": "^1.8",
  12958. "symfony/polyfill-mbstring": "^1.3"
  12959. },
  12960. "require-dev": {
  12961. "psr/container": "^1.0",
  12962. "symfony/phpunit-bridge": "^4.4.9|^5.0.9"
  12963. },
  12964. "type": "library",
  12965. "extra": {
  12966. "branch-alias": {
  12967. "dev-master": "2.14-dev"
  12968. }
  12969. },
  12970. "autoload": {
  12971. "psr-0": {
  12972. "Twig_": "lib/"
  12973. },
  12974. "psr-4": {
  12975. "Twig\\": "src/"
  12976. }
  12977. },
  12978. "notification-url": "https://packagist.org/downloads/",
  12979. "license": [
  12980. "BSD-3-Clause"
  12981. ],
  12982. "authors": [
  12983. {
  12984. "name": "Fabien Potencier",
  12985. "email": "fabien@symfony.com",
  12986. "homepage": "http://fabien.potencier.org",
  12987. "role": "Lead Developer"
  12988. },
  12989. {
  12990. "name": "Twig Team",
  12991. "role": "Contributors"
  12992. },
  12993. {
  12994. "name": "Armin Ronacher",
  12995. "email": "armin.ronacher@active-4.com",
  12996. "role": "Project Founder"
  12997. }
  12998. ],
  12999. "description": "Twig, the flexible, fast, and secure template language for PHP",
  13000. "homepage": "https://twig.symfony.com",
  13001. "keywords": [
  13002. "templating"
  13003. ],
  13004. "support": {
  13005. "issues": "https://github.com/twigphp/Twig/issues",
  13006. "source": "https://github.com/twigphp/Twig/tree/v2.14.1"
  13007. },
  13008. "funding": [
  13009. {
  13010. "url": "https://github.com/fabpot",
  13011. "type": "github"
  13012. },
  13013. {
  13014. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  13015. "type": "tidelift"
  13016. }
  13017. ],
  13018. "time": "2020-10-27T19:25:29+00:00"
  13019. },
  13020. {
  13021. "name": "typo3/phar-stream-wrapper",
  13022. "version": "v3.1.6",
  13023. "source": {
  13024. "type": "git",
  13025. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  13026. "reference": "60131cb573a1e478cfecd34e4ea38e3b31505f75"
  13027. },
  13028. "dist": {
  13029. "type": "zip",
  13030. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/60131cb573a1e478cfecd34e4ea38e3b31505f75",
  13031. "reference": "60131cb573a1e478cfecd34e4ea38e3b31505f75",
  13032. "shasum": ""
  13033. },
  13034. "require": {
  13035. "ext-json": "*",
  13036. "php": "^7.0 || ^8.0"
  13037. },
  13038. "require-dev": {
  13039. "ext-xdebug": "*",
  13040. "phpspec/prophecy": "^1.10",
  13041. "symfony/phpunit-bridge": "^5.1"
  13042. },
  13043. "suggest": {
  13044. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  13045. },
  13046. "type": "library",
  13047. "extra": {
  13048. "branch-alias": {
  13049. "dev-master": "v3.x-dev"
  13050. }
  13051. },
  13052. "autoload": {
  13053. "psr-4": {
  13054. "TYPO3\\PharStreamWrapper\\": "src/"
  13055. }
  13056. },
  13057. "notification-url": "https://packagist.org/downloads/",
  13058. "license": [
  13059. "MIT"
  13060. ],
  13061. "description": "Interceptors for PHP's native phar:// stream handling",
  13062. "homepage": "https://typo3.org/",
  13063. "keywords": [
  13064. "phar",
  13065. "php",
  13066. "security",
  13067. "stream-wrapper"
  13068. ],
  13069. "support": {
  13070. "issues": "https://github.com/TYPO3/phar-stream-wrapper/issues",
  13071. "source": "https://github.com/TYPO3/phar-stream-wrapper/tree/v3.1.6"
  13072. },
  13073. "time": "2020-11-07T09:06:16+00:00"
  13074. },
  13075. {
  13076. "name": "webflo/drupal-finder",
  13077. "version": "1.2.2",
  13078. "source": {
  13079. "type": "git",
  13080. "url": "https://github.com/webflo/drupal-finder.git",
  13081. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  13082. },
  13083. "dist": {
  13084. "type": "zip",
  13085. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  13086. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  13087. "shasum": ""
  13088. },
  13089. "require": {
  13090. "ext-json": "*"
  13091. },
  13092. "require-dev": {
  13093. "mikey179/vfsstream": "^1.6",
  13094. "phpunit/phpunit": "^4.8"
  13095. },
  13096. "type": "library",
  13097. "autoload": {
  13098. "classmap": [
  13099. "src/DrupalFinder.php"
  13100. ]
  13101. },
  13102. "notification-url": "https://packagist.org/downloads/",
  13103. "license": [
  13104. "GPL-2.0-or-later"
  13105. ],
  13106. "authors": [
  13107. {
  13108. "name": "Florian Weber",
  13109. "email": "florian@webflo.org"
  13110. }
  13111. ],
  13112. "description": "Helper class to locate a Drupal installation from a given path.",
  13113. "time": "2020-10-27T09:42:17+00:00"
  13114. },
  13115. {
  13116. "name": "webmozart/assert",
  13117. "version": "1.9.1",
  13118. "source": {
  13119. "type": "git",
  13120. "url": "https://github.com/webmozarts/assert.git",
  13121. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  13122. },
  13123. "dist": {
  13124. "type": "zip",
  13125. "url": "https://api.github.com/repos/webmozarts/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  13126. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  13127. "shasum": ""
  13128. },
  13129. "require": {
  13130. "php": "^5.3.3 || ^7.0 || ^8.0",
  13131. "symfony/polyfill-ctype": "^1.8"
  13132. },
  13133. "conflict": {
  13134. "phpstan/phpstan": "<0.12.20",
  13135. "vimeo/psalm": "<3.9.1"
  13136. },
  13137. "require-dev": {
  13138. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  13139. },
  13140. "type": "library",
  13141. "autoload": {
  13142. "psr-4": {
  13143. "Webmozart\\Assert\\": "src/"
  13144. }
  13145. },
  13146. "notification-url": "https://packagist.org/downloads/",
  13147. "license": [
  13148. "MIT"
  13149. ],
  13150. "authors": [
  13151. {
  13152. "name": "Bernhard Schussek",
  13153. "email": "bschussek@gmail.com"
  13154. }
  13155. ],
  13156. "description": "Assertions to validate method input/output with nice error messages.",
  13157. "keywords": [
  13158. "assert",
  13159. "check",
  13160. "validate"
  13161. ],
  13162. "time": "2020-07-08T17:02:28+00:00"
  13163. },
  13164. {
  13165. "name": "webmozart/path-util",
  13166. "version": "2.3.0",
  13167. "source": {
  13168. "type": "git",
  13169. "url": "https://github.com/webmozart/path-util.git",
  13170. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  13171. },
  13172. "dist": {
  13173. "type": "zip",
  13174. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  13175. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  13176. "shasum": ""
  13177. },
  13178. "require": {
  13179. "php": ">=5.3.3",
  13180. "webmozart/assert": "~1.0"
  13181. },
  13182. "require-dev": {
  13183. "phpunit/phpunit": "^4.6",
  13184. "sebastian/version": "^1.0.1"
  13185. },
  13186. "type": "library",
  13187. "extra": {
  13188. "branch-alias": {
  13189. "dev-master": "2.3-dev"
  13190. }
  13191. },
  13192. "autoload": {
  13193. "psr-4": {
  13194. "Webmozart\\PathUtil\\": "src/"
  13195. }
  13196. },
  13197. "notification-url": "https://packagist.org/downloads/",
  13198. "license": [
  13199. "MIT"
  13200. ],
  13201. "authors": [
  13202. {
  13203. "name": "Bernhard Schussek",
  13204. "email": "bschussek@gmail.com"
  13205. }
  13206. ],
  13207. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  13208. "time": "2015-12-17T08:42:14+00:00"
  13209. },
  13210. {
  13211. "name": "webonyx/graphql-php",
  13212. "version": "v14.9.0",
  13213. "source": {
  13214. "type": "git",
  13215. "url": "https://github.com/webonyx/graphql-php.git",
  13216. "reference": "36b83621deb5eae354347a2e86dc7aec81b32a82"
  13217. },
  13218. "dist": {
  13219. "type": "zip",
  13220. "url": "https://api.github.com/repos/webonyx/graphql-php/zipball/36b83621deb5eae354347a2e86dc7aec81b32a82",
  13221. "reference": "36b83621deb5eae354347a2e86dc7aec81b32a82",
  13222. "shasum": ""
  13223. },
  13224. "require": {
  13225. "ext-json": "*",
  13226. "ext-mbstring": "*",
  13227. "php": "^7.1||^8.0"
  13228. },
  13229. "require-dev": {
  13230. "amphp/amp": "^2.3",
  13231. "doctrine/coding-standard": "^6.0",
  13232. "nyholm/psr7": "^1.2",
  13233. "phpbench/phpbench": "^0.16.10",
  13234. "phpstan/extension-installer": "^1.0",
  13235. "phpstan/phpstan": "0.12.82",
  13236. "phpstan/phpstan-phpunit": "0.12.18",
  13237. "phpstan/phpstan-strict-rules": "0.12.9",
  13238. "phpunit/phpunit": "^7.2|^8.5",
  13239. "psr/http-message": "^1.0",
  13240. "react/promise": "2.*",
  13241. "simpod/php-coveralls-mirror": "^3.0",
  13242. "squizlabs/php_codesniffer": "3.5.4"
  13243. },
  13244. "suggest": {
  13245. "psr/http-message": "To use standard GraphQL server",
  13246. "react/promise": "To leverage async resolving on React PHP platform"
  13247. },
  13248. "type": "library",
  13249. "autoload": {
  13250. "psr-4": {
  13251. "GraphQL\\": "src/"
  13252. }
  13253. },
  13254. "notification-url": "https://packagist.org/downloads/",
  13255. "license": [
  13256. "MIT"
  13257. ],
  13258. "description": "A PHP port of GraphQL reference implementation",
  13259. "homepage": "https://github.com/webonyx/graphql-php",
  13260. "keywords": [
  13261. "api",
  13262. "graphql"
  13263. ],
  13264. "support": {
  13265. "issues": "https://github.com/webonyx/graphql-php/issues",
  13266. "source": "https://github.com/webonyx/graphql-php/tree/v14.9.0"
  13267. },
  13268. "funding": [
  13269. {
  13270. "url": "https://opencollective.com/webonyx-graphql-php",
  13271. "type": "open_collective"
  13272. }
  13273. ],
  13274. "time": "2021-06-15T16:14:17+00:00"
  13275. },
  13276. {
  13277. "name": "wikimedia/composer-merge-plugin",
  13278. "version": "v2.0.1",
  13279. "source": {
  13280. "type": "git",
  13281. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  13282. "reference": "8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912"
  13283. },
  13284. "dist": {
  13285. "type": "zip",
  13286. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912",
  13287. "reference": "8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912",
  13288. "shasum": ""
  13289. },
  13290. "require": {
  13291. "composer-plugin-api": "^1.1||^2.0",
  13292. "php": ">=7.2.0"
  13293. },
  13294. "require-dev": {
  13295. "composer/composer": "^1.1||^2.0",
  13296. "php-parallel-lint/php-parallel-lint": "~1.1.0",
  13297. "phpunit/phpunit": "^8.5||^9.0",
  13298. "squizlabs/php_codesniffer": "~3.5.4"
  13299. },
  13300. "type": "composer-plugin",
  13301. "extra": {
  13302. "branch-alias": {
  13303. "dev-master": "2.x-dev"
  13304. },
  13305. "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin"
  13306. },
  13307. "autoload": {
  13308. "psr-4": {
  13309. "Wikimedia\\Composer\\Merge\\V2\\": "src/"
  13310. }
  13311. },
  13312. "notification-url": "https://packagist.org/downloads/",
  13313. "license": [
  13314. "MIT"
  13315. ],
  13316. "authors": [
  13317. {
  13318. "name": "Bryan Davis",
  13319. "email": "bd808@wikimedia.org"
  13320. }
  13321. ],
  13322. "description": "Composer plugin to merge multiple composer.json files",
  13323. "time": "2021-02-24T05:28:06+00:00"
  13324. }
  13325. ],
  13326. "packages-dev": [],
  13327. "aliases": [],
  13328. "minimum-stability": "stable",
  13329. "stability-flags": {
  13330. "drupal/auto_entitylabel": 20,
  13331. "drupal/cer": 15,
  13332. "drupal/insert": 20,
  13333. "drupal/typed_data": 20,
  13334. "drupal/autocomplete_deluxe": 5,
  13335. "drupal/better_exposed_filters": 10,
  13336. "drupal/bulkdelete": 20,
  13337. "drupal/cshs": 20,
  13338. "drupal/config_ignore": 5,
  13339. "drupal/config_devel": 20,
  13340. "drupal/context": 10,
  13341. "drupal/date_range_formatter": 20,
  13342. "drupal/domain": 20,
  13343. "drupal/domain_alias": 20,
  13344. "drupal/domain_config": 20,
  13345. "drupal/domain_site_settings": 20,
  13346. "drupal/email_registration": 5,
  13347. "drupal/entity_browser_enhanced": 5,
  13348. "drupal/entity_clone": 15,
  13349. "drupal/filefield_sources": 20,
  13350. "drupal/filter_perms": 20,
  13351. "drupal/inline_entity_form": 5,
  13352. "drupal/linkit": 10,
  13353. "drupal/login_destination": 20,
  13354. "drupal/maillog": 20,
  13355. "drupal/maxlength": 10,
  13356. "drupal/menu_block": 20,
  13357. "drupal/menu_position": 20,
  13358. "drupal/path_alias_xt": 20,
  13359. "drupal/pathologic": 15,
  13360. "drupal/profile": 5,
  13361. "drupal/smtp": 10,
  13362. "drupal/synonyms": 20,
  13363. "drupal/translation_views": 15,
  13364. "drupal/ultimate_cron": 15
  13365. },
  13366. "prefer-stable": true,
  13367. "prefer-lowest": false,
  13368. "platform": [],
  13369. "platform-dev": [],
  13370. "plugin-api-version": "2.1.0"
  13371. }