composer.lock 454 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480
  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": "0920f04ce89d5ca6fffe99a0aa488e7e",
  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. "time": "2019-12-24T22:41:47+00:00"
  124. },
  125. {
  126. "name": "chi-teck/drupal-code-generator",
  127. "version": "1.33.1",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  131. "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/5f814e980b6f9cf1ca8c74cc9385c3d81090d388",
  136. "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "ext-json": "*",
  141. "php": ">=5.5.9",
  142. "symfony/console": "^3.4 || ^4.0",
  143. "symfony/filesystem": "^2.7 || ^3.4 || ^4.0",
  144. "twig/twig": "^1.41 || ^2.12"
  145. },
  146. "conflict": {
  147. "drush/drush": "< 10.3.2"
  148. },
  149. "bin": [
  150. "bin/dcg"
  151. ],
  152. "type": "library",
  153. "extra": {
  154. "branch-alias": {
  155. "dev-master": "1.x-dev"
  156. }
  157. },
  158. "autoload": {
  159. "files": [
  160. "src/bootstrap.php"
  161. ],
  162. "psr-4": {
  163. "DrupalCodeGenerator\\": "src"
  164. }
  165. },
  166. "notification-url": "https://packagist.org/downloads/",
  167. "license": [
  168. "GPL-2.0-or-later"
  169. ],
  170. "description": "Drupal code generator",
  171. "time": "2020-12-05T05:59:11+00:00"
  172. },
  173. {
  174. "name": "commerceguys/addressing",
  175. "version": "v1.1.0",
  176. "source": {
  177. "type": "git",
  178. "url": "https://github.com/commerceguys/addressing.git",
  179. "reference": "2450ca97631042faf786855db206a2e48fb7dbb7"
  180. },
  181. "dist": {
  182. "type": "zip",
  183. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/2450ca97631042faf786855db206a2e48fb7dbb7",
  184. "reference": "2450ca97631042faf786855db206a2e48fb7dbb7",
  185. "shasum": ""
  186. },
  187. "require": {
  188. "doctrine/collections": "~1.0",
  189. "php": ">=7.0.8"
  190. },
  191. "require-dev": {
  192. "mikey179/vfsstream": "1.*",
  193. "phpunit/phpunit": "^6.0",
  194. "squizlabs/php_codesniffer": "2.*",
  195. "symfony/validator": "^3.4"
  196. },
  197. "suggest": {
  198. "symfony/validator": "to validate addresses"
  199. },
  200. "type": "library",
  201. "extra": {
  202. "branch-alias": {
  203. "dev-master": "1.x-dev"
  204. }
  205. },
  206. "autoload": {
  207. "psr-4": {
  208. "CommerceGuys\\Addressing\\": "src"
  209. }
  210. },
  211. "notification-url": "https://packagist.org/downloads/",
  212. "license": [
  213. "MIT"
  214. ],
  215. "authors": [
  216. {
  217. "name": "Bojan Zivanovic"
  218. },
  219. {
  220. "name": "Damien Tournoud"
  221. }
  222. ],
  223. "description": "Addressing library powered by CLDR and Google's address data.",
  224. "keywords": [
  225. "address",
  226. "internationalization",
  227. "localization",
  228. "postal"
  229. ],
  230. "time": "2020-11-29T18:48:07+00:00"
  231. },
  232. {
  233. "name": "components/highlightjs",
  234. "version": "9.7.0",
  235. "dist": {
  236. "type": "zip",
  237. "url": "https://github.com/components/highlightjs/archive/9.7.0.zip"
  238. },
  239. "type": "drupal-library"
  240. },
  241. {
  242. "name": "composer/installers",
  243. "version": "v1.9.0",
  244. "source": {
  245. "type": "git",
  246. "url": "https://github.com/composer/installers.git",
  247. "reference": "b93bcf0fa1fccb0b7d176b0967d969691cd74cca"
  248. },
  249. "dist": {
  250. "type": "zip",
  251. "url": "https://api.github.com/repos/composer/installers/zipball/b93bcf0fa1fccb0b7d176b0967d969691cd74cca",
  252. "reference": "b93bcf0fa1fccb0b7d176b0967d969691cd74cca",
  253. "shasum": ""
  254. },
  255. "require": {
  256. "composer-plugin-api": "^1.0 || ^2.0"
  257. },
  258. "replace": {
  259. "roundcube/plugin-installer": "*",
  260. "shama/baton": "*"
  261. },
  262. "require-dev": {
  263. "composer/composer": "1.6.* || 2.0.*@dev",
  264. "composer/semver": "1.0.* || 2.0.*@dev",
  265. "phpunit/phpunit": "^4.8.36",
  266. "sebastian/comparator": "^1.2.4",
  267. "symfony/process": "^2.3"
  268. },
  269. "type": "composer-plugin",
  270. "extra": {
  271. "class": "Composer\\Installers\\Plugin",
  272. "branch-alias": {
  273. "dev-master": "1.0-dev"
  274. }
  275. },
  276. "autoload": {
  277. "psr-4": {
  278. "Composer\\Installers\\": "src/Composer/Installers"
  279. }
  280. },
  281. "notification-url": "https://packagist.org/downloads/",
  282. "license": [
  283. "MIT"
  284. ],
  285. "authors": [
  286. {
  287. "name": "Kyle Robinson Young",
  288. "email": "kyle@dontkry.com",
  289. "homepage": "https://github.com/shama"
  290. }
  291. ],
  292. "description": "A multi-framework Composer library installer",
  293. "homepage": "https://composer.github.io/installers/",
  294. "keywords": [
  295. "Craft",
  296. "Dolibarr",
  297. "Eliasis",
  298. "Hurad",
  299. "ImageCMS",
  300. "Kanboard",
  301. "Lan Management System",
  302. "MODX Evo",
  303. "MantisBT",
  304. "Mautic",
  305. "Maya",
  306. "OXID",
  307. "Plentymarkets",
  308. "Porto",
  309. "RadPHP",
  310. "SMF",
  311. "Thelia",
  312. "Whmcs",
  313. "WolfCMS",
  314. "agl",
  315. "aimeos",
  316. "annotatecms",
  317. "attogram",
  318. "bitrix",
  319. "cakephp",
  320. "chef",
  321. "cockpit",
  322. "codeigniter",
  323. "concrete5",
  324. "croogo",
  325. "dokuwiki",
  326. "drupal",
  327. "eZ Platform",
  328. "elgg",
  329. "expressionengine",
  330. "fuelphp",
  331. "grav",
  332. "installer",
  333. "itop",
  334. "joomla",
  335. "known",
  336. "kohana",
  337. "laravel",
  338. "lavalite",
  339. "lithium",
  340. "magento",
  341. "majima",
  342. "mako",
  343. "mediawiki",
  344. "modulework",
  345. "modx",
  346. "moodle",
  347. "osclass",
  348. "phpbb",
  349. "piwik",
  350. "ppi",
  351. "puppet",
  352. "pxcms",
  353. "reindex",
  354. "roundcube",
  355. "shopware",
  356. "silverstripe",
  357. "sydes",
  358. "sylius",
  359. "symfony",
  360. "typo3",
  361. "wordpress",
  362. "yawik",
  363. "zend",
  364. "zikula"
  365. ],
  366. "funding": [
  367. {
  368. "url": "https://packagist.com",
  369. "type": "custom"
  370. },
  371. {
  372. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  373. "type": "tidelift"
  374. }
  375. ],
  376. "time": "2020-04-07T06:57:05+00:00"
  377. },
  378. {
  379. "name": "composer/semver",
  380. "version": "3.2.2",
  381. "source": {
  382. "type": "git",
  383. "url": "https://github.com/composer/semver.git",
  384. "reference": "4089fddb67bcf6bf860d91b979e95be303835002"
  385. },
  386. "dist": {
  387. "type": "zip",
  388. "url": "https://api.github.com/repos/composer/semver/zipball/4089fddb67bcf6bf860d91b979e95be303835002",
  389. "reference": "4089fddb67bcf6bf860d91b979e95be303835002",
  390. "shasum": ""
  391. },
  392. "require": {
  393. "php": "^5.3.2 || ^7.0 || ^8.0"
  394. },
  395. "require-dev": {
  396. "phpstan/phpstan": "^0.12.19",
  397. "symfony/phpunit-bridge": "^4.2 || ^5"
  398. },
  399. "type": "library",
  400. "extra": {
  401. "branch-alias": {
  402. "dev-main": "3.x-dev"
  403. }
  404. },
  405. "autoload": {
  406. "psr-4": {
  407. "Composer\\Semver\\": "src"
  408. }
  409. },
  410. "notification-url": "https://packagist.org/downloads/",
  411. "license": [
  412. "MIT"
  413. ],
  414. "authors": [
  415. {
  416. "name": "Nils Adermann",
  417. "email": "naderman@naderman.de",
  418. "homepage": "http://www.naderman.de"
  419. },
  420. {
  421. "name": "Jordi Boggiano",
  422. "email": "j.boggiano@seld.be",
  423. "homepage": "http://seld.be"
  424. },
  425. {
  426. "name": "Rob Bast",
  427. "email": "rob.bast@gmail.com",
  428. "homepage": "http://robbast.nl"
  429. }
  430. ],
  431. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  432. "keywords": [
  433. "semantic",
  434. "semver",
  435. "validation",
  436. "versioning"
  437. ],
  438. "funding": [
  439. {
  440. "url": "https://packagist.com",
  441. "type": "custom"
  442. },
  443. {
  444. "url": "https://github.com/composer",
  445. "type": "github"
  446. },
  447. {
  448. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  449. "type": "tidelift"
  450. }
  451. ],
  452. "time": "2020-10-14T08:51:15+00:00"
  453. },
  454. {
  455. "name": "consolidation/annotated-command",
  456. "version": "4.2.4",
  457. "source": {
  458. "type": "git",
  459. "url": "https://github.com/consolidation/annotated-command.git",
  460. "reference": "ec297e05cb86557671c2d6cbb1bebba6c7ae2c60"
  461. },
  462. "dist": {
  463. "type": "zip",
  464. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/ec297e05cb86557671c2d6cbb1bebba6c7ae2c60",
  465. "reference": "ec297e05cb86557671c2d6cbb1bebba6c7ae2c60",
  466. "shasum": ""
  467. },
  468. "require": {
  469. "consolidation/output-formatters": "^4.1.1",
  470. "php": ">=7.1.3",
  471. "psr/log": "^1|^2",
  472. "symfony/console": "^4.4.8|~5.1.0",
  473. "symfony/event-dispatcher": "^4.4.8|^5",
  474. "symfony/finder": "^4.4.8|^5"
  475. },
  476. "require-dev": {
  477. "phpunit/phpunit": ">=7.5.20",
  478. "squizlabs/php_codesniffer": "^3",
  479. "yoast/phpunit-polyfills": "^0.2.0"
  480. },
  481. "type": "library",
  482. "extra": {
  483. "branch-alias": {
  484. "dev-main": "4.x-dev"
  485. }
  486. },
  487. "autoload": {
  488. "psr-4": {
  489. "Consolidation\\AnnotatedCommand\\": "src"
  490. }
  491. },
  492. "notification-url": "https://packagist.org/downloads/",
  493. "license": [
  494. "MIT"
  495. ],
  496. "authors": [
  497. {
  498. "name": "Greg Anderson",
  499. "email": "greg.1.anderson@greenknowe.org"
  500. }
  501. ],
  502. "description": "Initialize Symfony Console commands from annotated command class methods.",
  503. "time": "2020-12-10T16:56:39+00:00"
  504. },
  505. {
  506. "name": "consolidation/config",
  507. "version": "1.2.1",
  508. "source": {
  509. "type": "git",
  510. "url": "https://github.com/consolidation/config.git",
  511. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  512. },
  513. "dist": {
  514. "type": "zip",
  515. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  516. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  517. "shasum": ""
  518. },
  519. "require": {
  520. "dflydev/dot-access-data": "^1.1.0",
  521. "grasmash/expander": "^1",
  522. "php": ">=5.4.0"
  523. },
  524. "require-dev": {
  525. "g1a/composer-test-scenarios": "^3",
  526. "php-coveralls/php-coveralls": "^1",
  527. "phpunit/phpunit": "^5",
  528. "squizlabs/php_codesniffer": "2.*",
  529. "symfony/console": "^2.5|^3|^4",
  530. "symfony/yaml": "^2.8.11|^3|^4"
  531. },
  532. "suggest": {
  533. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  534. },
  535. "type": "library",
  536. "extra": {
  537. "scenarios": {
  538. "symfony4": {
  539. "require-dev": {
  540. "symfony/console": "^4.0"
  541. },
  542. "config": {
  543. "platform": {
  544. "php": "7.1.3"
  545. }
  546. }
  547. },
  548. "symfony2": {
  549. "require-dev": {
  550. "symfony/console": "^2.8",
  551. "symfony/event-dispatcher": "^2.8",
  552. "phpunit/phpunit": "^4.8.36"
  553. },
  554. "remove": [
  555. "php-coveralls/php-coveralls"
  556. ],
  557. "config": {
  558. "platform": {
  559. "php": "5.4.8"
  560. }
  561. }
  562. }
  563. },
  564. "branch-alias": {
  565. "dev-master": "1.x-dev"
  566. }
  567. },
  568. "autoload": {
  569. "psr-4": {
  570. "Consolidation\\Config\\": "src"
  571. }
  572. },
  573. "notification-url": "https://packagist.org/downloads/",
  574. "license": [
  575. "MIT"
  576. ],
  577. "authors": [
  578. {
  579. "name": "Greg Anderson",
  580. "email": "greg.1.anderson@greenknowe.org"
  581. }
  582. ],
  583. "description": "Provide configuration services for a commandline tool.",
  584. "time": "2019-03-03T19:37:04+00:00"
  585. },
  586. {
  587. "name": "consolidation/filter-via-dot-access-data",
  588. "version": "1.0.0",
  589. "source": {
  590. "type": "git",
  591. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  592. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  593. },
  594. "dist": {
  595. "type": "zip",
  596. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  597. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  598. "shasum": ""
  599. },
  600. "require": {
  601. "dflydev/dot-access-data": "^1.1.0",
  602. "php": ">=5.5.0"
  603. },
  604. "require-dev": {
  605. "consolidation/robo": "^1.2.3",
  606. "g1a/composer-test-scenarios": "^3",
  607. "knplabs/github-api": "^2.7",
  608. "php-coveralls/php-coveralls": "^1",
  609. "php-http/guzzle6-adapter": "^1.1",
  610. "phpunit/phpunit": "^5",
  611. "squizlabs/php_codesniffer": "^2.8",
  612. "symfony/console": "^2.8|^3|^4"
  613. },
  614. "type": "library",
  615. "extra": {
  616. "scenarios": {
  617. "phpunit5": {
  618. "require-dev": {
  619. "phpunit/phpunit": "^5.7.27"
  620. },
  621. "remove": [
  622. "php-coveralls/php-coveralls"
  623. ],
  624. "config": {
  625. "platform": {
  626. "php": "5.6.33"
  627. }
  628. }
  629. }
  630. },
  631. "branch-alias": {
  632. "dev-master": "1.x-dev"
  633. }
  634. },
  635. "autoload": {
  636. "psr-4": {
  637. "Consolidation\\Filter\\": "src"
  638. }
  639. },
  640. "notification-url": "https://packagist.org/downloads/",
  641. "license": [
  642. "MIT"
  643. ],
  644. "authors": [
  645. {
  646. "name": "Greg Anderson",
  647. "email": "greg.1.anderson@greenknowe.org"
  648. }
  649. ],
  650. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  651. "time": "2019-01-18T06:05:07+00:00"
  652. },
  653. {
  654. "name": "consolidation/log",
  655. "version": "2.0.2",
  656. "source": {
  657. "type": "git",
  658. "url": "https://github.com/consolidation/log.git",
  659. "reference": "82a2aaaa621a7b976e50a745a8d249d5085ee2b1"
  660. },
  661. "dist": {
  662. "type": "zip",
  663. "url": "https://api.github.com/repos/consolidation/log/zipball/82a2aaaa621a7b976e50a745a8d249d5085ee2b1",
  664. "reference": "82a2aaaa621a7b976e50a745a8d249d5085ee2b1",
  665. "shasum": ""
  666. },
  667. "require": {
  668. "php": ">=7.1.3",
  669. "psr/log": "^1.0",
  670. "symfony/console": "^4|^5"
  671. },
  672. "require-dev": {
  673. "phpunit/phpunit": ">=7.5.20",
  674. "squizlabs/php_codesniffer": "^3",
  675. "yoast/phpunit-polyfills": "^0.2.0"
  676. },
  677. "type": "library",
  678. "extra": {
  679. "branch-alias": {
  680. "dev-main": "2.x-dev"
  681. }
  682. },
  683. "autoload": {
  684. "psr-4": {
  685. "Consolidation\\Log\\": "src"
  686. }
  687. },
  688. "notification-url": "https://packagist.org/downloads/",
  689. "license": [
  690. "MIT"
  691. ],
  692. "authors": [
  693. {
  694. "name": "Greg Anderson",
  695. "email": "greg.1.anderson@greenknowe.org"
  696. }
  697. ],
  698. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  699. "time": "2020-12-10T16:26:23+00:00"
  700. },
  701. {
  702. "name": "consolidation/output-formatters",
  703. "version": "4.1.2",
  704. "source": {
  705. "type": "git",
  706. "url": "https://github.com/consolidation/output-formatters.git",
  707. "reference": "5821e6ae076bf690058a4de6c94dce97398a69c9"
  708. },
  709. "dist": {
  710. "type": "zip",
  711. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/5821e6ae076bf690058a4de6c94dce97398a69c9",
  712. "reference": "5821e6ae076bf690058a4de6c94dce97398a69c9",
  713. "shasum": ""
  714. },
  715. "require": {
  716. "dflydev/dot-access-data": "^1.1.0",
  717. "php": ">=7.1.3",
  718. "symfony/console": "^4|^5",
  719. "symfony/finder": "^4|^5"
  720. },
  721. "require-dev": {
  722. "php-coveralls/php-coveralls": "^2.4.2",
  723. "phpunit/phpunit": ">=7",
  724. "squizlabs/php_codesniffer": "^3",
  725. "symfony/var-dumper": "^4",
  726. "symfony/yaml": "^4",
  727. "yoast/phpunit-polyfills": "^0.2.0"
  728. },
  729. "suggest": {
  730. "symfony/var-dumper": "For using the var_dump formatter"
  731. },
  732. "type": "library",
  733. "extra": {
  734. "branch-alias": {
  735. "dev-main": "4.x-dev"
  736. }
  737. },
  738. "autoload": {
  739. "psr-4": {
  740. "Consolidation\\OutputFormatters\\": "src"
  741. }
  742. },
  743. "notification-url": "https://packagist.org/downloads/",
  744. "license": [
  745. "MIT"
  746. ],
  747. "authors": [
  748. {
  749. "name": "Greg Anderson",
  750. "email": "greg.1.anderson@greenknowe.org"
  751. }
  752. ],
  753. "description": "Format text by applying transformations provided by plug-in formatters.",
  754. "time": "2020-12-12T19:04:59+00:00"
  755. },
  756. {
  757. "name": "consolidation/robo",
  758. "version": "2.2.1",
  759. "source": {
  760. "type": "git",
  761. "url": "https://github.com/consolidation/Robo.git",
  762. "reference": "1a7c652371615fd72ff05380ffe6ce263eb31eb3"
  763. },
  764. "dist": {
  765. "type": "zip",
  766. "url": "https://api.github.com/repos/consolidation/Robo/zipball/1a7c652371615fd72ff05380ffe6ce263eb31eb3",
  767. "reference": "1a7c652371615fd72ff05380ffe6ce263eb31eb3",
  768. "shasum": ""
  769. },
  770. "require": {
  771. "consolidation/annotated-command": "^4.2.1",
  772. "consolidation/config": "^1.2.1|^2",
  773. "consolidation/log": "^1.1.1|^2.0.1",
  774. "consolidation/output-formatters": "^4.1.1",
  775. "consolidation/self-update": "^1.2",
  776. "league/container": "^2.4.1",
  777. "php": ">=7.1.3",
  778. "symfony/console": "^4.4.11|^5",
  779. "symfony/event-dispatcher": "^4.4.11|^5",
  780. "symfony/filesystem": "^4.4.11|^5",
  781. "symfony/finder": "^4.4.11|^5",
  782. "symfony/process": "^4.4.11|^5"
  783. },
  784. "conflict": {
  785. "codegyre/robo": "*"
  786. },
  787. "require-dev": {
  788. "g1a/composer-test-scenarios": "^3",
  789. "natxet/cssmin": "3.0.4",
  790. "patchwork/jsqueeze": "^2",
  791. "pear/archive_tar": "^1.4.4",
  792. "php-coveralls/php-coveralls": "^2.2",
  793. "phpdocumentor/reflection-docblock": "^4.3.2",
  794. "phpunit/phpunit": "^6.5.14",
  795. "squizlabs/php_codesniffer": "^3"
  796. },
  797. "suggest": {
  798. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  799. "natxet/cssmin": "For minifying CSS files in taskMinify",
  800. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  801. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  802. },
  803. "bin": [
  804. "robo"
  805. ],
  806. "type": "library",
  807. "extra": {
  808. "scenarios": {
  809. "symfony4": {
  810. "require": {
  811. "symfony/console": "^4.4.11",
  812. "symfony/event-dispatcher": "^4.4.11",
  813. "symfony/filesystem": "^4.4.11",
  814. "symfony/finder": "^4.4.11",
  815. "symfony/process": "^4.4.11",
  816. "phpunit/phpunit": "^6",
  817. "nikic/php-parser": "^2"
  818. },
  819. "remove": [
  820. "codeception/phpunit-wrapper"
  821. ],
  822. "config": {
  823. "platform": {
  824. "php": "7.1.3"
  825. }
  826. }
  827. }
  828. },
  829. "branch-alias": {
  830. "dev-master": "2.x-dev",
  831. "dev-main": "2.x-dev"
  832. }
  833. },
  834. "autoload": {
  835. "psr-4": {
  836. "Robo\\": "src"
  837. }
  838. },
  839. "notification-url": "https://packagist.org/downloads/",
  840. "license": [
  841. "MIT"
  842. ],
  843. "authors": [
  844. {
  845. "name": "Davert",
  846. "email": "davert.php@resend.cc"
  847. }
  848. ],
  849. "description": "Modern task runner",
  850. "time": "2020-09-08T16:23:18+00:00"
  851. },
  852. {
  853. "name": "consolidation/self-update",
  854. "version": "1.2.0",
  855. "source": {
  856. "type": "git",
  857. "url": "https://github.com/consolidation/self-update.git",
  858. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4"
  859. },
  860. "dist": {
  861. "type": "zip",
  862. "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4",
  863. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4",
  864. "shasum": ""
  865. },
  866. "require": {
  867. "php": ">=5.5.0",
  868. "symfony/console": "^2.8|^3|^4|^5",
  869. "symfony/filesystem": "^2.5|^3|^4|^5"
  870. },
  871. "bin": [
  872. "scripts/release"
  873. ],
  874. "type": "library",
  875. "extra": {
  876. "branch-alias": {
  877. "dev-master": "1.x-dev"
  878. }
  879. },
  880. "autoload": {
  881. "psr-4": {
  882. "SelfUpdate\\": "src"
  883. }
  884. },
  885. "notification-url": "https://packagist.org/downloads/",
  886. "license": [
  887. "MIT"
  888. ],
  889. "authors": [
  890. {
  891. "name": "Alexander Menk",
  892. "email": "menk@mestrona.net"
  893. },
  894. {
  895. "name": "Greg Anderson",
  896. "email": "greg.1.anderson@greenknowe.org"
  897. }
  898. ],
  899. "description": "Provides a self:update command for Symfony Console applications.",
  900. "time": "2020-04-13T02:49:20+00:00"
  901. },
  902. {
  903. "name": "consolidation/site-alias",
  904. "version": "3.0.1",
  905. "source": {
  906. "type": "git",
  907. "url": "https://github.com/consolidation/site-alias.git",
  908. "reference": "fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26"
  909. },
  910. "dist": {
  911. "type": "zip",
  912. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26",
  913. "reference": "fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26",
  914. "shasum": ""
  915. },
  916. "require": {
  917. "consolidation/config": "^1.2.1|^2",
  918. "php": ">=5.5.0"
  919. },
  920. "require-dev": {
  921. "consolidation/robo": "^1.2.3|^2",
  922. "g1a/composer-test-scenarios": "^3",
  923. "knplabs/github-api": "^2.7",
  924. "php-coveralls/php-coveralls": "^2.2",
  925. "php-http/guzzle6-adapter": "^1.1",
  926. "phpunit/phpunit": "^6",
  927. "squizlabs/php_codesniffer": "^2.8",
  928. "symfony/yaml": "~2.3|^3|^4.4|^5"
  929. },
  930. "type": "library",
  931. "extra": {
  932. "scenarios": {
  933. "phpunit5": {
  934. "require-dev": {
  935. "phpunit/phpunit": "^5.7.27"
  936. },
  937. "remove": [
  938. "php-coveralls/php-coveralls"
  939. ],
  940. "config": {
  941. "platform": {
  942. "php": "5.6.33"
  943. }
  944. }
  945. }
  946. },
  947. "branch-alias": {
  948. "dev-master": "3.x-dev"
  949. }
  950. },
  951. "autoload": {
  952. "psr-4": {
  953. "Consolidation\\SiteAlias\\": "src"
  954. }
  955. },
  956. "notification-url": "https://packagist.org/downloads/",
  957. "license": [
  958. "MIT"
  959. ],
  960. "authors": [
  961. {
  962. "name": "Greg Anderson",
  963. "email": "greg.1.anderson@greenknowe.org"
  964. },
  965. {
  966. "name": "Moshe Weitzman",
  967. "email": "weitzman@tejasa.com"
  968. }
  969. ],
  970. "description": "Manage alias records for local and remote sites.",
  971. "time": "2020-05-28T00:33:41+00:00"
  972. },
  973. {
  974. "name": "consolidation/site-process",
  975. "version": "4.0.0",
  976. "source": {
  977. "type": "git",
  978. "url": "https://github.com/consolidation/site-process.git",
  979. "reference": "ad86475eb3fe73490eb1b6ff2e74ee0f09952e9d"
  980. },
  981. "dist": {
  982. "type": "zip",
  983. "url": "https://api.github.com/repos/consolidation/site-process/zipball/ad86475eb3fe73490eb1b6ff2e74ee0f09952e9d",
  984. "reference": "ad86475eb3fe73490eb1b6ff2e74ee0f09952e9d",
  985. "shasum": ""
  986. },
  987. "require": {
  988. "consolidation/config": "^1.2.1|^2",
  989. "consolidation/site-alias": "^3",
  990. "php": ">=7.1.3",
  991. "symfony/process": "^4.3.4"
  992. },
  993. "require-dev": {
  994. "consolidation/robo": "^1.4.10|^2",
  995. "g1a/composer-test-scenarios": "^3.0.4",
  996. "knplabs/github-api": "^2.7",
  997. "php-coveralls/php-coveralls": "^2.2",
  998. "php-http/guzzle6-adapter": "^1.1",
  999. "phpunit/phpunit": "^6.5.14",
  1000. "squizlabs/php_codesniffer": "^2.9.2"
  1001. },
  1002. "type": "library",
  1003. "extra": {
  1004. "scenarios": {
  1005. "symfony4": {
  1006. "require": {
  1007. "symfony/console": "^4.4.8",
  1008. "symfony/event-dispatcher": "^4.4.8",
  1009. "symfony/filesystem": "^4.4.8",
  1010. "symfony/finder": "^4.4.8"
  1011. },
  1012. "config": {
  1013. "platform": {
  1014. "php": "7.1.3"
  1015. }
  1016. }
  1017. }
  1018. },
  1019. "branch-alias": {
  1020. "dev-master": "4.x-dev"
  1021. }
  1022. },
  1023. "autoload": {
  1024. "psr-4": {
  1025. "Consolidation\\SiteProcess\\": "src"
  1026. }
  1027. },
  1028. "notification-url": "https://packagist.org/downloads/",
  1029. "license": [
  1030. "MIT"
  1031. ],
  1032. "authors": [
  1033. {
  1034. "name": "Greg Anderson",
  1035. "email": "greg.1.anderson@greenknowe.org"
  1036. },
  1037. {
  1038. "name": "Moshe Weitzman",
  1039. "email": "weitzman@tejasa.com"
  1040. }
  1041. ],
  1042. "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.",
  1043. "time": "2020-05-28T00:05:34+00:00"
  1044. },
  1045. {
  1046. "name": "container-interop/container-interop",
  1047. "version": "1.2.0",
  1048. "source": {
  1049. "type": "git",
  1050. "url": "https://github.com/container-interop/container-interop.git",
  1051. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  1052. },
  1053. "dist": {
  1054. "type": "zip",
  1055. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1056. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1057. "shasum": ""
  1058. },
  1059. "require": {
  1060. "psr/container": "^1.0"
  1061. },
  1062. "type": "library",
  1063. "autoload": {
  1064. "psr-4": {
  1065. "Interop\\Container\\": "src/Interop/Container/"
  1066. }
  1067. },
  1068. "notification-url": "https://packagist.org/downloads/",
  1069. "license": [
  1070. "MIT"
  1071. ],
  1072. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  1073. "homepage": "https://github.com/container-interop/container-interop",
  1074. "abandoned": "psr/container",
  1075. "time": "2017-02-14T19:40:03+00:00"
  1076. },
  1077. {
  1078. "name": "cweagans/composer-patches",
  1079. "version": "1.7.0",
  1080. "source": {
  1081. "type": "git",
  1082. "url": "https://github.com/cweagans/composer-patches.git",
  1083. "reference": "ae02121445ad75f4eaff800cc532b5e6233e2ddf"
  1084. },
  1085. "dist": {
  1086. "type": "zip",
  1087. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/ae02121445ad75f4eaff800cc532b5e6233e2ddf",
  1088. "reference": "ae02121445ad75f4eaff800cc532b5e6233e2ddf",
  1089. "shasum": ""
  1090. },
  1091. "require": {
  1092. "composer-plugin-api": "^1.0 || ^2.0",
  1093. "php": ">=5.3.0"
  1094. },
  1095. "require-dev": {
  1096. "composer/composer": "~1.0 || ~2.0",
  1097. "phpunit/phpunit": "~4.6"
  1098. },
  1099. "type": "composer-plugin",
  1100. "extra": {
  1101. "class": "cweagans\\Composer\\Patches"
  1102. },
  1103. "autoload": {
  1104. "psr-4": {
  1105. "cweagans\\Composer\\": "src"
  1106. }
  1107. },
  1108. "notification-url": "https://packagist.org/downloads/",
  1109. "license": [
  1110. "BSD-3-Clause"
  1111. ],
  1112. "authors": [
  1113. {
  1114. "name": "Cameron Eagans",
  1115. "email": "me@cweagans.net"
  1116. }
  1117. ],
  1118. "description": "Provides a way to patch Composer packages.",
  1119. "time": "2020-09-30T17:56:20+00:00"
  1120. },
  1121. {
  1122. "name": "d3/d3",
  1123. "version": "v3.5.17",
  1124. "dist": {
  1125. "type": "zip",
  1126. "url": "https://github.com/d3/d3/archive/v3.5.17.zip"
  1127. },
  1128. "type": "drupal-library"
  1129. },
  1130. {
  1131. "name": "dflydev/dot-access-configuration",
  1132. "version": "v1.0.3",
  1133. "source": {
  1134. "type": "git",
  1135. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  1136. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  1137. },
  1138. "dist": {
  1139. "type": "zip",
  1140. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1141. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1142. "shasum": ""
  1143. },
  1144. "require": {
  1145. "dflydev/dot-access-data": "1.*",
  1146. "dflydev/placeholder-resolver": "1.*",
  1147. "php": ">=5.3.2"
  1148. },
  1149. "require-dev": {
  1150. "symfony/yaml": "~2.1"
  1151. },
  1152. "suggest": {
  1153. "symfony/yaml": "Required for using the YAML Configuration Builders"
  1154. },
  1155. "type": "library",
  1156. "extra": {
  1157. "branch-alias": {
  1158. "dev-master": "1.0-dev"
  1159. }
  1160. },
  1161. "autoload": {
  1162. "psr-0": {
  1163. "Dflydev\\DotAccessConfiguration": "src"
  1164. }
  1165. },
  1166. "notification-url": "https://packagist.org/downloads/",
  1167. "license": [
  1168. "MIT"
  1169. ],
  1170. "authors": [
  1171. {
  1172. "name": "Dragonfly Development Inc.",
  1173. "email": "info@dflydev.com",
  1174. "homepage": "http://dflydev.com"
  1175. },
  1176. {
  1177. "name": "Beau Simensen",
  1178. "email": "beau@dflydev.com",
  1179. "homepage": "http://beausimensen.com"
  1180. }
  1181. ],
  1182. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  1183. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  1184. "keywords": [
  1185. "config",
  1186. "configuration"
  1187. ],
  1188. "time": "2018-09-08T23:00:17+00:00"
  1189. },
  1190. {
  1191. "name": "dflydev/dot-access-data",
  1192. "version": "v1.1.0",
  1193. "source": {
  1194. "type": "git",
  1195. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1196. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1197. },
  1198. "dist": {
  1199. "type": "zip",
  1200. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1201. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1202. "shasum": ""
  1203. },
  1204. "require": {
  1205. "php": ">=5.3.2"
  1206. },
  1207. "type": "library",
  1208. "extra": {
  1209. "branch-alias": {
  1210. "dev-master": "1.0-dev"
  1211. }
  1212. },
  1213. "autoload": {
  1214. "psr-0": {
  1215. "Dflydev\\DotAccessData": "src"
  1216. }
  1217. },
  1218. "notification-url": "https://packagist.org/downloads/",
  1219. "license": [
  1220. "MIT"
  1221. ],
  1222. "authors": [
  1223. {
  1224. "name": "Dragonfly Development Inc.",
  1225. "email": "info@dflydev.com",
  1226. "homepage": "http://dflydev.com"
  1227. },
  1228. {
  1229. "name": "Beau Simensen",
  1230. "email": "beau@dflydev.com",
  1231. "homepage": "http://beausimensen.com"
  1232. },
  1233. {
  1234. "name": "Carlos Frutos",
  1235. "email": "carlos@kiwing.it",
  1236. "homepage": "https://github.com/cfrutos"
  1237. }
  1238. ],
  1239. "description": "Given a deep data structure, access data by dot notation.",
  1240. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1241. "keywords": [
  1242. "access",
  1243. "data",
  1244. "dot",
  1245. "notation"
  1246. ],
  1247. "time": "2017-01-20T21:14:22+00:00"
  1248. },
  1249. {
  1250. "name": "dflydev/placeholder-resolver",
  1251. "version": "v1.0.2",
  1252. "source": {
  1253. "type": "git",
  1254. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1255. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  1256. },
  1257. "dist": {
  1258. "type": "zip",
  1259. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1260. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1261. "shasum": ""
  1262. },
  1263. "require": {
  1264. "php": ">=5.3.2"
  1265. },
  1266. "type": "library",
  1267. "extra": {
  1268. "branch-alias": {
  1269. "dev-master": "1.0-dev"
  1270. }
  1271. },
  1272. "autoload": {
  1273. "psr-0": {
  1274. "Dflydev\\PlaceholderResolver": "src"
  1275. }
  1276. },
  1277. "notification-url": "https://packagist.org/downloads/",
  1278. "license": [
  1279. "MIT"
  1280. ],
  1281. "authors": [
  1282. {
  1283. "name": "Dragonfly Development Inc.",
  1284. "email": "info@dflydev.com",
  1285. "homepage": "http://dflydev.com"
  1286. },
  1287. {
  1288. "name": "Beau Simensen",
  1289. "email": "beau@dflydev.com",
  1290. "homepage": "http://beausimensen.com"
  1291. }
  1292. ],
  1293. "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.",
  1294. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1295. "keywords": [
  1296. "placeholder",
  1297. "resolver"
  1298. ],
  1299. "time": "2012-10-28T21:08:28+00:00"
  1300. },
  1301. {
  1302. "name": "dnoegel/php-xdg-base-dir",
  1303. "version": "v0.1.1",
  1304. "source": {
  1305. "type": "git",
  1306. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1307. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  1308. },
  1309. "dist": {
  1310. "type": "zip",
  1311. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1312. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1313. "shasum": ""
  1314. },
  1315. "require": {
  1316. "php": ">=5.3.2"
  1317. },
  1318. "require-dev": {
  1319. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  1320. },
  1321. "type": "library",
  1322. "autoload": {
  1323. "psr-4": {
  1324. "XdgBaseDir\\": "src/"
  1325. }
  1326. },
  1327. "notification-url": "https://packagist.org/downloads/",
  1328. "license": [
  1329. "MIT"
  1330. ],
  1331. "description": "implementation of xdg base directory specification for php",
  1332. "time": "2019-12-04T15:06:13+00:00"
  1333. },
  1334. {
  1335. "name": "doctrine/annotations",
  1336. "version": "1.11.1",
  1337. "source": {
  1338. "type": "git",
  1339. "url": "https://github.com/doctrine/annotations.git",
  1340. "reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad"
  1341. },
  1342. "dist": {
  1343. "type": "zip",
  1344. "url": "https://api.github.com/repos/doctrine/annotations/zipball/ce77a7ba1770462cd705a91a151b6c3746f9c6ad",
  1345. "reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad",
  1346. "shasum": ""
  1347. },
  1348. "require": {
  1349. "doctrine/lexer": "1.*",
  1350. "ext-tokenizer": "*",
  1351. "php": "^7.1 || ^8.0"
  1352. },
  1353. "require-dev": {
  1354. "doctrine/cache": "1.*",
  1355. "doctrine/coding-standard": "^6.0 || ^8.1",
  1356. "phpstan/phpstan": "^0.12.20",
  1357. "phpunit/phpunit": "^7.5 || ^9.1.5"
  1358. },
  1359. "type": "library",
  1360. "extra": {
  1361. "branch-alias": {
  1362. "dev-master": "1.11.x-dev"
  1363. }
  1364. },
  1365. "autoload": {
  1366. "psr-4": {
  1367. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1368. }
  1369. },
  1370. "notification-url": "https://packagist.org/downloads/",
  1371. "license": [
  1372. "MIT"
  1373. ],
  1374. "authors": [
  1375. {
  1376. "name": "Guilherme Blanco",
  1377. "email": "guilhermeblanco@gmail.com"
  1378. },
  1379. {
  1380. "name": "Roman Borschel",
  1381. "email": "roman@code-factory.org"
  1382. },
  1383. {
  1384. "name": "Benjamin Eberlei",
  1385. "email": "kontakt@beberlei.de"
  1386. },
  1387. {
  1388. "name": "Jonathan Wage",
  1389. "email": "jonwage@gmail.com"
  1390. },
  1391. {
  1392. "name": "Johannes Schmitt",
  1393. "email": "schmittjoh@gmail.com"
  1394. }
  1395. ],
  1396. "description": "Docblock Annotations Parser",
  1397. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1398. "keywords": [
  1399. "annotations",
  1400. "docblock",
  1401. "parser"
  1402. ],
  1403. "time": "2020-10-26T10:28:16+00:00"
  1404. },
  1405. {
  1406. "name": "doctrine/cache",
  1407. "version": "1.10.2",
  1408. "source": {
  1409. "type": "git",
  1410. "url": "https://github.com/doctrine/cache.git",
  1411. "reference": "13e3381b25847283a91948d04640543941309727"
  1412. },
  1413. "dist": {
  1414. "type": "zip",
  1415. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  1416. "reference": "13e3381b25847283a91948d04640543941309727",
  1417. "shasum": ""
  1418. },
  1419. "require": {
  1420. "php": "~7.1 || ^8.0"
  1421. },
  1422. "conflict": {
  1423. "doctrine/common": ">2.2,<2.4"
  1424. },
  1425. "require-dev": {
  1426. "alcaeus/mongo-php-adapter": "^1.1",
  1427. "doctrine/coding-standard": "^6.0",
  1428. "mongodb/mongodb": "^1.1",
  1429. "phpunit/phpunit": "^7.0",
  1430. "predis/predis": "~1.0"
  1431. },
  1432. "suggest": {
  1433. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  1434. },
  1435. "type": "library",
  1436. "extra": {
  1437. "branch-alias": {
  1438. "dev-master": "1.9.x-dev"
  1439. }
  1440. },
  1441. "autoload": {
  1442. "psr-4": {
  1443. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1444. }
  1445. },
  1446. "notification-url": "https://packagist.org/downloads/",
  1447. "license": [
  1448. "MIT"
  1449. ],
  1450. "authors": [
  1451. {
  1452. "name": "Guilherme Blanco",
  1453. "email": "guilhermeblanco@gmail.com"
  1454. },
  1455. {
  1456. "name": "Roman Borschel",
  1457. "email": "roman@code-factory.org"
  1458. },
  1459. {
  1460. "name": "Benjamin Eberlei",
  1461. "email": "kontakt@beberlei.de"
  1462. },
  1463. {
  1464. "name": "Jonathan Wage",
  1465. "email": "jonwage@gmail.com"
  1466. },
  1467. {
  1468. "name": "Johannes Schmitt",
  1469. "email": "schmittjoh@gmail.com"
  1470. }
  1471. ],
  1472. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  1473. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  1474. "keywords": [
  1475. "abstraction",
  1476. "apcu",
  1477. "cache",
  1478. "caching",
  1479. "couchdb",
  1480. "memcached",
  1481. "php",
  1482. "redis",
  1483. "xcache"
  1484. ],
  1485. "funding": [
  1486. {
  1487. "url": "https://www.doctrine-project.org/sponsorship.html",
  1488. "type": "custom"
  1489. },
  1490. {
  1491. "url": "https://www.patreon.com/phpdoctrine",
  1492. "type": "patreon"
  1493. },
  1494. {
  1495. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  1496. "type": "tidelift"
  1497. }
  1498. ],
  1499. "time": "2020-07-07T18:54:01+00:00"
  1500. },
  1501. {
  1502. "name": "doctrine/collections",
  1503. "version": "1.6.7",
  1504. "source": {
  1505. "type": "git",
  1506. "url": "https://github.com/doctrine/collections.git",
  1507. "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a"
  1508. },
  1509. "dist": {
  1510. "type": "zip",
  1511. "url": "https://api.github.com/repos/doctrine/collections/zipball/55f8b799269a1a472457bd1a41b4f379d4cfba4a",
  1512. "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a",
  1513. "shasum": ""
  1514. },
  1515. "require": {
  1516. "php": "^7.1.3 || ^8.0"
  1517. },
  1518. "require-dev": {
  1519. "doctrine/coding-standard": "^6.0",
  1520. "phpstan/phpstan-shim": "^0.9.2",
  1521. "phpunit/phpunit": "^7.0",
  1522. "vimeo/psalm": "^3.8.1"
  1523. },
  1524. "type": "library",
  1525. "autoload": {
  1526. "psr-4": {
  1527. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  1528. }
  1529. },
  1530. "notification-url": "https://packagist.org/downloads/",
  1531. "license": [
  1532. "MIT"
  1533. ],
  1534. "authors": [
  1535. {
  1536. "name": "Guilherme Blanco",
  1537. "email": "guilhermeblanco@gmail.com"
  1538. },
  1539. {
  1540. "name": "Roman Borschel",
  1541. "email": "roman@code-factory.org"
  1542. },
  1543. {
  1544. "name": "Benjamin Eberlei",
  1545. "email": "kontakt@beberlei.de"
  1546. },
  1547. {
  1548. "name": "Jonathan Wage",
  1549. "email": "jonwage@gmail.com"
  1550. },
  1551. {
  1552. "name": "Johannes Schmitt",
  1553. "email": "schmittjoh@gmail.com"
  1554. }
  1555. ],
  1556. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  1557. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  1558. "keywords": [
  1559. "array",
  1560. "collections",
  1561. "iterators",
  1562. "php"
  1563. ],
  1564. "time": "2020-07-27T17:53:49+00:00"
  1565. },
  1566. {
  1567. "name": "doctrine/common",
  1568. "version": "2.13.3",
  1569. "source": {
  1570. "type": "git",
  1571. "url": "https://github.com/doctrine/common.git",
  1572. "reference": "f3812c026e557892c34ef37f6ab808a6b567da7f"
  1573. },
  1574. "dist": {
  1575. "type": "zip",
  1576. "url": "https://api.github.com/repos/doctrine/common/zipball/f3812c026e557892c34ef37f6ab808a6b567da7f",
  1577. "reference": "f3812c026e557892c34ef37f6ab808a6b567da7f",
  1578. "shasum": ""
  1579. },
  1580. "require": {
  1581. "doctrine/annotations": "^1.0",
  1582. "doctrine/cache": "^1.0",
  1583. "doctrine/collections": "^1.0",
  1584. "doctrine/event-manager": "^1.0",
  1585. "doctrine/inflector": "^1.0",
  1586. "doctrine/lexer": "^1.0",
  1587. "doctrine/persistence": "^1.3.3",
  1588. "doctrine/reflection": "^1.0",
  1589. "php": "^7.1 || ^8.0"
  1590. },
  1591. "require-dev": {
  1592. "doctrine/coding-standard": "^1.0",
  1593. "phpstan/phpstan": "^0.11",
  1594. "phpstan/phpstan-phpunit": "^0.11",
  1595. "phpunit/phpunit": "^7.0",
  1596. "squizlabs/php_codesniffer": "^3.0",
  1597. "symfony/phpunit-bridge": "^4.0.5"
  1598. },
  1599. "type": "library",
  1600. "extra": {
  1601. "branch-alias": {
  1602. "dev-master": "2.11.x-dev"
  1603. }
  1604. },
  1605. "autoload": {
  1606. "psr-4": {
  1607. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1608. }
  1609. },
  1610. "notification-url": "https://packagist.org/downloads/",
  1611. "license": [
  1612. "MIT"
  1613. ],
  1614. "authors": [
  1615. {
  1616. "name": "Guilherme Blanco",
  1617. "email": "guilhermeblanco@gmail.com"
  1618. },
  1619. {
  1620. "name": "Roman Borschel",
  1621. "email": "roman@code-factory.org"
  1622. },
  1623. {
  1624. "name": "Benjamin Eberlei",
  1625. "email": "kontakt@beberlei.de"
  1626. },
  1627. {
  1628. "name": "Jonathan Wage",
  1629. "email": "jonwage@gmail.com"
  1630. },
  1631. {
  1632. "name": "Johannes Schmitt",
  1633. "email": "schmittjoh@gmail.com"
  1634. },
  1635. {
  1636. "name": "Marco Pivetta",
  1637. "email": "ocramius@gmail.com"
  1638. }
  1639. ],
  1640. "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.",
  1641. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1642. "keywords": [
  1643. "common",
  1644. "doctrine",
  1645. "php"
  1646. ],
  1647. "funding": [
  1648. {
  1649. "url": "https://www.doctrine-project.org/sponsorship.html",
  1650. "type": "custom"
  1651. },
  1652. {
  1653. "url": "https://www.patreon.com/phpdoctrine",
  1654. "type": "patreon"
  1655. },
  1656. {
  1657. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1658. "type": "tidelift"
  1659. }
  1660. ],
  1661. "time": "2020-06-05T16:46:05+00:00"
  1662. },
  1663. {
  1664. "name": "doctrine/event-manager",
  1665. "version": "1.1.1",
  1666. "source": {
  1667. "type": "git",
  1668. "url": "https://github.com/doctrine/event-manager.git",
  1669. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  1670. },
  1671. "dist": {
  1672. "type": "zip",
  1673. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1674. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1675. "shasum": ""
  1676. },
  1677. "require": {
  1678. "php": "^7.1 || ^8.0"
  1679. },
  1680. "conflict": {
  1681. "doctrine/common": "<2.9@dev"
  1682. },
  1683. "require-dev": {
  1684. "doctrine/coding-standard": "^6.0",
  1685. "phpunit/phpunit": "^7.0"
  1686. },
  1687. "type": "library",
  1688. "extra": {
  1689. "branch-alias": {
  1690. "dev-master": "1.0.x-dev"
  1691. }
  1692. },
  1693. "autoload": {
  1694. "psr-4": {
  1695. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1696. }
  1697. },
  1698. "notification-url": "https://packagist.org/downloads/",
  1699. "license": [
  1700. "MIT"
  1701. ],
  1702. "authors": [
  1703. {
  1704. "name": "Guilherme Blanco",
  1705. "email": "guilhermeblanco@gmail.com"
  1706. },
  1707. {
  1708. "name": "Roman Borschel",
  1709. "email": "roman@code-factory.org"
  1710. },
  1711. {
  1712. "name": "Benjamin Eberlei",
  1713. "email": "kontakt@beberlei.de"
  1714. },
  1715. {
  1716. "name": "Jonathan Wage",
  1717. "email": "jonwage@gmail.com"
  1718. },
  1719. {
  1720. "name": "Johannes Schmitt",
  1721. "email": "schmittjoh@gmail.com"
  1722. },
  1723. {
  1724. "name": "Marco Pivetta",
  1725. "email": "ocramius@gmail.com"
  1726. }
  1727. ],
  1728. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1729. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1730. "keywords": [
  1731. "event",
  1732. "event dispatcher",
  1733. "event manager",
  1734. "event system",
  1735. "events"
  1736. ],
  1737. "funding": [
  1738. {
  1739. "url": "https://www.doctrine-project.org/sponsorship.html",
  1740. "type": "custom"
  1741. },
  1742. {
  1743. "url": "https://www.patreon.com/phpdoctrine",
  1744. "type": "patreon"
  1745. },
  1746. {
  1747. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1748. "type": "tidelift"
  1749. }
  1750. ],
  1751. "time": "2020-05-29T18:28:51+00:00"
  1752. },
  1753. {
  1754. "name": "doctrine/inflector",
  1755. "version": "1.4.3",
  1756. "source": {
  1757. "type": "git",
  1758. "url": "https://github.com/doctrine/inflector.git",
  1759. "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c"
  1760. },
  1761. "dist": {
  1762. "type": "zip",
  1763. "url": "https://api.github.com/repos/doctrine/inflector/zipball/4650c8b30c753a76bf44fb2ed00117d6f367490c",
  1764. "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c",
  1765. "shasum": ""
  1766. },
  1767. "require": {
  1768. "php": "^7.2 || ^8.0"
  1769. },
  1770. "require-dev": {
  1771. "doctrine/coding-standard": "^7.0",
  1772. "phpstan/phpstan": "^0.11",
  1773. "phpstan/phpstan-phpunit": "^0.11",
  1774. "phpstan/phpstan-strict-rules": "^0.11",
  1775. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  1776. },
  1777. "type": "library",
  1778. "extra": {
  1779. "branch-alias": {
  1780. "dev-master": "2.0.x-dev"
  1781. }
  1782. },
  1783. "autoload": {
  1784. "psr-4": {
  1785. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector",
  1786. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1787. }
  1788. },
  1789. "notification-url": "https://packagist.org/downloads/",
  1790. "license": [
  1791. "MIT"
  1792. ],
  1793. "authors": [
  1794. {
  1795. "name": "Guilherme Blanco",
  1796. "email": "guilhermeblanco@gmail.com"
  1797. },
  1798. {
  1799. "name": "Roman Borschel",
  1800. "email": "roman@code-factory.org"
  1801. },
  1802. {
  1803. "name": "Benjamin Eberlei",
  1804. "email": "kontakt@beberlei.de"
  1805. },
  1806. {
  1807. "name": "Jonathan Wage",
  1808. "email": "jonwage@gmail.com"
  1809. },
  1810. {
  1811. "name": "Johannes Schmitt",
  1812. "email": "schmittjoh@gmail.com"
  1813. }
  1814. ],
  1815. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1816. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1817. "keywords": [
  1818. "inflection",
  1819. "inflector",
  1820. "lowercase",
  1821. "manipulation",
  1822. "php",
  1823. "plural",
  1824. "singular",
  1825. "strings",
  1826. "uppercase",
  1827. "words"
  1828. ],
  1829. "funding": [
  1830. {
  1831. "url": "https://www.doctrine-project.org/sponsorship.html",
  1832. "type": "custom"
  1833. },
  1834. {
  1835. "url": "https://www.patreon.com/phpdoctrine",
  1836. "type": "patreon"
  1837. },
  1838. {
  1839. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1840. "type": "tidelift"
  1841. }
  1842. ],
  1843. "time": "2020-05-29T07:19:59+00:00"
  1844. },
  1845. {
  1846. "name": "doctrine/lexer",
  1847. "version": "1.2.1",
  1848. "source": {
  1849. "type": "git",
  1850. "url": "https://github.com/doctrine/lexer.git",
  1851. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  1852. },
  1853. "dist": {
  1854. "type": "zip",
  1855. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  1856. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  1857. "shasum": ""
  1858. },
  1859. "require": {
  1860. "php": "^7.2 || ^8.0"
  1861. },
  1862. "require-dev": {
  1863. "doctrine/coding-standard": "^6.0",
  1864. "phpstan/phpstan": "^0.11.8",
  1865. "phpunit/phpunit": "^8.2"
  1866. },
  1867. "type": "library",
  1868. "extra": {
  1869. "branch-alias": {
  1870. "dev-master": "1.2.x-dev"
  1871. }
  1872. },
  1873. "autoload": {
  1874. "psr-4": {
  1875. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1876. }
  1877. },
  1878. "notification-url": "https://packagist.org/downloads/",
  1879. "license": [
  1880. "MIT"
  1881. ],
  1882. "authors": [
  1883. {
  1884. "name": "Guilherme Blanco",
  1885. "email": "guilhermeblanco@gmail.com"
  1886. },
  1887. {
  1888. "name": "Roman Borschel",
  1889. "email": "roman@code-factory.org"
  1890. },
  1891. {
  1892. "name": "Johannes Schmitt",
  1893. "email": "schmittjoh@gmail.com"
  1894. }
  1895. ],
  1896. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1897. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1898. "keywords": [
  1899. "annotations",
  1900. "docblock",
  1901. "lexer",
  1902. "parser",
  1903. "php"
  1904. ],
  1905. "funding": [
  1906. {
  1907. "url": "https://www.doctrine-project.org/sponsorship.html",
  1908. "type": "custom"
  1909. },
  1910. {
  1911. "url": "https://www.patreon.com/phpdoctrine",
  1912. "type": "patreon"
  1913. },
  1914. {
  1915. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1916. "type": "tidelift"
  1917. }
  1918. ],
  1919. "time": "2020-05-25T17:44:05+00:00"
  1920. },
  1921. {
  1922. "name": "doctrine/persistence",
  1923. "version": "1.3.8",
  1924. "source": {
  1925. "type": "git",
  1926. "url": "https://github.com/doctrine/persistence.git",
  1927. "reference": "7a6eac9fb6f61bba91328f15aa7547f4806ca288"
  1928. },
  1929. "dist": {
  1930. "type": "zip",
  1931. "url": "https://api.github.com/repos/doctrine/persistence/zipball/7a6eac9fb6f61bba91328f15aa7547f4806ca288",
  1932. "reference": "7a6eac9fb6f61bba91328f15aa7547f4806ca288",
  1933. "shasum": ""
  1934. },
  1935. "require": {
  1936. "doctrine/annotations": "^1.0",
  1937. "doctrine/cache": "^1.0",
  1938. "doctrine/collections": "^1.0",
  1939. "doctrine/event-manager": "^1.0",
  1940. "doctrine/reflection": "^1.2",
  1941. "php": "^7.1 || ^8.0"
  1942. },
  1943. "conflict": {
  1944. "doctrine/common": "<2.10@dev"
  1945. },
  1946. "require-dev": {
  1947. "doctrine/coding-standard": "^6.0",
  1948. "phpstan/phpstan": "^0.11",
  1949. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1950. "vimeo/psalm": "^3.11"
  1951. },
  1952. "type": "library",
  1953. "extra": {
  1954. "branch-alias": {
  1955. "dev-master": "1.3.x-dev"
  1956. }
  1957. },
  1958. "autoload": {
  1959. "psr-4": {
  1960. "Doctrine\\Common\\": "lib/Doctrine/Common",
  1961. "Doctrine\\Persistence\\": "lib/Doctrine/Persistence"
  1962. }
  1963. },
  1964. "notification-url": "https://packagist.org/downloads/",
  1965. "license": [
  1966. "MIT"
  1967. ],
  1968. "authors": [
  1969. {
  1970. "name": "Guilherme Blanco",
  1971. "email": "guilhermeblanco@gmail.com"
  1972. },
  1973. {
  1974. "name": "Roman Borschel",
  1975. "email": "roman@code-factory.org"
  1976. },
  1977. {
  1978. "name": "Benjamin Eberlei",
  1979. "email": "kontakt@beberlei.de"
  1980. },
  1981. {
  1982. "name": "Jonathan Wage",
  1983. "email": "jonwage@gmail.com"
  1984. },
  1985. {
  1986. "name": "Johannes Schmitt",
  1987. "email": "schmittjoh@gmail.com"
  1988. },
  1989. {
  1990. "name": "Marco Pivetta",
  1991. "email": "ocramius@gmail.com"
  1992. }
  1993. ],
  1994. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1995. "homepage": "https://doctrine-project.org/projects/persistence.html",
  1996. "keywords": [
  1997. "mapper",
  1998. "object",
  1999. "odm",
  2000. "orm",
  2001. "persistence"
  2002. ],
  2003. "funding": [
  2004. {
  2005. "url": "https://www.doctrine-project.org/sponsorship.html",
  2006. "type": "custom"
  2007. },
  2008. {
  2009. "url": "https://www.patreon.com/phpdoctrine",
  2010. "type": "patreon"
  2011. },
  2012. {
  2013. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  2014. "type": "tidelift"
  2015. }
  2016. ],
  2017. "time": "2020-06-20T12:56:16+00:00"
  2018. },
  2019. {
  2020. "name": "doctrine/reflection",
  2021. "version": "1.2.2",
  2022. "source": {
  2023. "type": "git",
  2024. "url": "https://github.com/doctrine/reflection.git",
  2025. "reference": "fa587178be682efe90d005e3a322590d6ebb59a5"
  2026. },
  2027. "dist": {
  2028. "type": "zip",
  2029. "url": "https://api.github.com/repos/doctrine/reflection/zipball/fa587178be682efe90d005e3a322590d6ebb59a5",
  2030. "reference": "fa587178be682efe90d005e3a322590d6ebb59a5",
  2031. "shasum": ""
  2032. },
  2033. "require": {
  2034. "doctrine/annotations": "^1.0",
  2035. "ext-tokenizer": "*",
  2036. "php": "^7.1 || ^8.0"
  2037. },
  2038. "conflict": {
  2039. "doctrine/common": "<2.9"
  2040. },
  2041. "require-dev": {
  2042. "doctrine/coding-standard": "^6.0 || ^8.2.0",
  2043. "doctrine/common": "^2.10",
  2044. "phpstan/phpstan": "^0.11.0 || ^0.12.20",
  2045. "phpstan/phpstan-phpunit": "^0.11.0 || ^0.12.16",
  2046. "phpunit/phpunit": "^7.5 || ^9.1.5"
  2047. },
  2048. "type": "library",
  2049. "extra": {
  2050. "branch-alias": {
  2051. "dev-master": "1.2.x-dev"
  2052. }
  2053. },
  2054. "autoload": {
  2055. "psr-4": {
  2056. "Doctrine\\Common\\": "lib/Doctrine/Common"
  2057. }
  2058. },
  2059. "notification-url": "https://packagist.org/downloads/",
  2060. "license": [
  2061. "MIT"
  2062. ],
  2063. "authors": [
  2064. {
  2065. "name": "Guilherme Blanco",
  2066. "email": "guilhermeblanco@gmail.com"
  2067. },
  2068. {
  2069. "name": "Roman Borschel",
  2070. "email": "roman@code-factory.org"
  2071. },
  2072. {
  2073. "name": "Benjamin Eberlei",
  2074. "email": "kontakt@beberlei.de"
  2075. },
  2076. {
  2077. "name": "Jonathan Wage",
  2078. "email": "jonwage@gmail.com"
  2079. },
  2080. {
  2081. "name": "Johannes Schmitt",
  2082. "email": "schmittjoh@gmail.com"
  2083. },
  2084. {
  2085. "name": "Marco Pivetta",
  2086. "email": "ocramius@gmail.com"
  2087. }
  2088. ],
  2089. "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.",
  2090. "homepage": "https://www.doctrine-project.org/projects/reflection.html",
  2091. "keywords": [
  2092. "reflection",
  2093. "static"
  2094. ],
  2095. "abandoned": "roave/better-reflection",
  2096. "time": "2020-10-27T21:46:55+00:00"
  2097. },
  2098. {
  2099. "name": "drupal/address",
  2100. "version": "1.9.0",
  2101. "source": {
  2102. "type": "git",
  2103. "url": "https://git.drupalcode.org/project/address.git",
  2104. "reference": "8.x-1.9"
  2105. },
  2106. "dist": {
  2107. "type": "zip",
  2108. "url": "https://ftp.drupal.org/files/projects/address-8.x-1.9.zip",
  2109. "reference": "8.x-1.9",
  2110. "shasum": "c7e6406d88c6d6be9e8fe0091040d67012bdbf05"
  2111. },
  2112. "require": {
  2113. "commerceguys/addressing": "^1.0.7",
  2114. "drupal/core": "^8.8 || ^9"
  2115. },
  2116. "require-dev": {
  2117. "drupal/token": "^1.0"
  2118. },
  2119. "type": "drupal-module",
  2120. "extra": {
  2121. "drupal": {
  2122. "version": "8.x-1.9",
  2123. "datestamp": "1604422821",
  2124. "security-coverage": {
  2125. "status": "covered",
  2126. "message": "Covered by Drupal's security advisory policy"
  2127. }
  2128. }
  2129. },
  2130. "notification-url": "https://packages.drupal.org/8/downloads",
  2131. "license": [
  2132. "GPL-2.0-or-later"
  2133. ],
  2134. "authors": [
  2135. {
  2136. "name": "bojanz",
  2137. "homepage": "https://www.drupal.org/user/86106"
  2138. },
  2139. {
  2140. "name": "dww",
  2141. "homepage": "https://www.drupal.org/user/46549"
  2142. },
  2143. {
  2144. "name": "googletorp",
  2145. "homepage": "https://www.drupal.org/user/386230"
  2146. },
  2147. {
  2148. "name": "jsacksick",
  2149. "homepage": "https://www.drupal.org/user/972218"
  2150. },
  2151. {
  2152. "name": "mglaman",
  2153. "homepage": "https://www.drupal.org/user/2416470"
  2154. },
  2155. {
  2156. "name": "rszrama",
  2157. "homepage": "https://www.drupal.org/user/49344"
  2158. }
  2159. ],
  2160. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  2161. "homepage": "http://drupal.org/project/address",
  2162. "support": {
  2163. "source": "https://git.drupalcode.org/project/address"
  2164. }
  2165. },
  2166. {
  2167. "name": "drupal/admin_toolbar",
  2168. "version": "2.4.0",
  2169. "source": {
  2170. "type": "git",
  2171. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  2172. "reference": "8.x-2.4"
  2173. },
  2174. "dist": {
  2175. "type": "zip",
  2176. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.4.zip",
  2177. "reference": "8.x-2.4",
  2178. "shasum": "6240047b8d91ac78f98d861ba8282af971fa0b38"
  2179. },
  2180. "require": {
  2181. "drupal/core": "^8.8.0 || ^9.0"
  2182. },
  2183. "type": "drupal-module",
  2184. "extra": {
  2185. "drupal": {
  2186. "version": "8.x-2.4",
  2187. "datestamp": "1601999178",
  2188. "security-coverage": {
  2189. "status": "covered",
  2190. "message": "Covered by Drupal's security advisory policy"
  2191. }
  2192. }
  2193. },
  2194. "notification-url": "https://packages.drupal.org/8/downloads",
  2195. "license": [
  2196. "GPL-2.0-or-later"
  2197. ],
  2198. "authors": [
  2199. {
  2200. "name": "Wilfrid Roze (eme)",
  2201. "homepage": "https://www.drupal.org/u/eme",
  2202. "role": "Maintainer"
  2203. },
  2204. {
  2205. "name": "Romain Jarraud (romainj)",
  2206. "homepage": "https://www.drupal.org/u/romainj",
  2207. "role": "Maintainer"
  2208. },
  2209. {
  2210. "name": "Adrian Cid Almaguer (adriancid)",
  2211. "homepage": "https://www.drupal.org/u/adriancid",
  2212. "email": "adriancid@gmail.com",
  2213. "role": "Maintainer"
  2214. },
  2215. {
  2216. "name": "Mohamed Anis Taktak (matio89)",
  2217. "homepage": "https://www.drupal.org/u/matio89",
  2218. "role": "Maintainer"
  2219. },
  2220. {
  2221. "name": "fethi.krout",
  2222. "homepage": "https://www.drupal.org/user/3206765"
  2223. },
  2224. {
  2225. "name": "matio89",
  2226. "homepage": "https://www.drupal.org/user/2320090"
  2227. },
  2228. {
  2229. "name": "romainj",
  2230. "homepage": "https://www.drupal.org/user/370706"
  2231. }
  2232. ],
  2233. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  2234. "homepage": "http://drupal.org/project/admin_toolbar",
  2235. "keywords": [
  2236. "Drupal",
  2237. "Toolbar"
  2238. ],
  2239. "support": {
  2240. "source": "https://git.drupalcode.org/project/admin_toolbar",
  2241. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  2242. }
  2243. },
  2244. {
  2245. "name": "drupal/adminimal_theme",
  2246. "version": "1.6.0",
  2247. "source": {
  2248. "type": "git",
  2249. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  2250. "reference": "8.x-1.6"
  2251. },
  2252. "dist": {
  2253. "type": "zip",
  2254. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.6.zip",
  2255. "reference": "8.x-1.6",
  2256. "shasum": "89132d0853388afe8dfd11fb83c69a48d8c13413"
  2257. },
  2258. "require": {
  2259. "drupal/core": "^8.8 || ^9"
  2260. },
  2261. "type": "drupal-theme",
  2262. "extra": {
  2263. "drupal": {
  2264. "version": "8.x-1.6",
  2265. "datestamp": "1602006937",
  2266. "security-coverage": {
  2267. "status": "covered",
  2268. "message": "Covered by Drupal's security advisory policy"
  2269. }
  2270. }
  2271. },
  2272. "notification-url": "https://packages.drupal.org/8/downloads",
  2273. "license": [
  2274. "GPL-2.0+"
  2275. ],
  2276. "authors": [
  2277. {
  2278. "name": "ANDiTKO",
  2279. "homepage": "https://www.drupal.org/user/1428124"
  2280. },
  2281. {
  2282. "name": "andrey.troeglazov",
  2283. "homepage": "https://www.drupal.org/user/3145389"
  2284. },
  2285. {
  2286. "name": "realityloop",
  2287. "homepage": "https://www.drupal.org/user/139189"
  2288. }
  2289. ],
  2290. "description": "Drupal administration theme with modern minimalist design.",
  2291. "homepage": "https://www.drupal.org/project/adminimal_theme",
  2292. "support": {
  2293. "source": "https://git.drupalcode.org/project/adminimal_theme",
  2294. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  2295. }
  2296. },
  2297. {
  2298. "name": "drupal/advanced_text_formatter",
  2299. "version": "2.0.0",
  2300. "source": {
  2301. "type": "git",
  2302. "url": "https://git.drupalcode.org/project/advanced_text_formatter.git",
  2303. "reference": "2.0.0"
  2304. },
  2305. "dist": {
  2306. "type": "zip",
  2307. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-2.0.0.zip",
  2308. "reference": "2.0.0",
  2309. "shasum": "ecd1d0e46dfc137251f9b71e724c6edddd5c48df"
  2310. },
  2311. "require": {
  2312. "drupal/core": "^8 || ^9"
  2313. },
  2314. "type": "drupal-module",
  2315. "extra": {
  2316. "drupal": {
  2317. "version": "2.0.0",
  2318. "datestamp": "1591030704",
  2319. "security-coverage": {
  2320. "status": "covered",
  2321. "message": "Covered by Drupal's security advisory policy"
  2322. }
  2323. }
  2324. },
  2325. "notification-url": "https://packages.drupal.org/8/downloads",
  2326. "license": [
  2327. "GPL-2.0-or-later"
  2328. ],
  2329. "authors": [
  2330. {
  2331. "name": "azovsky",
  2332. "homepage": "https://www.drupal.org/user/330533"
  2333. },
  2334. {
  2335. "name": "thmnhat",
  2336. "homepage": "https://www.drupal.org/user/998946"
  2337. }
  2338. ],
  2339. "description": "Provides an additional formatter for text field, text area and text format.",
  2340. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  2341. "support": {
  2342. "source": "https://git.drupalcode.org/project/advanced_text_formatter"
  2343. }
  2344. },
  2345. {
  2346. "name": "drupal/audiofield",
  2347. "version": "1.10.0",
  2348. "source": {
  2349. "type": "git",
  2350. "url": "https://git.drupalcode.org/project/audiofield.git",
  2351. "reference": "8.x-1.10"
  2352. },
  2353. "dist": {
  2354. "type": "zip",
  2355. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.10.zip",
  2356. "reference": "8.x-1.10",
  2357. "shasum": "0b321f6c01b77c2ff28ef8cb646af8ec223dc4c1"
  2358. },
  2359. "require": {
  2360. "drupal/core": "^8 || ^9"
  2361. },
  2362. "type": "drupal-module",
  2363. "extra": {
  2364. "drupal": {
  2365. "version": "8.x-1.10",
  2366. "datestamp": "1607014410",
  2367. "security-coverage": {
  2368. "status": "covered",
  2369. "message": "Covered by Drupal's security advisory policy"
  2370. }
  2371. },
  2372. "drush": {
  2373. "services": {
  2374. "drush.services.yml": "^9"
  2375. }
  2376. }
  2377. },
  2378. "notification-url": "https://packages.drupal.org/8/downloads",
  2379. "license": [
  2380. "GPL-2.0-or-later"
  2381. ],
  2382. "authors": [
  2383. {
  2384. "name": "Daniel Moberly",
  2385. "homepage": "https://www.drupal.org/u/danielmoberly",
  2386. "role": "Maintainer"
  2387. },
  2388. {
  2389. "name": "josipsaric",
  2390. "homepage": "https://www.drupal.org/user/3063287"
  2391. },
  2392. {
  2393. "name": "tamerzg",
  2394. "homepage": "https://www.drupal.org/user/464564"
  2395. }
  2396. ],
  2397. "description": "AudioField Module",
  2398. "homepage": "https://www.drupal.org/project/audiofield",
  2399. "support": {
  2400. "source": "https://git.drupalcode.org/project/audiofield",
  2401. "issues": "https://www.drupal.org/project/issues/audiofield"
  2402. }
  2403. },
  2404. {
  2405. "name": "drupal/autocomplete_deluxe",
  2406. "version": "2.0.0-rc1",
  2407. "source": {
  2408. "type": "git",
  2409. "url": "https://git.drupalcode.org/project/autocomplete_deluxe.git",
  2410. "reference": "2.0.0-rc1"
  2411. },
  2412. "dist": {
  2413. "type": "zip",
  2414. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-2.0.0-rc1.zip",
  2415. "reference": "2.0.0-rc1",
  2416. "shasum": "9f3c63862652862322184bb892cc1fa80c9f47c1"
  2417. },
  2418. "require": {
  2419. "drupal/core": "^8 || ^9"
  2420. },
  2421. "type": "drupal-module",
  2422. "extra": {
  2423. "drupal": {
  2424. "version": "2.0.0-rc1",
  2425. "datestamp": "1592389562",
  2426. "security-coverage": {
  2427. "status": "not-covered",
  2428. "message": "RC releases are not covered by Drupal security advisories."
  2429. }
  2430. }
  2431. },
  2432. "notification-url": "https://packages.drupal.org/8/downloads",
  2433. "license": [
  2434. "GPL-2.0-or-later"
  2435. ],
  2436. "authors": [
  2437. {
  2438. "name": "Vardot",
  2439. "homepage": "https://www.drupal.org/vardot",
  2440. "role": "Maintenance for D8 and D9 versions"
  2441. },
  2442. {
  2443. "name": "Mediacurrent",
  2444. "homepage": "https://www.drupal.org/mediacurrent",
  2445. "role": "Supporting organization"
  2446. },
  2447. {
  2448. "name": "RajabNatshah",
  2449. "homepage": "https://www.drupal.org/user/1414312"
  2450. },
  2451. {
  2452. "name": "edwardchiapet",
  2453. "homepage": "https://www.drupal.org/user/2354784"
  2454. },
  2455. {
  2456. "name": "mpriscella",
  2457. "homepage": "https://www.drupal.org/user/2354820"
  2458. },
  2459. {
  2460. "name": "sepgil",
  2461. "homepage": "https://www.drupal.org/user/512828"
  2462. }
  2463. ],
  2464. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  2465. "homepage": "https://www.drupal.org/project/autocomplete_deluxe",
  2466. "support": {
  2467. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  2468. "issues": "https://www.drupal.org/project/issues/autocomplete_deluxe"
  2469. }
  2470. },
  2471. {
  2472. "name": "drupal/autologout",
  2473. "version": "1.3.0",
  2474. "source": {
  2475. "type": "git",
  2476. "url": "https://git.drupalcode.org/project/autologout.git",
  2477. "reference": "8.x-1.3"
  2478. },
  2479. "dist": {
  2480. "type": "zip",
  2481. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.3.zip",
  2482. "reference": "8.x-1.3",
  2483. "shasum": "87733b2042d9dcdee0d8f33d206872208a8c97ea"
  2484. },
  2485. "require": {
  2486. "drupal/core": "^8 || ^9"
  2487. },
  2488. "type": "drupal-module",
  2489. "extra": {
  2490. "drupal": {
  2491. "version": "8.x-1.3",
  2492. "datestamp": "1587193798",
  2493. "security-coverage": {
  2494. "status": "covered",
  2495. "message": "Covered by Drupal's security advisory policy"
  2496. }
  2497. }
  2498. },
  2499. "notification-url": "https://packages.drupal.org/8/downloads",
  2500. "license": [
  2501. "GPL-2.0+"
  2502. ],
  2503. "authors": [
  2504. {
  2505. "name": "AjK",
  2506. "homepage": "https://www.drupal.org/user/39030"
  2507. },
  2508. {
  2509. "name": "AjitS",
  2510. "homepage": "https://www.drupal.org/user/981944"
  2511. },
  2512. {
  2513. "name": "boshtian",
  2514. "homepage": "https://www.drupal.org/user/1773456"
  2515. },
  2516. {
  2517. "name": "dandrews",
  2518. "homepage": "https://www.drupal.org/user/2014490"
  2519. },
  2520. {
  2521. "name": "darksnow",
  2522. "homepage": "https://www.drupal.org/user/391915"
  2523. },
  2524. {
  2525. "name": "johnennew",
  2526. "homepage": "https://www.drupal.org/user/1150042"
  2527. },
  2528. {
  2529. "name": "jrglasgow",
  2530. "homepage": "https://www.drupal.org/user/36590"
  2531. },
  2532. {
  2533. "name": "kmasood",
  2534. "homepage": "https://www.drupal.org/user/1262860"
  2535. },
  2536. {
  2537. "name": "levelos",
  2538. "homepage": "https://www.drupal.org/user/54135"
  2539. },
  2540. {
  2541. "name": "prabeen.giri",
  2542. "homepage": "https://www.drupal.org/user/913078"
  2543. },
  2544. {
  2545. "name": "str8",
  2546. "homepage": "https://www.drupal.org/user/2865063"
  2547. }
  2548. ],
  2549. "description": "Adds automated timed logout.",
  2550. "homepage": "http://drupal.org/project/autologout",
  2551. "support": {
  2552. "source": "https://git.drupalcode.org/project/autologout"
  2553. }
  2554. },
  2555. {
  2556. "name": "drupal/better_exposed_filters",
  2557. "version": "5.0.0-beta1",
  2558. "source": {
  2559. "type": "git",
  2560. "url": "https://git.drupalcode.org/project/better_exposed_filters.git",
  2561. "reference": "8.x-5.0-beta1"
  2562. },
  2563. "dist": {
  2564. "type": "zip",
  2565. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-8.x-5.0-beta1.zip",
  2566. "reference": "8.x-5.0-beta1",
  2567. "shasum": "bc5ce873fa699ee584fdeb2fd28ad6c5cb456b03"
  2568. },
  2569. "require": {
  2570. "drupal/core": "^8.8 || ^9",
  2571. "drupal/jquery_ui": "^1.4",
  2572. "drupal/jquery_ui_datepicker": "^1.0",
  2573. "drupal/jquery_ui_slider": "^1.1",
  2574. "drupal/jquery_ui_touch_punch": "^1.0"
  2575. },
  2576. "type": "drupal-module",
  2577. "extra": {
  2578. "drupal": {
  2579. "version": "8.x-5.0-beta1",
  2580. "datestamp": "1594141892",
  2581. "security-coverage": {
  2582. "status": "not-covered",
  2583. "message": "Beta releases are not covered by Drupal security advisories."
  2584. }
  2585. }
  2586. },
  2587. "notification-url": "https://packages.drupal.org/8/downloads",
  2588. "license": [
  2589. "GPL-2.0+"
  2590. ],
  2591. "authors": [
  2592. {
  2593. "name": "Mike Keran",
  2594. "homepage": "https://www.drupal.org/u/mikeker"
  2595. },
  2596. {
  2597. "name": "Martin Keereman",
  2598. "homepage": "https://www.drupal.org/u/etroid"
  2599. },
  2600. {
  2601. "name": "chr.fritsch",
  2602. "homepage": "https://www.drupal.org/user/2103716"
  2603. },
  2604. {
  2605. "name": "jkopel",
  2606. "homepage": "https://www.drupal.org/user/66207"
  2607. },
  2608. {
  2609. "name": "mikeker",
  2610. "homepage": "https://www.drupal.org/user/192273"
  2611. },
  2612. {
  2613. "name": "rlhawk",
  2614. "homepage": "https://www.drupal.org/user/352283"
  2615. }
  2616. ],
  2617. "description": "Replaces the Views default single- or multi-select boxes with more advanced options.",
  2618. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2619. "support": {
  2620. "source": "https://git.drupalcode.org/project/better_exposed_filters",
  2621. "issues": "https://www.drupal.org/project/issues/better_exposed_filters"
  2622. }
  2623. },
  2624. {
  2625. "name": "drupal/betterlogin",
  2626. "version": "1.5.0",
  2627. "source": {
  2628. "type": "git",
  2629. "url": "https://git.drupalcode.org/project/betterlogin.git",
  2630. "reference": "8.x-1.5"
  2631. },
  2632. "dist": {
  2633. "type": "zip",
  2634. "url": "https://ftp.drupal.org/files/projects/betterlogin-8.x-1.5.zip",
  2635. "reference": "8.x-1.5",
  2636. "shasum": "2351972813754d0d4f15e49c9a933450dc1297f0"
  2637. },
  2638. "require": {
  2639. "drupal/core": "^8 || ^9"
  2640. },
  2641. "type": "drupal-module",
  2642. "extra": {
  2643. "drupal": {
  2644. "version": "8.x-1.5",
  2645. "datestamp": "1588242718",
  2646. "security-coverage": {
  2647. "status": "covered",
  2648. "message": "Covered by Drupal's security advisory policy"
  2649. }
  2650. }
  2651. },
  2652. "notification-url": "https://packages.drupal.org/8/downloads",
  2653. "license": [
  2654. "GPL-2.0-or-later"
  2655. ],
  2656. "authors": [
  2657. {
  2658. "name": "theamoeba",
  2659. "homepage": "https://www.drupal.org/user/251700"
  2660. },
  2661. {
  2662. "name": "yogeshmpawar",
  2663. "homepage": "https://www.drupal.org/user/2922907"
  2664. }
  2665. ],
  2666. "description": "Make the login screens better :)",
  2667. "homepage": "https://www.drupal.org/project/betterlogin",
  2668. "support": {
  2669. "source": "https://git.drupalcode.org/project/betterlogin"
  2670. }
  2671. },
  2672. {
  2673. "name": "drupal/block_class",
  2674. "version": "1.3.0",
  2675. "source": {
  2676. "type": "git",
  2677. "url": "https://git.drupalcode.org/project/block_class.git",
  2678. "reference": "8.x-1.3"
  2679. },
  2680. "dist": {
  2681. "type": "zip",
  2682. "url": "https://ftp.drupal.org/files/projects/block_class-8.x-1.3.zip",
  2683. "reference": "8.x-1.3",
  2684. "shasum": "29cfdb646ef83210f0eced30b38243339158fe3f"
  2685. },
  2686. "require": {
  2687. "drupal/core": "^8 || ^9"
  2688. },
  2689. "type": "drupal-module",
  2690. "extra": {
  2691. "drupal": {
  2692. "version": "8.x-1.3",
  2693. "datestamp": "1604426178",
  2694. "security-coverage": {
  2695. "status": "covered",
  2696. "message": "Covered by Drupal's security advisory policy"
  2697. }
  2698. }
  2699. },
  2700. "notification-url": "https://packages.drupal.org/8/downloads",
  2701. "license": [
  2702. "GPL-2.0-or-later"
  2703. ],
  2704. "authors": [
  2705. {
  2706. "name": "Todd Nienkerk",
  2707. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2708. "role": "Maintainer"
  2709. },
  2710. {
  2711. "name": "Renato Gonçalves (RenatoG)",
  2712. "homepage": "https://www.drupal.org/u/RenatoG",
  2713. "email": "renatog@ciandt.com",
  2714. "role": "Maintainer"
  2715. },
  2716. {
  2717. "name": "Neslee Canil Pinto",
  2718. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  2719. "role": "Maintainer"
  2720. },
  2721. {
  2722. "name": "Aaron Stanush",
  2723. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2724. "role": "Maintainer"
  2725. },
  2726. {
  2727. "name": "David Suissa (DYdave)",
  2728. "homepage": "https://www.drupal.org/u/DYdave",
  2729. "role": "Maintainer"
  2730. },
  2731. {
  2732. "name": "Four Kitchens",
  2733. "homepage": "https://www.drupal.org/user/358502",
  2734. "role": "Maintainer"
  2735. },
  2736. {
  2737. "name": "berenddeboer",
  2738. "homepage": "https://www.drupal.org/u/berenddeboer",
  2739. "role": "Maintainer"
  2740. },
  2741. {
  2742. "name": "elliotttf",
  2743. "homepage": "https://www.drupal.org/u/elliotttf",
  2744. "role": "Maintainer"
  2745. },
  2746. {
  2747. "name": "Michal Minecki (mirzu)",
  2748. "homepage": "https://www.drupal.org/u/mirzu",
  2749. "role": "Maintainer"
  2750. },
  2751. {
  2752. "name": "Patrick Coffey (pcoffey)",
  2753. "homepage": "https://www.drupal.org/u/pcoffey",
  2754. "role": "Maintainer"
  2755. },
  2756. {
  2757. "name": "Taylor Smith (tsmith512)",
  2758. "homepage": "https://www.drupal.org/u/tsmith512",
  2759. "role": "Maintainer"
  2760. }
  2761. ],
  2762. "description": "Allows assigning classes to Blocks.",
  2763. "homepage": "https://www.drupal.org/project/block_class",
  2764. "keywords": [
  2765. "Drupal"
  2766. ],
  2767. "support": {
  2768. "source": "https://git.drupalcode.org/project/block_class",
  2769. "issues": "https://www.drupal.org/project/issues/block_class",
  2770. "irc": "irc://irc.freenode.org/drupal-contribute"
  2771. }
  2772. },
  2773. {
  2774. "name": "drupal/bulkdelete",
  2775. "version": "dev-1.x",
  2776. "source": {
  2777. "type": "git",
  2778. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2779. "reference": "36e12429e99606463b9ef15203c2018de69965b2"
  2780. },
  2781. "require": {
  2782. "drupal/core": "^8.7.7 || ^9"
  2783. },
  2784. "type": "drupal-module",
  2785. "extra": {
  2786. "branch-alias": {
  2787. "dev-1.x": "1.x-dev"
  2788. },
  2789. "drupal": {
  2790. "version": "8.x-1.x-dev",
  2791. "datestamp": "1590300128",
  2792. "security-coverage": {
  2793. "status": "not-covered",
  2794. "message": "Dev releases are not covered by Drupal security advisories."
  2795. }
  2796. }
  2797. },
  2798. "notification-url": "https://packages.drupal.org/8/downloads",
  2799. "license": [
  2800. "GPL-2.0-or-later"
  2801. ],
  2802. "authors": [
  2803. {
  2804. "name": "Kars-T",
  2805. "homepage": "https://www.drupal.org/user/224499"
  2806. },
  2807. {
  2808. "name": "Rahul Seth",
  2809. "homepage": "https://www.drupal.org/user/2694359"
  2810. },
  2811. {
  2812. "name": "adriancid",
  2813. "homepage": "https://www.drupal.org/user/1962106"
  2814. },
  2815. {
  2816. "name": "robertDouglass",
  2817. "homepage": "https://www.drupal.org/user/5449"
  2818. }
  2819. ],
  2820. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2821. "homepage": "https://www.drupal.org/project/bulkdelete",
  2822. "support": {
  2823. "source": "https://git.drupalcode.org/project/bulkdelete"
  2824. },
  2825. "time": "2020-05-24T06:01:38+00:00"
  2826. },
  2827. {
  2828. "name": "drupal/config_devel",
  2829. "version": "dev-1.x",
  2830. "source": {
  2831. "type": "git",
  2832. "url": "https://git.drupalcode.org/project/config_devel.git",
  2833. "reference": "e519faae46b88fc23a88f64c22b6146cfec863a9"
  2834. },
  2835. "require": {
  2836. "drupal/core": "^8 || ^9"
  2837. },
  2838. "type": "drupal-module",
  2839. "extra": {
  2840. "branch-alias": {
  2841. "dev-1.x": "1.x-dev"
  2842. },
  2843. "drupal": {
  2844. "version": "8.x-1.7+3-dev",
  2845. "datestamp": "1607535421",
  2846. "security-coverage": {
  2847. "status": "not-covered",
  2848. "message": "Dev releases are not covered by Drupal security advisories."
  2849. }
  2850. }
  2851. },
  2852. "notification-url": "https://packages.drupal.org/8/downloads",
  2853. "license": [
  2854. "GPL-2.0+"
  2855. ],
  2856. "authors": [
  2857. {
  2858. "name": "alexpott",
  2859. "homepage": "https://www.drupal.org/user/157725"
  2860. },
  2861. {
  2862. "name": "benjy",
  2863. "homepage": "https://www.drupal.org/user/1852732"
  2864. },
  2865. {
  2866. "name": "chx",
  2867. "homepage": "https://www.drupal.org/user/9446"
  2868. },
  2869. {
  2870. "name": "joachim",
  2871. "homepage": "https://www.drupal.org/user/107701"
  2872. },
  2873. {
  2874. "name": "nedjo",
  2875. "homepage": "https://www.drupal.org/user/4481"
  2876. },
  2877. {
  2878. "name": "tim.plunkett",
  2879. "homepage": "https://www.drupal.org/user/241634"
  2880. },
  2881. {
  2882. "name": "vijaycs85",
  2883. "homepage": "https://www.drupal.org/user/93488"
  2884. }
  2885. ],
  2886. "description": "Helps developers work with configuration.",
  2887. "homepage": "https://www.drupal.org/project/config_devel",
  2888. "support": {
  2889. "source": "https://git.drupalcode.org/project/config_devel"
  2890. },
  2891. "time": "2020-12-11T15:36:08+00:00"
  2892. },
  2893. {
  2894. "name": "drupal/config_filter",
  2895. "version": "1.8.0",
  2896. "source": {
  2897. "type": "git",
  2898. "url": "https://git.drupalcode.org/project/config_filter.git",
  2899. "reference": "8.x-1.8"
  2900. },
  2901. "dist": {
  2902. "type": "zip",
  2903. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.8.zip",
  2904. "reference": "8.x-1.8",
  2905. "shasum": "5def5f97e79d6f5af6bb7007f012443475c90bfe"
  2906. },
  2907. "require": {
  2908. "drupal/core": "^8 || ^9"
  2909. },
  2910. "suggest": {
  2911. "drupal/config_split": "Split site configuration for different environments."
  2912. },
  2913. "type": "drupal-module",
  2914. "extra": {
  2915. "drupal": {
  2916. "version": "8.x-1.8",
  2917. "datestamp": "1603870062",
  2918. "security-coverage": {
  2919. "status": "covered",
  2920. "message": "Covered by Drupal's security advisory policy"
  2921. }
  2922. }
  2923. },
  2924. "notification-url": "https://packages.drupal.org/8/downloads",
  2925. "license": [
  2926. "GPL-2.0-or-later"
  2927. ],
  2928. "authors": [
  2929. {
  2930. "name": "Fabian Bircher",
  2931. "homepage": "https://www.drupal.org/u/bircher",
  2932. "email": "opensource@fabianbircher.com",
  2933. "role": "Maintainer"
  2934. },
  2935. {
  2936. "name": "Nuvole Web",
  2937. "homepage": "http://nuvole.org",
  2938. "email": "info@nuvole.org",
  2939. "role": "Maintainer"
  2940. },
  2941. {
  2942. "name": "pescetti",
  2943. "homepage": "https://www.drupal.org/user/436244"
  2944. }
  2945. ],
  2946. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2947. "homepage": "https://www.drupal.org/project/config_filter",
  2948. "keywords": [
  2949. "Drupal",
  2950. "configuration",
  2951. "configuration management"
  2952. ],
  2953. "support": {
  2954. "source": "https://git.drupalcode.org/project/config_filter",
  2955. "issues": "https://www.drupal.org/project/issues/config_filter",
  2956. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2957. }
  2958. },
  2959. {
  2960. "name": "drupal/config_ignore",
  2961. "version": "2.3.0-rc1",
  2962. "source": {
  2963. "type": "git",
  2964. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2965. "reference": "8.x-2.3-rc1"
  2966. },
  2967. "dist": {
  2968. "type": "zip",
  2969. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.3-rc1.zip",
  2970. "reference": "8.x-2.3-rc1",
  2971. "shasum": "5debe27690960ca24ac9dca29a1314b9be89dafa"
  2972. },
  2973. "require": {
  2974. "drupal/config_filter": "^1 || ^2",
  2975. "drupal/core": "^8 || ^9"
  2976. },
  2977. "type": "drupal-module",
  2978. "extra": {
  2979. "drupal": {
  2980. "version": "8.x-2.3-rc1",
  2981. "datestamp": "1607033836",
  2982. "security-coverage": {
  2983. "status": "not-covered",
  2984. "message": "RC releases are not covered by Drupal security advisories."
  2985. }
  2986. }
  2987. },
  2988. "notification-url": "https://packages.drupal.org/8/downloads",
  2989. "license": [
  2990. "GPL-2.0-or-later"
  2991. ],
  2992. "authors": [
  2993. {
  2994. "name": "Tommy Lynge Jørgensen",
  2995. "homepage": "https://www.drupal.org/u/tlyngej",
  2996. "email": "tlyngej@gmail.com",
  2997. "role": "Maintainer"
  2998. },
  2999. {
  3000. "name": "Fabian Bircher",
  3001. "homepage": "https://www.drupal.org/u/bircher",
  3002. "role": "Maintainer"
  3003. },
  3004. {
  3005. "name": "tlyngej",
  3006. "homepage": "https://www.drupal.org/user/413139"
  3007. }
  3008. ],
  3009. "description": "Ignore certain configuration during import.",
  3010. "homepage": "http://drupal.org/project/config_ignore",
  3011. "support": {
  3012. "source": "https://git.drupalcode.org/project/config_ignore",
  3013. "issues": "http://drupal.org/project/config_ignore",
  3014. "irc": "irc://irc.freenode.org/drupal-contribute"
  3015. }
  3016. },
  3017. {
  3018. "name": "drupal/config_update",
  3019. "version": "1.7.0",
  3020. "source": {
  3021. "type": "git",
  3022. "url": "https://git.drupalcode.org/project/config_update.git",
  3023. "reference": "8.x-1.7"
  3024. },
  3025. "dist": {
  3026. "type": "zip",
  3027. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.7.zip",
  3028. "reference": "8.x-1.7",
  3029. "shasum": "8f079abf7c2ea826a27fa5224b0770a26404c968"
  3030. },
  3031. "require": {
  3032. "drupal/core": "^8 || ^9"
  3033. },
  3034. "type": "drupal-module",
  3035. "extra": {
  3036. "drupal": {
  3037. "version": "8.x-1.7",
  3038. "datestamp": "1586355587",
  3039. "security-coverage": {
  3040. "status": "covered",
  3041. "message": "Covered by Drupal's security advisory policy"
  3042. }
  3043. }
  3044. },
  3045. "notification-url": "https://packages.drupal.org/8/downloads",
  3046. "license": [
  3047. "GPL-2.0-or-later"
  3048. ],
  3049. "authors": [
  3050. {
  3051. "name": "jhodgdon",
  3052. "homepage": "https://www.drupal.org/user/155601"
  3053. },
  3054. {
  3055. "name": "nedjo",
  3056. "homepage": "https://www.drupal.org/user/4481"
  3057. }
  3058. ],
  3059. "description": "Provides basic revert and update functionality for other modules",
  3060. "homepage": "https://www.drupal.org/project/config_update",
  3061. "support": {
  3062. "source": "https://git.drupalcode.org/project/config_update"
  3063. }
  3064. },
  3065. {
  3066. "name": "drupal/console",
  3067. "version": "1.9.7",
  3068. "source": {
  3069. "type": "git",
  3070. "url": "https://github.com/hechoendrupal/drupal-console.git",
  3071. "reference": "90053d30f52427edb4e4941a9063acb65b5a2c1e"
  3072. },
  3073. "dist": {
  3074. "type": "zip",
  3075. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/90053d30f52427edb4e4941a9063acb65b5a2c1e",
  3076. "reference": "90053d30f52427edb4e4941a9063acb65b5a2c1e",
  3077. "shasum": ""
  3078. },
  3079. "require": {
  3080. "alchemy/zippy": "~0.4",
  3081. "composer/installers": "~1.0",
  3082. "doctrine/annotations": "^1.2",
  3083. "doctrine/collections": "^1.3",
  3084. "drupal/console-core": "1.9.7",
  3085. "drupal/console-extend-plugin": "~0.9.5",
  3086. "php": ">=7.0.8",
  3087. "psy/psysh": "0.6.* || ~0.8",
  3088. "symfony/css-selector": "~3.0|~4.0",
  3089. "symfony/dom-crawler": "~3.0|~4.0",
  3090. "symfony/http-foundation": "~3.0|~4.0"
  3091. },
  3092. "suggest": {
  3093. "symfony/thanks": "Thank your favorite PHP projects on GitHub using the CLI",
  3094. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically"
  3095. },
  3096. "bin": [
  3097. "bin/drupal"
  3098. ],
  3099. "type": "library",
  3100. "autoload": {
  3101. "psr-4": {
  3102. "Drupal\\Console\\": "src"
  3103. }
  3104. },
  3105. "notification-url": "https://packagist.org/downloads/",
  3106. "license": [
  3107. "GPL-2.0-or-later"
  3108. ],
  3109. "authors": [
  3110. {
  3111. "name": "David Flores",
  3112. "email": "dmousex@gmail.com",
  3113. "homepage": "http://dmouse.net"
  3114. },
  3115. {
  3116. "name": "Jesus Manuel Olivas",
  3117. "email": "jesus.olivas@gmail.com",
  3118. "homepage": "http://jmolivas.com"
  3119. },
  3120. {
  3121. "name": "Eduardo Garcia",
  3122. "email": "enzo@enzolutions.com",
  3123. "homepage": "http://enzolutions.com/"
  3124. },
  3125. {
  3126. "name": "Omar Aguirre",
  3127. "email": "omersguchigu@gmail.com"
  3128. },
  3129. {
  3130. "name": "Drupal Console Contributors",
  3131. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  3132. }
  3133. ],
  3134. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  3135. "homepage": "http://drupalconsole.com/",
  3136. "keywords": [
  3137. "console",
  3138. "development",
  3139. "drupal",
  3140. "symfony"
  3141. ],
  3142. "funding": [
  3143. {
  3144. "url": "https://opencollective.com/drupalconsole",
  3145. "type": "open_collective"
  3146. }
  3147. ],
  3148. "time": "2020-11-30T02:09:53+00:00"
  3149. },
  3150. {
  3151. "name": "drupal/console-core",
  3152. "version": "1.9.7",
  3153. "source": {
  3154. "type": "git",
  3155. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  3156. "reference": "ab3abc2631761c9588230ba88189d9ba4eb9ed63"
  3157. },
  3158. "dist": {
  3159. "type": "zip",
  3160. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/ab3abc2631761c9588230ba88189d9ba4eb9ed63",
  3161. "reference": "ab3abc2631761c9588230ba88189d9ba4eb9ed63",
  3162. "shasum": ""
  3163. },
  3164. "require": {
  3165. "dflydev/dot-access-configuration": "^1.0",
  3166. "drupal/console-en": "1.9.7",
  3167. "guzzlehttp/guzzle": "~6.1",
  3168. "php": ">=7.0.8",
  3169. "stecman/symfony-console-completion": "~0.7",
  3170. "symfony/config": "~3.0|^4.4",
  3171. "symfony/console": "~3.0|^4.4",
  3172. "symfony/debug": "~3.0|^4.4",
  3173. "symfony/dependency-injection": "~3.0|^4.4",
  3174. "symfony/event-dispatcher": "~3.0|^4.4",
  3175. "symfony/filesystem": "~3.0|^4.4",
  3176. "symfony/finder": "~3.0|^4.4",
  3177. "symfony/process": "~3.0|^4.4",
  3178. "symfony/translation": "~3.0|^4.4",
  3179. "symfony/yaml": "~3.0|^4.4",
  3180. "twig/twig": "^1.38.2|^2.12.0",
  3181. "webflo/drupal-finder": "^1.0",
  3182. "webmozart/path-util": "^2.3"
  3183. },
  3184. "type": "library",
  3185. "autoload": {
  3186. "files": [
  3187. "src/functions.php"
  3188. ],
  3189. "psr-4": {
  3190. "Drupal\\Console\\Core\\": "src"
  3191. }
  3192. },
  3193. "notification-url": "https://packagist.org/downloads/",
  3194. "license": [
  3195. "GPL-2.0-or-later"
  3196. ],
  3197. "authors": [
  3198. {
  3199. "name": "David Flores",
  3200. "email": "dmousex@gmail.com",
  3201. "homepage": "http://dmouse.net"
  3202. },
  3203. {
  3204. "name": "Jesus Manuel Olivas",
  3205. "email": "jesus.olivas@gmail.com",
  3206. "homepage": "http://jmolivas.com"
  3207. },
  3208. {
  3209. "name": "Eduardo Garcia",
  3210. "email": "enzo@enzolutions.com",
  3211. "homepage": "http://enzolutions.com/"
  3212. },
  3213. {
  3214. "name": "Omar Aguirre",
  3215. "email": "omersguchigu@gmail.com"
  3216. },
  3217. {
  3218. "name": "Drupal Console Contributors",
  3219. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3220. }
  3221. ],
  3222. "description": "Drupal Console Core",
  3223. "homepage": "http://drupalconsole.com/",
  3224. "keywords": [
  3225. "console",
  3226. "development",
  3227. "drupal",
  3228. "symfony"
  3229. ],
  3230. "time": "2020-11-30T01:45:57+00:00"
  3231. },
  3232. {
  3233. "name": "drupal/console-en",
  3234. "version": "v1.9.7",
  3235. "source": {
  3236. "type": "git",
  3237. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  3238. "reference": "7594601fff153c2799a62bd678ff80749baeee0c"
  3239. },
  3240. "dist": {
  3241. "type": "zip",
  3242. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/7594601fff153c2799a62bd678ff80749baeee0c",
  3243. "reference": "7594601fff153c2799a62bd678ff80749baeee0c",
  3244. "shasum": ""
  3245. },
  3246. "type": "library",
  3247. "notification-url": "https://packagist.org/downloads/",
  3248. "license": [
  3249. "GPL-2.0-or-later"
  3250. ],
  3251. "authors": [
  3252. {
  3253. "name": "David Flores",
  3254. "email": "dmousex@gmail.com",
  3255. "homepage": "http://dmouse.net"
  3256. },
  3257. {
  3258. "name": "Jesus Manuel Olivas",
  3259. "email": "jesus.olivas@gmail.com",
  3260. "homepage": "http://jmolivas.com"
  3261. },
  3262. {
  3263. "name": "Eduardo Garcia",
  3264. "email": "enzo@enzolutions.com",
  3265. "homepage": "http://enzolutions.com/"
  3266. },
  3267. {
  3268. "name": "Omar Aguirre",
  3269. "email": "omersguchigu@gmail.com"
  3270. },
  3271. {
  3272. "name": "Drupal Console Contributors",
  3273. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3274. }
  3275. ],
  3276. "description": "Drupal Console English Language",
  3277. "homepage": "http://drupalconsole.com/",
  3278. "keywords": [
  3279. "console",
  3280. "development",
  3281. "drupal",
  3282. "symfony"
  3283. ],
  3284. "time": "2020-08-15T03:34:54+00:00"
  3285. },
  3286. {
  3287. "name": "drupal/console-extend-plugin",
  3288. "version": "0.9.5",
  3289. "source": {
  3290. "type": "git",
  3291. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  3292. "reference": "eff6da99cfb5fe1fc60990672d2667c402eb3585"
  3293. },
  3294. "dist": {
  3295. "type": "zip",
  3296. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/eff6da99cfb5fe1fc60990672d2667c402eb3585",
  3297. "reference": "eff6da99cfb5fe1fc60990672d2667c402eb3585",
  3298. "shasum": ""
  3299. },
  3300. "require": {
  3301. "composer-plugin-api": "^1.0 || ^2.0",
  3302. "composer/installers": "^1.2",
  3303. "symfony/finder": "~3.0|^4.4",
  3304. "symfony/yaml": "~3.0|^4.4"
  3305. },
  3306. "type": "composer-plugin",
  3307. "extra": {
  3308. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  3309. },
  3310. "autoload": {
  3311. "psr-4": {
  3312. "Drupal\\Console\\Composer\\Plugin\\": "src"
  3313. }
  3314. },
  3315. "notification-url": "https://packagist.org/downloads/",
  3316. "license": [
  3317. "GPL-2.0+"
  3318. ],
  3319. "authors": [
  3320. {
  3321. "name": "Jesus Manuel Olivas",
  3322. "email": "jesus.olivas@gmail.com"
  3323. }
  3324. ],
  3325. "description": "Drupal Console Extend Plugin",
  3326. "time": "2020-11-18T00:15:28+00:00"
  3327. },
  3328. {
  3329. "name": "drupal/content_lock",
  3330. "version": "2.1.0",
  3331. "source": {
  3332. "type": "git",
  3333. "url": "https://git.drupalcode.org/project/content_lock.git",
  3334. "reference": "8.x-2.1"
  3335. },
  3336. "dist": {
  3337. "type": "zip",
  3338. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.1.zip",
  3339. "reference": "8.x-2.1",
  3340. "shasum": "a83983c8deb697cf19863153b2b8c0e1a2452c2f"
  3341. },
  3342. "require": {
  3343. "drupal/core": "^8.8|^9.0"
  3344. },
  3345. "require-dev": {
  3346. "drupal/conflict": "dev-2.x",
  3347. "drupal/prefetch_cache": "dev-1.x"
  3348. },
  3349. "type": "drupal-module",
  3350. "extra": {
  3351. "drupal": {
  3352. "version": "8.x-2.1",
  3353. "datestamp": "1591342900",
  3354. "security-coverage": {
  3355. "status": "covered",
  3356. "message": "Covered by Drupal's security advisory policy"
  3357. }
  3358. }
  3359. },
  3360. "notification-url": "https://packages.drupal.org/8/downloads",
  3361. "license": [
  3362. "GPL-2.0-or-later"
  3363. ],
  3364. "authors": [
  3365. {
  3366. "name": "chr.fritsch",
  3367. "homepage": "https://www.drupal.org/user/2103716"
  3368. },
  3369. {
  3370. "name": "ergonlogic",
  3371. "homepage": "https://www.drupal.org/user/368613"
  3372. },
  3373. {
  3374. "name": "mfb",
  3375. "homepage": "https://www.drupal.org/user/12302"
  3376. },
  3377. {
  3378. "name": "pandaski",
  3379. "homepage": "https://www.drupal.org/user/1987218"
  3380. }
  3381. ],
  3382. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  3383. "homepage": "https://www.drupal.org/project/content_lock",
  3384. "support": {
  3385. "source": "https://git.drupalcode.org/project/content_lock"
  3386. }
  3387. },
  3388. {
  3389. "name": "drupal/context",
  3390. "version": "4.0.0-beta5",
  3391. "source": {
  3392. "type": "git",
  3393. "url": "https://git.drupalcode.org/project/context.git",
  3394. "reference": "8.x-4.0-beta5"
  3395. },
  3396. "dist": {
  3397. "type": "zip",
  3398. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta5.zip",
  3399. "reference": "8.x-4.0-beta5",
  3400. "shasum": "893d7e6ce07b23764baa6fd609da811ec80c5a04"
  3401. },
  3402. "require": {
  3403. "drupal/core": "^8.8 || ^9"
  3404. },
  3405. "type": "drupal-module",
  3406. "extra": {
  3407. "drupal": {
  3408. "version": "8.x-4.0-beta5",
  3409. "datestamp": "1600783508",
  3410. "security-coverage": {
  3411. "status": "not-covered",
  3412. "message": "Beta releases are not covered by Drupal security advisories."
  3413. }
  3414. }
  3415. },
  3416. "notification-url": "https://packages.drupal.org/8/downloads",
  3417. "license": [
  3418. "MIT"
  3419. ],
  3420. "authors": [
  3421. {
  3422. "name": "Christoffer Palm",
  3423. "homepage": "http://www.oddhill.se/",
  3424. "email": "christoffer.palm@oddhill.se",
  3425. "role": "Developer"
  3426. },
  3427. {
  3428. "name": "Steven Jones",
  3429. "homepage": "https://www.drupal.org/user/99644"
  3430. },
  3431. {
  3432. "name": "alex_b",
  3433. "homepage": "https://www.drupal.org/user/53995"
  3434. },
  3435. {
  3436. "name": "boshtian",
  3437. "homepage": "https://www.drupal.org/user/1773456"
  3438. },
  3439. {
  3440. "name": "colan",
  3441. "homepage": "https://www.drupal.org/user/58704"
  3442. },
  3443. {
  3444. "name": "emanaton",
  3445. "homepage": "https://www.drupal.org/user/120853"
  3446. },
  3447. {
  3448. "name": "febbraro",
  3449. "homepage": "https://www.drupal.org/user/43670"
  3450. },
  3451. {
  3452. "name": "fizk",
  3453. "homepage": "https://www.drupal.org/user/473174"
  3454. },
  3455. {
  3456. "name": "hass",
  3457. "homepage": "https://www.drupal.org/user/85918"
  3458. },
  3459. {
  3460. "name": "hefox",
  3461. "homepage": "https://www.drupal.org/user/426416"
  3462. },
  3463. {
  3464. "name": "jmiccolis",
  3465. "homepage": "https://www.drupal.org/user/31731"
  3466. },
  3467. {
  3468. "name": "nedjo",
  3469. "homepage": "https://www.drupal.org/user/4481"
  3470. },
  3471. {
  3472. "name": "patricksettle",
  3473. "homepage": "https://www.drupal.org/user/26618"
  3474. },
  3475. {
  3476. "name": "paulocs",
  3477. "homepage": "https://www.drupal.org/user/3640109"
  3478. },
  3479. {
  3480. "name": "tekante",
  3481. "homepage": "https://www.drupal.org/user/640024"
  3482. },
  3483. {
  3484. "name": "yhahn",
  3485. "homepage": "https://www.drupal.org/user/264833"
  3486. }
  3487. ],
  3488. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3489. "homepage": "https://github.com/oddhill/context",
  3490. "keywords": [
  3491. "Drupal",
  3492. "block",
  3493. "conditions",
  3494. "context",
  3495. "visibility"
  3496. ],
  3497. "support": {
  3498. "source": "https://github.com/oddhill/context",
  3499. "issues": "https://github.com/oddhill/context/issues",
  3500. "docs": "https://github.com/oddhill/context"
  3501. }
  3502. },
  3503. {
  3504. "name": "drupal/core",
  3505. "version": "9.1.0",
  3506. "source": {
  3507. "type": "git",
  3508. "url": "https://github.com/drupal/core.git",
  3509. "reference": "de8c1769ea3d8b640e1a35c9228880d0b74ca4cc"
  3510. },
  3511. "dist": {
  3512. "type": "zip",
  3513. "url": "https://api.github.com/repos/drupal/core/zipball/de8c1769ea3d8b640e1a35c9228880d0b74ca4cc",
  3514. "reference": "de8c1769ea3d8b640e1a35c9228880d0b74ca4cc",
  3515. "shasum": ""
  3516. },
  3517. "require": {
  3518. "asm89/stack-cors": "^1.1",
  3519. "composer/semver": "^3.0",
  3520. "doctrine/annotations": "^1.4",
  3521. "doctrine/reflection": "^1.1",
  3522. "egulias/email-validator": "^2.0",
  3523. "ext-date": "*",
  3524. "ext-dom": "*",
  3525. "ext-filter": "*",
  3526. "ext-gd": "*",
  3527. "ext-hash": "*",
  3528. "ext-json": "*",
  3529. "ext-pcre": "*",
  3530. "ext-pdo": "*",
  3531. "ext-session": "*",
  3532. "ext-simplexml": "*",
  3533. "ext-spl": "*",
  3534. "ext-tokenizer": "*",
  3535. "ext-xml": "*",
  3536. "guzzlehttp/guzzle": "^6.5.2",
  3537. "laminas/laminas-diactoros": "^2.1",
  3538. "laminas/laminas-feed": "^2.12",
  3539. "masterminds/html5": "^2.1",
  3540. "pear/archive_tar": "^1.4.11",
  3541. "php": ">=7.3.0",
  3542. "psr/log": "^1.0",
  3543. "stack/builder": "^1.0",
  3544. "symfony-cmf/routing": "^2.1",
  3545. "symfony/console": "^4.4",
  3546. "symfony/dependency-injection": "^4.4",
  3547. "symfony/event-dispatcher": "^4.4",
  3548. "symfony/http-foundation": "^4.4.7",
  3549. "symfony/http-kernel": "^4.4",
  3550. "symfony/polyfill-iconv": "^1.0",
  3551. "symfony/process": "^4.4",
  3552. "symfony/psr-http-message-bridge": "^2.0",
  3553. "symfony/routing": "^4.4",
  3554. "symfony/serializer": "^4.4",
  3555. "symfony/translation": "^4.4",
  3556. "symfony/validator": "^4.4",
  3557. "symfony/yaml": "^4.4",
  3558. "twig/twig": "^2.12.0",
  3559. "typo3/phar-stream-wrapper": "^3.1.3"
  3560. },
  3561. "conflict": {
  3562. "drush/drush": "<8.1.10"
  3563. },
  3564. "replace": {
  3565. "drupal/action": "self.version",
  3566. "drupal/aggregator": "self.version",
  3567. "drupal/automated_cron": "self.version",
  3568. "drupal/ban": "self.version",
  3569. "drupal/bartik": "self.version",
  3570. "drupal/basic_auth": "self.version",
  3571. "drupal/big_pipe": "self.version",
  3572. "drupal/block": "self.version",
  3573. "drupal/block_content": "self.version",
  3574. "drupal/book": "self.version",
  3575. "drupal/breakpoint": "self.version",
  3576. "drupal/ckeditor": "self.version",
  3577. "drupal/claro": "self.version",
  3578. "drupal/classy": "self.version",
  3579. "drupal/color": "self.version",
  3580. "drupal/comment": "self.version",
  3581. "drupal/config": "self.version",
  3582. "drupal/config_translation": "self.version",
  3583. "drupal/contact": "self.version",
  3584. "drupal/content_moderation": "self.version",
  3585. "drupal/content_translation": "self.version",
  3586. "drupal/contextual": "self.version",
  3587. "drupal/core-annotation": "self.version",
  3588. "drupal/core-assertion": "self.version",
  3589. "drupal/core-bridge": "self.version",
  3590. "drupal/core-class-finder": "self.version",
  3591. "drupal/core-datetime": "self.version",
  3592. "drupal/core-dependency-injection": "self.version",
  3593. "drupal/core-diff": "self.version",
  3594. "drupal/core-discovery": "self.version",
  3595. "drupal/core-event-dispatcher": "self.version",
  3596. "drupal/core-file-cache": "self.version",
  3597. "drupal/core-file-security": "self.version",
  3598. "drupal/core-filesystem": "self.version",
  3599. "drupal/core-front-matter": "self.version",
  3600. "drupal/core-gettext": "self.version",
  3601. "drupal/core-graph": "self.version",
  3602. "drupal/core-http-foundation": "self.version",
  3603. "drupal/core-php-storage": "self.version",
  3604. "drupal/core-plugin": "self.version",
  3605. "drupal/core-proxy-builder": "self.version",
  3606. "drupal/core-render": "self.version",
  3607. "drupal/core-serialization": "self.version",
  3608. "drupal/core-transliteration": "self.version",
  3609. "drupal/core-utility": "self.version",
  3610. "drupal/core-uuid": "self.version",
  3611. "drupal/core-version": "self.version",
  3612. "drupal/datetime": "self.version",
  3613. "drupal/datetime_range": "self.version",
  3614. "drupal/dblog": "self.version",
  3615. "drupal/dynamic_page_cache": "self.version",
  3616. "drupal/editor": "self.version",
  3617. "drupal/entity_reference": "self.version",
  3618. "drupal/field": "self.version",
  3619. "drupal/field_layout": "self.version",
  3620. "drupal/field_ui": "self.version",
  3621. "drupal/file": "self.version",
  3622. "drupal/filter": "self.version",
  3623. "drupal/forum": "self.version",
  3624. "drupal/hal": "self.version",
  3625. "drupal/help": "self.version",
  3626. "drupal/help_topics": "self.version",
  3627. "drupal/history": "self.version",
  3628. "drupal/image": "self.version",
  3629. "drupal/inline_form_errors": "self.version",
  3630. "drupal/jsonapi": "self.version",
  3631. "drupal/language": "self.version",
  3632. "drupal/layout_builder": "self.version",
  3633. "drupal/layout_discovery": "self.version",
  3634. "drupal/link": "self.version",
  3635. "drupal/locale": "self.version",
  3636. "drupal/media": "self.version",
  3637. "drupal/media_library": "self.version",
  3638. "drupal/menu_link_content": "self.version",
  3639. "drupal/menu_ui": "self.version",
  3640. "drupal/migrate": "self.version",
  3641. "drupal/migrate_drupal": "self.version",
  3642. "drupal/migrate_drupal_multilingual": "self.version",
  3643. "drupal/migrate_drupal_ui": "self.version",
  3644. "drupal/minimal": "self.version",
  3645. "drupal/node": "self.version",
  3646. "drupal/olivero": "self.version",
  3647. "drupal/options": "self.version",
  3648. "drupal/page_cache": "self.version",
  3649. "drupal/path": "self.version",
  3650. "drupal/path_alias": "self.version",
  3651. "drupal/quickedit": "self.version",
  3652. "drupal/rdf": "self.version",
  3653. "drupal/responsive_image": "self.version",
  3654. "drupal/rest": "self.version",
  3655. "drupal/search": "self.version",
  3656. "drupal/serialization": "self.version",
  3657. "drupal/settings_tray": "self.version",
  3658. "drupal/seven": "self.version",
  3659. "drupal/shortcut": "self.version",
  3660. "drupal/standard": "self.version",
  3661. "drupal/stark": "self.version",
  3662. "drupal/statistics": "self.version",
  3663. "drupal/syslog": "self.version",
  3664. "drupal/system": "self.version",
  3665. "drupal/taxonomy": "self.version",
  3666. "drupal/telephone": "self.version",
  3667. "drupal/text": "self.version",
  3668. "drupal/toolbar": "self.version",
  3669. "drupal/tour": "self.version",
  3670. "drupal/tracker": "self.version",
  3671. "drupal/update": "self.version",
  3672. "drupal/user": "self.version",
  3673. "drupal/views": "self.version",
  3674. "drupal/views_ui": "self.version",
  3675. "drupal/workflows": "self.version",
  3676. "drupal/workspaces": "self.version"
  3677. },
  3678. "type": "drupal-core",
  3679. "extra": {
  3680. "drupal-scaffold": {
  3681. "file-mapping": {
  3682. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  3683. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  3684. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  3685. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  3686. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  3687. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  3688. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  3689. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  3690. "[web-root]/index.php": "assets/scaffold/files/index.php",
  3691. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  3692. "[web-root]/README.txt": "assets/scaffold/files/drupal.README.txt",
  3693. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  3694. "[web-root]/update.php": "assets/scaffold/files/update.php",
  3695. "[web-root]/web.config": "assets/scaffold/files/web.config",
  3696. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  3697. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  3698. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  3699. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  3700. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  3701. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  3702. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  3703. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  3704. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  3705. }
  3706. },
  3707. "patches_applied": {
  3708. "https://www.drupal.org/project/drupal/issues/2943172": "https://www.drupal.org/files/issues/2018-07-05/2943172-kernel-test-base-3.patch"
  3709. }
  3710. },
  3711. "autoload": {
  3712. "psr-4": {
  3713. "Drupal\\Core\\": "lib/Drupal/Core",
  3714. "Drupal\\Component\\": "lib/Drupal/Component",
  3715. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
  3716. },
  3717. "classmap": [
  3718. "lib/Drupal.php",
  3719. "lib/Drupal/Component/DependencyInjection/Container.php",
  3720. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  3721. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  3722. "lib/Drupal/Component/Utility/Timer.php",
  3723. "lib/Drupal/Component/Utility/Unicode.php",
  3724. "lib/Drupal/Core/Cache/Cache.php",
  3725. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  3726. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  3727. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  3728. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  3729. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  3730. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  3731. "lib/Drupal/Core/Database/Connection.php",
  3732. "lib/Drupal/Core/Database/Database.php",
  3733. "lib/Drupal/Core/Database/Driver/mysql/Connection.php",
  3734. "lib/Drupal/Core/Database/Driver/pgsql/Connection.php",
  3735. "lib/Drupal/Core/Database/Driver/sqlite/Connection.php",
  3736. "lib/Drupal/Core/Database/Statement.php",
  3737. "lib/Drupal/Core/Database/StatementInterface.php",
  3738. "lib/Drupal/Core/DependencyInjection/Container.php",
  3739. "lib/Drupal/Core/DrupalKernel.php",
  3740. "lib/Drupal/Core/DrupalKernelInterface.php",
  3741. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  3742. "lib/Drupal/Core/Site/Settings.php"
  3743. ],
  3744. "files": [
  3745. "includes/bootstrap.inc"
  3746. ]
  3747. },
  3748. "notification-url": "https://packagist.org/downloads/",
  3749. "license": [
  3750. "GPL-2.0-or-later"
  3751. ],
  3752. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3753. "time": "2020-12-02T18:11:58+00:00"
  3754. },
  3755. {
  3756. "name": "drupal/core-composer-scaffold",
  3757. "version": "9.1.0",
  3758. "source": {
  3759. "type": "git",
  3760. "url": "https://github.com/drupal/core-composer-scaffold.git",
  3761. "reference": "7b125516d6568b888945ee03ac2636dcced76e8d"
  3762. },
  3763. "dist": {
  3764. "type": "zip",
  3765. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/7b125516d6568b888945ee03ac2636dcced76e8d",
  3766. "reference": "7b125516d6568b888945ee03ac2636dcced76e8d",
  3767. "shasum": ""
  3768. },
  3769. "require": {
  3770. "composer-plugin-api": "^1 || ^2",
  3771. "php": ">=7.3.0"
  3772. },
  3773. "conflict": {
  3774. "drupal-composer/drupal-scaffold": "*"
  3775. },
  3776. "require-dev": {
  3777. "composer/composer": "^1.8@stable"
  3778. },
  3779. "type": "composer-plugin",
  3780. "extra": {
  3781. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  3782. "branch-alias": {
  3783. "dev-master": "1.0.x-dev"
  3784. }
  3785. },
  3786. "autoload": {
  3787. "psr-4": {
  3788. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  3789. }
  3790. },
  3791. "license": [
  3792. "GPL-2.0-or-later"
  3793. ],
  3794. "description": "A flexible Composer project scaffold builder.",
  3795. "homepage": "https://www.drupal.org/project/drupal",
  3796. "keywords": [
  3797. "drupal"
  3798. ]
  3799. },
  3800. {
  3801. "name": "drupal/core-project-message",
  3802. "version": "9.1.0",
  3803. "source": {
  3804. "type": "git",
  3805. "url": "https://github.com/drupal/core-project-message.git",
  3806. "reference": "812d6da43dd49cc210af62e80fa92189e68e565a"
  3807. },
  3808. "dist": {
  3809. "type": "zip",
  3810. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/812d6da43dd49cc210af62e80fa92189e68e565a",
  3811. "reference": "812d6da43dd49cc210af62e80fa92189e68e565a",
  3812. "shasum": ""
  3813. },
  3814. "require": {
  3815. "composer-plugin-api": "^1.1 || ^2",
  3816. "php": ">=7.3.0"
  3817. },
  3818. "type": "composer-plugin",
  3819. "extra": {
  3820. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  3821. },
  3822. "autoload": {
  3823. "psr-4": {
  3824. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  3825. }
  3826. },
  3827. "license": [
  3828. "GPL-2.0-or-later"
  3829. ],
  3830. "description": "Adds a message after Composer installation.",
  3831. "homepage": "https://www.drupal.org/project/drupal",
  3832. "keywords": [
  3833. "drupal"
  3834. ]
  3835. },
  3836. {
  3837. "name": "drupal/core-recommended",
  3838. "version": "9.1.0",
  3839. "source": {
  3840. "type": "git",
  3841. "url": "https://github.com/drupal/core-recommended.git",
  3842. "reference": "0e9d5f06c35fc4365864a6395812e6422ecdd62d"
  3843. },
  3844. "dist": {
  3845. "type": "zip",
  3846. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/0e9d5f06c35fc4365864a6395812e6422ecdd62d",
  3847. "reference": "0e9d5f06c35fc4365864a6395812e6422ecdd62d",
  3848. "shasum": ""
  3849. },
  3850. "require": {
  3851. "asm89/stack-cors": "1.3.0",
  3852. "composer/semver": "3.2.2",
  3853. "doctrine/annotations": "1.11.1",
  3854. "doctrine/lexer": "1.2.1",
  3855. "doctrine/reflection": "1.2.2",
  3856. "drupal/core": "9.1.0",
  3857. "egulias/email-validator": "2.1.22",
  3858. "guzzlehttp/guzzle": "6.5.5",
  3859. "guzzlehttp/promises": "1.4.0",
  3860. "guzzlehttp/psr7": "1.7.0",
  3861. "laminas/laminas-diactoros": "2.5.0",
  3862. "laminas/laminas-escaper": "2.7.0",
  3863. "laminas/laminas-feed": "2.13.0",
  3864. "laminas/laminas-stdlib": "3.3.0",
  3865. "laminas/laminas-zendframework-bridge": "1.1.1",
  3866. "masterminds/html5": "2.7.4",
  3867. "pear/archive_tar": "1.4.11",
  3868. "pear/console_getopt": "v1.4.3",
  3869. "pear/pear-core-minimal": "v1.10.10",
  3870. "pear/pear_exception": "v1.0.1",
  3871. "psr/container": "1.0.0",
  3872. "psr/http-factory": "1.0.1",
  3873. "psr/http-message": "1.0.1",
  3874. "psr/log": "1.1.3",
  3875. "ralouphie/getallheaders": "3.0.3",
  3876. "stack/builder": "v1.0.6",
  3877. "symfony-cmf/routing": "2.3.3",
  3878. "symfony/console": "v4.4.16",
  3879. "symfony/debug": "v4.4.16",
  3880. "symfony/dependency-injection": "v4.4.16",
  3881. "symfony/error-handler": "v4.4.16",
  3882. "symfony/event-dispatcher": "v4.4.16",
  3883. "symfony/event-dispatcher-contracts": "v1.1.9",
  3884. "symfony/http-client-contracts": "v2.3.1",
  3885. "symfony/http-foundation": "v4.4.16",
  3886. "symfony/http-kernel": "v4.4.16",
  3887. "symfony/mime": "v5.1.8",
  3888. "symfony/polyfill-ctype": "v1.20.0",
  3889. "symfony/polyfill-iconv": "v1.20.0",
  3890. "symfony/polyfill-intl-idn": "v1.20.0",
  3891. "symfony/polyfill-intl-normalizer": "v1.20.0",
  3892. "symfony/polyfill-mbstring": "v1.20.0",
  3893. "symfony/polyfill-php80": "v1.20.0",
  3894. "symfony/process": "v4.4.16",
  3895. "symfony/psr-http-message-bridge": "v2.0.2",
  3896. "symfony/routing": "v4.4.16",
  3897. "symfony/serializer": "v4.4.16",
  3898. "symfony/service-contracts": "v2.2.0",
  3899. "symfony/translation": "v4.4.16",
  3900. "symfony/translation-contracts": "v2.3.0",
  3901. "symfony/validator": "v4.4.16",
  3902. "symfony/var-dumper": "v5.1.8",
  3903. "symfony/yaml": "v4.4.16",
  3904. "twig/twig": "v2.14.1",
  3905. "typo3/phar-stream-wrapper": "v3.1.6"
  3906. },
  3907. "conflict": {
  3908. "webflo/drupal-core-strict": "*"
  3909. },
  3910. "type": "metapackage",
  3911. "license": [
  3912. "GPL-2.0-or-later"
  3913. ],
  3914. "description": "Locked core dependencies; require this project INSTEAD OF drupal/core."
  3915. },
  3916. {
  3917. "name": "drupal/cshs",
  3918. "version": "dev-1.x",
  3919. "source": {
  3920. "type": "git",
  3921. "url": "https://git.drupalcode.org/project/cshs.git",
  3922. "reference": "537e7fef494c71cfa59d8d90849cbf1beee80e49"
  3923. },
  3924. "require": {
  3925. "drupal/core": "^8 || ^9"
  3926. },
  3927. "type": "drupal-module",
  3928. "extra": {
  3929. "branch-alias": {
  3930. "dev-1.x": "1.x-dev"
  3931. },
  3932. "drupal": {
  3933. "version": "8.x-1.2+4-dev",
  3934. "datestamp": "1607678639",
  3935. "security-coverage": {
  3936. "status": "not-covered",
  3937. "message": "Dev releases are not covered by Drupal security advisories."
  3938. }
  3939. }
  3940. },
  3941. "notification-url": "https://packages.drupal.org/8/downloads",
  3942. "license": [
  3943. "GPL-2.0-or-later"
  3944. ],
  3945. "authors": [
  3946. {
  3947. "name": "Walter Jenner",
  3948. "homepage": "https://drupal.org/u/valderama"
  3949. },
  3950. {
  3951. "name": "Sergii Bondarenko",
  3952. "homepage": "https://drupal.org/u/BR0kEN",
  3953. "email": "sb@firstvector.org"
  3954. },
  3955. {
  3956. "name": "Daneel Cruz",
  3957. "homepage": "https://drupal.org/u/daneelcm"
  3958. },
  3959. {
  3960. "name": "Purushotam Rai",
  3961. "homepage": "https://drupal.org/u/purushotam.rai"
  3962. }
  3963. ],
  3964. "description": "A simple client-side hierarchical select widget for taxonomy terms.",
  3965. "homepage": "https://www.drupal.org/project/cshs",
  3966. "keywords": [
  3967. "client-side-select",
  3968. "hierarchical-select",
  3969. "module",
  3970. "select",
  3971. "taxonomy"
  3972. ],
  3973. "support": {
  3974. "source": "https://git.drupalcode.org/project/cshs",
  3975. "issues": "https://www.drupal.org/project/issues/cshs"
  3976. },
  3977. "time": "2020-12-11T09:23:35+00:00"
  3978. },
  3979. {
  3980. "name": "drupal/ctools",
  3981. "version": "3.4.0",
  3982. "source": {
  3983. "type": "git",
  3984. "url": "https://git.drupalcode.org/project/ctools.git",
  3985. "reference": "8.x-3.4"
  3986. },
  3987. "dist": {
  3988. "type": "zip",
  3989. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.4.zip",
  3990. "reference": "8.x-3.4",
  3991. "shasum": "016ca5abb7ac4ca720352a72e8989f3ef0e20539"
  3992. },
  3993. "require": {
  3994. "drupal/core": "^8.7.7 || ^9"
  3995. },
  3996. "type": "drupal-module",
  3997. "extra": {
  3998. "drupal": {
  3999. "version": "8.x-3.4",
  4000. "datestamp": "1585763383",
  4001. "security-coverage": {
  4002. "status": "covered",
  4003. "message": "Covered by Drupal's security advisory policy"
  4004. }
  4005. }
  4006. },
  4007. "notification-url": "https://packages.drupal.org/8/downloads",
  4008. "license": [
  4009. "GPL-2.0+"
  4010. ],
  4011. "authors": [
  4012. {
  4013. "name": "Kris Vanderwater (EclipseGc)",
  4014. "homepage": "https://www.drupal.org/u/eclipsegc",
  4015. "role": "Maintainer"
  4016. },
  4017. {
  4018. "name": "Jakob Perry (japerry)",
  4019. "homepage": "https://www.drupal.org/u/japerry",
  4020. "role": "Maintainer"
  4021. },
  4022. {
  4023. "name": "Tim Plunkett (tim.plunkett)",
  4024. "homepage": "https://www.drupal.org/u/timplunkett",
  4025. "role": "Maintainer"
  4026. },
  4027. {
  4028. "name": "James Gilliland (neclimdul)",
  4029. "homepage": "https://www.drupal.org/u/neclimdul",
  4030. "role": "Maintainer"
  4031. },
  4032. {
  4033. "name": "Daniel Wehner (dawehner)",
  4034. "homepage": "https://www.drupal.org/u/dawehner",
  4035. "role": "Maintainer"
  4036. },
  4037. {
  4038. "name": "joelpittet",
  4039. "homepage": "https://www.drupal.org/user/160302"
  4040. },
  4041. {
  4042. "name": "merlinofchaos",
  4043. "homepage": "https://www.drupal.org/user/26979"
  4044. },
  4045. {
  4046. "name": "neclimdul",
  4047. "homepage": "https://www.drupal.org/user/48673"
  4048. },
  4049. {
  4050. "name": "sdboyer",
  4051. "homepage": "https://www.drupal.org/user/146719"
  4052. },
  4053. {
  4054. "name": "sun",
  4055. "homepage": "https://www.drupal.org/user/54136"
  4056. },
  4057. {
  4058. "name": "tim.plunkett",
  4059. "homepage": "https://www.drupal.org/user/241634"
  4060. }
  4061. ],
  4062. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  4063. "homepage": "https://www.drupal.org/project/ctools",
  4064. "support": {
  4065. "source": "https://git.drupalcode.org/project/ctools",
  4066. "issues": "https://www.drupal.org/project/issues/ctools"
  4067. }
  4068. },
  4069. {
  4070. "name": "drupal/date_range_formatter",
  4071. "version": "dev-9.0.x",
  4072. "source": {
  4073. "type": "git",
  4074. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  4075. "reference": "c34acb20c37e6210099bf3080352a6da7227b867"
  4076. },
  4077. "require": {
  4078. "drupal/core": "^8 || ^9"
  4079. },
  4080. "type": "drupal-module",
  4081. "extra": {
  4082. "branch-alias": {
  4083. "dev-9.0.x": "9.0.x-dev"
  4084. },
  4085. "drupal": {
  4086. "version": "9.0.x-dev",
  4087. "datestamp": "1589956448",
  4088. "security-coverage": {
  4089. "status": "not-covered",
  4090. "message": "Dev releases are not covered by Drupal security advisories."
  4091. }
  4092. }
  4093. },
  4094. "notification-url": "https://packages.drupal.org/8/downloads",
  4095. "license": [
  4096. "GPL-2.0-or-later"
  4097. ],
  4098. "authors": [
  4099. {
  4100. "name": "maximpodorov",
  4101. "homepage": "https://www.drupal.org/user/515310"
  4102. },
  4103. {
  4104. "name": "sudishth",
  4105. "homepage": "https://www.drupal.org/user/1440562"
  4106. }
  4107. ],
  4108. "description": "Formats date ranges.",
  4109. "homepage": "https://www.drupal.org/project/date_range_formatter",
  4110. "support": {
  4111. "source": "https://git.drupalcode.org/project/date_range_formatter"
  4112. },
  4113. "time": "2020-05-20T06:32:37+00:00"
  4114. },
  4115. {
  4116. "name": "drupal/devel",
  4117. "version": "4.0.1",
  4118. "source": {
  4119. "type": "git",
  4120. "url": "https://git.drupalcode.org/project/devel.git",
  4121. "reference": "4.0.1"
  4122. },
  4123. "dist": {
  4124. "type": "zip",
  4125. "url": "https://ftp.drupal.org/files/projects/devel-4.0.1.zip",
  4126. "reference": "4.0.1",
  4127. "shasum": "cf2458de1cbac00a88ed26ae3da2cf331e1bc047"
  4128. },
  4129. "require": {
  4130. "doctrine/common": "^2.7",
  4131. "drupal/core": "^8.8 || ^9",
  4132. "symfony/var-dumper": "^4 || ^5"
  4133. },
  4134. "conflict": {
  4135. "kint-php/kint": "<3"
  4136. },
  4137. "require-dev": {
  4138. "composer/installers": "^1",
  4139. "cweagans/composer-patches": "~1.0",
  4140. "drupal/core-composer-scaffold": "^8.0",
  4141. "drupal/core-dev": "^8.0",
  4142. "drupal/core-recommended": "^8.0",
  4143. "drush/drush": "^10",
  4144. "mglaman/phpstan-drupal": "^0.12",
  4145. "php-parallel-lint/php-parallel-lint": "^1.2",
  4146. "phpstan/phpstan-deprecation-rules": "^0.12",
  4147. "zaporylie/composer-drupal-optimizations": "^1.0"
  4148. },
  4149. "suggest": {
  4150. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  4151. },
  4152. "type": "drupal-module",
  4153. "extra": {
  4154. "drupal": {
  4155. "version": "4.0.1",
  4156. "datestamp": "1600300079",
  4157. "security-coverage": {
  4158. "status": "covered",
  4159. "message": "Covered by Drupal's security advisory policy"
  4160. }
  4161. },
  4162. "installer-paths": {
  4163. "web/core": [
  4164. "type:drupal-core"
  4165. ],
  4166. "web/libraries/{$name}": [
  4167. "type:drupal-library"
  4168. ],
  4169. "web/modules/contrib/{$name}": [
  4170. "type:drupal-module"
  4171. ],
  4172. "web/profiles/{$name}": [
  4173. "type:drupal-profile"
  4174. ],
  4175. "web/themes/{$name}": [
  4176. "type:drupal-theme"
  4177. ],
  4178. "drush/{$name}": [
  4179. "type:drupal-drush"
  4180. ]
  4181. },
  4182. "drupal-scaffold": {
  4183. "locations": {
  4184. "web-root": "web/"
  4185. }
  4186. },
  4187. "drush": {
  4188. "services": {
  4189. "drush.services.yml": "^9 || ^10"
  4190. }
  4191. }
  4192. },
  4193. "autoload": {
  4194. "classmap": [
  4195. ".spoons/ScriptHandler.php"
  4196. ]
  4197. },
  4198. "notification-url": "https://packages.drupal.org/8/downloads",
  4199. "scripts": {
  4200. "si": [
  4201. "drush si -v --db-url=${SIMPLETEST_DB:-mysql://root:password@mariadb/db}"
  4202. ],
  4203. "phpcs": [
  4204. "phpcs --runtime-set ignore_warnings_on_exit 1 --runtime-set ignore_errors_on_exit 1 web/modules/custom"
  4205. ],
  4206. "lint": [
  4207. "parallel-lint --exclude web --exclude vendor ."
  4208. ],
  4209. "webserver": [
  4210. "cd web && php -S 0.0.0.0:8888 .ht.router.php"
  4211. ],
  4212. "chromedriver": [
  4213. "chromedriver --port=9515 --verbose --whitelisted-ips --log-path=/tmp/chromedriver.log --no-sandbox"
  4214. ],
  4215. "unit": [
  4216. "phpunit --verbose web/modules/custom"
  4217. ],
  4218. "phpstan": [
  4219. "phpstan analyse web/modules/custom"
  4220. ],
  4221. "stylelint": [
  4222. "yarn --silent --cwd web/core stylelint --formatter verbose --config ./.stylelintrc.json ../modules/custom/**/*.css"
  4223. ],
  4224. "eslint": [
  4225. "yarn --silent --cwd web/core eslint -c ./.eslintrc.json ../modules/custom"
  4226. ],
  4227. "post-update-cmd": [
  4228. "Spoons\\ScriptHandler::createSymlinks"
  4229. ]
  4230. },
  4231. "license": [
  4232. "GPL-2.0-or-later"
  4233. ],
  4234. "authors": [
  4235. {
  4236. "name": "drupalspoons",
  4237. "homepage": "https://www.drupal.org/user/3647684"
  4238. },
  4239. {
  4240. "name": "moshe weitzman",
  4241. "homepage": "https://www.drupal.org/user/23"
  4242. }
  4243. ],
  4244. "description": "Various blocks, pages, and functions for developers.",
  4245. "homepage": "https://www.drupal.org/project/devel",
  4246. "support": {
  4247. "source": "https://gitlab.com/drupalspoons/devel",
  4248. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  4249. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  4250. }
  4251. },
  4252. {
  4253. "name": "drupal/domain",
  4254. "version": "dev-1.x",
  4255. "source": {
  4256. "type": "git",
  4257. "url": "https://git.drupalcode.org/project/domain.git",
  4258. "reference": "bb4973dd3d7ecee279dcf521c05eb6a5589cf05b"
  4259. },
  4260. "require": {
  4261. "drupal/core": "^8 || ^9"
  4262. },
  4263. "require-dev": {
  4264. "drupal/domain_access": "*",
  4265. "drupal/domain_config": "*"
  4266. },
  4267. "type": "drupal-module",
  4268. "extra": {
  4269. "branch-alias": {
  4270. "dev-1.x": "1.x-dev"
  4271. },
  4272. "drupal": {
  4273. "version": "8.x-1.x-dev",
  4274. "datestamp": "1603119924",
  4275. "security-coverage": {
  4276. "status": "not-covered",
  4277. "message": "Dev releases are not covered by Drupal security advisories."
  4278. }
  4279. }
  4280. },
  4281. "notification-url": "https://packages.drupal.org/8/downloads",
  4282. "license": [
  4283. "GPL-2.0-or-later"
  4284. ],
  4285. "authors": [
  4286. {
  4287. "name": "agentrickard",
  4288. "homepage": "https://www.drupal.org/user/20975"
  4289. },
  4290. {
  4291. "name": "nonsie",
  4292. "homepage": "https://www.drupal.org/user/29899"
  4293. }
  4294. ],
  4295. "description": "Creates domain records within a Drupal installation.",
  4296. "homepage": "https://www.drupal.org/project/domain",
  4297. "support": {
  4298. "source": "https://git.drupalcode.org/project/domain"
  4299. },
  4300. "time": "2020-11-18T18:57:19+00:00"
  4301. },
  4302. {
  4303. "name": "drupal/domain_alias",
  4304. "version": "dev-1.x",
  4305. "require": {
  4306. "drupal/core": "^8 || ^9",
  4307. "drupal/domain": "*"
  4308. },
  4309. "type": "metapackage",
  4310. "extra": {
  4311. "branch-alias": {
  4312. "dev-1.x": "1.x-dev"
  4313. },
  4314. "drupal": {
  4315. "version": "8.x-1.x-dev",
  4316. "datestamp": "1603119924",
  4317. "security-coverage": {
  4318. "status": "not-covered",
  4319. "message": "Dev releases are not covered by Drupal security advisories."
  4320. }
  4321. }
  4322. },
  4323. "notification-url": "https://packages.drupal.org/8/downloads",
  4324. "license": [
  4325. "GPL-2.0-or-later"
  4326. ],
  4327. "authors": [
  4328. {
  4329. "name": "agentrickard",
  4330. "homepage": "https://www.drupal.org/user/20975"
  4331. },
  4332. {
  4333. "name": "nonsie",
  4334. "homepage": "https://www.drupal.org/user/29899"
  4335. }
  4336. ],
  4337. "description": "Maps multiple host requests to a single domain record.",
  4338. "homepage": "https://www.drupal.org/project/domain",
  4339. "support": {
  4340. "source": "https://git.drupalcode.org/project/domain"
  4341. }
  4342. },
  4343. {
  4344. "name": "drupal/domain_config",
  4345. "version": "dev-1.x",
  4346. "require": {
  4347. "drupal/core": "^8 || ^9",
  4348. "drupal/domain": "*"
  4349. },
  4350. "type": "metapackage",
  4351. "extra": {
  4352. "branch-alias": {
  4353. "dev-1.x": "1.x-dev"
  4354. },
  4355. "drupal": {
  4356. "version": "8.x-1.x-dev",
  4357. "datestamp": "1603119924",
  4358. "security-coverage": {
  4359. "status": "not-covered",
  4360. "message": "Dev releases are not covered by Drupal security advisories."
  4361. }
  4362. }
  4363. },
  4364. "notification-url": "https://packages.drupal.org/8/downloads",
  4365. "license": [
  4366. "GPL-2.0-or-later"
  4367. ],
  4368. "authors": [
  4369. {
  4370. "name": "agentrickard",
  4371. "homepage": "https://www.drupal.org/user/20975"
  4372. },
  4373. {
  4374. "name": "nonsie",
  4375. "homepage": "https://www.drupal.org/user/29899"
  4376. }
  4377. ],
  4378. "description": "Allows domain specific configuration.",
  4379. "homepage": "https://www.drupal.org/project/domain",
  4380. "support": {
  4381. "source": "https://git.drupalcode.org/project/domain"
  4382. }
  4383. },
  4384. {
  4385. "name": "drupal/domain_site_settings",
  4386. "version": "dev-1.x",
  4387. "source": {
  4388. "type": "git",
  4389. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  4390. "reference": "b3177fc7257cae13fe9c6ff6f65d86257a194d84"
  4391. },
  4392. "require": {
  4393. "drupal/core": "^8 || ^9",
  4394. "drupal/domain": "*",
  4395. "drupal/domain_config": "*"
  4396. },
  4397. "type": "drupal-module",
  4398. "extra": {
  4399. "branch-alias": {
  4400. "dev-1.x": "1.x-dev"
  4401. },
  4402. "drupal": {
  4403. "version": "8.x-1.3+7-dev",
  4404. "datestamp": "1584297727",
  4405. "security-coverage": {
  4406. "status": "not-covered",
  4407. "message": "Dev releases are not covered by Drupal security advisories."
  4408. }
  4409. }
  4410. },
  4411. "notification-url": "https://packages.drupal.org/8/downloads",
  4412. "license": [
  4413. "GPL-2.0+"
  4414. ],
  4415. "authors": [
  4416. {
  4417. "name": "aloknarwaria",
  4418. "homepage": "https://www.drupal.org/user/906640"
  4419. },
  4420. {
  4421. "name": "malaynayak",
  4422. "homepage": "https://www.drupal.org/user/3529755"
  4423. }
  4424. ],
  4425. "description": "Basic Site Setting for Domains.",
  4426. "homepage": "https://www.drupal.org/project/domain_site_settings",
  4427. "keywords": [
  4428. "Drupal"
  4429. ],
  4430. "support": {
  4431. "source": "http://cgit.drupalcode.org/domain_site_settings",
  4432. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  4433. },
  4434. "time": "2020-03-15T18:41:41+00:00"
  4435. },
  4436. {
  4437. "name": "drupal/email_registration",
  4438. "version": "1.1.0",
  4439. "source": {
  4440. "type": "git",
  4441. "url": "https://git.drupalcode.org/project/email_registration.git",
  4442. "reference": "8.x-1.1"
  4443. },
  4444. "dist": {
  4445. "type": "zip",
  4446. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.1.zip",
  4447. "reference": "8.x-1.1",
  4448. "shasum": "cc0eef597216a6d025d9017df104f2693b029f96"
  4449. },
  4450. "require": {
  4451. "drupal/core": "^8.7.7 || ^9"
  4452. },
  4453. "conflict": {
  4454. "drupal/commerce": "<2.12"
  4455. },
  4456. "require-dev": {
  4457. "drupal/commerce": "^2.0"
  4458. },
  4459. "type": "drupal-module",
  4460. "extra": {
  4461. "drupal": {
  4462. "version": "8.x-1.1",
  4463. "datestamp": "1592317072",
  4464. "security-coverage": {
  4465. "status": "covered",
  4466. "message": "Covered by Drupal's security advisory policy"
  4467. }
  4468. }
  4469. },
  4470. "notification-url": "https://packages.drupal.org/8/downloads",
  4471. "license": [
  4472. "GPL-2.0-or-later"
  4473. ],
  4474. "authors": [
  4475. {
  4476. "name": "Greg Knaddison (greggles)",
  4477. "homepage": "https://www.drupal.org/u/greggles",
  4478. "role": "Maintainer"
  4479. },
  4480. {
  4481. "name": "Andrey Postnikov (andypost)",
  4482. "homepage": "https://www.drupal.org/u/andypost",
  4483. "role": "Maintainer"
  4484. },
  4485. {
  4486. "name": "Chris Herberte",
  4487. "homepage": "https://www.drupal.org/u/chris-herberte",
  4488. "role": "Maintainer"
  4489. },
  4490. {
  4491. "name": "Moshe Weitzman (moshe weitzman)",
  4492. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  4493. "role": "Maintainer"
  4494. }
  4495. ],
  4496. "description": "Allows users to register with an email address as their username.",
  4497. "homepage": "https://www.drupal.org/project/email_registration",
  4498. "support": {
  4499. "source": "https://git.drupalcode.org/project/email_registration",
  4500. "issues": "http://drupal.org/project/issues/email_registration"
  4501. }
  4502. },
  4503. {
  4504. "name": "drupal/embed",
  4505. "version": "1.4.0",
  4506. "source": {
  4507. "type": "git",
  4508. "url": "https://git.drupalcode.org/project/embed.git",
  4509. "reference": "8.x-1.4"
  4510. },
  4511. "dist": {
  4512. "type": "zip",
  4513. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.4.zip",
  4514. "reference": "8.x-1.4",
  4515. "shasum": "09a2bda039bfbb3fff01c91964384bf3d924b8c5"
  4516. },
  4517. "require": {
  4518. "drupal/core": "^8.7.7 || ^9"
  4519. },
  4520. "type": "drupal-module",
  4521. "extra": {
  4522. "drupal": {
  4523. "version": "8.x-1.4",
  4524. "datestamp": "1590176831",
  4525. "security-coverage": {
  4526. "status": "covered",
  4527. "message": "Covered by Drupal's security advisory policy"
  4528. }
  4529. }
  4530. },
  4531. "notification-url": "https://packages.drupal.org/8/downloads",
  4532. "license": [
  4533. "GPL-2.0-or-later"
  4534. ],
  4535. "authors": [
  4536. {
  4537. "name": "Dave Reid",
  4538. "homepage": "https://www.drupal.org/user/53892"
  4539. },
  4540. {
  4541. "name": "Devin Carlson",
  4542. "homepage": "https://www.drupal.org/user/290182"
  4543. },
  4544. {
  4545. "name": "Drupal Media Team",
  4546. "homepage": "https://www.drupal.org/user/3260690"
  4547. },
  4548. {
  4549. "name": "cs_shadow",
  4550. "homepage": "https://www.drupal.org/user/2828287"
  4551. },
  4552. {
  4553. "name": "phenaproxima",
  4554. "homepage": "https://www.drupal.org/user/205645"
  4555. },
  4556. {
  4557. "name": "slashrsm",
  4558. "homepage": "https://www.drupal.org/user/744628"
  4559. }
  4560. ],
  4561. "description": "Provides a framework for different types of embeds in text editors.",
  4562. "homepage": "https://www.drupal.org/project/embed",
  4563. "support": {
  4564. "source": "https://git.drupalcode.org/project/embed"
  4565. }
  4566. },
  4567. {
  4568. "name": "drupal/entity",
  4569. "version": "1.2.0",
  4570. "source": {
  4571. "type": "git",
  4572. "url": "https://git.drupalcode.org/project/entity.git",
  4573. "reference": "8.x-1.2"
  4574. },
  4575. "dist": {
  4576. "type": "zip",
  4577. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.2.zip",
  4578. "reference": "8.x-1.2",
  4579. "shasum": "7e7cb12ea65d9f986b59935eda316387cf511079"
  4580. },
  4581. "require": {
  4582. "drupal/core": "^8.8 || ^9"
  4583. },
  4584. "type": "drupal-module",
  4585. "extra": {
  4586. "drupal": {
  4587. "version": "8.x-1.2",
  4588. "datestamp": "1606399149",
  4589. "security-coverage": {
  4590. "status": "covered",
  4591. "message": "Covered by Drupal's security advisory policy"
  4592. }
  4593. }
  4594. },
  4595. "notification-url": "https://packages.drupal.org/8/downloads",
  4596. "license": [
  4597. "GPL-2.0-or-later"
  4598. ],
  4599. "authors": [
  4600. {
  4601. "name": "Berdir",
  4602. "homepage": "https://www.drupal.org/user/214652"
  4603. },
  4604. {
  4605. "name": "bojanz",
  4606. "homepage": "https://www.drupal.org/user/86106"
  4607. },
  4608. {
  4609. "name": "dawehner",
  4610. "homepage": "https://www.drupal.org/user/99340"
  4611. },
  4612. {
  4613. "name": "dixon_",
  4614. "homepage": "https://www.drupal.org/user/239911"
  4615. },
  4616. {
  4617. "name": "fago",
  4618. "homepage": "https://www.drupal.org/user/16747"
  4619. },
  4620. {
  4621. "name": "mglaman",
  4622. "homepage": "https://www.drupal.org/user/2416470"
  4623. }
  4624. ],
  4625. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  4626. "homepage": "http://drupal.org/project/entity",
  4627. "support": {
  4628. "source": "https://git.drupalcode.org/project/entity"
  4629. }
  4630. },
  4631. {
  4632. "name": "drupal/entity_browser",
  4633. "version": "2.5.0",
  4634. "source": {
  4635. "type": "git",
  4636. "url": "https://git.drupalcode.org/project/entity_browser.git",
  4637. "reference": "8.x-2.5"
  4638. },
  4639. "dist": {
  4640. "type": "zip",
  4641. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.5.zip",
  4642. "reference": "8.x-2.5",
  4643. "shasum": "29456b961f0f90ff064601ab8a382446a8143774"
  4644. },
  4645. "require": {
  4646. "drupal/core": "^8.8 || ^9"
  4647. },
  4648. "require-dev": {
  4649. "drupal/embed": "~1.0",
  4650. "drupal/entity_embed": "1.x-dev",
  4651. "drupal/entity_reference_revisions": "1.x-dev",
  4652. "drupal/entityqueue": "1.x-dev",
  4653. "drupal/inline_entity_form": "1.x-dev",
  4654. "drupal/paragraphs": "1.x-dev",
  4655. "drupal/token": "~1.0"
  4656. },
  4657. "type": "drupal-module",
  4658. "extra": {
  4659. "drupal": {
  4660. "version": "8.x-2.5",
  4661. "datestamp": "1588015429",
  4662. "security-coverage": {
  4663. "status": "covered",
  4664. "message": "Covered by Drupal's security advisory policy"
  4665. }
  4666. }
  4667. },
  4668. "notification-url": "https://packages.drupal.org/8/downloads",
  4669. "license": [
  4670. "GPL-2.0+"
  4671. ],
  4672. "authors": [
  4673. {
  4674. "name": "Janez Urevc",
  4675. "homepage": "https://github.com/slashrsm",
  4676. "role": "Maintainer"
  4677. },
  4678. {
  4679. "name": "Primoz Hmeljak",
  4680. "homepage": "https://github.com/primsi",
  4681. "role": "Maintainer"
  4682. },
  4683. {
  4684. "name": "See other contributors",
  4685. "homepage": "https://www.drupal.org/node/1943336/committers",
  4686. "role": "contributor"
  4687. },
  4688. {
  4689. "name": "Drupal Media Team",
  4690. "homepage": "https://www.drupal.org/user/3260690"
  4691. },
  4692. {
  4693. "name": "Primsi",
  4694. "homepage": "https://www.drupal.org/user/282629"
  4695. },
  4696. {
  4697. "name": "marcingy",
  4698. "homepage": "https://www.drupal.org/user/77320"
  4699. },
  4700. {
  4701. "name": "oknate",
  4702. "homepage": "https://www.drupal.org/user/471638"
  4703. },
  4704. {
  4705. "name": "samuel.mortenson",
  4706. "homepage": "https://www.drupal.org/user/2582268"
  4707. },
  4708. {
  4709. "name": "slashrsm",
  4710. "homepage": "https://www.drupal.org/user/744628"
  4711. }
  4712. ],
  4713. "description": "Entity browsing and selecting component.",
  4714. "homepage": "http://drupal.org/project/entity_browser",
  4715. "support": {
  4716. "source": "https://git.drupalcode.org/project/entity_browser",
  4717. "issues": "https://www.drupal.org/project/issues/entity_browser",
  4718. "irc": "irc://irc.freenode.org/drupal-contribute"
  4719. }
  4720. },
  4721. {
  4722. "name": "drupal/entity_browser_enhanced",
  4723. "version": "1.0.0",
  4724. "source": {
  4725. "type": "git",
  4726. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  4727. "reference": "8.x-1.0"
  4728. },
  4729. "dist": {
  4730. "type": "zip",
  4731. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-8.x-1.0.zip",
  4732. "reference": "8.x-1.0",
  4733. "shasum": "c309e3c3eb65c358fafc577de68f3cbb8c118865"
  4734. },
  4735. "require": {
  4736. "drupal/core": "^8 || ^9",
  4737. "drupal/entity_browser": "~2.0"
  4738. },
  4739. "type": "drupal-module",
  4740. "extra": {
  4741. "drupal": {
  4742. "version": "8.x-1.0",
  4743. "datestamp": "1581940931",
  4744. "security-coverage": {
  4745. "status": "covered",
  4746. "message": "Covered by Drupal's security advisory policy"
  4747. }
  4748. },
  4749. "branch-alias": {
  4750. "dev-8.x-1.x": "8.1.x-dev"
  4751. }
  4752. },
  4753. "notification-url": "https://packages.drupal.org/8/downloads",
  4754. "license": [
  4755. "GPL-2.0-or-later"
  4756. ],
  4757. "authors": [
  4758. {
  4759. "name": "Vardot",
  4760. "homepage": "https://www.drupal.org/vardot",
  4761. "role": "Maintainer"
  4762. },
  4763. {
  4764. "name": "RajabNatshah",
  4765. "homepage": "https://www.drupal.org/user/1414312"
  4766. }
  4767. ],
  4768. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  4769. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  4770. "support": {
  4771. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  4772. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  4773. }
  4774. },
  4775. {
  4776. "name": "drupal/entity_clone",
  4777. "version": "1.0.0-beta4",
  4778. "source": {
  4779. "type": "git",
  4780. "url": "https://git.drupalcode.org/project/entity_clone.git",
  4781. "reference": "8.x-1.0-beta4"
  4782. },
  4783. "dist": {
  4784. "type": "zip",
  4785. "url": "https://ftp.drupal.org/files/projects/entity_clone-8.x-1.0-beta4.zip",
  4786. "reference": "8.x-1.0-beta4",
  4787. "shasum": "4568ca25634d4ce4f142f56156259ba1f0d9f3c1"
  4788. },
  4789. "require": {
  4790. "drupal/core": "^8 || ^9"
  4791. },
  4792. "type": "drupal-module",
  4793. "extra": {
  4794. "drupal": {
  4795. "version": "8.x-1.0-beta4",
  4796. "datestamp": "1588605099",
  4797. "security-coverage": {
  4798. "status": "not-covered",
  4799. "message": "Beta releases are not covered by Drupal security advisories."
  4800. }
  4801. }
  4802. },
  4803. "notification-url": "https://packages.drupal.org/8/downloads",
  4804. "license": [
  4805. "GPL-2.0-or-later"
  4806. ],
  4807. "authors": [
  4808. {
  4809. "name": "vpeltot",
  4810. "homepage": "https://www.drupal.org/user/1361586"
  4811. }
  4812. ],
  4813. "description": "Add a clone action for all entities",
  4814. "homepage": "https://www.drupal.org/project/entity_clone",
  4815. "support": {
  4816. "source": "https://git.drupalcode.org/project/entity_clone"
  4817. }
  4818. },
  4819. {
  4820. "name": "drupal/extlink",
  4821. "version": "1.5.0",
  4822. "source": {
  4823. "type": "git",
  4824. "url": "https://git.drupalcode.org/project/extlink.git",
  4825. "reference": "8.x-1.5"
  4826. },
  4827. "dist": {
  4828. "type": "zip",
  4829. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.5.zip",
  4830. "reference": "8.x-1.5",
  4831. "shasum": "5a2b74d12ff9e9257a0566cca8dac3872da64970"
  4832. },
  4833. "require": {
  4834. "drupal/core": "^8 || ^9"
  4835. },
  4836. "type": "drupal-module",
  4837. "extra": {
  4838. "drupal": {
  4839. "version": "8.x-1.5",
  4840. "datestamp": "1601382250",
  4841. "security-coverage": {
  4842. "status": "covered",
  4843. "message": "Covered by Drupal's security advisory policy"
  4844. }
  4845. }
  4846. },
  4847. "notification-url": "https://packages.drupal.org/8/downloads",
  4848. "license": [
  4849. "GPL-2.0-or-later"
  4850. ],
  4851. "authors": [
  4852. {
  4853. "name": "Nate Lampton",
  4854. "homepage": "https://www.drupal.org/u/quicksketch",
  4855. "role": "Maintainer"
  4856. },
  4857. {
  4858. "name": "Lachlan Ennis",
  4859. "homepage": "https://www.drupal.org/u/elachlan",
  4860. "role": "Maintainer"
  4861. },
  4862. {
  4863. "name": "Neslee Canil Pinto",
  4864. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  4865. "role": "Maintainer"
  4866. }
  4867. ],
  4868. "description": "Modify behavior and appearance of external links.",
  4869. "homepage": "https://www.drupal.org/project/extlink",
  4870. "keywords": [
  4871. "Drupal",
  4872. "External Links"
  4873. ],
  4874. "support": {
  4875. "source": "https://git.drupalcode.org/project/extlink",
  4876. "issues": "https://www.drupal.org/project/issues/extlink"
  4877. }
  4878. },
  4879. {
  4880. "name": "drupal/field_group",
  4881. "version": "3.1.0",
  4882. "source": {
  4883. "type": "git",
  4884. "url": "https://git.drupalcode.org/project/field_group.git",
  4885. "reference": "8.x-3.1"
  4886. },
  4887. "dist": {
  4888. "type": "zip",
  4889. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.1.zip",
  4890. "reference": "8.x-3.1",
  4891. "shasum": "8a719eaea594f0ba874172831cb28da93c66b77a"
  4892. },
  4893. "require": {
  4894. "drupal/core": "^8.8 || ^9"
  4895. },
  4896. "require-dev": {
  4897. "drupal/jquery_ui_accordion": "^1.0"
  4898. },
  4899. "type": "drupal-module",
  4900. "extra": {
  4901. "drupal": {
  4902. "version": "8.x-3.1",
  4903. "datestamp": "1591772567",
  4904. "security-coverage": {
  4905. "status": "covered",
  4906. "message": "Covered by Drupal's security advisory policy"
  4907. }
  4908. }
  4909. },
  4910. "notification-url": "https://packages.drupal.org/8/downloads",
  4911. "license": [
  4912. "GPL-2.0-or-later"
  4913. ],
  4914. "authors": [
  4915. {
  4916. "name": "Hydra",
  4917. "homepage": "https://www.drupal.org/user/647364"
  4918. },
  4919. {
  4920. "name": "Stalski",
  4921. "homepage": "https://www.drupal.org/user/322618"
  4922. },
  4923. {
  4924. "name": "jyve",
  4925. "homepage": "https://www.drupal.org/user/591438"
  4926. },
  4927. {
  4928. "name": "nils.destoop",
  4929. "homepage": "https://www.drupal.org/user/361625"
  4930. },
  4931. {
  4932. "name": "swentel",
  4933. "homepage": "https://www.drupal.org/user/107403"
  4934. }
  4935. ],
  4936. "description": "Provides the field_group module.",
  4937. "homepage": "https://www.drupal.org/project/field_group",
  4938. "support": {
  4939. "source": "https://git.drupalcode.org/project/field_group",
  4940. "issues": "https://www.drupal.org/project/issues/field_group"
  4941. }
  4942. },
  4943. {
  4944. "name": "drupal/file_mdm",
  4945. "version": "2.1.0",
  4946. "source": {
  4947. "type": "git",
  4948. "url": "https://git.drupalcode.org/project/file_mdm.git",
  4949. "reference": "8.x-2.1"
  4950. },
  4951. "dist": {
  4952. "type": "zip",
  4953. "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-2.1.zip",
  4954. "reference": "8.x-2.1",
  4955. "shasum": "5c3d75622299ebddc0e8456bb08bb371da8771bd"
  4956. },
  4957. "require": {
  4958. "drupal/core": "^8.8 || ^9",
  4959. "lsolesen/pel": "^0.9.8",
  4960. "phenx/php-font-lib": "^0.5.2",
  4961. "php": ">=7"
  4962. },
  4963. "require-dev": {
  4964. "drupal/image_effects": "*"
  4965. },
  4966. "type": "drupal-module",
  4967. "extra": {
  4968. "drupal": {
  4969. "version": "8.x-2.1",
  4970. "datestamp": "1586801064",
  4971. "security-coverage": {
  4972. "status": "covered",
  4973. "message": "Covered by Drupal's security advisory policy"
  4974. }
  4975. }
  4976. },
  4977. "notification-url": "https://packages.drupal.org/8/downloads",
  4978. "license": [
  4979. "GPL-2.0-or-later"
  4980. ],
  4981. "authors": [
  4982. {
  4983. "name": "mondrake",
  4984. "homepage": "https://www.drupal.org/user/1307444"
  4985. }
  4986. ],
  4987. "description": "Provides a service to manage file metadata.",
  4988. "homepage": "https://www.drupal.org/project/file_mdm",
  4989. "support": {
  4990. "source": "https://git.drupalcode.org/project/file_mdm"
  4991. }
  4992. },
  4993. {
  4994. "name": "drupal/filefield_sources",
  4995. "version": "dev-1.x",
  4996. "source": {
  4997. "type": "git",
  4998. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  4999. "reference": "2477ff91863c9c19569de4ebb3d379d0e5e24312"
  5000. },
  5001. "require": {
  5002. "drupal/core": "^8 || ^9"
  5003. },
  5004. "require-dev": {
  5005. "drupal/imce": "*"
  5006. },
  5007. "type": "drupal-module",
  5008. "extra": {
  5009. "branch-alias": {
  5010. "dev-1.x": "1.x-dev"
  5011. },
  5012. "drupal": {
  5013. "version": "8.x-1.0-alpha3+3-dev",
  5014. "datestamp": "1604712687",
  5015. "security-coverage": {
  5016. "status": "not-covered",
  5017. "message": "Dev releases are not covered by Drupal security advisories."
  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 (quicksketch)",
  5028. "homepage": "https://www.drupal.org/u/quicksketch",
  5029. "role": "Maintainer"
  5030. },
  5031. {
  5032. "name": "Andrey Khromyshev (profak)",
  5033. "homepage": "https://www.drupal.org/u/profak",
  5034. "role": "Maintainer"
  5035. },
  5036. {
  5037. "name": "David Valdez (gnuget)",
  5038. "homepage": "https://www.drupal.org/u/gnuget",
  5039. "role": "Maintainer"
  5040. }
  5041. ],
  5042. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  5043. "homepage": "https://www.drupal.org/project/filefield_sources",
  5044. "support": {
  5045. "source": "https://git.drupalcode.org/project/filefield_sources",
  5046. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  5047. "irc": "irc://irc.freenode.org/drupal-contribute"
  5048. },
  5049. "time": "2020-11-07T01:30:52+00:00"
  5050. },
  5051. {
  5052. "name": "drupal/filter_perms",
  5053. "version": "dev-1.x",
  5054. "source": {
  5055. "type": "git",
  5056. "url": "https://git.drupalcode.org/project/filter_perms.git",
  5057. "reference": "f9abe65da2236de801902256f8388291bc3d2c83"
  5058. },
  5059. "require": {
  5060. "drupal/core": "^8 || ^9"
  5061. },
  5062. "type": "drupal-module",
  5063. "extra": {
  5064. "branch-alias": {
  5065. "dev-1.x": "1.x-dev"
  5066. },
  5067. "drupal": {
  5068. "version": "8.x-1.0-alpha1+2-dev",
  5069. "datestamp": "1599239698",
  5070. "security-coverage": {
  5071. "status": "not-covered",
  5072. "message": "Dev releases are not covered by Drupal security advisories."
  5073. }
  5074. }
  5075. },
  5076. "notification-url": "https://packages.drupal.org/8/downloads",
  5077. "license": [
  5078. "GPL-2.0-or-later"
  5079. ],
  5080. "authors": [
  5081. {
  5082. "name": "cYu",
  5083. "homepage": "https://www.drupal.org/user/202205"
  5084. },
  5085. {
  5086. "name": "deekayen",
  5087. "homepage": "https://www.drupal.org/user/972"
  5088. },
  5089. {
  5090. "name": "ivagold",
  5091. "homepage": "https://www.drupal.org/user/3061533"
  5092. },
  5093. {
  5094. "name": "mgbellaire",
  5095. "homepage": "https://www.drupal.org/user/1831932"
  5096. },
  5097. {
  5098. "name": "willzyx",
  5099. "homepage": "https://www.drupal.org/user/1043862"
  5100. }
  5101. ],
  5102. "description": "Provides role and module filters to simplify the user permissions page.",
  5103. "homepage": "https://www.drupal.org/project/filter_perms",
  5104. "support": {
  5105. "source": "https://git.drupalcode.org/project/filter_perms"
  5106. },
  5107. "time": "2020-11-17T18:20:11+00:00"
  5108. },
  5109. {
  5110. "name": "drupal/honeypot",
  5111. "version": "2.0.1",
  5112. "source": {
  5113. "type": "git",
  5114. "url": "https://git.drupalcode.org/project/honeypot.git",
  5115. "reference": "2.0.1"
  5116. },
  5117. "dist": {
  5118. "type": "zip",
  5119. "url": "https://ftp.drupal.org/files/projects/honeypot-2.0.1.zip",
  5120. "reference": "2.0.1",
  5121. "shasum": "c29d248c0fdcdf733a31b9214355acfa73716632"
  5122. },
  5123. "require": {
  5124. "drupal/core": "^8.0 || ^9.0"
  5125. },
  5126. "type": "drupal-module",
  5127. "extra": {
  5128. "drupal": {
  5129. "version": "2.0.1",
  5130. "datestamp": "1597855128",
  5131. "security-coverage": {
  5132. "status": "covered",
  5133. "message": "Covered by Drupal's security advisory policy"
  5134. }
  5135. }
  5136. },
  5137. "notification-url": "https://packages.drupal.org/8/downloads",
  5138. "license": [
  5139. "GPL-2.0-or-later"
  5140. ],
  5141. "authors": [
  5142. {
  5143. "name": "Jeff Geerling",
  5144. "homepage": "https://www.drupal.org/user/213194",
  5145. "email": "geerlingguy@mac.com"
  5146. },
  5147. {
  5148. "name": "geerlingguy",
  5149. "homepage": "https://www.drupal.org/user/389011"
  5150. },
  5151. {
  5152. "name": "vijaycs85",
  5153. "homepage": "https://www.drupal.org/user/93488"
  5154. }
  5155. ],
  5156. "description": "Mitigates spam form submissions using the honeypot method.",
  5157. "homepage": "https://www.drupal.org/project/honeypot",
  5158. "keywords": [
  5159. "deterrent",
  5160. "form",
  5161. "honeypot",
  5162. "honeytrap",
  5163. "php",
  5164. "spam"
  5165. ],
  5166. "support": {
  5167. "source": "https://git.drupalcode.org/project/honeypot",
  5168. "issues": "https://www.drupal.org/project/issues/honeypot"
  5169. }
  5170. },
  5171. {
  5172. "name": "drupal/imagemagick",
  5173. "version": "3.1.0",
  5174. "source": {
  5175. "type": "git",
  5176. "url": "https://git.drupalcode.org/project/imagemagick.git",
  5177. "reference": "8.x-3.1"
  5178. },
  5179. "dist": {
  5180. "type": "zip",
  5181. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-3.1.zip",
  5182. "reference": "8.x-3.1",
  5183. "shasum": "f427b06312325aa667c549fed261f73f29e231e7"
  5184. },
  5185. "require": {
  5186. "drupal/core": "^8.8 || ^9",
  5187. "drupal/file_mdm": "^2",
  5188. "drupal/sophron": "^1",
  5189. "php": ">=7"
  5190. },
  5191. "type": "drupal-module",
  5192. "extra": {
  5193. "drupal": {
  5194. "version": "8.x-3.1",
  5195. "datestamp": "1581420882",
  5196. "security-coverage": {
  5197. "status": "covered",
  5198. "message": "Covered by Drupal's security advisory policy"
  5199. }
  5200. }
  5201. },
  5202. "notification-url": "https://packages.drupal.org/8/downloads",
  5203. "license": [
  5204. "GPL-2.0-or-later"
  5205. ],
  5206. "authors": [
  5207. {
  5208. "name": "Chris Charlton",
  5209. "homepage": "https://www.drupal.org/user/17089"
  5210. },
  5211. {
  5212. "name": "chx",
  5213. "homepage": "https://www.drupal.org/user/9446"
  5214. },
  5215. {
  5216. "name": "claudiu.cristea",
  5217. "homepage": "https://www.drupal.org/user/56348"
  5218. },
  5219. {
  5220. "name": "dman",
  5221. "homepage": "https://www.drupal.org/user/33240"
  5222. },
  5223. {
  5224. "name": "dopry",
  5225. "homepage": "https://www.drupal.org/user/22202"
  5226. },
  5227. {
  5228. "name": "drewish",
  5229. "homepage": "https://www.drupal.org/user/34869"
  5230. },
  5231. {
  5232. "name": "gdl",
  5233. "homepage": "https://www.drupal.org/user/507326"
  5234. },
  5235. {
  5236. "name": "mondrake",
  5237. "homepage": "https://www.drupal.org/user/1307444"
  5238. },
  5239. {
  5240. "name": "quicksketch",
  5241. "homepage": "https://www.drupal.org/user/35821"
  5242. },
  5243. {
  5244. "name": "sun",
  5245. "homepage": "https://www.drupal.org/user/54136"
  5246. },
  5247. {
  5248. "name": "walkah",
  5249. "homepage": "https://www.drupal.org/user/1531"
  5250. }
  5251. ],
  5252. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  5253. "homepage": "https://www.drupal.org/project/imagemagick",
  5254. "support": {
  5255. "source": "https://git.drupalcode.org/project/imagemagick"
  5256. }
  5257. },
  5258. {
  5259. "name": "drupal/inline_entity_form",
  5260. "version": "1.0.0-rc8",
  5261. "source": {
  5262. "type": "git",
  5263. "url": "https://git.drupalcode.org/project/inline_entity_form.git",
  5264. "reference": "8.x-1.0-rc8"
  5265. },
  5266. "dist": {
  5267. "type": "zip",
  5268. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc8.zip",
  5269. "reference": "8.x-1.0-rc8",
  5270. "shasum": "103de382dd07b4acdd6bacd5ad76628fdf0eefda"
  5271. },
  5272. "require": {
  5273. "drupal/core": "^8.7.7 || ^9"
  5274. },
  5275. "require-dev": {
  5276. "drupal/entity_reference_revisions": "^1.0"
  5277. },
  5278. "type": "drupal-module",
  5279. "extra": {
  5280. "drupal": {
  5281. "version": "8.x-1.0-rc8",
  5282. "datestamp": "1602172716",
  5283. "security-coverage": {
  5284. "status": "not-covered",
  5285. "message": "RC releases are not covered by Drupal security advisories."
  5286. }
  5287. }
  5288. },
  5289. "notification-url": "https://packages.drupal.org/8/downloads",
  5290. "license": [
  5291. "GPL-2.0-or-later"
  5292. ],
  5293. "authors": [
  5294. {
  5295. "name": "bojanz",
  5296. "homepage": "https://www.drupal.org/user/86106"
  5297. },
  5298. {
  5299. "name": "dawehner",
  5300. "homepage": "https://www.drupal.org/user/99340"
  5301. },
  5302. {
  5303. "name": "geek-merlin",
  5304. "homepage": "https://www.drupal.org/user/229048"
  5305. },
  5306. {
  5307. "name": "joachim",
  5308. "homepage": "https://www.drupal.org/user/107701"
  5309. },
  5310. {
  5311. "name": "jsacksick",
  5312. "homepage": "https://www.drupal.org/user/972218"
  5313. },
  5314. {
  5315. "name": "kaythay",
  5316. "homepage": "https://www.drupal.org/user/2182186"
  5317. },
  5318. {
  5319. "name": "oknate",
  5320. "homepage": "https://www.drupal.org/user/471638"
  5321. },
  5322. {
  5323. "name": "rszrama",
  5324. "homepage": "https://www.drupal.org/user/49344"
  5325. },
  5326. {
  5327. "name": "slashrsm",
  5328. "homepage": "https://www.drupal.org/user/744628"
  5329. },
  5330. {
  5331. "name": "webflo",
  5332. "homepage": "https://www.drupal.org/user/254778"
  5333. }
  5334. ],
  5335. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  5336. "homepage": "https://www.drupal.org/project/inline_entity_form",
  5337. "support": {
  5338. "source": "https://git.drupalcode.org/project/inline_entity_form"
  5339. }
  5340. },
  5341. {
  5342. "name": "drupal/jquery_ui",
  5343. "version": "1.4.0",
  5344. "source": {
  5345. "type": "git",
  5346. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  5347. "reference": "8.x-1.4"
  5348. },
  5349. "dist": {
  5350. "type": "zip",
  5351. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.4.zip",
  5352. "reference": "8.x-1.4",
  5353. "shasum": "64c19ecc8902e2b4b1ab0cc5f5fe28dbc83bfebe"
  5354. },
  5355. "require": {
  5356. "drupal/core": "^8 || ^9"
  5357. },
  5358. "type": "drupal-module",
  5359. "extra": {
  5360. "drupal": {
  5361. "version": "8.x-1.4",
  5362. "datestamp": "1582149957",
  5363. "security-coverage": {
  5364. "status": "covered",
  5365. "message": "Covered by Drupal's security advisory policy"
  5366. }
  5367. }
  5368. },
  5369. "notification-url": "https://packages.drupal.org/8/downloads",
  5370. "license": [
  5371. "GPL-2.0-or-later"
  5372. ],
  5373. "authors": [
  5374. {
  5375. "name": "RobLoach",
  5376. "homepage": "https://www.drupal.org/user/61114"
  5377. },
  5378. {
  5379. "name": "jjeff",
  5380. "homepage": "https://www.drupal.org/user/17190"
  5381. },
  5382. {
  5383. "name": "lauriii",
  5384. "homepage": "https://www.drupal.org/user/1078742"
  5385. },
  5386. {
  5387. "name": "litwol",
  5388. "homepage": "https://www.drupal.org/user/78134"
  5389. },
  5390. {
  5391. "name": "mfb",
  5392. "homepage": "https://www.drupal.org/user/12302"
  5393. },
  5394. {
  5395. "name": "mfer",
  5396. "homepage": "https://www.drupal.org/user/25701"
  5397. },
  5398. {
  5399. "name": "mikelutz",
  5400. "homepage": "https://www.drupal.org/user/2972409"
  5401. },
  5402. {
  5403. "name": "sun",
  5404. "homepage": "https://www.drupal.org/user/54136"
  5405. },
  5406. {
  5407. "name": "webchick",
  5408. "homepage": "https://www.drupal.org/user/24967"
  5409. },
  5410. {
  5411. "name": "zrpnr",
  5412. "homepage": "https://www.drupal.org/user/1448368"
  5413. }
  5414. ],
  5415. "description": "Provides jQuery UI library.",
  5416. "homepage": "https://www.drupal.org/project/jquery_ui",
  5417. "support": {
  5418. "source": "https://git.drupalcode.org/project/jquery_ui"
  5419. }
  5420. },
  5421. {
  5422. "name": "drupal/jquery_ui_button",
  5423. "version": "1.1.0",
  5424. "source": {
  5425. "type": "git",
  5426. "url": "https://git.drupalcode.org/project/jquery_ui_button.git",
  5427. "reference": "8.x-1.1"
  5428. },
  5429. "dist": {
  5430. "type": "zip",
  5431. "url": "https://ftp.drupal.org/files/projects/jquery_ui_button-8.x-1.1.zip",
  5432. "reference": "8.x-1.1",
  5433. "shasum": "70175a96c9034cc1cb2f28c415b2a9828355cc1a"
  5434. },
  5435. "require": {
  5436. "drupal/core": "^8 || ^9",
  5437. "drupal/jquery_ui": "*",
  5438. "drupal/jquery_ui_checkboxradio": "*",
  5439. "drupal/jquery_ui_controlgroup": "*"
  5440. },
  5441. "type": "drupal-module",
  5442. "extra": {
  5443. "drupal": {
  5444. "version": "8.x-1.1",
  5445. "datestamp": "1584106807",
  5446. "security-coverage": {
  5447. "status": "covered",
  5448. "message": "Covered by Drupal's security advisory policy"
  5449. }
  5450. }
  5451. },
  5452. "notification-url": "https://packages.drupal.org/8/downloads",
  5453. "license": [
  5454. "GPL-2.0-or-later"
  5455. ],
  5456. "authors": [
  5457. {
  5458. "name": "bnjmnm",
  5459. "homepage": "https://www.drupal.org/user/2369194"
  5460. },
  5461. {
  5462. "name": "lauriii",
  5463. "homepage": "https://www.drupal.org/user/1078742"
  5464. },
  5465. {
  5466. "name": "zrpnr",
  5467. "homepage": "https://www.drupal.org/user/1448368"
  5468. }
  5469. ],
  5470. "description": "Provides jQuery UI Button library.",
  5471. "homepage": "https://www.drupal.org/project/jquery_ui_button",
  5472. "support": {
  5473. "source": "https://git.drupalcode.org/project/jquery_ui_button"
  5474. }
  5475. },
  5476. {
  5477. "name": "drupal/jquery_ui_checkboxradio",
  5478. "version": "1.2.0",
  5479. "source": {
  5480. "type": "git",
  5481. "url": "https://git.drupalcode.org/project/jquery_ui_checkboxradio.git",
  5482. "reference": "8.x-1.2"
  5483. },
  5484. "dist": {
  5485. "type": "zip",
  5486. "url": "https://ftp.drupal.org/files/projects/jquery_ui_checkboxradio-8.x-1.2.zip",
  5487. "reference": "8.x-1.2",
  5488. "shasum": "8edb088cb89f4a0f95aa9d43894bf506dc5f6fe1"
  5489. },
  5490. "require": {
  5491. "drupal/core": "^8 || ^9",
  5492. "drupal/jquery_ui": "*"
  5493. },
  5494. "type": "drupal-module",
  5495. "extra": {
  5496. "drupal": {
  5497. "version": "8.x-1.2",
  5498. "datestamp": "1584106406",
  5499. "security-coverage": {
  5500. "status": "covered",
  5501. "message": "Covered by Drupal's security advisory policy"
  5502. }
  5503. }
  5504. },
  5505. "notification-url": "https://packages.drupal.org/8/downloads",
  5506. "license": [
  5507. "GPL-2.0-or-later"
  5508. ],
  5509. "authors": [
  5510. {
  5511. "name": "bnjmnm",
  5512. "homepage": "https://www.drupal.org/user/2369194"
  5513. },
  5514. {
  5515. "name": "lauriii",
  5516. "homepage": "https://www.drupal.org/user/1078742"
  5517. },
  5518. {
  5519. "name": "zrpnr",
  5520. "homepage": "https://www.drupal.org/user/1448368"
  5521. }
  5522. ],
  5523. "description": "Provides jQuery UI Checkboxradio library.",
  5524. "homepage": "https://www.drupal.org/project/jquery_ui_checkboxradio",
  5525. "support": {
  5526. "source": "https://git.drupalcode.org/project/jquery_ui_checkboxradio"
  5527. }
  5528. },
  5529. {
  5530. "name": "drupal/jquery_ui_controlgroup",
  5531. "version": "1.1.0",
  5532. "source": {
  5533. "type": "git",
  5534. "url": "https://git.drupalcode.org/project/jquery_ui_controlgroup.git",
  5535. "reference": "8.x-1.1"
  5536. },
  5537. "dist": {
  5538. "type": "zip",
  5539. "url": "https://ftp.drupal.org/files/projects/jquery_ui_controlgroup-8.x-1.1.zip",
  5540. "reference": "8.x-1.1",
  5541. "shasum": "ddbd4f01df4e3c9566aa76ba256217a27f45f48a"
  5542. },
  5543. "require": {
  5544. "drupal/core": "^8 || ^9",
  5545. "drupal/jquery_ui": "*"
  5546. },
  5547. "type": "drupal-module",
  5548. "extra": {
  5549. "drupal": {
  5550. "version": "8.x-1.1",
  5551. "datestamp": "1584106616",
  5552. "security-coverage": {
  5553. "status": "covered",
  5554. "message": "Covered by Drupal's security advisory policy"
  5555. }
  5556. }
  5557. },
  5558. "notification-url": "https://packages.drupal.org/8/downloads",
  5559. "license": [
  5560. "GPL-2.0-or-later"
  5561. ],
  5562. "authors": [
  5563. {
  5564. "name": "bnjmnm",
  5565. "homepage": "https://www.drupal.org/user/2369194"
  5566. },
  5567. {
  5568. "name": "lauriii",
  5569. "homepage": "https://www.drupal.org/user/1078742"
  5570. },
  5571. {
  5572. "name": "zrpnr",
  5573. "homepage": "https://www.drupal.org/user/1448368"
  5574. }
  5575. ],
  5576. "description": "Provides jQuery UI Controlgroup library.",
  5577. "homepage": "https://www.drupal.org/project/jquery_ui_controlgroup",
  5578. "support": {
  5579. "source": "https://git.drupalcode.org/project/jquery_ui_controlgroup"
  5580. }
  5581. },
  5582. {
  5583. "name": "drupal/jquery_ui_datepicker",
  5584. "version": "1.0.0",
  5585. "source": {
  5586. "type": "git",
  5587. "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
  5588. "reference": "8.x-1.0"
  5589. },
  5590. "dist": {
  5591. "type": "zip",
  5592. "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-8.x-1.0.zip",
  5593. "reference": "8.x-1.0",
  5594. "shasum": "954f12f93e82b6c93e6797fe2e6e66604ad1d2b2"
  5595. },
  5596. "require": {
  5597. "drupal/core": "^8 || ^9",
  5598. "drupal/jquery_ui": "*"
  5599. },
  5600. "type": "drupal-module",
  5601. "extra": {
  5602. "drupal": {
  5603. "version": "8.x-1.0",
  5604. "datestamp": "1589684301",
  5605. "security-coverage": {
  5606. "status": "covered",
  5607. "message": "Covered by Drupal's security advisory policy"
  5608. }
  5609. }
  5610. },
  5611. "notification-url": "https://packages.drupal.org/8/downloads",
  5612. "license": [
  5613. "GPL-2.0-or-later"
  5614. ],
  5615. "authors": [
  5616. {
  5617. "name": "jrockowitz",
  5618. "homepage": "https://www.drupal.org/user/371407"
  5619. },
  5620. {
  5621. "name": "zrpnr",
  5622. "homepage": "https://www.drupal.org/user/1448368"
  5623. }
  5624. ],
  5625. "description": "Provides jQuery UI Datepicker library.",
  5626. "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
  5627. "support": {
  5628. "source": "https://git.drupalcode.org/project/jquery_ui_datepicker"
  5629. }
  5630. },
  5631. {
  5632. "name": "drupal/jquery_ui_slider",
  5633. "version": "1.1.0",
  5634. "source": {
  5635. "type": "git",
  5636. "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
  5637. "reference": "8.x-1.1"
  5638. },
  5639. "dist": {
  5640. "type": "zip",
  5641. "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-8.x-1.1.zip",
  5642. "reference": "8.x-1.1",
  5643. "shasum": "79b90cf60d45fc33ffdaa84bb2d6563f78a7d3d1"
  5644. },
  5645. "require": {
  5646. "drupal/core": "^8 || ^9",
  5647. "drupal/jquery_ui": "*"
  5648. },
  5649. "type": "drupal-module",
  5650. "extra": {
  5651. "drupal": {
  5652. "version": "8.x-1.1",
  5653. "datestamp": "1584107817",
  5654. "security-coverage": {
  5655. "status": "covered",
  5656. "message": "Covered by Drupal's security advisory policy"
  5657. }
  5658. }
  5659. },
  5660. "notification-url": "https://packages.drupal.org/8/downloads",
  5661. "license": [
  5662. "GPL-2.0-or-later"
  5663. ],
  5664. "authors": [
  5665. {
  5666. "name": "bnjmnm",
  5667. "homepage": "https://www.drupal.org/user/2369194"
  5668. },
  5669. {
  5670. "name": "lauriii",
  5671. "homepage": "https://www.drupal.org/user/1078742"
  5672. },
  5673. {
  5674. "name": "zrpnr",
  5675. "homepage": "https://www.drupal.org/user/1448368"
  5676. }
  5677. ],
  5678. "description": "Provides jQuery UI Slider library.",
  5679. "homepage": "https://www.drupal.org/project/jquery_ui_slider",
  5680. "support": {
  5681. "source": "https://git.drupalcode.org/project/jquery_ui_slider"
  5682. }
  5683. },
  5684. {
  5685. "name": "drupal/jquery_ui_touch_punch",
  5686. "version": "1.0.0",
  5687. "source": {
  5688. "type": "git",
  5689. "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
  5690. "reference": "1.0.0"
  5691. },
  5692. "dist": {
  5693. "type": "zip",
  5694. "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.0.0.zip",
  5695. "reference": "1.0.0",
  5696. "shasum": "8444a0ed897ba3d8e8876a9602ec8b3dca678cd1"
  5697. },
  5698. "require": {
  5699. "drupal/core": "^8 || ^9",
  5700. "drupal/jquery_ui": "^1.0"
  5701. },
  5702. "suggest": {
  5703. "furf/jquery-ui-touch-punch": "Required to use drupal/jquery_ui_touch_punch module."
  5704. },
  5705. "type": "drupal-module",
  5706. "extra": {
  5707. "drupal": {
  5708. "version": "1.0.0",
  5709. "datestamp": "1591893292",
  5710. "security-coverage": {
  5711. "status": "not-covered",
  5712. "message": "Project has not opted into security advisory coverage!"
  5713. }
  5714. }
  5715. },
  5716. "notification-url": "https://packages.drupal.org/8/downloads",
  5717. "license": [
  5718. "GPL-2.0+"
  5719. ],
  5720. "authors": [
  5721. {
  5722. "name": "Naveen Valecha",
  5723. "homepage": "https://drupal.org/u/naveenvalecha",
  5724. "role": "Maintainer"
  5725. }
  5726. ],
  5727. "description": "Provides jQuery UI Touch Punch library.",
  5728. "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5729. "keywords": [
  5730. "Drupal",
  5731. "jquery_ui_touch_punch"
  5732. ],
  5733. "support": {
  5734. "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5735. "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch",
  5736. "irc": "irc://irc.freenode.org/drupal-contribute"
  5737. }
  5738. },
  5739. {
  5740. "name": "drupal/link_attributes",
  5741. "version": "1.11.0",
  5742. "source": {
  5743. "type": "git",
  5744. "url": "https://git.drupalcode.org/project/link_attributes.git",
  5745. "reference": "8.x-1.11"
  5746. },
  5747. "dist": {
  5748. "type": "zip",
  5749. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.11.zip",
  5750. "reference": "8.x-1.11",
  5751. "shasum": "ca8c7e71c38350e3784dc3d1f779d700f55df818"
  5752. },
  5753. "require": {
  5754. "drupal/core": "^8 || ^9"
  5755. },
  5756. "type": "drupal-module",
  5757. "extra": {
  5758. "drupal": {
  5759. "version": "8.x-1.11",
  5760. "datestamp": "1598323550",
  5761. "security-coverage": {
  5762. "status": "covered",
  5763. "message": "Covered by Drupal's security advisory policy"
  5764. }
  5765. }
  5766. },
  5767. "notification-url": "https://packages.drupal.org/8/downloads",
  5768. "license": [
  5769. "GPL-2.0-or-later"
  5770. ],
  5771. "authors": [
  5772. {
  5773. "name": "larowlan",
  5774. "homepage": "https://www.drupal.org/user/395439"
  5775. }
  5776. ],
  5777. "description": "Provides a widget to allow settings of link attributes for menu links.",
  5778. "homepage": "https://www.drupal.org/project/link_attributes",
  5779. "support": {
  5780. "source": "https://git.drupalcode.org/project/link_attributes"
  5781. }
  5782. },
  5783. {
  5784. "name": "drupal/linkit",
  5785. "version": "5.0.0-beta11",
  5786. "source": {
  5787. "type": "git",
  5788. "url": "https://git.drupalcode.org/project/linkit.git",
  5789. "reference": "8.x-5.0-beta11"
  5790. },
  5791. "dist": {
  5792. "type": "zip",
  5793. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta11.zip",
  5794. "reference": "8.x-5.0-beta11",
  5795. "shasum": "9133a3e61deafdd6a9d5a8b31a1f42e16051ee97"
  5796. },
  5797. "require": {
  5798. "drupal/core": "^8.7.7 || ^9"
  5799. },
  5800. "require-dev": {
  5801. "drupal/imce": "*"
  5802. },
  5803. "type": "drupal-module",
  5804. "extra": {
  5805. "drupal": {
  5806. "version": "8.x-5.0-beta11",
  5807. "datestamp": "1591971693",
  5808. "security-coverage": {
  5809. "status": "not-covered",
  5810. "message": "Beta releases are not covered by Drupal security advisories."
  5811. }
  5812. }
  5813. },
  5814. "notification-url": "https://packages.drupal.org/8/downloads",
  5815. "license": [
  5816. "GPL-2.0+"
  5817. ],
  5818. "authors": [
  5819. {
  5820. "name": "Emil Stjerneman",
  5821. "homepage": "https://stjerneman.com",
  5822. "email": "emil@stjerneman.com",
  5823. "role": "Maintainer"
  5824. }
  5825. ],
  5826. "description": "Linkit - Enriched linking experience",
  5827. "homepage": "http://drupal.org/project/linkit",
  5828. "support": {
  5829. "source": "http://cgit.drupalcode.org/linkit",
  5830. "issues": "http://drupal.org/project/linkit"
  5831. }
  5832. },
  5833. {
  5834. "name": "drupal/login_destination",
  5835. "version": "dev-2.x",
  5836. "source": {
  5837. "type": "git",
  5838. "url": "https://git.drupalcode.org/project/login_destination.git",
  5839. "reference": "0a2c46abd451b4c83e2f5a50cb791e68b141a8ab"
  5840. },
  5841. "require": {
  5842. "drupal/core": "^8.7.10 || ^9"
  5843. },
  5844. "require-dev": {
  5845. "drupal/admin_toolbar": "^1.23",
  5846. "drupal/admin_toolbar_tools": "*"
  5847. },
  5848. "type": "drupal-module",
  5849. "extra": {
  5850. "branch-alias": {
  5851. "dev-2.x": "2.x-dev"
  5852. },
  5853. "drupal": {
  5854. "version": "8.x-2.0-alpha3+8-dev",
  5855. "datestamp": "1603450565",
  5856. "security-coverage": {
  5857. "status": "not-covered",
  5858. "message": "Dev releases are not covered by Drupal security advisories."
  5859. }
  5860. }
  5861. },
  5862. "notification-url": "https://packages.drupal.org/8/downloads",
  5863. "license": [
  5864. "GPL-2.0-or-later"
  5865. ],
  5866. "authors": [
  5867. {
  5868. "name": "3CWebDev",
  5869. "homepage": "https://www.drupal.org/user/61221"
  5870. },
  5871. {
  5872. "name": "Oliver Huynh",
  5873. "homepage": "https://www.drupal.org/user/243730"
  5874. },
  5875. {
  5876. "name": "beautifulmind",
  5877. "homepage": "https://www.drupal.org/user/219482"
  5878. },
  5879. {
  5880. "name": "ddrozdik",
  5881. "homepage": "https://www.drupal.org/user/574124"
  5882. },
  5883. {
  5884. "name": "jng12",
  5885. "homepage": "https://www.drupal.org/user/204316"
  5886. },
  5887. {
  5888. "name": "marcp",
  5889. "homepage": "https://www.drupal.org/user/20885"
  5890. },
  5891. {
  5892. "name": "mithy",
  5893. "homepage": "https://www.drupal.org/user/258911"
  5894. },
  5895. {
  5896. "name": "moshe weitzman",
  5897. "homepage": "https://www.drupal.org/user/23"
  5898. },
  5899. {
  5900. "name": "perennial.sky",
  5901. "homepage": "https://www.drupal.org/user/2622667"
  5902. },
  5903. {
  5904. "name": "rsvelko",
  5905. "homepage": "https://www.drupal.org/user/337401"
  5906. }
  5907. ],
  5908. "description": "The Login Destination module add possibility customize the destination that the user is redirected to after login.",
  5909. "homepage": "https://www.drupal.org/project/login_destination",
  5910. "support": {
  5911. "source": "https://git.drupalcode.org/project/login_destination"
  5912. },
  5913. "time": "2020-10-23T10:55:36+00:00"
  5914. },
  5915. {
  5916. "name": "drupal/maillog",
  5917. "version": "dev-1.x",
  5918. "source": {
  5919. "type": "git",
  5920. "url": "https://git.drupalcode.org/project/maillog.git",
  5921. "reference": "053d0b4a53aea4f848be75b02fc8974bb7b053b3"
  5922. },
  5923. "require": {
  5924. "drupal/core": "^8 || ^9"
  5925. },
  5926. "type": "drupal-module",
  5927. "extra": {
  5928. "branch-alias": {
  5929. "dev-1.x": "1.x-dev"
  5930. },
  5931. "drupal": {
  5932. "version": "8.x-1.0-beta1+0-dev",
  5933. "datestamp": "1600799873",
  5934. "security-coverage": {
  5935. "status": "not-covered",
  5936. "message": "Dev releases are not covered by Drupal security advisories."
  5937. }
  5938. }
  5939. },
  5940. "notification-url": "https://packages.drupal.org/8/downloads",
  5941. "license": [
  5942. "GPL-2.0-or-later"
  5943. ],
  5944. "authors": [
  5945. {
  5946. "name": "Berdir",
  5947. "homepage": "https://www.drupal.org/user/214652"
  5948. },
  5949. {
  5950. "name": "DamienMcKenna",
  5951. "homepage": "https://www.drupal.org/user/108450"
  5952. },
  5953. {
  5954. "name": "miro_dietiker",
  5955. "homepage": "https://www.drupal.org/user/227761"
  5956. },
  5957. {
  5958. "name": "pluess",
  5959. "homepage": "https://www.drupal.org/user/84659"
  5960. }
  5961. ],
  5962. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  5963. "homepage": "https://www.drupal.org/project/maillog",
  5964. "support": {
  5965. "source": "https://git.drupalcode.org/project/maillog"
  5966. },
  5967. "time": "2020-09-22T18:37:31+00:00"
  5968. },
  5969. {
  5970. "name": "drupal/mailsystem",
  5971. "version": "4.3.0",
  5972. "source": {
  5973. "type": "git",
  5974. "url": "https://git.drupalcode.org/project/mailsystem.git",
  5975. "reference": "8.x-4.3"
  5976. },
  5977. "dist": {
  5978. "type": "zip",
  5979. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.3.zip",
  5980. "reference": "8.x-4.3",
  5981. "shasum": "1a74016e268ff207535be5d5e42ac8f72ac89050"
  5982. },
  5983. "require": {
  5984. "drupal/core": "^8.7.7 || ^9"
  5985. },
  5986. "type": "drupal-module",
  5987. "extra": {
  5988. "drupal": {
  5989. "version": "8.x-4.3",
  5990. "datestamp": "1586203024",
  5991. "security-coverage": {
  5992. "status": "covered",
  5993. "message": "Covered by Drupal's security advisory policy"
  5994. }
  5995. }
  5996. },
  5997. "notification-url": "https://packages.drupal.org/8/downloads",
  5998. "license": [
  5999. "GPL-2.0+"
  6000. ],
  6001. "authors": [
  6002. {
  6003. "name": "Berdir",
  6004. "homepage": "https://www.drupal.org/user/214652"
  6005. },
  6006. {
  6007. "name": "Les Lim",
  6008. "homepage": "https://www.drupal.org/user/84263"
  6009. },
  6010. {
  6011. "name": "Manuel Garcia",
  6012. "homepage": "https://www.drupal.org/user/213194"
  6013. },
  6014. {
  6015. "name": "Nafes",
  6016. "homepage": "https://www.drupal.org/user/2489926"
  6017. },
  6018. {
  6019. "name": "miro_dietiker",
  6020. "homepage": "https://www.drupal.org/user/227761"
  6021. },
  6022. {
  6023. "name": "pillarsdotnet",
  6024. "homepage": "https://www.drupal.org/user/36148"
  6025. }
  6026. ],
  6027. "description": "Mail System",
  6028. "homepage": "https://www.drupal.org/project/mailsystem",
  6029. "support": {
  6030. "source": "https://git.drupalcode.org/project/mailsystem"
  6031. }
  6032. },
  6033. {
  6034. "name": "drupal/matomo",
  6035. "version": "1.11.0",
  6036. "source": {
  6037. "type": "git",
  6038. "url": "https://git.drupalcode.org/project/matomo.git",
  6039. "reference": "8.x-1.11"
  6040. },
  6041. "dist": {
  6042. "type": "zip",
  6043. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.11.zip",
  6044. "reference": "8.x-1.11",
  6045. "shasum": "82be96c20ab15df03d199ab98d047cef6e67d40b"
  6046. },
  6047. "require": {
  6048. "drupal/core": "^8 || ^9"
  6049. },
  6050. "require-dev": {
  6051. "drupal/php": "*",
  6052. "drupal/token": "*"
  6053. },
  6054. "type": "drupal-module",
  6055. "extra": {
  6056. "drupal": {
  6057. "version": "8.x-1.11",
  6058. "datestamp": "1601651459",
  6059. "security-coverage": {
  6060. "status": "covered",
  6061. "message": "Covered by Drupal's security advisory policy"
  6062. }
  6063. }
  6064. },
  6065. "notification-url": "https://packages.drupal.org/8/downloads",
  6066. "license": [
  6067. "GPL-2.0-or-later"
  6068. ],
  6069. "authors": [
  6070. {
  6071. "name": "Carsten Logemann",
  6072. "homepage": "https://www.drupal.org/u/C_Logemann"
  6073. },
  6074. {
  6075. "name": "Shelane French",
  6076. "homepage": "https://www.drupal.org/u/shelane"
  6077. },
  6078. {
  6079. "name": "See other contributors",
  6080. "homepage": "https://www.drupal.org/node/247808/committers"
  6081. }
  6082. ],
  6083. "description": "Adds Matomo javascript tracking code to all your site's pages",
  6084. "homepage": "https://www.drupal.org/project/matomo",
  6085. "support": {
  6086. "source": "https://git.drupal.org/project/matomo.git",
  6087. "issues": "https://www.drupal.org/project/issues/matomo"
  6088. }
  6089. },
  6090. {
  6091. "name": "drupal/maxlength",
  6092. "version": "1.0.0-rc1",
  6093. "source": {
  6094. "type": "git",
  6095. "url": "https://git.drupalcode.org/project/maxlength.git",
  6096. "reference": "8.x-1.0-rc1"
  6097. },
  6098. "dist": {
  6099. "type": "zip",
  6100. "url": "https://ftp.drupal.org/files/projects/maxlength-8.x-1.0-rc1.zip",
  6101. "reference": "8.x-1.0-rc1",
  6102. "shasum": "44eb9d79d9814cd786c2c9874c28033759665a99"
  6103. },
  6104. "require": {
  6105. "drupal/core": "^8.8 || ^9"
  6106. },
  6107. "type": "drupal-module",
  6108. "extra": {
  6109. "drupal": {
  6110. "version": "8.x-1.0-rc1",
  6111. "datestamp": "1593198218",
  6112. "security-coverage": {
  6113. "status": "not-covered",
  6114. "message": "RC releases are not covered by Drupal security advisories."
  6115. }
  6116. }
  6117. },
  6118. "notification-url": "https://packages.drupal.org/8/downloads",
  6119. "license": [
  6120. "GPL-2.0-or-later"
  6121. ],
  6122. "authors": [
  6123. {
  6124. "name": "Aron Novak",
  6125. "homepage": "https://www.drupal.org/user/61864"
  6126. },
  6127. {
  6128. "name": "Schnitzel",
  6129. "homepage": "https://www.drupal.org/user/643820"
  6130. },
  6131. {
  6132. "name": "a_c_m",
  6133. "homepage": "https://www.drupal.org/user/195063"
  6134. },
  6135. {
  6136. "name": "barneytech",
  6137. "homepage": "https://www.drupal.org/user/669922"
  6138. },
  6139. {
  6140. "name": "claudiu_cristea",
  6141. "homepage": "https://www.drupal.org/user/2623935"
  6142. },
  6143. {
  6144. "name": "dawehner",
  6145. "homepage": "https://www.drupal.org/user/99340"
  6146. },
  6147. {
  6148. "name": "derhasi",
  6149. "homepage": "https://www.drupal.org/user/83474"
  6150. },
  6151. {
  6152. "name": "frjo",
  6153. "homepage": "https://www.drupal.org/user/5546"
  6154. },
  6155. {
  6156. "name": "hefox",
  6157. "homepage": "https://www.drupal.org/user/426416"
  6158. },
  6159. {
  6160. "name": "jm.federico",
  6161. "homepage": "https://www.drupal.org/user/509892"
  6162. },
  6163. {
  6164. "name": "k4v",
  6165. "homepage": "https://www.drupal.org/user/744246"
  6166. },
  6167. {
  6168. "name": "mariano73",
  6169. "homepage": "https://www.drupal.org/user/1324866"
  6170. },
  6171. {
  6172. "name": "mariuss",
  6173. "homepage": "https://www.drupal.org/user/28539"
  6174. },
  6175. {
  6176. "name": "sanduhrs",
  6177. "homepage": "https://www.drupal.org/user/28074"
  6178. },
  6179. {
  6180. "name": "vasi1186",
  6181. "homepage": "https://www.drupal.org/user/342104"
  6182. },
  6183. {
  6184. "name": "webiator GmbH",
  6185. "homepage": "https://www.drupal.org/user/2390554"
  6186. }
  6187. ],
  6188. "description": "Limit the number of characters in textfields and textareas and shows the amount of characters left.",
  6189. "homepage": "https://www.drupal.org/project/maxlength",
  6190. "support": {
  6191. "source": "https://git.drupalcode.org/project/maxlength"
  6192. }
  6193. },
  6194. {
  6195. "name": "drupal/menu_admin_per_menu",
  6196. "version": "1.3.0",
  6197. "source": {
  6198. "type": "git",
  6199. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  6200. "reference": "8.x-1.3"
  6201. },
  6202. "dist": {
  6203. "type": "zip",
  6204. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.3.zip",
  6205. "reference": "8.x-1.3",
  6206. "shasum": "cb967bdd9ca6f5692d670d5c7c8d77587e7fd38c"
  6207. },
  6208. "require": {
  6209. "drupal/core": "^8 || ^9"
  6210. },
  6211. "type": "drupal-module",
  6212. "extra": {
  6213. "drupal": {
  6214. "version": "8.x-1.3",
  6215. "datestamp": "1593436060",
  6216. "security-coverage": {
  6217. "status": "covered",
  6218. "message": "Covered by Drupal's security advisory policy"
  6219. }
  6220. }
  6221. },
  6222. "notification-url": "https://packages.drupal.org/8/downloads",
  6223. "license": [
  6224. "GPL-2.0-or-later"
  6225. ],
  6226. "authors": [
  6227. {
  6228. "name": "JeroenT",
  6229. "homepage": "https://www.drupal.org/user/2228934"
  6230. },
  6231. {
  6232. "name": "anrikun",
  6233. "homepage": "https://www.drupal.org/user/410199"
  6234. },
  6235. {
  6236. "name": "jonas139",
  6237. "homepage": "https://www.drupal.org/user/2873401"
  6238. },
  6239. {
  6240. "name": "mkdok",
  6241. "homepage": "https://www.drupal.org/user/3308753"
  6242. }
  6243. ],
  6244. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  6245. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  6246. "support": {
  6247. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  6248. }
  6249. },
  6250. {
  6251. "name": "drupal/menu_block",
  6252. "version": "1.6.0",
  6253. "source": {
  6254. "type": "git",
  6255. "url": "https://git.drupalcode.org/project/menu_block.git",
  6256. "reference": "8.x-1.6"
  6257. },
  6258. "dist": {
  6259. "type": "zip",
  6260. "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.6.zip",
  6261. "reference": "8.x-1.6",
  6262. "shasum": "3da96af15c3a5f5f1966e28b6e87b74228617998"
  6263. },
  6264. "require": {
  6265. "drupal/core": "^8 || ^9"
  6266. },
  6267. "type": "drupal-module",
  6268. "extra": {
  6269. "drupal": {
  6270. "version": "8.x-1.6",
  6271. "datestamp": "1587721600",
  6272. "security-coverage": {
  6273. "status": "covered",
  6274. "message": "Covered by Drupal's security advisory policy"
  6275. }
  6276. }
  6277. },
  6278. "notification-url": "https://packages.drupal.org/8/downloads",
  6279. "license": [
  6280. "GPL-2.0-or-later"
  6281. ],
  6282. "authors": [
  6283. {
  6284. "name": "Dave Reid",
  6285. "homepage": "https://www.drupal.org/user/53892"
  6286. },
  6287. {
  6288. "name": "JohnAlbin",
  6289. "homepage": "https://www.drupal.org/user/32095"
  6290. },
  6291. {
  6292. "name": "joelpittet",
  6293. "homepage": "https://www.drupal.org/user/160302"
  6294. },
  6295. {
  6296. "name": "kim.pepper",
  6297. "homepage": "https://www.drupal.org/user/370574"
  6298. },
  6299. {
  6300. "name": "rrrob",
  6301. "homepage": "https://www.drupal.org/user/273533"
  6302. }
  6303. ],
  6304. "description": "Provides configurable blocks of menu links.",
  6305. "homepage": "https://www.drupal.org/project/menu_block",
  6306. "support": {
  6307. "source": "https://git.drupalcode.org/project/menu_block"
  6308. }
  6309. },
  6310. {
  6311. "name": "drupal/menu_position",
  6312. "version": "dev-1.x",
  6313. "source": {
  6314. "type": "git",
  6315. "url": "https://git.drupalcode.org/project/menu_position.git",
  6316. "reference": "bce075f4ea167a851d7401602394de557b76c85f"
  6317. },
  6318. "require": {
  6319. "drupal/core": "^8 || ^9"
  6320. },
  6321. "type": "drupal-module",
  6322. "extra": {
  6323. "branch-alias": {
  6324. "dev-1.x": "1.x-dev"
  6325. },
  6326. "drupal": {
  6327. "version": "8.x-1.0-alpha4+4-dev",
  6328. "datestamp": "1587797468",
  6329. "security-coverage": {
  6330. "status": "not-covered",
  6331. "message": "Dev releases are not covered by Drupal security advisories."
  6332. }
  6333. }
  6334. },
  6335. "notification-url": "https://packages.drupal.org/8/downloads",
  6336. "license": [
  6337. "GPL-2.0+"
  6338. ],
  6339. "authors": [
  6340. {
  6341. "name": "BarisW",
  6342. "homepage": "https://www.drupal.org/user/107229"
  6343. },
  6344. {
  6345. "name": "JohnAlbin",
  6346. "homepage": "https://www.drupal.org/user/32095"
  6347. },
  6348. {
  6349. "name": "Sutharsan",
  6350. "homepage": "https://www.drupal.org/user/73854"
  6351. },
  6352. {
  6353. "name": "joelpittet",
  6354. "homepage": "https://www.drupal.org/user/160302"
  6355. },
  6356. {
  6357. "name": "lbainbridge",
  6358. "homepage": "https://www.drupal.org/user/2406996"
  6359. }
  6360. ],
  6361. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  6362. "homepage": "https://www.drupal.org/project/menu_position",
  6363. "support": {
  6364. "source": "https://git.drupalcode.org/project/menu_position",
  6365. "issues": "https://www.drupal.org/project/issues/menu_position"
  6366. },
  6367. "time": "2020-04-25T06:50:43+00:00"
  6368. },
  6369. {
  6370. "name": "drupal/pagerer",
  6371. "version": "2.0.0",
  6372. "source": {
  6373. "type": "git",
  6374. "url": "https://git.drupalcode.org/project/pagerer.git",
  6375. "reference": "8.x-2.0"
  6376. },
  6377. "dist": {
  6378. "type": "zip",
  6379. "url": "https://ftp.drupal.org/files/projects/pagerer-8.x-2.0.zip",
  6380. "reference": "8.x-2.0",
  6381. "shasum": "de54dee5aa1336c1d6e6c5aeccfbd602d5898c7f"
  6382. },
  6383. "require": {
  6384. "drupal/core": "^8.8 || ^9",
  6385. "drupal/jquery_ui_button": "*",
  6386. "drupal/jquery_ui_slider": "*",
  6387. "php": ">=7.1"
  6388. },
  6389. "type": "drupal-module",
  6390. "extra": {
  6391. "drupal": {
  6392. "version": "8.x-2.0",
  6393. "datestamp": "1589289359",
  6394. "security-coverage": {
  6395. "status": "covered",
  6396. "message": "Covered by Drupal's security advisory policy"
  6397. }
  6398. }
  6399. },
  6400. "notification-url": "https://packages.drupal.org/8/downloads",
  6401. "license": [
  6402. "GPL-2.0-or-later"
  6403. ],
  6404. "authors": [
  6405. {
  6406. "name": "mondrake",
  6407. "homepage": "https://www.drupal.org/user/1307444"
  6408. }
  6409. ],
  6410. "description": "Configurable pager styles.",
  6411. "homepage": "https://www.drupal.org/project/pagerer",
  6412. "support": {
  6413. "source": "https://git.drupalcode.org/project/pagerer"
  6414. }
  6415. },
  6416. {
  6417. "name": "drupal/path_alias_xt",
  6418. "version": "dev-1.x",
  6419. "source": {
  6420. "type": "git",
  6421. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  6422. "reference": "10ef76dd3eb25bc1342195336291ded3f2d8cc7e"
  6423. },
  6424. "require": {
  6425. "drupal/core": "^8.7.7 || ^9"
  6426. },
  6427. "type": "drupal-module",
  6428. "extra": {
  6429. "branch-alias": {
  6430. "dev-1.x": "1.x-dev"
  6431. },
  6432. "drupal": {
  6433. "version": "8.x-1.x-dev",
  6434. "datestamp": "1590299862",
  6435. "security-coverage": {
  6436. "status": "not-covered",
  6437. "message": "Dev releases are not covered by Drupal security advisories."
  6438. }
  6439. }
  6440. },
  6441. "notification-url": "https://packages.drupal.org/8/downloads",
  6442. "license": [
  6443. "GPL-2.0-or-later"
  6444. ],
  6445. "authors": [
  6446. {
  6447. "name": "RdeBoer",
  6448. "homepage": "https://www.drupal.org/user/404007"
  6449. },
  6450. {
  6451. "name": "adriancid",
  6452. "homepage": "https://www.drupal.org/user/1962106"
  6453. },
  6454. {
  6455. "name": "sdstyles",
  6456. "homepage": "https://www.drupal.org/user/1420228"
  6457. }
  6458. ],
  6459. "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.",
  6460. "homepage": "https://www.drupal.org/project/path_alias_xt",
  6461. "support": {
  6462. "source": "https://git.drupalcode.org/project/path_alias_xt"
  6463. },
  6464. "time": "2020-05-24T05:57:09+00:00"
  6465. },
  6466. {
  6467. "name": "drupal/pathauto",
  6468. "version": "1.8.0",
  6469. "source": {
  6470. "type": "git",
  6471. "url": "https://git.drupalcode.org/project/pathauto.git",
  6472. "reference": "8.x-1.8"
  6473. },
  6474. "dist": {
  6475. "type": "zip",
  6476. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.8.zip",
  6477. "reference": "8.x-1.8",
  6478. "shasum": "ede3216abb9c4f77709338d9147334c595046329"
  6479. },
  6480. "require": {
  6481. "drupal/core": "^8.8 || ^9",
  6482. "drupal/ctools": "*",
  6483. "drupal/token": "*"
  6484. },
  6485. "suggest": {
  6486. "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."
  6487. },
  6488. "type": "drupal-module",
  6489. "extra": {
  6490. "drupal": {
  6491. "version": "8.x-1.8",
  6492. "datestamp": "1588103046",
  6493. "security-coverage": {
  6494. "status": "covered",
  6495. "message": "Covered by Drupal's security advisory policy"
  6496. }
  6497. },
  6498. "drush": {
  6499. "services": {
  6500. "drush.services.yml": "^9 || ^10"
  6501. }
  6502. }
  6503. },
  6504. "notification-url": "https://packages.drupal.org/8/downloads",
  6505. "license": [
  6506. "GPL-2.0-or-later"
  6507. ],
  6508. "authors": [
  6509. {
  6510. "name": "Berdir",
  6511. "homepage": "https://www.drupal.org/user/214652"
  6512. },
  6513. {
  6514. "name": "Dave Reid",
  6515. "homepage": "https://www.drupal.org/user/53892"
  6516. },
  6517. {
  6518. "name": "Freso",
  6519. "homepage": "https://www.drupal.org/user/27504"
  6520. },
  6521. {
  6522. "name": "greggles",
  6523. "homepage": "https://www.drupal.org/user/36762"
  6524. }
  6525. ],
  6526. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  6527. "homepage": "https://www.drupal.org/project/pathauto",
  6528. "support": {
  6529. "source": "https://cgit.drupalcode.org/pathauto",
  6530. "issues": "https://www.drupal.org/project/issues/pathauto",
  6531. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  6532. }
  6533. },
  6534. {
  6535. "name": "drupal/pathologic",
  6536. "version": "1.0.0-alpha2",
  6537. "source": {
  6538. "type": "git",
  6539. "url": "https://git.drupalcode.org/project/pathologic.git",
  6540. "reference": "8.x-1.0-alpha2"
  6541. },
  6542. "dist": {
  6543. "type": "zip",
  6544. "url": "https://ftp.drupal.org/files/projects/pathologic-8.x-1.0-alpha2.zip",
  6545. "reference": "8.x-1.0-alpha2",
  6546. "shasum": "5b1b6846ab72e24a90dcd4cafbe855fba069e56b"
  6547. },
  6548. "require": {
  6549. "drupal/core": "^8 || ^9"
  6550. },
  6551. "type": "drupal-module",
  6552. "extra": {
  6553. "drupal": {
  6554. "version": "8.x-1.0-alpha2",
  6555. "datestamp": "1593911470",
  6556. "security-coverage": {
  6557. "status": "not-covered",
  6558. "message": "Alpha releases are not covered by Drupal security advisories."
  6559. }
  6560. }
  6561. },
  6562. "notification-url": "https://packages.drupal.org/8/downloads",
  6563. "license": [
  6564. "GPL-2.0-or-later"
  6565. ],
  6566. "authors": [
  6567. {
  6568. "name": "Berdir",
  6569. "homepage": "https://www.drupal.org/user/214652"
  6570. },
  6571. {
  6572. "name": "Garrett Albright",
  6573. "homepage": "https://www.drupal.org/user/191212"
  6574. },
  6575. {
  6576. "name": "dww",
  6577. "homepage": "https://www.drupal.org/user/46549"
  6578. }
  6579. ],
  6580. "description": "Helps avoid broken links and incorrect paths in content.",
  6581. "homepage": "https://www.drupal.org/project/pathologic",
  6582. "support": {
  6583. "source": "https://git.drupalcode.org/project/pathologic"
  6584. }
  6585. },
  6586. {
  6587. "name": "drupal/persistent_login",
  6588. "version": "1.3.0",
  6589. "source": {
  6590. "type": "git",
  6591. "url": "https://git.drupalcode.org/project/persistent_login.git",
  6592. "reference": "8.x-1.3"
  6593. },
  6594. "dist": {
  6595. "type": "zip",
  6596. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.3.zip",
  6597. "reference": "8.x-1.3",
  6598. "shasum": "dfff4cb76d6b3888073dd992bcf4d51b1bb47696"
  6599. },
  6600. "require": {
  6601. "drupal/core": "^8.3 || ^9.0"
  6602. },
  6603. "type": "drupal-module",
  6604. "extra": {
  6605. "drupal": {
  6606. "version": "8.x-1.3",
  6607. "datestamp": "1591597823",
  6608. "security-coverage": {
  6609. "status": "covered",
  6610. "message": "Covered by Drupal's security advisory policy"
  6611. }
  6612. }
  6613. },
  6614. "notification-url": "https://packages.drupal.org/8/downloads",
  6615. "license": [
  6616. "GPL-2.0-or-later"
  6617. ],
  6618. "authors": [
  6619. {
  6620. "name": "gapple",
  6621. "homepage": "https://www.drupal.org/user/490940"
  6622. }
  6623. ],
  6624. "description": "Provides a \"Remember Me\" feature on the login form.",
  6625. "homepage": "https://www.drupal.org/project/persistent_login",
  6626. "keywords": [
  6627. "Drupal"
  6628. ],
  6629. "support": {
  6630. "source": "https://git.drupalcode.org/project/persistent_login",
  6631. "issues": "https://www.drupal.org/project/issues/persistent_login"
  6632. }
  6633. },
  6634. {
  6635. "name": "drupal/profile",
  6636. "version": "1.2.0",
  6637. "source": {
  6638. "type": "git",
  6639. "url": "https://git.drupalcode.org/project/profile.git",
  6640. "reference": "8.x-1.2"
  6641. },
  6642. "dist": {
  6643. "type": "zip",
  6644. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.2.zip",
  6645. "reference": "8.x-1.2",
  6646. "shasum": "5ea5167ed6cc5b47761ea497fe20bae0fbea1cf2"
  6647. },
  6648. "require": {
  6649. "drupal/core": "^8.8 || ^9",
  6650. "drupal/entity": "^1.0-rc2"
  6651. },
  6652. "require-dev": {
  6653. "drupal/token": "^1.7"
  6654. },
  6655. "type": "drupal-module",
  6656. "extra": {
  6657. "drupal": {
  6658. "version": "8.x-1.2",
  6659. "datestamp": "1604422701",
  6660. "security-coverage": {
  6661. "status": "covered",
  6662. "message": "Covered by Drupal's security advisory policy"
  6663. }
  6664. }
  6665. },
  6666. "notification-url": "https://packages.drupal.org/8/downloads",
  6667. "license": [
  6668. "GPL-2.0-or-later"
  6669. ],
  6670. "authors": [
  6671. {
  6672. "name": "bojanz",
  6673. "homepage": "https://www.drupal.org/user/86106"
  6674. },
  6675. {
  6676. "name": "daggerhart",
  6677. "homepage": "https://www.drupal.org/user/167806"
  6678. },
  6679. {
  6680. "name": "fago",
  6681. "homepage": "https://www.drupal.org/user/16747"
  6682. },
  6683. {
  6684. "name": "jsacksick",
  6685. "homepage": "https://www.drupal.org/user/972218"
  6686. },
  6687. {
  6688. "name": "mglaman",
  6689. "homepage": "https://www.drupal.org/user/2416470"
  6690. },
  6691. {
  6692. "name": "pcambra",
  6693. "homepage": "https://www.drupal.org/user/122101"
  6694. }
  6695. ],
  6696. "description": "Provides configurable user profiles.",
  6697. "homepage": "http://drupal.org/project/profile",
  6698. "support": {
  6699. "source": "https://git.drupalcode.org/project/profile"
  6700. }
  6701. },
  6702. {
  6703. "name": "drupal/redirect",
  6704. "version": "1.6.0",
  6705. "source": {
  6706. "type": "git",
  6707. "url": "https://git.drupalcode.org/project/redirect.git",
  6708. "reference": "8.x-1.6"
  6709. },
  6710. "dist": {
  6711. "type": "zip",
  6712. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.6.zip",
  6713. "reference": "8.x-1.6",
  6714. "shasum": "f848e001deac8425ae57d4b9397087c491d37294"
  6715. },
  6716. "require": {
  6717. "drupal/core": "^8.8 || ^9"
  6718. },
  6719. "type": "drupal-module",
  6720. "extra": {
  6721. "drupal": {
  6722. "version": "8.x-1.6",
  6723. "datestamp": "1589312204",
  6724. "security-coverage": {
  6725. "status": "covered",
  6726. "message": "Covered by Drupal's security advisory policy"
  6727. }
  6728. }
  6729. },
  6730. "notification-url": "https://packages.drupal.org/8/downloads",
  6731. "license": [
  6732. "GPL-2.0-or-later"
  6733. ],
  6734. "authors": [
  6735. {
  6736. "name": "Berdir",
  6737. "homepage": "https://www.drupal.org/user/214652"
  6738. },
  6739. {
  6740. "name": "Dave Reid",
  6741. "homepage": "https://www.drupal.org/user/53892"
  6742. },
  6743. {
  6744. "name": "pifagor",
  6745. "homepage": "https://www.drupal.org/user/2375692"
  6746. }
  6747. ],
  6748. "description": "Allows users to redirect from old URLs to new URLs.",
  6749. "homepage": "https://www.drupal.org/project/redirect",
  6750. "support": {
  6751. "source": "https://git.drupalcode.org/project/redirect"
  6752. }
  6753. },
  6754. {
  6755. "name": "drupal/redis",
  6756. "version": "1.4.0",
  6757. "source": {
  6758. "type": "git",
  6759. "url": "https://git.drupalcode.org/project/redis.git",
  6760. "reference": "8.x-1.4"
  6761. },
  6762. "dist": {
  6763. "type": "zip",
  6764. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.4.zip",
  6765. "reference": "8.x-1.4",
  6766. "shasum": "87165acdda18873c1e3994c670bcb4cdafd3d0ff"
  6767. },
  6768. "require": {
  6769. "drupal/core": "^8.8 || ^9"
  6770. },
  6771. "suggest": {
  6772. "predis/predis": "^1.1.1"
  6773. },
  6774. "type": "drupal-module",
  6775. "extra": {
  6776. "drupal": {
  6777. "version": "8.x-1.4",
  6778. "datestamp": "1581504947",
  6779. "security-coverage": {
  6780. "status": "covered",
  6781. "message": "Covered by Drupal's security advisory policy"
  6782. }
  6783. }
  6784. },
  6785. "autoload": {
  6786. "psr-4": {
  6787. "Drupal\\redis\\": "src"
  6788. }
  6789. },
  6790. "notification-url": "https://packages.drupal.org/8/downloads",
  6791. "license": [
  6792. "GPL-2.0"
  6793. ],
  6794. "authors": [
  6795. {
  6796. "name": "Berdir",
  6797. "homepage": "https://www.drupal.org/user/214652"
  6798. },
  6799. {
  6800. "name": "pounard",
  6801. "homepage": "https://www.drupal.org/user/240164"
  6802. }
  6803. ],
  6804. "description": "Provide a module placeholder, for using as dependency for module that needs Redis.",
  6805. "homepage": "https://www.drupal.org/project/redis",
  6806. "support": {
  6807. "source": "https://git.drupalcode.org/project/redis"
  6808. }
  6809. },
  6810. {
  6811. "name": "drupal/search_api",
  6812. "version": "1.18.0",
  6813. "source": {
  6814. "type": "git",
  6815. "url": "https://git.drupalcode.org/project/search_api.git",
  6816. "reference": "8.x-1.18"
  6817. },
  6818. "dist": {
  6819. "type": "zip",
  6820. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.18.zip",
  6821. "reference": "8.x-1.18",
  6822. "shasum": "6cf1d6820ba55891e204bac40b6031ed15db482a"
  6823. },
  6824. "require": {
  6825. "drupal/core": "^8.8 || ^9"
  6826. },
  6827. "conflict": {
  6828. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  6829. },
  6830. "require-dev": {
  6831. "drupal/language_fallback_fix": "@dev",
  6832. "drupal/search_api_autocomplete": "@dev",
  6833. "drupal/search_api_db": "*"
  6834. },
  6835. "suggest": {
  6836. "drupal/facets": "Adds the ability to create faceted searches.",
  6837. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  6838. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  6839. },
  6840. "type": "drupal-module",
  6841. "extra": {
  6842. "drupal": {
  6843. "version": "8.x-1.18",
  6844. "datestamp": "1605204423",
  6845. "security-coverage": {
  6846. "status": "covered",
  6847. "message": "Covered by Drupal's security advisory policy"
  6848. }
  6849. },
  6850. "drush": {
  6851. "services": {
  6852. "drush.services.yml": "^9"
  6853. }
  6854. }
  6855. },
  6856. "notification-url": "https://packages.drupal.org/8/downloads",
  6857. "license": [
  6858. "GPL-2.0-or-later"
  6859. ],
  6860. "authors": [
  6861. {
  6862. "name": "Thomas Seidl",
  6863. "homepage": "https://www.drupal.org/u/drunken-monkey"
  6864. },
  6865. {
  6866. "name": "Nick Veenhof",
  6867. "homepage": "https://www.drupal.org/u/nick_vh"
  6868. },
  6869. {
  6870. "name": "See other contributors",
  6871. "homepage": "https://www.drupal.org/node/790418/committers"
  6872. }
  6873. ],
  6874. "description": "Provides a generic framework for modules offering search capabilities.",
  6875. "homepage": "https://www.drupal.org/project/search_api",
  6876. "support": {
  6877. "source": "https://git.drupalcode.org/project/search_api",
  6878. "issues": "https://www.drupal.org/project/issues/search_api",
  6879. "irc": "irc://irc.freenode.org/drupal-search-api"
  6880. }
  6881. },
  6882. {
  6883. "name": "drupal/search_api_db",
  6884. "version": "1.18.0",
  6885. "require": {
  6886. "drupal/core": "^8.8 || ^9",
  6887. "drupal/search_api": "*"
  6888. },
  6889. "type": "metapackage",
  6890. "extra": {
  6891. "drupal": {
  6892. "version": "8.x-1.18",
  6893. "datestamp": "1605204423",
  6894. "security-coverage": {
  6895. "status": "covered",
  6896. "message": "Covered by Drupal's security advisory policy"
  6897. }
  6898. }
  6899. },
  6900. "notification-url": "https://packages.drupal.org/8/downloads",
  6901. "license": [
  6902. "GPL-2.0-or-later"
  6903. ],
  6904. "authors": [
  6905. {
  6906. "name": "Nick_vh",
  6907. "homepage": "https://www.drupal.org/user/122682"
  6908. },
  6909. {
  6910. "name": "borisson_",
  6911. "homepage": "https://www.drupal.org/user/2393360"
  6912. },
  6913. {
  6914. "name": "drunken monkey",
  6915. "homepage": "https://www.drupal.org/user/205582"
  6916. }
  6917. ],
  6918. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  6919. "homepage": "https://www.drupal.org/project/search_api",
  6920. "support": {
  6921. "source": "https://git.drupalcode.org/project/search_api"
  6922. }
  6923. },
  6924. {
  6925. "name": "drupal/smart_trim",
  6926. "version": "1.3.0",
  6927. "source": {
  6928. "type": "git",
  6929. "url": "https://git.drupalcode.org/project/smart_trim.git",
  6930. "reference": "8.x-1.3"
  6931. },
  6932. "dist": {
  6933. "type": "zip",
  6934. "url": "https://ftp.drupal.org/files/projects/smart_trim-8.x-1.3.zip",
  6935. "reference": "8.x-1.3",
  6936. "shasum": "5894aa067fba19a3452ed8ce749f33bd9ae91907"
  6937. },
  6938. "require": {
  6939. "drupal/core": "^8 || ^9"
  6940. },
  6941. "type": "drupal-module",
  6942. "extra": {
  6943. "drupal": {
  6944. "version": "8.x-1.3",
  6945. "datestamp": "1589766531",
  6946. "security-coverage": {
  6947. "status": "covered",
  6948. "message": "Covered by Drupal's security advisory policy"
  6949. }
  6950. }
  6951. },
  6952. "notification-url": "https://packages.drupal.org/8/downloads",
  6953. "license": [
  6954. "GPL-2.0-or-later"
  6955. ],
  6956. "authors": [
  6957. {
  6958. "name": "Mark Casias (markie)",
  6959. "homepage": "https://www.drupal.org/u/markie",
  6960. "role": "Maintainer"
  6961. },
  6962. {
  6963. "name": "chrisjlee",
  6964. "homepage": "https://www.drupal.org/user/760600"
  6965. },
  6966. {
  6967. "name": "drywall",
  6968. "homepage": "https://www.drupal.org/user/192591"
  6969. },
  6970. {
  6971. "name": "jsenich",
  6972. "homepage": "https://www.drupal.org/user/58871"
  6973. },
  6974. {
  6975. "name": "markie",
  6976. "homepage": "https://www.drupal.org/user/206687"
  6977. },
  6978. {
  6979. "name": "newsignature",
  6980. "homepage": "https://www.drupal.org/user/765518"
  6981. }
  6982. ],
  6983. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  6984. "homepage": "https://drupal.org/project/smart_trim",
  6985. "support": {
  6986. "source": "https://cgit.drupalcode.org/smart_trim",
  6987. "issues": "https://drupal.org/project/issues/smart_trim"
  6988. }
  6989. },
  6990. {
  6991. "name": "drupal/smtp",
  6992. "version": "1.0.0",
  6993. "source": {
  6994. "type": "git",
  6995. "url": "https://git.drupalcode.org/project/smtp.git",
  6996. "reference": "8.x-1.0"
  6997. },
  6998. "dist": {
  6999. "type": "zip",
  7000. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.0.zip",
  7001. "reference": "8.x-1.0",
  7002. "shasum": "c40cc7a3c20d3f743e3a4e53f4cc296748da89fd"
  7003. },
  7004. "require": {
  7005. "drupal/core": "^8.8 || ^9",
  7006. "phpmailer/phpmailer": "^6.1.7"
  7007. },
  7008. "suggest": {
  7009. "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
  7010. },
  7011. "type": "drupal-module",
  7012. "extra": {
  7013. "drupal": {
  7014. "version": "8.x-1.0",
  7015. "datestamp": "1601070985",
  7016. "security-coverage": {
  7017. "status": "covered",
  7018. "message": "Covered by Drupal's security advisory policy"
  7019. }
  7020. },
  7021. "branch-alias": {
  7022. "dev-8.x-1.x": "1.x-dev"
  7023. }
  7024. },
  7025. "notification-url": "https://packages.drupal.org/8/downloads",
  7026. "license": [
  7027. "GPL-2.0-or-later"
  7028. ],
  7029. "authors": [
  7030. {
  7031. "name": "LukeLast",
  7032. "homepage": "https://www.drupal.org/user/30151"
  7033. },
  7034. {
  7035. "name": "japerry",
  7036. "homepage": "https://www.drupal.org/user/45640"
  7037. },
  7038. {
  7039. "name": "josesanmartin",
  7040. "homepage": "https://www.drupal.org/user/72012"
  7041. },
  7042. {
  7043. "name": "oadaeh",
  7044. "homepage": "https://www.drupal.org/user/4649"
  7045. },
  7046. {
  7047. "name": "sadashiv",
  7048. "homepage": "https://www.drupal.org/user/1773304"
  7049. },
  7050. {
  7051. "name": "wundo",
  7052. "homepage": "https://www.drupal.org/user/25523"
  7053. },
  7054. {
  7055. "name": "yettyn",
  7056. "homepage": "https://www.drupal.org/user/93281"
  7057. }
  7058. ],
  7059. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  7060. "homepage": "https://www.drupal.org/project/smtp",
  7061. "support": {
  7062. "source": "https://git.drupalcode.org/project/smtp",
  7063. "issues": "https://www.drupal.org/project/issues/smtp"
  7064. }
  7065. },
  7066. {
  7067. "name": "drupal/sophron",
  7068. "version": "1.1.0",
  7069. "source": {
  7070. "type": "git",
  7071. "url": "https://git.drupalcode.org/project/sophron.git",
  7072. "reference": "8.x-1.1"
  7073. },
  7074. "dist": {
  7075. "type": "zip",
  7076. "url": "https://ftp.drupal.org/files/projects/sophron-8.x-1.1.zip",
  7077. "reference": "8.x-1.1",
  7078. "shasum": "afb3650458b15b87918471defa763f24880622ca"
  7079. },
  7080. "require": {
  7081. "drupal/core": "^8.9 || ^9",
  7082. "fileeye/mimemap": "^1.1.4",
  7083. "php": ">=7.1"
  7084. },
  7085. "type": "drupal-module",
  7086. "extra": {
  7087. "drupal": {
  7088. "version": "8.x-1.1",
  7089. "datestamp": "1606047077",
  7090. "security-coverage": {
  7091. "status": "covered",
  7092. "message": "Covered by Drupal's security advisory policy"
  7093. }
  7094. }
  7095. },
  7096. "autoload": {
  7097. "psr-4": {
  7098. "Drupal\\sophron\\": "src/"
  7099. }
  7100. },
  7101. "notification-url": "https://packages.drupal.org/8/downloads",
  7102. "license": [
  7103. "GPL-2.0-or-later"
  7104. ],
  7105. "authors": [
  7106. {
  7107. "name": "mondrake",
  7108. "homepage": "https://www.drupal.org/user/1307444"
  7109. }
  7110. ],
  7111. "description": "Provides an extensive MIME types management API",
  7112. "homepage": "https://www.drupal.org/project/sophron",
  7113. "support": {
  7114. "source": "https://git.drupalcode.org/project/sophron"
  7115. }
  7116. },
  7117. {
  7118. "name": "drupal/synonyms",
  7119. "version": "dev-1.x",
  7120. "source": {
  7121. "type": "git",
  7122. "url": "https://git.drupalcode.org/project/synonyms.git",
  7123. "reference": "487a41e2b4d4c4a5f161852cbd46178edb954d5d"
  7124. },
  7125. "require": {
  7126. "drupal/core": "^8 || ^9"
  7127. },
  7128. "type": "drupal-module",
  7129. "extra": {
  7130. "branch-alias": {
  7131. "dev-1.x": "1.x-dev"
  7132. },
  7133. "drupal": {
  7134. "version": "8.x-1.0-alpha1+23-dev",
  7135. "datestamp": "1607727823",
  7136. "security-coverage": {
  7137. "status": "not-covered",
  7138. "message": "Dev releases are not covered by Drupal security advisories."
  7139. }
  7140. }
  7141. },
  7142. "notification-url": "https://packages.drupal.org/8/downloads",
  7143. "license": [
  7144. "GPL-2.0-or-later"
  7145. ],
  7146. "authors": [
  7147. {
  7148. "name": "Zen",
  7149. "homepage": "https://www.drupal.org/user/21209"
  7150. },
  7151. {
  7152. "name": "bojanz",
  7153. "homepage": "https://www.drupal.org/user/86106"
  7154. },
  7155. {
  7156. "name": "bucefal91",
  7157. "homepage": "https://www.drupal.org/user/504128"
  7158. },
  7159. {
  7160. "name": "devad",
  7161. "homepage": "https://www.drupal.org/user/2268520"
  7162. }
  7163. ],
  7164. "description": "Provides synonyms feature for content entities.",
  7165. "homepage": "https://www.drupal.org/project/synonyms",
  7166. "support": {
  7167. "source": "https://git.drupalcode.org/project/synonyms"
  7168. },
  7169. "time": "2020-12-11T23:17:33+00:00"
  7170. },
  7171. {
  7172. "name": "drupal/token",
  7173. "version": "1.8.0",
  7174. "source": {
  7175. "type": "git",
  7176. "url": "https://git.drupalcode.org/project/token.git",
  7177. "reference": "8.x-1.8"
  7178. },
  7179. "dist": {
  7180. "type": "zip",
  7181. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.8.zip",
  7182. "reference": "8.x-1.8",
  7183. "shasum": "f8e3b8f897817969324d88019438066b533bfe42"
  7184. },
  7185. "require": {
  7186. "drupal/core": "^8.8 || ^9"
  7187. },
  7188. "type": "drupal-module",
  7189. "extra": {
  7190. "drupal": {
  7191. "version": "8.x-1.8",
  7192. "datestamp": "1607552423",
  7193. "security-coverage": {
  7194. "status": "covered",
  7195. "message": "Covered by Drupal's security advisory policy"
  7196. }
  7197. },
  7198. "drush": {
  7199. "services": {
  7200. "drush.services.yml": "^9 || ^10"
  7201. }
  7202. }
  7203. },
  7204. "notification-url": "https://packages.drupal.org/8/downloads",
  7205. "license": [
  7206. "GPL-2.0-or-later"
  7207. ],
  7208. "authors": [
  7209. {
  7210. "name": "Berdir",
  7211. "homepage": "https://www.drupal.org/user/214652"
  7212. },
  7213. {
  7214. "name": "Dave Reid",
  7215. "homepage": "https://www.drupal.org/user/53892"
  7216. },
  7217. {
  7218. "name": "eaton",
  7219. "homepage": "https://www.drupal.org/user/16496"
  7220. },
  7221. {
  7222. "name": "fago",
  7223. "homepage": "https://www.drupal.org/user/16747"
  7224. },
  7225. {
  7226. "name": "greggles",
  7227. "homepage": "https://www.drupal.org/user/36762"
  7228. },
  7229. {
  7230. "name": "mikeryan",
  7231. "homepage": "https://www.drupal.org/user/4420"
  7232. }
  7233. ],
  7234. "description": "Provides a user interface for the Token API, some missing core tokens.",
  7235. "homepage": "https://www.drupal.org/project/token",
  7236. "support": {
  7237. "source": "https://git.drupalcode.org/project/token"
  7238. }
  7239. },
  7240. {
  7241. "name": "drupal/translation_views",
  7242. "version": "1.0.0-alpha10",
  7243. "source": {
  7244. "type": "git",
  7245. "url": "https://git.drupalcode.org/project/translation_views.git",
  7246. "reference": "8.x-1.0-alpha10"
  7247. },
  7248. "dist": {
  7249. "type": "zip",
  7250. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha10.zip",
  7251. "reference": "8.x-1.0-alpha10",
  7252. "shasum": "ca1a6d4bf16293b1b094db6439f9f065de1dbbd5"
  7253. },
  7254. "require": {
  7255. "drupal/core": "^8.8 || ^9"
  7256. },
  7257. "require-dev": {
  7258. "drupal/translators": "*",
  7259. "drupal/translators_content": "*"
  7260. },
  7261. "type": "drupal-module",
  7262. "extra": {
  7263. "drupal": {
  7264. "version": "8.x-1.0-alpha10",
  7265. "datestamp": "1584303687",
  7266. "security-coverage": {
  7267. "status": "not-covered",
  7268. "message": "Project has not opted into security advisory coverage!"
  7269. }
  7270. }
  7271. },
  7272. "notification-url": "https://packages.drupal.org/8/downloads",
  7273. "license": [
  7274. "GPL-2.0-or-later"
  7275. ],
  7276. "authors": [
  7277. {
  7278. "name": "matsbla",
  7279. "homepage": "https://www.drupal.org/user/2325394"
  7280. },
  7281. {
  7282. "name": "vlad.dancer",
  7283. "homepage": "https://www.drupal.org/user/903844"
  7284. }
  7285. ],
  7286. "description": "Create customized lists and queries of translations from your database.",
  7287. "homepage": "https://www.drupal.org/project/translation_views",
  7288. "support": {
  7289. "source": "https://git.drupalcode.org/project/translation_views"
  7290. }
  7291. },
  7292. {
  7293. "name": "drupal/ultimate_cron",
  7294. "version": "2.0.0-alpha5",
  7295. "source": {
  7296. "type": "git",
  7297. "url": "https://git.drupalcode.org/project/ultimate_cron.git",
  7298. "reference": "8.x-2.0-alpha5"
  7299. },
  7300. "dist": {
  7301. "type": "zip",
  7302. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha5.zip",
  7303. "reference": "8.x-2.0-alpha5",
  7304. "shasum": "0f10464fff29eca89024e7afa5b6d8d07bd52f75"
  7305. },
  7306. "require": {
  7307. "drupal/core": "^8.7.7 || ^9"
  7308. },
  7309. "type": "drupal-module",
  7310. "extra": {
  7311. "drupal": {
  7312. "version": "8.x-2.0-alpha5",
  7313. "datestamp": "1600928948",
  7314. "security-coverage": {
  7315. "status": "not-covered",
  7316. "message": "Alpha releases are not covered by Drupal security advisories."
  7317. }
  7318. },
  7319. "drush": {
  7320. "services": {
  7321. "drush.services.yml": "^9 || ^10"
  7322. }
  7323. }
  7324. },
  7325. "notification-url": "https://packages.drupal.org/8/downloads",
  7326. "license": [
  7327. "GPL-2.0+"
  7328. ],
  7329. "authors": [
  7330. {
  7331. "name": "Berdir",
  7332. "homepage": "https://www.drupal.org/user/214652"
  7333. },
  7334. {
  7335. "name": "Dane Powell",
  7336. "homepage": "https://www.drupal.org/user/339326"
  7337. },
  7338. {
  7339. "name": "Primsi",
  7340. "homepage": "https://www.drupal.org/user/282629"
  7341. },
  7342. {
  7343. "name": "arnested",
  7344. "homepage": "https://www.drupal.org/user/245635"
  7345. },
  7346. {
  7347. "name": "gielfeldt",
  7348. "homepage": "https://www.drupal.org/user/366993"
  7349. },
  7350. {
  7351. "name": "miro_dietiker",
  7352. "homepage": "https://www.drupal.org/user/227761"
  7353. }
  7354. ],
  7355. "description": "Ultimate cron",
  7356. "homepage": "https://www.drupal.org/project/ultimate_cron",
  7357. "support": {
  7358. "source": "https://git.drupalcode.org/project/ultimate_cron"
  7359. }
  7360. },
  7361. {
  7362. "name": "drupal/url_to_video_filter",
  7363. "version": "2.0.0",
  7364. "source": {
  7365. "type": "git",
  7366. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  7367. "reference": "2.0.0"
  7368. },
  7369. "dist": {
  7370. "type": "zip",
  7371. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-2.0.0.zip",
  7372. "reference": "2.0.0",
  7373. "shasum": "ac728919cc220846d8ef2ce61dbe1b94fbbf479b"
  7374. },
  7375. "require": {
  7376. "drupal/core": "^8 || ^9"
  7377. },
  7378. "type": "drupal-module",
  7379. "extra": {
  7380. "drupal": {
  7381. "version": "2.0.0",
  7382. "datestamp": "1607298389",
  7383. "security-coverage": {
  7384. "status": "covered",
  7385. "message": "Covered by Drupal's security advisory policy"
  7386. }
  7387. }
  7388. },
  7389. "notification-url": "https://packages.drupal.org/8/downloads",
  7390. "license": [
  7391. "GPL-2.0-or-later"
  7392. ],
  7393. "authors": [
  7394. {
  7395. "name": "Jaypan",
  7396. "homepage": "https://www.drupal.org/user/324696"
  7397. }
  7398. ],
  7399. "description": "Text filter to convert URLs to embedded videos",
  7400. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  7401. "support": {
  7402. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  7403. }
  7404. },
  7405. {
  7406. "name": "drupal/video_embed_field",
  7407. "version": "2.4.0",
  7408. "source": {
  7409. "type": "git",
  7410. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  7411. "reference": "8.x-2.4"
  7412. },
  7413. "dist": {
  7414. "type": "zip",
  7415. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.4.zip",
  7416. "reference": "8.x-2.4",
  7417. "shasum": "96b14bb93c1bb6a07b84315a4f87367870f8b574"
  7418. },
  7419. "require": {
  7420. "drupal/core": "^8.8 || ^9"
  7421. },
  7422. "require-dev": {
  7423. "drupal/colorbox": "^1.0",
  7424. "drupal/video_embed_media": "*"
  7425. },
  7426. "type": "drupal-module",
  7427. "extra": {
  7428. "drupal": {
  7429. "version": "8.x-2.4",
  7430. "datestamp": "1587686337",
  7431. "security-coverage": {
  7432. "status": "covered",
  7433. "message": "Covered by Drupal's security advisory policy"
  7434. }
  7435. }
  7436. },
  7437. "notification-url": "https://packages.drupal.org/8/downloads",
  7438. "license": [
  7439. "GPL-2.0+"
  7440. ],
  7441. "authors": [
  7442. {
  7443. "name": "Sam152",
  7444. "homepage": "https://www.drupal.org/user/1485048"
  7445. },
  7446. {
  7447. "name": "jec006",
  7448. "homepage": "https://www.drupal.org/user/855980"
  7449. },
  7450. {
  7451. "name": "plopesc",
  7452. "homepage": "https://www.drupal.org/user/282415"
  7453. }
  7454. ],
  7455. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  7456. "homepage": "https://www.drupal.org/project/video_embed_field",
  7457. "support": {
  7458. "source": "https://git.drupalcode.org/project/video_embed_field"
  7459. }
  7460. },
  7461. {
  7462. "name": "drupal/views_bulk_edit",
  7463. "version": "2.5.0",
  7464. "source": {
  7465. "type": "git",
  7466. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  7467. "reference": "8.x-2.5"
  7468. },
  7469. "dist": {
  7470. "type": "zip",
  7471. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.5.zip",
  7472. "reference": "8.x-2.5",
  7473. "shasum": "5f268f532e070fd3d1bffcb135d90f395f303a37"
  7474. },
  7475. "require": {
  7476. "drupal/core": "^8 || ^9"
  7477. },
  7478. "require-dev": {
  7479. "drupal/views_bulk_operations": "~3.0"
  7480. },
  7481. "suggest": {
  7482. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  7483. },
  7484. "type": "drupal-module",
  7485. "extra": {
  7486. "drupal": {
  7487. "version": "8.x-2.5",
  7488. "datestamp": "1606726163",
  7489. "security-coverage": {
  7490. "status": "covered",
  7491. "message": "Covered by Drupal's security advisory policy"
  7492. }
  7493. }
  7494. },
  7495. "notification-url": "https://packages.drupal.org/8/downloads",
  7496. "license": [
  7497. "GPL-2.0+"
  7498. ],
  7499. "authors": [
  7500. {
  7501. "name": "Marcin Grabias",
  7502. "homepage": "https://www.drupal.org/u/graber"
  7503. },
  7504. {
  7505. "name": "benjy",
  7506. "homepage": "https://www.drupal.org/user/1852732"
  7507. }
  7508. ],
  7509. "description": "Allows bulk edition of entity field values.",
  7510. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  7511. "support": {
  7512. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  7513. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  7514. }
  7515. },
  7516. {
  7517. "name": "drupal/views_bulk_operations",
  7518. "version": "3.9.0",
  7519. "source": {
  7520. "type": "git",
  7521. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  7522. "reference": "8.x-3.9"
  7523. },
  7524. "dist": {
  7525. "type": "zip",
  7526. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.9.zip",
  7527. "reference": "8.x-3.9",
  7528. "shasum": "d7f6e50c31d21ff32f21e8f4aaedb52f6dee2da8"
  7529. },
  7530. "require": {
  7531. "drupal/core": "^8.8 || ^9"
  7532. },
  7533. "require-dev": {
  7534. "drush/drush": "^10"
  7535. },
  7536. "suggest": {
  7537. "drush/drush": "^9 || ^10"
  7538. },
  7539. "type": "drupal-module",
  7540. "extra": {
  7541. "drupal": {
  7542. "version": "8.x-3.9",
  7543. "datestamp": "1597319021",
  7544. "security-coverage": {
  7545. "status": "covered",
  7546. "message": "Covered by Drupal's security advisory policy"
  7547. }
  7548. },
  7549. "drush": {
  7550. "services": {
  7551. "drush.services.yml": "^9 || ^10"
  7552. }
  7553. }
  7554. },
  7555. "notification-url": "https://packages.drupal.org/8/downloads",
  7556. "license": [
  7557. "GPL-2.0-or-later"
  7558. ],
  7559. "authors": [
  7560. {
  7561. "name": "Marcin Grabias",
  7562. "homepage": "https://www.drupal.org/u/graber"
  7563. },
  7564. {
  7565. "name": "Jon Pugh",
  7566. "homepage": "https://www.drupal.org/user/17028"
  7567. },
  7568. {
  7569. "name": "bojanz",
  7570. "homepage": "https://www.drupal.org/user/86106"
  7571. },
  7572. {
  7573. "name": "infojunkie",
  7574. "homepage": "https://www.drupal.org/user/48424"
  7575. },
  7576. {
  7577. "name": "joelpittet",
  7578. "homepage": "https://www.drupal.org/user/160302"
  7579. }
  7580. ],
  7581. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  7582. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  7583. "support": {
  7584. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  7585. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  7586. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  7587. }
  7588. },
  7589. {
  7590. "name": "drupal/views_ef_fieldset",
  7591. "version": "1.5.0",
  7592. "source": {
  7593. "type": "git",
  7594. "url": "https://git.drupalcode.org/project/views_ef_fieldset.git",
  7595. "reference": "8.x-1.5"
  7596. },
  7597. "dist": {
  7598. "type": "zip",
  7599. "url": "https://ftp.drupal.org/files/projects/views_ef_fieldset-8.x-1.5.zip",
  7600. "reference": "8.x-1.5",
  7601. "shasum": "72ca0b63028d0fe65e13c8472546a8803aa0d079"
  7602. },
  7603. "require": {
  7604. "drupal/core": "^8 || ^9",
  7605. "php": ">=7"
  7606. },
  7607. "type": "drupal-module",
  7608. "extra": {
  7609. "drupal": {
  7610. "version": "8.x-1.5",
  7611. "datestamp": "1604567512",
  7612. "security-coverage": {
  7613. "status": "covered",
  7614. "message": "Covered by Drupal's security advisory policy"
  7615. }
  7616. },
  7617. "composer-exit-on-patch-failure": true,
  7618. "enable-patching": true,
  7619. "patches": {
  7620. "drupal/core": {
  7621. "https://www.drupal.org/project/drupal/issues/2943172": "https://www.drupal.org/files/issues/2018-07-05/2943172-kernel-test-base-3.patch"
  7622. }
  7623. }
  7624. },
  7625. "autoload-dev": {
  7626. "psr-4": {
  7627. "Drupal\\Tests\\views_ef_fieldset\\": "./tests/"
  7628. }
  7629. },
  7630. "notification-url": "https://packages.drupal.org/8/downloads",
  7631. "scripts": {
  7632. "grumphp": [
  7633. "./vendor/bin/grumphp run"
  7634. ]
  7635. },
  7636. "license": [
  7637. "GPL-2.0+"
  7638. ],
  7639. "authors": [
  7640. {
  7641. "name": "Pol Dellaiera",
  7642. "homepage": "https://www.drupal.org/user/47194",
  7643. "email": "pol.dellaiera@protonmail.com"
  7644. },
  7645. {
  7646. "name": "ciss",
  7647. "homepage": "https://www.drupal.org/user/1632364"
  7648. }
  7649. ],
  7650. "description": "Provide an option to render the 'exposed form widgets' in a fieldset.",
  7651. "homepage": "https://drupal.org/project/views_field_formatter",
  7652. "support": {
  7653. "source": "https://git.drupalcode.org/project/views_ef_fieldset"
  7654. }
  7655. },
  7656. {
  7657. "name": "drupal/workflow",
  7658. "version": "dev-1.x",
  7659. "source": {
  7660. "type": "git",
  7661. "url": "https://git.drupalcode.org/project/workflow.git",
  7662. "reference": "b691e1951bcb810dc2b0a367d7871741eb5ec4b7"
  7663. },
  7664. "require": {
  7665. "drupal/core": "^8 || ^9"
  7666. },
  7667. "type": "drupal-module",
  7668. "extra": {
  7669. "branch-alias": {
  7670. "dev-1.x": "1.x-dev"
  7671. },
  7672. "drupal": {
  7673. "version": "8.x-1.4+4-dev",
  7674. "datestamp": "1592938472",
  7675. "security-coverage": {
  7676. "status": "not-covered",
  7677. "message": "Dev releases are not covered by Drupal security advisories."
  7678. }
  7679. }
  7680. },
  7681. "notification-url": "https://packages.drupal.org/8/downloads",
  7682. "license": [
  7683. "GPL-2.0-or-later"
  7684. ],
  7685. "authors": [
  7686. {
  7687. "name": "Bastlynn",
  7688. "homepage": "https://www.drupal.org/user/275249"
  7689. },
  7690. {
  7691. "name": "Heine",
  7692. "homepage": "https://www.drupal.org/user/17943"
  7693. },
  7694. {
  7695. "name": "JacobSingh",
  7696. "homepage": "https://www.drupal.org/user/68912"
  7697. },
  7698. {
  7699. "name": "NancyDru",
  7700. "homepage": "https://www.drupal.org/user/101412"
  7701. },
  7702. {
  7703. "name": "eaton",
  7704. "homepage": "https://www.drupal.org/user/16496"
  7705. },
  7706. {
  7707. "name": "johnv",
  7708. "homepage": "https://www.drupal.org/user/591042"
  7709. },
  7710. {
  7711. "name": "jvandyk",
  7712. "homepage": "https://www.drupal.org/user/2375"
  7713. },
  7714. {
  7715. "name": "mfredrickson",
  7716. "homepage": "https://www.drupal.org/user/31994"
  7717. },
  7718. {
  7719. "name": "q0rban",
  7720. "homepage": "https://www.drupal.org/user/31022"
  7721. }
  7722. ],
  7723. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  7724. "homepage": "https://www.drupal.org/project/workflow",
  7725. "support": {
  7726. "source": "https://git.drupalcode.org/project/workflow"
  7727. }
  7728. },
  7729. {
  7730. "name": "drush/drush",
  7731. "version": "10.3.6",
  7732. "source": {
  7733. "type": "git",
  7734. "url": "https://github.com/drush-ops/drush.git",
  7735. "reference": "fc985a95c6010e04891a2dbcf3f39984b8c9ef0a"
  7736. },
  7737. "dist": {
  7738. "type": "zip",
  7739. "url": "https://api.github.com/repos/drush-ops/drush/zipball/fc985a95c6010e04891a2dbcf3f39984b8c9ef0a",
  7740. "reference": "fc985a95c6010e04891a2dbcf3f39984b8c9ef0a",
  7741. "shasum": ""
  7742. },
  7743. "require": {
  7744. "chi-teck/drupal-code-generator": "^1.32.1",
  7745. "composer/semver": "^1.4 || ^3",
  7746. "consolidation/config": "^1.2",
  7747. "consolidation/filter-via-dot-access-data": "^1",
  7748. "consolidation/robo": "^1.4.11 || ^2",
  7749. "consolidation/site-alias": "^3.0.0@stable",
  7750. "consolidation/site-process": "^2.1 || ^4",
  7751. "ext-dom": "*",
  7752. "grasmash/yaml-expander": "^1.1.1",
  7753. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  7754. "league/container": "~2",
  7755. "php": ">=7.1.3",
  7756. "psr/log": "~1.0",
  7757. "psy/psysh": "~0.6",
  7758. "symfony/event-dispatcher": "^3.4 || ^4.0",
  7759. "symfony/finder": "^3.4 || ^4.0 || ^5",
  7760. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0",
  7761. "symfony/yaml": "^3.4 || ^4.0",
  7762. "webflo/drupal-finder": "^1.2",
  7763. "webmozart/path-util": "^2.1.0"
  7764. },
  7765. "require-dev": {
  7766. "composer/installers": "^1.7",
  7767. "cweagans/composer-patches": "~1.0",
  7768. "david-garcia/phpwhois": "4.3.0",
  7769. "drupal/alinks": "1.0.0",
  7770. "drupal/core-recommended": "^8.8",
  7771. "lox/xhprof": "dev-master",
  7772. "phpunit/phpunit": "^4.8.36 || ^6.1",
  7773. "squizlabs/php_codesniffer": "^2.7 || ^3",
  7774. "vlucas/phpdotenv": "^2.4"
  7775. },
  7776. "bin": [
  7777. "drush"
  7778. ],
  7779. "type": "library",
  7780. "extra": {
  7781. "installer-paths": {
  7782. "sut/core": [
  7783. "type:drupal-core"
  7784. ],
  7785. "sut/libraries/{$name}": [
  7786. "type:drupal-library"
  7787. ],
  7788. "sut/modules/unish/{$name}": [
  7789. "drupal/devel"
  7790. ],
  7791. "sut/themes/unish/{$name}": [
  7792. "drupal/empty_theme"
  7793. ],
  7794. "sut/modules/contrib/{$name}": [
  7795. "type:drupal-module"
  7796. ],
  7797. "sut/profiles/contrib/{$name}": [
  7798. "type:drupal-profile"
  7799. ],
  7800. "sut/themes/contrib/{$name}": [
  7801. "type:drupal-theme"
  7802. ],
  7803. "sut/drush/contrib/{$name}": [
  7804. "type:drupal-drush"
  7805. ]
  7806. }
  7807. },
  7808. "autoload": {
  7809. "psr-4": {
  7810. "Drush\\": "src/",
  7811. "Drush\\Internal\\": "src/internal-forks"
  7812. }
  7813. },
  7814. "notification-url": "https://packagist.org/downloads/",
  7815. "license": [
  7816. "GPL-2.0-or-later"
  7817. ],
  7818. "authors": [
  7819. {
  7820. "name": "Moshe Weitzman",
  7821. "email": "weitzman@tejasa.com"
  7822. },
  7823. {
  7824. "name": "Owen Barton",
  7825. "email": "drupal@owenbarton.com"
  7826. },
  7827. {
  7828. "name": "Greg Anderson",
  7829. "email": "greg.1.anderson@greenknowe.org"
  7830. },
  7831. {
  7832. "name": "Jonathan Araña Cruz",
  7833. "email": "jonhattan@faita.net"
  7834. },
  7835. {
  7836. "name": "Jonathan Hedstrom",
  7837. "email": "jhedstrom@gmail.com"
  7838. },
  7839. {
  7840. "name": "Christopher Gervais",
  7841. "email": "chris@ergonlogic.com"
  7842. },
  7843. {
  7844. "name": "Dave Reid",
  7845. "email": "dave@davereid.net"
  7846. },
  7847. {
  7848. "name": "Damian Lee",
  7849. "email": "damiankloip@googlemail.com"
  7850. }
  7851. ],
  7852. "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.",
  7853. "homepage": "http://www.drush.org",
  7854. "funding": [
  7855. {
  7856. "url": "https://github.com/weitzman",
  7857. "type": "github"
  7858. }
  7859. ],
  7860. "time": "2020-11-11T04:36:51+00:00"
  7861. },
  7862. {
  7863. "name": "egulias/email-validator",
  7864. "version": "2.1.22",
  7865. "source": {
  7866. "type": "git",
  7867. "url": "https://github.com/egulias/EmailValidator.git",
  7868. "reference": "68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5"
  7869. },
  7870. "dist": {
  7871. "type": "zip",
  7872. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5",
  7873. "reference": "68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5",
  7874. "shasum": ""
  7875. },
  7876. "require": {
  7877. "doctrine/lexer": "^1.0.1",
  7878. "php": ">=5.5",
  7879. "symfony/polyfill-intl-idn": "^1.10"
  7880. },
  7881. "require-dev": {
  7882. "dominicsayers/isemail": "^3.0.7",
  7883. "phpunit/phpunit": "^4.8.36|^7.5.15",
  7884. "satooshi/php-coveralls": "^1.0.1"
  7885. },
  7886. "suggest": {
  7887. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  7888. },
  7889. "type": "library",
  7890. "extra": {
  7891. "branch-alias": {
  7892. "dev-master": "2.1.x-dev"
  7893. }
  7894. },
  7895. "autoload": {
  7896. "psr-4": {
  7897. "Egulias\\EmailValidator\\": "src"
  7898. }
  7899. },
  7900. "notification-url": "https://packagist.org/downloads/",
  7901. "license": [
  7902. "MIT"
  7903. ],
  7904. "authors": [
  7905. {
  7906. "name": "Eduardo Gulias Davis"
  7907. }
  7908. ],
  7909. "description": "A library for validating emails against several RFCs",
  7910. "homepage": "https://github.com/egulias/EmailValidator",
  7911. "keywords": [
  7912. "email",
  7913. "emailvalidation",
  7914. "emailvalidator",
  7915. "validation",
  7916. "validator"
  7917. ],
  7918. "time": "2020-09-26T15:48:38+00:00"
  7919. },
  7920. {
  7921. "name": "fileeye/mimemap",
  7922. "version": "1.1.4",
  7923. "source": {
  7924. "type": "git",
  7925. "url": "https://github.com/FileEye/MimeMap.git",
  7926. "reference": "3a0ddb71f06d8fb3f84f0a3c45348af81803b16d"
  7927. },
  7928. "dist": {
  7929. "type": "zip",
  7930. "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/3a0ddb71f06d8fb3f84f0a3c45348af81803b16d",
  7931. "reference": "3a0ddb71f06d8fb3f84f0a3c45348af81803b16d",
  7932. "shasum": ""
  7933. },
  7934. "require": {
  7935. "php": ">=5.4"
  7936. },
  7937. "require-dev": {
  7938. "phpunit/phpunit": "<10",
  7939. "sebastian/comparator": "*",
  7940. "sebastian/diff": "*",
  7941. "squizlabs/php_codesniffer": "*",
  7942. "symfony/console": "*",
  7943. "symfony/filesystem": "*",
  7944. "symfony/var-dumper": "*",
  7945. "symfony/yaml": "*"
  7946. },
  7947. "bin": [
  7948. "bin/fileeye-mimemap"
  7949. ],
  7950. "type": "library",
  7951. "extra": {
  7952. "branch-alias": {
  7953. "dev-master": "1.x-dev"
  7954. }
  7955. },
  7956. "autoload": {
  7957. "psr-4": {
  7958. "FileEye\\MimeMap\\": "src/"
  7959. }
  7960. },
  7961. "notification-url": "https://packagist.org/downloads/",
  7962. "license": [
  7963. "LGPL-3.0-or-later"
  7964. ],
  7965. "description": "A PHP library to handle MIME Content-Type fields and their related file extensions.",
  7966. "homepage": "https://github.com/FileEye/MimeMap",
  7967. "keywords": [
  7968. "mime",
  7969. "mime-database",
  7970. "mime-parser",
  7971. "mime-type"
  7972. ],
  7973. "time": "2020-05-16T10:19:16+00:00"
  7974. },
  7975. {
  7976. "name": "grasmash/expander",
  7977. "version": "1.0.0",
  7978. "source": {
  7979. "type": "git",
  7980. "url": "https://github.com/grasmash/expander.git",
  7981. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  7982. },
  7983. "dist": {
  7984. "type": "zip",
  7985. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  7986. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  7987. "shasum": ""
  7988. },
  7989. "require": {
  7990. "dflydev/dot-access-data": "^1.1.0",
  7991. "php": ">=5.4"
  7992. },
  7993. "require-dev": {
  7994. "greg-1-anderson/composer-test-scenarios": "^1",
  7995. "phpunit/phpunit": "^4|^5.5.4",
  7996. "satooshi/php-coveralls": "^1.0.2|dev-master",
  7997. "squizlabs/php_codesniffer": "^2.7"
  7998. },
  7999. "type": "library",
  8000. "extra": {
  8001. "branch-alias": {
  8002. "dev-master": "1.x-dev"
  8003. }
  8004. },
  8005. "autoload": {
  8006. "psr-4": {
  8007. "Grasmash\\Expander\\": "src/"
  8008. }
  8009. },
  8010. "notification-url": "https://packagist.org/downloads/",
  8011. "license": [
  8012. "MIT"
  8013. ],
  8014. "authors": [
  8015. {
  8016. "name": "Matthew Grasmick"
  8017. }
  8018. ],
  8019. "description": "Expands internal property references in PHP arrays file.",
  8020. "time": "2017-12-21T22:14:55+00:00"
  8021. },
  8022. {
  8023. "name": "grasmash/yaml-expander",
  8024. "version": "1.4.0",
  8025. "source": {
  8026. "type": "git",
  8027. "url": "https://github.com/grasmash/yaml-expander.git",
  8028. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  8029. },
  8030. "dist": {
  8031. "type": "zip",
  8032. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  8033. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  8034. "shasum": ""
  8035. },
  8036. "require": {
  8037. "dflydev/dot-access-data": "^1.1.0",
  8038. "php": ">=5.4",
  8039. "symfony/yaml": "^2.8.11|^3|^4"
  8040. },
  8041. "require-dev": {
  8042. "greg-1-anderson/composer-test-scenarios": "^1",
  8043. "phpunit/phpunit": "^4.8|^5.5.4",
  8044. "satooshi/php-coveralls": "^1.0.2|dev-master",
  8045. "squizlabs/php_codesniffer": "^2.7"
  8046. },
  8047. "type": "library",
  8048. "extra": {
  8049. "branch-alias": {
  8050. "dev-master": "1.x-dev"
  8051. }
  8052. },
  8053. "autoload": {
  8054. "psr-4": {
  8055. "Grasmash\\YamlExpander\\": "src/"
  8056. }
  8057. },
  8058. "notification-url": "https://packagist.org/downloads/",
  8059. "license": [
  8060. "MIT"
  8061. ],
  8062. "authors": [
  8063. {
  8064. "name": "Matthew Grasmick"
  8065. }
  8066. ],
  8067. "description": "Expands internal property references in a yaml file.",
  8068. "time": "2017-12-16T16:06:03+00:00"
  8069. },
  8070. {
  8071. "name": "guzzlehttp/guzzle",
  8072. "version": "6.5.5",
  8073. "source": {
  8074. "type": "git",
  8075. "url": "https://github.com/guzzle/guzzle.git",
  8076. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  8077. },
  8078. "dist": {
  8079. "type": "zip",
  8080. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  8081. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  8082. "shasum": ""
  8083. },
  8084. "require": {
  8085. "ext-json": "*",
  8086. "guzzlehttp/promises": "^1.0",
  8087. "guzzlehttp/psr7": "^1.6.1",
  8088. "php": ">=5.5",
  8089. "symfony/polyfill-intl-idn": "^1.17.0"
  8090. },
  8091. "require-dev": {
  8092. "ext-curl": "*",
  8093. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  8094. "psr/log": "^1.1"
  8095. },
  8096. "suggest": {
  8097. "psr/log": "Required for using the Log middleware"
  8098. },
  8099. "type": "library",
  8100. "extra": {
  8101. "branch-alias": {
  8102. "dev-master": "6.5-dev"
  8103. }
  8104. },
  8105. "autoload": {
  8106. "psr-4": {
  8107. "GuzzleHttp\\": "src/"
  8108. },
  8109. "files": [
  8110. "src/functions_include.php"
  8111. ]
  8112. },
  8113. "notification-url": "https://packagist.org/downloads/",
  8114. "license": [
  8115. "MIT"
  8116. ],
  8117. "authors": [
  8118. {
  8119. "name": "Michael Dowling",
  8120. "email": "mtdowling@gmail.com",
  8121. "homepage": "https://github.com/mtdowling"
  8122. }
  8123. ],
  8124. "description": "Guzzle is a PHP HTTP client library",
  8125. "homepage": "http://guzzlephp.org/",
  8126. "keywords": [
  8127. "client",
  8128. "curl",
  8129. "framework",
  8130. "http",
  8131. "http client",
  8132. "rest",
  8133. "web service"
  8134. ],
  8135. "time": "2020-06-16T21:01:06+00:00"
  8136. },
  8137. {
  8138. "name": "guzzlehttp/promises",
  8139. "version": "1.4.0",
  8140. "source": {
  8141. "type": "git",
  8142. "url": "https://github.com/guzzle/promises.git",
  8143. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  8144. },
  8145. "dist": {
  8146. "type": "zip",
  8147. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  8148. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  8149. "shasum": ""
  8150. },
  8151. "require": {
  8152. "php": ">=5.5"
  8153. },
  8154. "require-dev": {
  8155. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  8156. },
  8157. "type": "library",
  8158. "extra": {
  8159. "branch-alias": {
  8160. "dev-master": "1.4-dev"
  8161. }
  8162. },
  8163. "autoload": {
  8164. "psr-4": {
  8165. "GuzzleHttp\\Promise\\": "src/"
  8166. },
  8167. "files": [
  8168. "src/functions_include.php"
  8169. ]
  8170. },
  8171. "notification-url": "https://packagist.org/downloads/",
  8172. "license": [
  8173. "MIT"
  8174. ],
  8175. "authors": [
  8176. {
  8177. "name": "Michael Dowling",
  8178. "email": "mtdowling@gmail.com",
  8179. "homepage": "https://github.com/mtdowling"
  8180. }
  8181. ],
  8182. "description": "Guzzle promises library",
  8183. "keywords": [
  8184. "promise"
  8185. ],
  8186. "time": "2020-09-30T07:37:28+00:00"
  8187. },
  8188. {
  8189. "name": "guzzlehttp/psr7",
  8190. "version": "1.7.0",
  8191. "source": {
  8192. "type": "git",
  8193. "url": "https://github.com/guzzle/psr7.git",
  8194. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  8195. },
  8196. "dist": {
  8197. "type": "zip",
  8198. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  8199. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  8200. "shasum": ""
  8201. },
  8202. "require": {
  8203. "php": ">=5.4.0",
  8204. "psr/http-message": "~1.0",
  8205. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  8206. },
  8207. "provide": {
  8208. "psr/http-message-implementation": "1.0"
  8209. },
  8210. "require-dev": {
  8211. "ext-zlib": "*",
  8212. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  8213. },
  8214. "suggest": {
  8215. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  8216. },
  8217. "type": "library",
  8218. "extra": {
  8219. "branch-alias": {
  8220. "dev-master": "1.7-dev"
  8221. }
  8222. },
  8223. "autoload": {
  8224. "psr-4": {
  8225. "GuzzleHttp\\Psr7\\": "src/"
  8226. },
  8227. "files": [
  8228. "src/functions_include.php"
  8229. ]
  8230. },
  8231. "notification-url": "https://packagist.org/downloads/",
  8232. "license": [
  8233. "MIT"
  8234. ],
  8235. "authors": [
  8236. {
  8237. "name": "Michael Dowling",
  8238. "email": "mtdowling@gmail.com",
  8239. "homepage": "https://github.com/mtdowling"
  8240. },
  8241. {
  8242. "name": "Tobias Schultze",
  8243. "homepage": "https://github.com/Tobion"
  8244. }
  8245. ],
  8246. "description": "PSR-7 message implementation that also provides common utility methods",
  8247. "keywords": [
  8248. "http",
  8249. "message",
  8250. "psr-7",
  8251. "request",
  8252. "response",
  8253. "stream",
  8254. "uri",
  8255. "url"
  8256. ],
  8257. "time": "2020-09-30T07:37:11+00:00"
  8258. },
  8259. {
  8260. "name": "laminas/laminas-diactoros",
  8261. "version": "2.5.0",
  8262. "source": {
  8263. "type": "git",
  8264. "url": "https://github.com/laminas/laminas-diactoros.git",
  8265. "reference": "4ff7400c1c12e404144992ef43c8b733fd9ad516"
  8266. },
  8267. "dist": {
  8268. "type": "zip",
  8269. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/4ff7400c1c12e404144992ef43c8b733fd9ad516",
  8270. "reference": "4ff7400c1c12e404144992ef43c8b733fd9ad516",
  8271. "shasum": ""
  8272. },
  8273. "require": {
  8274. "laminas/laminas-zendframework-bridge": "^1.0",
  8275. "php": "^7.3 || ~8.0.0",
  8276. "psr/http-factory": "^1.0",
  8277. "psr/http-message": "^1.0"
  8278. },
  8279. "conflict": {
  8280. "phpspec/prophecy": "<1.9.0"
  8281. },
  8282. "provide": {
  8283. "psr/http-factory-implementation": "1.0",
  8284. "psr/http-message-implementation": "1.0"
  8285. },
  8286. "replace": {
  8287. "zendframework/zend-diactoros": "^2.2.1"
  8288. },
  8289. "require-dev": {
  8290. "ext-curl": "*",
  8291. "ext-dom": "*",
  8292. "ext-gd": "*",
  8293. "ext-libxml": "*",
  8294. "http-interop/http-factory-tests": "^0.8.0",
  8295. "laminas/laminas-coding-standard": "~1.0.0",
  8296. "php-http/psr7-integration-tests": "^1.1",
  8297. "phpspec/prophecy-phpunit": "^2.0",
  8298. "phpunit/phpunit": "^9.1"
  8299. },
  8300. "type": "library",
  8301. "extra": {
  8302. "laminas": {
  8303. "config-provider": "Laminas\\Diactoros\\ConfigProvider",
  8304. "module": "Laminas\\Diactoros"
  8305. }
  8306. },
  8307. "autoload": {
  8308. "files": [
  8309. "src/functions/create_uploaded_file.php",
  8310. "src/functions/marshal_headers_from_sapi.php",
  8311. "src/functions/marshal_method_from_sapi.php",
  8312. "src/functions/marshal_protocol_version_from_sapi.php",
  8313. "src/functions/marshal_uri_from_sapi.php",
  8314. "src/functions/normalize_server.php",
  8315. "src/functions/normalize_uploaded_files.php",
  8316. "src/functions/parse_cookie_header.php",
  8317. "src/functions/create_uploaded_file.legacy.php",
  8318. "src/functions/marshal_headers_from_sapi.legacy.php",
  8319. "src/functions/marshal_method_from_sapi.legacy.php",
  8320. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  8321. "src/functions/marshal_uri_from_sapi.legacy.php",
  8322. "src/functions/normalize_server.legacy.php",
  8323. "src/functions/normalize_uploaded_files.legacy.php",
  8324. "src/functions/parse_cookie_header.legacy.php"
  8325. ],
  8326. "psr-4": {
  8327. "Laminas\\Diactoros\\": "src/"
  8328. }
  8329. },
  8330. "notification-url": "https://packagist.org/downloads/",
  8331. "license": [
  8332. "BSD-3-Clause"
  8333. ],
  8334. "description": "PSR HTTP Message implementations",
  8335. "homepage": "https://laminas.dev",
  8336. "keywords": [
  8337. "http",
  8338. "laminas",
  8339. "psr",
  8340. "psr-17",
  8341. "psr-7"
  8342. ],
  8343. "funding": [
  8344. {
  8345. "url": "https://funding.communitybridge.org/projects/laminas-project",
  8346. "type": "community_bridge"
  8347. }
  8348. ],
  8349. "time": "2020-11-18T18:39:28+00:00"
  8350. },
  8351. {
  8352. "name": "laminas/laminas-escaper",
  8353. "version": "2.7.0",
  8354. "source": {
  8355. "type": "git",
  8356. "url": "https://github.com/laminas/laminas-escaper.git",
  8357. "reference": "5e04bc5ae5990b17159d79d331055e2c645e5cc5"
  8358. },
  8359. "dist": {
  8360. "type": "zip",
  8361. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/5e04bc5ae5990b17159d79d331055e2c645e5cc5",
  8362. "reference": "5e04bc5ae5990b17159d79d331055e2c645e5cc5",
  8363. "shasum": ""
  8364. },
  8365. "require": {
  8366. "laminas/laminas-zendframework-bridge": "^1.0",
  8367. "php": "^7.3 || ~8.0.0"
  8368. },
  8369. "replace": {
  8370. "zendframework/zend-escaper": "^2.6.1"
  8371. },
  8372. "require-dev": {
  8373. "laminas/laminas-coding-standard": "~1.0.0",
  8374. "phpunit/phpunit": "^9.3",
  8375. "psalm/plugin-phpunit": "^0.12.2",
  8376. "vimeo/psalm": "^3.16"
  8377. },
  8378. "suggest": {
  8379. "ext-iconv": "*",
  8380. "ext-mbstring": "*"
  8381. },
  8382. "type": "library",
  8383. "autoload": {
  8384. "psr-4": {
  8385. "Laminas\\Escaper\\": "src/"
  8386. }
  8387. },
  8388. "notification-url": "https://packagist.org/downloads/",
  8389. "license": [
  8390. "BSD-3-Clause"
  8391. ],
  8392. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  8393. "homepage": "https://laminas.dev",
  8394. "keywords": [
  8395. "escaper",
  8396. "laminas"
  8397. ],
  8398. "funding": [
  8399. {
  8400. "url": "https://funding.communitybridge.org/projects/laminas-project",
  8401. "type": "community_bridge"
  8402. }
  8403. ],
  8404. "time": "2020-11-17T21:26:43+00:00"
  8405. },
  8406. {
  8407. "name": "laminas/laminas-feed",
  8408. "version": "2.13.0",
  8409. "source": {
  8410. "type": "git",
  8411. "url": "https://github.com/laminas/laminas-feed.git",
  8412. "reference": "fb89aac1984222227f37792dd193d34829a0762f"
  8413. },
  8414. "dist": {
  8415. "type": "zip",
  8416. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/fb89aac1984222227f37792dd193d34829a0762f",
  8417. "reference": "fb89aac1984222227f37792dd193d34829a0762f",
  8418. "shasum": ""
  8419. },
  8420. "require": {
  8421. "ext-dom": "*",
  8422. "ext-libxml": "*",
  8423. "laminas/laminas-escaper": "^2.5.2",
  8424. "laminas/laminas-stdlib": "^3.2.1",
  8425. "laminas/laminas-zendframework-bridge": "^1.0",
  8426. "php": "^7.3 || ~8.0.0"
  8427. },
  8428. "conflict": {
  8429. "laminas/laminas-servicemanager": "<3.3"
  8430. },
  8431. "replace": {
  8432. "zendframework/zend-feed": "^2.12.0"
  8433. },
  8434. "require-dev": {
  8435. "laminas/laminas-cache": "^2.7.2",
  8436. "laminas/laminas-coding-standard": "~1.0.0",
  8437. "laminas/laminas-db": "^2.8.2",
  8438. "laminas/laminas-http": "^2.7",
  8439. "laminas/laminas-servicemanager": "^3.3",
  8440. "laminas/laminas-validator": "^2.10.1",
  8441. "phpunit/phpunit": "^9.3",
  8442. "psalm/plugin-phpunit": "^0.13.0",
  8443. "psr/http-message": "^1.0.1",
  8444. "vimeo/psalm": "^4.1"
  8445. },
  8446. "suggest": {
  8447. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  8448. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  8449. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  8450. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  8451. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  8452. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  8453. },
  8454. "type": "library",
  8455. "autoload": {
  8456. "psr-4": {
  8457. "Laminas\\Feed\\": "src/"
  8458. }
  8459. },
  8460. "notification-url": "https://packagist.org/downloads/",
  8461. "license": [
  8462. "BSD-3-Clause"
  8463. ],
  8464. "description": "provides functionality for consuming RSS and Atom feeds",
  8465. "homepage": "https://laminas.dev",
  8466. "keywords": [
  8467. "feed",
  8468. "laminas"
  8469. ],
  8470. "funding": [
  8471. {
  8472. "url": "https://funding.communitybridge.org/projects/laminas-project",
  8473. "type": "community_bridge"
  8474. }
  8475. ],
  8476. "time": "2020-11-18T21:02:52+00:00"
  8477. },
  8478. {
  8479. "name": "laminas/laminas-stdlib",
  8480. "version": "3.3.0",
  8481. "source": {
  8482. "type": "git",
  8483. "url": "https://github.com/laminas/laminas-stdlib.git",
  8484. "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6"
  8485. },
  8486. "dist": {
  8487. "type": "zip",
  8488. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/b9d84eaa39fde733356ea948cdef36c631f202b6",
  8489. "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6",
  8490. "shasum": ""
  8491. },
  8492. "require": {
  8493. "laminas/laminas-zendframework-bridge": "^1.0",
  8494. "php": "^7.3 || ^8.0"
  8495. },
  8496. "replace": {
  8497. "zendframework/zend-stdlib": "^3.2.1"
  8498. },
  8499. "require-dev": {
  8500. "laminas/laminas-coding-standard": "~1.0.0",
  8501. "phpbench/phpbench": "^0.17.1",
  8502. "phpunit/phpunit": "^9.3.7"
  8503. },
  8504. "type": "library",
  8505. "extra": {
  8506. "branch-alias": {
  8507. "dev-master": "3.3.x-dev",
  8508. "dev-develop": "3.4.x-dev"
  8509. }
  8510. },
  8511. "autoload": {
  8512. "psr-4": {
  8513. "Laminas\\Stdlib\\": "src/"
  8514. }
  8515. },
  8516. "notification-url": "https://packagist.org/downloads/",
  8517. "license": [
  8518. "BSD-3-Clause"
  8519. ],
  8520. "description": "SPL extensions, array utilities, error handlers, and more",
  8521. "homepage": "https://laminas.dev",
  8522. "keywords": [
  8523. "laminas",
  8524. "stdlib"
  8525. ],
  8526. "funding": [
  8527. {
  8528. "url": "https://funding.communitybridge.org/projects/laminas-project",
  8529. "type": "community_bridge"
  8530. }
  8531. ],
  8532. "time": "2020-08-25T09:08:16+00:00"
  8533. },
  8534. {
  8535. "name": "laminas/laminas-zendframework-bridge",
  8536. "version": "1.1.1",
  8537. "source": {
  8538. "type": "git",
  8539. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  8540. "reference": "6ede70583e101030bcace4dcddd648f760ddf642"
  8541. },
  8542. "dist": {
  8543. "type": "zip",
  8544. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/6ede70583e101030bcace4dcddd648f760ddf642",
  8545. "reference": "6ede70583e101030bcace4dcddd648f760ddf642",
  8546. "shasum": ""
  8547. },
  8548. "require": {
  8549. "php": "^5.6 || ^7.0 || ^8.0"
  8550. },
  8551. "require-dev": {
  8552. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1 || ^9.3",
  8553. "squizlabs/php_codesniffer": "^3.5"
  8554. },
  8555. "type": "library",
  8556. "extra": {
  8557. "laminas": {
  8558. "module": "Laminas\\ZendFrameworkBridge"
  8559. }
  8560. },
  8561. "autoload": {
  8562. "files": [
  8563. "src/autoload.php"
  8564. ],
  8565. "psr-4": {
  8566. "Laminas\\ZendFrameworkBridge\\": "src//"
  8567. }
  8568. },
  8569. "notification-url": "https://packagist.org/downloads/",
  8570. "license": [
  8571. "BSD-3-Clause"
  8572. ],
  8573. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  8574. "keywords": [
  8575. "ZendFramework",
  8576. "autoloading",
  8577. "laminas",
  8578. "zf"
  8579. ],
  8580. "funding": [
  8581. {
  8582. "url": "https://funding.communitybridge.org/projects/laminas-project",
  8583. "type": "community_bridge"
  8584. }
  8585. ],
  8586. "time": "2020-09-14T14:23:00+00:00"
  8587. },
  8588. {
  8589. "name": "league/container",
  8590. "version": "2.4.1",
  8591. "source": {
  8592. "type": "git",
  8593. "url": "https://github.com/thephpleague/container.git",
  8594. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  8595. },
  8596. "dist": {
  8597. "type": "zip",
  8598. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  8599. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  8600. "shasum": ""
  8601. },
  8602. "require": {
  8603. "container-interop/container-interop": "^1.2",
  8604. "php": "^5.4.0 || ^7.0"
  8605. },
  8606. "provide": {
  8607. "container-interop/container-interop-implementation": "^1.2",
  8608. "psr/container-implementation": "^1.0"
  8609. },
  8610. "replace": {
  8611. "orno/di": "~2.0"
  8612. },
  8613. "require-dev": {
  8614. "phpunit/phpunit": "4.*"
  8615. },
  8616. "type": "library",
  8617. "extra": {
  8618. "branch-alias": {
  8619. "dev-2.x": "2.x-dev",
  8620. "dev-1.x": "1.x-dev"
  8621. }
  8622. },
  8623. "autoload": {
  8624. "psr-4": {
  8625. "League\\Container\\": "src"
  8626. }
  8627. },
  8628. "notification-url": "https://packagist.org/downloads/",
  8629. "license": [
  8630. "MIT"
  8631. ],
  8632. "authors": [
  8633. {
  8634. "name": "Phil Bennett",
  8635. "email": "philipobenito@gmail.com",
  8636. "homepage": "http://www.philipobenito.com",
  8637. "role": "Developer"
  8638. }
  8639. ],
  8640. "description": "A fast and intuitive dependency injection container.",
  8641. "homepage": "https://github.com/thephpleague/container",
  8642. "keywords": [
  8643. "container",
  8644. "dependency",
  8645. "di",
  8646. "injection",
  8647. "league",
  8648. "provider",
  8649. "service"
  8650. ],
  8651. "time": "2017-05-10T09:20:27+00:00"
  8652. },
  8653. {
  8654. "name": "lsolesen/pel",
  8655. "version": "0.9.9",
  8656. "source": {
  8657. "type": "git",
  8658. "url": "https://github.com/pel/pel.git",
  8659. "reference": "95dd3c16161c588f0ac66662c1870a073159e5ec"
  8660. },
  8661. "dist": {
  8662. "type": "zip",
  8663. "url": "https://api.github.com/repos/pel/pel/zipball/95dd3c16161c588f0ac66662c1870a073159e5ec",
  8664. "reference": "95dd3c16161c588f0ac66662c1870a073159e5ec",
  8665. "shasum": ""
  8666. },
  8667. "require": {
  8668. "php": ">=5.4.0"
  8669. },
  8670. "require-dev": {
  8671. "ext-gd": "*",
  8672. "phpunit/phpunit": ">=4.8.36 <8",
  8673. "satooshi/php-coveralls": "1.0.*",
  8674. "squizlabs/php_codesniffer": "^3.0.0"
  8675. },
  8676. "type": "library",
  8677. "autoload": {
  8678. "psr-4": {
  8679. "lsolesen\\pel\\": "src/"
  8680. }
  8681. },
  8682. "notification-url": "https://packagist.org/downloads/",
  8683. "license": [
  8684. "GPL-2.0"
  8685. ],
  8686. "authors": [
  8687. {
  8688. "name": "Lars Olesen",
  8689. "email": "lars@intraface.dk",
  8690. "homepage": "http://intraface.dk",
  8691. "role": "Developer"
  8692. },
  8693. {
  8694. "name": "Martin Geisler",
  8695. "email": "martin@geisler.net",
  8696. "homepage": "http://geisler.net",
  8697. "role": "Developer"
  8698. }
  8699. ],
  8700. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  8701. "homepage": "http://pel.github.com/pel/",
  8702. "keywords": [
  8703. "exif",
  8704. "image"
  8705. ],
  8706. "time": "2020-11-07T06:04:18+00:00"
  8707. },
  8708. {
  8709. "name": "masterminds/html5",
  8710. "version": "2.7.4",
  8711. "source": {
  8712. "type": "git",
  8713. "url": "https://github.com/Masterminds/html5-php.git",
  8714. "reference": "9227822783c75406cfe400984b2f095cdf03d417"
  8715. },
  8716. "dist": {
  8717. "type": "zip",
  8718. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/9227822783c75406cfe400984b2f095cdf03d417",
  8719. "reference": "9227822783c75406cfe400984b2f095cdf03d417",
  8720. "shasum": ""
  8721. },
  8722. "require": {
  8723. "ext-ctype": "*",
  8724. "ext-dom": "*",
  8725. "ext-libxml": "*",
  8726. "php": ">=5.3.0"
  8727. },
  8728. "require-dev": {
  8729. "phpunit/phpunit": "^4.8.35"
  8730. },
  8731. "type": "library",
  8732. "extra": {
  8733. "branch-alias": {
  8734. "dev-master": "2.7-dev"
  8735. }
  8736. },
  8737. "autoload": {
  8738. "psr-4": {
  8739. "Masterminds\\": "src"
  8740. }
  8741. },
  8742. "notification-url": "https://packagist.org/downloads/",
  8743. "license": [
  8744. "MIT"
  8745. ],
  8746. "authors": [
  8747. {
  8748. "name": "Matt Butcher",
  8749. "email": "technosophos@gmail.com"
  8750. },
  8751. {
  8752. "name": "Matt Farina",
  8753. "email": "matt@mattfarina.com"
  8754. },
  8755. {
  8756. "name": "Asmir Mustafic",
  8757. "email": "goetas@gmail.com"
  8758. }
  8759. ],
  8760. "description": "An HTML5 parser and serializer.",
  8761. "homepage": "http://masterminds.github.io/html5-php",
  8762. "keywords": [
  8763. "HTML5",
  8764. "dom",
  8765. "html",
  8766. "parser",
  8767. "querypath",
  8768. "serializer",
  8769. "xml"
  8770. ],
  8771. "time": "2020-10-01T13:52:52+00:00"
  8772. },
  8773. {
  8774. "name": "nikic/php-parser",
  8775. "version": "v4.10.3",
  8776. "source": {
  8777. "type": "git",
  8778. "url": "https://github.com/nikic/PHP-Parser.git",
  8779. "reference": "dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984"
  8780. },
  8781. "dist": {
  8782. "type": "zip",
  8783. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984",
  8784. "reference": "dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984",
  8785. "shasum": ""
  8786. },
  8787. "require": {
  8788. "ext-tokenizer": "*",
  8789. "php": ">=7.0"
  8790. },
  8791. "require-dev": {
  8792. "ircmaxell/php-yacc": "^0.0.7",
  8793. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  8794. },
  8795. "bin": [
  8796. "bin/php-parse"
  8797. ],
  8798. "type": "library",
  8799. "extra": {
  8800. "branch-alias": {
  8801. "dev-master": "4.9-dev"
  8802. }
  8803. },
  8804. "autoload": {
  8805. "psr-4": {
  8806. "PhpParser\\": "lib/PhpParser"
  8807. }
  8808. },
  8809. "notification-url": "https://packagist.org/downloads/",
  8810. "license": [
  8811. "BSD-3-Clause"
  8812. ],
  8813. "authors": [
  8814. {
  8815. "name": "Nikita Popov"
  8816. }
  8817. ],
  8818. "description": "A PHP parser written in PHP",
  8819. "keywords": [
  8820. "parser",
  8821. "php"
  8822. ],
  8823. "time": "2020-12-03T17:45:45+00:00"
  8824. },
  8825. {
  8826. "name": "pear/archive_tar",
  8827. "version": "1.4.11",
  8828. "source": {
  8829. "type": "git",
  8830. "url": "https://github.com/pear/Archive_Tar.git",
  8831. "reference": "17d355cb7d3c4ff08e5729f29cd7660145208d9d"
  8832. },
  8833. "dist": {
  8834. "type": "zip",
  8835. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/17d355cb7d3c4ff08e5729f29cd7660145208d9d",
  8836. "reference": "17d355cb7d3c4ff08e5729f29cd7660145208d9d",
  8837. "shasum": ""
  8838. },
  8839. "require": {
  8840. "pear/pear-core-minimal": "^1.10.0alpha2",
  8841. "php": ">=5.2.0"
  8842. },
  8843. "require-dev": {
  8844. "phpunit/phpunit": "*"
  8845. },
  8846. "suggest": {
  8847. "ext-bz2": "Bz2 compression support.",
  8848. "ext-xz": "Lzma2 compression support.",
  8849. "ext-zlib": "Gzip compression support."
  8850. },
  8851. "type": "library",
  8852. "extra": {
  8853. "branch-alias": {
  8854. "dev-master": "1.4.x-dev"
  8855. }
  8856. },
  8857. "autoload": {
  8858. "psr-0": {
  8859. "Archive_Tar": ""
  8860. }
  8861. },
  8862. "notification-url": "https://packagist.org/downloads/",
  8863. "include-path": [
  8864. "./"
  8865. ],
  8866. "license": [
  8867. "BSD-3-Clause"
  8868. ],
  8869. "authors": [
  8870. {
  8871. "name": "Vincent Blavet",
  8872. "email": "vincent@phpconcept.net"
  8873. },
  8874. {
  8875. "name": "Greg Beaver",
  8876. "email": "greg@chiaraquartet.net"
  8877. },
  8878. {
  8879. "name": "Michiel Rook",
  8880. "email": "mrook@php.net"
  8881. }
  8882. ],
  8883. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  8884. "homepage": "https://github.com/pear/Archive_Tar",
  8885. "keywords": [
  8886. "archive",
  8887. "tar"
  8888. ],
  8889. "time": "2020-11-19T22:10:24+00:00"
  8890. },
  8891. {
  8892. "name": "pear/console_getopt",
  8893. "version": "v1.4.3",
  8894. "source": {
  8895. "type": "git",
  8896. "url": "https://github.com/pear/Console_Getopt.git",
  8897. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  8898. },
  8899. "dist": {
  8900. "type": "zip",
  8901. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  8902. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  8903. "shasum": ""
  8904. },
  8905. "type": "library",
  8906. "autoload": {
  8907. "psr-0": {
  8908. "Console": "./"
  8909. }
  8910. },
  8911. "notification-url": "https://packagist.org/downloads/",
  8912. "include-path": [
  8913. "./"
  8914. ],
  8915. "license": [
  8916. "BSD-2-Clause"
  8917. ],
  8918. "authors": [
  8919. {
  8920. "name": "Andrei Zmievski",
  8921. "email": "andrei@php.net",
  8922. "role": "Lead"
  8923. },
  8924. {
  8925. "name": "Stig Bakken",
  8926. "email": "stig@php.net",
  8927. "role": "Developer"
  8928. },
  8929. {
  8930. "name": "Greg Beaver",
  8931. "email": "cellog@php.net",
  8932. "role": "Helper"
  8933. }
  8934. ],
  8935. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  8936. "time": "2019-11-20T18:27:48+00:00"
  8937. },
  8938. {
  8939. "name": "pear/pear-core-minimal",
  8940. "version": "v1.10.10",
  8941. "source": {
  8942. "type": "git",
  8943. "url": "https://github.com/pear/pear-core-minimal.git",
  8944. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  8945. },
  8946. "dist": {
  8947. "type": "zip",
  8948. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  8949. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  8950. "shasum": ""
  8951. },
  8952. "require": {
  8953. "pear/console_getopt": "~1.4",
  8954. "pear/pear_exception": "~1.0"
  8955. },
  8956. "replace": {
  8957. "rsky/pear-core-min": "self.version"
  8958. },
  8959. "type": "library",
  8960. "autoload": {
  8961. "psr-0": {
  8962. "": "src/"
  8963. }
  8964. },
  8965. "notification-url": "https://packagist.org/downloads/",
  8966. "include-path": [
  8967. "src/"
  8968. ],
  8969. "license": [
  8970. "BSD-3-Clause"
  8971. ],
  8972. "authors": [
  8973. {
  8974. "name": "Christian Weiske",
  8975. "email": "cweiske@php.net",
  8976. "role": "Lead"
  8977. }
  8978. ],
  8979. "description": "Minimal set of PEAR core files to be used as composer dependency",
  8980. "time": "2019-11-19T19:00:24+00:00"
  8981. },
  8982. {
  8983. "name": "pear/pear_exception",
  8984. "version": "v1.0.1",
  8985. "source": {
  8986. "type": "git",
  8987. "url": "https://github.com/pear/PEAR_Exception.git",
  8988. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7"
  8989. },
  8990. "dist": {
  8991. "type": "zip",
  8992. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  8993. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  8994. "shasum": ""
  8995. },
  8996. "require": {
  8997. "php": ">=4.4.0"
  8998. },
  8999. "require-dev": {
  9000. "phpunit/phpunit": "*"
  9001. },
  9002. "type": "class",
  9003. "extra": {
  9004. "branch-alias": {
  9005. "dev-master": "1.0.x-dev"
  9006. }
  9007. },
  9008. "autoload": {
  9009. "classmap": [
  9010. "PEAR/"
  9011. ]
  9012. },
  9013. "notification-url": "https://packagist.org/downloads/",
  9014. "include-path": [
  9015. "."
  9016. ],
  9017. "license": [
  9018. "BSD-2-Clause"
  9019. ],
  9020. "authors": [
  9021. {
  9022. "name": "Helgi Thormar",
  9023. "email": "dufuz@php.net"
  9024. },
  9025. {
  9026. "name": "Greg Beaver",
  9027. "email": "cellog@php.net"
  9028. }
  9029. ],
  9030. "description": "The PEAR Exception base class.",
  9031. "homepage": "https://github.com/pear/PEAR_Exception",
  9032. "keywords": [
  9033. "exception"
  9034. ],
  9035. "time": "2019-12-10T10:24:42+00:00"
  9036. },
  9037. {
  9038. "name": "phenx/php-font-lib",
  9039. "version": "0.5.2",
  9040. "source": {
  9041. "type": "git",
  9042. "url": "https://github.com/PhenX/php-font-lib.git",
  9043. "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8"
  9044. },
  9045. "dist": {
  9046. "type": "zip",
  9047. "url": "https://api.github.com/repos/PhenX/php-font-lib/zipball/ca6ad461f032145fff5971b5985e5af9e7fa88d8",
  9048. "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8",
  9049. "shasum": ""
  9050. },
  9051. "require-dev": {
  9052. "phpunit/phpunit": "^4.8.35 || ^5 || ^6 || ^7"
  9053. },
  9054. "type": "library",
  9055. "autoload": {
  9056. "psr-4": {
  9057. "FontLib\\": "src/FontLib"
  9058. }
  9059. },
  9060. "notification-url": "https://packagist.org/downloads/",
  9061. "license": [
  9062. "LGPL-3.0"
  9063. ],
  9064. "authors": [
  9065. {
  9066. "name": "Fabien Ménager",
  9067. "email": "fabien.menager@gmail.com"
  9068. }
  9069. ],
  9070. "description": "A library to read, parse, export and make subsets of different types of font files.",
  9071. "homepage": "https://github.com/PhenX/php-font-lib",
  9072. "time": "2020-03-08T15:31:32+00:00"
  9073. },
  9074. {
  9075. "name": "phpmailer/phpmailer",
  9076. "version": "v6.2.0",
  9077. "source": {
  9078. "type": "git",
  9079. "url": "https://github.com/PHPMailer/PHPMailer.git",
  9080. "reference": "e38888a75c070304ca5514197d4847a59a5c853f"
  9081. },
  9082. "dist": {
  9083. "type": "zip",
  9084. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/e38888a75c070304ca5514197d4847a59a5c853f",
  9085. "reference": "e38888a75c070304ca5514197d4847a59a5c853f",
  9086. "shasum": ""
  9087. },
  9088. "require": {
  9089. "ext-ctype": "*",
  9090. "ext-filter": "*",
  9091. "ext-hash": "*",
  9092. "php": ">=5.5.0"
  9093. },
  9094. "require-dev": {
  9095. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  9096. "doctrine/annotations": "^1.2",
  9097. "phpcompatibility/php-compatibility": "^9.3.5",
  9098. "roave/security-advisories": "dev-latest",
  9099. "squizlabs/php_codesniffer": "^3.5.6",
  9100. "yoast/phpunit-polyfills": "^0.2.0"
  9101. },
  9102. "suggest": {
  9103. "ext-mbstring": "Needed to send email in multibyte encoding charset",
  9104. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  9105. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  9106. "psr/log": "For optional PSR-3 debug logging",
  9107. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  9108. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  9109. },
  9110. "type": "library",
  9111. "autoload": {
  9112. "psr-4": {
  9113. "PHPMailer\\PHPMailer\\": "src/"
  9114. }
  9115. },
  9116. "notification-url": "https://packagist.org/downloads/",
  9117. "license": [
  9118. "LGPL-2.1-only"
  9119. ],
  9120. "authors": [
  9121. {
  9122. "name": "Marcus Bointon",
  9123. "email": "phpmailer@synchromedia.co.uk"
  9124. },
  9125. {
  9126. "name": "Jim Jagielski",
  9127. "email": "jimjag@gmail.com"
  9128. },
  9129. {
  9130. "name": "Andy Prevost",
  9131. "email": "codeworxtech@users.sourceforge.net"
  9132. },
  9133. {
  9134. "name": "Brent R. Matzelle"
  9135. }
  9136. ],
  9137. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  9138. "funding": [
  9139. {
  9140. "url": "https://github.com/Synchro",
  9141. "type": "github"
  9142. }
  9143. ],
  9144. "time": "2020-11-25T15:24:57+00:00"
  9145. },
  9146. {
  9147. "name": "psr/container",
  9148. "version": "1.0.0",
  9149. "source": {
  9150. "type": "git",
  9151. "url": "https://github.com/php-fig/container.git",
  9152. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  9153. },
  9154. "dist": {
  9155. "type": "zip",
  9156. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  9157. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  9158. "shasum": ""
  9159. },
  9160. "require": {
  9161. "php": ">=5.3.0"
  9162. },
  9163. "type": "library",
  9164. "extra": {
  9165. "branch-alias": {
  9166. "dev-master": "1.0.x-dev"
  9167. }
  9168. },
  9169. "autoload": {
  9170. "psr-4": {
  9171. "Psr\\Container\\": "src/"
  9172. }
  9173. },
  9174. "notification-url": "https://packagist.org/downloads/",
  9175. "license": [
  9176. "MIT"
  9177. ],
  9178. "authors": [
  9179. {
  9180. "name": "PHP-FIG",
  9181. "homepage": "http://www.php-fig.org/"
  9182. }
  9183. ],
  9184. "description": "Common Container Interface (PHP FIG PSR-11)",
  9185. "homepage": "https://github.com/php-fig/container",
  9186. "keywords": [
  9187. "PSR-11",
  9188. "container",
  9189. "container-interface",
  9190. "container-interop",
  9191. "psr"
  9192. ],
  9193. "time": "2017-02-14T16:28:37+00:00"
  9194. },
  9195. {
  9196. "name": "psr/http-factory",
  9197. "version": "1.0.1",
  9198. "source": {
  9199. "type": "git",
  9200. "url": "https://github.com/php-fig/http-factory.git",
  9201. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  9202. },
  9203. "dist": {
  9204. "type": "zip",
  9205. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  9206. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  9207. "shasum": ""
  9208. },
  9209. "require": {
  9210. "php": ">=7.0.0",
  9211. "psr/http-message": "^1.0"
  9212. },
  9213. "type": "library",
  9214. "extra": {
  9215. "branch-alias": {
  9216. "dev-master": "1.0.x-dev"
  9217. }
  9218. },
  9219. "autoload": {
  9220. "psr-4": {
  9221. "Psr\\Http\\Message\\": "src/"
  9222. }
  9223. },
  9224. "notification-url": "https://packagist.org/downloads/",
  9225. "license": [
  9226. "MIT"
  9227. ],
  9228. "authors": [
  9229. {
  9230. "name": "PHP-FIG",
  9231. "homepage": "http://www.php-fig.org/"
  9232. }
  9233. ],
  9234. "description": "Common interfaces for PSR-7 HTTP message factories",
  9235. "keywords": [
  9236. "factory",
  9237. "http",
  9238. "message",
  9239. "psr",
  9240. "psr-17",
  9241. "psr-7",
  9242. "request",
  9243. "response"
  9244. ],
  9245. "time": "2019-04-30T12:38:16+00:00"
  9246. },
  9247. {
  9248. "name": "psr/http-message",
  9249. "version": "1.0.1",
  9250. "source": {
  9251. "type": "git",
  9252. "url": "https://github.com/php-fig/http-message.git",
  9253. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  9254. },
  9255. "dist": {
  9256. "type": "zip",
  9257. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  9258. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  9259. "shasum": ""
  9260. },
  9261. "require": {
  9262. "php": ">=5.3.0"
  9263. },
  9264. "type": "library",
  9265. "extra": {
  9266. "branch-alias": {
  9267. "dev-master": "1.0.x-dev"
  9268. }
  9269. },
  9270. "autoload": {
  9271. "psr-4": {
  9272. "Psr\\Http\\Message\\": "src/"
  9273. }
  9274. },
  9275. "notification-url": "https://packagist.org/downloads/",
  9276. "license": [
  9277. "MIT"
  9278. ],
  9279. "authors": [
  9280. {
  9281. "name": "PHP-FIG",
  9282. "homepage": "http://www.php-fig.org/"
  9283. }
  9284. ],
  9285. "description": "Common interface for HTTP messages",
  9286. "homepage": "https://github.com/php-fig/http-message",
  9287. "keywords": [
  9288. "http",
  9289. "http-message",
  9290. "psr",
  9291. "psr-7",
  9292. "request",
  9293. "response"
  9294. ],
  9295. "time": "2016-08-06T14:39:51+00:00"
  9296. },
  9297. {
  9298. "name": "psr/log",
  9299. "version": "1.1.3",
  9300. "source": {
  9301. "type": "git",
  9302. "url": "https://github.com/php-fig/log.git",
  9303. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  9304. },
  9305. "dist": {
  9306. "type": "zip",
  9307. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  9308. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  9309. "shasum": ""
  9310. },
  9311. "require": {
  9312. "php": ">=5.3.0"
  9313. },
  9314. "type": "library",
  9315. "extra": {
  9316. "branch-alias": {
  9317. "dev-master": "1.1.x-dev"
  9318. }
  9319. },
  9320. "autoload": {
  9321. "psr-4": {
  9322. "Psr\\Log\\": "Psr/Log/"
  9323. }
  9324. },
  9325. "notification-url": "https://packagist.org/downloads/",
  9326. "license": [
  9327. "MIT"
  9328. ],
  9329. "authors": [
  9330. {
  9331. "name": "PHP-FIG",
  9332. "homepage": "http://www.php-fig.org/"
  9333. }
  9334. ],
  9335. "description": "Common interface for logging libraries",
  9336. "homepage": "https://github.com/php-fig/log",
  9337. "keywords": [
  9338. "log",
  9339. "psr",
  9340. "psr-3"
  9341. ],
  9342. "time": "2020-03-23T09:12:05+00:00"
  9343. },
  9344. {
  9345. "name": "psy/psysh",
  9346. "version": "v0.10.5",
  9347. "source": {
  9348. "type": "git",
  9349. "url": "https://github.com/bobthecow/psysh.git",
  9350. "reference": "7c710551d4a2653afa259c544508dc18a9098956"
  9351. },
  9352. "dist": {
  9353. "type": "zip",
  9354. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/7c710551d4a2653afa259c544508dc18a9098956",
  9355. "reference": "7c710551d4a2653afa259c544508dc18a9098956",
  9356. "shasum": ""
  9357. },
  9358. "require": {
  9359. "dnoegel/php-xdg-base-dir": "0.1.*",
  9360. "ext-json": "*",
  9361. "ext-tokenizer": "*",
  9362. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  9363. "php": "^8.0 || ^7.0 || ^5.5.9",
  9364. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  9365. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  9366. },
  9367. "require-dev": {
  9368. "bamarni/composer-bin-plugin": "^1.2",
  9369. "hoa/console": "3.17.*"
  9370. },
  9371. "suggest": {
  9372. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  9373. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  9374. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  9375. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  9376. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  9377. },
  9378. "bin": [
  9379. "bin/psysh"
  9380. ],
  9381. "type": "library",
  9382. "extra": {
  9383. "branch-alias": {
  9384. "dev-master": "0.10.x-dev"
  9385. }
  9386. },
  9387. "autoload": {
  9388. "files": [
  9389. "src/functions.php"
  9390. ],
  9391. "psr-4": {
  9392. "Psy\\": "src/"
  9393. }
  9394. },
  9395. "notification-url": "https://packagist.org/downloads/",
  9396. "license": [
  9397. "MIT"
  9398. ],
  9399. "authors": [
  9400. {
  9401. "name": "Justin Hileman",
  9402. "email": "justin@justinhileman.info",
  9403. "homepage": "http://justinhileman.com"
  9404. }
  9405. ],
  9406. "description": "An interactive shell for modern PHP.",
  9407. "homepage": "http://psysh.org",
  9408. "keywords": [
  9409. "REPL",
  9410. "console",
  9411. "interactive",
  9412. "shell"
  9413. ],
  9414. "time": "2020-12-04T02:51:30+00:00"
  9415. },
  9416. {
  9417. "name": "ralouphie/getallheaders",
  9418. "version": "3.0.3",
  9419. "source": {
  9420. "type": "git",
  9421. "url": "https://github.com/ralouphie/getallheaders.git",
  9422. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  9423. },
  9424. "dist": {
  9425. "type": "zip",
  9426. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  9427. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  9428. "shasum": ""
  9429. },
  9430. "require": {
  9431. "php": ">=5.6"
  9432. },
  9433. "require-dev": {
  9434. "php-coveralls/php-coveralls": "^2.1",
  9435. "phpunit/phpunit": "^5 || ^6.5"
  9436. },
  9437. "type": "library",
  9438. "autoload": {
  9439. "files": [
  9440. "src/getallheaders.php"
  9441. ]
  9442. },
  9443. "notification-url": "https://packagist.org/downloads/",
  9444. "license": [
  9445. "MIT"
  9446. ],
  9447. "authors": [
  9448. {
  9449. "name": "Ralph Khattar",
  9450. "email": "ralph.khattar@gmail.com"
  9451. }
  9452. ],
  9453. "description": "A polyfill for getallheaders.",
  9454. "time": "2019-03-08T08:55:37+00:00"
  9455. },
  9456. {
  9457. "name": "stack/builder",
  9458. "version": "v1.0.6",
  9459. "source": {
  9460. "type": "git",
  9461. "url": "https://github.com/stackphp/builder.git",
  9462. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c"
  9463. },
  9464. "dist": {
  9465. "type": "zip",
  9466. "url": "https://api.github.com/repos/stackphp/builder/zipball/a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  9467. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  9468. "shasum": ""
  9469. },
  9470. "require": {
  9471. "php": ">=7.2.0",
  9472. "symfony/http-foundation": "~2.1|~3.0|~4.0|~5.0",
  9473. "symfony/http-kernel": "~2.1|~3.0|~4.0|~5.0"
  9474. },
  9475. "require-dev": {
  9476. "phpunit/phpunit": "~8.0",
  9477. "symfony/routing": "^5.0"
  9478. },
  9479. "type": "library",
  9480. "extra": {
  9481. "branch-alias": {
  9482. "dev-master": "1.0-dev"
  9483. }
  9484. },
  9485. "autoload": {
  9486. "psr-0": {
  9487. "Stack": "src"
  9488. }
  9489. },
  9490. "notification-url": "https://packagist.org/downloads/",
  9491. "license": [
  9492. "MIT"
  9493. ],
  9494. "authors": [
  9495. {
  9496. "name": "Igor Wiedler",
  9497. "email": "igor@wiedler.ch"
  9498. }
  9499. ],
  9500. "description": "Builder for stack middleware based on HttpKernelInterface.",
  9501. "keywords": [
  9502. "stack"
  9503. ],
  9504. "time": "2020-01-30T12:17:27+00:00"
  9505. },
  9506. {
  9507. "name": "stecman/symfony-console-completion",
  9508. "version": "0.11.0",
  9509. "source": {
  9510. "type": "git",
  9511. "url": "https://github.com/stecman/symfony-console-completion.git",
  9512. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518"
  9513. },
  9514. "dist": {
  9515. "type": "zip",
  9516. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/a9502dab59405e275a9f264536c4e1cb61fc3518",
  9517. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518",
  9518. "shasum": ""
  9519. },
  9520. "require": {
  9521. "php": ">=5.3.2",
  9522. "symfony/console": "~2.3 || ~3.0 || ~4.0 || ~5.0"
  9523. },
  9524. "require-dev": {
  9525. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  9526. },
  9527. "type": "library",
  9528. "extra": {
  9529. "branch-alias": {
  9530. "dev-master": "0.10.x-dev"
  9531. }
  9532. },
  9533. "autoload": {
  9534. "psr-4": {
  9535. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  9536. }
  9537. },
  9538. "notification-url": "https://packagist.org/downloads/",
  9539. "license": [
  9540. "MIT"
  9541. ],
  9542. "authors": [
  9543. {
  9544. "name": "Stephen Holdaway",
  9545. "email": "stephen@stecman.co.nz"
  9546. }
  9547. ],
  9548. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  9549. "time": "2019-11-24T17:03:06+00:00"
  9550. },
  9551. {
  9552. "name": "symfony-cmf/routing",
  9553. "version": "2.3.3",
  9554. "source": {
  9555. "type": "git",
  9556. "url": "https://github.com/symfony-cmf/Routing.git",
  9557. "reference": "3c97e7b7709b313cecfb76d691ad4cc22acbf3f5"
  9558. },
  9559. "dist": {
  9560. "type": "zip",
  9561. "url": "https://api.github.com/repos/symfony-cmf/Routing/zipball/3c97e7b7709b313cecfb76d691ad4cc22acbf3f5",
  9562. "reference": "3c97e7b7709b313cecfb76d691ad4cc22acbf3f5",
  9563. "shasum": ""
  9564. },
  9565. "require": {
  9566. "php": "^7.2 || ^8.0",
  9567. "psr/log": "^1.0",
  9568. "symfony/http-kernel": "^4.4 || ^5.0",
  9569. "symfony/routing": "^4.4 || ^5.0"
  9570. },
  9571. "require-dev": {
  9572. "symfony-cmf/testing": "^3@dev",
  9573. "symfony/config": "^4.4 || ^5.0",
  9574. "symfony/dependency-injection": "^4.4 || ^5.0",
  9575. "symfony/event-dispatcher": "^4.4 || ^5.0",
  9576. "symfony/phpunit-bridge": "^5.0"
  9577. },
  9578. "suggest": {
  9579. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (^4.4 || ^5.0)"
  9580. },
  9581. "type": "library",
  9582. "extra": {
  9583. "branch-alias": {
  9584. "dev-master": "2.x-dev"
  9585. }
  9586. },
  9587. "autoload": {
  9588. "psr-4": {
  9589. "Symfony\\Cmf\\Component\\Routing\\": "src/"
  9590. }
  9591. },
  9592. "notification-url": "https://packagist.org/downloads/",
  9593. "license": [
  9594. "MIT"
  9595. ],
  9596. "authors": [
  9597. {
  9598. "name": "Symfony CMF Community",
  9599. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  9600. }
  9601. ],
  9602. "description": "Extends the Symfony routing component for dynamic routes and chaining several routers",
  9603. "homepage": "http://cmf.symfony.com",
  9604. "keywords": [
  9605. "database",
  9606. "routing"
  9607. ],
  9608. "time": "2020-10-06T10:15:37+00:00"
  9609. },
  9610. {
  9611. "name": "symfony/config",
  9612. "version": "v4.4.17",
  9613. "source": {
  9614. "type": "git",
  9615. "url": "https://github.com/symfony/config.git",
  9616. "reference": "4da4a6b07cc7d8d7d3e29842bc9c20401d555065"
  9617. },
  9618. "dist": {
  9619. "type": "zip",
  9620. "url": "https://api.github.com/repos/symfony/config/zipball/4da4a6b07cc7d8d7d3e29842bc9c20401d555065",
  9621. "reference": "4da4a6b07cc7d8d7d3e29842bc9c20401d555065",
  9622. "shasum": ""
  9623. },
  9624. "require": {
  9625. "php": ">=7.1.3",
  9626. "symfony/filesystem": "^3.4|^4.0|^5.0",
  9627. "symfony/polyfill-ctype": "~1.8"
  9628. },
  9629. "conflict": {
  9630. "symfony/finder": "<3.4"
  9631. },
  9632. "require-dev": {
  9633. "symfony/event-dispatcher": "^3.4|^4.0|^5.0",
  9634. "symfony/finder": "^3.4|^4.0|^5.0",
  9635. "symfony/messenger": "^4.1|^5.0",
  9636. "symfony/service-contracts": "^1.1|^2",
  9637. "symfony/yaml": "^3.4|^4.0|^5.0"
  9638. },
  9639. "suggest": {
  9640. "symfony/yaml": "To use the yaml reference dumper"
  9641. },
  9642. "type": "library",
  9643. "autoload": {
  9644. "psr-4": {
  9645. "Symfony\\Component\\Config\\": ""
  9646. },
  9647. "exclude-from-classmap": [
  9648. "/Tests/"
  9649. ]
  9650. },
  9651. "notification-url": "https://packagist.org/downloads/",
  9652. "license": [
  9653. "MIT"
  9654. ],
  9655. "authors": [
  9656. {
  9657. "name": "Fabien Potencier",
  9658. "email": "fabien@symfony.com"
  9659. },
  9660. {
  9661. "name": "Symfony Community",
  9662. "homepage": "https://symfony.com/contributors"
  9663. }
  9664. ],
  9665. "description": "Symfony Config Component",
  9666. "homepage": "https://symfony.com",
  9667. "funding": [
  9668. {
  9669. "url": "https://symfony.com/sponsor",
  9670. "type": "custom"
  9671. },
  9672. {
  9673. "url": "https://github.com/fabpot",
  9674. "type": "github"
  9675. },
  9676. {
  9677. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9678. "type": "tidelift"
  9679. }
  9680. ],
  9681. "time": "2020-11-16T11:15:53+00:00"
  9682. },
  9683. {
  9684. "name": "symfony/console",
  9685. "version": "v4.4.16",
  9686. "source": {
  9687. "type": "git",
  9688. "url": "https://github.com/symfony/console.git",
  9689. "reference": "20f73dd143a5815d475e0838ff867bce1eebd9d5"
  9690. },
  9691. "dist": {
  9692. "type": "zip",
  9693. "url": "https://api.github.com/repos/symfony/console/zipball/20f73dd143a5815d475e0838ff867bce1eebd9d5",
  9694. "reference": "20f73dd143a5815d475e0838ff867bce1eebd9d5",
  9695. "shasum": ""
  9696. },
  9697. "require": {
  9698. "php": ">=7.1.3",
  9699. "symfony/polyfill-mbstring": "~1.0",
  9700. "symfony/polyfill-php73": "^1.8",
  9701. "symfony/polyfill-php80": "^1.15",
  9702. "symfony/service-contracts": "^1.1|^2"
  9703. },
  9704. "conflict": {
  9705. "symfony/dependency-injection": "<3.4",
  9706. "symfony/event-dispatcher": "<4.3|>=5",
  9707. "symfony/lock": "<4.4",
  9708. "symfony/process": "<3.3"
  9709. },
  9710. "provide": {
  9711. "psr/log-implementation": "1.0"
  9712. },
  9713. "require-dev": {
  9714. "psr/log": "~1.0",
  9715. "symfony/config": "^3.4|^4.0|^5.0",
  9716. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  9717. "symfony/event-dispatcher": "^4.3",
  9718. "symfony/lock": "^4.4|^5.0",
  9719. "symfony/process": "^3.4|^4.0|^5.0",
  9720. "symfony/var-dumper": "^4.3|^5.0"
  9721. },
  9722. "suggest": {
  9723. "psr/log": "For using the console logger",
  9724. "symfony/event-dispatcher": "",
  9725. "symfony/lock": "",
  9726. "symfony/process": ""
  9727. },
  9728. "type": "library",
  9729. "autoload": {
  9730. "psr-4": {
  9731. "Symfony\\Component\\Console\\": ""
  9732. },
  9733. "exclude-from-classmap": [
  9734. "/Tests/"
  9735. ]
  9736. },
  9737. "notification-url": "https://packagist.org/downloads/",
  9738. "license": [
  9739. "MIT"
  9740. ],
  9741. "authors": [
  9742. {
  9743. "name": "Fabien Potencier",
  9744. "email": "fabien@symfony.com"
  9745. },
  9746. {
  9747. "name": "Symfony Community",
  9748. "homepage": "https://symfony.com/contributors"
  9749. }
  9750. ],
  9751. "description": "Symfony Console Component",
  9752. "homepage": "https://symfony.com",
  9753. "funding": [
  9754. {
  9755. "url": "https://symfony.com/sponsor",
  9756. "type": "custom"
  9757. },
  9758. {
  9759. "url": "https://github.com/fabpot",
  9760. "type": "github"
  9761. },
  9762. {
  9763. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9764. "type": "tidelift"
  9765. }
  9766. ],
  9767. "time": "2020-10-24T11:50:19+00:00"
  9768. },
  9769. {
  9770. "name": "symfony/css-selector",
  9771. "version": "v4.4.17",
  9772. "source": {
  9773. "type": "git",
  9774. "url": "https://github.com/symfony/css-selector.git",
  9775. "reference": "5e6efcb6e5d120249da366417e2517c55b50c931"
  9776. },
  9777. "dist": {
  9778. "type": "zip",
  9779. "url": "https://api.github.com/repos/symfony/css-selector/zipball/5e6efcb6e5d120249da366417e2517c55b50c931",
  9780. "reference": "5e6efcb6e5d120249da366417e2517c55b50c931",
  9781. "shasum": ""
  9782. },
  9783. "require": {
  9784. "php": ">=7.1.3"
  9785. },
  9786. "type": "library",
  9787. "autoload": {
  9788. "psr-4": {
  9789. "Symfony\\Component\\CssSelector\\": ""
  9790. },
  9791. "exclude-from-classmap": [
  9792. "/Tests/"
  9793. ]
  9794. },
  9795. "notification-url": "https://packagist.org/downloads/",
  9796. "license": [
  9797. "MIT"
  9798. ],
  9799. "authors": [
  9800. {
  9801. "name": "Fabien Potencier",
  9802. "email": "fabien@symfony.com"
  9803. },
  9804. {
  9805. "name": "Jean-François Simon",
  9806. "email": "jeanfrancois.simon@sensiolabs.com"
  9807. },
  9808. {
  9809. "name": "Symfony Community",
  9810. "homepage": "https://symfony.com/contributors"
  9811. }
  9812. ],
  9813. "description": "Symfony CssSelector Component",
  9814. "homepage": "https://symfony.com",
  9815. "funding": [
  9816. {
  9817. "url": "https://symfony.com/sponsor",
  9818. "type": "custom"
  9819. },
  9820. {
  9821. "url": "https://github.com/fabpot",
  9822. "type": "github"
  9823. },
  9824. {
  9825. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9826. "type": "tidelift"
  9827. }
  9828. ],
  9829. "time": "2020-10-28T20:42:29+00:00"
  9830. },
  9831. {
  9832. "name": "symfony/debug",
  9833. "version": "v4.4.16",
  9834. "source": {
  9835. "type": "git",
  9836. "url": "https://github.com/symfony/debug.git",
  9837. "reference": "c87adf3fc1cd0bf4758316a3a150d50a8f957ef4"
  9838. },
  9839. "dist": {
  9840. "type": "zip",
  9841. "url": "https://api.github.com/repos/symfony/debug/zipball/c87adf3fc1cd0bf4758316a3a150d50a8f957ef4",
  9842. "reference": "c87adf3fc1cd0bf4758316a3a150d50a8f957ef4",
  9843. "shasum": ""
  9844. },
  9845. "require": {
  9846. "php": ">=7.1.3",
  9847. "psr/log": "~1.0",
  9848. "symfony/polyfill-php80": "^1.15"
  9849. },
  9850. "conflict": {
  9851. "symfony/http-kernel": "<3.4"
  9852. },
  9853. "require-dev": {
  9854. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  9855. },
  9856. "type": "library",
  9857. "autoload": {
  9858. "psr-4": {
  9859. "Symfony\\Component\\Debug\\": ""
  9860. },
  9861. "exclude-from-classmap": [
  9862. "/Tests/"
  9863. ]
  9864. },
  9865. "notification-url": "https://packagist.org/downloads/",
  9866. "license": [
  9867. "MIT"
  9868. ],
  9869. "authors": [
  9870. {
  9871. "name": "Fabien Potencier",
  9872. "email": "fabien@symfony.com"
  9873. },
  9874. {
  9875. "name": "Symfony Community",
  9876. "homepage": "https://symfony.com/contributors"
  9877. }
  9878. ],
  9879. "description": "Symfony Debug Component",
  9880. "homepage": "https://symfony.com",
  9881. "funding": [
  9882. {
  9883. "url": "https://symfony.com/sponsor",
  9884. "type": "custom"
  9885. },
  9886. {
  9887. "url": "https://github.com/fabpot",
  9888. "type": "github"
  9889. },
  9890. {
  9891. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9892. "type": "tidelift"
  9893. }
  9894. ],
  9895. "time": "2020-10-24T11:50:19+00:00"
  9896. },
  9897. {
  9898. "name": "symfony/dependency-injection",
  9899. "version": "v4.4.16",
  9900. "source": {
  9901. "type": "git",
  9902. "url": "https://github.com/symfony/dependency-injection.git",
  9903. "reference": "4c41ad68924fd8f9e55e1cd77fd6bc28daa3fe89"
  9904. },
  9905. "dist": {
  9906. "type": "zip",
  9907. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/4c41ad68924fd8f9e55e1cd77fd6bc28daa3fe89",
  9908. "reference": "4c41ad68924fd8f9e55e1cd77fd6bc28daa3fe89",
  9909. "shasum": ""
  9910. },
  9911. "require": {
  9912. "php": ">=7.1.3",
  9913. "psr/container": "^1.0",
  9914. "symfony/service-contracts": "^1.1.6|^2"
  9915. },
  9916. "conflict": {
  9917. "symfony/config": "<4.3|>=5.0",
  9918. "symfony/finder": "<3.4",
  9919. "symfony/proxy-manager-bridge": "<3.4",
  9920. "symfony/yaml": "<3.4"
  9921. },
  9922. "provide": {
  9923. "psr/container-implementation": "1.0",
  9924. "symfony/service-implementation": "1.0"
  9925. },
  9926. "require-dev": {
  9927. "symfony/config": "^4.3",
  9928. "symfony/expression-language": "^3.4|^4.0|^5.0",
  9929. "symfony/yaml": "^3.4|^4.0|^5.0"
  9930. },
  9931. "suggest": {
  9932. "symfony/config": "",
  9933. "symfony/expression-language": "For using expressions in service container configuration",
  9934. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  9935. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  9936. "symfony/yaml": ""
  9937. },
  9938. "type": "library",
  9939. "autoload": {
  9940. "psr-4": {
  9941. "Symfony\\Component\\DependencyInjection\\": ""
  9942. },
  9943. "exclude-from-classmap": [
  9944. "/Tests/"
  9945. ]
  9946. },
  9947. "notification-url": "https://packagist.org/downloads/",
  9948. "license": [
  9949. "MIT"
  9950. ],
  9951. "authors": [
  9952. {
  9953. "name": "Fabien Potencier",
  9954. "email": "fabien@symfony.com"
  9955. },
  9956. {
  9957. "name": "Symfony Community",
  9958. "homepage": "https://symfony.com/contributors"
  9959. }
  9960. ],
  9961. "description": "Symfony DependencyInjection Component",
  9962. "homepage": "https://symfony.com",
  9963. "funding": [
  9964. {
  9965. "url": "https://symfony.com/sponsor",
  9966. "type": "custom"
  9967. },
  9968. {
  9969. "url": "https://github.com/fabpot",
  9970. "type": "github"
  9971. },
  9972. {
  9973. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9974. "type": "tidelift"
  9975. }
  9976. ],
  9977. "time": "2020-10-27T10:05:40+00:00"
  9978. },
  9979. {
  9980. "name": "symfony/dom-crawler",
  9981. "version": "v4.4.17",
  9982. "source": {
  9983. "type": "git",
  9984. "url": "https://github.com/symfony/dom-crawler.git",
  9985. "reference": "30ad9ac96a01913195bf0328d48e29d54fa53e6e"
  9986. },
  9987. "dist": {
  9988. "type": "zip",
  9989. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/30ad9ac96a01913195bf0328d48e29d54fa53e6e",
  9990. "reference": "30ad9ac96a01913195bf0328d48e29d54fa53e6e",
  9991. "shasum": ""
  9992. },
  9993. "require": {
  9994. "php": ">=7.1.3",
  9995. "symfony/polyfill-ctype": "~1.8",
  9996. "symfony/polyfill-mbstring": "~1.0"
  9997. },
  9998. "conflict": {
  9999. "masterminds/html5": "<2.6"
  10000. },
  10001. "require-dev": {
  10002. "masterminds/html5": "^2.6",
  10003. "symfony/css-selector": "^3.4|^4.0|^5.0"
  10004. },
  10005. "suggest": {
  10006. "symfony/css-selector": ""
  10007. },
  10008. "type": "library",
  10009. "autoload": {
  10010. "psr-4": {
  10011. "Symfony\\Component\\DomCrawler\\": ""
  10012. },
  10013. "exclude-from-classmap": [
  10014. "/Tests/"
  10015. ]
  10016. },
  10017. "notification-url": "https://packagist.org/downloads/",
  10018. "license": [
  10019. "MIT"
  10020. ],
  10021. "authors": [
  10022. {
  10023. "name": "Fabien Potencier",
  10024. "email": "fabien@symfony.com"
  10025. },
  10026. {
  10027. "name": "Symfony Community",
  10028. "homepage": "https://symfony.com/contributors"
  10029. }
  10030. ],
  10031. "description": "Symfony DomCrawler Component",
  10032. "homepage": "https://symfony.com",
  10033. "funding": [
  10034. {
  10035. "url": "https://symfony.com/sponsor",
  10036. "type": "custom"
  10037. },
  10038. {
  10039. "url": "https://github.com/fabpot",
  10040. "type": "github"
  10041. },
  10042. {
  10043. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10044. "type": "tidelift"
  10045. }
  10046. ],
  10047. "time": "2020-10-24T11:50:19+00:00"
  10048. },
  10049. {
  10050. "name": "symfony/error-handler",
  10051. "version": "v4.4.16",
  10052. "source": {
  10053. "type": "git",
  10054. "url": "https://github.com/symfony/error-handler.git",
  10055. "reference": "363cca01cabf98e4f1c447b14d0a68617f003613"
  10056. },
  10057. "dist": {
  10058. "type": "zip",
  10059. "url": "https://api.github.com/repos/symfony/error-handler/zipball/363cca01cabf98e4f1c447b14d0a68617f003613",
  10060. "reference": "363cca01cabf98e4f1c447b14d0a68617f003613",
  10061. "shasum": ""
  10062. },
  10063. "require": {
  10064. "php": ">=7.1.3",
  10065. "psr/log": "~1.0",
  10066. "symfony/debug": "^4.4.5",
  10067. "symfony/polyfill-php80": "^1.15",
  10068. "symfony/var-dumper": "^4.4|^5.0"
  10069. },
  10070. "require-dev": {
  10071. "symfony/http-kernel": "^4.4|^5.0",
  10072. "symfony/serializer": "^4.4|^5.0"
  10073. },
  10074. "type": "library",
  10075. "autoload": {
  10076. "psr-4": {
  10077. "Symfony\\Component\\ErrorHandler\\": ""
  10078. },
  10079. "exclude-from-classmap": [
  10080. "/Tests/"
  10081. ]
  10082. },
  10083. "notification-url": "https://packagist.org/downloads/",
  10084. "license": [
  10085. "MIT"
  10086. ],
  10087. "authors": [
  10088. {
  10089. "name": "Fabien Potencier",
  10090. "email": "fabien@symfony.com"
  10091. },
  10092. {
  10093. "name": "Symfony Community",
  10094. "homepage": "https://symfony.com/contributors"
  10095. }
  10096. ],
  10097. "description": "Symfony ErrorHandler Component",
  10098. "homepage": "https://symfony.com",
  10099. "funding": [
  10100. {
  10101. "url": "https://symfony.com/sponsor",
  10102. "type": "custom"
  10103. },
  10104. {
  10105. "url": "https://github.com/fabpot",
  10106. "type": "github"
  10107. },
  10108. {
  10109. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10110. "type": "tidelift"
  10111. }
  10112. ],
  10113. "time": "2020-10-24T11:50:19+00:00"
  10114. },
  10115. {
  10116. "name": "symfony/event-dispatcher",
  10117. "version": "v4.4.16",
  10118. "source": {
  10119. "type": "git",
  10120. "url": "https://github.com/symfony/event-dispatcher.git",
  10121. "reference": "4204f13d2d0b7ad09454f221bb2195fccdf1fe98"
  10122. },
  10123. "dist": {
  10124. "type": "zip",
  10125. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/4204f13d2d0b7ad09454f221bb2195fccdf1fe98",
  10126. "reference": "4204f13d2d0b7ad09454f221bb2195fccdf1fe98",
  10127. "shasum": ""
  10128. },
  10129. "require": {
  10130. "php": ">=7.1.3",
  10131. "symfony/event-dispatcher-contracts": "^1.1"
  10132. },
  10133. "conflict": {
  10134. "symfony/dependency-injection": "<3.4"
  10135. },
  10136. "provide": {
  10137. "psr/event-dispatcher-implementation": "1.0",
  10138. "symfony/event-dispatcher-implementation": "1.1"
  10139. },
  10140. "require-dev": {
  10141. "psr/log": "~1.0",
  10142. "symfony/config": "^3.4|^4.0|^5.0",
  10143. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  10144. "symfony/error-handler": "~3.4|~4.4",
  10145. "symfony/expression-language": "^3.4|^4.0|^5.0",
  10146. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  10147. "symfony/service-contracts": "^1.1|^2",
  10148. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  10149. },
  10150. "suggest": {
  10151. "symfony/dependency-injection": "",
  10152. "symfony/http-kernel": ""
  10153. },
  10154. "type": "library",
  10155. "autoload": {
  10156. "psr-4": {
  10157. "Symfony\\Component\\EventDispatcher\\": ""
  10158. },
  10159. "exclude-from-classmap": [
  10160. "/Tests/"
  10161. ]
  10162. },
  10163. "notification-url": "https://packagist.org/downloads/",
  10164. "license": [
  10165. "MIT"
  10166. ],
  10167. "authors": [
  10168. {
  10169. "name": "Fabien Potencier",
  10170. "email": "fabien@symfony.com"
  10171. },
  10172. {
  10173. "name": "Symfony Community",
  10174. "homepage": "https://symfony.com/contributors"
  10175. }
  10176. ],
  10177. "description": "Symfony EventDispatcher Component",
  10178. "homepage": "https://symfony.com",
  10179. "funding": [
  10180. {
  10181. "url": "https://symfony.com/sponsor",
  10182. "type": "custom"
  10183. },
  10184. {
  10185. "url": "https://github.com/fabpot",
  10186. "type": "github"
  10187. },
  10188. {
  10189. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10190. "type": "tidelift"
  10191. }
  10192. ],
  10193. "time": "2020-10-24T11:50:19+00:00"
  10194. },
  10195. {
  10196. "name": "symfony/event-dispatcher-contracts",
  10197. "version": "v1.1.9",
  10198. "source": {
  10199. "type": "git",
  10200. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10201. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7"
  10202. },
  10203. "dist": {
  10204. "type": "zip",
  10205. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  10206. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  10207. "shasum": ""
  10208. },
  10209. "require": {
  10210. "php": ">=7.1.3"
  10211. },
  10212. "suggest": {
  10213. "psr/event-dispatcher": "",
  10214. "symfony/event-dispatcher-implementation": ""
  10215. },
  10216. "type": "library",
  10217. "extra": {
  10218. "branch-alias": {
  10219. "dev-master": "1.1-dev"
  10220. },
  10221. "thanks": {
  10222. "name": "symfony/contracts",
  10223. "url": "https://github.com/symfony/contracts"
  10224. }
  10225. },
  10226. "autoload": {
  10227. "psr-4": {
  10228. "Symfony\\Contracts\\EventDispatcher\\": ""
  10229. }
  10230. },
  10231. "notification-url": "https://packagist.org/downloads/",
  10232. "license": [
  10233. "MIT"
  10234. ],
  10235. "authors": [
  10236. {
  10237. "name": "Nicolas Grekas",
  10238. "email": "p@tchwork.com"
  10239. },
  10240. {
  10241. "name": "Symfony Community",
  10242. "homepage": "https://symfony.com/contributors"
  10243. }
  10244. ],
  10245. "description": "Generic abstractions related to dispatching event",
  10246. "homepage": "https://symfony.com",
  10247. "keywords": [
  10248. "abstractions",
  10249. "contracts",
  10250. "decoupling",
  10251. "interfaces",
  10252. "interoperability",
  10253. "standards"
  10254. ],
  10255. "funding": [
  10256. {
  10257. "url": "https://symfony.com/sponsor",
  10258. "type": "custom"
  10259. },
  10260. {
  10261. "url": "https://github.com/fabpot",
  10262. "type": "github"
  10263. },
  10264. {
  10265. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10266. "type": "tidelift"
  10267. }
  10268. ],
  10269. "time": "2020-07-06T13:19:58+00:00"
  10270. },
  10271. {
  10272. "name": "symfony/filesystem",
  10273. "version": "v4.4.17",
  10274. "source": {
  10275. "type": "git",
  10276. "url": "https://github.com/symfony/filesystem.git",
  10277. "reference": "17b83e36a911aefa2cfe04bbf6328ec4c040c1b2"
  10278. },
  10279. "dist": {
  10280. "type": "zip",
  10281. "url": "https://api.github.com/repos/symfony/filesystem/zipball/17b83e36a911aefa2cfe04bbf6328ec4c040c1b2",
  10282. "reference": "17b83e36a911aefa2cfe04bbf6328ec4c040c1b2",
  10283. "shasum": ""
  10284. },
  10285. "require": {
  10286. "php": ">=7.1.3",
  10287. "symfony/polyfill-ctype": "~1.8"
  10288. },
  10289. "type": "library",
  10290. "autoload": {
  10291. "psr-4": {
  10292. "Symfony\\Component\\Filesystem\\": ""
  10293. },
  10294. "exclude-from-classmap": [
  10295. "/Tests/"
  10296. ]
  10297. },
  10298. "notification-url": "https://packagist.org/downloads/",
  10299. "license": [
  10300. "MIT"
  10301. ],
  10302. "authors": [
  10303. {
  10304. "name": "Fabien Potencier",
  10305. "email": "fabien@symfony.com"
  10306. },
  10307. {
  10308. "name": "Symfony Community",
  10309. "homepage": "https://symfony.com/contributors"
  10310. }
  10311. ],
  10312. "description": "Symfony Filesystem Component",
  10313. "homepage": "https://symfony.com",
  10314. "funding": [
  10315. {
  10316. "url": "https://symfony.com/sponsor",
  10317. "type": "custom"
  10318. },
  10319. {
  10320. "url": "https://github.com/fabpot",
  10321. "type": "github"
  10322. },
  10323. {
  10324. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10325. "type": "tidelift"
  10326. }
  10327. ],
  10328. "time": "2020-11-11T22:20:15+00:00"
  10329. },
  10330. {
  10331. "name": "symfony/finder",
  10332. "version": "v4.4.17",
  10333. "source": {
  10334. "type": "git",
  10335. "url": "https://github.com/symfony/finder.git",
  10336. "reference": "9f1d1d883b79a91ef320c0c6e803494e042ef36e"
  10337. },
  10338. "dist": {
  10339. "type": "zip",
  10340. "url": "https://api.github.com/repos/symfony/finder/zipball/9f1d1d883b79a91ef320c0c6e803494e042ef36e",
  10341. "reference": "9f1d1d883b79a91ef320c0c6e803494e042ef36e",
  10342. "shasum": ""
  10343. },
  10344. "require": {
  10345. "php": ">=7.1.3"
  10346. },
  10347. "type": "library",
  10348. "autoload": {
  10349. "psr-4": {
  10350. "Symfony\\Component\\Finder\\": ""
  10351. },
  10352. "exclude-from-classmap": [
  10353. "/Tests/"
  10354. ]
  10355. },
  10356. "notification-url": "https://packagist.org/downloads/",
  10357. "license": [
  10358. "MIT"
  10359. ],
  10360. "authors": [
  10361. {
  10362. "name": "Fabien Potencier",
  10363. "email": "fabien@symfony.com"
  10364. },
  10365. {
  10366. "name": "Symfony Community",
  10367. "homepage": "https://symfony.com/contributors"
  10368. }
  10369. ],
  10370. "description": "Symfony Finder Component",
  10371. "homepage": "https://symfony.com",
  10372. "funding": [
  10373. {
  10374. "url": "https://symfony.com/sponsor",
  10375. "type": "custom"
  10376. },
  10377. {
  10378. "url": "https://github.com/fabpot",
  10379. "type": "github"
  10380. },
  10381. {
  10382. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10383. "type": "tidelift"
  10384. }
  10385. ],
  10386. "time": "2020-11-17T19:45:34+00:00"
  10387. },
  10388. {
  10389. "name": "symfony/http-client-contracts",
  10390. "version": "v2.3.1",
  10391. "source": {
  10392. "type": "git",
  10393. "url": "https://github.com/symfony/http-client-contracts.git",
  10394. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  10395. },
  10396. "dist": {
  10397. "type": "zip",
  10398. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  10399. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  10400. "shasum": ""
  10401. },
  10402. "require": {
  10403. "php": ">=7.2.5"
  10404. },
  10405. "suggest": {
  10406. "symfony/http-client-implementation": ""
  10407. },
  10408. "type": "library",
  10409. "extra": {
  10410. "branch-version": "2.3",
  10411. "branch-alias": {
  10412. "dev-main": "2.3-dev"
  10413. },
  10414. "thanks": {
  10415. "name": "symfony/contracts",
  10416. "url": "https://github.com/symfony/contracts"
  10417. }
  10418. },
  10419. "autoload": {
  10420. "psr-4": {
  10421. "Symfony\\Contracts\\HttpClient\\": ""
  10422. }
  10423. },
  10424. "notification-url": "https://packagist.org/downloads/",
  10425. "license": [
  10426. "MIT"
  10427. ],
  10428. "authors": [
  10429. {
  10430. "name": "Nicolas Grekas",
  10431. "email": "p@tchwork.com"
  10432. },
  10433. {
  10434. "name": "Symfony Community",
  10435. "homepage": "https://symfony.com/contributors"
  10436. }
  10437. ],
  10438. "description": "Generic abstractions related to HTTP clients",
  10439. "homepage": "https://symfony.com",
  10440. "keywords": [
  10441. "abstractions",
  10442. "contracts",
  10443. "decoupling",
  10444. "interfaces",
  10445. "interoperability",
  10446. "standards"
  10447. ],
  10448. "funding": [
  10449. {
  10450. "url": "https://symfony.com/sponsor",
  10451. "type": "custom"
  10452. },
  10453. {
  10454. "url": "https://github.com/fabpot",
  10455. "type": "github"
  10456. },
  10457. {
  10458. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10459. "type": "tidelift"
  10460. }
  10461. ],
  10462. "time": "2020-10-14T17:08:19+00:00"
  10463. },
  10464. {
  10465. "name": "symfony/http-foundation",
  10466. "version": "v4.4.16",
  10467. "source": {
  10468. "type": "git",
  10469. "url": "https://github.com/symfony/http-foundation.git",
  10470. "reference": "827a00811ef699e809a201ceafac0b2b246bf38a"
  10471. },
  10472. "dist": {
  10473. "type": "zip",
  10474. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/827a00811ef699e809a201ceafac0b2b246bf38a",
  10475. "reference": "827a00811ef699e809a201ceafac0b2b246bf38a",
  10476. "shasum": ""
  10477. },
  10478. "require": {
  10479. "php": ">=7.1.3",
  10480. "symfony/mime": "^4.3|^5.0",
  10481. "symfony/polyfill-mbstring": "~1.1"
  10482. },
  10483. "require-dev": {
  10484. "predis/predis": "~1.0",
  10485. "symfony/expression-language": "^3.4|^4.0|^5.0"
  10486. },
  10487. "type": "library",
  10488. "autoload": {
  10489. "psr-4": {
  10490. "Symfony\\Component\\HttpFoundation\\": ""
  10491. },
  10492. "exclude-from-classmap": [
  10493. "/Tests/"
  10494. ]
  10495. },
  10496. "notification-url": "https://packagist.org/downloads/",
  10497. "license": [
  10498. "MIT"
  10499. ],
  10500. "authors": [
  10501. {
  10502. "name": "Fabien Potencier",
  10503. "email": "fabien@symfony.com"
  10504. },
  10505. {
  10506. "name": "Symfony Community",
  10507. "homepage": "https://symfony.com/contributors"
  10508. }
  10509. ],
  10510. "description": "Symfony HttpFoundation Component",
  10511. "homepage": "https://symfony.com",
  10512. "funding": [
  10513. {
  10514. "url": "https://symfony.com/sponsor",
  10515. "type": "custom"
  10516. },
  10517. {
  10518. "url": "https://github.com/fabpot",
  10519. "type": "github"
  10520. },
  10521. {
  10522. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10523. "type": "tidelift"
  10524. }
  10525. ],
  10526. "time": "2020-10-24T11:50:19+00:00"
  10527. },
  10528. {
  10529. "name": "symfony/http-kernel",
  10530. "version": "v4.4.16",
  10531. "source": {
  10532. "type": "git",
  10533. "url": "https://github.com/symfony/http-kernel.git",
  10534. "reference": "109b2a46e470a487ec8b0ffea4b0bb993aaf42ed"
  10535. },
  10536. "dist": {
  10537. "type": "zip",
  10538. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/109b2a46e470a487ec8b0ffea4b0bb993aaf42ed",
  10539. "reference": "109b2a46e470a487ec8b0ffea4b0bb993aaf42ed",
  10540. "shasum": ""
  10541. },
  10542. "require": {
  10543. "php": ">=7.1.3",
  10544. "psr/log": "~1.0",
  10545. "symfony/error-handler": "^4.4",
  10546. "symfony/event-dispatcher": "^4.4",
  10547. "symfony/http-client-contracts": "^1.1|^2",
  10548. "symfony/http-foundation": "^4.4|^5.0",
  10549. "symfony/polyfill-ctype": "^1.8",
  10550. "symfony/polyfill-php73": "^1.9",
  10551. "symfony/polyfill-php80": "^1.15"
  10552. },
  10553. "conflict": {
  10554. "symfony/browser-kit": "<4.3",
  10555. "symfony/config": "<3.4",
  10556. "symfony/console": ">=5",
  10557. "symfony/dependency-injection": "<4.3",
  10558. "symfony/translation": "<4.2",
  10559. "twig/twig": "<1.34|<2.4,>=2"
  10560. },
  10561. "provide": {
  10562. "psr/log-implementation": "1.0"
  10563. },
  10564. "require-dev": {
  10565. "psr/cache": "~1.0",
  10566. "symfony/browser-kit": "^4.3|^5.0",
  10567. "symfony/config": "^3.4|^4.0|^5.0",
  10568. "symfony/console": "^3.4|^4.0",
  10569. "symfony/css-selector": "^3.4|^4.0|^5.0",
  10570. "symfony/dependency-injection": "^4.3|^5.0",
  10571. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  10572. "symfony/expression-language": "^3.4|^4.0|^5.0",
  10573. "symfony/finder": "^3.4|^4.0|^5.0",
  10574. "symfony/process": "^3.4|^4.0|^5.0",
  10575. "symfony/routing": "^3.4|^4.0|^5.0",
  10576. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  10577. "symfony/templating": "^3.4|^4.0|^5.0",
  10578. "symfony/translation": "^4.2|^5.0",
  10579. "symfony/translation-contracts": "^1.1|^2",
  10580. "twig/twig": "^1.34|^2.4|^3.0"
  10581. },
  10582. "suggest": {
  10583. "symfony/browser-kit": "",
  10584. "symfony/config": "",
  10585. "symfony/console": "",
  10586. "symfony/dependency-injection": ""
  10587. },
  10588. "type": "library",
  10589. "autoload": {
  10590. "psr-4": {
  10591. "Symfony\\Component\\HttpKernel\\": ""
  10592. },
  10593. "exclude-from-classmap": [
  10594. "/Tests/"
  10595. ]
  10596. },
  10597. "notification-url": "https://packagist.org/downloads/",
  10598. "license": [
  10599. "MIT"
  10600. ],
  10601. "authors": [
  10602. {
  10603. "name": "Fabien Potencier",
  10604. "email": "fabien@symfony.com"
  10605. },
  10606. {
  10607. "name": "Symfony Community",
  10608. "homepage": "https://symfony.com/contributors"
  10609. }
  10610. ],
  10611. "description": "Symfony HttpKernel Component",
  10612. "homepage": "https://symfony.com",
  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": "2020-10-28T05:50:56+00:00"
  10628. },
  10629. {
  10630. "name": "symfony/mime",
  10631. "version": "v5.1.8",
  10632. "source": {
  10633. "type": "git",
  10634. "url": "https://github.com/symfony/mime.git",
  10635. "reference": "f5485a92c24d4bcfc2f3fc648744fb398482ff1b"
  10636. },
  10637. "dist": {
  10638. "type": "zip",
  10639. "url": "https://api.github.com/repos/symfony/mime/zipball/f5485a92c24d4bcfc2f3fc648744fb398482ff1b",
  10640. "reference": "f5485a92c24d4bcfc2f3fc648744fb398482ff1b",
  10641. "shasum": ""
  10642. },
  10643. "require": {
  10644. "php": ">=7.2.5",
  10645. "symfony/polyfill-intl-idn": "^1.10",
  10646. "symfony/polyfill-mbstring": "^1.0",
  10647. "symfony/polyfill-php80": "^1.15"
  10648. },
  10649. "conflict": {
  10650. "symfony/mailer": "<4.4"
  10651. },
  10652. "require-dev": {
  10653. "egulias/email-validator": "^2.1.10",
  10654. "symfony/dependency-injection": "^4.4|^5.0"
  10655. },
  10656. "type": "library",
  10657. "autoload": {
  10658. "psr-4": {
  10659. "Symfony\\Component\\Mime\\": ""
  10660. },
  10661. "exclude-from-classmap": [
  10662. "/Tests/"
  10663. ]
  10664. },
  10665. "notification-url": "https://packagist.org/downloads/",
  10666. "license": [
  10667. "MIT"
  10668. ],
  10669. "authors": [
  10670. {
  10671. "name": "Fabien Potencier",
  10672. "email": "fabien@symfony.com"
  10673. },
  10674. {
  10675. "name": "Symfony Community",
  10676. "homepage": "https://symfony.com/contributors"
  10677. }
  10678. ],
  10679. "description": "A library to manipulate MIME messages",
  10680. "homepage": "https://symfony.com",
  10681. "keywords": [
  10682. "mime",
  10683. "mime-type"
  10684. ],
  10685. "funding": [
  10686. {
  10687. "url": "https://symfony.com/sponsor",
  10688. "type": "custom"
  10689. },
  10690. {
  10691. "url": "https://github.com/fabpot",
  10692. "type": "github"
  10693. },
  10694. {
  10695. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10696. "type": "tidelift"
  10697. }
  10698. ],
  10699. "time": "2020-10-24T12:01:57+00:00"
  10700. },
  10701. {
  10702. "name": "symfony/polyfill-ctype",
  10703. "version": "v1.20.0",
  10704. "source": {
  10705. "type": "git",
  10706. "url": "https://github.com/symfony/polyfill-ctype.git",
  10707. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
  10708. },
  10709. "dist": {
  10710. "type": "zip",
  10711. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  10712. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  10713. "shasum": ""
  10714. },
  10715. "require": {
  10716. "php": ">=7.1"
  10717. },
  10718. "suggest": {
  10719. "ext-ctype": "For best performance"
  10720. },
  10721. "type": "library",
  10722. "extra": {
  10723. "branch-alias": {
  10724. "dev-main": "1.20-dev"
  10725. },
  10726. "thanks": {
  10727. "name": "symfony/polyfill",
  10728. "url": "https://github.com/symfony/polyfill"
  10729. }
  10730. },
  10731. "autoload": {
  10732. "psr-4": {
  10733. "Symfony\\Polyfill\\Ctype\\": ""
  10734. },
  10735. "files": [
  10736. "bootstrap.php"
  10737. ]
  10738. },
  10739. "notification-url": "https://packagist.org/downloads/",
  10740. "license": [
  10741. "MIT"
  10742. ],
  10743. "authors": [
  10744. {
  10745. "name": "Gert de Pagter",
  10746. "email": "BackEndTea@gmail.com"
  10747. },
  10748. {
  10749. "name": "Symfony Community",
  10750. "homepage": "https://symfony.com/contributors"
  10751. }
  10752. ],
  10753. "description": "Symfony polyfill for ctype functions",
  10754. "homepage": "https://symfony.com",
  10755. "keywords": [
  10756. "compatibility",
  10757. "ctype",
  10758. "polyfill",
  10759. "portable"
  10760. ],
  10761. "funding": [
  10762. {
  10763. "url": "https://symfony.com/sponsor",
  10764. "type": "custom"
  10765. },
  10766. {
  10767. "url": "https://github.com/fabpot",
  10768. "type": "github"
  10769. },
  10770. {
  10771. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10772. "type": "tidelift"
  10773. }
  10774. ],
  10775. "time": "2020-10-23T14:02:19+00:00"
  10776. },
  10777. {
  10778. "name": "symfony/polyfill-iconv",
  10779. "version": "v1.20.0",
  10780. "source": {
  10781. "type": "git",
  10782. "url": "https://github.com/symfony/polyfill-iconv.git",
  10783. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024"
  10784. },
  10785. "dist": {
  10786. "type": "zip",
  10787. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c536646fdb4f29104dd26effc2fdcb9a5b085024",
  10788. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024",
  10789. "shasum": ""
  10790. },
  10791. "require": {
  10792. "php": ">=7.1"
  10793. },
  10794. "suggest": {
  10795. "ext-iconv": "For best performance"
  10796. },
  10797. "type": "library",
  10798. "extra": {
  10799. "branch-alias": {
  10800. "dev-main": "1.20-dev"
  10801. },
  10802. "thanks": {
  10803. "name": "symfony/polyfill",
  10804. "url": "https://github.com/symfony/polyfill"
  10805. }
  10806. },
  10807. "autoload": {
  10808. "psr-4": {
  10809. "Symfony\\Polyfill\\Iconv\\": ""
  10810. },
  10811. "files": [
  10812. "bootstrap.php"
  10813. ]
  10814. },
  10815. "notification-url": "https://packagist.org/downloads/",
  10816. "license": [
  10817. "MIT"
  10818. ],
  10819. "authors": [
  10820. {
  10821. "name": "Nicolas Grekas",
  10822. "email": "p@tchwork.com"
  10823. },
  10824. {
  10825. "name": "Symfony Community",
  10826. "homepage": "https://symfony.com/contributors"
  10827. }
  10828. ],
  10829. "description": "Symfony polyfill for the Iconv extension",
  10830. "homepage": "https://symfony.com",
  10831. "keywords": [
  10832. "compatibility",
  10833. "iconv",
  10834. "polyfill",
  10835. "portable",
  10836. "shim"
  10837. ],
  10838. "funding": [
  10839. {
  10840. "url": "https://symfony.com/sponsor",
  10841. "type": "custom"
  10842. },
  10843. {
  10844. "url": "https://github.com/fabpot",
  10845. "type": "github"
  10846. },
  10847. {
  10848. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10849. "type": "tidelift"
  10850. }
  10851. ],
  10852. "time": "2020-10-23T14:02:19+00:00"
  10853. },
  10854. {
  10855. "name": "symfony/polyfill-intl-idn",
  10856. "version": "v1.20.0",
  10857. "source": {
  10858. "type": "git",
  10859. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  10860. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117"
  10861. },
  10862. "dist": {
  10863. "type": "zip",
  10864. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117",
  10865. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117",
  10866. "shasum": ""
  10867. },
  10868. "require": {
  10869. "php": ">=7.1",
  10870. "symfony/polyfill-intl-normalizer": "^1.10",
  10871. "symfony/polyfill-php72": "^1.10"
  10872. },
  10873. "suggest": {
  10874. "ext-intl": "For best performance"
  10875. },
  10876. "type": "library",
  10877. "extra": {
  10878. "branch-alias": {
  10879. "dev-main": "1.20-dev"
  10880. },
  10881. "thanks": {
  10882. "name": "symfony/polyfill",
  10883. "url": "https://github.com/symfony/polyfill"
  10884. }
  10885. },
  10886. "autoload": {
  10887. "psr-4": {
  10888. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  10889. },
  10890. "files": [
  10891. "bootstrap.php"
  10892. ]
  10893. },
  10894. "notification-url": "https://packagist.org/downloads/",
  10895. "license": [
  10896. "MIT"
  10897. ],
  10898. "authors": [
  10899. {
  10900. "name": "Laurent Bassin",
  10901. "email": "laurent@bassin.info"
  10902. },
  10903. {
  10904. "name": "Trevor Rowbotham",
  10905. "email": "trevor.rowbotham@pm.me"
  10906. },
  10907. {
  10908. "name": "Symfony Community",
  10909. "homepage": "https://symfony.com/contributors"
  10910. }
  10911. ],
  10912. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  10913. "homepage": "https://symfony.com",
  10914. "keywords": [
  10915. "compatibility",
  10916. "idn",
  10917. "intl",
  10918. "polyfill",
  10919. "portable",
  10920. "shim"
  10921. ],
  10922. "funding": [
  10923. {
  10924. "url": "https://symfony.com/sponsor",
  10925. "type": "custom"
  10926. },
  10927. {
  10928. "url": "https://github.com/fabpot",
  10929. "type": "github"
  10930. },
  10931. {
  10932. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10933. "type": "tidelift"
  10934. }
  10935. ],
  10936. "time": "2020-10-23T14:02:19+00:00"
  10937. },
  10938. {
  10939. "name": "symfony/polyfill-intl-normalizer",
  10940. "version": "v1.20.0",
  10941. "source": {
  10942. "type": "git",
  10943. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  10944. "reference": "727d1096295d807c309fb01a851577302394c897"
  10945. },
  10946. "dist": {
  10947. "type": "zip",
  10948. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897",
  10949. "reference": "727d1096295d807c309fb01a851577302394c897",
  10950. "shasum": ""
  10951. },
  10952. "require": {
  10953. "php": ">=7.1"
  10954. },
  10955. "suggest": {
  10956. "ext-intl": "For best performance"
  10957. },
  10958. "type": "library",
  10959. "extra": {
  10960. "branch-alias": {
  10961. "dev-main": "1.20-dev"
  10962. },
  10963. "thanks": {
  10964. "name": "symfony/polyfill",
  10965. "url": "https://github.com/symfony/polyfill"
  10966. }
  10967. },
  10968. "autoload": {
  10969. "psr-4": {
  10970. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  10971. },
  10972. "files": [
  10973. "bootstrap.php"
  10974. ],
  10975. "classmap": [
  10976. "Resources/stubs"
  10977. ]
  10978. },
  10979. "notification-url": "https://packagist.org/downloads/",
  10980. "license": [
  10981. "MIT"
  10982. ],
  10983. "authors": [
  10984. {
  10985. "name": "Nicolas Grekas",
  10986. "email": "p@tchwork.com"
  10987. },
  10988. {
  10989. "name": "Symfony Community",
  10990. "homepage": "https://symfony.com/contributors"
  10991. }
  10992. ],
  10993. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  10994. "homepage": "https://symfony.com",
  10995. "keywords": [
  10996. "compatibility",
  10997. "intl",
  10998. "normalizer",
  10999. "polyfill",
  11000. "portable",
  11001. "shim"
  11002. ],
  11003. "funding": [
  11004. {
  11005. "url": "https://symfony.com/sponsor",
  11006. "type": "custom"
  11007. },
  11008. {
  11009. "url": "https://github.com/fabpot",
  11010. "type": "github"
  11011. },
  11012. {
  11013. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11014. "type": "tidelift"
  11015. }
  11016. ],
  11017. "time": "2020-10-23T14:02:19+00:00"
  11018. },
  11019. {
  11020. "name": "symfony/polyfill-mbstring",
  11021. "version": "v1.20.0",
  11022. "source": {
  11023. "type": "git",
  11024. "url": "https://github.com/symfony/polyfill-mbstring.git",
  11025. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
  11026. },
  11027. "dist": {
  11028. "type": "zip",
  11029. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
  11030. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
  11031. "shasum": ""
  11032. },
  11033. "require": {
  11034. "php": ">=7.1"
  11035. },
  11036. "suggest": {
  11037. "ext-mbstring": "For best performance"
  11038. },
  11039. "type": "library",
  11040. "extra": {
  11041. "branch-alias": {
  11042. "dev-main": "1.20-dev"
  11043. },
  11044. "thanks": {
  11045. "name": "symfony/polyfill",
  11046. "url": "https://github.com/symfony/polyfill"
  11047. }
  11048. },
  11049. "autoload": {
  11050. "psr-4": {
  11051. "Symfony\\Polyfill\\Mbstring\\": ""
  11052. },
  11053. "files": [
  11054. "bootstrap.php"
  11055. ]
  11056. },
  11057. "notification-url": "https://packagist.org/downloads/",
  11058. "license": [
  11059. "MIT"
  11060. ],
  11061. "authors": [
  11062. {
  11063. "name": "Nicolas Grekas",
  11064. "email": "p@tchwork.com"
  11065. },
  11066. {
  11067. "name": "Symfony Community",
  11068. "homepage": "https://symfony.com/contributors"
  11069. }
  11070. ],
  11071. "description": "Symfony polyfill for the Mbstring extension",
  11072. "homepage": "https://symfony.com",
  11073. "keywords": [
  11074. "compatibility",
  11075. "mbstring",
  11076. "polyfill",
  11077. "portable",
  11078. "shim"
  11079. ],
  11080. "funding": [
  11081. {
  11082. "url": "https://symfony.com/sponsor",
  11083. "type": "custom"
  11084. },
  11085. {
  11086. "url": "https://github.com/fabpot",
  11087. "type": "github"
  11088. },
  11089. {
  11090. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11091. "type": "tidelift"
  11092. }
  11093. ],
  11094. "time": "2020-10-23T14:02:19+00:00"
  11095. },
  11096. {
  11097. "name": "symfony/polyfill-php72",
  11098. "version": "v1.20.0",
  11099. "source": {
  11100. "type": "git",
  11101. "url": "https://github.com/symfony/polyfill-php72.git",
  11102. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930"
  11103. },
  11104. "dist": {
  11105. "type": "zip",
  11106. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cede45fcdfabdd6043b3592e83678e42ec69e930",
  11107. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930",
  11108. "shasum": ""
  11109. },
  11110. "require": {
  11111. "php": ">=7.1"
  11112. },
  11113. "type": "library",
  11114. "extra": {
  11115. "branch-alias": {
  11116. "dev-main": "1.20-dev"
  11117. },
  11118. "thanks": {
  11119. "name": "symfony/polyfill",
  11120. "url": "https://github.com/symfony/polyfill"
  11121. }
  11122. },
  11123. "autoload": {
  11124. "psr-4": {
  11125. "Symfony\\Polyfill\\Php72\\": ""
  11126. },
  11127. "files": [
  11128. "bootstrap.php"
  11129. ]
  11130. },
  11131. "notification-url": "https://packagist.org/downloads/",
  11132. "license": [
  11133. "MIT"
  11134. ],
  11135. "authors": [
  11136. {
  11137. "name": "Nicolas Grekas",
  11138. "email": "p@tchwork.com"
  11139. },
  11140. {
  11141. "name": "Symfony Community",
  11142. "homepage": "https://symfony.com/contributors"
  11143. }
  11144. ],
  11145. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  11146. "homepage": "https://symfony.com",
  11147. "keywords": [
  11148. "compatibility",
  11149. "polyfill",
  11150. "portable",
  11151. "shim"
  11152. ],
  11153. "funding": [
  11154. {
  11155. "url": "https://symfony.com/sponsor",
  11156. "type": "custom"
  11157. },
  11158. {
  11159. "url": "https://github.com/fabpot",
  11160. "type": "github"
  11161. },
  11162. {
  11163. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11164. "type": "tidelift"
  11165. }
  11166. ],
  11167. "time": "2020-10-23T14:02:19+00:00"
  11168. },
  11169. {
  11170. "name": "symfony/polyfill-php73",
  11171. "version": "v1.20.0",
  11172. "source": {
  11173. "type": "git",
  11174. "url": "https://github.com/symfony/polyfill-php73.git",
  11175. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed"
  11176. },
  11177. "dist": {
  11178. "type": "zip",
  11179. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/8ff431c517be11c78c48a39a66d37431e26a6bed",
  11180. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed",
  11181. "shasum": ""
  11182. },
  11183. "require": {
  11184. "php": ">=7.1"
  11185. },
  11186. "type": "library",
  11187. "extra": {
  11188. "branch-alias": {
  11189. "dev-main": "1.20-dev"
  11190. },
  11191. "thanks": {
  11192. "name": "symfony/polyfill",
  11193. "url": "https://github.com/symfony/polyfill"
  11194. }
  11195. },
  11196. "autoload": {
  11197. "psr-4": {
  11198. "Symfony\\Polyfill\\Php73\\": ""
  11199. },
  11200. "files": [
  11201. "bootstrap.php"
  11202. ],
  11203. "classmap": [
  11204. "Resources/stubs"
  11205. ]
  11206. },
  11207. "notification-url": "https://packagist.org/downloads/",
  11208. "license": [
  11209. "MIT"
  11210. ],
  11211. "authors": [
  11212. {
  11213. "name": "Nicolas Grekas",
  11214. "email": "p@tchwork.com"
  11215. },
  11216. {
  11217. "name": "Symfony Community",
  11218. "homepage": "https://symfony.com/contributors"
  11219. }
  11220. ],
  11221. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  11222. "homepage": "https://symfony.com",
  11223. "keywords": [
  11224. "compatibility",
  11225. "polyfill",
  11226. "portable",
  11227. "shim"
  11228. ],
  11229. "funding": [
  11230. {
  11231. "url": "https://symfony.com/sponsor",
  11232. "type": "custom"
  11233. },
  11234. {
  11235. "url": "https://github.com/fabpot",
  11236. "type": "github"
  11237. },
  11238. {
  11239. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11240. "type": "tidelift"
  11241. }
  11242. ],
  11243. "time": "2020-10-23T14:02:19+00:00"
  11244. },
  11245. {
  11246. "name": "symfony/polyfill-php80",
  11247. "version": "v1.20.0",
  11248. "source": {
  11249. "type": "git",
  11250. "url": "https://github.com/symfony/polyfill-php80.git",
  11251. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de"
  11252. },
  11253. "dist": {
  11254. "type": "zip",
  11255. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  11256. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  11257. "shasum": ""
  11258. },
  11259. "require": {
  11260. "php": ">=7.1"
  11261. },
  11262. "type": "library",
  11263. "extra": {
  11264. "branch-alias": {
  11265. "dev-main": "1.20-dev"
  11266. },
  11267. "thanks": {
  11268. "name": "symfony/polyfill",
  11269. "url": "https://github.com/symfony/polyfill"
  11270. }
  11271. },
  11272. "autoload": {
  11273. "psr-4": {
  11274. "Symfony\\Polyfill\\Php80\\": ""
  11275. },
  11276. "files": [
  11277. "bootstrap.php"
  11278. ],
  11279. "classmap": [
  11280. "Resources/stubs"
  11281. ]
  11282. },
  11283. "notification-url": "https://packagist.org/downloads/",
  11284. "license": [
  11285. "MIT"
  11286. ],
  11287. "authors": [
  11288. {
  11289. "name": "Ion Bazan",
  11290. "email": "ion.bazan@gmail.com"
  11291. },
  11292. {
  11293. "name": "Nicolas Grekas",
  11294. "email": "p@tchwork.com"
  11295. },
  11296. {
  11297. "name": "Symfony Community",
  11298. "homepage": "https://symfony.com/contributors"
  11299. }
  11300. ],
  11301. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  11302. "homepage": "https://symfony.com",
  11303. "keywords": [
  11304. "compatibility",
  11305. "polyfill",
  11306. "portable",
  11307. "shim"
  11308. ],
  11309. "funding": [
  11310. {
  11311. "url": "https://symfony.com/sponsor",
  11312. "type": "custom"
  11313. },
  11314. {
  11315. "url": "https://github.com/fabpot",
  11316. "type": "github"
  11317. },
  11318. {
  11319. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11320. "type": "tidelift"
  11321. }
  11322. ],
  11323. "time": "2020-10-23T14:02:19+00:00"
  11324. },
  11325. {
  11326. "name": "symfony/process",
  11327. "version": "v4.4.16",
  11328. "source": {
  11329. "type": "git",
  11330. "url": "https://github.com/symfony/process.git",
  11331. "reference": "2f4b049fb80ca5e9874615a2a85dc2a502090f05"
  11332. },
  11333. "dist": {
  11334. "type": "zip",
  11335. "url": "https://api.github.com/repos/symfony/process/zipball/2f4b049fb80ca5e9874615a2a85dc2a502090f05",
  11336. "reference": "2f4b049fb80ca5e9874615a2a85dc2a502090f05",
  11337. "shasum": ""
  11338. },
  11339. "require": {
  11340. "php": ">=7.1.3"
  11341. },
  11342. "type": "library",
  11343. "autoload": {
  11344. "psr-4": {
  11345. "Symfony\\Component\\Process\\": ""
  11346. },
  11347. "exclude-from-classmap": [
  11348. "/Tests/"
  11349. ]
  11350. },
  11351. "notification-url": "https://packagist.org/downloads/",
  11352. "license": [
  11353. "MIT"
  11354. ],
  11355. "authors": [
  11356. {
  11357. "name": "Fabien Potencier",
  11358. "email": "fabien@symfony.com"
  11359. },
  11360. {
  11361. "name": "Symfony Community",
  11362. "homepage": "https://symfony.com/contributors"
  11363. }
  11364. ],
  11365. "description": "Symfony Process Component",
  11366. "homepage": "https://symfony.com",
  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": "2020-10-24T11:50:19+00:00"
  11382. },
  11383. {
  11384. "name": "symfony/psr-http-message-bridge",
  11385. "version": "v2.0.2",
  11386. "source": {
  11387. "type": "git",
  11388. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  11389. "reference": "51a21cb3ba3927d4b4bf8f25cc55763351af5f2e"
  11390. },
  11391. "dist": {
  11392. "type": "zip",
  11393. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/51a21cb3ba3927d4b4bf8f25cc55763351af5f2e",
  11394. "reference": "51a21cb3ba3927d4b4bf8f25cc55763351af5f2e",
  11395. "shasum": ""
  11396. },
  11397. "require": {
  11398. "php": ">=7.1",
  11399. "psr/http-message": "^1.0",
  11400. "symfony/http-foundation": "^4.4 || ^5.0"
  11401. },
  11402. "require-dev": {
  11403. "nyholm/psr7": "^1.1",
  11404. "symfony/phpunit-bridge": "^4.4 || ^5.0"
  11405. },
  11406. "suggest": {
  11407. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  11408. },
  11409. "type": "symfony-bridge",
  11410. "extra": {
  11411. "branch-alias": {
  11412. "dev-master": "2.0-dev"
  11413. }
  11414. },
  11415. "autoload": {
  11416. "psr-4": {
  11417. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  11418. },
  11419. "exclude-from-classmap": [
  11420. "/Tests/"
  11421. ]
  11422. },
  11423. "notification-url": "https://packagist.org/downloads/",
  11424. "license": [
  11425. "MIT"
  11426. ],
  11427. "authors": [
  11428. {
  11429. "name": "Fabien Potencier",
  11430. "email": "fabien@symfony.com"
  11431. },
  11432. {
  11433. "name": "Symfony Community",
  11434. "homepage": "http://symfony.com/contributors"
  11435. }
  11436. ],
  11437. "description": "PSR HTTP message bridge",
  11438. "homepage": "http://symfony.com",
  11439. "keywords": [
  11440. "http",
  11441. "http-message",
  11442. "psr-17",
  11443. "psr-7"
  11444. ],
  11445. "funding": [
  11446. {
  11447. "url": "https://symfony.com/sponsor",
  11448. "type": "custom"
  11449. },
  11450. {
  11451. "url": "https://github.com/fabpot",
  11452. "type": "github"
  11453. },
  11454. {
  11455. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11456. "type": "tidelift"
  11457. }
  11458. ],
  11459. "time": "2020-09-29T08:17:46+00:00"
  11460. },
  11461. {
  11462. "name": "symfony/routing",
  11463. "version": "v4.4.16",
  11464. "source": {
  11465. "type": "git",
  11466. "url": "https://github.com/symfony/routing.git",
  11467. "reference": "826794f2e9305fe73cba859c60d2a336851bd202"
  11468. },
  11469. "dist": {
  11470. "type": "zip",
  11471. "url": "https://api.github.com/repos/symfony/routing/zipball/826794f2e9305fe73cba859c60d2a336851bd202",
  11472. "reference": "826794f2e9305fe73cba859c60d2a336851bd202",
  11473. "shasum": ""
  11474. },
  11475. "require": {
  11476. "php": ">=7.1.3"
  11477. },
  11478. "conflict": {
  11479. "symfony/config": "<4.2",
  11480. "symfony/dependency-injection": "<3.4",
  11481. "symfony/yaml": "<3.4"
  11482. },
  11483. "require-dev": {
  11484. "doctrine/annotations": "~1.2",
  11485. "psr/log": "~1.0",
  11486. "symfony/config": "^4.2|^5.0",
  11487. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  11488. "symfony/expression-language": "^3.4|^4.0|^5.0",
  11489. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  11490. "symfony/yaml": "^3.4|^4.0|^5.0"
  11491. },
  11492. "suggest": {
  11493. "doctrine/annotations": "For using the annotation loader",
  11494. "symfony/config": "For using the all-in-one router or any loader",
  11495. "symfony/expression-language": "For using expression matching",
  11496. "symfony/http-foundation": "For using a Symfony Request object",
  11497. "symfony/yaml": "For using the YAML loader"
  11498. },
  11499. "type": "library",
  11500. "autoload": {
  11501. "psr-4": {
  11502. "Symfony\\Component\\Routing\\": ""
  11503. },
  11504. "exclude-from-classmap": [
  11505. "/Tests/"
  11506. ]
  11507. },
  11508. "notification-url": "https://packagist.org/downloads/",
  11509. "license": [
  11510. "MIT"
  11511. ],
  11512. "authors": [
  11513. {
  11514. "name": "Fabien Potencier",
  11515. "email": "fabien@symfony.com"
  11516. },
  11517. {
  11518. "name": "Symfony Community",
  11519. "homepage": "https://symfony.com/contributors"
  11520. }
  11521. ],
  11522. "description": "Symfony Routing Component",
  11523. "homepage": "https://symfony.com",
  11524. "keywords": [
  11525. "router",
  11526. "routing",
  11527. "uri",
  11528. "url"
  11529. ],
  11530. "funding": [
  11531. {
  11532. "url": "https://symfony.com/sponsor",
  11533. "type": "custom"
  11534. },
  11535. {
  11536. "url": "https://github.com/fabpot",
  11537. "type": "github"
  11538. },
  11539. {
  11540. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11541. "type": "tidelift"
  11542. }
  11543. ],
  11544. "time": "2020-10-24T11:50:19+00:00"
  11545. },
  11546. {
  11547. "name": "symfony/serializer",
  11548. "version": "v4.4.16",
  11549. "source": {
  11550. "type": "git",
  11551. "url": "https://github.com/symfony/serializer.git",
  11552. "reference": "2af7e86db04ee65fdf1991b17ee0b3e955c93de9"
  11553. },
  11554. "dist": {
  11555. "type": "zip",
  11556. "url": "https://api.github.com/repos/symfony/serializer/zipball/2af7e86db04ee65fdf1991b17ee0b3e955c93de9",
  11557. "reference": "2af7e86db04ee65fdf1991b17ee0b3e955c93de9",
  11558. "shasum": ""
  11559. },
  11560. "require": {
  11561. "php": ">=7.1.3",
  11562. "symfony/polyfill-ctype": "~1.8"
  11563. },
  11564. "conflict": {
  11565. "phpdocumentor/type-resolver": "<0.2.1",
  11566. "symfony/dependency-injection": "<3.4",
  11567. "symfony/property-access": "<3.4",
  11568. "symfony/property-info": "<3.4",
  11569. "symfony/yaml": "<3.4"
  11570. },
  11571. "require-dev": {
  11572. "doctrine/annotations": "~1.0",
  11573. "doctrine/cache": "~1.0",
  11574. "phpdocumentor/reflection-docblock": "^3.2|^4.0",
  11575. "symfony/cache": "^3.4|^4.0|^5.0",
  11576. "symfony/config": "^3.4|^4.0|^5.0",
  11577. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  11578. "symfony/error-handler": "^4.4|^5.0",
  11579. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  11580. "symfony/mime": "^4.4|^5.0",
  11581. "symfony/property-access": "^3.4|^4.0|^5.0",
  11582. "symfony/property-info": "^3.4.13|~4.0|^5.0",
  11583. "symfony/validator": "^3.4|^4.0|^5.0",
  11584. "symfony/yaml": "^3.4|^4.0|^5.0"
  11585. },
  11586. "suggest": {
  11587. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  11588. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  11589. "psr/cache-implementation": "For using the metadata cache.",
  11590. "symfony/config": "For using the XML mapping loader.",
  11591. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  11592. "symfony/property-access": "For using the ObjectNormalizer.",
  11593. "symfony/property-info": "To deserialize relations.",
  11594. "symfony/yaml": "For using the default YAML mapping loader."
  11595. },
  11596. "type": "library",
  11597. "autoload": {
  11598. "psr-4": {
  11599. "Symfony\\Component\\Serializer\\": ""
  11600. },
  11601. "exclude-from-classmap": [
  11602. "/Tests/"
  11603. ]
  11604. },
  11605. "notification-url": "https://packagist.org/downloads/",
  11606. "license": [
  11607. "MIT"
  11608. ],
  11609. "authors": [
  11610. {
  11611. "name": "Fabien Potencier",
  11612. "email": "fabien@symfony.com"
  11613. },
  11614. {
  11615. "name": "Symfony Community",
  11616. "homepage": "https://symfony.com/contributors"
  11617. }
  11618. ],
  11619. "description": "Symfony Serializer Component",
  11620. "homepage": "https://symfony.com",
  11621. "funding": [
  11622. {
  11623. "url": "https://symfony.com/sponsor",
  11624. "type": "custom"
  11625. },
  11626. {
  11627. "url": "https://github.com/fabpot",
  11628. "type": "github"
  11629. },
  11630. {
  11631. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11632. "type": "tidelift"
  11633. }
  11634. ],
  11635. "time": "2020-10-24T11:50:19+00:00"
  11636. },
  11637. {
  11638. "name": "symfony/service-contracts",
  11639. "version": "v2.2.0",
  11640. "source": {
  11641. "type": "git",
  11642. "url": "https://github.com/symfony/service-contracts.git",
  11643. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  11644. },
  11645. "dist": {
  11646. "type": "zip",
  11647. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  11648. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  11649. "shasum": ""
  11650. },
  11651. "require": {
  11652. "php": ">=7.2.5",
  11653. "psr/container": "^1.0"
  11654. },
  11655. "suggest": {
  11656. "symfony/service-implementation": ""
  11657. },
  11658. "type": "library",
  11659. "extra": {
  11660. "branch-alias": {
  11661. "dev-master": "2.2-dev"
  11662. },
  11663. "thanks": {
  11664. "name": "symfony/contracts",
  11665. "url": "https://github.com/symfony/contracts"
  11666. }
  11667. },
  11668. "autoload": {
  11669. "psr-4": {
  11670. "Symfony\\Contracts\\Service\\": ""
  11671. }
  11672. },
  11673. "notification-url": "https://packagist.org/downloads/",
  11674. "license": [
  11675. "MIT"
  11676. ],
  11677. "authors": [
  11678. {
  11679. "name": "Nicolas Grekas",
  11680. "email": "p@tchwork.com"
  11681. },
  11682. {
  11683. "name": "Symfony Community",
  11684. "homepage": "https://symfony.com/contributors"
  11685. }
  11686. ],
  11687. "description": "Generic abstractions related to writing services",
  11688. "homepage": "https://symfony.com",
  11689. "keywords": [
  11690. "abstractions",
  11691. "contracts",
  11692. "decoupling",
  11693. "interfaces",
  11694. "interoperability",
  11695. "standards"
  11696. ],
  11697. "funding": [
  11698. {
  11699. "url": "https://symfony.com/sponsor",
  11700. "type": "custom"
  11701. },
  11702. {
  11703. "url": "https://github.com/fabpot",
  11704. "type": "github"
  11705. },
  11706. {
  11707. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11708. "type": "tidelift"
  11709. }
  11710. ],
  11711. "time": "2020-09-07T11:33:47+00:00"
  11712. },
  11713. {
  11714. "name": "symfony/translation",
  11715. "version": "v4.4.16",
  11716. "source": {
  11717. "type": "git",
  11718. "url": "https://github.com/symfony/translation.git",
  11719. "reference": "73095716af79f610f3b6338b911357393fdd10ab"
  11720. },
  11721. "dist": {
  11722. "type": "zip",
  11723. "url": "https://api.github.com/repos/symfony/translation/zipball/73095716af79f610f3b6338b911357393fdd10ab",
  11724. "reference": "73095716af79f610f3b6338b911357393fdd10ab",
  11725. "shasum": ""
  11726. },
  11727. "require": {
  11728. "php": ">=7.1.3",
  11729. "symfony/polyfill-mbstring": "~1.0",
  11730. "symfony/translation-contracts": "^1.1.6|^2"
  11731. },
  11732. "conflict": {
  11733. "symfony/config": "<3.4",
  11734. "symfony/dependency-injection": "<3.4",
  11735. "symfony/http-kernel": "<4.4",
  11736. "symfony/yaml": "<3.4"
  11737. },
  11738. "provide": {
  11739. "symfony/translation-implementation": "1.0"
  11740. },
  11741. "require-dev": {
  11742. "psr/log": "~1.0",
  11743. "symfony/config": "^3.4|^4.0|^5.0",
  11744. "symfony/console": "^3.4|^4.0|^5.0",
  11745. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  11746. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  11747. "symfony/http-kernel": "^4.4",
  11748. "symfony/intl": "^3.4|^4.0|^5.0",
  11749. "symfony/service-contracts": "^1.1.2|^2",
  11750. "symfony/yaml": "^3.4|^4.0|^5.0"
  11751. },
  11752. "suggest": {
  11753. "psr/log-implementation": "To use logging capability in translator",
  11754. "symfony/config": "",
  11755. "symfony/yaml": ""
  11756. },
  11757. "type": "library",
  11758. "autoload": {
  11759. "psr-4": {
  11760. "Symfony\\Component\\Translation\\": ""
  11761. },
  11762. "exclude-from-classmap": [
  11763. "/Tests/"
  11764. ]
  11765. },
  11766. "notification-url": "https://packagist.org/downloads/",
  11767. "license": [
  11768. "MIT"
  11769. ],
  11770. "authors": [
  11771. {
  11772. "name": "Fabien Potencier",
  11773. "email": "fabien@symfony.com"
  11774. },
  11775. {
  11776. "name": "Symfony Community",
  11777. "homepage": "https://symfony.com/contributors"
  11778. }
  11779. ],
  11780. "description": "Symfony Translation Component",
  11781. "homepage": "https://symfony.com",
  11782. "funding": [
  11783. {
  11784. "url": "https://symfony.com/sponsor",
  11785. "type": "custom"
  11786. },
  11787. {
  11788. "url": "https://github.com/fabpot",
  11789. "type": "github"
  11790. },
  11791. {
  11792. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11793. "type": "tidelift"
  11794. }
  11795. ],
  11796. "time": "2020-10-24T11:50:19+00:00"
  11797. },
  11798. {
  11799. "name": "symfony/translation-contracts",
  11800. "version": "v2.3.0",
  11801. "source": {
  11802. "type": "git",
  11803. "url": "https://github.com/symfony/translation-contracts.git",
  11804. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  11805. },
  11806. "dist": {
  11807. "type": "zip",
  11808. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  11809. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  11810. "shasum": ""
  11811. },
  11812. "require": {
  11813. "php": ">=7.2.5"
  11814. },
  11815. "suggest": {
  11816. "symfony/translation-implementation": ""
  11817. },
  11818. "type": "library",
  11819. "extra": {
  11820. "branch-alias": {
  11821. "dev-master": "2.3-dev"
  11822. },
  11823. "thanks": {
  11824. "name": "symfony/contracts",
  11825. "url": "https://github.com/symfony/contracts"
  11826. }
  11827. },
  11828. "autoload": {
  11829. "psr-4": {
  11830. "Symfony\\Contracts\\Translation\\": ""
  11831. }
  11832. },
  11833. "notification-url": "https://packagist.org/downloads/",
  11834. "license": [
  11835. "MIT"
  11836. ],
  11837. "authors": [
  11838. {
  11839. "name": "Nicolas Grekas",
  11840. "email": "p@tchwork.com"
  11841. },
  11842. {
  11843. "name": "Symfony Community",
  11844. "homepage": "https://symfony.com/contributors"
  11845. }
  11846. ],
  11847. "description": "Generic abstractions related to translation",
  11848. "homepage": "https://symfony.com",
  11849. "keywords": [
  11850. "abstractions",
  11851. "contracts",
  11852. "decoupling",
  11853. "interfaces",
  11854. "interoperability",
  11855. "standards"
  11856. ],
  11857. "funding": [
  11858. {
  11859. "url": "https://symfony.com/sponsor",
  11860. "type": "custom"
  11861. },
  11862. {
  11863. "url": "https://github.com/fabpot",
  11864. "type": "github"
  11865. },
  11866. {
  11867. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11868. "type": "tidelift"
  11869. }
  11870. ],
  11871. "time": "2020-09-28T13:05:58+00:00"
  11872. },
  11873. {
  11874. "name": "symfony/validator",
  11875. "version": "v4.4.16",
  11876. "source": {
  11877. "type": "git",
  11878. "url": "https://github.com/symfony/validator.git",
  11879. "reference": "1d214a3aaa0753b19f94cf0479d8c315d957a10d"
  11880. },
  11881. "dist": {
  11882. "type": "zip",
  11883. "url": "https://api.github.com/repos/symfony/validator/zipball/1d214a3aaa0753b19f94cf0479d8c315d957a10d",
  11884. "reference": "1d214a3aaa0753b19f94cf0479d8c315d957a10d",
  11885. "shasum": ""
  11886. },
  11887. "require": {
  11888. "php": ">=7.1.3",
  11889. "symfony/polyfill-ctype": "~1.8",
  11890. "symfony/polyfill-mbstring": "~1.0",
  11891. "symfony/translation-contracts": "^1.1|^2"
  11892. },
  11893. "conflict": {
  11894. "doctrine/lexer": "<1.0.2",
  11895. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  11896. "symfony/dependency-injection": "<3.4",
  11897. "symfony/http-kernel": "<4.4",
  11898. "symfony/intl": "<4.3",
  11899. "symfony/translation": ">=5.0",
  11900. "symfony/yaml": "<3.4"
  11901. },
  11902. "require-dev": {
  11903. "doctrine/annotations": "~1.7",
  11904. "doctrine/cache": "~1.0",
  11905. "egulias/email-validator": "^2.1.10",
  11906. "symfony/cache": "^3.4|^4.0|^5.0",
  11907. "symfony/config": "^3.4|^4.0|^5.0",
  11908. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  11909. "symfony/expression-language": "^3.4|^4.0|^5.0",
  11910. "symfony/http-client": "^4.3|^5.0",
  11911. "symfony/http-foundation": "^4.1|^5.0",
  11912. "symfony/http-kernel": "^4.4",
  11913. "symfony/intl": "^4.3|^5.0",
  11914. "symfony/mime": "^4.4|^5.0",
  11915. "symfony/property-access": "^3.4|^4.0|^5.0",
  11916. "symfony/property-info": "^3.4|^4.0|^5.0",
  11917. "symfony/translation": "^4.2",
  11918. "symfony/yaml": "^3.4|^4.0|^5.0"
  11919. },
  11920. "suggest": {
  11921. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  11922. "doctrine/cache": "For using the default cached annotation reader.",
  11923. "egulias/email-validator": "Strict (RFC compliant) email validation",
  11924. "psr/cache-implementation": "For using the mapping cache.",
  11925. "symfony/config": "",
  11926. "symfony/expression-language": "For using the Expression validator",
  11927. "symfony/http-foundation": "",
  11928. "symfony/intl": "",
  11929. "symfony/property-access": "For accessing properties within comparison constraints",
  11930. "symfony/property-info": "To automatically add NotNull and Type constraints",
  11931. "symfony/translation": "For translating validation errors.",
  11932. "symfony/yaml": ""
  11933. },
  11934. "type": "library",
  11935. "autoload": {
  11936. "psr-4": {
  11937. "Symfony\\Component\\Validator\\": ""
  11938. },
  11939. "exclude-from-classmap": [
  11940. "/Tests/"
  11941. ]
  11942. },
  11943. "notification-url": "https://packagist.org/downloads/",
  11944. "license": [
  11945. "MIT"
  11946. ],
  11947. "authors": [
  11948. {
  11949. "name": "Fabien Potencier",
  11950. "email": "fabien@symfony.com"
  11951. },
  11952. {
  11953. "name": "Symfony Community",
  11954. "homepage": "https://symfony.com/contributors"
  11955. }
  11956. ],
  11957. "description": "Symfony Validator Component",
  11958. "homepage": "https://symfony.com",
  11959. "funding": [
  11960. {
  11961. "url": "https://symfony.com/sponsor",
  11962. "type": "custom"
  11963. },
  11964. {
  11965. "url": "https://github.com/fabpot",
  11966. "type": "github"
  11967. },
  11968. {
  11969. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11970. "type": "tidelift"
  11971. }
  11972. ],
  11973. "time": "2020-10-28T05:25:24+00:00"
  11974. },
  11975. {
  11976. "name": "symfony/var-dumper",
  11977. "version": "v5.1.8",
  11978. "source": {
  11979. "type": "git",
  11980. "url": "https://github.com/symfony/var-dumper.git",
  11981. "reference": "4e13f3fcefb1fcaaa5efb5403581406f4e840b9a"
  11982. },
  11983. "dist": {
  11984. "type": "zip",
  11985. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/4e13f3fcefb1fcaaa5efb5403581406f4e840b9a",
  11986. "reference": "4e13f3fcefb1fcaaa5efb5403581406f4e840b9a",
  11987. "shasum": ""
  11988. },
  11989. "require": {
  11990. "php": ">=7.2.5",
  11991. "symfony/polyfill-mbstring": "~1.0",
  11992. "symfony/polyfill-php80": "^1.15"
  11993. },
  11994. "conflict": {
  11995. "phpunit/phpunit": "<5.4.3",
  11996. "symfony/console": "<4.4"
  11997. },
  11998. "require-dev": {
  11999. "ext-iconv": "*",
  12000. "symfony/console": "^4.4|^5.0",
  12001. "symfony/process": "^4.4|^5.0",
  12002. "twig/twig": "^2.4|^3.0"
  12003. },
  12004. "suggest": {
  12005. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  12006. "ext-intl": "To show region name in time zone dump",
  12007. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  12008. },
  12009. "bin": [
  12010. "Resources/bin/var-dump-server"
  12011. ],
  12012. "type": "library",
  12013. "autoload": {
  12014. "files": [
  12015. "Resources/functions/dump.php"
  12016. ],
  12017. "psr-4": {
  12018. "Symfony\\Component\\VarDumper\\": ""
  12019. },
  12020. "exclude-from-classmap": [
  12021. "/Tests/"
  12022. ]
  12023. },
  12024. "notification-url": "https://packagist.org/downloads/",
  12025. "license": [
  12026. "MIT"
  12027. ],
  12028. "authors": [
  12029. {
  12030. "name": "Nicolas Grekas",
  12031. "email": "p@tchwork.com"
  12032. },
  12033. {
  12034. "name": "Symfony Community",
  12035. "homepage": "https://symfony.com/contributors"
  12036. }
  12037. ],
  12038. "description": "Symfony mechanism for exploring and dumping PHP variables",
  12039. "homepage": "https://symfony.com",
  12040. "keywords": [
  12041. "debug",
  12042. "dump"
  12043. ],
  12044. "funding": [
  12045. {
  12046. "url": "https://symfony.com/sponsor",
  12047. "type": "custom"
  12048. },
  12049. {
  12050. "url": "https://github.com/fabpot",
  12051. "type": "github"
  12052. },
  12053. {
  12054. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12055. "type": "tidelift"
  12056. }
  12057. ],
  12058. "time": "2020-10-27T10:11:13+00:00"
  12059. },
  12060. {
  12061. "name": "symfony/yaml",
  12062. "version": "v4.4.16",
  12063. "source": {
  12064. "type": "git",
  12065. "url": "https://github.com/symfony/yaml.git",
  12066. "reference": "543cb4dbd45ed803f08a9a65f27fb149b5dd20c2"
  12067. },
  12068. "dist": {
  12069. "type": "zip",
  12070. "url": "https://api.github.com/repos/symfony/yaml/zipball/543cb4dbd45ed803f08a9a65f27fb149b5dd20c2",
  12071. "reference": "543cb4dbd45ed803f08a9a65f27fb149b5dd20c2",
  12072. "shasum": ""
  12073. },
  12074. "require": {
  12075. "php": ">=7.1.3",
  12076. "symfony/polyfill-ctype": "~1.8"
  12077. },
  12078. "conflict": {
  12079. "symfony/console": "<3.4"
  12080. },
  12081. "require-dev": {
  12082. "symfony/console": "^3.4|^4.0|^5.0"
  12083. },
  12084. "suggest": {
  12085. "symfony/console": "For validating YAML files using the lint command"
  12086. },
  12087. "type": "library",
  12088. "autoload": {
  12089. "psr-4": {
  12090. "Symfony\\Component\\Yaml\\": ""
  12091. },
  12092. "exclude-from-classmap": [
  12093. "/Tests/"
  12094. ]
  12095. },
  12096. "notification-url": "https://packagist.org/downloads/",
  12097. "license": [
  12098. "MIT"
  12099. ],
  12100. "authors": [
  12101. {
  12102. "name": "Fabien Potencier",
  12103. "email": "fabien@symfony.com"
  12104. },
  12105. {
  12106. "name": "Symfony Community",
  12107. "homepage": "https://symfony.com/contributors"
  12108. }
  12109. ],
  12110. "description": "Symfony Yaml Component",
  12111. "homepage": "https://symfony.com",
  12112. "funding": [
  12113. {
  12114. "url": "https://symfony.com/sponsor",
  12115. "type": "custom"
  12116. },
  12117. {
  12118. "url": "https://github.com/fabpot",
  12119. "type": "github"
  12120. },
  12121. {
  12122. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12123. "type": "tidelift"
  12124. }
  12125. ],
  12126. "time": "2020-10-24T11:50:19+00:00"
  12127. },
  12128. {
  12129. "name": "twig/twig",
  12130. "version": "v2.14.1",
  12131. "source": {
  12132. "type": "git",
  12133. "url": "https://github.com/twigphp/Twig.git",
  12134. "reference": "5eb9ac5dfdd20c3f59495c22841adc5da980d312"
  12135. },
  12136. "dist": {
  12137. "type": "zip",
  12138. "url": "https://api.github.com/repos/twigphp/Twig/zipball/5eb9ac5dfdd20c3f59495c22841adc5da980d312",
  12139. "reference": "5eb9ac5dfdd20c3f59495c22841adc5da980d312",
  12140. "shasum": ""
  12141. },
  12142. "require": {
  12143. "php": ">=7.2.5",
  12144. "symfony/polyfill-ctype": "^1.8",
  12145. "symfony/polyfill-mbstring": "^1.3"
  12146. },
  12147. "require-dev": {
  12148. "psr/container": "^1.0",
  12149. "symfony/phpunit-bridge": "^4.4.9|^5.0.9"
  12150. },
  12151. "type": "library",
  12152. "extra": {
  12153. "branch-alias": {
  12154. "dev-master": "2.14-dev"
  12155. }
  12156. },
  12157. "autoload": {
  12158. "psr-0": {
  12159. "Twig_": "lib/"
  12160. },
  12161. "psr-4": {
  12162. "Twig\\": "src/"
  12163. }
  12164. },
  12165. "notification-url": "https://packagist.org/downloads/",
  12166. "license": [
  12167. "BSD-3-Clause"
  12168. ],
  12169. "authors": [
  12170. {
  12171. "name": "Fabien Potencier",
  12172. "email": "fabien@symfony.com",
  12173. "homepage": "http://fabien.potencier.org",
  12174. "role": "Lead Developer"
  12175. },
  12176. {
  12177. "name": "Twig Team",
  12178. "role": "Contributors"
  12179. },
  12180. {
  12181. "name": "Armin Ronacher",
  12182. "email": "armin.ronacher@active-4.com",
  12183. "role": "Project Founder"
  12184. }
  12185. ],
  12186. "description": "Twig, the flexible, fast, and secure template language for PHP",
  12187. "homepage": "https://twig.symfony.com",
  12188. "keywords": [
  12189. "templating"
  12190. ],
  12191. "funding": [
  12192. {
  12193. "url": "https://github.com/fabpot",
  12194. "type": "github"
  12195. },
  12196. {
  12197. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  12198. "type": "tidelift"
  12199. }
  12200. ],
  12201. "time": "2020-10-27T19:25:29+00:00"
  12202. },
  12203. {
  12204. "name": "typo3/phar-stream-wrapper",
  12205. "version": "v3.1.6",
  12206. "source": {
  12207. "type": "git",
  12208. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  12209. "reference": "60131cb573a1e478cfecd34e4ea38e3b31505f75"
  12210. },
  12211. "dist": {
  12212. "type": "zip",
  12213. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/60131cb573a1e478cfecd34e4ea38e3b31505f75",
  12214. "reference": "60131cb573a1e478cfecd34e4ea38e3b31505f75",
  12215. "shasum": ""
  12216. },
  12217. "require": {
  12218. "ext-json": "*",
  12219. "php": "^7.0 || ^8.0"
  12220. },
  12221. "require-dev": {
  12222. "ext-xdebug": "*",
  12223. "phpspec/prophecy": "^1.10",
  12224. "symfony/phpunit-bridge": "^5.1"
  12225. },
  12226. "suggest": {
  12227. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  12228. },
  12229. "type": "library",
  12230. "extra": {
  12231. "branch-alias": {
  12232. "dev-master": "v3.x-dev"
  12233. }
  12234. },
  12235. "autoload": {
  12236. "psr-4": {
  12237. "TYPO3\\PharStreamWrapper\\": "src/"
  12238. }
  12239. },
  12240. "notification-url": "https://packagist.org/downloads/",
  12241. "license": [
  12242. "MIT"
  12243. ],
  12244. "description": "Interceptors for PHP's native phar:// stream handling",
  12245. "homepage": "https://typo3.org/",
  12246. "keywords": [
  12247. "phar",
  12248. "php",
  12249. "security",
  12250. "stream-wrapper"
  12251. ],
  12252. "time": "2020-11-07T09:06:16+00:00"
  12253. },
  12254. {
  12255. "name": "webflo/drupal-finder",
  12256. "version": "1.2.2",
  12257. "source": {
  12258. "type": "git",
  12259. "url": "https://github.com/webflo/drupal-finder.git",
  12260. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  12261. },
  12262. "dist": {
  12263. "type": "zip",
  12264. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  12265. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  12266. "shasum": ""
  12267. },
  12268. "require": {
  12269. "ext-json": "*"
  12270. },
  12271. "require-dev": {
  12272. "mikey179/vfsstream": "^1.6",
  12273. "phpunit/phpunit": "^4.8"
  12274. },
  12275. "type": "library",
  12276. "autoload": {
  12277. "classmap": [
  12278. "src/DrupalFinder.php"
  12279. ]
  12280. },
  12281. "notification-url": "https://packagist.org/downloads/",
  12282. "license": [
  12283. "GPL-2.0-or-later"
  12284. ],
  12285. "authors": [
  12286. {
  12287. "name": "Florian Weber",
  12288. "email": "florian@webflo.org"
  12289. }
  12290. ],
  12291. "description": "Helper class to locate a Drupal installation from a given path.",
  12292. "time": "2020-10-27T09:42:17+00:00"
  12293. },
  12294. {
  12295. "name": "webmozart/assert",
  12296. "version": "1.9.1",
  12297. "source": {
  12298. "type": "git",
  12299. "url": "https://github.com/webmozart/assert.git",
  12300. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  12301. },
  12302. "dist": {
  12303. "type": "zip",
  12304. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  12305. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  12306. "shasum": ""
  12307. },
  12308. "require": {
  12309. "php": "^5.3.3 || ^7.0 || ^8.0",
  12310. "symfony/polyfill-ctype": "^1.8"
  12311. },
  12312. "conflict": {
  12313. "phpstan/phpstan": "<0.12.20",
  12314. "vimeo/psalm": "<3.9.1"
  12315. },
  12316. "require-dev": {
  12317. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  12318. },
  12319. "type": "library",
  12320. "autoload": {
  12321. "psr-4": {
  12322. "Webmozart\\Assert\\": "src/"
  12323. }
  12324. },
  12325. "notification-url": "https://packagist.org/downloads/",
  12326. "license": [
  12327. "MIT"
  12328. ],
  12329. "authors": [
  12330. {
  12331. "name": "Bernhard Schussek",
  12332. "email": "bschussek@gmail.com"
  12333. }
  12334. ],
  12335. "description": "Assertions to validate method input/output with nice error messages.",
  12336. "keywords": [
  12337. "assert",
  12338. "check",
  12339. "validate"
  12340. ],
  12341. "time": "2020-07-08T17:02:28+00:00"
  12342. },
  12343. {
  12344. "name": "webmozart/path-util",
  12345. "version": "2.3.0",
  12346. "source": {
  12347. "type": "git",
  12348. "url": "https://github.com/webmozart/path-util.git",
  12349. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  12350. },
  12351. "dist": {
  12352. "type": "zip",
  12353. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  12354. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  12355. "shasum": ""
  12356. },
  12357. "require": {
  12358. "php": ">=5.3.3",
  12359. "webmozart/assert": "~1.0"
  12360. },
  12361. "require-dev": {
  12362. "phpunit/phpunit": "^4.6",
  12363. "sebastian/version": "^1.0.1"
  12364. },
  12365. "type": "library",
  12366. "extra": {
  12367. "branch-alias": {
  12368. "dev-master": "2.3-dev"
  12369. }
  12370. },
  12371. "autoload": {
  12372. "psr-4": {
  12373. "Webmozart\\PathUtil\\": "src/"
  12374. }
  12375. },
  12376. "notification-url": "https://packagist.org/downloads/",
  12377. "license": [
  12378. "MIT"
  12379. ],
  12380. "authors": [
  12381. {
  12382. "name": "Bernhard Schussek",
  12383. "email": "bschussek@gmail.com"
  12384. }
  12385. ],
  12386. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  12387. "time": "2015-12-17T08:42:14+00:00"
  12388. },
  12389. {
  12390. "name": "wikimedia/composer-merge-plugin",
  12391. "version": "v1.4.1",
  12392. "source": {
  12393. "type": "git",
  12394. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  12395. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100"
  12396. },
  12397. "dist": {
  12398. "type": "zip",
  12399. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  12400. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  12401. "shasum": ""
  12402. },
  12403. "require": {
  12404. "composer-plugin-api": "^1.0",
  12405. "php": ">=5.3.2"
  12406. },
  12407. "require-dev": {
  12408. "composer/composer": "~1.0.0",
  12409. "jakub-onderka/php-parallel-lint": "~0.8",
  12410. "phpunit/phpunit": "~4.8|~5.0",
  12411. "squizlabs/php_codesniffer": "~2.1.0"
  12412. },
  12413. "type": "composer-plugin",
  12414. "extra": {
  12415. "branch-alias": {
  12416. "dev-master": "1.3.x-dev"
  12417. },
  12418. "class": "Wikimedia\\Composer\\MergePlugin"
  12419. },
  12420. "autoload": {
  12421. "psr-4": {
  12422. "Wikimedia\\Composer\\": "src/"
  12423. }
  12424. },
  12425. "notification-url": "https://packagist.org/downloads/",
  12426. "license": [
  12427. "MIT"
  12428. ],
  12429. "authors": [
  12430. {
  12431. "name": "Bryan Davis",
  12432. "email": "bd808@wikimedia.org"
  12433. }
  12434. ],
  12435. "description": "Composer plugin to merge multiple composer.json files",
  12436. "time": "2017-04-25T02:31:25+00:00"
  12437. }
  12438. ],
  12439. "packages-dev": [],
  12440. "aliases": [],
  12441. "minimum-stability": "stable",
  12442. "stability-flags": {
  12443. "drupal/autocomplete_deluxe": 5,
  12444. "drupal/better_exposed_filters": 10,
  12445. "drupal/bulkdelete": 20,
  12446. "drupal/cshs": 20,
  12447. "drupal/config_ignore": 5,
  12448. "drupal/config_devel": 20,
  12449. "drupal/context": 10,
  12450. "drupal/date_range_formatter": 20,
  12451. "drupal/domain": 20,
  12452. "drupal/domain_alias": 20,
  12453. "drupal/domain_config": 20,
  12454. "drupal/domain_site_settings": 20,
  12455. "drupal/email_registration": 5,
  12456. "drupal/entity_browser_enhanced": 5,
  12457. "drupal/entity_clone": 15,
  12458. "drupal/filefield_sources": 20,
  12459. "drupal/filter_perms": 20,
  12460. "drupal/inline_entity_form": 5,
  12461. "drupal/linkit": 10,
  12462. "drupal/login_destination": 20,
  12463. "drupal/maillog": 20,
  12464. "drupal/maxlength": 10,
  12465. "drupal/menu_position": 20,
  12466. "drupal/path_alias_xt": 20,
  12467. "drupal/pathologic": 15,
  12468. "drupal/profile": 5,
  12469. "drupal/smtp": 10,
  12470. "drupal/synonyms": 20,
  12471. "drupal/translation_views": 15,
  12472. "drupal/ultimate_cron": 15,
  12473. "drupal/workflow": 20
  12474. },
  12475. "prefer-stable": true,
  12476. "prefer-lowest": false,
  12477. "platform": [],
  12478. "platform-dev": [],
  12479. "plugin-api-version": "1.1.0"
  12480. }