composer.lock 490 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "505269d829bb63613a29f58e327aca4a",
  8. "packages": [
  9. {
  10. "name": "alchemy/zippy",
  11. "version": "0.4.9",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/alchemy-fr/Zippy.git",
  15. "reference": "59fbeefb9a249122867ef25e53addfcce31850d7"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/alchemy-fr/Zippy/zipball/59fbeefb9a249122867ef25e53addfcce31850d7",
  20. "reference": "59fbeefb9a249122867ef25e53addfcce31850d7",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "doctrine/collections": "~1.0",
  25. "php": ">=5.5",
  26. "symfony/filesystem": "^2.0.5 || ^3.0 || ^4.0",
  27. "symfony/polyfill-mbstring": "^1.3",
  28. "symfony/process": "^2.1 || ^3.0 || ^4.0"
  29. },
  30. "require-dev": {
  31. "ext-zip": "*",
  32. "guzzle/guzzle": "~3.0",
  33. "guzzlehttp/guzzle": "^6.0",
  34. "phpunit/phpunit": "^4.0 || ^5.0",
  35. "symfony/finder": "^2.0.5 || ^3.0 || ^4.0"
  36. },
  37. "suggest": {
  38. "ext-zip": "To use the ZipExtensionAdapter",
  39. "guzzle/guzzle": "To use the GuzzleTeleporter with Guzzle 3",
  40. "guzzlehttp/guzzle": "To use the GuzzleTeleporter with Guzzle 6"
  41. },
  42. "type": "library",
  43. "extra": {
  44. "branch-alias": {
  45. "dev-master": "0.4.x-dev"
  46. }
  47. },
  48. "autoload": {
  49. "psr-4": {
  50. "Alchemy\\Zippy\\": "src/"
  51. }
  52. },
  53. "notification-url": "https://packagist.org/downloads/",
  54. "license": [
  55. "MIT"
  56. ],
  57. "authors": [
  58. {
  59. "name": "Alchemy",
  60. "email": "dev.team@alchemy.fr",
  61. "homepage": "http://www.alchemy.fr/"
  62. }
  63. ],
  64. "description": "Zippy, the archive manager companion",
  65. "keywords": [
  66. "bzip",
  67. "compression",
  68. "tar",
  69. "zip"
  70. ],
  71. "time": "2018-02-22T13:58:36+00:00"
  72. },
  73. {
  74. "name": "asm89/stack-cors",
  75. "version": "1.3.0",
  76. "source": {
  77. "type": "git",
  78. "url": "https://github.com/asm89/stack-cors.git",
  79. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08"
  80. },
  81. "dist": {
  82. "type": "zip",
  83. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/b9c31def6a83f84b4d4a40d35996d375755f0e08",
  84. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08",
  85. "shasum": ""
  86. },
  87. "require": {
  88. "php": ">=5.5.9",
  89. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  90. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  91. },
  92. "require-dev": {
  93. "phpunit/phpunit": "^5.0 || ^4.8.10",
  94. "squizlabs/php_codesniffer": "^2.3"
  95. },
  96. "type": "library",
  97. "extra": {
  98. "branch-alias": {
  99. "dev-master": "1.2-dev"
  100. }
  101. },
  102. "autoload": {
  103. "psr-4": {
  104. "Asm89\\Stack\\": "src/Asm89/Stack/"
  105. }
  106. },
  107. "notification-url": "https://packagist.org/downloads/",
  108. "license": [
  109. "MIT"
  110. ],
  111. "authors": [
  112. {
  113. "name": "Alexander",
  114. "email": "iam.asm89@gmail.com"
  115. }
  116. ],
  117. "description": "Cross-origin resource sharing library and stack middleware",
  118. "homepage": "https://github.com/asm89/stack-cors",
  119. "keywords": [
  120. "cors",
  121. "stack"
  122. ],
  123. "support": {
  124. "issues": "https://github.com/asm89/stack-cors/issues",
  125. "source": "https://github.com/asm89/stack-cors/tree/1.3.0"
  126. },
  127. "time": "2019-12-24T22:41:47+00:00"
  128. },
  129. {
  130. "name": "chi-teck/drupal-code-generator",
  131. "version": "1.33.1",
  132. "source": {
  133. "type": "git",
  134. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  135. "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388"
  136. },
  137. "dist": {
  138. "type": "zip",
  139. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/5f814e980b6f9cf1ca8c74cc9385c3d81090d388",
  140. "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388",
  141. "shasum": ""
  142. },
  143. "require": {
  144. "ext-json": "*",
  145. "php": ">=5.5.9",
  146. "symfony/console": "^3.4 || ^4.0",
  147. "symfony/filesystem": "^2.7 || ^3.4 || ^4.0",
  148. "twig/twig": "^1.41 || ^2.12"
  149. },
  150. "conflict": {
  151. "drush/drush": "< 10.3.2"
  152. },
  153. "bin": [
  154. "bin/dcg"
  155. ],
  156. "type": "library",
  157. "extra": {
  158. "branch-alias": {
  159. "dev-master": "1.x-dev"
  160. }
  161. },
  162. "autoload": {
  163. "files": [
  164. "src/bootstrap.php"
  165. ],
  166. "psr-4": {
  167. "DrupalCodeGenerator\\": "src"
  168. }
  169. },
  170. "notification-url": "https://packagist.org/downloads/",
  171. "license": [
  172. "GPL-2.0-or-later"
  173. ],
  174. "description": "Drupal code generator",
  175. "time": "2020-12-05T05:59:11+00:00"
  176. },
  177. {
  178. "name": "commerceguys/addressing",
  179. "version": "v1.1.0",
  180. "source": {
  181. "type": "git",
  182. "url": "https://github.com/commerceguys/addressing.git",
  183. "reference": "2450ca97631042faf786855db206a2e48fb7dbb7"
  184. },
  185. "dist": {
  186. "type": "zip",
  187. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/2450ca97631042faf786855db206a2e48fb7dbb7",
  188. "reference": "2450ca97631042faf786855db206a2e48fb7dbb7",
  189. "shasum": ""
  190. },
  191. "require": {
  192. "doctrine/collections": "~1.0",
  193. "php": ">=7.0.8"
  194. },
  195. "require-dev": {
  196. "mikey179/vfsstream": "1.*",
  197. "phpunit/phpunit": "^6.0",
  198. "squizlabs/php_codesniffer": "2.*",
  199. "symfony/validator": "^3.4"
  200. },
  201. "suggest": {
  202. "symfony/validator": "to validate addresses"
  203. },
  204. "type": "library",
  205. "extra": {
  206. "branch-alias": {
  207. "dev-master": "1.x-dev"
  208. }
  209. },
  210. "autoload": {
  211. "psr-4": {
  212. "CommerceGuys\\Addressing\\": "src"
  213. }
  214. },
  215. "notification-url": "https://packagist.org/downloads/",
  216. "license": [
  217. "MIT"
  218. ],
  219. "authors": [
  220. {
  221. "name": "Bojan Zivanovic"
  222. },
  223. {
  224. "name": "Damien Tournoud"
  225. }
  226. ],
  227. "description": "Addressing library powered by CLDR and Google's address data.",
  228. "keywords": [
  229. "address",
  230. "internationalization",
  231. "localization",
  232. "postal"
  233. ],
  234. "time": "2020-11-29T18:48:07+00:00"
  235. },
  236. {
  237. "name": "components/highlightjs",
  238. "version": "9.7.0",
  239. "dist": {
  240. "type": "zip",
  241. "url": "https://github.com/components/highlightjs/archive/9.7.0.zip"
  242. },
  243. "type": "drupal-library"
  244. },
  245. {
  246. "name": "composer/installers",
  247. "version": "v1.9.0",
  248. "source": {
  249. "type": "git",
  250. "url": "https://github.com/composer/installers.git",
  251. "reference": "b93bcf0fa1fccb0b7d176b0967d969691cd74cca"
  252. },
  253. "dist": {
  254. "type": "zip",
  255. "url": "https://api.github.com/repos/composer/installers/zipball/b93bcf0fa1fccb0b7d176b0967d969691cd74cca",
  256. "reference": "b93bcf0fa1fccb0b7d176b0967d969691cd74cca",
  257. "shasum": ""
  258. },
  259. "require": {
  260. "composer-plugin-api": "^1.0 || ^2.0"
  261. },
  262. "replace": {
  263. "roundcube/plugin-installer": "*",
  264. "shama/baton": "*"
  265. },
  266. "require-dev": {
  267. "composer/composer": "1.6.* || 2.0.*@dev",
  268. "composer/semver": "1.0.* || 2.0.*@dev",
  269. "phpunit/phpunit": "^4.8.36",
  270. "sebastian/comparator": "^1.2.4",
  271. "symfony/process": "^2.3"
  272. },
  273. "type": "composer-plugin",
  274. "extra": {
  275. "class": "Composer\\Installers\\Plugin",
  276. "branch-alias": {
  277. "dev-master": "1.0-dev"
  278. }
  279. },
  280. "autoload": {
  281. "psr-4": {
  282. "Composer\\Installers\\": "src/Composer/Installers"
  283. }
  284. },
  285. "notification-url": "https://packagist.org/downloads/",
  286. "license": [
  287. "MIT"
  288. ],
  289. "authors": [
  290. {
  291. "name": "Kyle Robinson Young",
  292. "email": "kyle@dontkry.com",
  293. "homepage": "https://github.com/shama"
  294. }
  295. ],
  296. "description": "A multi-framework Composer library installer",
  297. "homepage": "https://composer.github.io/installers/",
  298. "keywords": [
  299. "Craft",
  300. "Dolibarr",
  301. "Eliasis",
  302. "Hurad",
  303. "ImageCMS",
  304. "Kanboard",
  305. "Lan Management System",
  306. "MODX Evo",
  307. "MantisBT",
  308. "Mautic",
  309. "Maya",
  310. "OXID",
  311. "Plentymarkets",
  312. "Porto",
  313. "RadPHP",
  314. "SMF",
  315. "Thelia",
  316. "Whmcs",
  317. "WolfCMS",
  318. "agl",
  319. "aimeos",
  320. "annotatecms",
  321. "attogram",
  322. "bitrix",
  323. "cakephp",
  324. "chef",
  325. "cockpit",
  326. "codeigniter",
  327. "concrete5",
  328. "croogo",
  329. "dokuwiki",
  330. "drupal",
  331. "eZ Platform",
  332. "elgg",
  333. "expressionengine",
  334. "fuelphp",
  335. "grav",
  336. "installer",
  337. "itop",
  338. "joomla",
  339. "known",
  340. "kohana",
  341. "laravel",
  342. "lavalite",
  343. "lithium",
  344. "magento",
  345. "majima",
  346. "mako",
  347. "mediawiki",
  348. "modulework",
  349. "modx",
  350. "moodle",
  351. "osclass",
  352. "phpbb",
  353. "piwik",
  354. "ppi",
  355. "puppet",
  356. "pxcms",
  357. "reindex",
  358. "roundcube",
  359. "shopware",
  360. "silverstripe",
  361. "sydes",
  362. "sylius",
  363. "symfony",
  364. "typo3",
  365. "wordpress",
  366. "yawik",
  367. "zend",
  368. "zikula"
  369. ],
  370. "funding": [
  371. {
  372. "url": "https://packagist.com",
  373. "type": "custom"
  374. },
  375. {
  376. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  377. "type": "tidelift"
  378. }
  379. ],
  380. "time": "2020-04-07T06:57:05+00:00"
  381. },
  382. {
  383. "name": "composer/semver",
  384. "version": "3.2.2",
  385. "source": {
  386. "type": "git",
  387. "url": "https://github.com/composer/semver.git",
  388. "reference": "4089fddb67bcf6bf860d91b979e95be303835002"
  389. },
  390. "dist": {
  391. "type": "zip",
  392. "url": "https://api.github.com/repos/composer/semver/zipball/4089fddb67bcf6bf860d91b979e95be303835002",
  393. "reference": "4089fddb67bcf6bf860d91b979e95be303835002",
  394. "shasum": ""
  395. },
  396. "require": {
  397. "php": "^5.3.2 || ^7.0 || ^8.0"
  398. },
  399. "require-dev": {
  400. "phpstan/phpstan": "^0.12.19",
  401. "symfony/phpunit-bridge": "^4.2 || ^5"
  402. },
  403. "type": "library",
  404. "extra": {
  405. "branch-alias": {
  406. "dev-main": "3.x-dev"
  407. }
  408. },
  409. "autoload": {
  410. "psr-4": {
  411. "Composer\\Semver\\": "src"
  412. }
  413. },
  414. "notification-url": "https://packagist.org/downloads/",
  415. "license": [
  416. "MIT"
  417. ],
  418. "authors": [
  419. {
  420. "name": "Nils Adermann",
  421. "email": "naderman@naderman.de",
  422. "homepage": "http://www.naderman.de"
  423. },
  424. {
  425. "name": "Jordi Boggiano",
  426. "email": "j.boggiano@seld.be",
  427. "homepage": "http://seld.be"
  428. },
  429. {
  430. "name": "Rob Bast",
  431. "email": "rob.bast@gmail.com",
  432. "homepage": "http://robbast.nl"
  433. }
  434. ],
  435. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  436. "keywords": [
  437. "semantic",
  438. "semver",
  439. "validation",
  440. "versioning"
  441. ],
  442. "support": {
  443. "irc": "irc://irc.freenode.org/composer",
  444. "issues": "https://github.com/composer/semver/issues",
  445. "source": "https://github.com/composer/semver/tree/3.2.2"
  446. },
  447. "funding": [
  448. {
  449. "url": "https://packagist.com",
  450. "type": "custom"
  451. },
  452. {
  453. "url": "https://github.com/composer",
  454. "type": "github"
  455. },
  456. {
  457. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  458. "type": "tidelift"
  459. }
  460. ],
  461. "time": "2020-10-14T08:51:15+00:00"
  462. },
  463. {
  464. "name": "consolidation/annotated-command",
  465. "version": "4.2.4",
  466. "source": {
  467. "type": "git",
  468. "url": "https://github.com/consolidation/annotated-command.git",
  469. "reference": "ec297e05cb86557671c2d6cbb1bebba6c7ae2c60"
  470. },
  471. "dist": {
  472. "type": "zip",
  473. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/ec297e05cb86557671c2d6cbb1bebba6c7ae2c60",
  474. "reference": "ec297e05cb86557671c2d6cbb1bebba6c7ae2c60",
  475. "shasum": ""
  476. },
  477. "require": {
  478. "consolidation/output-formatters": "^4.1.1",
  479. "php": ">=7.1.3",
  480. "psr/log": "^1|^2",
  481. "symfony/console": "^4.4.8|~5.1.0",
  482. "symfony/event-dispatcher": "^4.4.8|^5",
  483. "symfony/finder": "^4.4.8|^5"
  484. },
  485. "require-dev": {
  486. "phpunit/phpunit": ">=7.5.20",
  487. "squizlabs/php_codesniffer": "^3",
  488. "yoast/phpunit-polyfills": "^0.2.0"
  489. },
  490. "type": "library",
  491. "extra": {
  492. "branch-alias": {
  493. "dev-main": "4.x-dev"
  494. }
  495. },
  496. "autoload": {
  497. "psr-4": {
  498. "Consolidation\\AnnotatedCommand\\": "src"
  499. }
  500. },
  501. "notification-url": "https://packagist.org/downloads/",
  502. "license": [
  503. "MIT"
  504. ],
  505. "authors": [
  506. {
  507. "name": "Greg Anderson",
  508. "email": "greg.1.anderson@greenknowe.org"
  509. }
  510. ],
  511. "description": "Initialize Symfony Console commands from annotated command class methods.",
  512. "time": "2020-12-10T16:56:39+00:00"
  513. },
  514. {
  515. "name": "consolidation/config",
  516. "version": "1.2.1",
  517. "source": {
  518. "type": "git",
  519. "url": "https://github.com/consolidation/config.git",
  520. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  521. },
  522. "dist": {
  523. "type": "zip",
  524. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  525. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  526. "shasum": ""
  527. },
  528. "require": {
  529. "dflydev/dot-access-data": "^1.1.0",
  530. "grasmash/expander": "^1",
  531. "php": ">=5.4.0"
  532. },
  533. "require-dev": {
  534. "g1a/composer-test-scenarios": "^3",
  535. "php-coveralls/php-coveralls": "^1",
  536. "phpunit/phpunit": "^5",
  537. "squizlabs/php_codesniffer": "2.*",
  538. "symfony/console": "^2.5|^3|^4",
  539. "symfony/yaml": "^2.8.11|^3|^4"
  540. },
  541. "suggest": {
  542. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  543. },
  544. "type": "library",
  545. "extra": {
  546. "scenarios": {
  547. "symfony4": {
  548. "require-dev": {
  549. "symfony/console": "^4.0"
  550. },
  551. "config": {
  552. "platform": {
  553. "php": "7.1.3"
  554. }
  555. }
  556. },
  557. "symfony2": {
  558. "require-dev": {
  559. "symfony/console": "^2.8",
  560. "symfony/event-dispatcher": "^2.8",
  561. "phpunit/phpunit": "^4.8.36"
  562. },
  563. "remove": [
  564. "php-coveralls/php-coveralls"
  565. ],
  566. "config": {
  567. "platform": {
  568. "php": "5.4.8"
  569. }
  570. }
  571. }
  572. },
  573. "branch-alias": {
  574. "dev-master": "1.x-dev"
  575. }
  576. },
  577. "autoload": {
  578. "psr-4": {
  579. "Consolidation\\Config\\": "src"
  580. }
  581. },
  582. "notification-url": "https://packagist.org/downloads/",
  583. "license": [
  584. "MIT"
  585. ],
  586. "authors": [
  587. {
  588. "name": "Greg Anderson",
  589. "email": "greg.1.anderson@greenknowe.org"
  590. }
  591. ],
  592. "description": "Provide configuration services for a commandline tool.",
  593. "time": "2019-03-03T19:37:04+00:00"
  594. },
  595. {
  596. "name": "consolidation/filter-via-dot-access-data",
  597. "version": "1.0.0",
  598. "source": {
  599. "type": "git",
  600. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  601. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  602. },
  603. "dist": {
  604. "type": "zip",
  605. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  606. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  607. "shasum": ""
  608. },
  609. "require": {
  610. "dflydev/dot-access-data": "^1.1.0",
  611. "php": ">=5.5.0"
  612. },
  613. "require-dev": {
  614. "consolidation/robo": "^1.2.3",
  615. "g1a/composer-test-scenarios": "^3",
  616. "knplabs/github-api": "^2.7",
  617. "php-coveralls/php-coveralls": "^1",
  618. "php-http/guzzle6-adapter": "^1.1",
  619. "phpunit/phpunit": "^5",
  620. "squizlabs/php_codesniffer": "^2.8",
  621. "symfony/console": "^2.8|^3|^4"
  622. },
  623. "type": "library",
  624. "extra": {
  625. "scenarios": {
  626. "phpunit5": {
  627. "require-dev": {
  628. "phpunit/phpunit": "^5.7.27"
  629. },
  630. "remove": [
  631. "php-coveralls/php-coveralls"
  632. ],
  633. "config": {
  634. "platform": {
  635. "php": "5.6.33"
  636. }
  637. }
  638. }
  639. },
  640. "branch-alias": {
  641. "dev-master": "1.x-dev"
  642. }
  643. },
  644. "autoload": {
  645. "psr-4": {
  646. "Consolidation\\Filter\\": "src"
  647. }
  648. },
  649. "notification-url": "https://packagist.org/downloads/",
  650. "license": [
  651. "MIT"
  652. ],
  653. "authors": [
  654. {
  655. "name": "Greg Anderson",
  656. "email": "greg.1.anderson@greenknowe.org"
  657. }
  658. ],
  659. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  660. "time": "2019-01-18T06:05:07+00:00"
  661. },
  662. {
  663. "name": "consolidation/log",
  664. "version": "2.0.2",
  665. "source": {
  666. "type": "git",
  667. "url": "https://github.com/consolidation/log.git",
  668. "reference": "82a2aaaa621a7b976e50a745a8d249d5085ee2b1"
  669. },
  670. "dist": {
  671. "type": "zip",
  672. "url": "https://api.github.com/repos/consolidation/log/zipball/82a2aaaa621a7b976e50a745a8d249d5085ee2b1",
  673. "reference": "82a2aaaa621a7b976e50a745a8d249d5085ee2b1",
  674. "shasum": ""
  675. },
  676. "require": {
  677. "php": ">=7.1.3",
  678. "psr/log": "^1.0",
  679. "symfony/console": "^4|^5"
  680. },
  681. "require-dev": {
  682. "phpunit/phpunit": ">=7.5.20",
  683. "squizlabs/php_codesniffer": "^3",
  684. "yoast/phpunit-polyfills": "^0.2.0"
  685. },
  686. "type": "library",
  687. "extra": {
  688. "branch-alias": {
  689. "dev-main": "2.x-dev"
  690. }
  691. },
  692. "autoload": {
  693. "psr-4": {
  694. "Consolidation\\Log\\": "src"
  695. }
  696. },
  697. "notification-url": "https://packagist.org/downloads/",
  698. "license": [
  699. "MIT"
  700. ],
  701. "authors": [
  702. {
  703. "name": "Greg Anderson",
  704. "email": "greg.1.anderson@greenknowe.org"
  705. }
  706. ],
  707. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  708. "time": "2020-12-10T16:26:23+00:00"
  709. },
  710. {
  711. "name": "consolidation/output-formatters",
  712. "version": "4.1.2",
  713. "source": {
  714. "type": "git",
  715. "url": "https://github.com/consolidation/output-formatters.git",
  716. "reference": "5821e6ae076bf690058a4de6c94dce97398a69c9"
  717. },
  718. "dist": {
  719. "type": "zip",
  720. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/5821e6ae076bf690058a4de6c94dce97398a69c9",
  721. "reference": "5821e6ae076bf690058a4de6c94dce97398a69c9",
  722. "shasum": ""
  723. },
  724. "require": {
  725. "dflydev/dot-access-data": "^1.1.0",
  726. "php": ">=7.1.3",
  727. "symfony/console": "^4|^5",
  728. "symfony/finder": "^4|^5"
  729. },
  730. "require-dev": {
  731. "php-coveralls/php-coveralls": "^2.4.2",
  732. "phpunit/phpunit": ">=7",
  733. "squizlabs/php_codesniffer": "^3",
  734. "symfony/var-dumper": "^4",
  735. "symfony/yaml": "^4",
  736. "yoast/phpunit-polyfills": "^0.2.0"
  737. },
  738. "suggest": {
  739. "symfony/var-dumper": "For using the var_dump formatter"
  740. },
  741. "type": "library",
  742. "extra": {
  743. "branch-alias": {
  744. "dev-main": "4.x-dev"
  745. }
  746. },
  747. "autoload": {
  748. "psr-4": {
  749. "Consolidation\\OutputFormatters\\": "src"
  750. }
  751. },
  752. "notification-url": "https://packagist.org/downloads/",
  753. "license": [
  754. "MIT"
  755. ],
  756. "authors": [
  757. {
  758. "name": "Greg Anderson",
  759. "email": "greg.1.anderson@greenknowe.org"
  760. }
  761. ],
  762. "description": "Format text by applying transformations provided by plug-in formatters.",
  763. "time": "2020-12-12T19:04:59+00:00"
  764. },
  765. {
  766. "name": "consolidation/robo",
  767. "version": "2.2.1",
  768. "source": {
  769. "type": "git",
  770. "url": "https://github.com/consolidation/Robo.git",
  771. "reference": "1a7c652371615fd72ff05380ffe6ce263eb31eb3"
  772. },
  773. "dist": {
  774. "type": "zip",
  775. "url": "https://api.github.com/repos/consolidation/Robo/zipball/1a7c652371615fd72ff05380ffe6ce263eb31eb3",
  776. "reference": "1a7c652371615fd72ff05380ffe6ce263eb31eb3",
  777. "shasum": ""
  778. },
  779. "require": {
  780. "consolidation/annotated-command": "^4.2.1",
  781. "consolidation/config": "^1.2.1|^2",
  782. "consolidation/log": "^1.1.1|^2.0.1",
  783. "consolidation/output-formatters": "^4.1.1",
  784. "consolidation/self-update": "^1.2",
  785. "league/container": "^2.4.1",
  786. "php": ">=7.1.3",
  787. "symfony/console": "^4.4.11|^5",
  788. "symfony/event-dispatcher": "^4.4.11|^5",
  789. "symfony/filesystem": "^4.4.11|^5",
  790. "symfony/finder": "^4.4.11|^5",
  791. "symfony/process": "^4.4.11|^5"
  792. },
  793. "conflict": {
  794. "codegyre/robo": "*"
  795. },
  796. "require-dev": {
  797. "g1a/composer-test-scenarios": "^3",
  798. "natxet/cssmin": "3.0.4",
  799. "patchwork/jsqueeze": "^2",
  800. "pear/archive_tar": "^1.4.4",
  801. "php-coveralls/php-coveralls": "^2.2",
  802. "phpdocumentor/reflection-docblock": "^4.3.2",
  803. "phpunit/phpunit": "^6.5.14",
  804. "squizlabs/php_codesniffer": "^3"
  805. },
  806. "suggest": {
  807. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  808. "natxet/cssmin": "For minifying CSS files in taskMinify",
  809. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  810. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  811. },
  812. "bin": [
  813. "robo"
  814. ],
  815. "type": "library",
  816. "extra": {
  817. "scenarios": {
  818. "symfony4": {
  819. "require": {
  820. "symfony/console": "^4.4.11",
  821. "symfony/event-dispatcher": "^4.4.11",
  822. "symfony/filesystem": "^4.4.11",
  823. "symfony/finder": "^4.4.11",
  824. "symfony/process": "^4.4.11",
  825. "phpunit/phpunit": "^6",
  826. "nikic/php-parser": "^2"
  827. },
  828. "remove": [
  829. "codeception/phpunit-wrapper"
  830. ],
  831. "config": {
  832. "platform": {
  833. "php": "7.1.3"
  834. }
  835. }
  836. }
  837. },
  838. "branch-alias": {
  839. "dev-master": "2.x-dev",
  840. "dev-main": "2.x-dev"
  841. }
  842. },
  843. "autoload": {
  844. "psr-4": {
  845. "Robo\\": "src"
  846. }
  847. },
  848. "notification-url": "https://packagist.org/downloads/",
  849. "license": [
  850. "MIT"
  851. ],
  852. "authors": [
  853. {
  854. "name": "Davert",
  855. "email": "davert.php@resend.cc"
  856. }
  857. ],
  858. "description": "Modern task runner",
  859. "time": "2020-09-08T16:23:18+00:00"
  860. },
  861. {
  862. "name": "consolidation/self-update",
  863. "version": "1.2.0",
  864. "source": {
  865. "type": "git",
  866. "url": "https://github.com/consolidation/self-update.git",
  867. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4"
  868. },
  869. "dist": {
  870. "type": "zip",
  871. "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4",
  872. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4",
  873. "shasum": ""
  874. },
  875. "require": {
  876. "php": ">=5.5.0",
  877. "symfony/console": "^2.8|^3|^4|^5",
  878. "symfony/filesystem": "^2.5|^3|^4|^5"
  879. },
  880. "bin": [
  881. "scripts/release"
  882. ],
  883. "type": "library",
  884. "extra": {
  885. "branch-alias": {
  886. "dev-master": "1.x-dev"
  887. }
  888. },
  889. "autoload": {
  890. "psr-4": {
  891. "SelfUpdate\\": "src"
  892. }
  893. },
  894. "notification-url": "https://packagist.org/downloads/",
  895. "license": [
  896. "MIT"
  897. ],
  898. "authors": [
  899. {
  900. "name": "Alexander Menk",
  901. "email": "menk@mestrona.net"
  902. },
  903. {
  904. "name": "Greg Anderson",
  905. "email": "greg.1.anderson@greenknowe.org"
  906. }
  907. ],
  908. "description": "Provides a self:update command for Symfony Console applications.",
  909. "time": "2020-04-13T02:49:20+00:00"
  910. },
  911. {
  912. "name": "consolidation/site-alias",
  913. "version": "3.0.1",
  914. "source": {
  915. "type": "git",
  916. "url": "https://github.com/consolidation/site-alias.git",
  917. "reference": "fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26"
  918. },
  919. "dist": {
  920. "type": "zip",
  921. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26",
  922. "reference": "fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26",
  923. "shasum": ""
  924. },
  925. "require": {
  926. "consolidation/config": "^1.2.1|^2",
  927. "php": ">=5.5.0"
  928. },
  929. "require-dev": {
  930. "consolidation/robo": "^1.2.3|^2",
  931. "g1a/composer-test-scenarios": "^3",
  932. "knplabs/github-api": "^2.7",
  933. "php-coveralls/php-coveralls": "^2.2",
  934. "php-http/guzzle6-adapter": "^1.1",
  935. "phpunit/phpunit": "^6",
  936. "squizlabs/php_codesniffer": "^2.8",
  937. "symfony/yaml": "~2.3|^3|^4.4|^5"
  938. },
  939. "type": "library",
  940. "extra": {
  941. "scenarios": {
  942. "phpunit5": {
  943. "require-dev": {
  944. "phpunit/phpunit": "^5.7.27"
  945. },
  946. "remove": [
  947. "php-coveralls/php-coveralls"
  948. ],
  949. "config": {
  950. "platform": {
  951. "php": "5.6.33"
  952. }
  953. }
  954. }
  955. },
  956. "branch-alias": {
  957. "dev-master": "3.x-dev"
  958. }
  959. },
  960. "autoload": {
  961. "psr-4": {
  962. "Consolidation\\SiteAlias\\": "src"
  963. }
  964. },
  965. "notification-url": "https://packagist.org/downloads/",
  966. "license": [
  967. "MIT"
  968. ],
  969. "authors": [
  970. {
  971. "name": "Greg Anderson",
  972. "email": "greg.1.anderson@greenknowe.org"
  973. },
  974. {
  975. "name": "Moshe Weitzman",
  976. "email": "weitzman@tejasa.com"
  977. }
  978. ],
  979. "description": "Manage alias records for local and remote sites.",
  980. "time": "2020-05-28T00:33:41+00:00"
  981. },
  982. {
  983. "name": "consolidation/site-process",
  984. "version": "4.0.0",
  985. "source": {
  986. "type": "git",
  987. "url": "https://github.com/consolidation/site-process.git",
  988. "reference": "ad86475eb3fe73490eb1b6ff2e74ee0f09952e9d"
  989. },
  990. "dist": {
  991. "type": "zip",
  992. "url": "https://api.github.com/repos/consolidation/site-process/zipball/ad86475eb3fe73490eb1b6ff2e74ee0f09952e9d",
  993. "reference": "ad86475eb3fe73490eb1b6ff2e74ee0f09952e9d",
  994. "shasum": ""
  995. },
  996. "require": {
  997. "consolidation/config": "^1.2.1|^2",
  998. "consolidation/site-alias": "^3",
  999. "php": ">=7.1.3",
  1000. "symfony/process": "^4.3.4"
  1001. },
  1002. "require-dev": {
  1003. "consolidation/robo": "^1.4.10|^2",
  1004. "g1a/composer-test-scenarios": "^3.0.4",
  1005. "knplabs/github-api": "^2.7",
  1006. "php-coveralls/php-coveralls": "^2.2",
  1007. "php-http/guzzle6-adapter": "^1.1",
  1008. "phpunit/phpunit": "^6.5.14",
  1009. "squizlabs/php_codesniffer": "^2.9.2"
  1010. },
  1011. "type": "library",
  1012. "extra": {
  1013. "scenarios": {
  1014. "symfony4": {
  1015. "require": {
  1016. "symfony/console": "^4.4.8",
  1017. "symfony/event-dispatcher": "^4.4.8",
  1018. "symfony/filesystem": "^4.4.8",
  1019. "symfony/finder": "^4.4.8"
  1020. },
  1021. "config": {
  1022. "platform": {
  1023. "php": "7.1.3"
  1024. }
  1025. }
  1026. }
  1027. },
  1028. "branch-alias": {
  1029. "dev-master": "4.x-dev"
  1030. }
  1031. },
  1032. "autoload": {
  1033. "psr-4": {
  1034. "Consolidation\\SiteProcess\\": "src"
  1035. }
  1036. },
  1037. "notification-url": "https://packagist.org/downloads/",
  1038. "license": [
  1039. "MIT"
  1040. ],
  1041. "authors": [
  1042. {
  1043. "name": "Greg Anderson",
  1044. "email": "greg.1.anderson@greenknowe.org"
  1045. },
  1046. {
  1047. "name": "Moshe Weitzman",
  1048. "email": "weitzman@tejasa.com"
  1049. }
  1050. ],
  1051. "description": "A thin wrapper around the Symfony Process Component that allows applications to use the Site Alias library to specify the target for a remote call.",
  1052. "time": "2020-05-28T00:05:34+00:00"
  1053. },
  1054. {
  1055. "name": "container-interop/container-interop",
  1056. "version": "1.2.0",
  1057. "source": {
  1058. "type": "git",
  1059. "url": "https://github.com/container-interop/container-interop.git",
  1060. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  1061. },
  1062. "dist": {
  1063. "type": "zip",
  1064. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1065. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1066. "shasum": ""
  1067. },
  1068. "require": {
  1069. "psr/container": "^1.0"
  1070. },
  1071. "type": "library",
  1072. "autoload": {
  1073. "psr-4": {
  1074. "Interop\\Container\\": "src/Interop/Container/"
  1075. }
  1076. },
  1077. "notification-url": "https://packagist.org/downloads/",
  1078. "license": [
  1079. "MIT"
  1080. ],
  1081. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  1082. "homepage": "https://github.com/container-interop/container-interop",
  1083. "abandoned": "psr/container",
  1084. "time": "2017-02-14T19:40:03+00:00"
  1085. },
  1086. {
  1087. "name": "cweagans/composer-patches",
  1088. "version": "1.7.0",
  1089. "source": {
  1090. "type": "git",
  1091. "url": "https://github.com/cweagans/composer-patches.git",
  1092. "reference": "ae02121445ad75f4eaff800cc532b5e6233e2ddf"
  1093. },
  1094. "dist": {
  1095. "type": "zip",
  1096. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/ae02121445ad75f4eaff800cc532b5e6233e2ddf",
  1097. "reference": "ae02121445ad75f4eaff800cc532b5e6233e2ddf",
  1098. "shasum": ""
  1099. },
  1100. "require": {
  1101. "composer-plugin-api": "^1.0 || ^2.0",
  1102. "php": ">=5.3.0"
  1103. },
  1104. "require-dev": {
  1105. "composer/composer": "~1.0 || ~2.0",
  1106. "phpunit/phpunit": "~4.6"
  1107. },
  1108. "type": "composer-plugin",
  1109. "extra": {
  1110. "class": "cweagans\\Composer\\Patches"
  1111. },
  1112. "autoload": {
  1113. "psr-4": {
  1114. "cweagans\\Composer\\": "src"
  1115. }
  1116. },
  1117. "notification-url": "https://packagist.org/downloads/",
  1118. "license": [
  1119. "BSD-3-Clause"
  1120. ],
  1121. "authors": [
  1122. {
  1123. "name": "Cameron Eagans",
  1124. "email": "me@cweagans.net"
  1125. }
  1126. ],
  1127. "description": "Provides a way to patch Composer packages.",
  1128. "time": "2020-09-30T17:56:20+00:00"
  1129. },
  1130. {
  1131. "name": "d3/d3",
  1132. "version": "v3.5.17",
  1133. "dist": {
  1134. "type": "zip",
  1135. "url": "https://github.com/d3/d3/archive/v3.5.17.zip"
  1136. },
  1137. "type": "drupal-library"
  1138. },
  1139. {
  1140. "name": "dflydev/dot-access-configuration",
  1141. "version": "v1.0.3",
  1142. "source": {
  1143. "type": "git",
  1144. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  1145. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  1146. },
  1147. "dist": {
  1148. "type": "zip",
  1149. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1150. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1151. "shasum": ""
  1152. },
  1153. "require": {
  1154. "dflydev/dot-access-data": "1.*",
  1155. "dflydev/placeholder-resolver": "1.*",
  1156. "php": ">=5.3.2"
  1157. },
  1158. "require-dev": {
  1159. "symfony/yaml": "~2.1"
  1160. },
  1161. "suggest": {
  1162. "symfony/yaml": "Required for using the YAML Configuration Builders"
  1163. },
  1164. "type": "library",
  1165. "extra": {
  1166. "branch-alias": {
  1167. "dev-master": "1.0-dev"
  1168. }
  1169. },
  1170. "autoload": {
  1171. "psr-0": {
  1172. "Dflydev\\DotAccessConfiguration": "src"
  1173. }
  1174. },
  1175. "notification-url": "https://packagist.org/downloads/",
  1176. "license": [
  1177. "MIT"
  1178. ],
  1179. "authors": [
  1180. {
  1181. "name": "Dragonfly Development Inc.",
  1182. "email": "info@dflydev.com",
  1183. "homepage": "http://dflydev.com"
  1184. },
  1185. {
  1186. "name": "Beau Simensen",
  1187. "email": "beau@dflydev.com",
  1188. "homepage": "http://beausimensen.com"
  1189. }
  1190. ],
  1191. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  1192. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  1193. "keywords": [
  1194. "config",
  1195. "configuration"
  1196. ],
  1197. "time": "2018-09-08T23:00:17+00:00"
  1198. },
  1199. {
  1200. "name": "dflydev/dot-access-data",
  1201. "version": "v1.1.0",
  1202. "source": {
  1203. "type": "git",
  1204. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1205. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1206. },
  1207. "dist": {
  1208. "type": "zip",
  1209. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1210. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1211. "shasum": ""
  1212. },
  1213. "require": {
  1214. "php": ">=5.3.2"
  1215. },
  1216. "type": "library",
  1217. "extra": {
  1218. "branch-alias": {
  1219. "dev-master": "1.0-dev"
  1220. }
  1221. },
  1222. "autoload": {
  1223. "psr-0": {
  1224. "Dflydev\\DotAccessData": "src"
  1225. }
  1226. },
  1227. "notification-url": "https://packagist.org/downloads/",
  1228. "license": [
  1229. "MIT"
  1230. ],
  1231. "authors": [
  1232. {
  1233. "name": "Dragonfly Development Inc.",
  1234. "email": "info@dflydev.com",
  1235. "homepage": "http://dflydev.com"
  1236. },
  1237. {
  1238. "name": "Beau Simensen",
  1239. "email": "beau@dflydev.com",
  1240. "homepage": "http://beausimensen.com"
  1241. },
  1242. {
  1243. "name": "Carlos Frutos",
  1244. "email": "carlos@kiwing.it",
  1245. "homepage": "https://github.com/cfrutos"
  1246. }
  1247. ],
  1248. "description": "Given a deep data structure, access data by dot notation.",
  1249. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1250. "keywords": [
  1251. "access",
  1252. "data",
  1253. "dot",
  1254. "notation"
  1255. ],
  1256. "time": "2017-01-20T21:14:22+00:00"
  1257. },
  1258. {
  1259. "name": "dflydev/placeholder-resolver",
  1260. "version": "v1.0.2",
  1261. "source": {
  1262. "type": "git",
  1263. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1264. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  1265. },
  1266. "dist": {
  1267. "type": "zip",
  1268. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1269. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1270. "shasum": ""
  1271. },
  1272. "require": {
  1273. "php": ">=5.3.2"
  1274. },
  1275. "type": "library",
  1276. "extra": {
  1277. "branch-alias": {
  1278. "dev-master": "1.0-dev"
  1279. }
  1280. },
  1281. "autoload": {
  1282. "psr-0": {
  1283. "Dflydev\\PlaceholderResolver": "src"
  1284. }
  1285. },
  1286. "notification-url": "https://packagist.org/downloads/",
  1287. "license": [
  1288. "MIT"
  1289. ],
  1290. "authors": [
  1291. {
  1292. "name": "Dragonfly Development Inc.",
  1293. "email": "info@dflydev.com",
  1294. "homepage": "http://dflydev.com"
  1295. },
  1296. {
  1297. "name": "Beau Simensen",
  1298. "email": "beau@dflydev.com",
  1299. "homepage": "http://beausimensen.com"
  1300. }
  1301. ],
  1302. "description": "Given a data source representing key => value pairs, resolve placeholders like ${foo.bar} to the value associated with the 'foo.bar' key in the data source.",
  1303. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1304. "keywords": [
  1305. "placeholder",
  1306. "resolver"
  1307. ],
  1308. "time": "2012-10-28T21:08:28+00:00"
  1309. },
  1310. {
  1311. "name": "dnoegel/php-xdg-base-dir",
  1312. "version": "v0.1.1",
  1313. "source": {
  1314. "type": "git",
  1315. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1316. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  1317. },
  1318. "dist": {
  1319. "type": "zip",
  1320. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1321. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1322. "shasum": ""
  1323. },
  1324. "require": {
  1325. "php": ">=5.3.2"
  1326. },
  1327. "require-dev": {
  1328. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  1329. },
  1330. "type": "library",
  1331. "autoload": {
  1332. "psr-4": {
  1333. "XdgBaseDir\\": "src/"
  1334. }
  1335. },
  1336. "notification-url": "https://packagist.org/downloads/",
  1337. "license": [
  1338. "MIT"
  1339. ],
  1340. "description": "implementation of xdg base directory specification for php",
  1341. "time": "2019-12-04T15:06:13+00:00"
  1342. },
  1343. {
  1344. "name": "doctrine/annotations",
  1345. "version": "1.11.1",
  1346. "source": {
  1347. "type": "git",
  1348. "url": "https://github.com/doctrine/annotations.git",
  1349. "reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad"
  1350. },
  1351. "dist": {
  1352. "type": "zip",
  1353. "url": "https://api.github.com/repos/doctrine/annotations/zipball/ce77a7ba1770462cd705a91a151b6c3746f9c6ad",
  1354. "reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad",
  1355. "shasum": ""
  1356. },
  1357. "require": {
  1358. "doctrine/lexer": "1.*",
  1359. "ext-tokenizer": "*",
  1360. "php": "^7.1 || ^8.0"
  1361. },
  1362. "require-dev": {
  1363. "doctrine/cache": "1.*",
  1364. "doctrine/coding-standard": "^6.0 || ^8.1",
  1365. "phpstan/phpstan": "^0.12.20",
  1366. "phpunit/phpunit": "^7.5 || ^9.1.5"
  1367. },
  1368. "type": "library",
  1369. "extra": {
  1370. "branch-alias": {
  1371. "dev-master": "1.11.x-dev"
  1372. }
  1373. },
  1374. "autoload": {
  1375. "psr-4": {
  1376. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1377. }
  1378. },
  1379. "notification-url": "https://packagist.org/downloads/",
  1380. "license": [
  1381. "MIT"
  1382. ],
  1383. "authors": [
  1384. {
  1385. "name": "Guilherme Blanco",
  1386. "email": "guilhermeblanco@gmail.com"
  1387. },
  1388. {
  1389. "name": "Roman Borschel",
  1390. "email": "roman@code-factory.org"
  1391. },
  1392. {
  1393. "name": "Benjamin Eberlei",
  1394. "email": "kontakt@beberlei.de"
  1395. },
  1396. {
  1397. "name": "Jonathan Wage",
  1398. "email": "jonwage@gmail.com"
  1399. },
  1400. {
  1401. "name": "Johannes Schmitt",
  1402. "email": "schmittjoh@gmail.com"
  1403. }
  1404. ],
  1405. "description": "Docblock Annotations Parser",
  1406. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1407. "keywords": [
  1408. "annotations",
  1409. "docblock",
  1410. "parser"
  1411. ],
  1412. "support": {
  1413. "issues": "https://github.com/doctrine/annotations/issues",
  1414. "source": "https://github.com/doctrine/annotations/tree/1.11.1"
  1415. },
  1416. "time": "2020-10-26T10:28:16+00:00"
  1417. },
  1418. {
  1419. "name": "doctrine/cache",
  1420. "version": "1.11.3",
  1421. "source": {
  1422. "type": "git",
  1423. "url": "https://github.com/doctrine/cache.git",
  1424. "reference": "3bb5588cec00a0268829cc4a518490df6741af9d"
  1425. },
  1426. "dist": {
  1427. "type": "zip",
  1428. "url": "https://api.github.com/repos/doctrine/cache/zipball/3bb5588cec00a0268829cc4a518490df6741af9d",
  1429. "reference": "3bb5588cec00a0268829cc4a518490df6741af9d",
  1430. "shasum": ""
  1431. },
  1432. "require": {
  1433. "php": "~7.1 || ^8.0"
  1434. },
  1435. "conflict": {
  1436. "doctrine/common": ">2.2,<2.4",
  1437. "psr/cache": ">=3"
  1438. },
  1439. "require-dev": {
  1440. "alcaeus/mongo-php-adapter": "^1.1",
  1441. "cache/integration-tests": "dev-master",
  1442. "doctrine/coding-standard": "^8.0",
  1443. "mongodb/mongodb": "^1.1",
  1444. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1445. "predis/predis": "~1.0",
  1446. "psr/cache": "^1.0 || ^2.0",
  1447. "symfony/cache": "^4.4 || ^5.2"
  1448. },
  1449. "suggest": {
  1450. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  1451. },
  1452. "type": "library",
  1453. "autoload": {
  1454. "psr-4": {
  1455. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1456. }
  1457. },
  1458. "notification-url": "https://packagist.org/downloads/",
  1459. "license": [
  1460. "MIT"
  1461. ],
  1462. "authors": [
  1463. {
  1464. "name": "Guilherme Blanco",
  1465. "email": "guilhermeblanco@gmail.com"
  1466. },
  1467. {
  1468. "name": "Roman Borschel",
  1469. "email": "roman@code-factory.org"
  1470. },
  1471. {
  1472. "name": "Benjamin Eberlei",
  1473. "email": "kontakt@beberlei.de"
  1474. },
  1475. {
  1476. "name": "Jonathan Wage",
  1477. "email": "jonwage@gmail.com"
  1478. },
  1479. {
  1480. "name": "Johannes Schmitt",
  1481. "email": "schmittjoh@gmail.com"
  1482. }
  1483. ],
  1484. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  1485. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  1486. "keywords": [
  1487. "abstraction",
  1488. "apcu",
  1489. "cache",
  1490. "caching",
  1491. "couchdb",
  1492. "memcached",
  1493. "php",
  1494. "redis",
  1495. "xcache"
  1496. ],
  1497. "support": {
  1498. "issues": "https://github.com/doctrine/cache/issues",
  1499. "source": "https://github.com/doctrine/cache/tree/1.11.3"
  1500. },
  1501. "funding": [
  1502. {
  1503. "url": "https://www.doctrine-project.org/sponsorship.html",
  1504. "type": "custom"
  1505. },
  1506. {
  1507. "url": "https://www.patreon.com/phpdoctrine",
  1508. "type": "patreon"
  1509. },
  1510. {
  1511. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  1512. "type": "tidelift"
  1513. }
  1514. ],
  1515. "time": "2021-05-25T09:01:55+00:00"
  1516. },
  1517. {
  1518. "name": "doctrine/collections",
  1519. "version": "1.6.7",
  1520. "source": {
  1521. "type": "git",
  1522. "url": "https://github.com/doctrine/collections.git",
  1523. "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a"
  1524. },
  1525. "dist": {
  1526. "type": "zip",
  1527. "url": "https://api.github.com/repos/doctrine/collections/zipball/55f8b799269a1a472457bd1a41b4f379d4cfba4a",
  1528. "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a",
  1529. "shasum": ""
  1530. },
  1531. "require": {
  1532. "php": "^7.1.3 || ^8.0"
  1533. },
  1534. "require-dev": {
  1535. "doctrine/coding-standard": "^6.0",
  1536. "phpstan/phpstan-shim": "^0.9.2",
  1537. "phpunit/phpunit": "^7.0",
  1538. "vimeo/psalm": "^3.8.1"
  1539. },
  1540. "type": "library",
  1541. "autoload": {
  1542. "psr-4": {
  1543. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  1544. }
  1545. },
  1546. "notification-url": "https://packagist.org/downloads/",
  1547. "license": [
  1548. "MIT"
  1549. ],
  1550. "authors": [
  1551. {
  1552. "name": "Guilherme Blanco",
  1553. "email": "guilhermeblanco@gmail.com"
  1554. },
  1555. {
  1556. "name": "Roman Borschel",
  1557. "email": "roman@code-factory.org"
  1558. },
  1559. {
  1560. "name": "Benjamin Eberlei",
  1561. "email": "kontakt@beberlei.de"
  1562. },
  1563. {
  1564. "name": "Jonathan Wage",
  1565. "email": "jonwage@gmail.com"
  1566. },
  1567. {
  1568. "name": "Johannes Schmitt",
  1569. "email": "schmittjoh@gmail.com"
  1570. }
  1571. ],
  1572. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  1573. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  1574. "keywords": [
  1575. "array",
  1576. "collections",
  1577. "iterators",
  1578. "php"
  1579. ],
  1580. "support": {
  1581. "issues": "https://github.com/doctrine/collections/issues",
  1582. "source": "https://github.com/doctrine/collections/tree/1.6.7"
  1583. },
  1584. "time": "2020-07-27T17:53:49+00:00"
  1585. },
  1586. {
  1587. "name": "doctrine/common",
  1588. "version": "2.13.3",
  1589. "source": {
  1590. "type": "git",
  1591. "url": "https://github.com/doctrine/common.git",
  1592. "reference": "f3812c026e557892c34ef37f6ab808a6b567da7f"
  1593. },
  1594. "dist": {
  1595. "type": "zip",
  1596. "url": "https://api.github.com/repos/doctrine/common/zipball/f3812c026e557892c34ef37f6ab808a6b567da7f",
  1597. "reference": "f3812c026e557892c34ef37f6ab808a6b567da7f",
  1598. "shasum": ""
  1599. },
  1600. "require": {
  1601. "doctrine/annotations": "^1.0",
  1602. "doctrine/cache": "^1.0",
  1603. "doctrine/collections": "^1.0",
  1604. "doctrine/event-manager": "^1.0",
  1605. "doctrine/inflector": "^1.0",
  1606. "doctrine/lexer": "^1.0",
  1607. "doctrine/persistence": "^1.3.3",
  1608. "doctrine/reflection": "^1.0",
  1609. "php": "^7.1 || ^8.0"
  1610. },
  1611. "require-dev": {
  1612. "doctrine/coding-standard": "^1.0",
  1613. "phpstan/phpstan": "^0.11",
  1614. "phpstan/phpstan-phpunit": "^0.11",
  1615. "phpunit/phpunit": "^7.0",
  1616. "squizlabs/php_codesniffer": "^3.0",
  1617. "symfony/phpunit-bridge": "^4.0.5"
  1618. },
  1619. "type": "library",
  1620. "extra": {
  1621. "branch-alias": {
  1622. "dev-master": "2.11.x-dev"
  1623. }
  1624. },
  1625. "autoload": {
  1626. "psr-4": {
  1627. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1628. }
  1629. },
  1630. "notification-url": "https://packagist.org/downloads/",
  1631. "license": [
  1632. "MIT"
  1633. ],
  1634. "authors": [
  1635. {
  1636. "name": "Guilherme Blanco",
  1637. "email": "guilhermeblanco@gmail.com"
  1638. },
  1639. {
  1640. "name": "Roman Borschel",
  1641. "email": "roman@code-factory.org"
  1642. },
  1643. {
  1644. "name": "Benjamin Eberlei",
  1645. "email": "kontakt@beberlei.de"
  1646. },
  1647. {
  1648. "name": "Jonathan Wage",
  1649. "email": "jonwage@gmail.com"
  1650. },
  1651. {
  1652. "name": "Johannes Schmitt",
  1653. "email": "schmittjoh@gmail.com"
  1654. },
  1655. {
  1656. "name": "Marco Pivetta",
  1657. "email": "ocramius@gmail.com"
  1658. }
  1659. ],
  1660. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, persistence interfaces, proxies, event system and much more.",
  1661. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1662. "keywords": [
  1663. "common",
  1664. "doctrine",
  1665. "php"
  1666. ],
  1667. "support": {
  1668. "issues": "https://github.com/doctrine/common/issues",
  1669. "source": "https://github.com/doctrine/common/tree/2.13.x"
  1670. },
  1671. "funding": [
  1672. {
  1673. "url": "https://www.doctrine-project.org/sponsorship.html",
  1674. "type": "custom"
  1675. },
  1676. {
  1677. "url": "https://www.patreon.com/phpdoctrine",
  1678. "type": "patreon"
  1679. },
  1680. {
  1681. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1682. "type": "tidelift"
  1683. }
  1684. ],
  1685. "time": "2020-06-05T16:46:05+00:00"
  1686. },
  1687. {
  1688. "name": "doctrine/event-manager",
  1689. "version": "1.1.1",
  1690. "source": {
  1691. "type": "git",
  1692. "url": "https://github.com/doctrine/event-manager.git",
  1693. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  1694. },
  1695. "dist": {
  1696. "type": "zip",
  1697. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1698. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1699. "shasum": ""
  1700. },
  1701. "require": {
  1702. "php": "^7.1 || ^8.0"
  1703. },
  1704. "conflict": {
  1705. "doctrine/common": "<2.9@dev"
  1706. },
  1707. "require-dev": {
  1708. "doctrine/coding-standard": "^6.0",
  1709. "phpunit/phpunit": "^7.0"
  1710. },
  1711. "type": "library",
  1712. "extra": {
  1713. "branch-alias": {
  1714. "dev-master": "1.0.x-dev"
  1715. }
  1716. },
  1717. "autoload": {
  1718. "psr-4": {
  1719. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1720. }
  1721. },
  1722. "notification-url": "https://packagist.org/downloads/",
  1723. "license": [
  1724. "MIT"
  1725. ],
  1726. "authors": [
  1727. {
  1728. "name": "Guilherme Blanco",
  1729. "email": "guilhermeblanco@gmail.com"
  1730. },
  1731. {
  1732. "name": "Roman Borschel",
  1733. "email": "roman@code-factory.org"
  1734. },
  1735. {
  1736. "name": "Benjamin Eberlei",
  1737. "email": "kontakt@beberlei.de"
  1738. },
  1739. {
  1740. "name": "Jonathan Wage",
  1741. "email": "jonwage@gmail.com"
  1742. },
  1743. {
  1744. "name": "Johannes Schmitt",
  1745. "email": "schmittjoh@gmail.com"
  1746. },
  1747. {
  1748. "name": "Marco Pivetta",
  1749. "email": "ocramius@gmail.com"
  1750. }
  1751. ],
  1752. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1753. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1754. "keywords": [
  1755. "event",
  1756. "event dispatcher",
  1757. "event manager",
  1758. "event system",
  1759. "events"
  1760. ],
  1761. "support": {
  1762. "issues": "https://github.com/doctrine/event-manager/issues",
  1763. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  1764. },
  1765. "funding": [
  1766. {
  1767. "url": "https://www.doctrine-project.org/sponsorship.html",
  1768. "type": "custom"
  1769. },
  1770. {
  1771. "url": "https://www.patreon.com/phpdoctrine",
  1772. "type": "patreon"
  1773. },
  1774. {
  1775. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1776. "type": "tidelift"
  1777. }
  1778. ],
  1779. "time": "2020-05-29T18:28:51+00:00"
  1780. },
  1781. {
  1782. "name": "doctrine/inflector",
  1783. "version": "1.4.4",
  1784. "source": {
  1785. "type": "git",
  1786. "url": "https://github.com/doctrine/inflector.git",
  1787. "reference": "4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9"
  1788. },
  1789. "dist": {
  1790. "type": "zip",
  1791. "url": "https://api.github.com/repos/doctrine/inflector/zipball/4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9",
  1792. "reference": "4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9",
  1793. "shasum": ""
  1794. },
  1795. "require": {
  1796. "php": "^7.1 || ^8.0"
  1797. },
  1798. "require-dev": {
  1799. "doctrine/coding-standard": "^8.0",
  1800. "phpstan/phpstan": "^0.12",
  1801. "phpstan/phpstan-phpunit": "^0.12",
  1802. "phpstan/phpstan-strict-rules": "^0.12",
  1803. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  1804. },
  1805. "type": "library",
  1806. "extra": {
  1807. "branch-alias": {
  1808. "dev-master": "2.0.x-dev"
  1809. }
  1810. },
  1811. "autoload": {
  1812. "psr-4": {
  1813. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector",
  1814. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1815. }
  1816. },
  1817. "notification-url": "https://packagist.org/downloads/",
  1818. "license": [
  1819. "MIT"
  1820. ],
  1821. "authors": [
  1822. {
  1823. "name": "Guilherme Blanco",
  1824. "email": "guilhermeblanco@gmail.com"
  1825. },
  1826. {
  1827. "name": "Roman Borschel",
  1828. "email": "roman@code-factory.org"
  1829. },
  1830. {
  1831. "name": "Benjamin Eberlei",
  1832. "email": "kontakt@beberlei.de"
  1833. },
  1834. {
  1835. "name": "Jonathan Wage",
  1836. "email": "jonwage@gmail.com"
  1837. },
  1838. {
  1839. "name": "Johannes Schmitt",
  1840. "email": "schmittjoh@gmail.com"
  1841. }
  1842. ],
  1843. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1844. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1845. "keywords": [
  1846. "inflection",
  1847. "inflector",
  1848. "lowercase",
  1849. "manipulation",
  1850. "php",
  1851. "plural",
  1852. "singular",
  1853. "strings",
  1854. "uppercase",
  1855. "words"
  1856. ],
  1857. "support": {
  1858. "issues": "https://github.com/doctrine/inflector/issues",
  1859. "source": "https://github.com/doctrine/inflector/tree/1.4.4"
  1860. },
  1861. "funding": [
  1862. {
  1863. "url": "https://www.doctrine-project.org/sponsorship.html",
  1864. "type": "custom"
  1865. },
  1866. {
  1867. "url": "https://www.patreon.com/phpdoctrine",
  1868. "type": "patreon"
  1869. },
  1870. {
  1871. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1872. "type": "tidelift"
  1873. }
  1874. ],
  1875. "time": "2021-04-16T17:34:40+00:00"
  1876. },
  1877. {
  1878. "name": "doctrine/lexer",
  1879. "version": "1.2.1",
  1880. "source": {
  1881. "type": "git",
  1882. "url": "https://github.com/doctrine/lexer.git",
  1883. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  1884. },
  1885. "dist": {
  1886. "type": "zip",
  1887. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  1888. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  1889. "shasum": ""
  1890. },
  1891. "require": {
  1892. "php": "^7.2 || ^8.0"
  1893. },
  1894. "require-dev": {
  1895. "doctrine/coding-standard": "^6.0",
  1896. "phpstan/phpstan": "^0.11.8",
  1897. "phpunit/phpunit": "^8.2"
  1898. },
  1899. "type": "library",
  1900. "extra": {
  1901. "branch-alias": {
  1902. "dev-master": "1.2.x-dev"
  1903. }
  1904. },
  1905. "autoload": {
  1906. "psr-4": {
  1907. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1908. }
  1909. },
  1910. "notification-url": "https://packagist.org/downloads/",
  1911. "license": [
  1912. "MIT"
  1913. ],
  1914. "authors": [
  1915. {
  1916. "name": "Guilherme Blanco",
  1917. "email": "guilhermeblanco@gmail.com"
  1918. },
  1919. {
  1920. "name": "Roman Borschel",
  1921. "email": "roman@code-factory.org"
  1922. },
  1923. {
  1924. "name": "Johannes Schmitt",
  1925. "email": "schmittjoh@gmail.com"
  1926. }
  1927. ],
  1928. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1929. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1930. "keywords": [
  1931. "annotations",
  1932. "docblock",
  1933. "lexer",
  1934. "parser",
  1935. "php"
  1936. ],
  1937. "support": {
  1938. "issues": "https://github.com/doctrine/lexer/issues",
  1939. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  1940. },
  1941. "funding": [
  1942. {
  1943. "url": "https://www.doctrine-project.org/sponsorship.html",
  1944. "type": "custom"
  1945. },
  1946. {
  1947. "url": "https://www.patreon.com/phpdoctrine",
  1948. "type": "patreon"
  1949. },
  1950. {
  1951. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1952. "type": "tidelift"
  1953. }
  1954. ],
  1955. "time": "2020-05-25T17:44:05+00:00"
  1956. },
  1957. {
  1958. "name": "doctrine/persistence",
  1959. "version": "1.3.8",
  1960. "source": {
  1961. "type": "git",
  1962. "url": "https://github.com/doctrine/persistence.git",
  1963. "reference": "7a6eac9fb6f61bba91328f15aa7547f4806ca288"
  1964. },
  1965. "dist": {
  1966. "type": "zip",
  1967. "url": "https://api.github.com/repos/doctrine/persistence/zipball/7a6eac9fb6f61bba91328f15aa7547f4806ca288",
  1968. "reference": "7a6eac9fb6f61bba91328f15aa7547f4806ca288",
  1969. "shasum": ""
  1970. },
  1971. "require": {
  1972. "doctrine/annotations": "^1.0",
  1973. "doctrine/cache": "^1.0",
  1974. "doctrine/collections": "^1.0",
  1975. "doctrine/event-manager": "^1.0",
  1976. "doctrine/reflection": "^1.2",
  1977. "php": "^7.1 || ^8.0"
  1978. },
  1979. "conflict": {
  1980. "doctrine/common": "<2.10@dev"
  1981. },
  1982. "require-dev": {
  1983. "doctrine/coding-standard": "^6.0",
  1984. "phpstan/phpstan": "^0.11",
  1985. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1986. "vimeo/psalm": "^3.11"
  1987. },
  1988. "type": "library",
  1989. "extra": {
  1990. "branch-alias": {
  1991. "dev-master": "1.3.x-dev"
  1992. }
  1993. },
  1994. "autoload": {
  1995. "psr-4": {
  1996. "Doctrine\\Common\\": "lib/Doctrine/Common",
  1997. "Doctrine\\Persistence\\": "lib/Doctrine/Persistence"
  1998. }
  1999. },
  2000. "notification-url": "https://packagist.org/downloads/",
  2001. "license": [
  2002. "MIT"
  2003. ],
  2004. "authors": [
  2005. {
  2006. "name": "Guilherme Blanco",
  2007. "email": "guilhermeblanco@gmail.com"
  2008. },
  2009. {
  2010. "name": "Roman Borschel",
  2011. "email": "roman@code-factory.org"
  2012. },
  2013. {
  2014. "name": "Benjamin Eberlei",
  2015. "email": "kontakt@beberlei.de"
  2016. },
  2017. {
  2018. "name": "Jonathan Wage",
  2019. "email": "jonwage@gmail.com"
  2020. },
  2021. {
  2022. "name": "Johannes Schmitt",
  2023. "email": "schmittjoh@gmail.com"
  2024. },
  2025. {
  2026. "name": "Marco Pivetta",
  2027. "email": "ocramius@gmail.com"
  2028. }
  2029. ],
  2030. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  2031. "homepage": "https://doctrine-project.org/projects/persistence.html",
  2032. "keywords": [
  2033. "mapper",
  2034. "object",
  2035. "odm",
  2036. "orm",
  2037. "persistence"
  2038. ],
  2039. "support": {
  2040. "issues": "https://github.com/doctrine/persistence/issues",
  2041. "source": "https://github.com/doctrine/persistence/tree/1.3.x"
  2042. },
  2043. "funding": [
  2044. {
  2045. "url": "https://www.doctrine-project.org/sponsorship.html",
  2046. "type": "custom"
  2047. },
  2048. {
  2049. "url": "https://www.patreon.com/phpdoctrine",
  2050. "type": "patreon"
  2051. },
  2052. {
  2053. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  2054. "type": "tidelift"
  2055. }
  2056. ],
  2057. "time": "2020-06-20T12:56:16+00:00"
  2058. },
  2059. {
  2060. "name": "doctrine/reflection",
  2061. "version": "1.2.2",
  2062. "source": {
  2063. "type": "git",
  2064. "url": "https://github.com/doctrine/reflection.git",
  2065. "reference": "fa587178be682efe90d005e3a322590d6ebb59a5"
  2066. },
  2067. "dist": {
  2068. "type": "zip",
  2069. "url": "https://api.github.com/repos/doctrine/reflection/zipball/fa587178be682efe90d005e3a322590d6ebb59a5",
  2070. "reference": "fa587178be682efe90d005e3a322590d6ebb59a5",
  2071. "shasum": ""
  2072. },
  2073. "require": {
  2074. "doctrine/annotations": "^1.0",
  2075. "ext-tokenizer": "*",
  2076. "php": "^7.1 || ^8.0"
  2077. },
  2078. "conflict": {
  2079. "doctrine/common": "<2.9"
  2080. },
  2081. "require-dev": {
  2082. "doctrine/coding-standard": "^6.0 || ^8.2.0",
  2083. "doctrine/common": "^2.10",
  2084. "phpstan/phpstan": "^0.11.0 || ^0.12.20",
  2085. "phpstan/phpstan-phpunit": "^0.11.0 || ^0.12.16",
  2086. "phpunit/phpunit": "^7.5 || ^9.1.5"
  2087. },
  2088. "type": "library",
  2089. "extra": {
  2090. "branch-alias": {
  2091. "dev-master": "1.2.x-dev"
  2092. }
  2093. },
  2094. "autoload": {
  2095. "psr-4": {
  2096. "Doctrine\\Common\\": "lib/Doctrine/Common"
  2097. }
  2098. },
  2099. "notification-url": "https://packagist.org/downloads/",
  2100. "license": [
  2101. "MIT"
  2102. ],
  2103. "authors": [
  2104. {
  2105. "name": "Guilherme Blanco",
  2106. "email": "guilhermeblanco@gmail.com"
  2107. },
  2108. {
  2109. "name": "Roman Borschel",
  2110. "email": "roman@code-factory.org"
  2111. },
  2112. {
  2113. "name": "Benjamin Eberlei",
  2114. "email": "kontakt@beberlei.de"
  2115. },
  2116. {
  2117. "name": "Jonathan Wage",
  2118. "email": "jonwage@gmail.com"
  2119. },
  2120. {
  2121. "name": "Johannes Schmitt",
  2122. "email": "schmittjoh@gmail.com"
  2123. },
  2124. {
  2125. "name": "Marco Pivetta",
  2126. "email": "ocramius@gmail.com"
  2127. }
  2128. ],
  2129. "description": "The Doctrine Reflection project is a simple library used by the various Doctrine projects which adds some additional functionality on top of the reflection functionality that comes with PHP. It allows you to get the reflection information about classes, methods and properties statically.",
  2130. "homepage": "https://www.doctrine-project.org/projects/reflection.html",
  2131. "keywords": [
  2132. "reflection",
  2133. "static"
  2134. ],
  2135. "support": {
  2136. "issues": "https://github.com/doctrine/reflection/issues",
  2137. "source": "https://github.com/doctrine/reflection/tree/1.2.2"
  2138. },
  2139. "abandoned": "roave/better-reflection",
  2140. "time": "2020-10-27T21:46:55+00:00"
  2141. },
  2142. {
  2143. "name": "drupal/address",
  2144. "version": "1.9.0",
  2145. "source": {
  2146. "type": "git",
  2147. "url": "https://git.drupalcode.org/project/address.git",
  2148. "reference": "8.x-1.9"
  2149. },
  2150. "dist": {
  2151. "type": "zip",
  2152. "url": "https://ftp.drupal.org/files/projects/address-8.x-1.9.zip",
  2153. "reference": "8.x-1.9",
  2154. "shasum": "c7e6406d88c6d6be9e8fe0091040d67012bdbf05"
  2155. },
  2156. "require": {
  2157. "commerceguys/addressing": "^1.0.7",
  2158. "drupal/core": "^8.8 || ^9"
  2159. },
  2160. "require-dev": {
  2161. "drupal/token": "^1.0"
  2162. },
  2163. "type": "drupal-module",
  2164. "extra": {
  2165. "drupal": {
  2166. "version": "8.x-1.9",
  2167. "datestamp": "1604422821",
  2168. "security-coverage": {
  2169. "status": "covered",
  2170. "message": "Covered by Drupal's security advisory policy"
  2171. }
  2172. }
  2173. },
  2174. "notification-url": "https://packages.drupal.org/8/downloads",
  2175. "license": [
  2176. "GPL-2.0-or-later"
  2177. ],
  2178. "authors": [
  2179. {
  2180. "name": "bojanz",
  2181. "homepage": "https://www.drupal.org/user/86106"
  2182. },
  2183. {
  2184. "name": "dww",
  2185. "homepage": "https://www.drupal.org/user/46549"
  2186. },
  2187. {
  2188. "name": "googletorp",
  2189. "homepage": "https://www.drupal.org/user/386230"
  2190. },
  2191. {
  2192. "name": "jsacksick",
  2193. "homepage": "https://www.drupal.org/user/972218"
  2194. },
  2195. {
  2196. "name": "mglaman",
  2197. "homepage": "https://www.drupal.org/user/2416470"
  2198. },
  2199. {
  2200. "name": "rszrama",
  2201. "homepage": "https://www.drupal.org/user/49344"
  2202. }
  2203. ],
  2204. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  2205. "homepage": "http://drupal.org/project/address",
  2206. "support": {
  2207. "source": "https://git.drupalcode.org/project/address"
  2208. }
  2209. },
  2210. {
  2211. "name": "drupal/admin_toolbar",
  2212. "version": "2.4.0",
  2213. "source": {
  2214. "type": "git",
  2215. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  2216. "reference": "8.x-2.4"
  2217. },
  2218. "dist": {
  2219. "type": "zip",
  2220. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.4.zip",
  2221. "reference": "8.x-2.4",
  2222. "shasum": "6240047b8d91ac78f98d861ba8282af971fa0b38"
  2223. },
  2224. "require": {
  2225. "drupal/core": "^8.8.0 || ^9.0"
  2226. },
  2227. "type": "drupal-module",
  2228. "extra": {
  2229. "drupal": {
  2230. "version": "8.x-2.4",
  2231. "datestamp": "1601999178",
  2232. "security-coverage": {
  2233. "status": "covered",
  2234. "message": "Covered by Drupal's security advisory policy"
  2235. }
  2236. }
  2237. },
  2238. "notification-url": "https://packages.drupal.org/8/downloads",
  2239. "license": [
  2240. "GPL-2.0-or-later"
  2241. ],
  2242. "authors": [
  2243. {
  2244. "name": "Wilfrid Roze (eme)",
  2245. "homepage": "https://www.drupal.org/u/eme",
  2246. "role": "Maintainer"
  2247. },
  2248. {
  2249. "name": "Romain Jarraud (romainj)",
  2250. "homepage": "https://www.drupal.org/u/romainj",
  2251. "role": "Maintainer"
  2252. },
  2253. {
  2254. "name": "Adrian Cid Almaguer (adriancid)",
  2255. "homepage": "https://www.drupal.org/u/adriancid",
  2256. "email": "adriancid@gmail.com",
  2257. "role": "Maintainer"
  2258. },
  2259. {
  2260. "name": "Mohamed Anis Taktak (matio89)",
  2261. "homepage": "https://www.drupal.org/u/matio89",
  2262. "role": "Maintainer"
  2263. },
  2264. {
  2265. "name": "fethi.krout",
  2266. "homepage": "https://www.drupal.org/user/3206765"
  2267. },
  2268. {
  2269. "name": "matio89",
  2270. "homepage": "https://www.drupal.org/user/2320090"
  2271. },
  2272. {
  2273. "name": "romainj",
  2274. "homepage": "https://www.drupal.org/user/370706"
  2275. }
  2276. ],
  2277. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  2278. "homepage": "http://drupal.org/project/admin_toolbar",
  2279. "keywords": [
  2280. "Drupal",
  2281. "Toolbar"
  2282. ],
  2283. "support": {
  2284. "source": "https://git.drupalcode.org/project/admin_toolbar",
  2285. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  2286. }
  2287. },
  2288. {
  2289. "name": "drupal/adminimal_theme",
  2290. "version": "1.6.0",
  2291. "source": {
  2292. "type": "git",
  2293. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  2294. "reference": "8.x-1.6"
  2295. },
  2296. "dist": {
  2297. "type": "zip",
  2298. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.6.zip",
  2299. "reference": "8.x-1.6",
  2300. "shasum": "89132d0853388afe8dfd11fb83c69a48d8c13413"
  2301. },
  2302. "require": {
  2303. "drupal/core": "^8.8 || ^9"
  2304. },
  2305. "type": "drupal-theme",
  2306. "extra": {
  2307. "drupal": {
  2308. "version": "8.x-1.6",
  2309. "datestamp": "1602006937",
  2310. "security-coverage": {
  2311. "status": "covered",
  2312. "message": "Covered by Drupal's security advisory policy"
  2313. }
  2314. }
  2315. },
  2316. "notification-url": "https://packages.drupal.org/8/downloads",
  2317. "license": [
  2318. "GPL-2.0+"
  2319. ],
  2320. "authors": [
  2321. {
  2322. "name": "ANDiTKO",
  2323. "homepage": "https://www.drupal.org/user/1428124"
  2324. },
  2325. {
  2326. "name": "andrey.troeglazov",
  2327. "homepage": "https://www.drupal.org/user/3145389"
  2328. },
  2329. {
  2330. "name": "realityloop",
  2331. "homepage": "https://www.drupal.org/user/139189"
  2332. }
  2333. ],
  2334. "description": "Drupal administration theme with modern minimalist design.",
  2335. "homepage": "https://www.drupal.org/project/adminimal_theme",
  2336. "support": {
  2337. "source": "https://git.drupalcode.org/project/adminimal_theme",
  2338. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  2339. }
  2340. },
  2341. {
  2342. "name": "drupal/advanced_text_formatter",
  2343. "version": "2.0.0",
  2344. "source": {
  2345. "type": "git",
  2346. "url": "https://git.drupalcode.org/project/advanced_text_formatter.git",
  2347. "reference": "2.0.0"
  2348. },
  2349. "dist": {
  2350. "type": "zip",
  2351. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-2.0.0.zip",
  2352. "reference": "2.0.0",
  2353. "shasum": "ecd1d0e46dfc137251f9b71e724c6edddd5c48df"
  2354. },
  2355. "require": {
  2356. "drupal/core": "^8 || ^9"
  2357. },
  2358. "type": "drupal-module",
  2359. "extra": {
  2360. "drupal": {
  2361. "version": "2.0.0",
  2362. "datestamp": "1591030704",
  2363. "security-coverage": {
  2364. "status": "covered",
  2365. "message": "Covered by Drupal's security advisory policy"
  2366. }
  2367. }
  2368. },
  2369. "notification-url": "https://packages.drupal.org/8/downloads",
  2370. "license": [
  2371. "GPL-2.0-or-later"
  2372. ],
  2373. "authors": [
  2374. {
  2375. "name": "azovsky",
  2376. "homepage": "https://www.drupal.org/user/330533"
  2377. },
  2378. {
  2379. "name": "thmnhat",
  2380. "homepage": "https://www.drupal.org/user/998946"
  2381. }
  2382. ],
  2383. "description": "Provides an additional formatter for text field, text area and text format.",
  2384. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  2385. "support": {
  2386. "source": "https://git.drupalcode.org/project/advanced_text_formatter"
  2387. }
  2388. },
  2389. {
  2390. "name": "drupal/audiofield",
  2391. "version": "1.10.0",
  2392. "source": {
  2393. "type": "git",
  2394. "url": "https://git.drupalcode.org/project/audiofield.git",
  2395. "reference": "8.x-1.10"
  2396. },
  2397. "dist": {
  2398. "type": "zip",
  2399. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.10.zip",
  2400. "reference": "8.x-1.10",
  2401. "shasum": "0b321f6c01b77c2ff28ef8cb646af8ec223dc4c1"
  2402. },
  2403. "require": {
  2404. "drupal/core": "^8 || ^9"
  2405. },
  2406. "type": "drupal-module",
  2407. "extra": {
  2408. "drupal": {
  2409. "version": "8.x-1.10",
  2410. "datestamp": "1607014410",
  2411. "security-coverage": {
  2412. "status": "covered",
  2413. "message": "Covered by Drupal's security advisory policy"
  2414. }
  2415. },
  2416. "drush": {
  2417. "services": {
  2418. "drush.services.yml": "^9"
  2419. }
  2420. }
  2421. },
  2422. "notification-url": "https://packages.drupal.org/8/downloads",
  2423. "license": [
  2424. "GPL-2.0-or-later"
  2425. ],
  2426. "authors": [
  2427. {
  2428. "name": "Daniel Moberly",
  2429. "homepage": "https://www.drupal.org/u/danielmoberly",
  2430. "role": "Maintainer"
  2431. },
  2432. {
  2433. "name": "josipsaric",
  2434. "homepage": "https://www.drupal.org/user/3063287"
  2435. },
  2436. {
  2437. "name": "tamerzg",
  2438. "homepage": "https://www.drupal.org/user/464564"
  2439. }
  2440. ],
  2441. "description": "AudioField Module",
  2442. "homepage": "https://www.drupal.org/project/audiofield",
  2443. "support": {
  2444. "source": "https://git.drupalcode.org/project/audiofield",
  2445. "issues": "https://www.drupal.org/project/issues/audiofield"
  2446. }
  2447. },
  2448. {
  2449. "name": "drupal/auto_entitylabel",
  2450. "version": "dev-3.x",
  2451. "source": {
  2452. "type": "git",
  2453. "url": "https://git.drupalcode.org/project/auto_entitylabel.git",
  2454. "reference": "7d2063d5ee869d20e00409eca12bf6776fff7772"
  2455. },
  2456. "require": {
  2457. "drupal/core": "^8 || ^9"
  2458. },
  2459. "require-dev": {
  2460. "drupal/token": "^1.0"
  2461. },
  2462. "type": "drupal-module",
  2463. "extra": {
  2464. "branch-alias": {
  2465. "dev-3.x": "3.x-dev"
  2466. },
  2467. "drupal": {
  2468. "version": "8.x-3.0-beta3+6-dev",
  2469. "datestamp": "1609346741",
  2470. "security-coverage": {
  2471. "status": "not-covered",
  2472. "message": "Dev releases are not covered by Drupal security advisories."
  2473. }
  2474. }
  2475. },
  2476. "notification-url": "https://packages.drupal.org/8/downloads",
  2477. "license": [
  2478. "GPL-2.0-or-later"
  2479. ],
  2480. "authors": [
  2481. {
  2482. "name": "Pravin Ajaaz",
  2483. "homepage": "https://www.drupal.org/user/2910049"
  2484. },
  2485. {
  2486. "name": "RenatoG",
  2487. "homepage": "https://www.drupal.org/user/3326031"
  2488. },
  2489. {
  2490. "name": "VladimirAus",
  2491. "homepage": "https://www.drupal.org/user/673120"
  2492. },
  2493. {
  2494. "name": "bforchhammer",
  2495. "homepage": "https://www.drupal.org/user/216396"
  2496. },
  2497. {
  2498. "name": "colan",
  2499. "homepage": "https://www.drupal.org/user/58704"
  2500. },
  2501. {
  2502. "name": "diqidoq",
  2503. "homepage": "https://www.drupal.org/user/1001934"
  2504. },
  2505. {
  2506. "name": "purushotam.rai",
  2507. "homepage": "https://www.drupal.org/user/3193859"
  2508. }
  2509. ],
  2510. "description": "Allows hiding of entity label fields and automatic label creation.",
  2511. "homepage": "https://www.drupal.org/project/auto_entitylabel",
  2512. "support": {
  2513. "source": "https://git.drupalcode.org/project/auto_entitylabel",
  2514. "issues": "https://www.drupal.org/project/issues/auto_entitylabel"
  2515. },
  2516. "time": "2021-03-01T17:14:07+00:00"
  2517. },
  2518. {
  2519. "name": "drupal/autocomplete_deluxe",
  2520. "version": "2.0.0-rc1",
  2521. "source": {
  2522. "type": "git",
  2523. "url": "https://git.drupalcode.org/project/autocomplete_deluxe.git",
  2524. "reference": "2.0.0-rc1"
  2525. },
  2526. "dist": {
  2527. "type": "zip",
  2528. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-2.0.0-rc1.zip",
  2529. "reference": "2.0.0-rc1",
  2530. "shasum": "9f3c63862652862322184bb892cc1fa80c9f47c1"
  2531. },
  2532. "require": {
  2533. "drupal/core": "^8 || ^9"
  2534. },
  2535. "type": "drupal-module",
  2536. "extra": {
  2537. "drupal": {
  2538. "version": "2.0.0-rc1",
  2539. "datestamp": "1592389562",
  2540. "security-coverage": {
  2541. "status": "not-covered",
  2542. "message": "RC releases are not covered by Drupal security advisories."
  2543. }
  2544. }
  2545. },
  2546. "notification-url": "https://packages.drupal.org/8/downloads",
  2547. "license": [
  2548. "GPL-2.0-or-later"
  2549. ],
  2550. "authors": [
  2551. {
  2552. "name": "Vardot",
  2553. "homepage": "https://www.drupal.org/vardot",
  2554. "role": "Maintenance for D8 and D9 versions"
  2555. },
  2556. {
  2557. "name": "Mediacurrent",
  2558. "homepage": "https://www.drupal.org/mediacurrent",
  2559. "role": "Supporting organization"
  2560. },
  2561. {
  2562. "name": "RajabNatshah",
  2563. "homepage": "https://www.drupal.org/user/1414312"
  2564. },
  2565. {
  2566. "name": "edwardchiapet",
  2567. "homepage": "https://www.drupal.org/user/2354784"
  2568. },
  2569. {
  2570. "name": "mpriscella",
  2571. "homepage": "https://www.drupal.org/user/2354820"
  2572. },
  2573. {
  2574. "name": "sepgil",
  2575. "homepage": "https://www.drupal.org/user/512828"
  2576. }
  2577. ],
  2578. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  2579. "homepage": "https://www.drupal.org/project/autocomplete_deluxe",
  2580. "support": {
  2581. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  2582. "issues": "https://www.drupal.org/project/issues/autocomplete_deluxe"
  2583. }
  2584. },
  2585. {
  2586. "name": "drupal/autologout",
  2587. "version": "1.3.0",
  2588. "source": {
  2589. "type": "git",
  2590. "url": "https://git.drupalcode.org/project/autologout.git",
  2591. "reference": "8.x-1.3"
  2592. },
  2593. "dist": {
  2594. "type": "zip",
  2595. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.3.zip",
  2596. "reference": "8.x-1.3",
  2597. "shasum": "87733b2042d9dcdee0d8f33d206872208a8c97ea"
  2598. },
  2599. "require": {
  2600. "drupal/core": "^8 || ^9"
  2601. },
  2602. "type": "drupal-module",
  2603. "extra": {
  2604. "drupal": {
  2605. "version": "8.x-1.3",
  2606. "datestamp": "1587193798",
  2607. "security-coverage": {
  2608. "status": "covered",
  2609. "message": "Covered by Drupal's security advisory policy"
  2610. }
  2611. }
  2612. },
  2613. "notification-url": "https://packages.drupal.org/8/downloads",
  2614. "license": [
  2615. "GPL-2.0+"
  2616. ],
  2617. "authors": [
  2618. {
  2619. "name": "AjK",
  2620. "homepage": "https://www.drupal.org/user/39030"
  2621. },
  2622. {
  2623. "name": "AjitS",
  2624. "homepage": "https://www.drupal.org/user/981944"
  2625. },
  2626. {
  2627. "name": "boshtian",
  2628. "homepage": "https://www.drupal.org/user/1773456"
  2629. },
  2630. {
  2631. "name": "dandrews",
  2632. "homepage": "https://www.drupal.org/user/2014490"
  2633. },
  2634. {
  2635. "name": "darksnow",
  2636. "homepage": "https://www.drupal.org/user/391915"
  2637. },
  2638. {
  2639. "name": "johnennew",
  2640. "homepage": "https://www.drupal.org/user/1150042"
  2641. },
  2642. {
  2643. "name": "jrglasgow",
  2644. "homepage": "https://www.drupal.org/user/36590"
  2645. },
  2646. {
  2647. "name": "kmasood",
  2648. "homepage": "https://www.drupal.org/user/1262860"
  2649. },
  2650. {
  2651. "name": "levelos",
  2652. "homepage": "https://www.drupal.org/user/54135"
  2653. },
  2654. {
  2655. "name": "prabeen.giri",
  2656. "homepage": "https://www.drupal.org/user/913078"
  2657. },
  2658. {
  2659. "name": "str8",
  2660. "homepage": "https://www.drupal.org/user/2865063"
  2661. }
  2662. ],
  2663. "description": "Adds automated timed logout.",
  2664. "homepage": "http://drupal.org/project/autologout",
  2665. "support": {
  2666. "source": "https://git.drupalcode.org/project/autologout"
  2667. }
  2668. },
  2669. {
  2670. "name": "drupal/better_exposed_filters",
  2671. "version": "5.0.0-beta1",
  2672. "source": {
  2673. "type": "git",
  2674. "url": "https://git.drupalcode.org/project/better_exposed_filters.git",
  2675. "reference": "8.x-5.0-beta1"
  2676. },
  2677. "dist": {
  2678. "type": "zip",
  2679. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-8.x-5.0-beta1.zip",
  2680. "reference": "8.x-5.0-beta1",
  2681. "shasum": "bc5ce873fa699ee584fdeb2fd28ad6c5cb456b03"
  2682. },
  2683. "require": {
  2684. "drupal/core": "^8.8 || ^9",
  2685. "drupal/jquery_ui": "^1.4",
  2686. "drupal/jquery_ui_datepicker": "^1.0",
  2687. "drupal/jquery_ui_slider": "^1.1",
  2688. "drupal/jquery_ui_touch_punch": "^1.0"
  2689. },
  2690. "type": "drupal-module",
  2691. "extra": {
  2692. "drupal": {
  2693. "version": "8.x-5.0-beta1",
  2694. "datestamp": "1594141892",
  2695. "security-coverage": {
  2696. "status": "not-covered",
  2697. "message": "Beta releases are not covered by Drupal security advisories."
  2698. }
  2699. }
  2700. },
  2701. "notification-url": "https://packages.drupal.org/8/downloads",
  2702. "license": [
  2703. "GPL-2.0+"
  2704. ],
  2705. "authors": [
  2706. {
  2707. "name": "Mike Keran",
  2708. "homepage": "https://www.drupal.org/u/mikeker"
  2709. },
  2710. {
  2711. "name": "Martin Keereman",
  2712. "homepage": "https://www.drupal.org/u/etroid"
  2713. },
  2714. {
  2715. "name": "chr.fritsch",
  2716. "homepage": "https://www.drupal.org/user/2103716"
  2717. },
  2718. {
  2719. "name": "jkopel",
  2720. "homepage": "https://www.drupal.org/user/66207"
  2721. },
  2722. {
  2723. "name": "mikeker",
  2724. "homepage": "https://www.drupal.org/user/192273"
  2725. },
  2726. {
  2727. "name": "rlhawk",
  2728. "homepage": "https://www.drupal.org/user/352283"
  2729. }
  2730. ],
  2731. "description": "Replaces the Views default single- or multi-select boxes with more advanced options.",
  2732. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2733. "support": {
  2734. "source": "https://git.drupalcode.org/project/better_exposed_filters",
  2735. "issues": "https://www.drupal.org/project/issues/better_exposed_filters"
  2736. }
  2737. },
  2738. {
  2739. "name": "drupal/betterlogin",
  2740. "version": "1.5.0",
  2741. "source": {
  2742. "type": "git",
  2743. "url": "https://git.drupalcode.org/project/betterlogin.git",
  2744. "reference": "8.x-1.5"
  2745. },
  2746. "dist": {
  2747. "type": "zip",
  2748. "url": "https://ftp.drupal.org/files/projects/betterlogin-8.x-1.5.zip",
  2749. "reference": "8.x-1.5",
  2750. "shasum": "2351972813754d0d4f15e49c9a933450dc1297f0"
  2751. },
  2752. "require": {
  2753. "drupal/core": "^8 || ^9"
  2754. },
  2755. "type": "drupal-module",
  2756. "extra": {
  2757. "drupal": {
  2758. "version": "8.x-1.5",
  2759. "datestamp": "1588242718",
  2760. "security-coverage": {
  2761. "status": "covered",
  2762. "message": "Covered by Drupal's security advisory policy"
  2763. }
  2764. }
  2765. },
  2766. "notification-url": "https://packages.drupal.org/8/downloads",
  2767. "license": [
  2768. "GPL-2.0-or-later"
  2769. ],
  2770. "authors": [
  2771. {
  2772. "name": "theamoeba",
  2773. "homepage": "https://www.drupal.org/user/251700"
  2774. },
  2775. {
  2776. "name": "yogeshmpawar",
  2777. "homepage": "https://www.drupal.org/user/2922907"
  2778. }
  2779. ],
  2780. "description": "Make the login screens better :)",
  2781. "homepage": "https://www.drupal.org/project/betterlogin",
  2782. "support": {
  2783. "source": "https://git.drupalcode.org/project/betterlogin"
  2784. }
  2785. },
  2786. {
  2787. "name": "drupal/block_class",
  2788. "version": "1.3.0",
  2789. "source": {
  2790. "type": "git",
  2791. "url": "https://git.drupalcode.org/project/block_class.git",
  2792. "reference": "8.x-1.3"
  2793. },
  2794. "dist": {
  2795. "type": "zip",
  2796. "url": "https://ftp.drupal.org/files/projects/block_class-8.x-1.3.zip",
  2797. "reference": "8.x-1.3",
  2798. "shasum": "29cfdb646ef83210f0eced30b38243339158fe3f"
  2799. },
  2800. "require": {
  2801. "drupal/core": "^8 || ^9"
  2802. },
  2803. "type": "drupal-module",
  2804. "extra": {
  2805. "drupal": {
  2806. "version": "8.x-1.3",
  2807. "datestamp": "1604426178",
  2808. "security-coverage": {
  2809. "status": "covered",
  2810. "message": "Covered by Drupal's security advisory policy"
  2811. }
  2812. }
  2813. },
  2814. "notification-url": "https://packages.drupal.org/8/downloads",
  2815. "license": [
  2816. "GPL-2.0-or-later"
  2817. ],
  2818. "authors": [
  2819. {
  2820. "name": "Todd Nienkerk",
  2821. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2822. "role": "Maintainer"
  2823. },
  2824. {
  2825. "name": "Renato Gonçalves (RenatoG)",
  2826. "homepage": "https://www.drupal.org/u/RenatoG",
  2827. "email": "renatog@ciandt.com",
  2828. "role": "Maintainer"
  2829. },
  2830. {
  2831. "name": "Neslee Canil Pinto",
  2832. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  2833. "role": "Maintainer"
  2834. },
  2835. {
  2836. "name": "Aaron Stanush",
  2837. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2838. "role": "Maintainer"
  2839. },
  2840. {
  2841. "name": "David Suissa (DYdave)",
  2842. "homepage": "https://www.drupal.org/u/DYdave",
  2843. "role": "Maintainer"
  2844. },
  2845. {
  2846. "name": "Four Kitchens",
  2847. "homepage": "https://www.drupal.org/user/358502",
  2848. "role": "Maintainer"
  2849. },
  2850. {
  2851. "name": "berenddeboer",
  2852. "homepage": "https://www.drupal.org/u/berenddeboer",
  2853. "role": "Maintainer"
  2854. },
  2855. {
  2856. "name": "elliotttf",
  2857. "homepage": "https://www.drupal.org/u/elliotttf",
  2858. "role": "Maintainer"
  2859. },
  2860. {
  2861. "name": "Michal Minecki (mirzu)",
  2862. "homepage": "https://www.drupal.org/u/mirzu",
  2863. "role": "Maintainer"
  2864. },
  2865. {
  2866. "name": "Patrick Coffey (pcoffey)",
  2867. "homepage": "https://www.drupal.org/u/pcoffey",
  2868. "role": "Maintainer"
  2869. },
  2870. {
  2871. "name": "Taylor Smith (tsmith512)",
  2872. "homepage": "https://www.drupal.org/u/tsmith512",
  2873. "role": "Maintainer"
  2874. }
  2875. ],
  2876. "description": "Allows assigning classes to Blocks.",
  2877. "homepage": "https://www.drupal.org/project/block_class",
  2878. "keywords": [
  2879. "Drupal"
  2880. ],
  2881. "support": {
  2882. "source": "https://git.drupalcode.org/project/block_class",
  2883. "issues": "https://www.drupal.org/project/issues/block_class",
  2884. "irc": "irc://irc.freenode.org/drupal-contribute"
  2885. }
  2886. },
  2887. {
  2888. "name": "drupal/bulkdelete",
  2889. "version": "dev-1.x",
  2890. "source": {
  2891. "type": "git",
  2892. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2893. "reference": "36e12429e99606463b9ef15203c2018de69965b2"
  2894. },
  2895. "require": {
  2896. "drupal/core": "^8.7.7 || ^9"
  2897. },
  2898. "type": "drupal-module",
  2899. "extra": {
  2900. "branch-alias": {
  2901. "dev-1.x": "1.x-dev"
  2902. },
  2903. "drupal": {
  2904. "version": "8.x-1.x-dev",
  2905. "datestamp": "1590300128",
  2906. "security-coverage": {
  2907. "status": "not-covered",
  2908. "message": "Dev releases are not covered by Drupal security advisories."
  2909. }
  2910. }
  2911. },
  2912. "notification-url": "https://packages.drupal.org/8/downloads",
  2913. "license": [
  2914. "GPL-2.0-or-later"
  2915. ],
  2916. "authors": [
  2917. {
  2918. "name": "Kars-T",
  2919. "homepage": "https://www.drupal.org/user/224499"
  2920. },
  2921. {
  2922. "name": "Rahul Seth",
  2923. "homepage": "https://www.drupal.org/user/2694359"
  2924. },
  2925. {
  2926. "name": "adriancid",
  2927. "homepage": "https://www.drupal.org/user/1962106"
  2928. },
  2929. {
  2930. "name": "robertDouglass",
  2931. "homepage": "https://www.drupal.org/user/5449"
  2932. }
  2933. ],
  2934. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2935. "homepage": "https://www.drupal.org/project/bulkdelete",
  2936. "support": {
  2937. "source": "https://git.drupalcode.org/project/bulkdelete"
  2938. },
  2939. "time": "2020-05-24T06:01:38+00:00"
  2940. },
  2941. {
  2942. "name": "drupal/cer",
  2943. "version": "4.0.0-alpha3",
  2944. "source": {
  2945. "type": "git",
  2946. "url": "https://git.drupalcode.org/project/cer.git",
  2947. "reference": "8.x-4.0-alpha3"
  2948. },
  2949. "dist": {
  2950. "type": "zip",
  2951. "url": "https://ftp.drupal.org/files/projects/cer-8.x-4.0-alpha3.zip",
  2952. "reference": "8.x-4.0-alpha3",
  2953. "shasum": "3c508e842a2c17235e4c9909ab64ef1aeb9d3ebe"
  2954. },
  2955. "require": {
  2956. "drupal/core": "^8 || ^9"
  2957. },
  2958. "type": "drupal-module",
  2959. "extra": {
  2960. "drupal": {
  2961. "version": "8.x-4.0-alpha3",
  2962. "datestamp": "1620240213",
  2963. "security-coverage": {
  2964. "status": "not-covered",
  2965. "message": "Project has not opted into security advisory coverage!"
  2966. }
  2967. }
  2968. },
  2969. "notification-url": "https://packages.drupal.org/8/downloads",
  2970. "license": [
  2971. "GPL-2.0-or-later"
  2972. ],
  2973. "authors": [
  2974. {
  2975. "name": "bmcclure",
  2976. "homepage": "https://www.drupal.org/user/278485"
  2977. },
  2978. {
  2979. "name": "chertzog",
  2980. "homepage": "https://www.drupal.org/user/806366"
  2981. },
  2982. {
  2983. "name": "gcb",
  2984. "homepage": "https://www.drupal.org/user/1682976"
  2985. },
  2986. {
  2987. "name": "gregcube",
  2988. "homepage": "https://www.drupal.org/user/336930"
  2989. },
  2990. {
  2991. "name": "jrglasgow",
  2992. "homepage": "https://www.drupal.org/user/36590"
  2993. },
  2994. {
  2995. "name": "phenaproxima",
  2996. "homepage": "https://www.drupal.org/user/205645"
  2997. }
  2998. ],
  2999. "description": "Allows user to create two-way references between entities.",
  3000. "homepage": "https://www.drupal.org/project/cer",
  3001. "support": {
  3002. "source": "https://git.drupalcode.org/project/cer"
  3003. }
  3004. },
  3005. {
  3006. "name": "drupal/config_devel",
  3007. "version": "dev-1.x",
  3008. "source": {
  3009. "type": "git",
  3010. "url": "https://git.drupalcode.org/project/config_devel.git",
  3011. "reference": "e519faae46b88fc23a88f64c22b6146cfec863a9"
  3012. },
  3013. "require": {
  3014. "drupal/core": "^8 || ^9"
  3015. },
  3016. "type": "drupal-module",
  3017. "extra": {
  3018. "branch-alias": {
  3019. "dev-1.x": "1.x-dev"
  3020. },
  3021. "drupal": {
  3022. "version": "8.x-1.7+3-dev",
  3023. "datestamp": "1607535421",
  3024. "security-coverage": {
  3025. "status": "not-covered",
  3026. "message": "Dev releases are not covered by Drupal security advisories."
  3027. }
  3028. }
  3029. },
  3030. "notification-url": "https://packages.drupal.org/8/downloads",
  3031. "license": [
  3032. "GPL-2.0+"
  3033. ],
  3034. "authors": [
  3035. {
  3036. "name": "alexpott",
  3037. "homepage": "https://www.drupal.org/user/157725"
  3038. },
  3039. {
  3040. "name": "benjy",
  3041. "homepage": "https://www.drupal.org/user/1852732"
  3042. },
  3043. {
  3044. "name": "chx",
  3045. "homepage": "https://www.drupal.org/user/9446"
  3046. },
  3047. {
  3048. "name": "joachim",
  3049. "homepage": "https://www.drupal.org/user/107701"
  3050. },
  3051. {
  3052. "name": "nedjo",
  3053. "homepage": "https://www.drupal.org/user/4481"
  3054. },
  3055. {
  3056. "name": "tim.plunkett",
  3057. "homepage": "https://www.drupal.org/user/241634"
  3058. },
  3059. {
  3060. "name": "vijaycs85",
  3061. "homepage": "https://www.drupal.org/user/93488"
  3062. }
  3063. ],
  3064. "description": "Helps developers work with configuration.",
  3065. "homepage": "https://www.drupal.org/project/config_devel",
  3066. "support": {
  3067. "source": "https://git.drupalcode.org/project/config_devel"
  3068. },
  3069. "time": "2020-12-11T15:36:08+00:00"
  3070. },
  3071. {
  3072. "name": "drupal/config_filter",
  3073. "version": "1.8.0",
  3074. "source": {
  3075. "type": "git",
  3076. "url": "https://git.drupalcode.org/project/config_filter.git",
  3077. "reference": "8.x-1.8"
  3078. },
  3079. "dist": {
  3080. "type": "zip",
  3081. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.8.zip",
  3082. "reference": "8.x-1.8",
  3083. "shasum": "5def5f97e79d6f5af6bb7007f012443475c90bfe"
  3084. },
  3085. "require": {
  3086. "drupal/core": "^8 || ^9"
  3087. },
  3088. "suggest": {
  3089. "drupal/config_split": "Split site configuration for different environments."
  3090. },
  3091. "type": "drupal-module",
  3092. "extra": {
  3093. "drupal": {
  3094. "version": "8.x-1.8",
  3095. "datestamp": "1603870062",
  3096. "security-coverage": {
  3097. "status": "covered",
  3098. "message": "Covered by Drupal's security advisory policy"
  3099. }
  3100. }
  3101. },
  3102. "notification-url": "https://packages.drupal.org/8/downloads",
  3103. "license": [
  3104. "GPL-2.0-or-later"
  3105. ],
  3106. "authors": [
  3107. {
  3108. "name": "Fabian Bircher",
  3109. "homepage": "https://www.drupal.org/u/bircher",
  3110. "email": "opensource@fabianbircher.com",
  3111. "role": "Maintainer"
  3112. },
  3113. {
  3114. "name": "Nuvole Web",
  3115. "homepage": "http://nuvole.org",
  3116. "email": "info@nuvole.org",
  3117. "role": "Maintainer"
  3118. },
  3119. {
  3120. "name": "pescetti",
  3121. "homepage": "https://www.drupal.org/user/436244"
  3122. }
  3123. ],
  3124. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  3125. "homepage": "https://www.drupal.org/project/config_filter",
  3126. "keywords": [
  3127. "Drupal",
  3128. "configuration",
  3129. "configuration management"
  3130. ],
  3131. "support": {
  3132. "source": "https://git.drupalcode.org/project/config_filter",
  3133. "issues": "https://www.drupal.org/project/issues/config_filter",
  3134. "slack": "https://drupal.slack.com/archives/C45342CDD"
  3135. }
  3136. },
  3137. {
  3138. "name": "drupal/config_ignore",
  3139. "version": "2.3.0",
  3140. "source": {
  3141. "type": "git",
  3142. "url": "https://git.drupalcode.org/project/config_ignore.git",
  3143. "reference": "8.x-2.3"
  3144. },
  3145. "dist": {
  3146. "type": "zip",
  3147. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.3.zip",
  3148. "reference": "8.x-2.3",
  3149. "shasum": "2e1f07a455275fb6637909921a8915646601fc00"
  3150. },
  3151. "require": {
  3152. "drupal/config_filter": "^1 || ^2",
  3153. "drupal/core": "^8 || ^9"
  3154. },
  3155. "type": "drupal-module",
  3156. "extra": {
  3157. "drupal": {
  3158. "version": "8.x-2.3",
  3159. "datestamp": "1608306489",
  3160. "security-coverage": {
  3161. "status": "covered",
  3162. "message": "Covered by Drupal's security advisory policy"
  3163. }
  3164. }
  3165. },
  3166. "notification-url": "https://packages.drupal.org/8/downloads",
  3167. "license": [
  3168. "GPL-2.0-or-later"
  3169. ],
  3170. "authors": [
  3171. {
  3172. "name": "Tommy Lynge Jørgensen",
  3173. "homepage": "https://www.drupal.org/u/tlyngej",
  3174. "email": "tlyngej@gmail.com",
  3175. "role": "Maintainer"
  3176. },
  3177. {
  3178. "name": "Fabian Bircher",
  3179. "homepage": "https://www.drupal.org/u/bircher",
  3180. "role": "Maintainer"
  3181. },
  3182. {
  3183. "name": "tlyngej",
  3184. "homepage": "https://www.drupal.org/user/413139"
  3185. }
  3186. ],
  3187. "description": "Ignore certain configuration during import.",
  3188. "homepage": "http://drupal.org/project/config_ignore",
  3189. "support": {
  3190. "source": "https://git.drupalcode.org/project/config_ignore",
  3191. "issues": "http://drupal.org/project/config_ignore",
  3192. "irc": "irc://irc.freenode.org/drupal-contribute"
  3193. }
  3194. },
  3195. {
  3196. "name": "drupal/config_update",
  3197. "version": "1.7.0",
  3198. "source": {
  3199. "type": "git",
  3200. "url": "https://git.drupalcode.org/project/config_update.git",
  3201. "reference": "8.x-1.7"
  3202. },
  3203. "dist": {
  3204. "type": "zip",
  3205. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.7.zip",
  3206. "reference": "8.x-1.7",
  3207. "shasum": "8f079abf7c2ea826a27fa5224b0770a26404c968"
  3208. },
  3209. "require": {
  3210. "drupal/core": "^8 || ^9"
  3211. },
  3212. "type": "drupal-module",
  3213. "extra": {
  3214. "drupal": {
  3215. "version": "8.x-1.7",
  3216. "datestamp": "1586355587",
  3217. "security-coverage": {
  3218. "status": "covered",
  3219. "message": "Covered by Drupal's security advisory policy"
  3220. }
  3221. }
  3222. },
  3223. "notification-url": "https://packages.drupal.org/8/downloads",
  3224. "license": [
  3225. "GPL-2.0-or-later"
  3226. ],
  3227. "authors": [
  3228. {
  3229. "name": "jhodgdon",
  3230. "homepage": "https://www.drupal.org/user/155601"
  3231. },
  3232. {
  3233. "name": "nedjo",
  3234. "homepage": "https://www.drupal.org/user/4481"
  3235. }
  3236. ],
  3237. "description": "Provides basic revert and update functionality for other modules",
  3238. "homepage": "https://www.drupal.org/project/config_update",
  3239. "support": {
  3240. "source": "https://git.drupalcode.org/project/config_update"
  3241. }
  3242. },
  3243. {
  3244. "name": "drupal/console",
  3245. "version": "1.9.7",
  3246. "source": {
  3247. "type": "git",
  3248. "url": "https://github.com/hechoendrupal/drupal-console.git",
  3249. "reference": "90053d30f52427edb4e4941a9063acb65b5a2c1e"
  3250. },
  3251. "dist": {
  3252. "type": "zip",
  3253. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/90053d30f52427edb4e4941a9063acb65b5a2c1e",
  3254. "reference": "90053d30f52427edb4e4941a9063acb65b5a2c1e",
  3255. "shasum": ""
  3256. },
  3257. "require": {
  3258. "alchemy/zippy": "~0.4",
  3259. "composer/installers": "~1.0",
  3260. "doctrine/annotations": "^1.2",
  3261. "doctrine/collections": "^1.3",
  3262. "drupal/console-core": "1.9.7",
  3263. "drupal/console-extend-plugin": "~0.9.5",
  3264. "php": ">=7.0.8",
  3265. "psy/psysh": "0.6.* || ~0.8",
  3266. "symfony/css-selector": "~3.0|~4.0",
  3267. "symfony/dom-crawler": "~3.0|~4.0",
  3268. "symfony/http-foundation": "~3.0|~4.0"
  3269. },
  3270. "suggest": {
  3271. "symfony/thanks": "Thank your favorite PHP projects on GitHub using the CLI",
  3272. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically"
  3273. },
  3274. "bin": [
  3275. "bin/drupal"
  3276. ],
  3277. "type": "library",
  3278. "autoload": {
  3279. "psr-4": {
  3280. "Drupal\\Console\\": "src"
  3281. }
  3282. },
  3283. "notification-url": "https://packagist.org/downloads/",
  3284. "license": [
  3285. "GPL-2.0-or-later"
  3286. ],
  3287. "authors": [
  3288. {
  3289. "name": "David Flores",
  3290. "email": "dmousex@gmail.com",
  3291. "homepage": "http://dmouse.net"
  3292. },
  3293. {
  3294. "name": "Jesus Manuel Olivas",
  3295. "email": "jesus.olivas@gmail.com",
  3296. "homepage": "http://jmolivas.com"
  3297. },
  3298. {
  3299. "name": "Eduardo Garcia",
  3300. "email": "enzo@enzolutions.com",
  3301. "homepage": "http://enzolutions.com/"
  3302. },
  3303. {
  3304. "name": "Omar Aguirre",
  3305. "email": "omersguchigu@gmail.com"
  3306. },
  3307. {
  3308. "name": "Drupal Console Contributors",
  3309. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  3310. }
  3311. ],
  3312. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  3313. "homepage": "http://drupalconsole.com/",
  3314. "keywords": [
  3315. "console",
  3316. "development",
  3317. "drupal",
  3318. "symfony"
  3319. ],
  3320. "funding": [
  3321. {
  3322. "url": "https://opencollective.com/drupalconsole",
  3323. "type": "open_collective"
  3324. }
  3325. ],
  3326. "time": "2020-11-30T02:09:53+00:00"
  3327. },
  3328. {
  3329. "name": "drupal/console-core",
  3330. "version": "1.9.7",
  3331. "source": {
  3332. "type": "git",
  3333. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  3334. "reference": "ab3abc2631761c9588230ba88189d9ba4eb9ed63"
  3335. },
  3336. "dist": {
  3337. "type": "zip",
  3338. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/ab3abc2631761c9588230ba88189d9ba4eb9ed63",
  3339. "reference": "ab3abc2631761c9588230ba88189d9ba4eb9ed63",
  3340. "shasum": ""
  3341. },
  3342. "require": {
  3343. "dflydev/dot-access-configuration": "^1.0",
  3344. "drupal/console-en": "1.9.7",
  3345. "guzzlehttp/guzzle": "~6.1",
  3346. "php": ">=7.0.8",
  3347. "stecman/symfony-console-completion": "~0.7",
  3348. "symfony/config": "~3.0|^4.4",
  3349. "symfony/console": "~3.0|^4.4",
  3350. "symfony/debug": "~3.0|^4.4",
  3351. "symfony/dependency-injection": "~3.0|^4.4",
  3352. "symfony/event-dispatcher": "~3.0|^4.4",
  3353. "symfony/filesystem": "~3.0|^4.4",
  3354. "symfony/finder": "~3.0|^4.4",
  3355. "symfony/process": "~3.0|^4.4",
  3356. "symfony/translation": "~3.0|^4.4",
  3357. "symfony/yaml": "~3.0|^4.4",
  3358. "twig/twig": "^1.38.2|^2.12.0",
  3359. "webflo/drupal-finder": "^1.0",
  3360. "webmozart/path-util": "^2.3"
  3361. },
  3362. "type": "library",
  3363. "autoload": {
  3364. "files": [
  3365. "src/functions.php"
  3366. ],
  3367. "psr-4": {
  3368. "Drupal\\Console\\Core\\": "src"
  3369. }
  3370. },
  3371. "notification-url": "https://packagist.org/downloads/",
  3372. "license": [
  3373. "GPL-2.0-or-later"
  3374. ],
  3375. "authors": [
  3376. {
  3377. "name": "David Flores",
  3378. "email": "dmousex@gmail.com",
  3379. "homepage": "http://dmouse.net"
  3380. },
  3381. {
  3382. "name": "Jesus Manuel Olivas",
  3383. "email": "jesus.olivas@gmail.com",
  3384. "homepage": "http://jmolivas.com"
  3385. },
  3386. {
  3387. "name": "Eduardo Garcia",
  3388. "email": "enzo@enzolutions.com",
  3389. "homepage": "http://enzolutions.com/"
  3390. },
  3391. {
  3392. "name": "Omar Aguirre",
  3393. "email": "omersguchigu@gmail.com"
  3394. },
  3395. {
  3396. "name": "Drupal Console Contributors",
  3397. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3398. }
  3399. ],
  3400. "description": "Drupal Console Core",
  3401. "homepage": "http://drupalconsole.com/",
  3402. "keywords": [
  3403. "console",
  3404. "development",
  3405. "drupal",
  3406. "symfony"
  3407. ],
  3408. "time": "2020-11-30T01:45:57+00:00"
  3409. },
  3410. {
  3411. "name": "drupal/console-en",
  3412. "version": "v1.9.7",
  3413. "source": {
  3414. "type": "git",
  3415. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  3416. "reference": "7594601fff153c2799a62bd678ff80749baeee0c"
  3417. },
  3418. "dist": {
  3419. "type": "zip",
  3420. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/7594601fff153c2799a62bd678ff80749baeee0c",
  3421. "reference": "7594601fff153c2799a62bd678ff80749baeee0c",
  3422. "shasum": ""
  3423. },
  3424. "type": "library",
  3425. "notification-url": "https://packagist.org/downloads/",
  3426. "license": [
  3427. "GPL-2.0-or-later"
  3428. ],
  3429. "authors": [
  3430. {
  3431. "name": "David Flores",
  3432. "email": "dmousex@gmail.com",
  3433. "homepage": "http://dmouse.net"
  3434. },
  3435. {
  3436. "name": "Jesus Manuel Olivas",
  3437. "email": "jesus.olivas@gmail.com",
  3438. "homepage": "http://jmolivas.com"
  3439. },
  3440. {
  3441. "name": "Eduardo Garcia",
  3442. "email": "enzo@enzolutions.com",
  3443. "homepage": "http://enzolutions.com/"
  3444. },
  3445. {
  3446. "name": "Omar Aguirre",
  3447. "email": "omersguchigu@gmail.com"
  3448. },
  3449. {
  3450. "name": "Drupal Console Contributors",
  3451. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3452. }
  3453. ],
  3454. "description": "Drupal Console English Language",
  3455. "homepage": "http://drupalconsole.com/",
  3456. "keywords": [
  3457. "console",
  3458. "development",
  3459. "drupal",
  3460. "symfony"
  3461. ],
  3462. "time": "2020-08-15T03:34:54+00:00"
  3463. },
  3464. {
  3465. "name": "drupal/console-extend-plugin",
  3466. "version": "0.9.5",
  3467. "source": {
  3468. "type": "git",
  3469. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  3470. "reference": "eff6da99cfb5fe1fc60990672d2667c402eb3585"
  3471. },
  3472. "dist": {
  3473. "type": "zip",
  3474. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/eff6da99cfb5fe1fc60990672d2667c402eb3585",
  3475. "reference": "eff6da99cfb5fe1fc60990672d2667c402eb3585",
  3476. "shasum": ""
  3477. },
  3478. "require": {
  3479. "composer-plugin-api": "^1.0 || ^2.0",
  3480. "composer/installers": "^1.2",
  3481. "symfony/finder": "~3.0|^4.4",
  3482. "symfony/yaml": "~3.0|^4.4"
  3483. },
  3484. "type": "composer-plugin",
  3485. "extra": {
  3486. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  3487. },
  3488. "autoload": {
  3489. "psr-4": {
  3490. "Drupal\\Console\\Composer\\Plugin\\": "src"
  3491. }
  3492. },
  3493. "notification-url": "https://packagist.org/downloads/",
  3494. "license": [
  3495. "GPL-2.0+"
  3496. ],
  3497. "authors": [
  3498. {
  3499. "name": "Jesus Manuel Olivas",
  3500. "email": "jesus.olivas@gmail.com"
  3501. }
  3502. ],
  3503. "description": "Drupal Console Extend Plugin",
  3504. "time": "2020-11-18T00:15:28+00:00"
  3505. },
  3506. {
  3507. "name": "drupal/content_lock",
  3508. "version": "2.2.0",
  3509. "source": {
  3510. "type": "git",
  3511. "url": "https://git.drupalcode.org/project/content_lock.git",
  3512. "reference": "8.x-2.2"
  3513. },
  3514. "dist": {
  3515. "type": "zip",
  3516. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.2.zip",
  3517. "reference": "8.x-2.2",
  3518. "shasum": "9ea5810067c0df18879a16a19236e0cb46f9fba7"
  3519. },
  3520. "require": {
  3521. "drupal/core": "^8.8|^9.0"
  3522. },
  3523. "require-dev": {
  3524. "drupal/conflict": "^2.0@ALPHA",
  3525. "drupal/prefetch_cache": "dev-1.x"
  3526. },
  3527. "type": "drupal-module",
  3528. "extra": {
  3529. "drupal": {
  3530. "version": "8.x-2.2",
  3531. "datestamp": "1607936866",
  3532. "security-coverage": {
  3533. "status": "covered",
  3534. "message": "Covered by Drupal's security advisory policy"
  3535. }
  3536. }
  3537. },
  3538. "notification-url": "https://packages.drupal.org/8/downloads",
  3539. "license": [
  3540. "GPL-2.0-or-later"
  3541. ],
  3542. "authors": [
  3543. {
  3544. "name": "chr.fritsch",
  3545. "homepage": "https://www.drupal.org/user/2103716"
  3546. },
  3547. {
  3548. "name": "ergonlogic",
  3549. "homepage": "https://www.drupal.org/user/368613"
  3550. },
  3551. {
  3552. "name": "mfb",
  3553. "homepage": "https://www.drupal.org/user/12302"
  3554. },
  3555. {
  3556. "name": "pandaski",
  3557. "homepage": "https://www.drupal.org/user/1987218"
  3558. }
  3559. ],
  3560. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  3561. "homepage": "https://www.drupal.org/project/content_lock",
  3562. "support": {
  3563. "source": "https://git.drupalcode.org/project/content_lock"
  3564. }
  3565. },
  3566. {
  3567. "name": "drupal/context",
  3568. "version": "4.0.0-beta5",
  3569. "source": {
  3570. "type": "git",
  3571. "url": "https://git.drupalcode.org/project/context.git",
  3572. "reference": "8.x-4.0-beta5"
  3573. },
  3574. "dist": {
  3575. "type": "zip",
  3576. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta5.zip",
  3577. "reference": "8.x-4.0-beta5",
  3578. "shasum": "893d7e6ce07b23764baa6fd609da811ec80c5a04"
  3579. },
  3580. "require": {
  3581. "drupal/core": "^8.8 || ^9"
  3582. },
  3583. "type": "drupal-module",
  3584. "extra": {
  3585. "drupal": {
  3586. "version": "8.x-4.0-beta5",
  3587. "datestamp": "1600783508",
  3588. "security-coverage": {
  3589. "status": "not-covered",
  3590. "message": "Beta releases are not covered by Drupal security advisories."
  3591. }
  3592. }
  3593. },
  3594. "notification-url": "https://packages.drupal.org/8/downloads",
  3595. "license": [
  3596. "MIT"
  3597. ],
  3598. "authors": [
  3599. {
  3600. "name": "Christoffer Palm",
  3601. "homepage": "http://www.oddhill.se/",
  3602. "email": "christoffer.palm@oddhill.se",
  3603. "role": "Developer"
  3604. },
  3605. {
  3606. "name": "Steven Jones",
  3607. "homepage": "https://www.drupal.org/user/99644"
  3608. },
  3609. {
  3610. "name": "alex_b",
  3611. "homepage": "https://www.drupal.org/user/53995"
  3612. },
  3613. {
  3614. "name": "boshtian",
  3615. "homepage": "https://www.drupal.org/user/1773456"
  3616. },
  3617. {
  3618. "name": "colan",
  3619. "homepage": "https://www.drupal.org/user/58704"
  3620. },
  3621. {
  3622. "name": "emanaton",
  3623. "homepage": "https://www.drupal.org/user/120853"
  3624. },
  3625. {
  3626. "name": "febbraro",
  3627. "homepage": "https://www.drupal.org/user/43670"
  3628. },
  3629. {
  3630. "name": "fizk",
  3631. "homepage": "https://www.drupal.org/user/473174"
  3632. },
  3633. {
  3634. "name": "hass",
  3635. "homepage": "https://www.drupal.org/user/85918"
  3636. },
  3637. {
  3638. "name": "hefox",
  3639. "homepage": "https://www.drupal.org/user/426416"
  3640. },
  3641. {
  3642. "name": "jmiccolis",
  3643. "homepage": "https://www.drupal.org/user/31731"
  3644. },
  3645. {
  3646. "name": "nedjo",
  3647. "homepage": "https://www.drupal.org/user/4481"
  3648. },
  3649. {
  3650. "name": "patricksettle",
  3651. "homepage": "https://www.drupal.org/user/26618"
  3652. },
  3653. {
  3654. "name": "paulocs",
  3655. "homepage": "https://www.drupal.org/user/3640109"
  3656. },
  3657. {
  3658. "name": "tekante",
  3659. "homepage": "https://www.drupal.org/user/640024"
  3660. },
  3661. {
  3662. "name": "yhahn",
  3663. "homepage": "https://www.drupal.org/user/264833"
  3664. }
  3665. ],
  3666. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3667. "homepage": "https://github.com/oddhill/context",
  3668. "keywords": [
  3669. "Drupal",
  3670. "block",
  3671. "conditions",
  3672. "context",
  3673. "visibility"
  3674. ],
  3675. "support": {
  3676. "source": "https://github.com/oddhill/context",
  3677. "issues": "https://github.com/oddhill/context/issues",
  3678. "docs": "https://github.com/oddhill/context"
  3679. }
  3680. },
  3681. {
  3682. "name": "drupal/core",
  3683. "version": "9.1.9",
  3684. "source": {
  3685. "type": "git",
  3686. "url": "https://github.com/drupal/core.git",
  3687. "reference": "2c649d5807f08f8c7945d1c6ffb4bb21d5c7849a"
  3688. },
  3689. "dist": {
  3690. "type": "zip",
  3691. "url": "https://api.github.com/repos/drupal/core/zipball/2c649d5807f08f8c7945d1c6ffb4bb21d5c7849a",
  3692. "reference": "2c649d5807f08f8c7945d1c6ffb4bb21d5c7849a",
  3693. "shasum": ""
  3694. },
  3695. "require": {
  3696. "asm89/stack-cors": "^1.1",
  3697. "composer/semver": "^3.0",
  3698. "doctrine/annotations": "^1.4",
  3699. "doctrine/reflection": "^1.1",
  3700. "egulias/email-validator": "^2.0",
  3701. "ext-date": "*",
  3702. "ext-dom": "*",
  3703. "ext-filter": "*",
  3704. "ext-gd": "*",
  3705. "ext-hash": "*",
  3706. "ext-json": "*",
  3707. "ext-pcre": "*",
  3708. "ext-pdo": "*",
  3709. "ext-session": "*",
  3710. "ext-simplexml": "*",
  3711. "ext-spl": "*",
  3712. "ext-tokenizer": "*",
  3713. "ext-xml": "*",
  3714. "guzzlehttp/guzzle": "^6.5.2",
  3715. "laminas/laminas-diactoros": "^2.1",
  3716. "laminas/laminas-feed": "^2.12",
  3717. "masterminds/html5": "^2.1",
  3718. "pear/archive_tar": "^1.4.12",
  3719. "php": ">=7.3.0",
  3720. "psr/log": "^1.0",
  3721. "stack/builder": "^1.0",
  3722. "symfony-cmf/routing": "^2.1",
  3723. "symfony/console": "^4.4",
  3724. "symfony/dependency-injection": "^4.4",
  3725. "symfony/event-dispatcher": "^4.4",
  3726. "symfony/http-foundation": "^4.4.7",
  3727. "symfony/http-kernel": "^4.4",
  3728. "symfony/polyfill-iconv": "^1.0",
  3729. "symfony/process": "^4.4",
  3730. "symfony/psr-http-message-bridge": "^2.0",
  3731. "symfony/routing": "^4.4",
  3732. "symfony/serializer": "^4.4",
  3733. "symfony/translation": "^4.4",
  3734. "symfony/validator": "^4.4",
  3735. "symfony/yaml": "^4.4",
  3736. "twig/twig": "^2.12.0",
  3737. "typo3/phar-stream-wrapper": "^3.1.3"
  3738. },
  3739. "conflict": {
  3740. "drush/drush": "<8.1.10"
  3741. },
  3742. "replace": {
  3743. "drupal/action": "self.version",
  3744. "drupal/aggregator": "self.version",
  3745. "drupal/automated_cron": "self.version",
  3746. "drupal/ban": "self.version",
  3747. "drupal/bartik": "self.version",
  3748. "drupal/basic_auth": "self.version",
  3749. "drupal/big_pipe": "self.version",
  3750. "drupal/block": "self.version",
  3751. "drupal/block_content": "self.version",
  3752. "drupal/book": "self.version",
  3753. "drupal/breakpoint": "self.version",
  3754. "drupal/ckeditor": "self.version",
  3755. "drupal/claro": "self.version",
  3756. "drupal/classy": "self.version",
  3757. "drupal/color": "self.version",
  3758. "drupal/comment": "self.version",
  3759. "drupal/config": "self.version",
  3760. "drupal/config_translation": "self.version",
  3761. "drupal/contact": "self.version",
  3762. "drupal/content_moderation": "self.version",
  3763. "drupal/content_translation": "self.version",
  3764. "drupal/contextual": "self.version",
  3765. "drupal/core-annotation": "self.version",
  3766. "drupal/core-assertion": "self.version",
  3767. "drupal/core-bridge": "self.version",
  3768. "drupal/core-class-finder": "self.version",
  3769. "drupal/core-datetime": "self.version",
  3770. "drupal/core-dependency-injection": "self.version",
  3771. "drupal/core-diff": "self.version",
  3772. "drupal/core-discovery": "self.version",
  3773. "drupal/core-event-dispatcher": "self.version",
  3774. "drupal/core-file-cache": "self.version",
  3775. "drupal/core-file-security": "self.version",
  3776. "drupal/core-filesystem": "self.version",
  3777. "drupal/core-front-matter": "self.version",
  3778. "drupal/core-gettext": "self.version",
  3779. "drupal/core-graph": "self.version",
  3780. "drupal/core-http-foundation": "self.version",
  3781. "drupal/core-php-storage": "self.version",
  3782. "drupal/core-plugin": "self.version",
  3783. "drupal/core-proxy-builder": "self.version",
  3784. "drupal/core-render": "self.version",
  3785. "drupal/core-serialization": "self.version",
  3786. "drupal/core-transliteration": "self.version",
  3787. "drupal/core-utility": "self.version",
  3788. "drupal/core-uuid": "self.version",
  3789. "drupal/core-version": "self.version",
  3790. "drupal/datetime": "self.version",
  3791. "drupal/datetime_range": "self.version",
  3792. "drupal/dblog": "self.version",
  3793. "drupal/dynamic_page_cache": "self.version",
  3794. "drupal/editor": "self.version",
  3795. "drupal/entity_reference": "self.version",
  3796. "drupal/field": "self.version",
  3797. "drupal/field_layout": "self.version",
  3798. "drupal/field_ui": "self.version",
  3799. "drupal/file": "self.version",
  3800. "drupal/filter": "self.version",
  3801. "drupal/forum": "self.version",
  3802. "drupal/hal": "self.version",
  3803. "drupal/help": "self.version",
  3804. "drupal/help_topics": "self.version",
  3805. "drupal/history": "self.version",
  3806. "drupal/image": "self.version",
  3807. "drupal/inline_form_errors": "self.version",
  3808. "drupal/jsonapi": "self.version",
  3809. "drupal/language": "self.version",
  3810. "drupal/layout_builder": "self.version",
  3811. "drupal/layout_discovery": "self.version",
  3812. "drupal/link": "self.version",
  3813. "drupal/locale": "self.version",
  3814. "drupal/media": "self.version",
  3815. "drupal/media_library": "self.version",
  3816. "drupal/menu_link_content": "self.version",
  3817. "drupal/menu_ui": "self.version",
  3818. "drupal/migrate": "self.version",
  3819. "drupal/migrate_drupal": "self.version",
  3820. "drupal/migrate_drupal_multilingual": "self.version",
  3821. "drupal/migrate_drupal_ui": "self.version",
  3822. "drupal/minimal": "self.version",
  3823. "drupal/node": "self.version",
  3824. "drupal/olivero": "self.version",
  3825. "drupal/options": "self.version",
  3826. "drupal/page_cache": "self.version",
  3827. "drupal/path": "self.version",
  3828. "drupal/path_alias": "self.version",
  3829. "drupal/quickedit": "self.version",
  3830. "drupal/rdf": "self.version",
  3831. "drupal/responsive_image": "self.version",
  3832. "drupal/rest": "self.version",
  3833. "drupal/search": "self.version",
  3834. "drupal/serialization": "self.version",
  3835. "drupal/settings_tray": "self.version",
  3836. "drupal/seven": "self.version",
  3837. "drupal/shortcut": "self.version",
  3838. "drupal/standard": "self.version",
  3839. "drupal/stark": "self.version",
  3840. "drupal/statistics": "self.version",
  3841. "drupal/syslog": "self.version",
  3842. "drupal/system": "self.version",
  3843. "drupal/taxonomy": "self.version",
  3844. "drupal/telephone": "self.version",
  3845. "drupal/text": "self.version",
  3846. "drupal/toolbar": "self.version",
  3847. "drupal/tour": "self.version",
  3848. "drupal/tracker": "self.version",
  3849. "drupal/update": "self.version",
  3850. "drupal/user": "self.version",
  3851. "drupal/views": "self.version",
  3852. "drupal/views_ui": "self.version",
  3853. "drupal/workflows": "self.version",
  3854. "drupal/workspaces": "self.version"
  3855. },
  3856. "type": "drupal-core",
  3857. "extra": {
  3858. "drupal-scaffold": {
  3859. "file-mapping": {
  3860. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  3861. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  3862. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  3863. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  3864. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  3865. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  3866. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  3867. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  3868. "[web-root]/index.php": "assets/scaffold/files/index.php",
  3869. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  3870. "[web-root]/README.txt": "assets/scaffold/files/drupal.README.txt",
  3871. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  3872. "[web-root]/update.php": "assets/scaffold/files/update.php",
  3873. "[web-root]/web.config": "assets/scaffold/files/web.config",
  3874. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  3875. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  3876. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  3877. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  3878. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  3879. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  3880. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  3881. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  3882. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  3883. }
  3884. }
  3885. },
  3886. "autoload": {
  3887. "psr-4": {
  3888. "Drupal\\Core\\": "lib/Drupal/Core",
  3889. "Drupal\\Component\\": "lib/Drupal/Component",
  3890. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
  3891. },
  3892. "classmap": [
  3893. "lib/Drupal.php",
  3894. "lib/Drupal/Component/DependencyInjection/Container.php",
  3895. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  3896. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  3897. "lib/Drupal/Component/Utility/Timer.php",
  3898. "lib/Drupal/Component/Utility/Unicode.php",
  3899. "lib/Drupal/Core/Cache/Cache.php",
  3900. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  3901. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  3902. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  3903. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  3904. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  3905. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  3906. "lib/Drupal/Core/Database/Connection.php",
  3907. "lib/Drupal/Core/Database/Database.php",
  3908. "lib/Drupal/Core/Database/Driver/mysql/Connection.php",
  3909. "lib/Drupal/Core/Database/Driver/pgsql/Connection.php",
  3910. "lib/Drupal/Core/Database/Driver/sqlite/Connection.php",
  3911. "lib/Drupal/Core/Database/Statement.php",
  3912. "lib/Drupal/Core/Database/StatementInterface.php",
  3913. "lib/Drupal/Core/DependencyInjection/Container.php",
  3914. "lib/Drupal/Core/DrupalKernel.php",
  3915. "lib/Drupal/Core/DrupalKernelInterface.php",
  3916. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  3917. "lib/Drupal/Core/Site/Settings.php"
  3918. ],
  3919. "files": [
  3920. "includes/bootstrap.inc"
  3921. ]
  3922. },
  3923. "notification-url": "https://packagist.org/downloads/",
  3924. "license": [
  3925. "GPL-2.0-or-later"
  3926. ],
  3927. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3928. "support": {
  3929. "source": "https://github.com/drupal/core/tree/9.1.9"
  3930. },
  3931. "time": "2021-05-25T09:18:28+00:00"
  3932. },
  3933. {
  3934. "name": "drupal/core-composer-scaffold",
  3935. "version": "9.1.4",
  3936. "source": {
  3937. "type": "git",
  3938. "url": "https://github.com/drupal/core-composer-scaffold.git",
  3939. "reference": "7b125516d6568b888945ee03ac2636dcced76e8d"
  3940. },
  3941. "dist": {
  3942. "type": "zip",
  3943. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/7b125516d6568b888945ee03ac2636dcced76e8d",
  3944. "reference": "7b125516d6568b888945ee03ac2636dcced76e8d",
  3945. "shasum": ""
  3946. },
  3947. "require": {
  3948. "composer-plugin-api": "^1 || ^2",
  3949. "php": ">=7.3.0"
  3950. },
  3951. "conflict": {
  3952. "drupal-composer/drupal-scaffold": "*"
  3953. },
  3954. "require-dev": {
  3955. "composer/composer": "^1.8@stable"
  3956. },
  3957. "type": "composer-plugin",
  3958. "extra": {
  3959. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  3960. "branch-alias": {
  3961. "dev-master": "1.0.x-dev"
  3962. }
  3963. },
  3964. "autoload": {
  3965. "psr-4": {
  3966. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  3967. }
  3968. },
  3969. "notification-url": "https://packagist.org/downloads/",
  3970. "license": [
  3971. "GPL-2.0-or-later"
  3972. ],
  3973. "description": "A flexible Composer project scaffold builder.",
  3974. "homepage": "https://www.drupal.org/project/drupal",
  3975. "keywords": [
  3976. "drupal"
  3977. ],
  3978. "time": "2020-08-07T22:30:13+00:00"
  3979. },
  3980. {
  3981. "name": "drupal/core-project-message",
  3982. "version": "9.1.4",
  3983. "source": {
  3984. "type": "git",
  3985. "url": "https://github.com/drupal/core-project-message.git",
  3986. "reference": "812d6da43dd49cc210af62e80fa92189e68e565a"
  3987. },
  3988. "dist": {
  3989. "type": "zip",
  3990. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/812d6da43dd49cc210af62e80fa92189e68e565a",
  3991. "reference": "812d6da43dd49cc210af62e80fa92189e68e565a",
  3992. "shasum": ""
  3993. },
  3994. "require": {
  3995. "composer-plugin-api": "^1.1 || ^2",
  3996. "php": ">=7.3.0"
  3997. },
  3998. "type": "composer-plugin",
  3999. "extra": {
  4000. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  4001. },
  4002. "autoload": {
  4003. "psr-4": {
  4004. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  4005. }
  4006. },
  4007. "notification-url": "https://packagist.org/downloads/",
  4008. "license": [
  4009. "GPL-2.0-or-later"
  4010. ],
  4011. "description": "Adds a message after Composer installation.",
  4012. "homepage": "https://www.drupal.org/project/drupal",
  4013. "keywords": [
  4014. "drupal"
  4015. ],
  4016. "time": "2020-09-14T13:40:36+00:00"
  4017. },
  4018. {
  4019. "name": "drupal/core-recommended",
  4020. "version": "9.1.9",
  4021. "source": {
  4022. "type": "git",
  4023. "url": "https://github.com/drupal/core-recommended.git",
  4024. "reference": "c29e4707ba567b7b80b86a8fa6aea0d0e50967b0"
  4025. },
  4026. "dist": {
  4027. "type": "zip",
  4028. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/c29e4707ba567b7b80b86a8fa6aea0d0e50967b0",
  4029. "reference": "c29e4707ba567b7b80b86a8fa6aea0d0e50967b0",
  4030. "shasum": ""
  4031. },
  4032. "require": {
  4033. "asm89/stack-cors": "1.3.0",
  4034. "composer/semver": "3.2.2",
  4035. "doctrine/annotations": "1.11.1",
  4036. "doctrine/lexer": "1.2.1",
  4037. "doctrine/reflection": "1.2.2",
  4038. "drupal/core": "9.1.9",
  4039. "egulias/email-validator": "2.1.22",
  4040. "guzzlehttp/guzzle": "6.5.5",
  4041. "guzzlehttp/promises": "1.4.0",
  4042. "guzzlehttp/psr7": "1.7.0",
  4043. "laminas/laminas-diactoros": "2.5.0",
  4044. "laminas/laminas-escaper": "2.7.0",
  4045. "laminas/laminas-feed": "2.13.0",
  4046. "laminas/laminas-stdlib": "3.3.0",
  4047. "laminas/laminas-zendframework-bridge": "1.1.1",
  4048. "masterminds/html5": "2.7.4",
  4049. "pear/archive_tar": "1.4.13",
  4050. "pear/console_getopt": "v1.4.3",
  4051. "pear/pear-core-minimal": "v1.10.10",
  4052. "pear/pear_exception": "v1.0.1",
  4053. "psr/container": "1.0.0",
  4054. "psr/http-factory": "1.0.1",
  4055. "psr/http-message": "1.0.1",
  4056. "psr/log": "1.1.3",
  4057. "ralouphie/getallheaders": "3.0.3",
  4058. "stack/builder": "v1.0.6",
  4059. "symfony-cmf/routing": "2.3.3",
  4060. "symfony/console": "v4.4.19",
  4061. "symfony/debug": "v4.4.19",
  4062. "symfony/dependency-injection": "v4.4.19",
  4063. "symfony/error-handler": "v4.4.19",
  4064. "symfony/event-dispatcher": "v4.4.19",
  4065. "symfony/event-dispatcher-contracts": "v1.1.9",
  4066. "symfony/http-client-contracts": "v2.3.1",
  4067. "symfony/http-foundation": "v4.4.19",
  4068. "symfony/http-kernel": "v4.4.19",
  4069. "symfony/mime": "v5.1.11",
  4070. "symfony/polyfill-ctype": "v1.20.0",
  4071. "symfony/polyfill-iconv": "v1.20.0",
  4072. "symfony/polyfill-intl-idn": "v1.20.0",
  4073. "symfony/polyfill-intl-normalizer": "v1.20.0",
  4074. "symfony/polyfill-mbstring": "v1.20.0",
  4075. "symfony/polyfill-php80": "v1.20.0",
  4076. "symfony/process": "v4.4.19",
  4077. "symfony/psr-http-message-bridge": "v2.0.2",
  4078. "symfony/routing": "v4.4.19",
  4079. "symfony/serializer": "v4.4.19",
  4080. "symfony/service-contracts": "v2.2.0",
  4081. "symfony/translation": "v4.4.19",
  4082. "symfony/translation-contracts": "v2.3.0",
  4083. "symfony/validator": "v4.4.19",
  4084. "symfony/var-dumper": "v5.1.11",
  4085. "symfony/yaml": "v4.4.19",
  4086. "twig/twig": "v2.14.1",
  4087. "typo3/phar-stream-wrapper": "v3.1.6"
  4088. },
  4089. "conflict": {
  4090. "webflo/drupal-core-strict": "*"
  4091. },
  4092. "type": "metapackage",
  4093. "notification-url": "https://packagist.org/downloads/",
  4094. "license": [
  4095. "GPL-2.0-or-later"
  4096. ],
  4097. "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.",
  4098. "support": {
  4099. "source": "https://github.com/drupal/core-recommended/tree/9.1.9"
  4100. },
  4101. "time": "2021-05-25T09:18:28+00:00"
  4102. },
  4103. {
  4104. "name": "drupal/cshs",
  4105. "version": "dev-1.x",
  4106. "source": {
  4107. "type": "git",
  4108. "url": "https://git.drupalcode.org/project/cshs.git",
  4109. "reference": "537e7fef494c71cfa59d8d90849cbf1beee80e49"
  4110. },
  4111. "require": {
  4112. "drupal/core": "^8 || ^9"
  4113. },
  4114. "type": "drupal-module",
  4115. "extra": {
  4116. "branch-alias": {
  4117. "dev-1.x": "1.x-dev"
  4118. },
  4119. "drupal": {
  4120. "version": "8.x-1.2+4-dev",
  4121. "datestamp": "1607678639",
  4122. "security-coverage": {
  4123. "status": "not-covered",
  4124. "message": "Dev releases are not covered by Drupal security advisories."
  4125. }
  4126. }
  4127. },
  4128. "notification-url": "https://packages.drupal.org/8/downloads",
  4129. "license": [
  4130. "GPL-2.0-or-later"
  4131. ],
  4132. "authors": [
  4133. {
  4134. "name": "Walter Jenner",
  4135. "homepage": "https://drupal.org/u/valderama"
  4136. },
  4137. {
  4138. "name": "Sergii Bondarenko",
  4139. "homepage": "https://drupal.org/u/BR0kEN",
  4140. "email": "sb@firstvector.org"
  4141. },
  4142. {
  4143. "name": "Daneel Cruz",
  4144. "homepage": "https://drupal.org/u/daneelcm"
  4145. },
  4146. {
  4147. "name": "Purushotam Rai",
  4148. "homepage": "https://drupal.org/u/purushotam.rai"
  4149. }
  4150. ],
  4151. "description": "A simple client-side hierarchical select widget for taxonomy terms.",
  4152. "homepage": "https://www.drupal.org/project/cshs",
  4153. "keywords": [
  4154. "client-side-select",
  4155. "hierarchical-select",
  4156. "module",
  4157. "select",
  4158. "taxonomy"
  4159. ],
  4160. "support": {
  4161. "source": "https://git.drupalcode.org/project/cshs",
  4162. "issues": "https://www.drupal.org/project/issues/cshs"
  4163. },
  4164. "time": "2020-12-11T09:23:35+00:00"
  4165. },
  4166. {
  4167. "name": "drupal/ctools",
  4168. "version": "3.7.0",
  4169. "source": {
  4170. "type": "git",
  4171. "url": "https://git.drupalcode.org/project/ctools.git",
  4172. "reference": "8.x-3.7"
  4173. },
  4174. "dist": {
  4175. "type": "zip",
  4176. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.7.zip",
  4177. "reference": "8.x-3.7",
  4178. "shasum": "b11c0981a1d2ab3cc9e8e614a337d8e2a2a70c0e"
  4179. },
  4180. "require": {
  4181. "drupal/core": "^8.8 || ^9"
  4182. },
  4183. "type": "drupal-module",
  4184. "extra": {
  4185. "drupal": {
  4186. "version": "8.x-3.7",
  4187. "datestamp": "1623860918",
  4188. "security-coverage": {
  4189. "status": "covered",
  4190. "message": "Covered by Drupal's security advisory policy"
  4191. }
  4192. },
  4193. "branch-alias": {
  4194. "dev-8.x-3.x": "3.x-dev"
  4195. }
  4196. },
  4197. "notification-url": "https://packages.drupal.org/8/downloads",
  4198. "license": [
  4199. "GPL-2.0-or-later"
  4200. ],
  4201. "authors": [
  4202. {
  4203. "name": "Kris Vanderwater (EclipseGc)",
  4204. "homepage": "https://www.drupal.org/u/eclipsegc",
  4205. "role": "Maintainer"
  4206. },
  4207. {
  4208. "name": "Jakob Perry (japerry)",
  4209. "homepage": "https://www.drupal.org/u/japerry",
  4210. "role": "Maintainer"
  4211. },
  4212. {
  4213. "name": "Tim Plunkett (tim.plunkett)",
  4214. "homepage": "https://www.drupal.org/u/timplunkett",
  4215. "role": "Maintainer"
  4216. },
  4217. {
  4218. "name": "James Gilliland (neclimdul)",
  4219. "homepage": "https://www.drupal.org/u/neclimdul",
  4220. "role": "Maintainer"
  4221. },
  4222. {
  4223. "name": "Daniel Wehner (dawehner)",
  4224. "homepage": "https://www.drupal.org/u/dawehner",
  4225. "role": "Maintainer"
  4226. },
  4227. {
  4228. "name": "joelpittet",
  4229. "homepage": "https://www.drupal.org/user/160302"
  4230. },
  4231. {
  4232. "name": "merlinofchaos",
  4233. "homepage": "https://www.drupal.org/user/26979"
  4234. },
  4235. {
  4236. "name": "neclimdul",
  4237. "homepage": "https://www.drupal.org/user/48673"
  4238. },
  4239. {
  4240. "name": "sdboyer",
  4241. "homepage": "https://www.drupal.org/user/146719"
  4242. },
  4243. {
  4244. "name": "sun",
  4245. "homepage": "https://www.drupal.org/user/54136"
  4246. },
  4247. {
  4248. "name": "tim.plunkett",
  4249. "homepage": "https://www.drupal.org/user/241634"
  4250. }
  4251. ],
  4252. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  4253. "homepage": "https://www.drupal.org/project/ctools",
  4254. "support": {
  4255. "source": "https://git.drupalcode.org/project/ctools",
  4256. "issues": "https://www.drupal.org/project/issues/ctools"
  4257. }
  4258. },
  4259. {
  4260. "name": "drupal/date_range_formatter",
  4261. "version": "dev-9.0.x",
  4262. "source": {
  4263. "type": "git",
  4264. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  4265. "reference": "c34acb20c37e6210099bf3080352a6da7227b867"
  4266. },
  4267. "require": {
  4268. "drupal/core": "^8 || ^9"
  4269. },
  4270. "type": "drupal-module",
  4271. "extra": {
  4272. "branch-alias": {
  4273. "dev-9.0.x": "9.0.x-dev"
  4274. },
  4275. "drupal": {
  4276. "version": "9.0.x-dev",
  4277. "datestamp": "1589956448",
  4278. "security-coverage": {
  4279. "status": "not-covered",
  4280. "message": "Dev releases are not covered by Drupal security advisories."
  4281. }
  4282. }
  4283. },
  4284. "notification-url": "https://packages.drupal.org/8/downloads",
  4285. "license": [
  4286. "GPL-2.0-or-later"
  4287. ],
  4288. "authors": [
  4289. {
  4290. "name": "maximpodorov",
  4291. "homepage": "https://www.drupal.org/user/515310"
  4292. },
  4293. {
  4294. "name": "sudishth",
  4295. "homepage": "https://www.drupal.org/user/1440562"
  4296. }
  4297. ],
  4298. "description": "Formats date ranges.",
  4299. "homepage": "https://www.drupal.org/project/date_range_formatter",
  4300. "support": {
  4301. "source": "https://git.drupalcode.org/project/date_range_formatter"
  4302. },
  4303. "time": "2020-05-20T06:32:37+00:00"
  4304. },
  4305. {
  4306. "name": "drupal/devel",
  4307. "version": "4.1.1",
  4308. "source": {
  4309. "type": "git",
  4310. "url": "https://git.drupalcode.org/project/devel.git",
  4311. "reference": "4.1.1"
  4312. },
  4313. "dist": {
  4314. "type": "zip",
  4315. "url": "https://ftp.drupal.org/files/projects/devel-4.1.1.zip",
  4316. "reference": "4.1.1",
  4317. "shasum": "88e5d49dda26a3136291ecd97bc6c8e897b24198"
  4318. },
  4319. "require": {
  4320. "doctrine/common": "^2.7",
  4321. "drupal/core": "^8.8 || ^9",
  4322. "symfony/var-dumper": "^4 || ^5"
  4323. },
  4324. "conflict": {
  4325. "kint-php/kint": "<3"
  4326. },
  4327. "require-dev": {
  4328. "drush/drush": "^10"
  4329. },
  4330. "suggest": {
  4331. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  4332. },
  4333. "type": "drupal-module",
  4334. "extra": {
  4335. "drupal": {
  4336. "version": "4.1.1",
  4337. "datestamp": "1609419527",
  4338. "security-coverage": {
  4339. "status": "covered",
  4340. "message": "Covered by Drupal's security advisory policy"
  4341. }
  4342. },
  4343. "drush": {
  4344. "services": {
  4345. "drush.services.yml": "^9 || ^10"
  4346. }
  4347. }
  4348. },
  4349. "notification-url": "https://packages.drupal.org/8/downloads",
  4350. "license": [
  4351. "GPL-2.0-or-later"
  4352. ],
  4353. "authors": [
  4354. {
  4355. "name": "drupalspoons",
  4356. "homepage": "https://www.drupal.org/user/3647684"
  4357. },
  4358. {
  4359. "name": "moshe weitzman",
  4360. "homepage": "https://www.drupal.org/user/23"
  4361. }
  4362. ],
  4363. "description": "Various blocks, pages, and functions for developers.",
  4364. "homepage": "https://www.drupal.org/project/devel",
  4365. "support": {
  4366. "source": "https://gitlab.com/drupalspoons/devel",
  4367. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  4368. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  4369. }
  4370. },
  4371. {
  4372. "name": "drupal/domain",
  4373. "version": "dev-1.x",
  4374. "source": {
  4375. "type": "git",
  4376. "url": "https://git.drupalcode.org/project/domain.git",
  4377. "reference": "bb4973dd3d7ecee279dcf521c05eb6a5589cf05b"
  4378. },
  4379. "require": {
  4380. "drupal/core": "^8 || ^9"
  4381. },
  4382. "require-dev": {
  4383. "drupal/domain_access": "*",
  4384. "drupal/domain_config": "*"
  4385. },
  4386. "type": "drupal-module",
  4387. "extra": {
  4388. "branch-alias": {
  4389. "dev-1.x": "1.x-dev"
  4390. },
  4391. "drupal": {
  4392. "version": "8.x-1.x-dev",
  4393. "datestamp": "1603119924",
  4394. "security-coverage": {
  4395. "status": "not-covered",
  4396. "message": "Dev releases are not covered by Drupal security advisories."
  4397. }
  4398. }
  4399. },
  4400. "notification-url": "https://packages.drupal.org/8/downloads",
  4401. "license": [
  4402. "GPL-2.0-or-later"
  4403. ],
  4404. "authors": [
  4405. {
  4406. "name": "agentrickard",
  4407. "homepage": "https://www.drupal.org/user/20975"
  4408. },
  4409. {
  4410. "name": "nonsie",
  4411. "homepage": "https://www.drupal.org/user/29899"
  4412. }
  4413. ],
  4414. "description": "Creates domain records within a Drupal installation.",
  4415. "homepage": "https://www.drupal.org/project/domain",
  4416. "support": {
  4417. "source": "https://git.drupalcode.org/project/domain"
  4418. },
  4419. "time": "2020-11-18T18:57:19+00:00"
  4420. },
  4421. {
  4422. "name": "drupal/domain_alias",
  4423. "version": "dev-1.x",
  4424. "require": {
  4425. "drupal/core": "^8 || ^9",
  4426. "drupal/domain": "*"
  4427. },
  4428. "type": "metapackage",
  4429. "extra": {
  4430. "branch-alias": {
  4431. "dev-1.x": "1.x-dev"
  4432. },
  4433. "drupal": {
  4434. "version": "8.x-1.x-dev",
  4435. "datestamp": "1603119924",
  4436. "security-coverage": {
  4437. "status": "not-covered",
  4438. "message": "Dev releases are not covered by Drupal security advisories."
  4439. }
  4440. }
  4441. },
  4442. "notification-url": "https://packages.drupal.org/8/downloads",
  4443. "license": [
  4444. "GPL-2.0-or-later"
  4445. ],
  4446. "authors": [
  4447. {
  4448. "name": "agentrickard",
  4449. "homepage": "https://www.drupal.org/user/20975"
  4450. },
  4451. {
  4452. "name": "nonsie",
  4453. "homepage": "https://www.drupal.org/user/29899"
  4454. }
  4455. ],
  4456. "description": "Maps multiple host requests to a single domain record.",
  4457. "homepage": "https://www.drupal.org/project/domain",
  4458. "support": {
  4459. "source": "https://git.drupalcode.org/project/domain"
  4460. }
  4461. },
  4462. {
  4463. "name": "drupal/domain_config",
  4464. "version": "dev-1.x",
  4465. "require": {
  4466. "drupal/core": "^8 || ^9",
  4467. "drupal/domain": "*"
  4468. },
  4469. "type": "metapackage",
  4470. "extra": {
  4471. "branch-alias": {
  4472. "dev-1.x": "1.x-dev"
  4473. },
  4474. "drupal": {
  4475. "version": "8.x-1.x-dev",
  4476. "datestamp": "1603119924",
  4477. "security-coverage": {
  4478. "status": "not-covered",
  4479. "message": "Dev releases are not covered by Drupal security advisories."
  4480. }
  4481. }
  4482. },
  4483. "notification-url": "https://packages.drupal.org/8/downloads",
  4484. "license": [
  4485. "GPL-2.0-or-later"
  4486. ],
  4487. "authors": [
  4488. {
  4489. "name": "agentrickard",
  4490. "homepage": "https://www.drupal.org/user/20975"
  4491. },
  4492. {
  4493. "name": "nonsie",
  4494. "homepage": "https://www.drupal.org/user/29899"
  4495. }
  4496. ],
  4497. "description": "Allows domain specific configuration.",
  4498. "homepage": "https://www.drupal.org/project/domain",
  4499. "support": {
  4500. "source": "https://git.drupalcode.org/project/domain"
  4501. }
  4502. },
  4503. {
  4504. "name": "drupal/domain_site_settings",
  4505. "version": "dev-1.x",
  4506. "source": {
  4507. "type": "git",
  4508. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  4509. "reference": "b3177fc7257cae13fe9c6ff6f65d86257a194d84"
  4510. },
  4511. "require": {
  4512. "drupal/core": "^8 || ^9",
  4513. "drupal/domain": "*",
  4514. "drupal/domain_config": "*"
  4515. },
  4516. "type": "drupal-module",
  4517. "extra": {
  4518. "branch-alias": {
  4519. "dev-1.x": "1.x-dev"
  4520. },
  4521. "drupal": {
  4522. "version": "8.x-1.3+7-dev",
  4523. "datestamp": "1584297727",
  4524. "security-coverage": {
  4525. "status": "not-covered",
  4526. "message": "Dev releases are not covered by Drupal security advisories."
  4527. }
  4528. }
  4529. },
  4530. "notification-url": "https://packages.drupal.org/8/downloads",
  4531. "license": [
  4532. "GPL-2.0+"
  4533. ],
  4534. "authors": [
  4535. {
  4536. "name": "aloknarwaria",
  4537. "homepage": "https://www.drupal.org/user/906640"
  4538. },
  4539. {
  4540. "name": "malaynayak",
  4541. "homepage": "https://www.drupal.org/user/3529755"
  4542. }
  4543. ],
  4544. "description": "Basic Site Setting for Domains.",
  4545. "homepage": "https://www.drupal.org/project/domain_site_settings",
  4546. "keywords": [
  4547. "Drupal"
  4548. ],
  4549. "support": {
  4550. "source": "http://cgit.drupalcode.org/domain_site_settings",
  4551. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  4552. },
  4553. "time": "2020-03-15T18:41:41+00:00"
  4554. },
  4555. {
  4556. "name": "drupal/email_registration",
  4557. "version": "1.1.0",
  4558. "source": {
  4559. "type": "git",
  4560. "url": "https://git.drupalcode.org/project/email_registration.git",
  4561. "reference": "8.x-1.1"
  4562. },
  4563. "dist": {
  4564. "type": "zip",
  4565. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.1.zip",
  4566. "reference": "8.x-1.1",
  4567. "shasum": "cc0eef597216a6d025d9017df104f2693b029f96"
  4568. },
  4569. "require": {
  4570. "drupal/core": "^8.7.7 || ^9"
  4571. },
  4572. "conflict": {
  4573. "drupal/commerce": "<2.12"
  4574. },
  4575. "require-dev": {
  4576. "drupal/commerce": "^2.0"
  4577. },
  4578. "type": "drupal-module",
  4579. "extra": {
  4580. "drupal": {
  4581. "version": "8.x-1.1",
  4582. "datestamp": "1592317072",
  4583. "security-coverage": {
  4584. "status": "covered",
  4585. "message": "Covered by Drupal's security advisory policy"
  4586. }
  4587. }
  4588. },
  4589. "notification-url": "https://packages.drupal.org/8/downloads",
  4590. "license": [
  4591. "GPL-2.0-or-later"
  4592. ],
  4593. "authors": [
  4594. {
  4595. "name": "Greg Knaddison (greggles)",
  4596. "homepage": "https://www.drupal.org/u/greggles",
  4597. "role": "Maintainer"
  4598. },
  4599. {
  4600. "name": "Andrey Postnikov (andypost)",
  4601. "homepage": "https://www.drupal.org/u/andypost",
  4602. "role": "Maintainer"
  4603. },
  4604. {
  4605. "name": "Chris Herberte",
  4606. "homepage": "https://www.drupal.org/u/chris-herberte",
  4607. "role": "Maintainer"
  4608. },
  4609. {
  4610. "name": "Moshe Weitzman (moshe weitzman)",
  4611. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  4612. "role": "Maintainer"
  4613. }
  4614. ],
  4615. "description": "Allows users to register with an email address as their username.",
  4616. "homepage": "https://www.drupal.org/project/email_registration",
  4617. "support": {
  4618. "source": "https://git.drupalcode.org/project/email_registration",
  4619. "issues": "http://drupal.org/project/issues/email_registration"
  4620. }
  4621. },
  4622. {
  4623. "name": "drupal/embed",
  4624. "version": "1.4.0",
  4625. "source": {
  4626. "type": "git",
  4627. "url": "https://git.drupalcode.org/project/embed.git",
  4628. "reference": "8.x-1.4"
  4629. },
  4630. "dist": {
  4631. "type": "zip",
  4632. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.4.zip",
  4633. "reference": "8.x-1.4",
  4634. "shasum": "09a2bda039bfbb3fff01c91964384bf3d924b8c5"
  4635. },
  4636. "require": {
  4637. "drupal/core": "^8.7.7 || ^9"
  4638. },
  4639. "type": "drupal-module",
  4640. "extra": {
  4641. "drupal": {
  4642. "version": "8.x-1.4",
  4643. "datestamp": "1590176831",
  4644. "security-coverage": {
  4645. "status": "covered",
  4646. "message": "Covered by Drupal's security advisory policy"
  4647. }
  4648. }
  4649. },
  4650. "notification-url": "https://packages.drupal.org/8/downloads",
  4651. "license": [
  4652. "GPL-2.0-or-later"
  4653. ],
  4654. "authors": [
  4655. {
  4656. "name": "Dave Reid",
  4657. "homepage": "https://www.drupal.org/user/53892"
  4658. },
  4659. {
  4660. "name": "Devin Carlson",
  4661. "homepage": "https://www.drupal.org/user/290182"
  4662. },
  4663. {
  4664. "name": "Drupal Media Team",
  4665. "homepage": "https://www.drupal.org/user/3260690"
  4666. },
  4667. {
  4668. "name": "cs_shadow",
  4669. "homepage": "https://www.drupal.org/user/2828287"
  4670. },
  4671. {
  4672. "name": "phenaproxima",
  4673. "homepage": "https://www.drupal.org/user/205645"
  4674. },
  4675. {
  4676. "name": "slashrsm",
  4677. "homepage": "https://www.drupal.org/user/744628"
  4678. }
  4679. ],
  4680. "description": "Provides a framework for different types of embeds in text editors.",
  4681. "homepage": "https://www.drupal.org/project/embed",
  4682. "support": {
  4683. "source": "https://git.drupalcode.org/project/embed"
  4684. }
  4685. },
  4686. {
  4687. "name": "drupal/entity",
  4688. "version": "1.2.0",
  4689. "source": {
  4690. "type": "git",
  4691. "url": "https://git.drupalcode.org/project/entity.git",
  4692. "reference": "8.x-1.2"
  4693. },
  4694. "dist": {
  4695. "type": "zip",
  4696. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.2.zip",
  4697. "reference": "8.x-1.2",
  4698. "shasum": "7e7cb12ea65d9f986b59935eda316387cf511079"
  4699. },
  4700. "require": {
  4701. "drupal/core": "^8.8 || ^9"
  4702. },
  4703. "type": "drupal-module",
  4704. "extra": {
  4705. "drupal": {
  4706. "version": "8.x-1.2",
  4707. "datestamp": "1606399149",
  4708. "security-coverage": {
  4709. "status": "covered",
  4710. "message": "Covered by Drupal's security advisory policy"
  4711. }
  4712. }
  4713. },
  4714. "notification-url": "https://packages.drupal.org/8/downloads",
  4715. "license": [
  4716. "GPL-2.0-or-later"
  4717. ],
  4718. "authors": [
  4719. {
  4720. "name": "Berdir",
  4721. "homepage": "https://www.drupal.org/user/214652"
  4722. },
  4723. {
  4724. "name": "bojanz",
  4725. "homepage": "https://www.drupal.org/user/86106"
  4726. },
  4727. {
  4728. "name": "dawehner",
  4729. "homepage": "https://www.drupal.org/user/99340"
  4730. },
  4731. {
  4732. "name": "dixon_",
  4733. "homepage": "https://www.drupal.org/user/239911"
  4734. },
  4735. {
  4736. "name": "fago",
  4737. "homepage": "https://www.drupal.org/user/16747"
  4738. },
  4739. {
  4740. "name": "mglaman",
  4741. "homepage": "https://www.drupal.org/user/2416470"
  4742. }
  4743. ],
  4744. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  4745. "homepage": "http://drupal.org/project/entity",
  4746. "support": {
  4747. "source": "https://git.drupalcode.org/project/entity"
  4748. }
  4749. },
  4750. {
  4751. "name": "drupal/entity_browser",
  4752. "version": "2.5.0",
  4753. "source": {
  4754. "type": "git",
  4755. "url": "https://git.drupalcode.org/project/entity_browser.git",
  4756. "reference": "8.x-2.5"
  4757. },
  4758. "dist": {
  4759. "type": "zip",
  4760. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.5.zip",
  4761. "reference": "8.x-2.5",
  4762. "shasum": "29456b961f0f90ff064601ab8a382446a8143774"
  4763. },
  4764. "require": {
  4765. "drupal/core": "^8.8 || ^9"
  4766. },
  4767. "require-dev": {
  4768. "drupal/embed": "~1.0",
  4769. "drupal/entity_embed": "1.x-dev",
  4770. "drupal/entity_reference_revisions": "1.x-dev",
  4771. "drupal/entityqueue": "1.x-dev",
  4772. "drupal/inline_entity_form": "1.x-dev",
  4773. "drupal/paragraphs": "1.x-dev",
  4774. "drupal/token": "~1.0"
  4775. },
  4776. "type": "drupal-module",
  4777. "extra": {
  4778. "drupal": {
  4779. "version": "8.x-2.5",
  4780. "datestamp": "1588015429",
  4781. "security-coverage": {
  4782. "status": "covered",
  4783. "message": "Covered by Drupal's security advisory policy"
  4784. }
  4785. }
  4786. },
  4787. "notification-url": "https://packages.drupal.org/8/downloads",
  4788. "license": [
  4789. "GPL-2.0+"
  4790. ],
  4791. "authors": [
  4792. {
  4793. "name": "Janez Urevc",
  4794. "homepage": "https://github.com/slashrsm",
  4795. "role": "Maintainer"
  4796. },
  4797. {
  4798. "name": "Primoz Hmeljak",
  4799. "homepage": "https://github.com/primsi",
  4800. "role": "Maintainer"
  4801. },
  4802. {
  4803. "name": "See other contributors",
  4804. "homepage": "https://www.drupal.org/node/1943336/committers",
  4805. "role": "contributor"
  4806. },
  4807. {
  4808. "name": "Drupal Media Team",
  4809. "homepage": "https://www.drupal.org/user/3260690"
  4810. },
  4811. {
  4812. "name": "Primsi",
  4813. "homepage": "https://www.drupal.org/user/282629"
  4814. },
  4815. {
  4816. "name": "marcingy",
  4817. "homepage": "https://www.drupal.org/user/77320"
  4818. },
  4819. {
  4820. "name": "oknate",
  4821. "homepage": "https://www.drupal.org/user/471638"
  4822. },
  4823. {
  4824. "name": "samuel.mortenson",
  4825. "homepage": "https://www.drupal.org/user/2582268"
  4826. },
  4827. {
  4828. "name": "slashrsm",
  4829. "homepage": "https://www.drupal.org/user/744628"
  4830. }
  4831. ],
  4832. "description": "Entity browsing and selecting component.",
  4833. "homepage": "http://drupal.org/project/entity_browser",
  4834. "support": {
  4835. "source": "https://git.drupalcode.org/project/entity_browser",
  4836. "issues": "https://www.drupal.org/project/issues/entity_browser",
  4837. "irc": "irc://irc.freenode.org/drupal-contribute"
  4838. }
  4839. },
  4840. {
  4841. "name": "drupal/entity_browser_enhanced",
  4842. "version": "1.0.0",
  4843. "source": {
  4844. "type": "git",
  4845. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  4846. "reference": "8.x-1.0"
  4847. },
  4848. "dist": {
  4849. "type": "zip",
  4850. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-8.x-1.0.zip",
  4851. "reference": "8.x-1.0",
  4852. "shasum": "c309e3c3eb65c358fafc577de68f3cbb8c118865"
  4853. },
  4854. "require": {
  4855. "drupal/core": "^8 || ^9",
  4856. "drupal/entity_browser": "~2.0"
  4857. },
  4858. "type": "drupal-module",
  4859. "extra": {
  4860. "drupal": {
  4861. "version": "8.x-1.0",
  4862. "datestamp": "1581940931",
  4863. "security-coverage": {
  4864. "status": "covered",
  4865. "message": "Covered by Drupal's security advisory policy"
  4866. }
  4867. },
  4868. "branch-alias": {
  4869. "dev-8.x-1.x": "8.1.x-dev"
  4870. }
  4871. },
  4872. "notification-url": "https://packages.drupal.org/8/downloads",
  4873. "license": [
  4874. "GPL-2.0-or-later"
  4875. ],
  4876. "authors": [
  4877. {
  4878. "name": "Vardot",
  4879. "homepage": "https://www.drupal.org/vardot",
  4880. "role": "Maintainer"
  4881. },
  4882. {
  4883. "name": "RajabNatshah",
  4884. "homepage": "https://www.drupal.org/user/1414312"
  4885. }
  4886. ],
  4887. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  4888. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  4889. "support": {
  4890. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  4891. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  4892. }
  4893. },
  4894. {
  4895. "name": "drupal/entity_clone",
  4896. "version": "1.0.0-beta4",
  4897. "source": {
  4898. "type": "git",
  4899. "url": "https://git.drupalcode.org/project/entity_clone.git",
  4900. "reference": "8.x-1.0-beta4"
  4901. },
  4902. "dist": {
  4903. "type": "zip",
  4904. "url": "https://ftp.drupal.org/files/projects/entity_clone-8.x-1.0-beta4.zip",
  4905. "reference": "8.x-1.0-beta4",
  4906. "shasum": "4568ca25634d4ce4f142f56156259ba1f0d9f3c1"
  4907. },
  4908. "require": {
  4909. "drupal/core": "^8 || ^9"
  4910. },
  4911. "type": "drupal-module",
  4912. "extra": {
  4913. "drupal": {
  4914. "version": "8.x-1.0-beta4",
  4915. "datestamp": "1588605099",
  4916. "security-coverage": {
  4917. "status": "not-covered",
  4918. "message": "Beta releases are not covered by Drupal security advisories."
  4919. }
  4920. }
  4921. },
  4922. "notification-url": "https://packages.drupal.org/8/downloads",
  4923. "license": [
  4924. "GPL-2.0-or-later"
  4925. ],
  4926. "authors": [
  4927. {
  4928. "name": "vpeltot",
  4929. "homepage": "https://www.drupal.org/user/1361586"
  4930. }
  4931. ],
  4932. "description": "Add a clone action for all entities",
  4933. "homepage": "https://www.drupal.org/project/entity_clone",
  4934. "support": {
  4935. "source": "https://git.drupalcode.org/project/entity_clone"
  4936. }
  4937. },
  4938. {
  4939. "name": "drupal/entity_reference_revisions",
  4940. "version": "1.8.0",
  4941. "source": {
  4942. "type": "git",
  4943. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  4944. "reference": "8.x-1.8"
  4945. },
  4946. "dist": {
  4947. "type": "zip",
  4948. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.8.zip",
  4949. "reference": "8.x-1.8",
  4950. "shasum": "c1279e6c683edc2dbccedba8de1505340c8a62b6"
  4951. },
  4952. "require": {
  4953. "drupal/core": "^8.7.7 || ^9"
  4954. },
  4955. "require-dev": {
  4956. "drupal/diff": "1.x-dev"
  4957. },
  4958. "type": "drupal-module",
  4959. "extra": {
  4960. "drupal": {
  4961. "version": "8.x-1.8",
  4962. "datestamp": "1583961846",
  4963. "security-coverage": {
  4964. "status": "covered",
  4965. "message": "Covered by Drupal's security advisory policy"
  4966. }
  4967. }
  4968. },
  4969. "notification-url": "https://packages.drupal.org/8/downloads",
  4970. "license": [
  4971. "GPL-2.0"
  4972. ],
  4973. "authors": [
  4974. {
  4975. "name": "Berdir",
  4976. "homepage": "https://www.drupal.org/user/214652"
  4977. },
  4978. {
  4979. "name": "Frans",
  4980. "homepage": "https://www.drupal.org/user/514222"
  4981. },
  4982. {
  4983. "name": "jeroen.b",
  4984. "homepage": "https://www.drupal.org/user/1853532"
  4985. },
  4986. {
  4987. "name": "miro_dietiker",
  4988. "homepage": "https://www.drupal.org/user/227761"
  4989. }
  4990. ],
  4991. "description": "Entity Reference Revisions",
  4992. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  4993. "support": {
  4994. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  4995. }
  4996. },
  4997. {
  4998. "name": "drupal/extlink",
  4999. "version": "1.5.0",
  5000. "source": {
  5001. "type": "git",
  5002. "url": "https://git.drupalcode.org/project/extlink.git",
  5003. "reference": "8.x-1.5"
  5004. },
  5005. "dist": {
  5006. "type": "zip",
  5007. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.5.zip",
  5008. "reference": "8.x-1.5",
  5009. "shasum": "5a2b74d12ff9e9257a0566cca8dac3872da64970"
  5010. },
  5011. "require": {
  5012. "drupal/core": "^8 || ^9"
  5013. },
  5014. "type": "drupal-module",
  5015. "extra": {
  5016. "drupal": {
  5017. "version": "8.x-1.5",
  5018. "datestamp": "1601382250",
  5019. "security-coverage": {
  5020. "status": "covered",
  5021. "message": "Covered by Drupal's security advisory policy"
  5022. }
  5023. }
  5024. },
  5025. "notification-url": "https://packages.drupal.org/8/downloads",
  5026. "license": [
  5027. "GPL-2.0-or-later"
  5028. ],
  5029. "authors": [
  5030. {
  5031. "name": "Nate Lampton",
  5032. "homepage": "https://www.drupal.org/u/quicksketch",
  5033. "role": "Maintainer"
  5034. },
  5035. {
  5036. "name": "Lachlan Ennis",
  5037. "homepage": "https://www.drupal.org/u/elachlan",
  5038. "role": "Maintainer"
  5039. },
  5040. {
  5041. "name": "Neslee Canil Pinto",
  5042. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  5043. "role": "Maintainer"
  5044. }
  5045. ],
  5046. "description": "Modify behavior and appearance of external links.",
  5047. "homepage": "https://www.drupal.org/project/extlink",
  5048. "keywords": [
  5049. "Drupal",
  5050. "External Links"
  5051. ],
  5052. "support": {
  5053. "source": "https://git.drupalcode.org/project/extlink",
  5054. "issues": "https://www.drupal.org/project/issues/extlink"
  5055. }
  5056. },
  5057. {
  5058. "name": "drupal/field_group",
  5059. "version": "3.1.0",
  5060. "source": {
  5061. "type": "git",
  5062. "url": "https://git.drupalcode.org/project/field_group.git",
  5063. "reference": "8.x-3.1"
  5064. },
  5065. "dist": {
  5066. "type": "zip",
  5067. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.1.zip",
  5068. "reference": "8.x-3.1",
  5069. "shasum": "8a719eaea594f0ba874172831cb28da93c66b77a"
  5070. },
  5071. "require": {
  5072. "drupal/core": "^8.8 || ^9"
  5073. },
  5074. "require-dev": {
  5075. "drupal/jquery_ui_accordion": "^1.0"
  5076. },
  5077. "type": "drupal-module",
  5078. "extra": {
  5079. "drupal": {
  5080. "version": "8.x-3.1",
  5081. "datestamp": "1591772567",
  5082. "security-coverage": {
  5083. "status": "covered",
  5084. "message": "Covered by Drupal's security advisory policy"
  5085. }
  5086. }
  5087. },
  5088. "notification-url": "https://packages.drupal.org/8/downloads",
  5089. "license": [
  5090. "GPL-2.0-or-later"
  5091. ],
  5092. "authors": [
  5093. {
  5094. "name": "Hydra",
  5095. "homepage": "https://www.drupal.org/user/647364"
  5096. },
  5097. {
  5098. "name": "Stalski",
  5099. "homepage": "https://www.drupal.org/user/322618"
  5100. },
  5101. {
  5102. "name": "jyve",
  5103. "homepage": "https://www.drupal.org/user/591438"
  5104. },
  5105. {
  5106. "name": "nils.destoop",
  5107. "homepage": "https://www.drupal.org/user/361625"
  5108. },
  5109. {
  5110. "name": "swentel",
  5111. "homepage": "https://www.drupal.org/user/107403"
  5112. }
  5113. ],
  5114. "description": "Provides the field_group module.",
  5115. "homepage": "https://www.drupal.org/project/field_group",
  5116. "support": {
  5117. "source": "https://git.drupalcode.org/project/field_group",
  5118. "issues": "https://www.drupal.org/project/issues/field_group"
  5119. }
  5120. },
  5121. {
  5122. "name": "drupal/file_mdm",
  5123. "version": "2.1.0",
  5124. "source": {
  5125. "type": "git",
  5126. "url": "https://git.drupalcode.org/project/file_mdm.git",
  5127. "reference": "8.x-2.1"
  5128. },
  5129. "dist": {
  5130. "type": "zip",
  5131. "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-2.1.zip",
  5132. "reference": "8.x-2.1",
  5133. "shasum": "5c3d75622299ebddc0e8456bb08bb371da8771bd"
  5134. },
  5135. "require": {
  5136. "drupal/core": "^8.8 || ^9",
  5137. "lsolesen/pel": "^0.9.8",
  5138. "phenx/php-font-lib": "^0.5.2",
  5139. "php": ">=7"
  5140. },
  5141. "require-dev": {
  5142. "drupal/image_effects": "*"
  5143. },
  5144. "type": "drupal-module",
  5145. "extra": {
  5146. "drupal": {
  5147. "version": "8.x-2.1",
  5148. "datestamp": "1586801064",
  5149. "security-coverage": {
  5150. "status": "covered",
  5151. "message": "Covered by Drupal's security advisory policy"
  5152. }
  5153. }
  5154. },
  5155. "notification-url": "https://packages.drupal.org/8/downloads",
  5156. "license": [
  5157. "GPL-2.0-or-later"
  5158. ],
  5159. "authors": [
  5160. {
  5161. "name": "mondrake",
  5162. "homepage": "https://www.drupal.org/user/1307444"
  5163. }
  5164. ],
  5165. "description": "Provides a service to manage file metadata.",
  5166. "homepage": "https://www.drupal.org/project/file_mdm",
  5167. "support": {
  5168. "source": "https://git.drupalcode.org/project/file_mdm"
  5169. }
  5170. },
  5171. {
  5172. "name": "drupal/filefield_sources",
  5173. "version": "dev-1.x",
  5174. "source": {
  5175. "type": "git",
  5176. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  5177. "reference": "2477ff91863c9c19569de4ebb3d379d0e5e24312"
  5178. },
  5179. "require": {
  5180. "drupal/core": "^8 || ^9"
  5181. },
  5182. "require-dev": {
  5183. "drupal/imce": "*"
  5184. },
  5185. "type": "drupal-module",
  5186. "extra": {
  5187. "branch-alias": {
  5188. "dev-1.x": "1.x-dev"
  5189. },
  5190. "drupal": {
  5191. "version": "8.x-1.0-alpha3+3-dev",
  5192. "datestamp": "1604712687",
  5193. "security-coverage": {
  5194. "status": "not-covered",
  5195. "message": "Dev releases are not covered by Drupal security advisories."
  5196. }
  5197. }
  5198. },
  5199. "notification-url": "https://packages.drupal.org/8/downloads",
  5200. "license": [
  5201. "GPL-2.0-or-later"
  5202. ],
  5203. "authors": [
  5204. {
  5205. "name": "Nate Lampton (quicksketch)",
  5206. "homepage": "https://www.drupal.org/u/quicksketch",
  5207. "role": "Maintainer"
  5208. },
  5209. {
  5210. "name": "Andrey Khromyshev (profak)",
  5211. "homepage": "https://www.drupal.org/u/profak",
  5212. "role": "Maintainer"
  5213. },
  5214. {
  5215. "name": "David Valdez (gnuget)",
  5216. "homepage": "https://www.drupal.org/u/gnuget",
  5217. "role": "Maintainer"
  5218. }
  5219. ],
  5220. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  5221. "homepage": "https://www.drupal.org/project/filefield_sources",
  5222. "support": {
  5223. "source": "https://git.drupalcode.org/project/filefield_sources",
  5224. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  5225. "irc": "irc://irc.freenode.org/drupal-contribute"
  5226. },
  5227. "time": "2020-11-07T01:30:52+00:00"
  5228. },
  5229. {
  5230. "name": "drupal/filter_perms",
  5231. "version": "dev-1.x",
  5232. "source": {
  5233. "type": "git",
  5234. "url": "https://git.drupalcode.org/project/filter_perms.git",
  5235. "reference": "f9abe65da2236de801902256f8388291bc3d2c83"
  5236. },
  5237. "require": {
  5238. "drupal/core": "^8 || ^9"
  5239. },
  5240. "type": "drupal-module",
  5241. "extra": {
  5242. "branch-alias": {
  5243. "dev-1.x": "1.x-dev"
  5244. },
  5245. "drupal": {
  5246. "version": "8.x-1.0-alpha1+2-dev",
  5247. "datestamp": "1599239698",
  5248. "security-coverage": {
  5249. "status": "not-covered",
  5250. "message": "Dev releases are not covered by Drupal security advisories."
  5251. }
  5252. }
  5253. },
  5254. "notification-url": "https://packages.drupal.org/8/downloads",
  5255. "license": [
  5256. "GPL-2.0-or-later"
  5257. ],
  5258. "authors": [
  5259. {
  5260. "name": "cYu",
  5261. "homepage": "https://www.drupal.org/user/202205"
  5262. },
  5263. {
  5264. "name": "deekayen",
  5265. "homepage": "https://www.drupal.org/user/972"
  5266. },
  5267. {
  5268. "name": "ivagold",
  5269. "homepage": "https://www.drupal.org/user/3061533"
  5270. },
  5271. {
  5272. "name": "mgbellaire",
  5273. "homepage": "https://www.drupal.org/user/1831932"
  5274. },
  5275. {
  5276. "name": "willzyx",
  5277. "homepage": "https://www.drupal.org/user/1043862"
  5278. }
  5279. ],
  5280. "description": "Provides role and module filters to simplify the user permissions page.",
  5281. "homepage": "https://www.drupal.org/project/filter_perms",
  5282. "support": {
  5283. "source": "https://git.drupalcode.org/project/filter_perms"
  5284. },
  5285. "time": "2020-11-17T18:20:11+00:00"
  5286. },
  5287. {
  5288. "name": "drupal/graphql",
  5289. "version": "4.1.0",
  5290. "source": {
  5291. "type": "git",
  5292. "url": "https://git.drupalcode.org/project/graphql.git",
  5293. "reference": "8.x-4.1"
  5294. },
  5295. "dist": {
  5296. "type": "zip",
  5297. "url": "https://ftp.drupal.org/files/projects/graphql-8.x-4.1.zip",
  5298. "reference": "8.x-4.1",
  5299. "shasum": "c37587b95e78b62b099bfee128e0a5d634696335"
  5300. },
  5301. "require": {
  5302. "drupal/core": "^8 || ^9",
  5303. "drupal/typed_data": "*",
  5304. "php": ">=7.2",
  5305. "webonyx/graphql-php": "^14.5.0"
  5306. },
  5307. "require-dev": {
  5308. "drupal/node-node": "*"
  5309. },
  5310. "type": "drupal-module",
  5311. "extra": {
  5312. "drupal": {
  5313. "version": "8.x-4.1",
  5314. "datestamp": "1622655866",
  5315. "security-coverage": {
  5316. "status": "covered",
  5317. "message": "Covered by Drupal's security advisory policy"
  5318. }
  5319. }
  5320. },
  5321. "notification-url": "https://packages.drupal.org/8/downloads",
  5322. "license": [
  5323. "GPL-2.0+"
  5324. ],
  5325. "authors": [
  5326. {
  5327. "name": "fubhy",
  5328. "homepage": "https://www.drupal.org/user/761344"
  5329. },
  5330. {
  5331. "name": "hideaway",
  5332. "homepage": "https://www.drupal.org/user/741876"
  5333. },
  5334. {
  5335. "name": "joaogarin",
  5336. "homepage": "https://www.drupal.org/user/612814"
  5337. },
  5338. {
  5339. "name": "klausi",
  5340. "homepage": "https://www.drupal.org/user/262198"
  5341. },
  5342. {
  5343. "name": "pmelab",
  5344. "homepage": "https://www.drupal.org/user/555322"
  5345. }
  5346. ],
  5347. "description": "Exposes your Drupal data model through a GraphQL schema.",
  5348. "homepage": "http://drupal.org/project/graphql",
  5349. "support": {
  5350. "source": "https://git.drupalcode.org/project/graphql"
  5351. }
  5352. },
  5353. {
  5354. "name": "drupal/honeypot",
  5355. "version": "2.0.1",
  5356. "source": {
  5357. "type": "git",
  5358. "url": "https://git.drupalcode.org/project/honeypot.git",
  5359. "reference": "2.0.1"
  5360. },
  5361. "dist": {
  5362. "type": "zip",
  5363. "url": "https://ftp.drupal.org/files/projects/honeypot-2.0.1.zip",
  5364. "reference": "2.0.1",
  5365. "shasum": "c29d248c0fdcdf733a31b9214355acfa73716632"
  5366. },
  5367. "require": {
  5368. "drupal/core": "^8.0 || ^9.0"
  5369. },
  5370. "type": "drupal-module",
  5371. "extra": {
  5372. "drupal": {
  5373. "version": "2.0.1",
  5374. "datestamp": "1597855128",
  5375. "security-coverage": {
  5376. "status": "covered",
  5377. "message": "Covered by Drupal's security advisory policy"
  5378. }
  5379. }
  5380. },
  5381. "notification-url": "https://packages.drupal.org/8/downloads",
  5382. "license": [
  5383. "GPL-2.0-or-later"
  5384. ],
  5385. "authors": [
  5386. {
  5387. "name": "Jeff Geerling",
  5388. "homepage": "https://www.drupal.org/user/213194",
  5389. "email": "geerlingguy@mac.com"
  5390. },
  5391. {
  5392. "name": "geerlingguy",
  5393. "homepage": "https://www.drupal.org/user/389011"
  5394. },
  5395. {
  5396. "name": "vijaycs85",
  5397. "homepage": "https://www.drupal.org/user/93488"
  5398. }
  5399. ],
  5400. "description": "Mitigates spam form submissions using the honeypot method.",
  5401. "homepage": "https://www.drupal.org/project/honeypot",
  5402. "keywords": [
  5403. "deterrent",
  5404. "form",
  5405. "honeypot",
  5406. "honeytrap",
  5407. "php",
  5408. "spam"
  5409. ],
  5410. "support": {
  5411. "source": "https://git.drupalcode.org/project/honeypot",
  5412. "issues": "https://www.drupal.org/project/issues/honeypot"
  5413. }
  5414. },
  5415. {
  5416. "name": "drupal/imagemagick",
  5417. "version": "3.1.0",
  5418. "source": {
  5419. "type": "git",
  5420. "url": "https://git.drupalcode.org/project/imagemagick.git",
  5421. "reference": "8.x-3.1"
  5422. },
  5423. "dist": {
  5424. "type": "zip",
  5425. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-3.1.zip",
  5426. "reference": "8.x-3.1",
  5427. "shasum": "f427b06312325aa667c549fed261f73f29e231e7"
  5428. },
  5429. "require": {
  5430. "drupal/core": "^8.8 || ^9",
  5431. "drupal/file_mdm": "^2",
  5432. "drupal/sophron": "^1",
  5433. "php": ">=7"
  5434. },
  5435. "type": "drupal-module",
  5436. "extra": {
  5437. "drupal": {
  5438. "version": "8.x-3.1",
  5439. "datestamp": "1581420882",
  5440. "security-coverage": {
  5441. "status": "covered",
  5442. "message": "Covered by Drupal's security advisory policy"
  5443. }
  5444. }
  5445. },
  5446. "notification-url": "https://packages.drupal.org/8/downloads",
  5447. "license": [
  5448. "GPL-2.0-or-later"
  5449. ],
  5450. "authors": [
  5451. {
  5452. "name": "Chris Charlton",
  5453. "homepage": "https://www.drupal.org/user/17089"
  5454. },
  5455. {
  5456. "name": "chx",
  5457. "homepage": "https://www.drupal.org/user/9446"
  5458. },
  5459. {
  5460. "name": "claudiu.cristea",
  5461. "homepage": "https://www.drupal.org/user/56348"
  5462. },
  5463. {
  5464. "name": "dman",
  5465. "homepage": "https://www.drupal.org/user/33240"
  5466. },
  5467. {
  5468. "name": "dopry",
  5469. "homepage": "https://www.drupal.org/user/22202"
  5470. },
  5471. {
  5472. "name": "drewish",
  5473. "homepage": "https://www.drupal.org/user/34869"
  5474. },
  5475. {
  5476. "name": "gdl",
  5477. "homepage": "https://www.drupal.org/user/507326"
  5478. },
  5479. {
  5480. "name": "mondrake",
  5481. "homepage": "https://www.drupal.org/user/1307444"
  5482. },
  5483. {
  5484. "name": "quicksketch",
  5485. "homepage": "https://www.drupal.org/user/35821"
  5486. },
  5487. {
  5488. "name": "sun",
  5489. "homepage": "https://www.drupal.org/user/54136"
  5490. },
  5491. {
  5492. "name": "walkah",
  5493. "homepage": "https://www.drupal.org/user/1531"
  5494. }
  5495. ],
  5496. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  5497. "homepage": "https://www.drupal.org/project/imagemagick",
  5498. "support": {
  5499. "source": "https://git.drupalcode.org/project/imagemagick"
  5500. }
  5501. },
  5502. {
  5503. "name": "drupal/inline_entity_form",
  5504. "version": "1.0.0-rc8",
  5505. "source": {
  5506. "type": "git",
  5507. "url": "https://git.drupalcode.org/project/inline_entity_form.git",
  5508. "reference": "8.x-1.0-rc8"
  5509. },
  5510. "dist": {
  5511. "type": "zip",
  5512. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc8.zip",
  5513. "reference": "8.x-1.0-rc8",
  5514. "shasum": "103de382dd07b4acdd6bacd5ad76628fdf0eefda"
  5515. },
  5516. "require": {
  5517. "drupal/core": "^8.7.7 || ^9"
  5518. },
  5519. "require-dev": {
  5520. "drupal/entity_reference_revisions": "^1.0"
  5521. },
  5522. "type": "drupal-module",
  5523. "extra": {
  5524. "drupal": {
  5525. "version": "8.x-1.0-rc8",
  5526. "datestamp": "1602172716",
  5527. "security-coverage": {
  5528. "status": "not-covered",
  5529. "message": "RC releases are not covered by Drupal security advisories."
  5530. }
  5531. }
  5532. },
  5533. "notification-url": "https://packages.drupal.org/8/downloads",
  5534. "license": [
  5535. "GPL-2.0-or-later"
  5536. ],
  5537. "authors": [
  5538. {
  5539. "name": "bojanz",
  5540. "homepage": "https://www.drupal.org/user/86106"
  5541. },
  5542. {
  5543. "name": "dawehner",
  5544. "homepage": "https://www.drupal.org/user/99340"
  5545. },
  5546. {
  5547. "name": "geek-merlin",
  5548. "homepage": "https://www.drupal.org/user/229048"
  5549. },
  5550. {
  5551. "name": "joachim",
  5552. "homepage": "https://www.drupal.org/user/107701"
  5553. },
  5554. {
  5555. "name": "jsacksick",
  5556. "homepage": "https://www.drupal.org/user/972218"
  5557. },
  5558. {
  5559. "name": "kaythay",
  5560. "homepage": "https://www.drupal.org/user/2182186"
  5561. },
  5562. {
  5563. "name": "oknate",
  5564. "homepage": "https://www.drupal.org/user/471638"
  5565. },
  5566. {
  5567. "name": "rszrama",
  5568. "homepage": "https://www.drupal.org/user/49344"
  5569. },
  5570. {
  5571. "name": "slashrsm",
  5572. "homepage": "https://www.drupal.org/user/744628"
  5573. },
  5574. {
  5575. "name": "webflo",
  5576. "homepage": "https://www.drupal.org/user/254778"
  5577. }
  5578. ],
  5579. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  5580. "homepage": "https://www.drupal.org/project/inline_entity_form",
  5581. "support": {
  5582. "source": "https://git.drupalcode.org/project/inline_entity_form"
  5583. }
  5584. },
  5585. {
  5586. "name": "drupal/insert",
  5587. "version": "dev-2.x",
  5588. "source": {
  5589. "type": "git",
  5590. "url": "https://git.drupalcode.org/project/insert.git",
  5591. "reference": "892cb12f5c748f29106a04b4cdfd4fe77a503118"
  5592. },
  5593. "require": {
  5594. "drupal/core": "^8 || ^9"
  5595. },
  5596. "require-dev": {
  5597. "drupal/colorbox": "*"
  5598. },
  5599. "type": "drupal-module",
  5600. "extra": {
  5601. "branch-alias": {
  5602. "dev-2.x": "2.x-dev"
  5603. },
  5604. "drupal": {
  5605. "version": "8.x-2.0-beta1+6-dev",
  5606. "datestamp": "1597165610",
  5607. "security-coverage": {
  5608. "status": "not-covered",
  5609. "message": "Dev releases are not covered by Drupal security advisories."
  5610. }
  5611. }
  5612. },
  5613. "notification-url": "https://packages.drupal.org/8/downloads",
  5614. "license": [
  5615. "GPL-2.0-or-later"
  5616. ],
  5617. "authors": [
  5618. {
  5619. "name": "Neslee Canil Pinto",
  5620. "homepage": "https://www.drupal.org/user/3580850"
  5621. },
  5622. {
  5623. "name": "Snater",
  5624. "homepage": "https://www.drupal.org/user/3513717"
  5625. },
  5626. {
  5627. "name": "quicksketch",
  5628. "homepage": "https://www.drupal.org/user/35821"
  5629. }
  5630. ],
  5631. "description": "Assists in inserting files, images, or other media into the body field as well as other editor and text areas.",
  5632. "homepage": "https://www.drupal.org/project/insert",
  5633. "support": {
  5634. "source": "https://git.drupalcode.org/project/insert"
  5635. },
  5636. "time": "2020-10-08T16:45:33+00:00"
  5637. },
  5638. {
  5639. "name": "drupal/jquery_ui",
  5640. "version": "1.4.0",
  5641. "source": {
  5642. "type": "git",
  5643. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  5644. "reference": "8.x-1.4"
  5645. },
  5646. "dist": {
  5647. "type": "zip",
  5648. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.4.zip",
  5649. "reference": "8.x-1.4",
  5650. "shasum": "64c19ecc8902e2b4b1ab0cc5f5fe28dbc83bfebe"
  5651. },
  5652. "require": {
  5653. "drupal/core": "^8 || ^9"
  5654. },
  5655. "type": "drupal-module",
  5656. "extra": {
  5657. "drupal": {
  5658. "version": "8.x-1.4",
  5659. "datestamp": "1582149957",
  5660. "security-coverage": {
  5661. "status": "covered",
  5662. "message": "Covered by Drupal's security advisory policy"
  5663. }
  5664. }
  5665. },
  5666. "notification-url": "https://packages.drupal.org/8/downloads",
  5667. "license": [
  5668. "GPL-2.0-or-later"
  5669. ],
  5670. "authors": [
  5671. {
  5672. "name": "RobLoach",
  5673. "homepage": "https://www.drupal.org/user/61114"
  5674. },
  5675. {
  5676. "name": "jjeff",
  5677. "homepage": "https://www.drupal.org/user/17190"
  5678. },
  5679. {
  5680. "name": "lauriii",
  5681. "homepage": "https://www.drupal.org/user/1078742"
  5682. },
  5683. {
  5684. "name": "litwol",
  5685. "homepage": "https://www.drupal.org/user/78134"
  5686. },
  5687. {
  5688. "name": "mfb",
  5689. "homepage": "https://www.drupal.org/user/12302"
  5690. },
  5691. {
  5692. "name": "mfer",
  5693. "homepage": "https://www.drupal.org/user/25701"
  5694. },
  5695. {
  5696. "name": "mikelutz",
  5697. "homepage": "https://www.drupal.org/user/2972409"
  5698. },
  5699. {
  5700. "name": "sun",
  5701. "homepage": "https://www.drupal.org/user/54136"
  5702. },
  5703. {
  5704. "name": "webchick",
  5705. "homepage": "https://www.drupal.org/user/24967"
  5706. },
  5707. {
  5708. "name": "zrpnr",
  5709. "homepage": "https://www.drupal.org/user/1448368"
  5710. }
  5711. ],
  5712. "description": "Provides jQuery UI library.",
  5713. "homepage": "https://www.drupal.org/project/jquery_ui",
  5714. "support": {
  5715. "source": "https://git.drupalcode.org/project/jquery_ui"
  5716. }
  5717. },
  5718. {
  5719. "name": "drupal/jquery_ui_button",
  5720. "version": "1.1.0",
  5721. "source": {
  5722. "type": "git",
  5723. "url": "https://git.drupalcode.org/project/jquery_ui_button.git",
  5724. "reference": "8.x-1.1"
  5725. },
  5726. "dist": {
  5727. "type": "zip",
  5728. "url": "https://ftp.drupal.org/files/projects/jquery_ui_button-8.x-1.1.zip",
  5729. "reference": "8.x-1.1",
  5730. "shasum": "70175a96c9034cc1cb2f28c415b2a9828355cc1a"
  5731. },
  5732. "require": {
  5733. "drupal/core": "^8 || ^9",
  5734. "drupal/jquery_ui": "*",
  5735. "drupal/jquery_ui_checkboxradio": "*",
  5736. "drupal/jquery_ui_controlgroup": "*"
  5737. },
  5738. "type": "drupal-module",
  5739. "extra": {
  5740. "drupal": {
  5741. "version": "8.x-1.1",
  5742. "datestamp": "1584106807",
  5743. "security-coverage": {
  5744. "status": "covered",
  5745. "message": "Covered by Drupal's security advisory policy"
  5746. }
  5747. }
  5748. },
  5749. "notification-url": "https://packages.drupal.org/8/downloads",
  5750. "license": [
  5751. "GPL-2.0-or-later"
  5752. ],
  5753. "authors": [
  5754. {
  5755. "name": "bnjmnm",
  5756. "homepage": "https://www.drupal.org/user/2369194"
  5757. },
  5758. {
  5759. "name": "lauriii",
  5760. "homepage": "https://www.drupal.org/user/1078742"
  5761. },
  5762. {
  5763. "name": "zrpnr",
  5764. "homepage": "https://www.drupal.org/user/1448368"
  5765. }
  5766. ],
  5767. "description": "Provides jQuery UI Button library.",
  5768. "homepage": "https://www.drupal.org/project/jquery_ui_button",
  5769. "support": {
  5770. "source": "https://git.drupalcode.org/project/jquery_ui_button"
  5771. }
  5772. },
  5773. {
  5774. "name": "drupal/jquery_ui_checkboxradio",
  5775. "version": "1.2.0",
  5776. "source": {
  5777. "type": "git",
  5778. "url": "https://git.drupalcode.org/project/jquery_ui_checkboxradio.git",
  5779. "reference": "8.x-1.2"
  5780. },
  5781. "dist": {
  5782. "type": "zip",
  5783. "url": "https://ftp.drupal.org/files/projects/jquery_ui_checkboxradio-8.x-1.2.zip",
  5784. "reference": "8.x-1.2",
  5785. "shasum": "8edb088cb89f4a0f95aa9d43894bf506dc5f6fe1"
  5786. },
  5787. "require": {
  5788. "drupal/core": "^8 || ^9",
  5789. "drupal/jquery_ui": "*"
  5790. },
  5791. "type": "drupal-module",
  5792. "extra": {
  5793. "drupal": {
  5794. "version": "8.x-1.2",
  5795. "datestamp": "1584106406",
  5796. "security-coverage": {
  5797. "status": "covered",
  5798. "message": "Covered by Drupal's security advisory policy"
  5799. }
  5800. }
  5801. },
  5802. "notification-url": "https://packages.drupal.org/8/downloads",
  5803. "license": [
  5804. "GPL-2.0-or-later"
  5805. ],
  5806. "authors": [
  5807. {
  5808. "name": "bnjmnm",
  5809. "homepage": "https://www.drupal.org/user/2369194"
  5810. },
  5811. {
  5812. "name": "lauriii",
  5813. "homepage": "https://www.drupal.org/user/1078742"
  5814. },
  5815. {
  5816. "name": "zrpnr",
  5817. "homepage": "https://www.drupal.org/user/1448368"
  5818. }
  5819. ],
  5820. "description": "Provides jQuery UI Checkboxradio library.",
  5821. "homepage": "https://www.drupal.org/project/jquery_ui_checkboxradio",
  5822. "support": {
  5823. "source": "https://git.drupalcode.org/project/jquery_ui_checkboxradio"
  5824. }
  5825. },
  5826. {
  5827. "name": "drupal/jquery_ui_controlgroup",
  5828. "version": "1.1.0",
  5829. "source": {
  5830. "type": "git",
  5831. "url": "https://git.drupalcode.org/project/jquery_ui_controlgroup.git",
  5832. "reference": "8.x-1.1"
  5833. },
  5834. "dist": {
  5835. "type": "zip",
  5836. "url": "https://ftp.drupal.org/files/projects/jquery_ui_controlgroup-8.x-1.1.zip",
  5837. "reference": "8.x-1.1",
  5838. "shasum": "ddbd4f01df4e3c9566aa76ba256217a27f45f48a"
  5839. },
  5840. "require": {
  5841. "drupal/core": "^8 || ^9",
  5842. "drupal/jquery_ui": "*"
  5843. },
  5844. "type": "drupal-module",
  5845. "extra": {
  5846. "drupal": {
  5847. "version": "8.x-1.1",
  5848. "datestamp": "1584106616",
  5849. "security-coverage": {
  5850. "status": "covered",
  5851. "message": "Covered by Drupal's security advisory policy"
  5852. }
  5853. }
  5854. },
  5855. "notification-url": "https://packages.drupal.org/8/downloads",
  5856. "license": [
  5857. "GPL-2.0-or-later"
  5858. ],
  5859. "authors": [
  5860. {
  5861. "name": "bnjmnm",
  5862. "homepage": "https://www.drupal.org/user/2369194"
  5863. },
  5864. {
  5865. "name": "lauriii",
  5866. "homepage": "https://www.drupal.org/user/1078742"
  5867. },
  5868. {
  5869. "name": "zrpnr",
  5870. "homepage": "https://www.drupal.org/user/1448368"
  5871. }
  5872. ],
  5873. "description": "Provides jQuery UI Controlgroup library.",
  5874. "homepage": "https://www.drupal.org/project/jquery_ui_controlgroup",
  5875. "support": {
  5876. "source": "https://git.drupalcode.org/project/jquery_ui_controlgroup"
  5877. }
  5878. },
  5879. {
  5880. "name": "drupal/jquery_ui_datepicker",
  5881. "version": "1.0.0",
  5882. "source": {
  5883. "type": "git",
  5884. "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
  5885. "reference": "8.x-1.0"
  5886. },
  5887. "dist": {
  5888. "type": "zip",
  5889. "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-8.x-1.0.zip",
  5890. "reference": "8.x-1.0",
  5891. "shasum": "954f12f93e82b6c93e6797fe2e6e66604ad1d2b2"
  5892. },
  5893. "require": {
  5894. "drupal/core": "^8 || ^9",
  5895. "drupal/jquery_ui": "*"
  5896. },
  5897. "type": "drupal-module",
  5898. "extra": {
  5899. "drupal": {
  5900. "version": "8.x-1.0",
  5901. "datestamp": "1589684301",
  5902. "security-coverage": {
  5903. "status": "covered",
  5904. "message": "Covered by Drupal's security advisory policy"
  5905. }
  5906. }
  5907. },
  5908. "notification-url": "https://packages.drupal.org/8/downloads",
  5909. "license": [
  5910. "GPL-2.0-or-later"
  5911. ],
  5912. "authors": [
  5913. {
  5914. "name": "jrockowitz",
  5915. "homepage": "https://www.drupal.org/user/371407"
  5916. },
  5917. {
  5918. "name": "zrpnr",
  5919. "homepage": "https://www.drupal.org/user/1448368"
  5920. }
  5921. ],
  5922. "description": "Provides jQuery UI Datepicker library.",
  5923. "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
  5924. "support": {
  5925. "source": "https://git.drupalcode.org/project/jquery_ui_datepicker"
  5926. }
  5927. },
  5928. {
  5929. "name": "drupal/jquery_ui_slider",
  5930. "version": "1.1.0",
  5931. "source": {
  5932. "type": "git",
  5933. "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
  5934. "reference": "8.x-1.1"
  5935. },
  5936. "dist": {
  5937. "type": "zip",
  5938. "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-8.x-1.1.zip",
  5939. "reference": "8.x-1.1",
  5940. "shasum": "79b90cf60d45fc33ffdaa84bb2d6563f78a7d3d1"
  5941. },
  5942. "require": {
  5943. "drupal/core": "^8 || ^9",
  5944. "drupal/jquery_ui": "*"
  5945. },
  5946. "type": "drupal-module",
  5947. "extra": {
  5948. "drupal": {
  5949. "version": "8.x-1.1",
  5950. "datestamp": "1584107817",
  5951. "security-coverage": {
  5952. "status": "covered",
  5953. "message": "Covered by Drupal's security advisory policy"
  5954. }
  5955. }
  5956. },
  5957. "notification-url": "https://packages.drupal.org/8/downloads",
  5958. "license": [
  5959. "GPL-2.0-or-later"
  5960. ],
  5961. "authors": [
  5962. {
  5963. "name": "bnjmnm",
  5964. "homepage": "https://www.drupal.org/user/2369194"
  5965. },
  5966. {
  5967. "name": "lauriii",
  5968. "homepage": "https://www.drupal.org/user/1078742"
  5969. },
  5970. {
  5971. "name": "zrpnr",
  5972. "homepage": "https://www.drupal.org/user/1448368"
  5973. }
  5974. ],
  5975. "description": "Provides jQuery UI Slider library.",
  5976. "homepage": "https://www.drupal.org/project/jquery_ui_slider",
  5977. "support": {
  5978. "source": "https://git.drupalcode.org/project/jquery_ui_slider"
  5979. }
  5980. },
  5981. {
  5982. "name": "drupal/jquery_ui_touch_punch",
  5983. "version": "1.0.0",
  5984. "source": {
  5985. "type": "git",
  5986. "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
  5987. "reference": "1.0.0"
  5988. },
  5989. "dist": {
  5990. "type": "zip",
  5991. "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.0.0.zip",
  5992. "reference": "1.0.0",
  5993. "shasum": "8444a0ed897ba3d8e8876a9602ec8b3dca678cd1"
  5994. },
  5995. "require": {
  5996. "drupal/core": "^8 || ^9",
  5997. "drupal/jquery_ui": "^1.0"
  5998. },
  5999. "suggest": {
  6000. "furf/jquery-ui-touch-punch": "Required to use drupal/jquery_ui_touch_punch module."
  6001. },
  6002. "type": "drupal-module",
  6003. "extra": {
  6004. "drupal": {
  6005. "version": "1.0.0",
  6006. "datestamp": "1591893292",
  6007. "security-coverage": {
  6008. "status": "not-covered",
  6009. "message": "Project has not opted into security advisory coverage!"
  6010. }
  6011. }
  6012. },
  6013. "notification-url": "https://packages.drupal.org/8/downloads",
  6014. "license": [
  6015. "GPL-2.0+"
  6016. ],
  6017. "authors": [
  6018. {
  6019. "name": "Naveen Valecha",
  6020. "homepage": "https://drupal.org/u/naveenvalecha",
  6021. "role": "Maintainer"
  6022. }
  6023. ],
  6024. "description": "Provides jQuery UI Touch Punch library.",
  6025. "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
  6026. "keywords": [
  6027. "Drupal",
  6028. "jquery_ui_touch_punch"
  6029. ],
  6030. "support": {
  6031. "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
  6032. "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch",
  6033. "irc": "irc://irc.freenode.org/drupal-contribute"
  6034. }
  6035. },
  6036. {
  6037. "name": "drupal/link_attributes",
  6038. "version": "1.11.0",
  6039. "source": {
  6040. "type": "git",
  6041. "url": "https://git.drupalcode.org/project/link_attributes.git",
  6042. "reference": "8.x-1.11"
  6043. },
  6044. "dist": {
  6045. "type": "zip",
  6046. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.11.zip",
  6047. "reference": "8.x-1.11",
  6048. "shasum": "ca8c7e71c38350e3784dc3d1f779d700f55df818"
  6049. },
  6050. "require": {
  6051. "drupal/core": "^8 || ^9"
  6052. },
  6053. "type": "drupal-module",
  6054. "extra": {
  6055. "drupal": {
  6056. "version": "8.x-1.11",
  6057. "datestamp": "1598323550",
  6058. "security-coverage": {
  6059. "status": "covered",
  6060. "message": "Covered by Drupal's security advisory policy"
  6061. }
  6062. }
  6063. },
  6064. "notification-url": "https://packages.drupal.org/8/downloads",
  6065. "license": [
  6066. "GPL-2.0-or-later"
  6067. ],
  6068. "authors": [
  6069. {
  6070. "name": "larowlan",
  6071. "homepage": "https://www.drupal.org/user/395439"
  6072. }
  6073. ],
  6074. "description": "Provides a widget to allow settings of link attributes for menu links.",
  6075. "homepage": "https://www.drupal.org/project/link_attributes",
  6076. "support": {
  6077. "source": "https://git.drupalcode.org/project/link_attributes"
  6078. }
  6079. },
  6080. {
  6081. "name": "drupal/linkit",
  6082. "version": "5.0.0-beta12",
  6083. "source": {
  6084. "type": "git",
  6085. "url": "https://git.drupalcode.org/project/linkit.git",
  6086. "reference": "8.x-5.0-beta12"
  6087. },
  6088. "dist": {
  6089. "type": "zip",
  6090. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta12.zip",
  6091. "reference": "8.x-5.0-beta12",
  6092. "shasum": "9e03975b476f893112d8b12d8b8610926a4e7f2c"
  6093. },
  6094. "require": {
  6095. "drupal/core": "^8.7.7 || ^9"
  6096. },
  6097. "require-dev": {
  6098. "drupal/imce": "*"
  6099. },
  6100. "type": "drupal-module",
  6101. "extra": {
  6102. "drupal": {
  6103. "version": "8.x-5.0-beta12",
  6104. "datestamp": "1608957625",
  6105. "security-coverage": {
  6106. "status": "not-covered",
  6107. "message": "Beta releases are not covered by Drupal security advisories."
  6108. }
  6109. }
  6110. },
  6111. "notification-url": "https://packages.drupal.org/8/downloads",
  6112. "license": [
  6113. "GPL-2.0-or-later"
  6114. ],
  6115. "authors": [
  6116. {
  6117. "name": "Emil Stjerneman",
  6118. "homepage": "https://stjerneman.com",
  6119. "email": "emil@stjerneman.com",
  6120. "role": "Maintainer"
  6121. }
  6122. ],
  6123. "description": "Linkit - Enriched linking experience",
  6124. "homepage": "http://drupal.org/project/linkit",
  6125. "support": {
  6126. "source": "http://cgit.drupalcode.org/linkit",
  6127. "issues": "http://drupal.org/project/linkit"
  6128. }
  6129. },
  6130. {
  6131. "name": "drupal/login_destination",
  6132. "version": "dev-2.x",
  6133. "source": {
  6134. "type": "git",
  6135. "url": "https://git.drupalcode.org/project/login_destination.git",
  6136. "reference": "0a2c46abd451b4c83e2f5a50cb791e68b141a8ab"
  6137. },
  6138. "require": {
  6139. "drupal/core": "^8.7.10 || ^9"
  6140. },
  6141. "require-dev": {
  6142. "drupal/admin_toolbar": "^1.23",
  6143. "drupal/admin_toolbar_tools": "*"
  6144. },
  6145. "type": "drupal-module",
  6146. "extra": {
  6147. "branch-alias": {
  6148. "dev-2.x": "2.x-dev"
  6149. },
  6150. "drupal": {
  6151. "version": "8.x-2.0-alpha3+8-dev",
  6152. "datestamp": "1603450565",
  6153. "security-coverage": {
  6154. "status": "not-covered",
  6155. "message": "Dev releases are not covered by Drupal security advisories."
  6156. }
  6157. }
  6158. },
  6159. "notification-url": "https://packages.drupal.org/8/downloads",
  6160. "license": [
  6161. "GPL-2.0-or-later"
  6162. ],
  6163. "authors": [
  6164. {
  6165. "name": "3CWebDev",
  6166. "homepage": "https://www.drupal.org/user/61221"
  6167. },
  6168. {
  6169. "name": "Oliver Huynh",
  6170. "homepage": "https://www.drupal.org/user/243730"
  6171. },
  6172. {
  6173. "name": "beautifulmind",
  6174. "homepage": "https://www.drupal.org/user/219482"
  6175. },
  6176. {
  6177. "name": "ddrozdik",
  6178. "homepage": "https://www.drupal.org/user/574124"
  6179. },
  6180. {
  6181. "name": "jng12",
  6182. "homepage": "https://www.drupal.org/user/204316"
  6183. },
  6184. {
  6185. "name": "marcp",
  6186. "homepage": "https://www.drupal.org/user/20885"
  6187. },
  6188. {
  6189. "name": "mithy",
  6190. "homepage": "https://www.drupal.org/user/258911"
  6191. },
  6192. {
  6193. "name": "moshe weitzman",
  6194. "homepage": "https://www.drupal.org/user/23"
  6195. },
  6196. {
  6197. "name": "perennial.sky",
  6198. "homepage": "https://www.drupal.org/user/2622667"
  6199. },
  6200. {
  6201. "name": "rsvelko",
  6202. "homepage": "https://www.drupal.org/user/337401"
  6203. }
  6204. ],
  6205. "description": "The Login Destination module add possibility customize the destination that the user is redirected to after login.",
  6206. "homepage": "https://www.drupal.org/project/login_destination",
  6207. "support": {
  6208. "source": "https://git.drupalcode.org/project/login_destination"
  6209. },
  6210. "time": "2020-10-23T10:55:36+00:00"
  6211. },
  6212. {
  6213. "name": "drupal/maillog",
  6214. "version": "dev-1.x",
  6215. "source": {
  6216. "type": "git",
  6217. "url": "https://git.drupalcode.org/project/maillog.git",
  6218. "reference": "053d0b4a53aea4f848be75b02fc8974bb7b053b3"
  6219. },
  6220. "require": {
  6221. "drupal/core": "^8 || ^9"
  6222. },
  6223. "type": "drupal-module",
  6224. "extra": {
  6225. "branch-alias": {
  6226. "dev-1.x": "1.x-dev"
  6227. },
  6228. "drupal": {
  6229. "version": "8.x-1.0-beta1+0-dev",
  6230. "datestamp": "1600799873",
  6231. "security-coverage": {
  6232. "status": "not-covered",
  6233. "message": "Dev releases are not covered by Drupal security advisories."
  6234. }
  6235. }
  6236. },
  6237. "notification-url": "https://packages.drupal.org/8/downloads",
  6238. "license": [
  6239. "GPL-2.0-or-later"
  6240. ],
  6241. "authors": [
  6242. {
  6243. "name": "Berdir",
  6244. "homepage": "https://www.drupal.org/user/214652"
  6245. },
  6246. {
  6247. "name": "DamienMcKenna",
  6248. "homepage": "https://www.drupal.org/user/108450"
  6249. },
  6250. {
  6251. "name": "miro_dietiker",
  6252. "homepage": "https://www.drupal.org/user/227761"
  6253. },
  6254. {
  6255. "name": "pluess",
  6256. "homepage": "https://www.drupal.org/user/84659"
  6257. }
  6258. ],
  6259. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  6260. "homepage": "https://www.drupal.org/project/maillog",
  6261. "support": {
  6262. "source": "https://git.drupalcode.org/project/maillog"
  6263. },
  6264. "time": "2020-09-22T18:37:31+00:00"
  6265. },
  6266. {
  6267. "name": "drupal/mailsystem",
  6268. "version": "4.3.0",
  6269. "source": {
  6270. "type": "git",
  6271. "url": "https://git.drupalcode.org/project/mailsystem.git",
  6272. "reference": "8.x-4.3"
  6273. },
  6274. "dist": {
  6275. "type": "zip",
  6276. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.3.zip",
  6277. "reference": "8.x-4.3",
  6278. "shasum": "1a74016e268ff207535be5d5e42ac8f72ac89050"
  6279. },
  6280. "require": {
  6281. "drupal/core": "^8.7.7 || ^9"
  6282. },
  6283. "type": "drupal-module",
  6284. "extra": {
  6285. "drupal": {
  6286. "version": "8.x-4.3",
  6287. "datestamp": "1586203024",
  6288. "security-coverage": {
  6289. "status": "covered",
  6290. "message": "Covered by Drupal's security advisory policy"
  6291. }
  6292. }
  6293. },
  6294. "notification-url": "https://packages.drupal.org/8/downloads",
  6295. "license": [
  6296. "GPL-2.0+"
  6297. ],
  6298. "authors": [
  6299. {
  6300. "name": "Berdir",
  6301. "homepage": "https://www.drupal.org/user/214652"
  6302. },
  6303. {
  6304. "name": "Les Lim",
  6305. "homepage": "https://www.drupal.org/user/84263"
  6306. },
  6307. {
  6308. "name": "Manuel Garcia",
  6309. "homepage": "https://www.drupal.org/user/213194"
  6310. },
  6311. {
  6312. "name": "Nafes",
  6313. "homepage": "https://www.drupal.org/user/2489926"
  6314. },
  6315. {
  6316. "name": "miro_dietiker",
  6317. "homepage": "https://www.drupal.org/user/227761"
  6318. },
  6319. {
  6320. "name": "pillarsdotnet",
  6321. "homepage": "https://www.drupal.org/user/36148"
  6322. }
  6323. ],
  6324. "description": "Mail System",
  6325. "homepage": "https://www.drupal.org/project/mailsystem",
  6326. "support": {
  6327. "source": "https://git.drupalcode.org/project/mailsystem"
  6328. }
  6329. },
  6330. {
  6331. "name": "drupal/matomo",
  6332. "version": "1.11.0",
  6333. "source": {
  6334. "type": "git",
  6335. "url": "https://git.drupalcode.org/project/matomo.git",
  6336. "reference": "8.x-1.11"
  6337. },
  6338. "dist": {
  6339. "type": "zip",
  6340. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.11.zip",
  6341. "reference": "8.x-1.11",
  6342. "shasum": "82be96c20ab15df03d199ab98d047cef6e67d40b"
  6343. },
  6344. "require": {
  6345. "drupal/core": "^8 || ^9"
  6346. },
  6347. "require-dev": {
  6348. "drupal/php": "*",
  6349. "drupal/token": "*"
  6350. },
  6351. "type": "drupal-module",
  6352. "extra": {
  6353. "drupal": {
  6354. "version": "8.x-1.11",
  6355. "datestamp": "1601651459",
  6356. "security-coverage": {
  6357. "status": "covered",
  6358. "message": "Covered by Drupal's security advisory policy"
  6359. }
  6360. }
  6361. },
  6362. "notification-url": "https://packages.drupal.org/8/downloads",
  6363. "license": [
  6364. "GPL-2.0-or-later"
  6365. ],
  6366. "authors": [
  6367. {
  6368. "name": "Carsten Logemann",
  6369. "homepage": "https://www.drupal.org/u/C_Logemann"
  6370. },
  6371. {
  6372. "name": "Shelane French",
  6373. "homepage": "https://www.drupal.org/u/shelane"
  6374. },
  6375. {
  6376. "name": "See other contributors",
  6377. "homepage": "https://www.drupal.org/node/247808/committers"
  6378. }
  6379. ],
  6380. "description": "Adds Matomo javascript tracking code to all your site's pages",
  6381. "homepage": "https://www.drupal.org/project/matomo",
  6382. "support": {
  6383. "source": "https://git.drupal.org/project/matomo.git",
  6384. "issues": "https://www.drupal.org/project/issues/matomo"
  6385. }
  6386. },
  6387. {
  6388. "name": "drupal/maxlength",
  6389. "version": "1.0.0-rc1",
  6390. "source": {
  6391. "type": "git",
  6392. "url": "https://git.drupalcode.org/project/maxlength.git",
  6393. "reference": "8.x-1.0-rc1"
  6394. },
  6395. "dist": {
  6396. "type": "zip",
  6397. "url": "https://ftp.drupal.org/files/projects/maxlength-8.x-1.0-rc1.zip",
  6398. "reference": "8.x-1.0-rc1",
  6399. "shasum": "44eb9d79d9814cd786c2c9874c28033759665a99"
  6400. },
  6401. "require": {
  6402. "drupal/core": "^8.8 || ^9"
  6403. },
  6404. "type": "drupal-module",
  6405. "extra": {
  6406. "drupal": {
  6407. "version": "8.x-1.0-rc1",
  6408. "datestamp": "1593198218",
  6409. "security-coverage": {
  6410. "status": "not-covered",
  6411. "message": "RC releases are not covered by Drupal security advisories."
  6412. }
  6413. }
  6414. },
  6415. "notification-url": "https://packages.drupal.org/8/downloads",
  6416. "license": [
  6417. "GPL-2.0-or-later"
  6418. ],
  6419. "authors": [
  6420. {
  6421. "name": "Aron Novak",
  6422. "homepage": "https://www.drupal.org/user/61864"
  6423. },
  6424. {
  6425. "name": "Schnitzel",
  6426. "homepage": "https://www.drupal.org/user/643820"
  6427. },
  6428. {
  6429. "name": "a_c_m",
  6430. "homepage": "https://www.drupal.org/user/195063"
  6431. },
  6432. {
  6433. "name": "barneytech",
  6434. "homepage": "https://www.drupal.org/user/669922"
  6435. },
  6436. {
  6437. "name": "claudiu_cristea",
  6438. "homepage": "https://www.drupal.org/user/2623935"
  6439. },
  6440. {
  6441. "name": "dawehner",
  6442. "homepage": "https://www.drupal.org/user/99340"
  6443. },
  6444. {
  6445. "name": "derhasi",
  6446. "homepage": "https://www.drupal.org/user/83474"
  6447. },
  6448. {
  6449. "name": "frjo",
  6450. "homepage": "https://www.drupal.org/user/5546"
  6451. },
  6452. {
  6453. "name": "hefox",
  6454. "homepage": "https://www.drupal.org/user/426416"
  6455. },
  6456. {
  6457. "name": "jm.federico",
  6458. "homepage": "https://www.drupal.org/user/509892"
  6459. },
  6460. {
  6461. "name": "k4v",
  6462. "homepage": "https://www.drupal.org/user/744246"
  6463. },
  6464. {
  6465. "name": "mariano73",
  6466. "homepage": "https://www.drupal.org/user/1324866"
  6467. },
  6468. {
  6469. "name": "mariuss",
  6470. "homepage": "https://www.drupal.org/user/28539"
  6471. },
  6472. {
  6473. "name": "sanduhrs",
  6474. "homepage": "https://www.drupal.org/user/28074"
  6475. },
  6476. {
  6477. "name": "vasi1186",
  6478. "homepage": "https://www.drupal.org/user/342104"
  6479. },
  6480. {
  6481. "name": "webiator GmbH",
  6482. "homepage": "https://www.drupal.org/user/2390554"
  6483. }
  6484. ],
  6485. "description": "Limit the number of characters in textfields and textareas and shows the amount of characters left.",
  6486. "homepage": "https://www.drupal.org/project/maxlength",
  6487. "support": {
  6488. "source": "https://git.drupalcode.org/project/maxlength"
  6489. }
  6490. },
  6491. {
  6492. "name": "drupal/menu_admin_per_menu",
  6493. "version": "1.3.0",
  6494. "source": {
  6495. "type": "git",
  6496. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  6497. "reference": "8.x-1.3"
  6498. },
  6499. "dist": {
  6500. "type": "zip",
  6501. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.3.zip",
  6502. "reference": "8.x-1.3",
  6503. "shasum": "cb967bdd9ca6f5692d670d5c7c8d77587e7fd38c"
  6504. },
  6505. "require": {
  6506. "drupal/core": "^8 || ^9"
  6507. },
  6508. "type": "drupal-module",
  6509. "extra": {
  6510. "drupal": {
  6511. "version": "8.x-1.3",
  6512. "datestamp": "1593436060",
  6513. "security-coverage": {
  6514. "status": "covered",
  6515. "message": "Covered by Drupal's security advisory policy"
  6516. }
  6517. }
  6518. },
  6519. "notification-url": "https://packages.drupal.org/8/downloads",
  6520. "license": [
  6521. "GPL-2.0-or-later"
  6522. ],
  6523. "authors": [
  6524. {
  6525. "name": "JeroenT",
  6526. "homepage": "https://www.drupal.org/user/2228934"
  6527. },
  6528. {
  6529. "name": "anrikun",
  6530. "homepage": "https://www.drupal.org/user/410199"
  6531. },
  6532. {
  6533. "name": "jonas139",
  6534. "homepage": "https://www.drupal.org/user/2873401"
  6535. },
  6536. {
  6537. "name": "mkdok",
  6538. "homepage": "https://www.drupal.org/user/3308753"
  6539. }
  6540. ],
  6541. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  6542. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  6543. "support": {
  6544. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  6545. }
  6546. },
  6547. {
  6548. "name": "drupal/menu_block",
  6549. "version": "dev-1.x",
  6550. "source": {
  6551. "type": "git",
  6552. "url": "https://git.drupalcode.org/project/menu_block.git",
  6553. "reference": "567becffbb0589e824fb053f15fb38a5846e7276"
  6554. },
  6555. "require": {
  6556. "drupal/core": "^8 || ^9"
  6557. },
  6558. "type": "drupal-module",
  6559. "extra": {
  6560. "branch-alias": {
  6561. "dev-1.x": "1.x-dev"
  6562. },
  6563. "drupal": {
  6564. "version": "8.x-1.6+5-dev",
  6565. "datestamp": "1591593747",
  6566. "security-coverage": {
  6567. "status": "not-covered",
  6568. "message": "Dev releases are not covered by Drupal security advisories."
  6569. }
  6570. }
  6571. },
  6572. "notification-url": "https://packages.drupal.org/8/downloads",
  6573. "license": [
  6574. "GPL-2.0-or-later"
  6575. ],
  6576. "authors": [
  6577. {
  6578. "name": "Dave Reid",
  6579. "homepage": "https://www.drupal.org/user/53892"
  6580. },
  6581. {
  6582. "name": "JohnAlbin",
  6583. "homepage": "https://www.drupal.org/user/32095"
  6584. },
  6585. {
  6586. "name": "joelpittet",
  6587. "homepage": "https://www.drupal.org/user/160302"
  6588. },
  6589. {
  6590. "name": "kim.pepper",
  6591. "homepage": "https://www.drupal.org/user/370574"
  6592. },
  6593. {
  6594. "name": "rrrob",
  6595. "homepage": "https://www.drupal.org/user/273533"
  6596. }
  6597. ],
  6598. "description": "Provides configurable blocks of menu links.",
  6599. "homepage": "https://www.drupal.org/project/menu_block",
  6600. "support": {
  6601. "source": "https://git.drupalcode.org/project/menu_block"
  6602. },
  6603. "time": "2020-11-18T00:42:05+00:00"
  6604. },
  6605. {
  6606. "name": "drupal/menu_position",
  6607. "version": "dev-1.x",
  6608. "source": {
  6609. "type": "git",
  6610. "url": "https://git.drupalcode.org/project/menu_position.git",
  6611. "reference": "bce075f4ea167a851d7401602394de557b76c85f"
  6612. },
  6613. "require": {
  6614. "drupal/core": "^8 || ^9"
  6615. },
  6616. "type": "drupal-module",
  6617. "extra": {
  6618. "branch-alias": {
  6619. "dev-1.x": "1.x-dev"
  6620. },
  6621. "drupal": {
  6622. "version": "8.x-1.0-alpha4+4-dev",
  6623. "datestamp": "1587797468",
  6624. "security-coverage": {
  6625. "status": "not-covered",
  6626. "message": "Dev releases are not covered by Drupal security advisories."
  6627. }
  6628. }
  6629. },
  6630. "notification-url": "https://packages.drupal.org/8/downloads",
  6631. "license": [
  6632. "GPL-2.0+"
  6633. ],
  6634. "authors": [
  6635. {
  6636. "name": "BarisW",
  6637. "homepage": "https://www.drupal.org/user/107229"
  6638. },
  6639. {
  6640. "name": "JohnAlbin",
  6641. "homepage": "https://www.drupal.org/user/32095"
  6642. },
  6643. {
  6644. "name": "Sutharsan",
  6645. "homepage": "https://www.drupal.org/user/73854"
  6646. },
  6647. {
  6648. "name": "joelpittet",
  6649. "homepage": "https://www.drupal.org/user/160302"
  6650. },
  6651. {
  6652. "name": "lbainbridge",
  6653. "homepage": "https://www.drupal.org/user/2406996"
  6654. }
  6655. ],
  6656. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  6657. "homepage": "https://www.drupal.org/project/menu_position",
  6658. "support": {
  6659. "source": "https://git.drupalcode.org/project/menu_position",
  6660. "issues": "https://www.drupal.org/project/issues/menu_position"
  6661. },
  6662. "time": "2020-04-25T06:50:43+00:00"
  6663. },
  6664. {
  6665. "name": "drupal/pagerer",
  6666. "version": "2.0.0",
  6667. "source": {
  6668. "type": "git",
  6669. "url": "https://git.drupalcode.org/project/pagerer.git",
  6670. "reference": "8.x-2.0"
  6671. },
  6672. "dist": {
  6673. "type": "zip",
  6674. "url": "https://ftp.drupal.org/files/projects/pagerer-8.x-2.0.zip",
  6675. "reference": "8.x-2.0",
  6676. "shasum": "de54dee5aa1336c1d6e6c5aeccfbd602d5898c7f"
  6677. },
  6678. "require": {
  6679. "drupal/core": "^8.8 || ^9",
  6680. "drupal/jquery_ui_button": "*",
  6681. "drupal/jquery_ui_slider": "*",
  6682. "php": ">=7.1"
  6683. },
  6684. "type": "drupal-module",
  6685. "extra": {
  6686. "drupal": {
  6687. "version": "8.x-2.0",
  6688. "datestamp": "1589289359",
  6689. "security-coverage": {
  6690. "status": "covered",
  6691. "message": "Covered by Drupal's security advisory policy"
  6692. }
  6693. }
  6694. },
  6695. "notification-url": "https://packages.drupal.org/8/downloads",
  6696. "license": [
  6697. "GPL-2.0-or-later"
  6698. ],
  6699. "authors": [
  6700. {
  6701. "name": "mondrake",
  6702. "homepage": "https://www.drupal.org/user/1307444"
  6703. }
  6704. ],
  6705. "description": "Configurable pager styles.",
  6706. "homepage": "https://www.drupal.org/project/pagerer",
  6707. "support": {
  6708. "source": "https://git.drupalcode.org/project/pagerer"
  6709. }
  6710. },
  6711. {
  6712. "name": "drupal/paragraphs",
  6713. "version": "1.12.0",
  6714. "source": {
  6715. "type": "git",
  6716. "url": "https://git.drupalcode.org/project/paragraphs.git",
  6717. "reference": "8.x-1.12"
  6718. },
  6719. "dist": {
  6720. "type": "zip",
  6721. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.12.zip",
  6722. "reference": "8.x-1.12",
  6723. "shasum": "3b67d8af1160af42d93a4610be1e02869e428965"
  6724. },
  6725. "require": {
  6726. "drupal/core": "^8.8 || ^9",
  6727. "drupal/entity_reference_revisions": "~1.3"
  6728. },
  6729. "require-dev": {
  6730. "drupal/block_field": "~1.0",
  6731. "drupal/ctools": "3.x-dev",
  6732. "drupal/diff": "~1.0",
  6733. "drupal/entity_browser": "2.x-dev",
  6734. "drupal/entity_usage": "2.x-dev",
  6735. "drupal/field_group": "3.x-dev",
  6736. "drupal/inline_entity_form": "~1.0",
  6737. "drupal/paragraphs-paragraphs_library": "*",
  6738. "drupal/replicate": "~1.0",
  6739. "drupal/search_api": "~1.0",
  6740. "drupal/search_api_db": "*"
  6741. },
  6742. "suggest": {
  6743. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  6744. },
  6745. "type": "drupal-module",
  6746. "extra": {
  6747. "drupal": {
  6748. "version": "8.x-1.12",
  6749. "datestamp": "1590140081",
  6750. "security-coverage": {
  6751. "status": "covered",
  6752. "message": "Covered by Drupal's security advisory policy"
  6753. }
  6754. }
  6755. },
  6756. "notification-url": "https://packages.drupal.org/8/downloads",
  6757. "license": [
  6758. "GPL-2.0-or-later"
  6759. ],
  6760. "authors": [
  6761. {
  6762. "name": "Berdir",
  6763. "homepage": "https://www.drupal.org/user/214652"
  6764. },
  6765. {
  6766. "name": "Frans",
  6767. "homepage": "https://www.drupal.org/user/514222"
  6768. },
  6769. {
  6770. "name": "Primsi",
  6771. "homepage": "https://www.drupal.org/user/282629"
  6772. },
  6773. {
  6774. "name": "jeroen.b",
  6775. "homepage": "https://www.drupal.org/user/1853532"
  6776. },
  6777. {
  6778. "name": "jstoller",
  6779. "homepage": "https://www.drupal.org/user/99012"
  6780. },
  6781. {
  6782. "name": "miro_dietiker",
  6783. "homepage": "https://www.drupal.org/user/227761"
  6784. }
  6785. ],
  6786. "description": "Enables the creation of Paragraphs entities.",
  6787. "homepage": "https://www.drupal.org/project/paragraphs",
  6788. "support": {
  6789. "source": "https://git.drupalcode.org/project/paragraphs"
  6790. }
  6791. },
  6792. {
  6793. "name": "drupal/path_alias_xt",
  6794. "version": "dev-1.x",
  6795. "source": {
  6796. "type": "git",
  6797. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  6798. "reference": "10ef76dd3eb25bc1342195336291ded3f2d8cc7e"
  6799. },
  6800. "require": {
  6801. "drupal/core": "^8.7.7 || ^9"
  6802. },
  6803. "type": "drupal-module",
  6804. "extra": {
  6805. "branch-alias": {
  6806. "dev-1.x": "1.x-dev"
  6807. },
  6808. "drupal": {
  6809. "version": "8.x-1.x-dev",
  6810. "datestamp": "1590299862",
  6811. "security-coverage": {
  6812. "status": "not-covered",
  6813. "message": "Dev releases are not covered by Drupal security advisories."
  6814. }
  6815. }
  6816. },
  6817. "notification-url": "https://packages.drupal.org/8/downloads",
  6818. "license": [
  6819. "GPL-2.0-or-later"
  6820. ],
  6821. "authors": [
  6822. {
  6823. "name": "RdeBoer",
  6824. "homepage": "https://www.drupal.org/user/404007"
  6825. },
  6826. {
  6827. "name": "adriancid",
  6828. "homepage": "https://www.drupal.org/user/1962106"
  6829. },
  6830. {
  6831. "name": "sdstyles",
  6832. "homepage": "https://www.drupal.org/user/1420228"
  6833. }
  6834. ],
  6835. "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.",
  6836. "homepage": "https://www.drupal.org/project/path_alias_xt",
  6837. "support": {
  6838. "source": "https://git.drupalcode.org/project/path_alias_xt"
  6839. },
  6840. "time": "2020-05-24T05:57:09+00:00"
  6841. },
  6842. {
  6843. "name": "drupal/pathauto",
  6844. "version": "1.8.0",
  6845. "source": {
  6846. "type": "git",
  6847. "url": "https://git.drupalcode.org/project/pathauto.git",
  6848. "reference": "8.x-1.8"
  6849. },
  6850. "dist": {
  6851. "type": "zip",
  6852. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.8.zip",
  6853. "reference": "8.x-1.8",
  6854. "shasum": "ede3216abb9c4f77709338d9147334c595046329"
  6855. },
  6856. "require": {
  6857. "drupal/core": "^8.8 || ^9",
  6858. "drupal/ctools": "*",
  6859. "drupal/token": "*"
  6860. },
  6861. "suggest": {
  6862. "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."
  6863. },
  6864. "type": "drupal-module",
  6865. "extra": {
  6866. "drupal": {
  6867. "version": "8.x-1.8",
  6868. "datestamp": "1588103046",
  6869. "security-coverage": {
  6870. "status": "covered",
  6871. "message": "Covered by Drupal's security advisory policy"
  6872. }
  6873. },
  6874. "drush": {
  6875. "services": {
  6876. "drush.services.yml": "^9 || ^10"
  6877. }
  6878. }
  6879. },
  6880. "notification-url": "https://packages.drupal.org/8/downloads",
  6881. "license": [
  6882. "GPL-2.0-or-later"
  6883. ],
  6884. "authors": [
  6885. {
  6886. "name": "Berdir",
  6887. "homepage": "https://www.drupal.org/user/214652"
  6888. },
  6889. {
  6890. "name": "Dave Reid",
  6891. "homepage": "https://www.drupal.org/user/53892"
  6892. },
  6893. {
  6894. "name": "Freso",
  6895. "homepage": "https://www.drupal.org/user/27504"
  6896. },
  6897. {
  6898. "name": "greggles",
  6899. "homepage": "https://www.drupal.org/user/36762"
  6900. }
  6901. ],
  6902. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  6903. "homepage": "https://www.drupal.org/project/pathauto",
  6904. "support": {
  6905. "source": "https://cgit.drupalcode.org/pathauto",
  6906. "issues": "https://www.drupal.org/project/issues/pathauto",
  6907. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  6908. }
  6909. },
  6910. {
  6911. "name": "drupal/pathologic",
  6912. "version": "1.0.0-alpha2",
  6913. "source": {
  6914. "type": "git",
  6915. "url": "https://git.drupalcode.org/project/pathologic.git",
  6916. "reference": "8.x-1.0-alpha2"
  6917. },
  6918. "dist": {
  6919. "type": "zip",
  6920. "url": "https://ftp.drupal.org/files/projects/pathologic-8.x-1.0-alpha2.zip",
  6921. "reference": "8.x-1.0-alpha2",
  6922. "shasum": "5b1b6846ab72e24a90dcd4cafbe855fba069e56b"
  6923. },
  6924. "require": {
  6925. "drupal/core": "^8 || ^9"
  6926. },
  6927. "type": "drupal-module",
  6928. "extra": {
  6929. "drupal": {
  6930. "version": "8.x-1.0-alpha2",
  6931. "datestamp": "1593911470",
  6932. "security-coverage": {
  6933. "status": "not-covered",
  6934. "message": "Alpha releases are not covered by Drupal security advisories."
  6935. }
  6936. }
  6937. },
  6938. "notification-url": "https://packages.drupal.org/8/downloads",
  6939. "license": [
  6940. "GPL-2.0-or-later"
  6941. ],
  6942. "authors": [
  6943. {
  6944. "name": "Berdir",
  6945. "homepage": "https://www.drupal.org/user/214652"
  6946. },
  6947. {
  6948. "name": "Garrett Albright",
  6949. "homepage": "https://www.drupal.org/user/191212"
  6950. },
  6951. {
  6952. "name": "dww",
  6953. "homepage": "https://www.drupal.org/user/46549"
  6954. }
  6955. ],
  6956. "description": "Helps avoid broken links and incorrect paths in content.",
  6957. "homepage": "https://www.drupal.org/project/pathologic",
  6958. "support": {
  6959. "source": "https://git.drupalcode.org/project/pathologic"
  6960. }
  6961. },
  6962. {
  6963. "name": "drupal/persistent_login",
  6964. "version": "1.3.0",
  6965. "source": {
  6966. "type": "git",
  6967. "url": "https://git.drupalcode.org/project/persistent_login.git",
  6968. "reference": "8.x-1.3"
  6969. },
  6970. "dist": {
  6971. "type": "zip",
  6972. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.3.zip",
  6973. "reference": "8.x-1.3",
  6974. "shasum": "dfff4cb76d6b3888073dd992bcf4d51b1bb47696"
  6975. },
  6976. "require": {
  6977. "drupal/core": "^8.3 || ^9.0"
  6978. },
  6979. "type": "drupal-module",
  6980. "extra": {
  6981. "drupal": {
  6982. "version": "8.x-1.3",
  6983. "datestamp": "1591597823",
  6984. "security-coverage": {
  6985. "status": "covered",
  6986. "message": "Covered by Drupal's security advisory policy"
  6987. }
  6988. }
  6989. },
  6990. "notification-url": "https://packages.drupal.org/8/downloads",
  6991. "license": [
  6992. "GPL-2.0-or-later"
  6993. ],
  6994. "authors": [
  6995. {
  6996. "name": "gapple",
  6997. "homepage": "https://www.drupal.org/user/490940"
  6998. }
  6999. ],
  7000. "description": "Provides a \"Remember Me\" feature on the login form.",
  7001. "homepage": "https://www.drupal.org/project/persistent_login",
  7002. "keywords": [
  7003. "Drupal"
  7004. ],
  7005. "support": {
  7006. "source": "https://git.drupalcode.org/project/persistent_login",
  7007. "issues": "https://www.drupal.org/project/issues/persistent_login"
  7008. }
  7009. },
  7010. {
  7011. "name": "drupal/profile",
  7012. "version": "1.2.0",
  7013. "source": {
  7014. "type": "git",
  7015. "url": "https://git.drupalcode.org/project/profile.git",
  7016. "reference": "8.x-1.2"
  7017. },
  7018. "dist": {
  7019. "type": "zip",
  7020. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.2.zip",
  7021. "reference": "8.x-1.2",
  7022. "shasum": "5ea5167ed6cc5b47761ea497fe20bae0fbea1cf2"
  7023. },
  7024. "require": {
  7025. "drupal/core": "^8.8 || ^9",
  7026. "drupal/entity": "^1.0-rc2"
  7027. },
  7028. "require-dev": {
  7029. "drupal/token": "^1.7"
  7030. },
  7031. "type": "drupal-module",
  7032. "extra": {
  7033. "drupal": {
  7034. "version": "8.x-1.2",
  7035. "datestamp": "1604422701",
  7036. "security-coverage": {
  7037. "status": "covered",
  7038. "message": "Covered by Drupal's security advisory policy"
  7039. }
  7040. }
  7041. },
  7042. "notification-url": "https://packages.drupal.org/8/downloads",
  7043. "license": [
  7044. "GPL-2.0-or-later"
  7045. ],
  7046. "authors": [
  7047. {
  7048. "name": "bojanz",
  7049. "homepage": "https://www.drupal.org/user/86106"
  7050. },
  7051. {
  7052. "name": "daggerhart",
  7053. "homepage": "https://www.drupal.org/user/167806"
  7054. },
  7055. {
  7056. "name": "fago",
  7057. "homepage": "https://www.drupal.org/user/16747"
  7058. },
  7059. {
  7060. "name": "jsacksick",
  7061. "homepage": "https://www.drupal.org/user/972218"
  7062. },
  7063. {
  7064. "name": "mglaman",
  7065. "homepage": "https://www.drupal.org/user/2416470"
  7066. },
  7067. {
  7068. "name": "pcambra",
  7069. "homepage": "https://www.drupal.org/user/122101"
  7070. }
  7071. ],
  7072. "description": "Provides configurable user profiles.",
  7073. "homepage": "http://drupal.org/project/profile",
  7074. "support": {
  7075. "source": "https://git.drupalcode.org/project/profile"
  7076. }
  7077. },
  7078. {
  7079. "name": "drupal/redirect",
  7080. "version": "1.6.0",
  7081. "source": {
  7082. "type": "git",
  7083. "url": "https://git.drupalcode.org/project/redirect.git",
  7084. "reference": "8.x-1.6"
  7085. },
  7086. "dist": {
  7087. "type": "zip",
  7088. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.6.zip",
  7089. "reference": "8.x-1.6",
  7090. "shasum": "f848e001deac8425ae57d4b9397087c491d37294"
  7091. },
  7092. "require": {
  7093. "drupal/core": "^8.8 || ^9"
  7094. },
  7095. "type": "drupal-module",
  7096. "extra": {
  7097. "drupal": {
  7098. "version": "8.x-1.6",
  7099. "datestamp": "1589312204",
  7100. "security-coverage": {
  7101. "status": "covered",
  7102. "message": "Covered by Drupal's security advisory policy"
  7103. }
  7104. }
  7105. },
  7106. "notification-url": "https://packages.drupal.org/8/downloads",
  7107. "license": [
  7108. "GPL-2.0-or-later"
  7109. ],
  7110. "authors": [
  7111. {
  7112. "name": "Berdir",
  7113. "homepage": "https://www.drupal.org/user/214652"
  7114. },
  7115. {
  7116. "name": "Dave Reid",
  7117. "homepage": "https://www.drupal.org/user/53892"
  7118. },
  7119. {
  7120. "name": "pifagor",
  7121. "homepage": "https://www.drupal.org/user/2375692"
  7122. }
  7123. ],
  7124. "description": "Allows users to redirect from old URLs to new URLs.",
  7125. "homepage": "https://www.drupal.org/project/redirect",
  7126. "support": {
  7127. "source": "https://git.drupalcode.org/project/redirect"
  7128. }
  7129. },
  7130. {
  7131. "name": "drupal/redirect_after_login",
  7132. "version": "2.7.0",
  7133. "source": {
  7134. "type": "git",
  7135. "url": "https://git.drupalcode.org/project/redirect_after_login.git",
  7136. "reference": "8.x-2.7"
  7137. },
  7138. "dist": {
  7139. "type": "zip",
  7140. "url": "https://ftp.drupal.org/files/projects/redirect_after_login-8.x-2.7.zip",
  7141. "reference": "8.x-2.7",
  7142. "shasum": "3ce87df792e918c2ec5a00e24818c893e558d111"
  7143. },
  7144. "require": {
  7145. "drupal/core": "^8 || ^9"
  7146. },
  7147. "type": "drupal-module",
  7148. "extra": {
  7149. "drupal": {
  7150. "version": "8.x-2.7",
  7151. "datestamp": "1611645039",
  7152. "security-coverage": {
  7153. "status": "covered",
  7154. "message": "Covered by Drupal's security advisory policy"
  7155. }
  7156. }
  7157. },
  7158. "notification-url": "https://packages.drupal.org/8/downloads",
  7159. "license": [
  7160. "GPL-2.0+"
  7161. ],
  7162. "authors": [
  7163. {
  7164. "name": "Shamsher Alam",
  7165. "homepage": "https://www.drupal.org/u/shamsher_alam",
  7166. "role": "Author"
  7167. },
  7168. {
  7169. "name": "pen",
  7170. "homepage": "https://www.drupal.org/user/2435634"
  7171. },
  7172. {
  7173. "name": "prempatel2447",
  7174. "homepage": "https://www.drupal.org/user/3250112"
  7175. },
  7176. {
  7177. "name": "rahul-kr-sh",
  7178. "homepage": "https://www.drupal.org/user/3561577"
  7179. }
  7180. ],
  7181. "description": "Redirect user after login to a configured url",
  7182. "homepage": "https://drupal.org/project/redirect_after_login",
  7183. "support": {
  7184. "source": "https://git.drupalcode.org/project/redirect_after_login"
  7185. }
  7186. },
  7187. {
  7188. "name": "drupal/redis",
  7189. "version": "1.5.0",
  7190. "source": {
  7191. "type": "git",
  7192. "url": "https://git.drupalcode.org/project/redis.git",
  7193. "reference": "8.x-1.5"
  7194. },
  7195. "dist": {
  7196. "type": "zip",
  7197. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.5.zip",
  7198. "reference": "8.x-1.5",
  7199. "shasum": "4283333dc2bf405045765b83ca662acc409a6543"
  7200. },
  7201. "require": {
  7202. "drupal/core": "^8.8 || ^9"
  7203. },
  7204. "suggest": {
  7205. "predis/predis": "^1.1.1"
  7206. },
  7207. "type": "drupal-module",
  7208. "extra": {
  7209. "drupal": {
  7210. "version": "8.x-1.5",
  7211. "datestamp": "1609972488",
  7212. "security-coverage": {
  7213. "status": "covered",
  7214. "message": "Covered by Drupal's security advisory policy"
  7215. }
  7216. }
  7217. },
  7218. "autoload": {
  7219. "psr-4": {
  7220. "Drupal\\redis\\": "src"
  7221. }
  7222. },
  7223. "notification-url": "https://packages.drupal.org/8/downloads",
  7224. "license": [
  7225. "GPL-2.0-or-later"
  7226. ],
  7227. "authors": [
  7228. {
  7229. "name": "Berdir",
  7230. "homepage": "https://www.drupal.org/user/214652"
  7231. },
  7232. {
  7233. "name": "pounard",
  7234. "homepage": "https://www.drupal.org/user/240164"
  7235. }
  7236. ],
  7237. "description": "Integration of Drupal with the Redis key-value store.",
  7238. "homepage": "https://www.drupal.org/project/redis",
  7239. "support": {
  7240. "source": "https://git.drupalcode.org/project/redis"
  7241. }
  7242. },
  7243. {
  7244. "name": "drupal/search_api",
  7245. "version": "1.19.0",
  7246. "source": {
  7247. "type": "git",
  7248. "url": "https://git.drupalcode.org/project/search_api.git",
  7249. "reference": "8.x-1.19"
  7250. },
  7251. "dist": {
  7252. "type": "zip",
  7253. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.19.zip",
  7254. "reference": "8.x-1.19",
  7255. "shasum": "5654e9d02117e28c585d89a25ea3cc40d20c5019"
  7256. },
  7257. "require": {
  7258. "drupal/core": "^8.8 || ^9"
  7259. },
  7260. "conflict": {
  7261. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  7262. },
  7263. "require-dev": {
  7264. "drupal/language_fallback_fix": "@dev",
  7265. "drupal/search_api_autocomplete": "@dev",
  7266. "drupal/search_api_db": "*"
  7267. },
  7268. "suggest": {
  7269. "drupal/facets": "Adds the ability to create faceted searches.",
  7270. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  7271. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  7272. },
  7273. "type": "drupal-module",
  7274. "extra": {
  7275. "drupal": {
  7276. "version": "8.x-1.19",
  7277. "datestamp": "1612192040",
  7278. "security-coverage": {
  7279. "status": "covered",
  7280. "message": "Covered by Drupal's security advisory policy"
  7281. }
  7282. },
  7283. "drush": {
  7284. "services": {
  7285. "drush.services.yml": "^9"
  7286. }
  7287. }
  7288. },
  7289. "notification-url": "https://packages.drupal.org/8/downloads",
  7290. "license": [
  7291. "GPL-2.0-or-later"
  7292. ],
  7293. "authors": [
  7294. {
  7295. "name": "Thomas Seidl",
  7296. "homepage": "https://www.drupal.org/u/drunken-monkey"
  7297. },
  7298. {
  7299. "name": "Nick Veenhof",
  7300. "homepage": "https://www.drupal.org/u/nick_vh"
  7301. },
  7302. {
  7303. "name": "See other contributors",
  7304. "homepage": "https://www.drupal.org/node/790418/committers"
  7305. }
  7306. ],
  7307. "description": "Provides a generic framework for modules offering search capabilities.",
  7308. "homepage": "https://www.drupal.org/project/search_api",
  7309. "support": {
  7310. "source": "https://git.drupalcode.org/project/search_api",
  7311. "issues": "https://www.drupal.org/project/issues/search_api",
  7312. "irc": "irc://irc.freenode.org/drupal-search-api"
  7313. }
  7314. },
  7315. {
  7316. "name": "drupal/search_api_db",
  7317. "version": "1.18.0",
  7318. "require": {
  7319. "drupal/core": "^8.8 || ^9",
  7320. "drupal/search_api": "*"
  7321. },
  7322. "type": "metapackage",
  7323. "extra": {
  7324. "drupal": {
  7325. "version": "8.x-1.18",
  7326. "datestamp": "1605204423",
  7327. "security-coverage": {
  7328. "status": "covered",
  7329. "message": "Covered by Drupal's security advisory policy"
  7330. }
  7331. }
  7332. },
  7333. "notification-url": "https://packages.drupal.org/8/downloads",
  7334. "license": [
  7335. "GPL-2.0-or-later"
  7336. ],
  7337. "authors": [
  7338. {
  7339. "name": "Nick_vh",
  7340. "homepage": "https://www.drupal.org/user/122682"
  7341. },
  7342. {
  7343. "name": "borisson_",
  7344. "homepage": "https://www.drupal.org/user/2393360"
  7345. },
  7346. {
  7347. "name": "drunken monkey",
  7348. "homepage": "https://www.drupal.org/user/205582"
  7349. }
  7350. ],
  7351. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  7352. "homepage": "https://www.drupal.org/project/search_api",
  7353. "support": {
  7354. "source": "https://git.drupalcode.org/project/search_api"
  7355. }
  7356. },
  7357. {
  7358. "name": "drupal/smart_trim",
  7359. "version": "1.3.0",
  7360. "source": {
  7361. "type": "git",
  7362. "url": "https://git.drupalcode.org/project/smart_trim.git",
  7363. "reference": "8.x-1.3"
  7364. },
  7365. "dist": {
  7366. "type": "zip",
  7367. "url": "https://ftp.drupal.org/files/projects/smart_trim-8.x-1.3.zip",
  7368. "reference": "8.x-1.3",
  7369. "shasum": "5894aa067fba19a3452ed8ce749f33bd9ae91907"
  7370. },
  7371. "require": {
  7372. "drupal/core": "^8 || ^9"
  7373. },
  7374. "type": "drupal-module",
  7375. "extra": {
  7376. "drupal": {
  7377. "version": "8.x-1.3",
  7378. "datestamp": "1589766531",
  7379. "security-coverage": {
  7380. "status": "covered",
  7381. "message": "Covered by Drupal's security advisory policy"
  7382. }
  7383. }
  7384. },
  7385. "notification-url": "https://packages.drupal.org/8/downloads",
  7386. "license": [
  7387. "GPL-2.0-or-later"
  7388. ],
  7389. "authors": [
  7390. {
  7391. "name": "Mark Casias (markie)",
  7392. "homepage": "https://www.drupal.org/u/markie",
  7393. "role": "Maintainer"
  7394. },
  7395. {
  7396. "name": "chrisjlee",
  7397. "homepage": "https://www.drupal.org/user/760600"
  7398. },
  7399. {
  7400. "name": "drywall",
  7401. "homepage": "https://www.drupal.org/user/192591"
  7402. },
  7403. {
  7404. "name": "jsenich",
  7405. "homepage": "https://www.drupal.org/user/58871"
  7406. },
  7407. {
  7408. "name": "markie",
  7409. "homepage": "https://www.drupal.org/user/206687"
  7410. },
  7411. {
  7412. "name": "newsignature",
  7413. "homepage": "https://www.drupal.org/user/765518"
  7414. }
  7415. ],
  7416. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  7417. "homepage": "https://drupal.org/project/smart_trim",
  7418. "support": {
  7419. "source": "https://cgit.drupalcode.org/smart_trim",
  7420. "issues": "https://drupal.org/project/issues/smart_trim"
  7421. }
  7422. },
  7423. {
  7424. "name": "drupal/smtp",
  7425. "version": "1.0.0",
  7426. "source": {
  7427. "type": "git",
  7428. "url": "https://git.drupalcode.org/project/smtp.git",
  7429. "reference": "8.x-1.0"
  7430. },
  7431. "dist": {
  7432. "type": "zip",
  7433. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.0.zip",
  7434. "reference": "8.x-1.0",
  7435. "shasum": "c40cc7a3c20d3f743e3a4e53f4cc296748da89fd"
  7436. },
  7437. "require": {
  7438. "drupal/core": "^8.8 || ^9",
  7439. "phpmailer/phpmailer": "^6.1.7"
  7440. },
  7441. "suggest": {
  7442. "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
  7443. },
  7444. "type": "drupal-module",
  7445. "extra": {
  7446. "drupal": {
  7447. "version": "8.x-1.0",
  7448. "datestamp": "1601070985",
  7449. "security-coverage": {
  7450. "status": "covered",
  7451. "message": "Covered by Drupal's security advisory policy"
  7452. }
  7453. },
  7454. "branch-alias": {
  7455. "dev-8.x-1.x": "1.x-dev"
  7456. }
  7457. },
  7458. "notification-url": "https://packages.drupal.org/8/downloads",
  7459. "license": [
  7460. "GPL-2.0-or-later"
  7461. ],
  7462. "authors": [
  7463. {
  7464. "name": "LukeLast",
  7465. "homepage": "https://www.drupal.org/user/30151"
  7466. },
  7467. {
  7468. "name": "japerry",
  7469. "homepage": "https://www.drupal.org/user/45640"
  7470. },
  7471. {
  7472. "name": "josesanmartin",
  7473. "homepage": "https://www.drupal.org/user/72012"
  7474. },
  7475. {
  7476. "name": "oadaeh",
  7477. "homepage": "https://www.drupal.org/user/4649"
  7478. },
  7479. {
  7480. "name": "sadashiv",
  7481. "homepage": "https://www.drupal.org/user/1773304"
  7482. },
  7483. {
  7484. "name": "wundo",
  7485. "homepage": "https://www.drupal.org/user/25523"
  7486. },
  7487. {
  7488. "name": "yettyn",
  7489. "homepage": "https://www.drupal.org/user/93281"
  7490. }
  7491. ],
  7492. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  7493. "homepage": "https://www.drupal.org/project/smtp",
  7494. "support": {
  7495. "source": "https://git.drupalcode.org/project/smtp",
  7496. "issues": "https://www.drupal.org/project/issues/smtp"
  7497. }
  7498. },
  7499. {
  7500. "name": "drupal/sophron",
  7501. "version": "1.1.0",
  7502. "source": {
  7503. "type": "git",
  7504. "url": "https://git.drupalcode.org/project/sophron.git",
  7505. "reference": "8.x-1.1"
  7506. },
  7507. "dist": {
  7508. "type": "zip",
  7509. "url": "https://ftp.drupal.org/files/projects/sophron-8.x-1.1.zip",
  7510. "reference": "8.x-1.1",
  7511. "shasum": "afb3650458b15b87918471defa763f24880622ca"
  7512. },
  7513. "require": {
  7514. "drupal/core": "^8.9 || ^9",
  7515. "fileeye/mimemap": "^1.1.4",
  7516. "php": ">=7.1"
  7517. },
  7518. "type": "drupal-module",
  7519. "extra": {
  7520. "drupal": {
  7521. "version": "8.x-1.1",
  7522. "datestamp": "1606047077",
  7523. "security-coverage": {
  7524. "status": "covered",
  7525. "message": "Covered by Drupal's security advisory policy"
  7526. }
  7527. }
  7528. },
  7529. "autoload": {
  7530. "psr-4": {
  7531. "Drupal\\sophron\\": "src/"
  7532. }
  7533. },
  7534. "notification-url": "https://packages.drupal.org/8/downloads",
  7535. "license": [
  7536. "GPL-2.0-or-later"
  7537. ],
  7538. "authors": [
  7539. {
  7540. "name": "mondrake",
  7541. "homepage": "https://www.drupal.org/user/1307444"
  7542. }
  7543. ],
  7544. "description": "Provides an extensive MIME types management API",
  7545. "homepage": "https://www.drupal.org/project/sophron",
  7546. "support": {
  7547. "source": "https://git.drupalcode.org/project/sophron"
  7548. }
  7549. },
  7550. {
  7551. "name": "drupal/synonyms",
  7552. "version": "dev-1.x",
  7553. "source": {
  7554. "type": "git",
  7555. "url": "https://git.drupalcode.org/project/synonyms.git",
  7556. "reference": "487a41e2b4d4c4a5f161852cbd46178edb954d5d"
  7557. },
  7558. "require": {
  7559. "drupal/core": "^8 || ^9"
  7560. },
  7561. "type": "drupal-module",
  7562. "extra": {
  7563. "branch-alias": {
  7564. "dev-1.x": "1.x-dev"
  7565. },
  7566. "drupal": {
  7567. "version": "8.x-1.0-alpha1+23-dev",
  7568. "datestamp": "1607727823",
  7569. "security-coverage": {
  7570. "status": "not-covered",
  7571. "message": "Dev releases are not covered by Drupal security advisories."
  7572. }
  7573. }
  7574. },
  7575. "notification-url": "https://packages.drupal.org/8/downloads",
  7576. "license": [
  7577. "GPL-2.0-or-later"
  7578. ],
  7579. "authors": [
  7580. {
  7581. "name": "Zen",
  7582. "homepage": "https://www.drupal.org/user/21209"
  7583. },
  7584. {
  7585. "name": "bojanz",
  7586. "homepage": "https://www.drupal.org/user/86106"
  7587. },
  7588. {
  7589. "name": "bucefal91",
  7590. "homepage": "https://www.drupal.org/user/504128"
  7591. },
  7592. {
  7593. "name": "devad",
  7594. "homepage": "https://www.drupal.org/user/2268520"
  7595. }
  7596. ],
  7597. "description": "Provides synonyms feature for content entities.",
  7598. "homepage": "https://www.drupal.org/project/synonyms",
  7599. "support": {
  7600. "source": "https://git.drupalcode.org/project/synonyms"
  7601. },
  7602. "time": "2020-12-11T23:17:33+00:00"
  7603. },
  7604. {
  7605. "name": "drupal/taxonomy_unique",
  7606. "version": "2.3.0",
  7607. "source": {
  7608. "type": "git",
  7609. "url": "https://git.drupalcode.org/project/taxonomy_unique.git",
  7610. "reference": "8.x-2.3"
  7611. },
  7612. "dist": {
  7613. "type": "zip",
  7614. "url": "https://ftp.drupal.org/files/projects/taxonomy_unique-8.x-2.3.zip",
  7615. "reference": "8.x-2.3",
  7616. "shasum": "550d06d5b9c670538b93e0aa31b43b4eb1a76f7e"
  7617. },
  7618. "require": {
  7619. "drupal/core": "^8 || ^9"
  7620. },
  7621. "require-dev": {
  7622. "drupal/coder": "^8.3.6",
  7623. "squizlabs/php_codesniffer": "^3.4.1"
  7624. },
  7625. "type": "drupal-module",
  7626. "extra": {
  7627. "drupal": {
  7628. "version": "8.x-2.3",
  7629. "datestamp": "1591087096",
  7630. "security-coverage": {
  7631. "status": "covered",
  7632. "message": "Covered by Drupal's security advisory policy"
  7633. }
  7634. }
  7635. },
  7636. "notification-url": "https://packages.drupal.org/8/downloads",
  7637. "scripts": {
  7638. "post-install-cmd": [
  7639. "./vendor/bin/phpcs --config-set installed_paths ../../drupal/coder/coder_sniffer",
  7640. "./vendor/bin/phpcs --config-set show_progress 1"
  7641. ],
  7642. "post-update-cmd": [
  7643. "./vendor/bin/phpcs --config-set installed_paths ../../drupal/coder/coder_sniffer",
  7644. "./vendor/bin/phpcs --config-set show_progress 1"
  7645. ],
  7646. "phpcs": [
  7647. "./vendor/bin/phpcs --standard=Drupal,DrupalPractice ./ --ignore=./vendor"
  7648. ],
  7649. "phpcbf": [
  7650. "./vendor/bin/phpcbf --standard=Drupal,DrupalPractice ./ --ignore=./vendor"
  7651. ]
  7652. },
  7653. "license": [
  7654. "GPL-2.0+"
  7655. ],
  7656. "authors": [
  7657. {
  7658. "name": "Rafael Schally",
  7659. "homepage": "https://www.drupal.org/user/856550",
  7660. "email": "rafael.schally@gmail.com"
  7661. }
  7662. ],
  7663. "description": "Checks for duplicate occurrences of term names.",
  7664. "homepage": "https://www.drupal.org/project/taxonomy_unique",
  7665. "keywords": [
  7666. "drupal",
  7667. "taxonomy",
  7668. "ui"
  7669. ],
  7670. "support": {
  7671. "source": "https://git.drupalcode.org/project/taxonomy_unique"
  7672. }
  7673. },
  7674. {
  7675. "name": "drupal/token",
  7676. "version": "1.9.0",
  7677. "source": {
  7678. "type": "git",
  7679. "url": "https://git.drupalcode.org/project/token.git",
  7680. "reference": "8.x-1.9"
  7681. },
  7682. "dist": {
  7683. "type": "zip",
  7684. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.9.zip",
  7685. "reference": "8.x-1.9",
  7686. "shasum": "a5d234382a1a0e4ba61d4c7a2fa10671ca656be4"
  7687. },
  7688. "require": {
  7689. "drupal/core": "^8.8 || ^9"
  7690. },
  7691. "type": "drupal-module",
  7692. "extra": {
  7693. "drupal": {
  7694. "version": "8.x-1.9",
  7695. "datestamp": "1608284866",
  7696. "security-coverage": {
  7697. "status": "covered",
  7698. "message": "Covered by Drupal's security advisory policy"
  7699. }
  7700. },
  7701. "drush": {
  7702. "services": {
  7703. "drush.services.yml": "^9 || ^10"
  7704. }
  7705. }
  7706. },
  7707. "notification-url": "https://packages.drupal.org/8/downloads",
  7708. "license": [
  7709. "GPL-2.0-or-later"
  7710. ],
  7711. "authors": [
  7712. {
  7713. "name": "Berdir",
  7714. "homepage": "https://www.drupal.org/user/214652"
  7715. },
  7716. {
  7717. "name": "Dave Reid",
  7718. "homepage": "https://www.drupal.org/user/53892"
  7719. },
  7720. {
  7721. "name": "eaton",
  7722. "homepage": "https://www.drupal.org/user/16496"
  7723. },
  7724. {
  7725. "name": "fago",
  7726. "homepage": "https://www.drupal.org/user/16747"
  7727. },
  7728. {
  7729. "name": "greggles",
  7730. "homepage": "https://www.drupal.org/user/36762"
  7731. },
  7732. {
  7733. "name": "mikeryan",
  7734. "homepage": "https://www.drupal.org/user/4420"
  7735. }
  7736. ],
  7737. "description": "Provides a user interface for the Token API, some missing core tokens.",
  7738. "homepage": "https://www.drupal.org/project/token",
  7739. "support": {
  7740. "source": "https://git.drupalcode.org/project/token"
  7741. }
  7742. },
  7743. {
  7744. "name": "drupal/translation_views",
  7745. "version": "1.0.0-alpha10",
  7746. "source": {
  7747. "type": "git",
  7748. "url": "https://git.drupalcode.org/project/translation_views.git",
  7749. "reference": "8.x-1.0-alpha10"
  7750. },
  7751. "dist": {
  7752. "type": "zip",
  7753. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha10.zip",
  7754. "reference": "8.x-1.0-alpha10",
  7755. "shasum": "ca1a6d4bf16293b1b094db6439f9f065de1dbbd5"
  7756. },
  7757. "require": {
  7758. "drupal/core": "^8.8 || ^9"
  7759. },
  7760. "require-dev": {
  7761. "drupal/translators": "*",
  7762. "drupal/translators_content": "*"
  7763. },
  7764. "type": "drupal-module",
  7765. "extra": {
  7766. "drupal": {
  7767. "version": "8.x-1.0-alpha10",
  7768. "datestamp": "1584303687",
  7769. "security-coverage": {
  7770. "status": "not-covered",
  7771. "message": "Project has not opted into security advisory coverage!"
  7772. }
  7773. }
  7774. },
  7775. "notification-url": "https://packages.drupal.org/8/downloads",
  7776. "license": [
  7777. "GPL-2.0-or-later"
  7778. ],
  7779. "authors": [
  7780. {
  7781. "name": "matsbla",
  7782. "homepage": "https://www.drupal.org/user/2325394"
  7783. },
  7784. {
  7785. "name": "vlad.dancer",
  7786. "homepage": "https://www.drupal.org/user/903844"
  7787. }
  7788. ],
  7789. "description": "Create customized lists and queries of translations from your database.",
  7790. "homepage": "https://www.drupal.org/project/translation_views",
  7791. "support": {
  7792. "source": "https://git.drupalcode.org/project/translation_views"
  7793. }
  7794. },
  7795. {
  7796. "name": "drupal/typed_data",
  7797. "version": "dev-1.x",
  7798. "source": {
  7799. "type": "git",
  7800. "url": "https://git.drupalcode.org/project/typed_data.git",
  7801. "reference": "d6550fd64428642da9ace9281670e70f7018f0b1"
  7802. },
  7803. "require": {
  7804. "drupal/core": "^8.8.2 || ^9"
  7805. },
  7806. "type": "drupal-module",
  7807. "extra": {
  7808. "branch-alias": {
  7809. "dev-1.x": "1.x-dev"
  7810. },
  7811. "drupal": {
  7812. "version": "8.x-1.0-alpha5+24-dev",
  7813. "datestamp": "1623702620",
  7814. "security-coverage": {
  7815. "status": "not-covered",
  7816. "message": "Dev releases are not covered by Drupal security advisories."
  7817. }
  7818. },
  7819. "drush": {
  7820. "services": {
  7821. "drush.services.yml": "^9 || ^10"
  7822. }
  7823. }
  7824. },
  7825. "notification-url": "https://packages.drupal.org/8/downloads",
  7826. "license": [
  7827. "GPL-2.0-or-later"
  7828. ],
  7829. "authors": [
  7830. {
  7831. "name": "TR",
  7832. "homepage": "https://www.drupal.org/user/202830"
  7833. },
  7834. {
  7835. "name": "fago",
  7836. "homepage": "https://www.drupal.org/user/16747"
  7837. }
  7838. ],
  7839. "description": "Extends the core Typed Data API with new APIs and features.",
  7840. "homepage": "https://www.drupal.org/project/typed_data",
  7841. "support": {
  7842. "source": "https://git.drupalcode.org/project/typed_data",
  7843. "issues": "https://www.drupal.org/project/issues/typed_data"
  7844. }
  7845. },
  7846. {
  7847. "name": "drupal/ultimate_cron",
  7848. "version": "2.0.0-alpha5",
  7849. "source": {
  7850. "type": "git",
  7851. "url": "https://git.drupalcode.org/project/ultimate_cron.git",
  7852. "reference": "8.x-2.0-alpha5"
  7853. },
  7854. "dist": {
  7855. "type": "zip",
  7856. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha5.zip",
  7857. "reference": "8.x-2.0-alpha5",
  7858. "shasum": "0f10464fff29eca89024e7afa5b6d8d07bd52f75"
  7859. },
  7860. "require": {
  7861. "drupal/core": "^8.7.7 || ^9"
  7862. },
  7863. "type": "drupal-module",
  7864. "extra": {
  7865. "drupal": {
  7866. "version": "8.x-2.0-alpha5",
  7867. "datestamp": "1600928948",
  7868. "security-coverage": {
  7869. "status": "not-covered",
  7870. "message": "Alpha releases are not covered by Drupal security advisories."
  7871. }
  7872. },
  7873. "drush": {
  7874. "services": {
  7875. "drush.services.yml": "^9 || ^10"
  7876. }
  7877. }
  7878. },
  7879. "notification-url": "https://packages.drupal.org/8/downloads",
  7880. "license": [
  7881. "GPL-2.0+"
  7882. ],
  7883. "authors": [
  7884. {
  7885. "name": "Berdir",
  7886. "homepage": "https://www.drupal.org/user/214652"
  7887. },
  7888. {
  7889. "name": "Dane Powell",
  7890. "homepage": "https://www.drupal.org/user/339326"
  7891. },
  7892. {
  7893. "name": "Primsi",
  7894. "homepage": "https://www.drupal.org/user/282629"
  7895. },
  7896. {
  7897. "name": "arnested",
  7898. "homepage": "https://www.drupal.org/user/245635"
  7899. },
  7900. {
  7901. "name": "gielfeldt",
  7902. "homepage": "https://www.drupal.org/user/366993"
  7903. },
  7904. {
  7905. "name": "miro_dietiker",
  7906. "homepage": "https://www.drupal.org/user/227761"
  7907. }
  7908. ],
  7909. "description": "Ultimate cron",
  7910. "homepage": "https://www.drupal.org/project/ultimate_cron",
  7911. "support": {
  7912. "source": "https://git.drupalcode.org/project/ultimate_cron"
  7913. }
  7914. },
  7915. {
  7916. "name": "drupal/url_to_video_filter",
  7917. "version": "2.0.0",
  7918. "source": {
  7919. "type": "git",
  7920. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  7921. "reference": "2.0.0"
  7922. },
  7923. "dist": {
  7924. "type": "zip",
  7925. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-2.0.0.zip",
  7926. "reference": "2.0.0",
  7927. "shasum": "ac728919cc220846d8ef2ce61dbe1b94fbbf479b"
  7928. },
  7929. "require": {
  7930. "drupal/core": "^8 || ^9"
  7931. },
  7932. "type": "drupal-module",
  7933. "extra": {
  7934. "drupal": {
  7935. "version": "2.0.0",
  7936. "datestamp": "1607298389",
  7937. "security-coverage": {
  7938. "status": "covered",
  7939. "message": "Covered by Drupal's security advisory policy"
  7940. }
  7941. }
  7942. },
  7943. "notification-url": "https://packages.drupal.org/8/downloads",
  7944. "license": [
  7945. "GPL-2.0-or-later"
  7946. ],
  7947. "authors": [
  7948. {
  7949. "name": "Jaypan",
  7950. "homepage": "https://www.drupal.org/user/324696"
  7951. }
  7952. ],
  7953. "description": "Text filter to convert URLs to embedded videos",
  7954. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  7955. "support": {
  7956. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  7957. }
  7958. },
  7959. {
  7960. "name": "drupal/video_embed_field",
  7961. "version": "2.4.0",
  7962. "source": {
  7963. "type": "git",
  7964. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  7965. "reference": "8.x-2.4"
  7966. },
  7967. "dist": {
  7968. "type": "zip",
  7969. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.4.zip",
  7970. "reference": "8.x-2.4",
  7971. "shasum": "96b14bb93c1bb6a07b84315a4f87367870f8b574"
  7972. },
  7973. "require": {
  7974. "drupal/core": "^8.8 || ^9"
  7975. },
  7976. "require-dev": {
  7977. "drupal/colorbox": "^1.0",
  7978. "drupal/video_embed_media": "*"
  7979. },
  7980. "type": "drupal-module",
  7981. "extra": {
  7982. "drupal": {
  7983. "version": "8.x-2.4",
  7984. "datestamp": "1587686337",
  7985. "security-coverage": {
  7986. "status": "covered",
  7987. "message": "Covered by Drupal's security advisory policy"
  7988. }
  7989. }
  7990. },
  7991. "notification-url": "https://packages.drupal.org/8/downloads",
  7992. "license": [
  7993. "GPL-2.0+"
  7994. ],
  7995. "authors": [
  7996. {
  7997. "name": "Sam152",
  7998. "homepage": "https://www.drupal.org/user/1485048"
  7999. },
  8000. {
  8001. "name": "jec006",
  8002. "homepage": "https://www.drupal.org/user/855980"
  8003. },
  8004. {
  8005. "name": "plopesc",
  8006. "homepage": "https://www.drupal.org/user/282415"
  8007. }
  8008. ],
  8009. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  8010. "homepage": "https://www.drupal.org/project/video_embed_field",
  8011. "support": {
  8012. "source": "https://git.drupalcode.org/project/video_embed_field"
  8013. }
  8014. },
  8015. {
  8016. "name": "drupal/views_autocomplete_filters",
  8017. "version": "1.3.0",
  8018. "source": {
  8019. "type": "git",
  8020. "url": "https://git.drupalcode.org/project/views_autocomplete_filters.git",
  8021. "reference": "8.x-1.3"
  8022. },
  8023. "dist": {
  8024. "type": "zip",
  8025. "url": "https://ftp.drupal.org/files/projects/views_autocomplete_filters-8.x-1.3.zip",
  8026. "reference": "8.x-1.3",
  8027. "shasum": "55762182e55c70f117d5edb8692049e0881ec4ce"
  8028. },
  8029. "require": {
  8030. "drupal/core": "^8 || ^9"
  8031. },
  8032. "type": "drupal-module",
  8033. "extra": {
  8034. "drupal": {
  8035. "version": "8.x-1.3",
  8036. "datestamp": "1587146330",
  8037. "security-coverage": {
  8038. "status": "covered",
  8039. "message": "Covered by Drupal's security advisory policy"
  8040. }
  8041. }
  8042. },
  8043. "notification-url": "https://packages.drupal.org/8/downloads",
  8044. "license": [
  8045. "GPL-2.0-or-later"
  8046. ],
  8047. "authors": [
  8048. {
  8049. "name": "RobLoach",
  8050. "homepage": "https://www.drupal.org/user/61114"
  8051. },
  8052. {
  8053. "name": "colan",
  8054. "homepage": "https://www.drupal.org/user/58704"
  8055. },
  8056. {
  8057. "name": "vasike",
  8058. "homepage": "https://www.drupal.org/user/156237"
  8059. }
  8060. ],
  8061. "description": "Add autocomplete functionality to the views filter text fields.",
  8062. "homepage": "https://www.drupal.org/project/views_autocomplete_filters",
  8063. "keywords": [
  8064. "Drupal",
  8065. "views_autocomplete_filters"
  8066. ],
  8067. "support": {
  8068. "source": "https://git.drupalcode.org/project/views_autocomplete_filters",
  8069. "issues": "https://www.drupal.org/project/issues/views_autocomplete_filters"
  8070. }
  8071. },
  8072. {
  8073. "name": "drupal/views_bulk_edit",
  8074. "version": "2.5.0",
  8075. "source": {
  8076. "type": "git",
  8077. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  8078. "reference": "8.x-2.5"
  8079. },
  8080. "dist": {
  8081. "type": "zip",
  8082. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.5.zip",
  8083. "reference": "8.x-2.5",
  8084. "shasum": "5f268f532e070fd3d1bffcb135d90f395f303a37"
  8085. },
  8086. "require": {
  8087. "drupal/core": "^8 || ^9"
  8088. },
  8089. "require-dev": {
  8090. "drupal/views_bulk_operations": "~3.0"
  8091. },
  8092. "suggest": {
  8093. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  8094. },
  8095. "type": "drupal-module",
  8096. "extra": {
  8097. "drupal": {
  8098. "version": "8.x-2.5",
  8099. "datestamp": "1606726163",
  8100. "security-coverage": {
  8101. "status": "covered",
  8102. "message": "Covered by Drupal's security advisory policy"
  8103. }
  8104. }
  8105. },
  8106. "notification-url": "https://packages.drupal.org/8/downloads",
  8107. "license": [
  8108. "GPL-2.0+"
  8109. ],
  8110. "authors": [
  8111. {
  8112. "name": "Marcin Grabias",
  8113. "homepage": "https://www.drupal.org/u/graber"
  8114. },
  8115. {
  8116. "name": "benjy",
  8117. "homepage": "https://www.drupal.org/user/1852732"
  8118. }
  8119. ],
  8120. "description": "Allows bulk edition of entity field values.",
  8121. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  8122. "support": {
  8123. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  8124. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  8125. }
  8126. },
  8127. {
  8128. "name": "drupal/views_bulk_operations",
  8129. "version": "3.10.0",
  8130. "source": {
  8131. "type": "git",
  8132. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  8133. "reference": "8.x-3.10"
  8134. },
  8135. "dist": {
  8136. "type": "zip",
  8137. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.10.zip",
  8138. "reference": "8.x-3.10",
  8139. "shasum": "e346c2a72fc9a1ae8af418e6a02076f52c0fcc7b"
  8140. },
  8141. "require": {
  8142. "drupal/core": "^8.8 || ^9"
  8143. },
  8144. "require-dev": {
  8145. "drush/drush": "^10"
  8146. },
  8147. "suggest": {
  8148. "drush/drush": "^9 || ^10"
  8149. },
  8150. "type": "drupal-module",
  8151. "extra": {
  8152. "drupal": {
  8153. "version": "8.x-3.10",
  8154. "datestamp": "1608795018",
  8155. "security-coverage": {
  8156. "status": "covered",
  8157. "message": "Covered by Drupal's security advisory policy"
  8158. }
  8159. },
  8160. "drush": {
  8161. "services": {
  8162. "drush.services.yml": "^9 || ^10"
  8163. }
  8164. }
  8165. },
  8166. "notification-url": "https://packages.drupal.org/8/downloads",
  8167. "license": [
  8168. "GPL-2.0-or-later"
  8169. ],
  8170. "authors": [
  8171. {
  8172. "name": "Marcin Grabias",
  8173. "homepage": "https://www.drupal.org/u/graber"
  8174. },
  8175. {
  8176. "name": "Jon Pugh",
  8177. "homepage": "https://www.drupal.org/user/17028"
  8178. },
  8179. {
  8180. "name": "bojanz",
  8181. "homepage": "https://www.drupal.org/user/86106"
  8182. },
  8183. {
  8184. "name": "infojunkie",
  8185. "homepage": "https://www.drupal.org/user/48424"
  8186. },
  8187. {
  8188. "name": "joelpittet",
  8189. "homepage": "https://www.drupal.org/user/160302"
  8190. }
  8191. ],
  8192. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  8193. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  8194. "support": {
  8195. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  8196. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  8197. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  8198. }
  8199. },
  8200. {
  8201. "name": "drupal/views_ef_fieldset",
  8202. "version": "1.5.0",
  8203. "source": {
  8204. "type": "git",
  8205. "url": "https://git.drupalcode.org/project/views_ef_fieldset.git",
  8206. "reference": "8.x-1.5"
  8207. },
  8208. "dist": {
  8209. "type": "zip",
  8210. "url": "https://ftp.drupal.org/files/projects/views_ef_fieldset-8.x-1.5.zip",
  8211. "reference": "8.x-1.5",
  8212. "shasum": "72ca0b63028d0fe65e13c8472546a8803aa0d079"
  8213. },
  8214. "require": {
  8215. "drupal/core": "^8 || ^9",
  8216. "php": ">=7"
  8217. },
  8218. "type": "drupal-module",
  8219. "extra": {
  8220. "drupal": {
  8221. "version": "8.x-1.5",
  8222. "datestamp": "1604567512",
  8223. "security-coverage": {
  8224. "status": "covered",
  8225. "message": "Covered by Drupal's security advisory policy"
  8226. }
  8227. },
  8228. "composer-exit-on-patch-failure": true,
  8229. "enable-patching": true,
  8230. "patches": {
  8231. "drupal/core": {
  8232. "https://www.drupal.org/project/drupal/issues/2943172": "https://www.drupal.org/files/issues/2018-07-05/2943172-kernel-test-base-3.patch"
  8233. }
  8234. }
  8235. },
  8236. "autoload-dev": {
  8237. "psr-4": {
  8238. "Drupal\\Tests\\views_ef_fieldset\\": "./tests/"
  8239. }
  8240. },
  8241. "notification-url": "https://packages.drupal.org/8/downloads",
  8242. "scripts": {
  8243. "grumphp": [
  8244. "./vendor/bin/grumphp run"
  8245. ]
  8246. },
  8247. "license": [
  8248. "GPL-2.0+"
  8249. ],
  8250. "authors": [
  8251. {
  8252. "name": "Pol Dellaiera",
  8253. "homepage": "https://www.drupal.org/user/47194",
  8254. "email": "pol.dellaiera@protonmail.com"
  8255. },
  8256. {
  8257. "name": "ciss",
  8258. "homepage": "https://www.drupal.org/user/1632364"
  8259. }
  8260. ],
  8261. "description": "Provide an option to render the 'exposed form widgets' in a fieldset.",
  8262. "homepage": "https://drupal.org/project/views_field_formatter",
  8263. "support": {
  8264. "source": "https://git.drupalcode.org/project/views_ef_fieldset"
  8265. }
  8266. },
  8267. {
  8268. "name": "drush/drush",
  8269. "version": "10.3.6",
  8270. "source": {
  8271. "type": "git",
  8272. "url": "https://github.com/drush-ops/drush.git",
  8273. "reference": "fc985a95c6010e04891a2dbcf3f39984b8c9ef0a"
  8274. },
  8275. "dist": {
  8276. "type": "zip",
  8277. "url": "https://api.github.com/repos/drush-ops/drush/zipball/fc985a95c6010e04891a2dbcf3f39984b8c9ef0a",
  8278. "reference": "fc985a95c6010e04891a2dbcf3f39984b8c9ef0a",
  8279. "shasum": ""
  8280. },
  8281. "require": {
  8282. "chi-teck/drupal-code-generator": "^1.32.1",
  8283. "composer/semver": "^1.4 || ^3",
  8284. "consolidation/config": "^1.2",
  8285. "consolidation/filter-via-dot-access-data": "^1",
  8286. "consolidation/robo": "^1.4.11 || ^2",
  8287. "consolidation/site-alias": "^3.0.0@stable",
  8288. "consolidation/site-process": "^2.1 || ^4",
  8289. "ext-dom": "*",
  8290. "grasmash/yaml-expander": "^1.1.1",
  8291. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  8292. "league/container": "~2",
  8293. "php": ">=7.1.3",
  8294. "psr/log": "~1.0",
  8295. "psy/psysh": "~0.6",
  8296. "symfony/event-dispatcher": "^3.4 || ^4.0",
  8297. "symfony/finder": "^3.4 || ^4.0 || ^5",
  8298. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0",
  8299. "symfony/yaml": "^3.4 || ^4.0",
  8300. "webflo/drupal-finder": "^1.2",
  8301. "webmozart/path-util": "^2.1.0"
  8302. },
  8303. "require-dev": {
  8304. "composer/installers": "^1.7",
  8305. "cweagans/composer-patches": "~1.0",
  8306. "david-garcia/phpwhois": "4.3.0",
  8307. "drupal/alinks": "1.0.0",
  8308. "drupal/core-recommended": "^8.8",
  8309. "lox/xhprof": "dev-master",
  8310. "phpunit/phpunit": "^4.8.36 || ^6.1",
  8311. "squizlabs/php_codesniffer": "^2.7 || ^3",
  8312. "vlucas/phpdotenv": "^2.4"
  8313. },
  8314. "bin": [
  8315. "drush"
  8316. ],
  8317. "type": "library",
  8318. "extra": {
  8319. "installer-paths": {
  8320. "sut/core": [
  8321. "type:drupal-core"
  8322. ],
  8323. "sut/libraries/{$name}": [
  8324. "type:drupal-library"
  8325. ],
  8326. "sut/modules/unish/{$name}": [
  8327. "drupal/devel"
  8328. ],
  8329. "sut/themes/unish/{$name}": [
  8330. "drupal/empty_theme"
  8331. ],
  8332. "sut/modules/contrib/{$name}": [
  8333. "type:drupal-module"
  8334. ],
  8335. "sut/profiles/contrib/{$name}": [
  8336. "type:drupal-profile"
  8337. ],
  8338. "sut/themes/contrib/{$name}": [
  8339. "type:drupal-theme"
  8340. ],
  8341. "sut/drush/contrib/{$name}": [
  8342. "type:drupal-drush"
  8343. ]
  8344. }
  8345. },
  8346. "autoload": {
  8347. "psr-4": {
  8348. "Drush\\": "src/",
  8349. "Drush\\Internal\\": "src/internal-forks"
  8350. }
  8351. },
  8352. "notification-url": "https://packagist.org/downloads/",
  8353. "license": [
  8354. "GPL-2.0-or-later"
  8355. ],
  8356. "authors": [
  8357. {
  8358. "name": "Moshe Weitzman",
  8359. "email": "weitzman@tejasa.com"
  8360. },
  8361. {
  8362. "name": "Owen Barton",
  8363. "email": "drupal@owenbarton.com"
  8364. },
  8365. {
  8366. "name": "Greg Anderson",
  8367. "email": "greg.1.anderson@greenknowe.org"
  8368. },
  8369. {
  8370. "name": "Jonathan Araña Cruz",
  8371. "email": "jonhattan@faita.net"
  8372. },
  8373. {
  8374. "name": "Jonathan Hedstrom",
  8375. "email": "jhedstrom@gmail.com"
  8376. },
  8377. {
  8378. "name": "Christopher Gervais",
  8379. "email": "chris@ergonlogic.com"
  8380. },
  8381. {
  8382. "name": "Dave Reid",
  8383. "email": "dave@davereid.net"
  8384. },
  8385. {
  8386. "name": "Damian Lee",
  8387. "email": "damiankloip@googlemail.com"
  8388. }
  8389. ],
  8390. "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.",
  8391. "homepage": "http://www.drush.org",
  8392. "funding": [
  8393. {
  8394. "url": "https://github.com/weitzman",
  8395. "type": "github"
  8396. }
  8397. ],
  8398. "time": "2020-11-11T04:36:51+00:00"
  8399. },
  8400. {
  8401. "name": "egulias/email-validator",
  8402. "version": "2.1.22",
  8403. "source": {
  8404. "type": "git",
  8405. "url": "https://github.com/egulias/EmailValidator.git",
  8406. "reference": "68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5"
  8407. },
  8408. "dist": {
  8409. "type": "zip",
  8410. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5",
  8411. "reference": "68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5",
  8412. "shasum": ""
  8413. },
  8414. "require": {
  8415. "doctrine/lexer": "^1.0.1",
  8416. "php": ">=5.5",
  8417. "symfony/polyfill-intl-idn": "^1.10"
  8418. },
  8419. "require-dev": {
  8420. "dominicsayers/isemail": "^3.0.7",
  8421. "phpunit/phpunit": "^4.8.36|^7.5.15",
  8422. "satooshi/php-coveralls": "^1.0.1"
  8423. },
  8424. "suggest": {
  8425. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  8426. },
  8427. "type": "library",
  8428. "extra": {
  8429. "branch-alias": {
  8430. "dev-master": "2.1.x-dev"
  8431. }
  8432. },
  8433. "autoload": {
  8434. "psr-4": {
  8435. "Egulias\\EmailValidator\\": "src"
  8436. }
  8437. },
  8438. "notification-url": "https://packagist.org/downloads/",
  8439. "license": [
  8440. "MIT"
  8441. ],
  8442. "authors": [
  8443. {
  8444. "name": "Eduardo Gulias Davis"
  8445. }
  8446. ],
  8447. "description": "A library for validating emails against several RFCs",
  8448. "homepage": "https://github.com/egulias/EmailValidator",
  8449. "keywords": [
  8450. "email",
  8451. "emailvalidation",
  8452. "emailvalidator",
  8453. "validation",
  8454. "validator"
  8455. ],
  8456. "support": {
  8457. "issues": "https://github.com/egulias/EmailValidator/issues",
  8458. "source": "https://github.com/egulias/EmailValidator/tree/2.1.22"
  8459. },
  8460. "time": "2020-09-26T15:48:38+00:00"
  8461. },
  8462. {
  8463. "name": "fileeye/mimemap",
  8464. "version": "1.1.4",
  8465. "source": {
  8466. "type": "git",
  8467. "url": "https://github.com/FileEye/MimeMap.git",
  8468. "reference": "3a0ddb71f06d8fb3f84f0a3c45348af81803b16d"
  8469. },
  8470. "dist": {
  8471. "type": "zip",
  8472. "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/3a0ddb71f06d8fb3f84f0a3c45348af81803b16d",
  8473. "reference": "3a0ddb71f06d8fb3f84f0a3c45348af81803b16d",
  8474. "shasum": ""
  8475. },
  8476. "require": {
  8477. "php": ">=5.4"
  8478. },
  8479. "require-dev": {
  8480. "phpunit/phpunit": "<10",
  8481. "sebastian/comparator": "*",
  8482. "sebastian/diff": "*",
  8483. "squizlabs/php_codesniffer": "*",
  8484. "symfony/console": "*",
  8485. "symfony/filesystem": "*",
  8486. "symfony/var-dumper": "*",
  8487. "symfony/yaml": "*"
  8488. },
  8489. "bin": [
  8490. "bin/fileeye-mimemap"
  8491. ],
  8492. "type": "library",
  8493. "extra": {
  8494. "branch-alias": {
  8495. "dev-master": "1.x-dev"
  8496. }
  8497. },
  8498. "autoload": {
  8499. "psr-4": {
  8500. "FileEye\\MimeMap\\": "src/"
  8501. }
  8502. },
  8503. "notification-url": "https://packagist.org/downloads/",
  8504. "license": [
  8505. "LGPL-3.0-or-later"
  8506. ],
  8507. "description": "A PHP library to handle MIME Content-Type fields and their related file extensions.",
  8508. "homepage": "https://github.com/FileEye/MimeMap",
  8509. "keywords": [
  8510. "mime",
  8511. "mime-database",
  8512. "mime-parser",
  8513. "mime-type"
  8514. ],
  8515. "time": "2020-05-16T10:19:16+00:00"
  8516. },
  8517. {
  8518. "name": "grasmash/expander",
  8519. "version": "1.0.0",
  8520. "source": {
  8521. "type": "git",
  8522. "url": "https://github.com/grasmash/expander.git",
  8523. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  8524. },
  8525. "dist": {
  8526. "type": "zip",
  8527. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  8528. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  8529. "shasum": ""
  8530. },
  8531. "require": {
  8532. "dflydev/dot-access-data": "^1.1.0",
  8533. "php": ">=5.4"
  8534. },
  8535. "require-dev": {
  8536. "greg-1-anderson/composer-test-scenarios": "^1",
  8537. "phpunit/phpunit": "^4|^5.5.4",
  8538. "satooshi/php-coveralls": "^1.0.2|dev-master",
  8539. "squizlabs/php_codesniffer": "^2.7"
  8540. },
  8541. "type": "library",
  8542. "extra": {
  8543. "branch-alias": {
  8544. "dev-master": "1.x-dev"
  8545. }
  8546. },
  8547. "autoload": {
  8548. "psr-4": {
  8549. "Grasmash\\Expander\\": "src/"
  8550. }
  8551. },
  8552. "notification-url": "https://packagist.org/downloads/",
  8553. "license": [
  8554. "MIT"
  8555. ],
  8556. "authors": [
  8557. {
  8558. "name": "Matthew Grasmick"
  8559. }
  8560. ],
  8561. "description": "Expands internal property references in PHP arrays file.",
  8562. "time": "2017-12-21T22:14:55+00:00"
  8563. },
  8564. {
  8565. "name": "grasmash/yaml-expander",
  8566. "version": "1.4.0",
  8567. "source": {
  8568. "type": "git",
  8569. "url": "https://github.com/grasmash/yaml-expander.git",
  8570. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  8571. },
  8572. "dist": {
  8573. "type": "zip",
  8574. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  8575. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  8576. "shasum": ""
  8577. },
  8578. "require": {
  8579. "dflydev/dot-access-data": "^1.1.0",
  8580. "php": ">=5.4",
  8581. "symfony/yaml": "^2.8.11|^3|^4"
  8582. },
  8583. "require-dev": {
  8584. "greg-1-anderson/composer-test-scenarios": "^1",
  8585. "phpunit/phpunit": "^4.8|^5.5.4",
  8586. "satooshi/php-coveralls": "^1.0.2|dev-master",
  8587. "squizlabs/php_codesniffer": "^2.7"
  8588. },
  8589. "type": "library",
  8590. "extra": {
  8591. "branch-alias": {
  8592. "dev-master": "1.x-dev"
  8593. }
  8594. },
  8595. "autoload": {
  8596. "psr-4": {
  8597. "Grasmash\\YamlExpander\\": "src/"
  8598. }
  8599. },
  8600. "notification-url": "https://packagist.org/downloads/",
  8601. "license": [
  8602. "MIT"
  8603. ],
  8604. "authors": [
  8605. {
  8606. "name": "Matthew Grasmick"
  8607. }
  8608. ],
  8609. "description": "Expands internal property references in a yaml file.",
  8610. "time": "2017-12-16T16:06:03+00:00"
  8611. },
  8612. {
  8613. "name": "guzzlehttp/guzzle",
  8614. "version": "6.5.5",
  8615. "source": {
  8616. "type": "git",
  8617. "url": "https://github.com/guzzle/guzzle.git",
  8618. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  8619. },
  8620. "dist": {
  8621. "type": "zip",
  8622. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  8623. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  8624. "shasum": ""
  8625. },
  8626. "require": {
  8627. "ext-json": "*",
  8628. "guzzlehttp/promises": "^1.0",
  8629. "guzzlehttp/psr7": "^1.6.1",
  8630. "php": ">=5.5",
  8631. "symfony/polyfill-intl-idn": "^1.17.0"
  8632. },
  8633. "require-dev": {
  8634. "ext-curl": "*",
  8635. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  8636. "psr/log": "^1.1"
  8637. },
  8638. "suggest": {
  8639. "psr/log": "Required for using the Log middleware"
  8640. },
  8641. "type": "library",
  8642. "extra": {
  8643. "branch-alias": {
  8644. "dev-master": "6.5-dev"
  8645. }
  8646. },
  8647. "autoload": {
  8648. "psr-4": {
  8649. "GuzzleHttp\\": "src/"
  8650. },
  8651. "files": [
  8652. "src/functions_include.php"
  8653. ]
  8654. },
  8655. "notification-url": "https://packagist.org/downloads/",
  8656. "license": [
  8657. "MIT"
  8658. ],
  8659. "authors": [
  8660. {
  8661. "name": "Michael Dowling",
  8662. "email": "mtdowling@gmail.com",
  8663. "homepage": "https://github.com/mtdowling"
  8664. }
  8665. ],
  8666. "description": "Guzzle is a PHP HTTP client library",
  8667. "homepage": "http://guzzlephp.org/",
  8668. "keywords": [
  8669. "client",
  8670. "curl",
  8671. "framework",
  8672. "http",
  8673. "http client",
  8674. "rest",
  8675. "web service"
  8676. ],
  8677. "support": {
  8678. "issues": "https://github.com/guzzle/guzzle/issues",
  8679. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  8680. },
  8681. "time": "2020-06-16T21:01:06+00:00"
  8682. },
  8683. {
  8684. "name": "guzzlehttp/promises",
  8685. "version": "1.4.0",
  8686. "source": {
  8687. "type": "git",
  8688. "url": "https://github.com/guzzle/promises.git",
  8689. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  8690. },
  8691. "dist": {
  8692. "type": "zip",
  8693. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  8694. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  8695. "shasum": ""
  8696. },
  8697. "require": {
  8698. "php": ">=5.5"
  8699. },
  8700. "require-dev": {
  8701. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  8702. },
  8703. "type": "library",
  8704. "extra": {
  8705. "branch-alias": {
  8706. "dev-master": "1.4-dev"
  8707. }
  8708. },
  8709. "autoload": {
  8710. "psr-4": {
  8711. "GuzzleHttp\\Promise\\": "src/"
  8712. },
  8713. "files": [
  8714. "src/functions_include.php"
  8715. ]
  8716. },
  8717. "notification-url": "https://packagist.org/downloads/",
  8718. "license": [
  8719. "MIT"
  8720. ],
  8721. "authors": [
  8722. {
  8723. "name": "Michael Dowling",
  8724. "email": "mtdowling@gmail.com",
  8725. "homepage": "https://github.com/mtdowling"
  8726. }
  8727. ],
  8728. "description": "Guzzle promises library",
  8729. "keywords": [
  8730. "promise"
  8731. ],
  8732. "support": {
  8733. "issues": "https://github.com/guzzle/promises/issues",
  8734. "source": "https://github.com/guzzle/promises/tree/1.4.0"
  8735. },
  8736. "time": "2020-09-30T07:37:28+00:00"
  8737. },
  8738. {
  8739. "name": "guzzlehttp/psr7",
  8740. "version": "1.7.0",
  8741. "source": {
  8742. "type": "git",
  8743. "url": "https://github.com/guzzle/psr7.git",
  8744. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  8745. },
  8746. "dist": {
  8747. "type": "zip",
  8748. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  8749. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  8750. "shasum": ""
  8751. },
  8752. "require": {
  8753. "php": ">=5.4.0",
  8754. "psr/http-message": "~1.0",
  8755. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  8756. },
  8757. "provide": {
  8758. "psr/http-message-implementation": "1.0"
  8759. },
  8760. "require-dev": {
  8761. "ext-zlib": "*",
  8762. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  8763. },
  8764. "suggest": {
  8765. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  8766. },
  8767. "type": "library",
  8768. "extra": {
  8769. "branch-alias": {
  8770. "dev-master": "1.7-dev"
  8771. }
  8772. },
  8773. "autoload": {
  8774. "psr-4": {
  8775. "GuzzleHttp\\Psr7\\": "src/"
  8776. },
  8777. "files": [
  8778. "src/functions_include.php"
  8779. ]
  8780. },
  8781. "notification-url": "https://packagist.org/downloads/",
  8782. "license": [
  8783. "MIT"
  8784. ],
  8785. "authors": [
  8786. {
  8787. "name": "Michael Dowling",
  8788. "email": "mtdowling@gmail.com",
  8789. "homepage": "https://github.com/mtdowling"
  8790. },
  8791. {
  8792. "name": "Tobias Schultze",
  8793. "homepage": "https://github.com/Tobion"
  8794. }
  8795. ],
  8796. "description": "PSR-7 message implementation that also provides common utility methods",
  8797. "keywords": [
  8798. "http",
  8799. "message",
  8800. "psr-7",
  8801. "request",
  8802. "response",
  8803. "stream",
  8804. "uri",
  8805. "url"
  8806. ],
  8807. "support": {
  8808. "issues": "https://github.com/guzzle/psr7/issues",
  8809. "source": "https://github.com/guzzle/psr7/tree/1.7.0"
  8810. },
  8811. "time": "2020-09-30T07:37:11+00:00"
  8812. },
  8813. {
  8814. "name": "kint-php/kint",
  8815. "version": "3.3",
  8816. "source": {
  8817. "type": "git",
  8818. "url": "https://github.com/kint-php/kint.git",
  8819. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b"
  8820. },
  8821. "dist": {
  8822. "type": "zip",
  8823. "url": "https://api.github.com/repos/kint-php/kint/zipball/335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8824. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8825. "shasum": ""
  8826. },
  8827. "require": {
  8828. "php": ">=5.3.6"
  8829. },
  8830. "require-dev": {
  8831. "friendsofphp/php-cs-fixer": "^2.0",
  8832. "phpunit/phpunit": "^4.0",
  8833. "seld/phar-utils": "^1.0",
  8834. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  8835. "vimeo/psalm": "^3.0"
  8836. },
  8837. "suggest": {
  8838. "ext-ctype": "Simple data type tests",
  8839. "ext-iconv": "Provides fallback detection for ambiguous legacy string encodings such as the Windows and ISO 8859 code pages",
  8840. "ext-mbstring": "Provides string encoding detection",
  8841. "kint-php/kint-js": "Provides a simplified dump to console.log()",
  8842. "kint-php/kint-twig": "Provides d() and s() functions in twig templates",
  8843. "symfony/polyfill-ctype": "Replacement for ext-ctype if missing",
  8844. "symfony/polyfill-iconv": "Replacement for ext-iconv if missing",
  8845. "symfony/polyfill-mbstring": "Replacement for ext-mbstring if missing"
  8846. },
  8847. "type": "library",
  8848. "autoload": {
  8849. "files": [
  8850. "init.php"
  8851. ],
  8852. "psr-4": {
  8853. "Kint\\": "src/"
  8854. }
  8855. },
  8856. "notification-url": "https://packagist.org/downloads/",
  8857. "license": [
  8858. "MIT"
  8859. ],
  8860. "authors": [
  8861. {
  8862. "name": "Jonathan Vollebregt",
  8863. "homepage": "https://github.com/jnvsor"
  8864. },
  8865. {
  8866. "name": "Rokas Šleinius",
  8867. "homepage": "https://github.com/raveren"
  8868. },
  8869. {
  8870. "name": "Contributors",
  8871. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  8872. }
  8873. ],
  8874. "description": "Kint - debugging tool for PHP developers",
  8875. "homepage": "https://kint-php.github.io/kint/",
  8876. "keywords": [
  8877. "debug",
  8878. "kint",
  8879. "php"
  8880. ],
  8881. "time": "2019-10-17T18:05:24+00:00"
  8882. },
  8883. {
  8884. "name": "laminas/laminas-diactoros",
  8885. "version": "2.5.0",
  8886. "source": {
  8887. "type": "git",
  8888. "url": "https://github.com/laminas/laminas-diactoros.git",
  8889. "reference": "4ff7400c1c12e404144992ef43c8b733fd9ad516"
  8890. },
  8891. "dist": {
  8892. "type": "zip",
  8893. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/4ff7400c1c12e404144992ef43c8b733fd9ad516",
  8894. "reference": "4ff7400c1c12e404144992ef43c8b733fd9ad516",
  8895. "shasum": ""
  8896. },
  8897. "require": {
  8898. "laminas/laminas-zendframework-bridge": "^1.0",
  8899. "php": "^7.3 || ~8.0.0",
  8900. "psr/http-factory": "^1.0",
  8901. "psr/http-message": "^1.0"
  8902. },
  8903. "conflict": {
  8904. "phpspec/prophecy": "<1.9.0"
  8905. },
  8906. "provide": {
  8907. "psr/http-factory-implementation": "1.0",
  8908. "psr/http-message-implementation": "1.0"
  8909. },
  8910. "replace": {
  8911. "zendframework/zend-diactoros": "^2.2.1"
  8912. },
  8913. "require-dev": {
  8914. "ext-curl": "*",
  8915. "ext-dom": "*",
  8916. "ext-gd": "*",
  8917. "ext-libxml": "*",
  8918. "http-interop/http-factory-tests": "^0.8.0",
  8919. "laminas/laminas-coding-standard": "~1.0.0",
  8920. "php-http/psr7-integration-tests": "^1.1",
  8921. "phpspec/prophecy-phpunit": "^2.0",
  8922. "phpunit/phpunit": "^9.1"
  8923. },
  8924. "type": "library",
  8925. "extra": {
  8926. "laminas": {
  8927. "config-provider": "Laminas\\Diactoros\\ConfigProvider",
  8928. "module": "Laminas\\Diactoros"
  8929. }
  8930. },
  8931. "autoload": {
  8932. "files": [
  8933. "src/functions/create_uploaded_file.php",
  8934. "src/functions/marshal_headers_from_sapi.php",
  8935. "src/functions/marshal_method_from_sapi.php",
  8936. "src/functions/marshal_protocol_version_from_sapi.php",
  8937. "src/functions/marshal_uri_from_sapi.php",
  8938. "src/functions/normalize_server.php",
  8939. "src/functions/normalize_uploaded_files.php",
  8940. "src/functions/parse_cookie_header.php",
  8941. "src/functions/create_uploaded_file.legacy.php",
  8942. "src/functions/marshal_headers_from_sapi.legacy.php",
  8943. "src/functions/marshal_method_from_sapi.legacy.php",
  8944. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  8945. "src/functions/marshal_uri_from_sapi.legacy.php",
  8946. "src/functions/normalize_server.legacy.php",
  8947. "src/functions/normalize_uploaded_files.legacy.php",
  8948. "src/functions/parse_cookie_header.legacy.php"
  8949. ],
  8950. "psr-4": {
  8951. "Laminas\\Diactoros\\": "src/"
  8952. }
  8953. },
  8954. "notification-url": "https://packagist.org/downloads/",
  8955. "license": [
  8956. "BSD-3-Clause"
  8957. ],
  8958. "description": "PSR HTTP Message implementations",
  8959. "homepage": "https://laminas.dev",
  8960. "keywords": [
  8961. "http",
  8962. "laminas",
  8963. "psr",
  8964. "psr-17",
  8965. "psr-7"
  8966. ],
  8967. "support": {
  8968. "chat": "https://laminas.dev/chat",
  8969. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  8970. "forum": "https://discourse.laminas.dev",
  8971. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  8972. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  8973. "source": "https://github.com/laminas/laminas-diactoros"
  8974. },
  8975. "funding": [
  8976. {
  8977. "url": "https://funding.communitybridge.org/projects/laminas-project",
  8978. "type": "community_bridge"
  8979. }
  8980. ],
  8981. "time": "2020-11-18T18:39:28+00:00"
  8982. },
  8983. {
  8984. "name": "laminas/laminas-escaper",
  8985. "version": "2.7.0",
  8986. "source": {
  8987. "type": "git",
  8988. "url": "https://github.com/laminas/laminas-escaper.git",
  8989. "reference": "5e04bc5ae5990b17159d79d331055e2c645e5cc5"
  8990. },
  8991. "dist": {
  8992. "type": "zip",
  8993. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/5e04bc5ae5990b17159d79d331055e2c645e5cc5",
  8994. "reference": "5e04bc5ae5990b17159d79d331055e2c645e5cc5",
  8995. "shasum": ""
  8996. },
  8997. "require": {
  8998. "laminas/laminas-zendframework-bridge": "^1.0",
  8999. "php": "^7.3 || ~8.0.0"
  9000. },
  9001. "replace": {
  9002. "zendframework/zend-escaper": "^2.6.1"
  9003. },
  9004. "require-dev": {
  9005. "laminas/laminas-coding-standard": "~1.0.0",
  9006. "phpunit/phpunit": "^9.3",
  9007. "psalm/plugin-phpunit": "^0.12.2",
  9008. "vimeo/psalm": "^3.16"
  9009. },
  9010. "suggest": {
  9011. "ext-iconv": "*",
  9012. "ext-mbstring": "*"
  9013. },
  9014. "type": "library",
  9015. "autoload": {
  9016. "psr-4": {
  9017. "Laminas\\Escaper\\": "src/"
  9018. }
  9019. },
  9020. "notification-url": "https://packagist.org/downloads/",
  9021. "license": [
  9022. "BSD-3-Clause"
  9023. ],
  9024. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  9025. "homepage": "https://laminas.dev",
  9026. "keywords": [
  9027. "escaper",
  9028. "laminas"
  9029. ],
  9030. "support": {
  9031. "chat": "https://laminas.dev/chat",
  9032. "docs": "https://docs.laminas.dev/laminas-escaper/",
  9033. "forum": "https://discourse.laminas.dev",
  9034. "issues": "https://github.com/laminas/laminas-escaper/issues",
  9035. "rss": "https://github.com/laminas/laminas-escaper/releases.atom",
  9036. "source": "https://github.com/laminas/laminas-escaper"
  9037. },
  9038. "funding": [
  9039. {
  9040. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9041. "type": "community_bridge"
  9042. }
  9043. ],
  9044. "time": "2020-11-17T21:26:43+00:00"
  9045. },
  9046. {
  9047. "name": "laminas/laminas-feed",
  9048. "version": "2.13.0",
  9049. "source": {
  9050. "type": "git",
  9051. "url": "https://github.com/laminas/laminas-feed.git",
  9052. "reference": "fb89aac1984222227f37792dd193d34829a0762f"
  9053. },
  9054. "dist": {
  9055. "type": "zip",
  9056. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/fb89aac1984222227f37792dd193d34829a0762f",
  9057. "reference": "fb89aac1984222227f37792dd193d34829a0762f",
  9058. "shasum": ""
  9059. },
  9060. "require": {
  9061. "ext-dom": "*",
  9062. "ext-libxml": "*",
  9063. "laminas/laminas-escaper": "^2.5.2",
  9064. "laminas/laminas-stdlib": "^3.2.1",
  9065. "laminas/laminas-zendframework-bridge": "^1.0",
  9066. "php": "^7.3 || ~8.0.0"
  9067. },
  9068. "conflict": {
  9069. "laminas/laminas-servicemanager": "<3.3"
  9070. },
  9071. "replace": {
  9072. "zendframework/zend-feed": "^2.12.0"
  9073. },
  9074. "require-dev": {
  9075. "laminas/laminas-cache": "^2.7.2",
  9076. "laminas/laminas-coding-standard": "~1.0.0",
  9077. "laminas/laminas-db": "^2.8.2",
  9078. "laminas/laminas-http": "^2.7",
  9079. "laminas/laminas-servicemanager": "^3.3",
  9080. "laminas/laminas-validator": "^2.10.1",
  9081. "phpunit/phpunit": "^9.3",
  9082. "psalm/plugin-phpunit": "^0.13.0",
  9083. "psr/http-message": "^1.0.1",
  9084. "vimeo/psalm": "^4.1"
  9085. },
  9086. "suggest": {
  9087. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  9088. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  9089. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  9090. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  9091. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  9092. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  9093. },
  9094. "type": "library",
  9095. "autoload": {
  9096. "psr-4": {
  9097. "Laminas\\Feed\\": "src/"
  9098. }
  9099. },
  9100. "notification-url": "https://packagist.org/downloads/",
  9101. "license": [
  9102. "BSD-3-Clause"
  9103. ],
  9104. "description": "provides functionality for consuming RSS and Atom feeds",
  9105. "homepage": "https://laminas.dev",
  9106. "keywords": [
  9107. "feed",
  9108. "laminas"
  9109. ],
  9110. "support": {
  9111. "chat": "https://laminas.dev/chat",
  9112. "docs": "https://docs.laminas.dev/laminas-feed/",
  9113. "forum": "https://discourse.laminas.dev",
  9114. "issues": "https://github.com/laminas/laminas-feed/issues",
  9115. "rss": "https://github.com/laminas/laminas-feed/releases.atom",
  9116. "source": "https://github.com/laminas/laminas-feed"
  9117. },
  9118. "funding": [
  9119. {
  9120. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9121. "type": "community_bridge"
  9122. }
  9123. ],
  9124. "time": "2020-11-18T21:02:52+00:00"
  9125. },
  9126. {
  9127. "name": "laminas/laminas-stdlib",
  9128. "version": "3.3.0",
  9129. "source": {
  9130. "type": "git",
  9131. "url": "https://github.com/laminas/laminas-stdlib.git",
  9132. "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6"
  9133. },
  9134. "dist": {
  9135. "type": "zip",
  9136. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/b9d84eaa39fde733356ea948cdef36c631f202b6",
  9137. "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6",
  9138. "shasum": ""
  9139. },
  9140. "require": {
  9141. "laminas/laminas-zendframework-bridge": "^1.0",
  9142. "php": "^7.3 || ^8.0"
  9143. },
  9144. "replace": {
  9145. "zendframework/zend-stdlib": "^3.2.1"
  9146. },
  9147. "require-dev": {
  9148. "laminas/laminas-coding-standard": "~1.0.0",
  9149. "phpbench/phpbench": "^0.17.1",
  9150. "phpunit/phpunit": "^9.3.7"
  9151. },
  9152. "type": "library",
  9153. "extra": {
  9154. "branch-alias": {
  9155. "dev-master": "3.3.x-dev",
  9156. "dev-develop": "3.4.x-dev"
  9157. }
  9158. },
  9159. "autoload": {
  9160. "psr-4": {
  9161. "Laminas\\Stdlib\\": "src/"
  9162. }
  9163. },
  9164. "notification-url": "https://packagist.org/downloads/",
  9165. "license": [
  9166. "BSD-3-Clause"
  9167. ],
  9168. "description": "SPL extensions, array utilities, error handlers, and more",
  9169. "homepage": "https://laminas.dev",
  9170. "keywords": [
  9171. "laminas",
  9172. "stdlib"
  9173. ],
  9174. "support": {
  9175. "chat": "https://laminas.dev/chat",
  9176. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  9177. "forum": "https://discourse.laminas.dev",
  9178. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  9179. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  9180. "source": "https://github.com/laminas/laminas-stdlib"
  9181. },
  9182. "funding": [
  9183. {
  9184. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9185. "type": "community_bridge"
  9186. }
  9187. ],
  9188. "time": "2020-08-25T09:08:16+00:00"
  9189. },
  9190. {
  9191. "name": "laminas/laminas-zendframework-bridge",
  9192. "version": "1.1.1",
  9193. "source": {
  9194. "type": "git",
  9195. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  9196. "reference": "6ede70583e101030bcace4dcddd648f760ddf642"
  9197. },
  9198. "dist": {
  9199. "type": "zip",
  9200. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/6ede70583e101030bcace4dcddd648f760ddf642",
  9201. "reference": "6ede70583e101030bcace4dcddd648f760ddf642",
  9202. "shasum": ""
  9203. },
  9204. "require": {
  9205. "php": "^5.6 || ^7.0 || ^8.0"
  9206. },
  9207. "require-dev": {
  9208. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1 || ^9.3",
  9209. "squizlabs/php_codesniffer": "^3.5"
  9210. },
  9211. "type": "library",
  9212. "extra": {
  9213. "laminas": {
  9214. "module": "Laminas\\ZendFrameworkBridge"
  9215. }
  9216. },
  9217. "autoload": {
  9218. "files": [
  9219. "src/autoload.php"
  9220. ],
  9221. "psr-4": {
  9222. "Laminas\\ZendFrameworkBridge\\": "src//"
  9223. }
  9224. },
  9225. "notification-url": "https://packagist.org/downloads/",
  9226. "license": [
  9227. "BSD-3-Clause"
  9228. ],
  9229. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  9230. "keywords": [
  9231. "ZendFramework",
  9232. "autoloading",
  9233. "laminas",
  9234. "zf"
  9235. ],
  9236. "support": {
  9237. "forum": "https://discourse.laminas.dev/",
  9238. "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues",
  9239. "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom",
  9240. "source": "https://github.com/laminas/laminas-zendframework-bridge"
  9241. },
  9242. "funding": [
  9243. {
  9244. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9245. "type": "community_bridge"
  9246. }
  9247. ],
  9248. "time": "2020-09-14T14:23:00+00:00"
  9249. },
  9250. {
  9251. "name": "league/container",
  9252. "version": "2.4.1",
  9253. "source": {
  9254. "type": "git",
  9255. "url": "https://github.com/thephpleague/container.git",
  9256. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  9257. },
  9258. "dist": {
  9259. "type": "zip",
  9260. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  9261. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  9262. "shasum": ""
  9263. },
  9264. "require": {
  9265. "container-interop/container-interop": "^1.2",
  9266. "php": "^5.4.0 || ^7.0"
  9267. },
  9268. "provide": {
  9269. "container-interop/container-interop-implementation": "^1.2",
  9270. "psr/container-implementation": "^1.0"
  9271. },
  9272. "replace": {
  9273. "orno/di": "~2.0"
  9274. },
  9275. "require-dev": {
  9276. "phpunit/phpunit": "4.*"
  9277. },
  9278. "type": "library",
  9279. "extra": {
  9280. "branch-alias": {
  9281. "dev-2.x": "2.x-dev",
  9282. "dev-1.x": "1.x-dev"
  9283. }
  9284. },
  9285. "autoload": {
  9286. "psr-4": {
  9287. "League\\Container\\": "src"
  9288. }
  9289. },
  9290. "notification-url": "https://packagist.org/downloads/",
  9291. "license": [
  9292. "MIT"
  9293. ],
  9294. "authors": [
  9295. {
  9296. "name": "Phil Bennett",
  9297. "email": "philipobenito@gmail.com",
  9298. "homepage": "http://www.philipobenito.com",
  9299. "role": "Developer"
  9300. }
  9301. ],
  9302. "description": "A fast and intuitive dependency injection container.",
  9303. "homepage": "https://github.com/thephpleague/container",
  9304. "keywords": [
  9305. "container",
  9306. "dependency",
  9307. "di",
  9308. "injection",
  9309. "league",
  9310. "provider",
  9311. "service"
  9312. ],
  9313. "time": "2017-05-10T09:20:27+00:00"
  9314. },
  9315. {
  9316. "name": "lsolesen/pel",
  9317. "version": "0.9.9",
  9318. "source": {
  9319. "type": "git",
  9320. "url": "https://github.com/pel/pel.git",
  9321. "reference": "95dd3c16161c588f0ac66662c1870a073159e5ec"
  9322. },
  9323. "dist": {
  9324. "type": "zip",
  9325. "url": "https://api.github.com/repos/pel/pel/zipball/95dd3c16161c588f0ac66662c1870a073159e5ec",
  9326. "reference": "95dd3c16161c588f0ac66662c1870a073159e5ec",
  9327. "shasum": ""
  9328. },
  9329. "require": {
  9330. "php": ">=5.4.0"
  9331. },
  9332. "require-dev": {
  9333. "ext-gd": "*",
  9334. "phpunit/phpunit": ">=4.8.36 <8",
  9335. "satooshi/php-coveralls": "1.0.*",
  9336. "squizlabs/php_codesniffer": "^3.0.0"
  9337. },
  9338. "type": "library",
  9339. "autoload": {
  9340. "psr-4": {
  9341. "lsolesen\\pel\\": "src/"
  9342. }
  9343. },
  9344. "notification-url": "https://packagist.org/downloads/",
  9345. "license": [
  9346. "GPL-2.0"
  9347. ],
  9348. "authors": [
  9349. {
  9350. "name": "Lars Olesen",
  9351. "email": "lars@intraface.dk",
  9352. "homepage": "http://intraface.dk",
  9353. "role": "Developer"
  9354. },
  9355. {
  9356. "name": "Martin Geisler",
  9357. "email": "martin@geisler.net",
  9358. "homepage": "http://geisler.net",
  9359. "role": "Developer"
  9360. }
  9361. ],
  9362. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  9363. "homepage": "http://pel.github.com/pel/",
  9364. "keywords": [
  9365. "exif",
  9366. "image"
  9367. ],
  9368. "time": "2020-11-07T06:04:18+00:00"
  9369. },
  9370. {
  9371. "name": "masterminds/html5",
  9372. "version": "2.7.4",
  9373. "source": {
  9374. "type": "git",
  9375. "url": "https://github.com/Masterminds/html5-php.git",
  9376. "reference": "9227822783c75406cfe400984b2f095cdf03d417"
  9377. },
  9378. "dist": {
  9379. "type": "zip",
  9380. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/9227822783c75406cfe400984b2f095cdf03d417",
  9381. "reference": "9227822783c75406cfe400984b2f095cdf03d417",
  9382. "shasum": ""
  9383. },
  9384. "require": {
  9385. "ext-ctype": "*",
  9386. "ext-dom": "*",
  9387. "ext-libxml": "*",
  9388. "php": ">=5.3.0"
  9389. },
  9390. "require-dev": {
  9391. "phpunit/phpunit": "^4.8.35"
  9392. },
  9393. "type": "library",
  9394. "extra": {
  9395. "branch-alias": {
  9396. "dev-master": "2.7-dev"
  9397. }
  9398. },
  9399. "autoload": {
  9400. "psr-4": {
  9401. "Masterminds\\": "src"
  9402. }
  9403. },
  9404. "notification-url": "https://packagist.org/downloads/",
  9405. "license": [
  9406. "MIT"
  9407. ],
  9408. "authors": [
  9409. {
  9410. "name": "Matt Butcher",
  9411. "email": "technosophos@gmail.com"
  9412. },
  9413. {
  9414. "name": "Matt Farina",
  9415. "email": "matt@mattfarina.com"
  9416. },
  9417. {
  9418. "name": "Asmir Mustafic",
  9419. "email": "goetas@gmail.com"
  9420. }
  9421. ],
  9422. "description": "An HTML5 parser and serializer.",
  9423. "homepage": "http://masterminds.github.io/html5-php",
  9424. "keywords": [
  9425. "HTML5",
  9426. "dom",
  9427. "html",
  9428. "parser",
  9429. "querypath",
  9430. "serializer",
  9431. "xml"
  9432. ],
  9433. "support": {
  9434. "issues": "https://github.com/Masterminds/html5-php/issues",
  9435. "source": "https://github.com/Masterminds/html5-php/tree/2.7.4"
  9436. },
  9437. "time": "2020-10-01T13:52:52+00:00"
  9438. },
  9439. {
  9440. "name": "nikic/php-parser",
  9441. "version": "v4.10.3",
  9442. "source": {
  9443. "type": "git",
  9444. "url": "https://github.com/nikic/PHP-Parser.git",
  9445. "reference": "dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984"
  9446. },
  9447. "dist": {
  9448. "type": "zip",
  9449. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984",
  9450. "reference": "dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984",
  9451. "shasum": ""
  9452. },
  9453. "require": {
  9454. "ext-tokenizer": "*",
  9455. "php": ">=7.0"
  9456. },
  9457. "require-dev": {
  9458. "ircmaxell/php-yacc": "^0.0.7",
  9459. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  9460. },
  9461. "bin": [
  9462. "bin/php-parse"
  9463. ],
  9464. "type": "library",
  9465. "extra": {
  9466. "branch-alias": {
  9467. "dev-master": "4.9-dev"
  9468. }
  9469. },
  9470. "autoload": {
  9471. "psr-4": {
  9472. "PhpParser\\": "lib/PhpParser"
  9473. }
  9474. },
  9475. "notification-url": "https://packagist.org/downloads/",
  9476. "license": [
  9477. "BSD-3-Clause"
  9478. ],
  9479. "authors": [
  9480. {
  9481. "name": "Nikita Popov"
  9482. }
  9483. ],
  9484. "description": "A PHP parser written in PHP",
  9485. "keywords": [
  9486. "parser",
  9487. "php"
  9488. ],
  9489. "time": "2020-12-03T17:45:45+00:00"
  9490. },
  9491. {
  9492. "name": "pear/archive_tar",
  9493. "version": "1.4.13",
  9494. "source": {
  9495. "type": "git",
  9496. "url": "https://github.com/pear/Archive_Tar.git",
  9497. "reference": "2b87b41178cc6d4ad3cba678a46a1cae49786011"
  9498. },
  9499. "dist": {
  9500. "type": "zip",
  9501. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/2b87b41178cc6d4ad3cba678a46a1cae49786011",
  9502. "reference": "2b87b41178cc6d4ad3cba678a46a1cae49786011",
  9503. "shasum": ""
  9504. },
  9505. "require": {
  9506. "pear/pear-core-minimal": "^1.10.0alpha2",
  9507. "php": ">=5.2.0"
  9508. },
  9509. "require-dev": {
  9510. "phpunit/phpunit": "*"
  9511. },
  9512. "suggest": {
  9513. "ext-bz2": "Bz2 compression support.",
  9514. "ext-xz": "Lzma2 compression support.",
  9515. "ext-zlib": "Gzip compression support."
  9516. },
  9517. "type": "library",
  9518. "extra": {
  9519. "branch-alias": {
  9520. "dev-master": "1.4.x-dev"
  9521. }
  9522. },
  9523. "autoload": {
  9524. "psr-0": {
  9525. "Archive_Tar": ""
  9526. }
  9527. },
  9528. "notification-url": "https://packagist.org/downloads/",
  9529. "include-path": [
  9530. "./"
  9531. ],
  9532. "license": [
  9533. "BSD-3-Clause"
  9534. ],
  9535. "authors": [
  9536. {
  9537. "name": "Vincent Blavet",
  9538. "email": "vincent@phpconcept.net"
  9539. },
  9540. {
  9541. "name": "Greg Beaver",
  9542. "email": "greg@chiaraquartet.net"
  9543. },
  9544. {
  9545. "name": "Michiel Rook",
  9546. "email": "mrook@php.net"
  9547. }
  9548. ],
  9549. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  9550. "homepage": "https://github.com/pear/Archive_Tar",
  9551. "keywords": [
  9552. "archive",
  9553. "tar"
  9554. ],
  9555. "support": {
  9556. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  9557. "source": "https://github.com/pear/Archive_Tar"
  9558. },
  9559. "funding": [
  9560. {
  9561. "url": "https://github.com/mrook",
  9562. "type": "github"
  9563. },
  9564. {
  9565. "url": "https://www.patreon.com/michielrook",
  9566. "type": "patreon"
  9567. }
  9568. ],
  9569. "time": "2021-02-16T10:50:50+00:00"
  9570. },
  9571. {
  9572. "name": "pear/console_getopt",
  9573. "version": "v1.4.3",
  9574. "source": {
  9575. "type": "git",
  9576. "url": "https://github.com/pear/Console_Getopt.git",
  9577. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  9578. },
  9579. "dist": {
  9580. "type": "zip",
  9581. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9582. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9583. "shasum": ""
  9584. },
  9585. "type": "library",
  9586. "autoload": {
  9587. "psr-0": {
  9588. "Console": "./"
  9589. }
  9590. },
  9591. "notification-url": "https://packagist.org/downloads/",
  9592. "include-path": [
  9593. "./"
  9594. ],
  9595. "license": [
  9596. "BSD-2-Clause"
  9597. ],
  9598. "authors": [
  9599. {
  9600. "name": "Andrei Zmievski",
  9601. "email": "andrei@php.net",
  9602. "role": "Lead"
  9603. },
  9604. {
  9605. "name": "Stig Bakken",
  9606. "email": "stig@php.net",
  9607. "role": "Developer"
  9608. },
  9609. {
  9610. "name": "Greg Beaver",
  9611. "email": "cellog@php.net",
  9612. "role": "Helper"
  9613. }
  9614. ],
  9615. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  9616. "support": {
  9617. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  9618. "source": "https://github.com/pear/Console_Getopt"
  9619. },
  9620. "time": "2019-11-20T18:27:48+00:00"
  9621. },
  9622. {
  9623. "name": "pear/pear-core-minimal",
  9624. "version": "v1.10.10",
  9625. "source": {
  9626. "type": "git",
  9627. "url": "https://github.com/pear/pear-core-minimal.git",
  9628. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  9629. },
  9630. "dist": {
  9631. "type": "zip",
  9632. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  9633. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  9634. "shasum": ""
  9635. },
  9636. "require": {
  9637. "pear/console_getopt": "~1.4",
  9638. "pear/pear_exception": "~1.0"
  9639. },
  9640. "replace": {
  9641. "rsky/pear-core-min": "self.version"
  9642. },
  9643. "type": "library",
  9644. "autoload": {
  9645. "psr-0": {
  9646. "": "src/"
  9647. }
  9648. },
  9649. "notification-url": "https://packagist.org/downloads/",
  9650. "include-path": [
  9651. "src/"
  9652. ],
  9653. "license": [
  9654. "BSD-3-Clause"
  9655. ],
  9656. "authors": [
  9657. {
  9658. "name": "Christian Weiske",
  9659. "email": "cweiske@php.net",
  9660. "role": "Lead"
  9661. }
  9662. ],
  9663. "description": "Minimal set of PEAR core files to be used as composer dependency",
  9664. "support": {
  9665. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  9666. "source": "https://github.com/pear/pear-core-minimal"
  9667. },
  9668. "time": "2019-11-19T19:00:24+00:00"
  9669. },
  9670. {
  9671. "name": "pear/pear_exception",
  9672. "version": "v1.0.1",
  9673. "source": {
  9674. "type": "git",
  9675. "url": "https://github.com/pear/PEAR_Exception.git",
  9676. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7"
  9677. },
  9678. "dist": {
  9679. "type": "zip",
  9680. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  9681. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  9682. "shasum": ""
  9683. },
  9684. "require": {
  9685. "php": ">=4.4.0"
  9686. },
  9687. "require-dev": {
  9688. "phpunit/phpunit": "*"
  9689. },
  9690. "type": "class",
  9691. "extra": {
  9692. "branch-alias": {
  9693. "dev-master": "1.0.x-dev"
  9694. }
  9695. },
  9696. "autoload": {
  9697. "classmap": [
  9698. "PEAR/"
  9699. ]
  9700. },
  9701. "notification-url": "https://packagist.org/downloads/",
  9702. "include-path": [
  9703. "."
  9704. ],
  9705. "license": [
  9706. "BSD-2-Clause"
  9707. ],
  9708. "authors": [
  9709. {
  9710. "name": "Helgi Thormar",
  9711. "email": "dufuz@php.net"
  9712. },
  9713. {
  9714. "name": "Greg Beaver",
  9715. "email": "cellog@php.net"
  9716. }
  9717. ],
  9718. "description": "The PEAR Exception base class.",
  9719. "homepage": "https://github.com/pear/PEAR_Exception",
  9720. "keywords": [
  9721. "exception"
  9722. ],
  9723. "support": {
  9724. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  9725. "source": "https://github.com/pear/PEAR_Exception"
  9726. },
  9727. "time": "2019-12-10T10:24:42+00:00"
  9728. },
  9729. {
  9730. "name": "phenx/php-font-lib",
  9731. "version": "0.5.2",
  9732. "source": {
  9733. "type": "git",
  9734. "url": "https://github.com/PhenX/php-font-lib.git",
  9735. "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8"
  9736. },
  9737. "dist": {
  9738. "type": "zip",
  9739. "url": "https://api.github.com/repos/PhenX/php-font-lib/zipball/ca6ad461f032145fff5971b5985e5af9e7fa88d8",
  9740. "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8",
  9741. "shasum": ""
  9742. },
  9743. "require-dev": {
  9744. "phpunit/phpunit": "^4.8.35 || ^5 || ^6 || ^7"
  9745. },
  9746. "type": "library",
  9747. "autoload": {
  9748. "psr-4": {
  9749. "FontLib\\": "src/FontLib"
  9750. }
  9751. },
  9752. "notification-url": "https://packagist.org/downloads/",
  9753. "license": [
  9754. "LGPL-3.0"
  9755. ],
  9756. "authors": [
  9757. {
  9758. "name": "Fabien Ménager",
  9759. "email": "fabien.menager@gmail.com"
  9760. }
  9761. ],
  9762. "description": "A library to read, parse, export and make subsets of different types of font files.",
  9763. "homepage": "https://github.com/PhenX/php-font-lib",
  9764. "time": "2020-03-08T15:31:32+00:00"
  9765. },
  9766. {
  9767. "name": "phpmailer/phpmailer",
  9768. "version": "v6.2.0",
  9769. "source": {
  9770. "type": "git",
  9771. "url": "https://github.com/PHPMailer/PHPMailer.git",
  9772. "reference": "e38888a75c070304ca5514197d4847a59a5c853f"
  9773. },
  9774. "dist": {
  9775. "type": "zip",
  9776. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/e38888a75c070304ca5514197d4847a59a5c853f",
  9777. "reference": "e38888a75c070304ca5514197d4847a59a5c853f",
  9778. "shasum": ""
  9779. },
  9780. "require": {
  9781. "ext-ctype": "*",
  9782. "ext-filter": "*",
  9783. "ext-hash": "*",
  9784. "php": ">=5.5.0"
  9785. },
  9786. "require-dev": {
  9787. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  9788. "doctrine/annotations": "^1.2",
  9789. "phpcompatibility/php-compatibility": "^9.3.5",
  9790. "roave/security-advisories": "dev-latest",
  9791. "squizlabs/php_codesniffer": "^3.5.6",
  9792. "yoast/phpunit-polyfills": "^0.2.0"
  9793. },
  9794. "suggest": {
  9795. "ext-mbstring": "Needed to send email in multibyte encoding charset",
  9796. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  9797. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  9798. "psr/log": "For optional PSR-3 debug logging",
  9799. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  9800. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  9801. },
  9802. "type": "library",
  9803. "autoload": {
  9804. "psr-4": {
  9805. "PHPMailer\\PHPMailer\\": "src/"
  9806. }
  9807. },
  9808. "notification-url": "https://packagist.org/downloads/",
  9809. "license": [
  9810. "LGPL-2.1-only"
  9811. ],
  9812. "authors": [
  9813. {
  9814. "name": "Marcus Bointon",
  9815. "email": "phpmailer@synchromedia.co.uk"
  9816. },
  9817. {
  9818. "name": "Jim Jagielski",
  9819. "email": "jimjag@gmail.com"
  9820. },
  9821. {
  9822. "name": "Andy Prevost",
  9823. "email": "codeworxtech@users.sourceforge.net"
  9824. },
  9825. {
  9826. "name": "Brent R. Matzelle"
  9827. }
  9828. ],
  9829. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  9830. "funding": [
  9831. {
  9832. "url": "https://github.com/Synchro",
  9833. "type": "github"
  9834. }
  9835. ],
  9836. "time": "2020-11-25T15:24:57+00:00"
  9837. },
  9838. {
  9839. "name": "psr/container",
  9840. "version": "1.0.0",
  9841. "source": {
  9842. "type": "git",
  9843. "url": "https://github.com/php-fig/container.git",
  9844. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  9845. },
  9846. "dist": {
  9847. "type": "zip",
  9848. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  9849. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  9850. "shasum": ""
  9851. },
  9852. "require": {
  9853. "php": ">=5.3.0"
  9854. },
  9855. "type": "library",
  9856. "extra": {
  9857. "branch-alias": {
  9858. "dev-master": "1.0.x-dev"
  9859. }
  9860. },
  9861. "autoload": {
  9862. "psr-4": {
  9863. "Psr\\Container\\": "src/"
  9864. }
  9865. },
  9866. "notification-url": "https://packagist.org/downloads/",
  9867. "license": [
  9868. "MIT"
  9869. ],
  9870. "authors": [
  9871. {
  9872. "name": "PHP-FIG",
  9873. "homepage": "http://www.php-fig.org/"
  9874. }
  9875. ],
  9876. "description": "Common Container Interface (PHP FIG PSR-11)",
  9877. "homepage": "https://github.com/php-fig/container",
  9878. "keywords": [
  9879. "PSR-11",
  9880. "container",
  9881. "container-interface",
  9882. "container-interop",
  9883. "psr"
  9884. ],
  9885. "support": {
  9886. "issues": "https://github.com/php-fig/container/issues",
  9887. "source": "https://github.com/php-fig/container/tree/master"
  9888. },
  9889. "time": "2017-02-14T16:28:37+00:00"
  9890. },
  9891. {
  9892. "name": "psr/http-factory",
  9893. "version": "1.0.1",
  9894. "source": {
  9895. "type": "git",
  9896. "url": "https://github.com/php-fig/http-factory.git",
  9897. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  9898. },
  9899. "dist": {
  9900. "type": "zip",
  9901. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  9902. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  9903. "shasum": ""
  9904. },
  9905. "require": {
  9906. "php": ">=7.0.0",
  9907. "psr/http-message": "^1.0"
  9908. },
  9909. "type": "library",
  9910. "extra": {
  9911. "branch-alias": {
  9912. "dev-master": "1.0.x-dev"
  9913. }
  9914. },
  9915. "autoload": {
  9916. "psr-4": {
  9917. "Psr\\Http\\Message\\": "src/"
  9918. }
  9919. },
  9920. "notification-url": "https://packagist.org/downloads/",
  9921. "license": [
  9922. "MIT"
  9923. ],
  9924. "authors": [
  9925. {
  9926. "name": "PHP-FIG",
  9927. "homepage": "http://www.php-fig.org/"
  9928. }
  9929. ],
  9930. "description": "Common interfaces for PSR-7 HTTP message factories",
  9931. "keywords": [
  9932. "factory",
  9933. "http",
  9934. "message",
  9935. "psr",
  9936. "psr-17",
  9937. "psr-7",
  9938. "request",
  9939. "response"
  9940. ],
  9941. "support": {
  9942. "source": "https://github.com/php-fig/http-factory/tree/master"
  9943. },
  9944. "time": "2019-04-30T12:38:16+00:00"
  9945. },
  9946. {
  9947. "name": "psr/http-message",
  9948. "version": "1.0.1",
  9949. "source": {
  9950. "type": "git",
  9951. "url": "https://github.com/php-fig/http-message.git",
  9952. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  9953. },
  9954. "dist": {
  9955. "type": "zip",
  9956. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  9957. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  9958. "shasum": ""
  9959. },
  9960. "require": {
  9961. "php": ">=5.3.0"
  9962. },
  9963. "type": "library",
  9964. "extra": {
  9965. "branch-alias": {
  9966. "dev-master": "1.0.x-dev"
  9967. }
  9968. },
  9969. "autoload": {
  9970. "psr-4": {
  9971. "Psr\\Http\\Message\\": "src/"
  9972. }
  9973. },
  9974. "notification-url": "https://packagist.org/downloads/",
  9975. "license": [
  9976. "MIT"
  9977. ],
  9978. "authors": [
  9979. {
  9980. "name": "PHP-FIG",
  9981. "homepage": "http://www.php-fig.org/"
  9982. }
  9983. ],
  9984. "description": "Common interface for HTTP messages",
  9985. "homepage": "https://github.com/php-fig/http-message",
  9986. "keywords": [
  9987. "http",
  9988. "http-message",
  9989. "psr",
  9990. "psr-7",
  9991. "request",
  9992. "response"
  9993. ],
  9994. "support": {
  9995. "source": "https://github.com/php-fig/http-message/tree/master"
  9996. },
  9997. "time": "2016-08-06T14:39:51+00:00"
  9998. },
  9999. {
  10000. "name": "psr/log",
  10001. "version": "1.1.3",
  10002. "source": {
  10003. "type": "git",
  10004. "url": "https://github.com/php-fig/log.git",
  10005. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  10006. },
  10007. "dist": {
  10008. "type": "zip",
  10009. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  10010. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  10011. "shasum": ""
  10012. },
  10013. "require": {
  10014. "php": ">=5.3.0"
  10015. },
  10016. "type": "library",
  10017. "extra": {
  10018. "branch-alias": {
  10019. "dev-master": "1.1.x-dev"
  10020. }
  10021. },
  10022. "autoload": {
  10023. "psr-4": {
  10024. "Psr\\Log\\": "Psr/Log/"
  10025. }
  10026. },
  10027. "notification-url": "https://packagist.org/downloads/",
  10028. "license": [
  10029. "MIT"
  10030. ],
  10031. "authors": [
  10032. {
  10033. "name": "PHP-FIG",
  10034. "homepage": "http://www.php-fig.org/"
  10035. }
  10036. ],
  10037. "description": "Common interface for logging libraries",
  10038. "homepage": "https://github.com/php-fig/log",
  10039. "keywords": [
  10040. "log",
  10041. "psr",
  10042. "psr-3"
  10043. ],
  10044. "support": {
  10045. "source": "https://github.com/php-fig/log/tree/1.1.3"
  10046. },
  10047. "time": "2020-03-23T09:12:05+00:00"
  10048. },
  10049. {
  10050. "name": "psy/psysh",
  10051. "version": "v0.10.5",
  10052. "source": {
  10053. "type": "git",
  10054. "url": "https://github.com/bobthecow/psysh.git",
  10055. "reference": "7c710551d4a2653afa259c544508dc18a9098956"
  10056. },
  10057. "dist": {
  10058. "type": "zip",
  10059. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/7c710551d4a2653afa259c544508dc18a9098956",
  10060. "reference": "7c710551d4a2653afa259c544508dc18a9098956",
  10061. "shasum": ""
  10062. },
  10063. "require": {
  10064. "dnoegel/php-xdg-base-dir": "0.1.*",
  10065. "ext-json": "*",
  10066. "ext-tokenizer": "*",
  10067. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  10068. "php": "^8.0 || ^7.0 || ^5.5.9",
  10069. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  10070. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  10071. },
  10072. "require-dev": {
  10073. "bamarni/composer-bin-plugin": "^1.2",
  10074. "hoa/console": "3.17.*"
  10075. },
  10076. "suggest": {
  10077. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  10078. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  10079. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  10080. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  10081. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  10082. },
  10083. "bin": [
  10084. "bin/psysh"
  10085. ],
  10086. "type": "library",
  10087. "extra": {
  10088. "branch-alias": {
  10089. "dev-master": "0.10.x-dev"
  10090. }
  10091. },
  10092. "autoload": {
  10093. "files": [
  10094. "src/functions.php"
  10095. ],
  10096. "psr-4": {
  10097. "Psy\\": "src/"
  10098. }
  10099. },
  10100. "notification-url": "https://packagist.org/downloads/",
  10101. "license": [
  10102. "MIT"
  10103. ],
  10104. "authors": [
  10105. {
  10106. "name": "Justin Hileman",
  10107. "email": "justin@justinhileman.info",
  10108. "homepage": "http://justinhileman.com"
  10109. }
  10110. ],
  10111. "description": "An interactive shell for modern PHP.",
  10112. "homepage": "http://psysh.org",
  10113. "keywords": [
  10114. "REPL",
  10115. "console",
  10116. "interactive",
  10117. "shell"
  10118. ],
  10119. "time": "2020-12-04T02:51:30+00:00"
  10120. },
  10121. {
  10122. "name": "ralouphie/getallheaders",
  10123. "version": "3.0.3",
  10124. "source": {
  10125. "type": "git",
  10126. "url": "https://github.com/ralouphie/getallheaders.git",
  10127. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  10128. },
  10129. "dist": {
  10130. "type": "zip",
  10131. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  10132. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  10133. "shasum": ""
  10134. },
  10135. "require": {
  10136. "php": ">=5.6"
  10137. },
  10138. "require-dev": {
  10139. "php-coveralls/php-coveralls": "^2.1",
  10140. "phpunit/phpunit": "^5 || ^6.5"
  10141. },
  10142. "type": "library",
  10143. "autoload": {
  10144. "files": [
  10145. "src/getallheaders.php"
  10146. ]
  10147. },
  10148. "notification-url": "https://packagist.org/downloads/",
  10149. "license": [
  10150. "MIT"
  10151. ],
  10152. "authors": [
  10153. {
  10154. "name": "Ralph Khattar",
  10155. "email": "ralph.khattar@gmail.com"
  10156. }
  10157. ],
  10158. "description": "A polyfill for getallheaders.",
  10159. "support": {
  10160. "issues": "https://github.com/ralouphie/getallheaders/issues",
  10161. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  10162. },
  10163. "time": "2019-03-08T08:55:37+00:00"
  10164. },
  10165. {
  10166. "name": "stack/builder",
  10167. "version": "v1.0.6",
  10168. "source": {
  10169. "type": "git",
  10170. "url": "https://github.com/stackphp/builder.git",
  10171. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c"
  10172. },
  10173. "dist": {
  10174. "type": "zip",
  10175. "url": "https://api.github.com/repos/stackphp/builder/zipball/a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  10176. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  10177. "shasum": ""
  10178. },
  10179. "require": {
  10180. "php": ">=7.2.0",
  10181. "symfony/http-foundation": "~2.1|~3.0|~4.0|~5.0",
  10182. "symfony/http-kernel": "~2.1|~3.0|~4.0|~5.0"
  10183. },
  10184. "require-dev": {
  10185. "phpunit/phpunit": "~8.0",
  10186. "symfony/routing": "^5.0"
  10187. },
  10188. "type": "library",
  10189. "extra": {
  10190. "branch-alias": {
  10191. "dev-master": "1.0-dev"
  10192. }
  10193. },
  10194. "autoload": {
  10195. "psr-0": {
  10196. "Stack": "src"
  10197. }
  10198. },
  10199. "notification-url": "https://packagist.org/downloads/",
  10200. "license": [
  10201. "MIT"
  10202. ],
  10203. "authors": [
  10204. {
  10205. "name": "Igor Wiedler",
  10206. "email": "igor@wiedler.ch"
  10207. }
  10208. ],
  10209. "description": "Builder for stack middleware based on HttpKernelInterface.",
  10210. "keywords": [
  10211. "stack"
  10212. ],
  10213. "support": {
  10214. "issues": "https://github.com/stackphp/builder/issues",
  10215. "source": "https://github.com/stackphp/builder/tree/v1.0.6"
  10216. },
  10217. "time": "2020-01-30T12:17:27+00:00"
  10218. },
  10219. {
  10220. "name": "stecman/symfony-console-completion",
  10221. "version": "0.11.0",
  10222. "source": {
  10223. "type": "git",
  10224. "url": "https://github.com/stecman/symfony-console-completion.git",
  10225. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518"
  10226. },
  10227. "dist": {
  10228. "type": "zip",
  10229. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/a9502dab59405e275a9f264536c4e1cb61fc3518",
  10230. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518",
  10231. "shasum": ""
  10232. },
  10233. "require": {
  10234. "php": ">=5.3.2",
  10235. "symfony/console": "~2.3 || ~3.0 || ~4.0 || ~5.0"
  10236. },
  10237. "require-dev": {
  10238. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  10239. },
  10240. "type": "library",
  10241. "extra": {
  10242. "branch-alias": {
  10243. "dev-master": "0.10.x-dev"
  10244. }
  10245. },
  10246. "autoload": {
  10247. "psr-4": {
  10248. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  10249. }
  10250. },
  10251. "notification-url": "https://packagist.org/downloads/",
  10252. "license": [
  10253. "MIT"
  10254. ],
  10255. "authors": [
  10256. {
  10257. "name": "Stephen Holdaway",
  10258. "email": "stephen@stecman.co.nz"
  10259. }
  10260. ],
  10261. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  10262. "time": "2019-11-24T17:03:06+00:00"
  10263. },
  10264. {
  10265. "name": "symfony-cmf/routing",
  10266. "version": "2.3.3",
  10267. "source": {
  10268. "type": "git",
  10269. "url": "https://github.com/symfony-cmf/Routing.git",
  10270. "reference": "3c97e7b7709b313cecfb76d691ad4cc22acbf3f5"
  10271. },
  10272. "dist": {
  10273. "type": "zip",
  10274. "url": "https://api.github.com/repos/symfony-cmf/Routing/zipball/3c97e7b7709b313cecfb76d691ad4cc22acbf3f5",
  10275. "reference": "3c97e7b7709b313cecfb76d691ad4cc22acbf3f5",
  10276. "shasum": ""
  10277. },
  10278. "require": {
  10279. "php": "^7.2 || ^8.0",
  10280. "psr/log": "^1.0",
  10281. "symfony/http-kernel": "^4.4 || ^5.0",
  10282. "symfony/routing": "^4.4 || ^5.0"
  10283. },
  10284. "require-dev": {
  10285. "symfony-cmf/testing": "^3@dev",
  10286. "symfony/config": "^4.4 || ^5.0",
  10287. "symfony/dependency-injection": "^4.4 || ^5.0",
  10288. "symfony/event-dispatcher": "^4.4 || ^5.0",
  10289. "symfony/phpunit-bridge": "^5.0"
  10290. },
  10291. "suggest": {
  10292. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (^4.4 || ^5.0)"
  10293. },
  10294. "type": "library",
  10295. "extra": {
  10296. "branch-alias": {
  10297. "dev-master": "2.x-dev"
  10298. }
  10299. },
  10300. "autoload": {
  10301. "psr-4": {
  10302. "Symfony\\Cmf\\Component\\Routing\\": "src/"
  10303. }
  10304. },
  10305. "notification-url": "https://packagist.org/downloads/",
  10306. "license": [
  10307. "MIT"
  10308. ],
  10309. "authors": [
  10310. {
  10311. "name": "Symfony CMF Community",
  10312. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  10313. }
  10314. ],
  10315. "description": "Extends the Symfony routing component for dynamic routes and chaining several routers",
  10316. "homepage": "http://cmf.symfony.com",
  10317. "keywords": [
  10318. "database",
  10319. "routing"
  10320. ],
  10321. "support": {
  10322. "issues": "https://github.com/symfony-cmf/Routing/issues",
  10323. "source": "https://github.com/symfony-cmf/Routing/tree/2.3.3"
  10324. },
  10325. "time": "2020-10-06T10:15:37+00:00"
  10326. },
  10327. {
  10328. "name": "symfony/config",
  10329. "version": "v4.4.17",
  10330. "source": {
  10331. "type": "git",
  10332. "url": "https://github.com/symfony/config.git",
  10333. "reference": "4da4a6b07cc7d8d7d3e29842bc9c20401d555065"
  10334. },
  10335. "dist": {
  10336. "type": "zip",
  10337. "url": "https://api.github.com/repos/symfony/config/zipball/4da4a6b07cc7d8d7d3e29842bc9c20401d555065",
  10338. "reference": "4da4a6b07cc7d8d7d3e29842bc9c20401d555065",
  10339. "shasum": ""
  10340. },
  10341. "require": {
  10342. "php": ">=7.1.3",
  10343. "symfony/filesystem": "^3.4|^4.0|^5.0",
  10344. "symfony/polyfill-ctype": "~1.8"
  10345. },
  10346. "conflict": {
  10347. "symfony/finder": "<3.4"
  10348. },
  10349. "require-dev": {
  10350. "symfony/event-dispatcher": "^3.4|^4.0|^5.0",
  10351. "symfony/finder": "^3.4|^4.0|^5.0",
  10352. "symfony/messenger": "^4.1|^5.0",
  10353. "symfony/service-contracts": "^1.1|^2",
  10354. "symfony/yaml": "^3.4|^4.0|^5.0"
  10355. },
  10356. "suggest": {
  10357. "symfony/yaml": "To use the yaml reference dumper"
  10358. },
  10359. "type": "library",
  10360. "autoload": {
  10361. "psr-4": {
  10362. "Symfony\\Component\\Config\\": ""
  10363. },
  10364. "exclude-from-classmap": [
  10365. "/Tests/"
  10366. ]
  10367. },
  10368. "notification-url": "https://packagist.org/downloads/",
  10369. "license": [
  10370. "MIT"
  10371. ],
  10372. "authors": [
  10373. {
  10374. "name": "Fabien Potencier",
  10375. "email": "fabien@symfony.com"
  10376. },
  10377. {
  10378. "name": "Symfony Community",
  10379. "homepage": "https://symfony.com/contributors"
  10380. }
  10381. ],
  10382. "description": "Symfony Config Component",
  10383. "homepage": "https://symfony.com",
  10384. "funding": [
  10385. {
  10386. "url": "https://symfony.com/sponsor",
  10387. "type": "custom"
  10388. },
  10389. {
  10390. "url": "https://github.com/fabpot",
  10391. "type": "github"
  10392. },
  10393. {
  10394. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10395. "type": "tidelift"
  10396. }
  10397. ],
  10398. "time": "2020-11-16T11:15:53+00:00"
  10399. },
  10400. {
  10401. "name": "symfony/console",
  10402. "version": "v4.4.19",
  10403. "source": {
  10404. "type": "git",
  10405. "url": "https://github.com/symfony/console.git",
  10406. "reference": "24026c44fc37099fa145707fecd43672831b837a"
  10407. },
  10408. "dist": {
  10409. "type": "zip",
  10410. "url": "https://api.github.com/repos/symfony/console/zipball/24026c44fc37099fa145707fecd43672831b837a",
  10411. "reference": "24026c44fc37099fa145707fecd43672831b837a",
  10412. "shasum": ""
  10413. },
  10414. "require": {
  10415. "php": ">=7.1.3",
  10416. "symfony/polyfill-mbstring": "~1.0",
  10417. "symfony/polyfill-php73": "^1.8",
  10418. "symfony/polyfill-php80": "^1.15",
  10419. "symfony/service-contracts": "^1.1|^2"
  10420. },
  10421. "conflict": {
  10422. "symfony/dependency-injection": "<3.4",
  10423. "symfony/event-dispatcher": "<4.3|>=5",
  10424. "symfony/lock": "<4.4",
  10425. "symfony/process": "<3.3"
  10426. },
  10427. "provide": {
  10428. "psr/log-implementation": "1.0"
  10429. },
  10430. "require-dev": {
  10431. "psr/log": "~1.0",
  10432. "symfony/config": "^3.4|^4.0|^5.0",
  10433. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  10434. "symfony/event-dispatcher": "^4.3",
  10435. "symfony/lock": "^4.4|^5.0",
  10436. "symfony/process": "^3.4|^4.0|^5.0",
  10437. "symfony/var-dumper": "^4.3|^5.0"
  10438. },
  10439. "suggest": {
  10440. "psr/log": "For using the console logger",
  10441. "symfony/event-dispatcher": "",
  10442. "symfony/lock": "",
  10443. "symfony/process": ""
  10444. },
  10445. "type": "library",
  10446. "autoload": {
  10447. "psr-4": {
  10448. "Symfony\\Component\\Console\\": ""
  10449. },
  10450. "exclude-from-classmap": [
  10451. "/Tests/"
  10452. ]
  10453. },
  10454. "notification-url": "https://packagist.org/downloads/",
  10455. "license": [
  10456. "MIT"
  10457. ],
  10458. "authors": [
  10459. {
  10460. "name": "Fabien Potencier",
  10461. "email": "fabien@symfony.com"
  10462. },
  10463. {
  10464. "name": "Symfony Community",
  10465. "homepage": "https://symfony.com/contributors"
  10466. }
  10467. ],
  10468. "description": "Eases the creation of beautiful and testable command line interfaces",
  10469. "homepage": "https://symfony.com",
  10470. "support": {
  10471. "source": "https://github.com/symfony/console/tree/v4.4.19"
  10472. },
  10473. "funding": [
  10474. {
  10475. "url": "https://symfony.com/sponsor",
  10476. "type": "custom"
  10477. },
  10478. {
  10479. "url": "https://github.com/fabpot",
  10480. "type": "github"
  10481. },
  10482. {
  10483. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10484. "type": "tidelift"
  10485. }
  10486. ],
  10487. "time": "2021-01-27T09:09:26+00:00"
  10488. },
  10489. {
  10490. "name": "symfony/css-selector",
  10491. "version": "v4.4.17",
  10492. "source": {
  10493. "type": "git",
  10494. "url": "https://github.com/symfony/css-selector.git",
  10495. "reference": "5e6efcb6e5d120249da366417e2517c55b50c931"
  10496. },
  10497. "dist": {
  10498. "type": "zip",
  10499. "url": "https://api.github.com/repos/symfony/css-selector/zipball/5e6efcb6e5d120249da366417e2517c55b50c931",
  10500. "reference": "5e6efcb6e5d120249da366417e2517c55b50c931",
  10501. "shasum": ""
  10502. },
  10503. "require": {
  10504. "php": ">=7.1.3"
  10505. },
  10506. "type": "library",
  10507. "autoload": {
  10508. "psr-4": {
  10509. "Symfony\\Component\\CssSelector\\": ""
  10510. },
  10511. "exclude-from-classmap": [
  10512. "/Tests/"
  10513. ]
  10514. },
  10515. "notification-url": "https://packagist.org/downloads/",
  10516. "license": [
  10517. "MIT"
  10518. ],
  10519. "authors": [
  10520. {
  10521. "name": "Fabien Potencier",
  10522. "email": "fabien@symfony.com"
  10523. },
  10524. {
  10525. "name": "Jean-François Simon",
  10526. "email": "jeanfrancois.simon@sensiolabs.com"
  10527. },
  10528. {
  10529. "name": "Symfony Community",
  10530. "homepage": "https://symfony.com/contributors"
  10531. }
  10532. ],
  10533. "description": "Symfony CssSelector Component",
  10534. "homepage": "https://symfony.com",
  10535. "funding": [
  10536. {
  10537. "url": "https://symfony.com/sponsor",
  10538. "type": "custom"
  10539. },
  10540. {
  10541. "url": "https://github.com/fabpot",
  10542. "type": "github"
  10543. },
  10544. {
  10545. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10546. "type": "tidelift"
  10547. }
  10548. ],
  10549. "time": "2020-10-28T20:42:29+00:00"
  10550. },
  10551. {
  10552. "name": "symfony/debug",
  10553. "version": "v4.4.19",
  10554. "source": {
  10555. "type": "git",
  10556. "url": "https://github.com/symfony/debug.git",
  10557. "reference": "af4987aa4a5630e9615be9d9c3ed1b0f24ca449c"
  10558. },
  10559. "dist": {
  10560. "type": "zip",
  10561. "url": "https://api.github.com/repos/symfony/debug/zipball/af4987aa4a5630e9615be9d9c3ed1b0f24ca449c",
  10562. "reference": "af4987aa4a5630e9615be9d9c3ed1b0f24ca449c",
  10563. "shasum": ""
  10564. },
  10565. "require": {
  10566. "php": ">=7.1.3",
  10567. "psr/log": "~1.0",
  10568. "symfony/polyfill-php80": "^1.15"
  10569. },
  10570. "conflict": {
  10571. "symfony/http-kernel": "<3.4"
  10572. },
  10573. "require-dev": {
  10574. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  10575. },
  10576. "type": "library",
  10577. "autoload": {
  10578. "psr-4": {
  10579. "Symfony\\Component\\Debug\\": ""
  10580. },
  10581. "exclude-from-classmap": [
  10582. "/Tests/"
  10583. ]
  10584. },
  10585. "notification-url": "https://packagist.org/downloads/",
  10586. "license": [
  10587. "MIT"
  10588. ],
  10589. "authors": [
  10590. {
  10591. "name": "Fabien Potencier",
  10592. "email": "fabien@symfony.com"
  10593. },
  10594. {
  10595. "name": "Symfony Community",
  10596. "homepage": "https://symfony.com/contributors"
  10597. }
  10598. ],
  10599. "description": "Provides tools to ease debugging PHP code",
  10600. "homepage": "https://symfony.com",
  10601. "support": {
  10602. "source": "https://github.com/symfony/debug/tree/v4.4.19"
  10603. },
  10604. "funding": [
  10605. {
  10606. "url": "https://symfony.com/sponsor",
  10607. "type": "custom"
  10608. },
  10609. {
  10610. "url": "https://github.com/fabpot",
  10611. "type": "github"
  10612. },
  10613. {
  10614. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10615. "type": "tidelift"
  10616. }
  10617. ],
  10618. "time": "2021-01-27T09:09:26+00:00"
  10619. },
  10620. {
  10621. "name": "symfony/dependency-injection",
  10622. "version": "v4.4.19",
  10623. "source": {
  10624. "type": "git",
  10625. "url": "https://github.com/symfony/dependency-injection.git",
  10626. "reference": "2468b95d869c872c6fb1b93b395a7fcd5331f2b9"
  10627. },
  10628. "dist": {
  10629. "type": "zip",
  10630. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/2468b95d869c872c6fb1b93b395a7fcd5331f2b9",
  10631. "reference": "2468b95d869c872c6fb1b93b395a7fcd5331f2b9",
  10632. "shasum": ""
  10633. },
  10634. "require": {
  10635. "php": ">=7.1.3",
  10636. "psr/container": "^1.0",
  10637. "symfony/service-contracts": "^1.1.6|^2"
  10638. },
  10639. "conflict": {
  10640. "symfony/config": "<4.3|>=5.0",
  10641. "symfony/finder": "<3.4",
  10642. "symfony/proxy-manager-bridge": "<3.4",
  10643. "symfony/yaml": "<3.4"
  10644. },
  10645. "provide": {
  10646. "psr/container-implementation": "1.0",
  10647. "symfony/service-implementation": "1.0"
  10648. },
  10649. "require-dev": {
  10650. "symfony/config": "^4.3",
  10651. "symfony/expression-language": "^3.4|^4.0|^5.0",
  10652. "symfony/yaml": "^3.4|^4.0|^5.0"
  10653. },
  10654. "suggest": {
  10655. "symfony/config": "",
  10656. "symfony/expression-language": "For using expressions in service container configuration",
  10657. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  10658. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  10659. "symfony/yaml": ""
  10660. },
  10661. "type": "library",
  10662. "autoload": {
  10663. "psr-4": {
  10664. "Symfony\\Component\\DependencyInjection\\": ""
  10665. },
  10666. "exclude-from-classmap": [
  10667. "/Tests/"
  10668. ]
  10669. },
  10670. "notification-url": "https://packagist.org/downloads/",
  10671. "license": [
  10672. "MIT"
  10673. ],
  10674. "authors": [
  10675. {
  10676. "name": "Fabien Potencier",
  10677. "email": "fabien@symfony.com"
  10678. },
  10679. {
  10680. "name": "Symfony Community",
  10681. "homepage": "https://symfony.com/contributors"
  10682. }
  10683. ],
  10684. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  10685. "homepage": "https://symfony.com",
  10686. "support": {
  10687. "source": "https://github.com/symfony/dependency-injection/tree/v4.4.19"
  10688. },
  10689. "funding": [
  10690. {
  10691. "url": "https://symfony.com/sponsor",
  10692. "type": "custom"
  10693. },
  10694. {
  10695. "url": "https://github.com/fabpot",
  10696. "type": "github"
  10697. },
  10698. {
  10699. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10700. "type": "tidelift"
  10701. }
  10702. ],
  10703. "time": "2021-01-27T09:09:26+00:00"
  10704. },
  10705. {
  10706. "name": "symfony/dom-crawler",
  10707. "version": "v4.4.17",
  10708. "source": {
  10709. "type": "git",
  10710. "url": "https://github.com/symfony/dom-crawler.git",
  10711. "reference": "30ad9ac96a01913195bf0328d48e29d54fa53e6e"
  10712. },
  10713. "dist": {
  10714. "type": "zip",
  10715. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/30ad9ac96a01913195bf0328d48e29d54fa53e6e",
  10716. "reference": "30ad9ac96a01913195bf0328d48e29d54fa53e6e",
  10717. "shasum": ""
  10718. },
  10719. "require": {
  10720. "php": ">=7.1.3",
  10721. "symfony/polyfill-ctype": "~1.8",
  10722. "symfony/polyfill-mbstring": "~1.0"
  10723. },
  10724. "conflict": {
  10725. "masterminds/html5": "<2.6"
  10726. },
  10727. "require-dev": {
  10728. "masterminds/html5": "^2.6",
  10729. "symfony/css-selector": "^3.4|^4.0|^5.0"
  10730. },
  10731. "suggest": {
  10732. "symfony/css-selector": ""
  10733. },
  10734. "type": "library",
  10735. "autoload": {
  10736. "psr-4": {
  10737. "Symfony\\Component\\DomCrawler\\": ""
  10738. },
  10739. "exclude-from-classmap": [
  10740. "/Tests/"
  10741. ]
  10742. },
  10743. "notification-url": "https://packagist.org/downloads/",
  10744. "license": [
  10745. "MIT"
  10746. ],
  10747. "authors": [
  10748. {
  10749. "name": "Fabien Potencier",
  10750. "email": "fabien@symfony.com"
  10751. },
  10752. {
  10753. "name": "Symfony Community",
  10754. "homepage": "https://symfony.com/contributors"
  10755. }
  10756. ],
  10757. "description": "Symfony DomCrawler Component",
  10758. "homepage": "https://symfony.com",
  10759. "funding": [
  10760. {
  10761. "url": "https://symfony.com/sponsor",
  10762. "type": "custom"
  10763. },
  10764. {
  10765. "url": "https://github.com/fabpot",
  10766. "type": "github"
  10767. },
  10768. {
  10769. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10770. "type": "tidelift"
  10771. }
  10772. ],
  10773. "time": "2020-10-24T11:50:19+00:00"
  10774. },
  10775. {
  10776. "name": "symfony/error-handler",
  10777. "version": "v4.4.19",
  10778. "source": {
  10779. "type": "git",
  10780. "url": "https://github.com/symfony/error-handler.git",
  10781. "reference": "d603654eaeb713503bba3e308b9e748e5a6d3f2e"
  10782. },
  10783. "dist": {
  10784. "type": "zip",
  10785. "url": "https://api.github.com/repos/symfony/error-handler/zipball/d603654eaeb713503bba3e308b9e748e5a6d3f2e",
  10786. "reference": "d603654eaeb713503bba3e308b9e748e5a6d3f2e",
  10787. "shasum": ""
  10788. },
  10789. "require": {
  10790. "php": ">=7.1.3",
  10791. "psr/log": "~1.0",
  10792. "symfony/debug": "^4.4.5",
  10793. "symfony/polyfill-php80": "^1.15",
  10794. "symfony/var-dumper": "^4.4|^5.0"
  10795. },
  10796. "require-dev": {
  10797. "symfony/http-kernel": "^4.4|^5.0",
  10798. "symfony/serializer": "^4.4|^5.0"
  10799. },
  10800. "type": "library",
  10801. "autoload": {
  10802. "psr-4": {
  10803. "Symfony\\Component\\ErrorHandler\\": ""
  10804. },
  10805. "exclude-from-classmap": [
  10806. "/Tests/"
  10807. ]
  10808. },
  10809. "notification-url": "https://packagist.org/downloads/",
  10810. "license": [
  10811. "MIT"
  10812. ],
  10813. "authors": [
  10814. {
  10815. "name": "Fabien Potencier",
  10816. "email": "fabien@symfony.com"
  10817. },
  10818. {
  10819. "name": "Symfony Community",
  10820. "homepage": "https://symfony.com/contributors"
  10821. }
  10822. ],
  10823. "description": "Provides tools to manage errors and ease debugging PHP code",
  10824. "homepage": "https://symfony.com",
  10825. "support": {
  10826. "source": "https://github.com/symfony/error-handler/tree/v4.4.19"
  10827. },
  10828. "funding": [
  10829. {
  10830. "url": "https://symfony.com/sponsor",
  10831. "type": "custom"
  10832. },
  10833. {
  10834. "url": "https://github.com/fabpot",
  10835. "type": "github"
  10836. },
  10837. {
  10838. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10839. "type": "tidelift"
  10840. }
  10841. ],
  10842. "time": "2021-01-27T09:09:26+00:00"
  10843. },
  10844. {
  10845. "name": "symfony/event-dispatcher",
  10846. "version": "v4.4.19",
  10847. "source": {
  10848. "type": "git",
  10849. "url": "https://github.com/symfony/event-dispatcher.git",
  10850. "reference": "c352647244bd376bf7d31efbd5401f13f50dad0c"
  10851. },
  10852. "dist": {
  10853. "type": "zip",
  10854. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/c352647244bd376bf7d31efbd5401f13f50dad0c",
  10855. "reference": "c352647244bd376bf7d31efbd5401f13f50dad0c",
  10856. "shasum": ""
  10857. },
  10858. "require": {
  10859. "php": ">=7.1.3",
  10860. "symfony/event-dispatcher-contracts": "^1.1"
  10861. },
  10862. "conflict": {
  10863. "symfony/dependency-injection": "<3.4"
  10864. },
  10865. "provide": {
  10866. "psr/event-dispatcher-implementation": "1.0",
  10867. "symfony/event-dispatcher-implementation": "1.1"
  10868. },
  10869. "require-dev": {
  10870. "psr/log": "~1.0",
  10871. "symfony/config": "^3.4|^4.0|^5.0",
  10872. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  10873. "symfony/error-handler": "~3.4|~4.4",
  10874. "symfony/expression-language": "^3.4|^4.0|^5.0",
  10875. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  10876. "symfony/service-contracts": "^1.1|^2",
  10877. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  10878. },
  10879. "suggest": {
  10880. "symfony/dependency-injection": "",
  10881. "symfony/http-kernel": ""
  10882. },
  10883. "type": "library",
  10884. "autoload": {
  10885. "psr-4": {
  10886. "Symfony\\Component\\EventDispatcher\\": ""
  10887. },
  10888. "exclude-from-classmap": [
  10889. "/Tests/"
  10890. ]
  10891. },
  10892. "notification-url": "https://packagist.org/downloads/",
  10893. "license": [
  10894. "MIT"
  10895. ],
  10896. "authors": [
  10897. {
  10898. "name": "Fabien Potencier",
  10899. "email": "fabien@symfony.com"
  10900. },
  10901. {
  10902. "name": "Symfony Community",
  10903. "homepage": "https://symfony.com/contributors"
  10904. }
  10905. ],
  10906. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  10907. "homepage": "https://symfony.com",
  10908. "support": {
  10909. "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.19"
  10910. },
  10911. "funding": [
  10912. {
  10913. "url": "https://symfony.com/sponsor",
  10914. "type": "custom"
  10915. },
  10916. {
  10917. "url": "https://github.com/fabpot",
  10918. "type": "github"
  10919. },
  10920. {
  10921. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10922. "type": "tidelift"
  10923. }
  10924. ],
  10925. "time": "2021-01-27T09:09:26+00:00"
  10926. },
  10927. {
  10928. "name": "symfony/event-dispatcher-contracts",
  10929. "version": "v1.1.9",
  10930. "source": {
  10931. "type": "git",
  10932. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10933. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7"
  10934. },
  10935. "dist": {
  10936. "type": "zip",
  10937. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  10938. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  10939. "shasum": ""
  10940. },
  10941. "require": {
  10942. "php": ">=7.1.3"
  10943. },
  10944. "suggest": {
  10945. "psr/event-dispatcher": "",
  10946. "symfony/event-dispatcher-implementation": ""
  10947. },
  10948. "type": "library",
  10949. "extra": {
  10950. "branch-alias": {
  10951. "dev-master": "1.1-dev"
  10952. },
  10953. "thanks": {
  10954. "name": "symfony/contracts",
  10955. "url": "https://github.com/symfony/contracts"
  10956. }
  10957. },
  10958. "autoload": {
  10959. "psr-4": {
  10960. "Symfony\\Contracts\\EventDispatcher\\": ""
  10961. }
  10962. },
  10963. "notification-url": "https://packagist.org/downloads/",
  10964. "license": [
  10965. "MIT"
  10966. ],
  10967. "authors": [
  10968. {
  10969. "name": "Nicolas Grekas",
  10970. "email": "p@tchwork.com"
  10971. },
  10972. {
  10973. "name": "Symfony Community",
  10974. "homepage": "https://symfony.com/contributors"
  10975. }
  10976. ],
  10977. "description": "Generic abstractions related to dispatching event",
  10978. "homepage": "https://symfony.com",
  10979. "keywords": [
  10980. "abstractions",
  10981. "contracts",
  10982. "decoupling",
  10983. "interfaces",
  10984. "interoperability",
  10985. "standards"
  10986. ],
  10987. "support": {
  10988. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.9"
  10989. },
  10990. "funding": [
  10991. {
  10992. "url": "https://symfony.com/sponsor",
  10993. "type": "custom"
  10994. },
  10995. {
  10996. "url": "https://github.com/fabpot",
  10997. "type": "github"
  10998. },
  10999. {
  11000. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11001. "type": "tidelift"
  11002. }
  11003. ],
  11004. "time": "2020-07-06T13:19:58+00:00"
  11005. },
  11006. {
  11007. "name": "symfony/filesystem",
  11008. "version": "v4.4.17",
  11009. "source": {
  11010. "type": "git",
  11011. "url": "https://github.com/symfony/filesystem.git",
  11012. "reference": "17b83e36a911aefa2cfe04bbf6328ec4c040c1b2"
  11013. },
  11014. "dist": {
  11015. "type": "zip",
  11016. "url": "https://api.github.com/repos/symfony/filesystem/zipball/17b83e36a911aefa2cfe04bbf6328ec4c040c1b2",
  11017. "reference": "17b83e36a911aefa2cfe04bbf6328ec4c040c1b2",
  11018. "shasum": ""
  11019. },
  11020. "require": {
  11021. "php": ">=7.1.3",
  11022. "symfony/polyfill-ctype": "~1.8"
  11023. },
  11024. "type": "library",
  11025. "autoload": {
  11026. "psr-4": {
  11027. "Symfony\\Component\\Filesystem\\": ""
  11028. },
  11029. "exclude-from-classmap": [
  11030. "/Tests/"
  11031. ]
  11032. },
  11033. "notification-url": "https://packagist.org/downloads/",
  11034. "license": [
  11035. "MIT"
  11036. ],
  11037. "authors": [
  11038. {
  11039. "name": "Fabien Potencier",
  11040. "email": "fabien@symfony.com"
  11041. },
  11042. {
  11043. "name": "Symfony Community",
  11044. "homepage": "https://symfony.com/contributors"
  11045. }
  11046. ],
  11047. "description": "Symfony Filesystem Component",
  11048. "homepage": "https://symfony.com",
  11049. "funding": [
  11050. {
  11051. "url": "https://symfony.com/sponsor",
  11052. "type": "custom"
  11053. },
  11054. {
  11055. "url": "https://github.com/fabpot",
  11056. "type": "github"
  11057. },
  11058. {
  11059. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11060. "type": "tidelift"
  11061. }
  11062. ],
  11063. "time": "2020-11-11T22:20:15+00:00"
  11064. },
  11065. {
  11066. "name": "symfony/finder",
  11067. "version": "v4.4.17",
  11068. "source": {
  11069. "type": "git",
  11070. "url": "https://github.com/symfony/finder.git",
  11071. "reference": "9f1d1d883b79a91ef320c0c6e803494e042ef36e"
  11072. },
  11073. "dist": {
  11074. "type": "zip",
  11075. "url": "https://api.github.com/repos/symfony/finder/zipball/9f1d1d883b79a91ef320c0c6e803494e042ef36e",
  11076. "reference": "9f1d1d883b79a91ef320c0c6e803494e042ef36e",
  11077. "shasum": ""
  11078. },
  11079. "require": {
  11080. "php": ">=7.1.3"
  11081. },
  11082. "type": "library",
  11083. "autoload": {
  11084. "psr-4": {
  11085. "Symfony\\Component\\Finder\\": ""
  11086. },
  11087. "exclude-from-classmap": [
  11088. "/Tests/"
  11089. ]
  11090. },
  11091. "notification-url": "https://packagist.org/downloads/",
  11092. "license": [
  11093. "MIT"
  11094. ],
  11095. "authors": [
  11096. {
  11097. "name": "Fabien Potencier",
  11098. "email": "fabien@symfony.com"
  11099. },
  11100. {
  11101. "name": "Symfony Community",
  11102. "homepage": "https://symfony.com/contributors"
  11103. }
  11104. ],
  11105. "description": "Symfony Finder Component",
  11106. "homepage": "https://symfony.com",
  11107. "funding": [
  11108. {
  11109. "url": "https://symfony.com/sponsor",
  11110. "type": "custom"
  11111. },
  11112. {
  11113. "url": "https://github.com/fabpot",
  11114. "type": "github"
  11115. },
  11116. {
  11117. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11118. "type": "tidelift"
  11119. }
  11120. ],
  11121. "time": "2020-11-17T19:45:34+00:00"
  11122. },
  11123. {
  11124. "name": "symfony/http-client-contracts",
  11125. "version": "v2.3.1",
  11126. "source": {
  11127. "type": "git",
  11128. "url": "https://github.com/symfony/http-client-contracts.git",
  11129. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  11130. },
  11131. "dist": {
  11132. "type": "zip",
  11133. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  11134. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  11135. "shasum": ""
  11136. },
  11137. "require": {
  11138. "php": ">=7.2.5"
  11139. },
  11140. "suggest": {
  11141. "symfony/http-client-implementation": ""
  11142. },
  11143. "type": "library",
  11144. "extra": {
  11145. "branch-version": "2.3",
  11146. "branch-alias": {
  11147. "dev-main": "2.3-dev"
  11148. },
  11149. "thanks": {
  11150. "name": "symfony/contracts",
  11151. "url": "https://github.com/symfony/contracts"
  11152. }
  11153. },
  11154. "autoload": {
  11155. "psr-4": {
  11156. "Symfony\\Contracts\\HttpClient\\": ""
  11157. }
  11158. },
  11159. "notification-url": "https://packagist.org/downloads/",
  11160. "license": [
  11161. "MIT"
  11162. ],
  11163. "authors": [
  11164. {
  11165. "name": "Nicolas Grekas",
  11166. "email": "p@tchwork.com"
  11167. },
  11168. {
  11169. "name": "Symfony Community",
  11170. "homepage": "https://symfony.com/contributors"
  11171. }
  11172. ],
  11173. "description": "Generic abstractions related to HTTP clients",
  11174. "homepage": "https://symfony.com",
  11175. "keywords": [
  11176. "abstractions",
  11177. "contracts",
  11178. "decoupling",
  11179. "interfaces",
  11180. "interoperability",
  11181. "standards"
  11182. ],
  11183. "support": {
  11184. "source": "https://github.com/symfony/http-client-contracts/tree/v2.3.1"
  11185. },
  11186. "funding": [
  11187. {
  11188. "url": "https://symfony.com/sponsor",
  11189. "type": "custom"
  11190. },
  11191. {
  11192. "url": "https://github.com/fabpot",
  11193. "type": "github"
  11194. },
  11195. {
  11196. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11197. "type": "tidelift"
  11198. }
  11199. ],
  11200. "time": "2020-10-14T17:08:19+00:00"
  11201. },
  11202. {
  11203. "name": "symfony/http-foundation",
  11204. "version": "v4.4.19",
  11205. "source": {
  11206. "type": "git",
  11207. "url": "https://github.com/symfony/http-foundation.git",
  11208. "reference": "8888741b633f6c3d1e572b7735ad2cae3e03f9c5"
  11209. },
  11210. "dist": {
  11211. "type": "zip",
  11212. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/8888741b633f6c3d1e572b7735ad2cae3e03f9c5",
  11213. "reference": "8888741b633f6c3d1e572b7735ad2cae3e03f9c5",
  11214. "shasum": ""
  11215. },
  11216. "require": {
  11217. "php": ">=7.1.3",
  11218. "symfony/mime": "^4.3|^5.0",
  11219. "symfony/polyfill-mbstring": "~1.1",
  11220. "symfony/polyfill-php80": "^1.15"
  11221. },
  11222. "require-dev": {
  11223. "predis/predis": "~1.0",
  11224. "symfony/expression-language": "^3.4|^4.0|^5.0"
  11225. },
  11226. "type": "library",
  11227. "autoload": {
  11228. "psr-4": {
  11229. "Symfony\\Component\\HttpFoundation\\": ""
  11230. },
  11231. "exclude-from-classmap": [
  11232. "/Tests/"
  11233. ]
  11234. },
  11235. "notification-url": "https://packagist.org/downloads/",
  11236. "license": [
  11237. "MIT"
  11238. ],
  11239. "authors": [
  11240. {
  11241. "name": "Fabien Potencier",
  11242. "email": "fabien@symfony.com"
  11243. },
  11244. {
  11245. "name": "Symfony Community",
  11246. "homepage": "https://symfony.com/contributors"
  11247. }
  11248. ],
  11249. "description": "Defines an object-oriented layer for the HTTP specification",
  11250. "homepage": "https://symfony.com",
  11251. "support": {
  11252. "source": "https://github.com/symfony/http-foundation/tree/v4.4.19"
  11253. },
  11254. "funding": [
  11255. {
  11256. "url": "https://symfony.com/sponsor",
  11257. "type": "custom"
  11258. },
  11259. {
  11260. "url": "https://github.com/fabpot",
  11261. "type": "github"
  11262. },
  11263. {
  11264. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11265. "type": "tidelift"
  11266. }
  11267. ],
  11268. "time": "2021-01-27T09:09:26+00:00"
  11269. },
  11270. {
  11271. "name": "symfony/http-kernel",
  11272. "version": "v4.4.19",
  11273. "source": {
  11274. "type": "git",
  11275. "url": "https://github.com/symfony/http-kernel.git",
  11276. "reference": "07ea794a327d7c8c5d76e3058fde9fec6a711cb4"
  11277. },
  11278. "dist": {
  11279. "type": "zip",
  11280. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/07ea794a327d7c8c5d76e3058fde9fec6a711cb4",
  11281. "reference": "07ea794a327d7c8c5d76e3058fde9fec6a711cb4",
  11282. "shasum": ""
  11283. },
  11284. "require": {
  11285. "php": ">=7.1.3",
  11286. "psr/log": "~1.0",
  11287. "symfony/error-handler": "^4.4",
  11288. "symfony/event-dispatcher": "^4.4",
  11289. "symfony/http-client-contracts": "^1.1|^2",
  11290. "symfony/http-foundation": "^4.4|^5.0",
  11291. "symfony/polyfill-ctype": "^1.8",
  11292. "symfony/polyfill-php73": "^1.9",
  11293. "symfony/polyfill-php80": "^1.15"
  11294. },
  11295. "conflict": {
  11296. "symfony/browser-kit": "<4.3",
  11297. "symfony/config": "<3.4",
  11298. "symfony/console": ">=5",
  11299. "symfony/dependency-injection": "<4.3",
  11300. "symfony/translation": "<4.2",
  11301. "twig/twig": "<1.43|<2.13,>=2"
  11302. },
  11303. "provide": {
  11304. "psr/log-implementation": "1.0"
  11305. },
  11306. "require-dev": {
  11307. "psr/cache": "~1.0",
  11308. "symfony/browser-kit": "^4.3|^5.0",
  11309. "symfony/config": "^3.4|^4.0|^5.0",
  11310. "symfony/console": "^3.4|^4.0",
  11311. "symfony/css-selector": "^3.4|^4.0|^5.0",
  11312. "symfony/dependency-injection": "^4.3|^5.0",
  11313. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  11314. "symfony/expression-language": "^3.4|^4.0|^5.0",
  11315. "symfony/finder": "^3.4|^4.0|^5.0",
  11316. "symfony/process": "^3.4|^4.0|^5.0",
  11317. "symfony/routing": "^3.4|^4.0|^5.0",
  11318. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  11319. "symfony/templating": "^3.4|^4.0|^5.0",
  11320. "symfony/translation": "^4.2|^5.0",
  11321. "symfony/translation-contracts": "^1.1|^2",
  11322. "twig/twig": "^1.43|^2.13|^3.0.4"
  11323. },
  11324. "suggest": {
  11325. "symfony/browser-kit": "",
  11326. "symfony/config": "",
  11327. "symfony/console": "",
  11328. "symfony/dependency-injection": ""
  11329. },
  11330. "type": "library",
  11331. "autoload": {
  11332. "psr-4": {
  11333. "Symfony\\Component\\HttpKernel\\": ""
  11334. },
  11335. "exclude-from-classmap": [
  11336. "/Tests/"
  11337. ]
  11338. },
  11339. "notification-url": "https://packagist.org/downloads/",
  11340. "license": [
  11341. "MIT"
  11342. ],
  11343. "authors": [
  11344. {
  11345. "name": "Fabien Potencier",
  11346. "email": "fabien@symfony.com"
  11347. },
  11348. {
  11349. "name": "Symfony Community",
  11350. "homepage": "https://symfony.com/contributors"
  11351. }
  11352. ],
  11353. "description": "Provides a structured process for converting a Request into a Response",
  11354. "homepage": "https://symfony.com",
  11355. "support": {
  11356. "source": "https://github.com/symfony/http-kernel/tree/v4.4.19"
  11357. },
  11358. "funding": [
  11359. {
  11360. "url": "https://symfony.com/sponsor",
  11361. "type": "custom"
  11362. },
  11363. {
  11364. "url": "https://github.com/fabpot",
  11365. "type": "github"
  11366. },
  11367. {
  11368. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11369. "type": "tidelift"
  11370. }
  11371. ],
  11372. "time": "2021-01-27T13:50:53+00:00"
  11373. },
  11374. {
  11375. "name": "symfony/mime",
  11376. "version": "v5.1.11",
  11377. "source": {
  11378. "type": "git",
  11379. "url": "https://github.com/symfony/mime.git",
  11380. "reference": "d7d899822da1fa89bcf658e8e8d836f5578e6f7a"
  11381. },
  11382. "dist": {
  11383. "type": "zip",
  11384. "url": "https://api.github.com/repos/symfony/mime/zipball/d7d899822da1fa89bcf658e8e8d836f5578e6f7a",
  11385. "reference": "d7d899822da1fa89bcf658e8e8d836f5578e6f7a",
  11386. "shasum": ""
  11387. },
  11388. "require": {
  11389. "php": ">=7.2.5",
  11390. "symfony/polyfill-intl-idn": "^1.10",
  11391. "symfony/polyfill-mbstring": "^1.0",
  11392. "symfony/polyfill-php80": "^1.15"
  11393. },
  11394. "conflict": {
  11395. "symfony/mailer": "<4.4"
  11396. },
  11397. "require-dev": {
  11398. "egulias/email-validator": "^2.1.10",
  11399. "symfony/dependency-injection": "^4.4|^5.0"
  11400. },
  11401. "type": "library",
  11402. "autoload": {
  11403. "psr-4": {
  11404. "Symfony\\Component\\Mime\\": ""
  11405. },
  11406. "exclude-from-classmap": [
  11407. "/Tests/"
  11408. ]
  11409. },
  11410. "notification-url": "https://packagist.org/downloads/",
  11411. "license": [
  11412. "MIT"
  11413. ],
  11414. "authors": [
  11415. {
  11416. "name": "Fabien Potencier",
  11417. "email": "fabien@symfony.com"
  11418. },
  11419. {
  11420. "name": "Symfony Community",
  11421. "homepage": "https://symfony.com/contributors"
  11422. }
  11423. ],
  11424. "description": "Allows manipulating MIME messages",
  11425. "homepage": "https://symfony.com",
  11426. "keywords": [
  11427. "mime",
  11428. "mime-type"
  11429. ],
  11430. "support": {
  11431. "source": "https://github.com/symfony/mime/tree/v5.1.11"
  11432. },
  11433. "funding": [
  11434. {
  11435. "url": "https://symfony.com/sponsor",
  11436. "type": "custom"
  11437. },
  11438. {
  11439. "url": "https://github.com/fabpot",
  11440. "type": "github"
  11441. },
  11442. {
  11443. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11444. "type": "tidelift"
  11445. }
  11446. ],
  11447. "time": "2021-01-27T10:01:46+00:00"
  11448. },
  11449. {
  11450. "name": "symfony/polyfill-ctype",
  11451. "version": "v1.20.0",
  11452. "source": {
  11453. "type": "git",
  11454. "url": "https://github.com/symfony/polyfill-ctype.git",
  11455. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
  11456. },
  11457. "dist": {
  11458. "type": "zip",
  11459. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  11460. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  11461. "shasum": ""
  11462. },
  11463. "require": {
  11464. "php": ">=7.1"
  11465. },
  11466. "suggest": {
  11467. "ext-ctype": "For best performance"
  11468. },
  11469. "type": "library",
  11470. "extra": {
  11471. "branch-alias": {
  11472. "dev-main": "1.20-dev"
  11473. },
  11474. "thanks": {
  11475. "name": "symfony/polyfill",
  11476. "url": "https://github.com/symfony/polyfill"
  11477. }
  11478. },
  11479. "autoload": {
  11480. "psr-4": {
  11481. "Symfony\\Polyfill\\Ctype\\": ""
  11482. },
  11483. "files": [
  11484. "bootstrap.php"
  11485. ]
  11486. },
  11487. "notification-url": "https://packagist.org/downloads/",
  11488. "license": [
  11489. "MIT"
  11490. ],
  11491. "authors": [
  11492. {
  11493. "name": "Gert de Pagter",
  11494. "email": "BackEndTea@gmail.com"
  11495. },
  11496. {
  11497. "name": "Symfony Community",
  11498. "homepage": "https://symfony.com/contributors"
  11499. }
  11500. ],
  11501. "description": "Symfony polyfill for ctype functions",
  11502. "homepage": "https://symfony.com",
  11503. "keywords": [
  11504. "compatibility",
  11505. "ctype",
  11506. "polyfill",
  11507. "portable"
  11508. ],
  11509. "support": {
  11510. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.20.0"
  11511. },
  11512. "funding": [
  11513. {
  11514. "url": "https://symfony.com/sponsor",
  11515. "type": "custom"
  11516. },
  11517. {
  11518. "url": "https://github.com/fabpot",
  11519. "type": "github"
  11520. },
  11521. {
  11522. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11523. "type": "tidelift"
  11524. }
  11525. ],
  11526. "time": "2020-10-23T14:02:19+00:00"
  11527. },
  11528. {
  11529. "name": "symfony/polyfill-iconv",
  11530. "version": "v1.20.0",
  11531. "source": {
  11532. "type": "git",
  11533. "url": "https://github.com/symfony/polyfill-iconv.git",
  11534. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024"
  11535. },
  11536. "dist": {
  11537. "type": "zip",
  11538. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c536646fdb4f29104dd26effc2fdcb9a5b085024",
  11539. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024",
  11540. "shasum": ""
  11541. },
  11542. "require": {
  11543. "php": ">=7.1"
  11544. },
  11545. "suggest": {
  11546. "ext-iconv": "For best performance"
  11547. },
  11548. "type": "library",
  11549. "extra": {
  11550. "branch-alias": {
  11551. "dev-main": "1.20-dev"
  11552. },
  11553. "thanks": {
  11554. "name": "symfony/polyfill",
  11555. "url": "https://github.com/symfony/polyfill"
  11556. }
  11557. },
  11558. "autoload": {
  11559. "psr-4": {
  11560. "Symfony\\Polyfill\\Iconv\\": ""
  11561. },
  11562. "files": [
  11563. "bootstrap.php"
  11564. ]
  11565. },
  11566. "notification-url": "https://packagist.org/downloads/",
  11567. "license": [
  11568. "MIT"
  11569. ],
  11570. "authors": [
  11571. {
  11572. "name": "Nicolas Grekas",
  11573. "email": "p@tchwork.com"
  11574. },
  11575. {
  11576. "name": "Symfony Community",
  11577. "homepage": "https://symfony.com/contributors"
  11578. }
  11579. ],
  11580. "description": "Symfony polyfill for the Iconv extension",
  11581. "homepage": "https://symfony.com",
  11582. "keywords": [
  11583. "compatibility",
  11584. "iconv",
  11585. "polyfill",
  11586. "portable",
  11587. "shim"
  11588. ],
  11589. "support": {
  11590. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.20.0"
  11591. },
  11592. "funding": [
  11593. {
  11594. "url": "https://symfony.com/sponsor",
  11595. "type": "custom"
  11596. },
  11597. {
  11598. "url": "https://github.com/fabpot",
  11599. "type": "github"
  11600. },
  11601. {
  11602. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11603. "type": "tidelift"
  11604. }
  11605. ],
  11606. "time": "2020-10-23T14:02:19+00:00"
  11607. },
  11608. {
  11609. "name": "symfony/polyfill-intl-idn",
  11610. "version": "v1.20.0",
  11611. "source": {
  11612. "type": "git",
  11613. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  11614. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117"
  11615. },
  11616. "dist": {
  11617. "type": "zip",
  11618. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117",
  11619. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117",
  11620. "shasum": ""
  11621. },
  11622. "require": {
  11623. "php": ">=7.1",
  11624. "symfony/polyfill-intl-normalizer": "^1.10",
  11625. "symfony/polyfill-php72": "^1.10"
  11626. },
  11627. "suggest": {
  11628. "ext-intl": "For best performance"
  11629. },
  11630. "type": "library",
  11631. "extra": {
  11632. "branch-alias": {
  11633. "dev-main": "1.20-dev"
  11634. },
  11635. "thanks": {
  11636. "name": "symfony/polyfill",
  11637. "url": "https://github.com/symfony/polyfill"
  11638. }
  11639. },
  11640. "autoload": {
  11641. "psr-4": {
  11642. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  11643. },
  11644. "files": [
  11645. "bootstrap.php"
  11646. ]
  11647. },
  11648. "notification-url": "https://packagist.org/downloads/",
  11649. "license": [
  11650. "MIT"
  11651. ],
  11652. "authors": [
  11653. {
  11654. "name": "Laurent Bassin",
  11655. "email": "laurent@bassin.info"
  11656. },
  11657. {
  11658. "name": "Trevor Rowbotham",
  11659. "email": "trevor.rowbotham@pm.me"
  11660. },
  11661. {
  11662. "name": "Symfony Community",
  11663. "homepage": "https://symfony.com/contributors"
  11664. }
  11665. ],
  11666. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  11667. "homepage": "https://symfony.com",
  11668. "keywords": [
  11669. "compatibility",
  11670. "idn",
  11671. "intl",
  11672. "polyfill",
  11673. "portable",
  11674. "shim"
  11675. ],
  11676. "support": {
  11677. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.20.0"
  11678. },
  11679. "funding": [
  11680. {
  11681. "url": "https://symfony.com/sponsor",
  11682. "type": "custom"
  11683. },
  11684. {
  11685. "url": "https://github.com/fabpot",
  11686. "type": "github"
  11687. },
  11688. {
  11689. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11690. "type": "tidelift"
  11691. }
  11692. ],
  11693. "time": "2020-10-23T14:02:19+00:00"
  11694. },
  11695. {
  11696. "name": "symfony/polyfill-intl-normalizer",
  11697. "version": "v1.20.0",
  11698. "source": {
  11699. "type": "git",
  11700. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  11701. "reference": "727d1096295d807c309fb01a851577302394c897"
  11702. },
  11703. "dist": {
  11704. "type": "zip",
  11705. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897",
  11706. "reference": "727d1096295d807c309fb01a851577302394c897",
  11707. "shasum": ""
  11708. },
  11709. "require": {
  11710. "php": ">=7.1"
  11711. },
  11712. "suggest": {
  11713. "ext-intl": "For best performance"
  11714. },
  11715. "type": "library",
  11716. "extra": {
  11717. "branch-alias": {
  11718. "dev-main": "1.20-dev"
  11719. },
  11720. "thanks": {
  11721. "name": "symfony/polyfill",
  11722. "url": "https://github.com/symfony/polyfill"
  11723. }
  11724. },
  11725. "autoload": {
  11726. "psr-4": {
  11727. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  11728. },
  11729. "files": [
  11730. "bootstrap.php"
  11731. ],
  11732. "classmap": [
  11733. "Resources/stubs"
  11734. ]
  11735. },
  11736. "notification-url": "https://packagist.org/downloads/",
  11737. "license": [
  11738. "MIT"
  11739. ],
  11740. "authors": [
  11741. {
  11742. "name": "Nicolas Grekas",
  11743. "email": "p@tchwork.com"
  11744. },
  11745. {
  11746. "name": "Symfony Community",
  11747. "homepage": "https://symfony.com/contributors"
  11748. }
  11749. ],
  11750. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  11751. "homepage": "https://symfony.com",
  11752. "keywords": [
  11753. "compatibility",
  11754. "intl",
  11755. "normalizer",
  11756. "polyfill",
  11757. "portable",
  11758. "shim"
  11759. ],
  11760. "support": {
  11761. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.20.0"
  11762. },
  11763. "funding": [
  11764. {
  11765. "url": "https://symfony.com/sponsor",
  11766. "type": "custom"
  11767. },
  11768. {
  11769. "url": "https://github.com/fabpot",
  11770. "type": "github"
  11771. },
  11772. {
  11773. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11774. "type": "tidelift"
  11775. }
  11776. ],
  11777. "time": "2020-10-23T14:02:19+00:00"
  11778. },
  11779. {
  11780. "name": "symfony/polyfill-mbstring",
  11781. "version": "v1.20.0",
  11782. "source": {
  11783. "type": "git",
  11784. "url": "https://github.com/symfony/polyfill-mbstring.git",
  11785. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
  11786. },
  11787. "dist": {
  11788. "type": "zip",
  11789. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
  11790. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
  11791. "shasum": ""
  11792. },
  11793. "require": {
  11794. "php": ">=7.1"
  11795. },
  11796. "suggest": {
  11797. "ext-mbstring": "For best performance"
  11798. },
  11799. "type": "library",
  11800. "extra": {
  11801. "branch-alias": {
  11802. "dev-main": "1.20-dev"
  11803. },
  11804. "thanks": {
  11805. "name": "symfony/polyfill",
  11806. "url": "https://github.com/symfony/polyfill"
  11807. }
  11808. },
  11809. "autoload": {
  11810. "psr-4": {
  11811. "Symfony\\Polyfill\\Mbstring\\": ""
  11812. },
  11813. "files": [
  11814. "bootstrap.php"
  11815. ]
  11816. },
  11817. "notification-url": "https://packagist.org/downloads/",
  11818. "license": [
  11819. "MIT"
  11820. ],
  11821. "authors": [
  11822. {
  11823. "name": "Nicolas Grekas",
  11824. "email": "p@tchwork.com"
  11825. },
  11826. {
  11827. "name": "Symfony Community",
  11828. "homepage": "https://symfony.com/contributors"
  11829. }
  11830. ],
  11831. "description": "Symfony polyfill for the Mbstring extension",
  11832. "homepage": "https://symfony.com",
  11833. "keywords": [
  11834. "compatibility",
  11835. "mbstring",
  11836. "polyfill",
  11837. "portable",
  11838. "shim"
  11839. ],
  11840. "support": {
  11841. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.20.0"
  11842. },
  11843. "funding": [
  11844. {
  11845. "url": "https://symfony.com/sponsor",
  11846. "type": "custom"
  11847. },
  11848. {
  11849. "url": "https://github.com/fabpot",
  11850. "type": "github"
  11851. },
  11852. {
  11853. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11854. "type": "tidelift"
  11855. }
  11856. ],
  11857. "time": "2020-10-23T14:02:19+00:00"
  11858. },
  11859. {
  11860. "name": "symfony/polyfill-php72",
  11861. "version": "v1.23.0",
  11862. "source": {
  11863. "type": "git",
  11864. "url": "https://github.com/symfony/polyfill-php72.git",
  11865. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  11866. },
  11867. "dist": {
  11868. "type": "zip",
  11869. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  11870. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  11871. "shasum": ""
  11872. },
  11873. "require": {
  11874. "php": ">=7.1"
  11875. },
  11876. "type": "library",
  11877. "extra": {
  11878. "branch-alias": {
  11879. "dev-main": "1.23-dev"
  11880. },
  11881. "thanks": {
  11882. "name": "symfony/polyfill",
  11883. "url": "https://github.com/symfony/polyfill"
  11884. }
  11885. },
  11886. "autoload": {
  11887. "psr-4": {
  11888. "Symfony\\Polyfill\\Php72\\": ""
  11889. },
  11890. "files": [
  11891. "bootstrap.php"
  11892. ]
  11893. },
  11894. "notification-url": "https://packagist.org/downloads/",
  11895. "license": [
  11896. "MIT"
  11897. ],
  11898. "authors": [
  11899. {
  11900. "name": "Nicolas Grekas",
  11901. "email": "p@tchwork.com"
  11902. },
  11903. {
  11904. "name": "Symfony Community",
  11905. "homepage": "https://symfony.com/contributors"
  11906. }
  11907. ],
  11908. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  11909. "homepage": "https://symfony.com",
  11910. "keywords": [
  11911. "compatibility",
  11912. "polyfill",
  11913. "portable",
  11914. "shim"
  11915. ],
  11916. "support": {
  11917. "source": "https://github.com/symfony/polyfill-php72/tree/v1.23.0"
  11918. },
  11919. "funding": [
  11920. {
  11921. "url": "https://symfony.com/sponsor",
  11922. "type": "custom"
  11923. },
  11924. {
  11925. "url": "https://github.com/fabpot",
  11926. "type": "github"
  11927. },
  11928. {
  11929. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11930. "type": "tidelift"
  11931. }
  11932. ],
  11933. "time": "2021-05-27T09:17:38+00:00"
  11934. },
  11935. {
  11936. "name": "symfony/polyfill-php73",
  11937. "version": "v1.23.0",
  11938. "source": {
  11939. "type": "git",
  11940. "url": "https://github.com/symfony/polyfill-php73.git",
  11941. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010"
  11942. },
  11943. "dist": {
  11944. "type": "zip",
  11945. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010",
  11946. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010",
  11947. "shasum": ""
  11948. },
  11949. "require": {
  11950. "php": ">=7.1"
  11951. },
  11952. "type": "library",
  11953. "extra": {
  11954. "branch-alias": {
  11955. "dev-main": "1.23-dev"
  11956. },
  11957. "thanks": {
  11958. "name": "symfony/polyfill",
  11959. "url": "https://github.com/symfony/polyfill"
  11960. }
  11961. },
  11962. "autoload": {
  11963. "psr-4": {
  11964. "Symfony\\Polyfill\\Php73\\": ""
  11965. },
  11966. "files": [
  11967. "bootstrap.php"
  11968. ],
  11969. "classmap": [
  11970. "Resources/stubs"
  11971. ]
  11972. },
  11973. "notification-url": "https://packagist.org/downloads/",
  11974. "license": [
  11975. "MIT"
  11976. ],
  11977. "authors": [
  11978. {
  11979. "name": "Nicolas Grekas",
  11980. "email": "p@tchwork.com"
  11981. },
  11982. {
  11983. "name": "Symfony Community",
  11984. "homepage": "https://symfony.com/contributors"
  11985. }
  11986. ],
  11987. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  11988. "homepage": "https://symfony.com",
  11989. "keywords": [
  11990. "compatibility",
  11991. "polyfill",
  11992. "portable",
  11993. "shim"
  11994. ],
  11995. "support": {
  11996. "source": "https://github.com/symfony/polyfill-php73/tree/v1.23.0"
  11997. },
  11998. "funding": [
  11999. {
  12000. "url": "https://symfony.com/sponsor",
  12001. "type": "custom"
  12002. },
  12003. {
  12004. "url": "https://github.com/fabpot",
  12005. "type": "github"
  12006. },
  12007. {
  12008. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12009. "type": "tidelift"
  12010. }
  12011. ],
  12012. "time": "2021-02-19T12:13:01+00:00"
  12013. },
  12014. {
  12015. "name": "symfony/polyfill-php80",
  12016. "version": "v1.20.0",
  12017. "source": {
  12018. "type": "git",
  12019. "url": "https://github.com/symfony/polyfill-php80.git",
  12020. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de"
  12021. },
  12022. "dist": {
  12023. "type": "zip",
  12024. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  12025. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  12026. "shasum": ""
  12027. },
  12028. "require": {
  12029. "php": ">=7.1"
  12030. },
  12031. "type": "library",
  12032. "extra": {
  12033. "branch-alias": {
  12034. "dev-main": "1.20-dev"
  12035. },
  12036. "thanks": {
  12037. "name": "symfony/polyfill",
  12038. "url": "https://github.com/symfony/polyfill"
  12039. }
  12040. },
  12041. "autoload": {
  12042. "psr-4": {
  12043. "Symfony\\Polyfill\\Php80\\": ""
  12044. },
  12045. "files": [
  12046. "bootstrap.php"
  12047. ],
  12048. "classmap": [
  12049. "Resources/stubs"
  12050. ]
  12051. },
  12052. "notification-url": "https://packagist.org/downloads/",
  12053. "license": [
  12054. "MIT"
  12055. ],
  12056. "authors": [
  12057. {
  12058. "name": "Ion Bazan",
  12059. "email": "ion.bazan@gmail.com"
  12060. },
  12061. {
  12062. "name": "Nicolas Grekas",
  12063. "email": "p@tchwork.com"
  12064. },
  12065. {
  12066. "name": "Symfony Community",
  12067. "homepage": "https://symfony.com/contributors"
  12068. }
  12069. ],
  12070. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  12071. "homepage": "https://symfony.com",
  12072. "keywords": [
  12073. "compatibility",
  12074. "polyfill",
  12075. "portable",
  12076. "shim"
  12077. ],
  12078. "support": {
  12079. "source": "https://github.com/symfony/polyfill-php80/tree/v1.20.0"
  12080. },
  12081. "funding": [
  12082. {
  12083. "url": "https://symfony.com/sponsor",
  12084. "type": "custom"
  12085. },
  12086. {
  12087. "url": "https://github.com/fabpot",
  12088. "type": "github"
  12089. },
  12090. {
  12091. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12092. "type": "tidelift"
  12093. }
  12094. ],
  12095. "time": "2020-10-23T14:02:19+00:00"
  12096. },
  12097. {
  12098. "name": "symfony/process",
  12099. "version": "v4.4.19",
  12100. "source": {
  12101. "type": "git",
  12102. "url": "https://github.com/symfony/process.git",
  12103. "reference": "7e950b6366d4da90292c2e7fa820b3c1842b965a"
  12104. },
  12105. "dist": {
  12106. "type": "zip",
  12107. "url": "https://api.github.com/repos/symfony/process/zipball/7e950b6366d4da90292c2e7fa820b3c1842b965a",
  12108. "reference": "7e950b6366d4da90292c2e7fa820b3c1842b965a",
  12109. "shasum": ""
  12110. },
  12111. "require": {
  12112. "php": ">=7.1.3"
  12113. },
  12114. "type": "library",
  12115. "autoload": {
  12116. "psr-4": {
  12117. "Symfony\\Component\\Process\\": ""
  12118. },
  12119. "exclude-from-classmap": [
  12120. "/Tests/"
  12121. ]
  12122. },
  12123. "notification-url": "https://packagist.org/downloads/",
  12124. "license": [
  12125. "MIT"
  12126. ],
  12127. "authors": [
  12128. {
  12129. "name": "Fabien Potencier",
  12130. "email": "fabien@symfony.com"
  12131. },
  12132. {
  12133. "name": "Symfony Community",
  12134. "homepage": "https://symfony.com/contributors"
  12135. }
  12136. ],
  12137. "description": "Executes commands in sub-processes",
  12138. "homepage": "https://symfony.com",
  12139. "support": {
  12140. "source": "https://github.com/symfony/process/tree/v4.4.19"
  12141. },
  12142. "funding": [
  12143. {
  12144. "url": "https://symfony.com/sponsor",
  12145. "type": "custom"
  12146. },
  12147. {
  12148. "url": "https://github.com/fabpot",
  12149. "type": "github"
  12150. },
  12151. {
  12152. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12153. "type": "tidelift"
  12154. }
  12155. ],
  12156. "time": "2021-01-27T09:09:26+00:00"
  12157. },
  12158. {
  12159. "name": "symfony/psr-http-message-bridge",
  12160. "version": "v2.0.2",
  12161. "source": {
  12162. "type": "git",
  12163. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  12164. "reference": "51a21cb3ba3927d4b4bf8f25cc55763351af5f2e"
  12165. },
  12166. "dist": {
  12167. "type": "zip",
  12168. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/51a21cb3ba3927d4b4bf8f25cc55763351af5f2e",
  12169. "reference": "51a21cb3ba3927d4b4bf8f25cc55763351af5f2e",
  12170. "shasum": ""
  12171. },
  12172. "require": {
  12173. "php": ">=7.1",
  12174. "psr/http-message": "^1.0",
  12175. "symfony/http-foundation": "^4.4 || ^5.0"
  12176. },
  12177. "require-dev": {
  12178. "nyholm/psr7": "^1.1",
  12179. "symfony/phpunit-bridge": "^4.4 || ^5.0"
  12180. },
  12181. "suggest": {
  12182. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  12183. },
  12184. "type": "symfony-bridge",
  12185. "extra": {
  12186. "branch-alias": {
  12187. "dev-master": "2.0-dev"
  12188. }
  12189. },
  12190. "autoload": {
  12191. "psr-4": {
  12192. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  12193. },
  12194. "exclude-from-classmap": [
  12195. "/Tests/"
  12196. ]
  12197. },
  12198. "notification-url": "https://packagist.org/downloads/",
  12199. "license": [
  12200. "MIT"
  12201. ],
  12202. "authors": [
  12203. {
  12204. "name": "Fabien Potencier",
  12205. "email": "fabien@symfony.com"
  12206. },
  12207. {
  12208. "name": "Symfony Community",
  12209. "homepage": "http://symfony.com/contributors"
  12210. }
  12211. ],
  12212. "description": "PSR HTTP message bridge",
  12213. "homepage": "http://symfony.com",
  12214. "keywords": [
  12215. "http",
  12216. "http-message",
  12217. "psr-17",
  12218. "psr-7"
  12219. ],
  12220. "support": {
  12221. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  12222. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.0.2"
  12223. },
  12224. "funding": [
  12225. {
  12226. "url": "https://symfony.com/sponsor",
  12227. "type": "custom"
  12228. },
  12229. {
  12230. "url": "https://github.com/fabpot",
  12231. "type": "github"
  12232. },
  12233. {
  12234. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12235. "type": "tidelift"
  12236. }
  12237. ],
  12238. "time": "2020-09-29T08:17:46+00:00"
  12239. },
  12240. {
  12241. "name": "symfony/routing",
  12242. "version": "v4.4.19",
  12243. "source": {
  12244. "type": "git",
  12245. "url": "https://github.com/symfony/routing.git",
  12246. "reference": "87529f6e305c7acb162840d1ea57922038072425"
  12247. },
  12248. "dist": {
  12249. "type": "zip",
  12250. "url": "https://api.github.com/repos/symfony/routing/zipball/87529f6e305c7acb162840d1ea57922038072425",
  12251. "reference": "87529f6e305c7acb162840d1ea57922038072425",
  12252. "shasum": ""
  12253. },
  12254. "require": {
  12255. "php": ">=7.1.3"
  12256. },
  12257. "conflict": {
  12258. "symfony/config": "<4.2",
  12259. "symfony/dependency-injection": "<3.4",
  12260. "symfony/yaml": "<3.4"
  12261. },
  12262. "require-dev": {
  12263. "doctrine/annotations": "^1.10.4",
  12264. "psr/log": "~1.0",
  12265. "symfony/config": "^4.2|^5.0",
  12266. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  12267. "symfony/expression-language": "^3.4|^4.0|^5.0",
  12268. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  12269. "symfony/yaml": "^3.4|^4.0|^5.0"
  12270. },
  12271. "suggest": {
  12272. "doctrine/annotations": "For using the annotation loader",
  12273. "symfony/config": "For using the all-in-one router or any loader",
  12274. "symfony/expression-language": "For using expression matching",
  12275. "symfony/http-foundation": "For using a Symfony Request object",
  12276. "symfony/yaml": "For using the YAML loader"
  12277. },
  12278. "type": "library",
  12279. "autoload": {
  12280. "psr-4": {
  12281. "Symfony\\Component\\Routing\\": ""
  12282. },
  12283. "exclude-from-classmap": [
  12284. "/Tests/"
  12285. ]
  12286. },
  12287. "notification-url": "https://packagist.org/downloads/",
  12288. "license": [
  12289. "MIT"
  12290. ],
  12291. "authors": [
  12292. {
  12293. "name": "Fabien Potencier",
  12294. "email": "fabien@symfony.com"
  12295. },
  12296. {
  12297. "name": "Symfony Community",
  12298. "homepage": "https://symfony.com/contributors"
  12299. }
  12300. ],
  12301. "description": "Maps an HTTP request to a set of configuration variables",
  12302. "homepage": "https://symfony.com",
  12303. "keywords": [
  12304. "router",
  12305. "routing",
  12306. "uri",
  12307. "url"
  12308. ],
  12309. "support": {
  12310. "source": "https://github.com/symfony/routing/tree/v4.4.19"
  12311. },
  12312. "funding": [
  12313. {
  12314. "url": "https://symfony.com/sponsor",
  12315. "type": "custom"
  12316. },
  12317. {
  12318. "url": "https://github.com/fabpot",
  12319. "type": "github"
  12320. },
  12321. {
  12322. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12323. "type": "tidelift"
  12324. }
  12325. ],
  12326. "time": "2021-01-27T09:09:26+00:00"
  12327. },
  12328. {
  12329. "name": "symfony/serializer",
  12330. "version": "v4.4.19",
  12331. "source": {
  12332. "type": "git",
  12333. "url": "https://github.com/symfony/serializer.git",
  12334. "reference": "6b383bc45777d14857b634e9f8fa2b8a2e69b66d"
  12335. },
  12336. "dist": {
  12337. "type": "zip",
  12338. "url": "https://api.github.com/repos/symfony/serializer/zipball/6b383bc45777d14857b634e9f8fa2b8a2e69b66d",
  12339. "reference": "6b383bc45777d14857b634e9f8fa2b8a2e69b66d",
  12340. "shasum": ""
  12341. },
  12342. "require": {
  12343. "php": ">=7.1.3",
  12344. "symfony/polyfill-ctype": "~1.8"
  12345. },
  12346. "conflict": {
  12347. "phpdocumentor/reflection-docblock": "<3.0|>=3.2.0,<3.2.2",
  12348. "phpdocumentor/type-resolver": "<0.3.0|1.3.*",
  12349. "symfony/dependency-injection": "<3.4",
  12350. "symfony/property-access": "<3.4",
  12351. "symfony/property-info": "<3.4",
  12352. "symfony/yaml": "<3.4"
  12353. },
  12354. "require-dev": {
  12355. "doctrine/annotations": "^1.10.4",
  12356. "doctrine/cache": "~1.0",
  12357. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  12358. "symfony/cache": "^3.4|^4.0|^5.0",
  12359. "symfony/config": "^3.4|^4.0|^5.0",
  12360. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  12361. "symfony/error-handler": "^4.4|^5.0",
  12362. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  12363. "symfony/mime": "^4.4|^5.0",
  12364. "symfony/property-access": "^3.4.41|^4.4.9|^5.0.9",
  12365. "symfony/property-info": "^3.4.13|~4.0|^5.0",
  12366. "symfony/validator": "^3.4|^4.0|^5.0",
  12367. "symfony/yaml": "^3.4|^4.0|^5.0"
  12368. },
  12369. "suggest": {
  12370. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  12371. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  12372. "psr/cache-implementation": "For using the metadata cache.",
  12373. "symfony/config": "For using the XML mapping loader.",
  12374. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  12375. "symfony/property-access": "For using the ObjectNormalizer.",
  12376. "symfony/property-info": "To deserialize relations.",
  12377. "symfony/yaml": "For using the default YAML mapping loader."
  12378. },
  12379. "type": "library",
  12380. "autoload": {
  12381. "psr-4": {
  12382. "Symfony\\Component\\Serializer\\": ""
  12383. },
  12384. "exclude-from-classmap": [
  12385. "/Tests/"
  12386. ]
  12387. },
  12388. "notification-url": "https://packagist.org/downloads/",
  12389. "license": [
  12390. "MIT"
  12391. ],
  12392. "authors": [
  12393. {
  12394. "name": "Fabien Potencier",
  12395. "email": "fabien@symfony.com"
  12396. },
  12397. {
  12398. "name": "Symfony Community",
  12399. "homepage": "https://symfony.com/contributors"
  12400. }
  12401. ],
  12402. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  12403. "homepage": "https://symfony.com",
  12404. "support": {
  12405. "source": "https://github.com/symfony/serializer/tree/v4.4.19"
  12406. },
  12407. "funding": [
  12408. {
  12409. "url": "https://symfony.com/sponsor",
  12410. "type": "custom"
  12411. },
  12412. {
  12413. "url": "https://github.com/fabpot",
  12414. "type": "github"
  12415. },
  12416. {
  12417. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12418. "type": "tidelift"
  12419. }
  12420. ],
  12421. "time": "2021-01-27T09:09:26+00:00"
  12422. },
  12423. {
  12424. "name": "symfony/service-contracts",
  12425. "version": "v2.2.0",
  12426. "source": {
  12427. "type": "git",
  12428. "url": "https://github.com/symfony/service-contracts.git",
  12429. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  12430. },
  12431. "dist": {
  12432. "type": "zip",
  12433. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  12434. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  12435. "shasum": ""
  12436. },
  12437. "require": {
  12438. "php": ">=7.2.5",
  12439. "psr/container": "^1.0"
  12440. },
  12441. "suggest": {
  12442. "symfony/service-implementation": ""
  12443. },
  12444. "type": "library",
  12445. "extra": {
  12446. "branch-alias": {
  12447. "dev-master": "2.2-dev"
  12448. },
  12449. "thanks": {
  12450. "name": "symfony/contracts",
  12451. "url": "https://github.com/symfony/contracts"
  12452. }
  12453. },
  12454. "autoload": {
  12455. "psr-4": {
  12456. "Symfony\\Contracts\\Service\\": ""
  12457. }
  12458. },
  12459. "notification-url": "https://packagist.org/downloads/",
  12460. "license": [
  12461. "MIT"
  12462. ],
  12463. "authors": [
  12464. {
  12465. "name": "Nicolas Grekas",
  12466. "email": "p@tchwork.com"
  12467. },
  12468. {
  12469. "name": "Symfony Community",
  12470. "homepage": "https://symfony.com/contributors"
  12471. }
  12472. ],
  12473. "description": "Generic abstractions related to writing services",
  12474. "homepage": "https://symfony.com",
  12475. "keywords": [
  12476. "abstractions",
  12477. "contracts",
  12478. "decoupling",
  12479. "interfaces",
  12480. "interoperability",
  12481. "standards"
  12482. ],
  12483. "support": {
  12484. "source": "https://github.com/symfony/service-contracts/tree/master"
  12485. },
  12486. "funding": [
  12487. {
  12488. "url": "https://symfony.com/sponsor",
  12489. "type": "custom"
  12490. },
  12491. {
  12492. "url": "https://github.com/fabpot",
  12493. "type": "github"
  12494. },
  12495. {
  12496. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12497. "type": "tidelift"
  12498. }
  12499. ],
  12500. "time": "2020-09-07T11:33:47+00:00"
  12501. },
  12502. {
  12503. "name": "symfony/translation",
  12504. "version": "v4.4.19",
  12505. "source": {
  12506. "type": "git",
  12507. "url": "https://github.com/symfony/translation.git",
  12508. "reference": "e1d0c67167a553556d9f974b5fa79c2448df317a"
  12509. },
  12510. "dist": {
  12511. "type": "zip",
  12512. "url": "https://api.github.com/repos/symfony/translation/zipball/e1d0c67167a553556d9f974b5fa79c2448df317a",
  12513. "reference": "e1d0c67167a553556d9f974b5fa79c2448df317a",
  12514. "shasum": ""
  12515. },
  12516. "require": {
  12517. "php": ">=7.1.3",
  12518. "symfony/polyfill-mbstring": "~1.0",
  12519. "symfony/translation-contracts": "^1.1.6|^2"
  12520. },
  12521. "conflict": {
  12522. "symfony/config": "<3.4",
  12523. "symfony/dependency-injection": "<3.4",
  12524. "symfony/http-kernel": "<4.4",
  12525. "symfony/yaml": "<3.4"
  12526. },
  12527. "provide": {
  12528. "symfony/translation-implementation": "1.0"
  12529. },
  12530. "require-dev": {
  12531. "psr/log": "~1.0",
  12532. "symfony/config": "^3.4|^4.0|^5.0",
  12533. "symfony/console": "^3.4|^4.0|^5.0",
  12534. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  12535. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  12536. "symfony/http-kernel": "^4.4",
  12537. "symfony/intl": "^3.4|^4.0|^5.0",
  12538. "symfony/service-contracts": "^1.1.2|^2",
  12539. "symfony/yaml": "^3.4|^4.0|^5.0"
  12540. },
  12541. "suggest": {
  12542. "psr/log-implementation": "To use logging capability in translator",
  12543. "symfony/config": "",
  12544. "symfony/yaml": ""
  12545. },
  12546. "type": "library",
  12547. "autoload": {
  12548. "psr-4": {
  12549. "Symfony\\Component\\Translation\\": ""
  12550. },
  12551. "exclude-from-classmap": [
  12552. "/Tests/"
  12553. ]
  12554. },
  12555. "notification-url": "https://packagist.org/downloads/",
  12556. "license": [
  12557. "MIT"
  12558. ],
  12559. "authors": [
  12560. {
  12561. "name": "Fabien Potencier",
  12562. "email": "fabien@symfony.com"
  12563. },
  12564. {
  12565. "name": "Symfony Community",
  12566. "homepage": "https://symfony.com/contributors"
  12567. }
  12568. ],
  12569. "description": "Provides tools to internationalize your application",
  12570. "homepage": "https://symfony.com",
  12571. "support": {
  12572. "source": "https://github.com/symfony/translation/tree/v4.4.19"
  12573. },
  12574. "funding": [
  12575. {
  12576. "url": "https://symfony.com/sponsor",
  12577. "type": "custom"
  12578. },
  12579. {
  12580. "url": "https://github.com/fabpot",
  12581. "type": "github"
  12582. },
  12583. {
  12584. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12585. "type": "tidelift"
  12586. }
  12587. ],
  12588. "time": "2021-01-27T09:09:26+00:00"
  12589. },
  12590. {
  12591. "name": "symfony/translation-contracts",
  12592. "version": "v2.3.0",
  12593. "source": {
  12594. "type": "git",
  12595. "url": "https://github.com/symfony/translation-contracts.git",
  12596. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  12597. },
  12598. "dist": {
  12599. "type": "zip",
  12600. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  12601. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  12602. "shasum": ""
  12603. },
  12604. "require": {
  12605. "php": ">=7.2.5"
  12606. },
  12607. "suggest": {
  12608. "symfony/translation-implementation": ""
  12609. },
  12610. "type": "library",
  12611. "extra": {
  12612. "branch-alias": {
  12613. "dev-master": "2.3-dev"
  12614. },
  12615. "thanks": {
  12616. "name": "symfony/contracts",
  12617. "url": "https://github.com/symfony/contracts"
  12618. }
  12619. },
  12620. "autoload": {
  12621. "psr-4": {
  12622. "Symfony\\Contracts\\Translation\\": ""
  12623. }
  12624. },
  12625. "notification-url": "https://packagist.org/downloads/",
  12626. "license": [
  12627. "MIT"
  12628. ],
  12629. "authors": [
  12630. {
  12631. "name": "Nicolas Grekas",
  12632. "email": "p@tchwork.com"
  12633. },
  12634. {
  12635. "name": "Symfony Community",
  12636. "homepage": "https://symfony.com/contributors"
  12637. }
  12638. ],
  12639. "description": "Generic abstractions related to translation",
  12640. "homepage": "https://symfony.com",
  12641. "keywords": [
  12642. "abstractions",
  12643. "contracts",
  12644. "decoupling",
  12645. "interfaces",
  12646. "interoperability",
  12647. "standards"
  12648. ],
  12649. "support": {
  12650. "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0"
  12651. },
  12652. "funding": [
  12653. {
  12654. "url": "https://symfony.com/sponsor",
  12655. "type": "custom"
  12656. },
  12657. {
  12658. "url": "https://github.com/fabpot",
  12659. "type": "github"
  12660. },
  12661. {
  12662. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12663. "type": "tidelift"
  12664. }
  12665. ],
  12666. "time": "2020-09-28T13:05:58+00:00"
  12667. },
  12668. {
  12669. "name": "symfony/validator",
  12670. "version": "v4.4.19",
  12671. "source": {
  12672. "type": "git",
  12673. "url": "https://github.com/symfony/validator.git",
  12674. "reference": "039479123c8d824f23efba9bb413b85dc3f42e43"
  12675. },
  12676. "dist": {
  12677. "type": "zip",
  12678. "url": "https://api.github.com/repos/symfony/validator/zipball/039479123c8d824f23efba9bb413b85dc3f42e43",
  12679. "reference": "039479123c8d824f23efba9bb413b85dc3f42e43",
  12680. "shasum": ""
  12681. },
  12682. "require": {
  12683. "php": ">=7.1.3",
  12684. "symfony/polyfill-ctype": "~1.8",
  12685. "symfony/polyfill-mbstring": "~1.0",
  12686. "symfony/translation-contracts": "^1.1|^2"
  12687. },
  12688. "conflict": {
  12689. "doctrine/lexer": "<1.0.2",
  12690. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  12691. "symfony/dependency-injection": "<3.4",
  12692. "symfony/http-kernel": "<4.4",
  12693. "symfony/intl": "<4.3",
  12694. "symfony/translation": ">=5.0",
  12695. "symfony/yaml": "<3.4"
  12696. },
  12697. "require-dev": {
  12698. "doctrine/annotations": "^1.10.4",
  12699. "doctrine/cache": "~1.0",
  12700. "egulias/email-validator": "^2.1.10",
  12701. "symfony/cache": "^3.4|^4.0|^5.0",
  12702. "symfony/config": "^3.4|^4.0|^5.0",
  12703. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  12704. "symfony/expression-language": "^3.4|^4.0|^5.0",
  12705. "symfony/http-client": "^4.3|^5.0",
  12706. "symfony/http-foundation": "^4.1|^5.0",
  12707. "symfony/http-kernel": "^4.4",
  12708. "symfony/intl": "^4.3|^5.0",
  12709. "symfony/mime": "^4.4|^5.0",
  12710. "symfony/property-access": "^3.4|^4.0|^5.0",
  12711. "symfony/property-info": "^3.4|^4.0|^5.0",
  12712. "symfony/translation": "^4.2",
  12713. "symfony/yaml": "^3.4|^4.0|^5.0"
  12714. },
  12715. "suggest": {
  12716. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  12717. "doctrine/cache": "For using the default cached annotation reader.",
  12718. "egulias/email-validator": "Strict (RFC compliant) email validation",
  12719. "psr/cache-implementation": "For using the mapping cache.",
  12720. "symfony/config": "",
  12721. "symfony/expression-language": "For using the Expression validator",
  12722. "symfony/http-foundation": "",
  12723. "symfony/intl": "",
  12724. "symfony/property-access": "For accessing properties within comparison constraints",
  12725. "symfony/property-info": "To automatically add NotNull and Type constraints",
  12726. "symfony/translation": "For translating validation errors.",
  12727. "symfony/yaml": ""
  12728. },
  12729. "type": "library",
  12730. "autoload": {
  12731. "psr-4": {
  12732. "Symfony\\Component\\Validator\\": ""
  12733. },
  12734. "exclude-from-classmap": [
  12735. "/Tests/"
  12736. ]
  12737. },
  12738. "notification-url": "https://packagist.org/downloads/",
  12739. "license": [
  12740. "MIT"
  12741. ],
  12742. "authors": [
  12743. {
  12744. "name": "Fabien Potencier",
  12745. "email": "fabien@symfony.com"
  12746. },
  12747. {
  12748. "name": "Symfony Community",
  12749. "homepage": "https://symfony.com/contributors"
  12750. }
  12751. ],
  12752. "description": "Provides tools to validate values",
  12753. "homepage": "https://symfony.com",
  12754. "support": {
  12755. "source": "https://github.com/symfony/validator/tree/v4.4.19"
  12756. },
  12757. "funding": [
  12758. {
  12759. "url": "https://symfony.com/sponsor",
  12760. "type": "custom"
  12761. },
  12762. {
  12763. "url": "https://github.com/fabpot",
  12764. "type": "github"
  12765. },
  12766. {
  12767. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12768. "type": "tidelift"
  12769. }
  12770. ],
  12771. "time": "2021-01-27T09:09:26+00:00"
  12772. },
  12773. {
  12774. "name": "symfony/var-dumper",
  12775. "version": "v5.1.11",
  12776. "source": {
  12777. "type": "git",
  12778. "url": "https://github.com/symfony/var-dumper.git",
  12779. "reference": "cee600a1248b423330375c869812bdd61a085cd0"
  12780. },
  12781. "dist": {
  12782. "type": "zip",
  12783. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/cee600a1248b423330375c869812bdd61a085cd0",
  12784. "reference": "cee600a1248b423330375c869812bdd61a085cd0",
  12785. "shasum": ""
  12786. },
  12787. "require": {
  12788. "php": ">=7.2.5",
  12789. "symfony/polyfill-mbstring": "~1.0",
  12790. "symfony/polyfill-php80": "^1.15"
  12791. },
  12792. "conflict": {
  12793. "phpunit/phpunit": "<5.4.3",
  12794. "symfony/console": "<4.4"
  12795. },
  12796. "require-dev": {
  12797. "ext-iconv": "*",
  12798. "symfony/console": "^4.4|^5.0",
  12799. "symfony/process": "^4.4|^5.0",
  12800. "twig/twig": "^2.13|^3.0.4"
  12801. },
  12802. "suggest": {
  12803. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  12804. "ext-intl": "To show region name in time zone dump",
  12805. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  12806. },
  12807. "bin": [
  12808. "Resources/bin/var-dump-server"
  12809. ],
  12810. "type": "library",
  12811. "autoload": {
  12812. "files": [
  12813. "Resources/functions/dump.php"
  12814. ],
  12815. "psr-4": {
  12816. "Symfony\\Component\\VarDumper\\": ""
  12817. },
  12818. "exclude-from-classmap": [
  12819. "/Tests/"
  12820. ]
  12821. },
  12822. "notification-url": "https://packagist.org/downloads/",
  12823. "license": [
  12824. "MIT"
  12825. ],
  12826. "authors": [
  12827. {
  12828. "name": "Nicolas Grekas",
  12829. "email": "p@tchwork.com"
  12830. },
  12831. {
  12832. "name": "Symfony Community",
  12833. "homepage": "https://symfony.com/contributors"
  12834. }
  12835. ],
  12836. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  12837. "homepage": "https://symfony.com",
  12838. "keywords": [
  12839. "debug",
  12840. "dump"
  12841. ],
  12842. "support": {
  12843. "source": "https://github.com/symfony/var-dumper/tree/v5.1.11"
  12844. },
  12845. "funding": [
  12846. {
  12847. "url": "https://symfony.com/sponsor",
  12848. "type": "custom"
  12849. },
  12850. {
  12851. "url": "https://github.com/fabpot",
  12852. "type": "github"
  12853. },
  12854. {
  12855. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12856. "type": "tidelift"
  12857. }
  12858. ],
  12859. "time": "2021-01-27T10:01:46+00:00"
  12860. },
  12861. {
  12862. "name": "symfony/yaml",
  12863. "version": "v4.4.19",
  12864. "source": {
  12865. "type": "git",
  12866. "url": "https://github.com/symfony/yaml.git",
  12867. "reference": "17ed9f14c1aa05b1a5cf2e2c5ef2d0be28058ef9"
  12868. },
  12869. "dist": {
  12870. "type": "zip",
  12871. "url": "https://api.github.com/repos/symfony/yaml/zipball/17ed9f14c1aa05b1a5cf2e2c5ef2d0be28058ef9",
  12872. "reference": "17ed9f14c1aa05b1a5cf2e2c5ef2d0be28058ef9",
  12873. "shasum": ""
  12874. },
  12875. "require": {
  12876. "php": ">=7.1.3",
  12877. "symfony/polyfill-ctype": "~1.8"
  12878. },
  12879. "conflict": {
  12880. "symfony/console": "<3.4"
  12881. },
  12882. "require-dev": {
  12883. "symfony/console": "^3.4|^4.0|^5.0"
  12884. },
  12885. "suggest": {
  12886. "symfony/console": "For validating YAML files using the lint command"
  12887. },
  12888. "type": "library",
  12889. "autoload": {
  12890. "psr-4": {
  12891. "Symfony\\Component\\Yaml\\": ""
  12892. },
  12893. "exclude-from-classmap": [
  12894. "/Tests/"
  12895. ]
  12896. },
  12897. "notification-url": "https://packagist.org/downloads/",
  12898. "license": [
  12899. "MIT"
  12900. ],
  12901. "authors": [
  12902. {
  12903. "name": "Fabien Potencier",
  12904. "email": "fabien@symfony.com"
  12905. },
  12906. {
  12907. "name": "Symfony Community",
  12908. "homepage": "https://symfony.com/contributors"
  12909. }
  12910. ],
  12911. "description": "Loads and dumps YAML files",
  12912. "homepage": "https://symfony.com",
  12913. "support": {
  12914. "source": "https://github.com/symfony/yaml/tree/v4.4.19"
  12915. },
  12916. "funding": [
  12917. {
  12918. "url": "https://symfony.com/sponsor",
  12919. "type": "custom"
  12920. },
  12921. {
  12922. "url": "https://github.com/fabpot",
  12923. "type": "github"
  12924. },
  12925. {
  12926. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12927. "type": "tidelift"
  12928. }
  12929. ],
  12930. "time": "2021-01-27T09:09:26+00:00"
  12931. },
  12932. {
  12933. "name": "twig/twig",
  12934. "version": "v2.14.1",
  12935. "source": {
  12936. "type": "git",
  12937. "url": "https://github.com/twigphp/Twig.git",
  12938. "reference": "5eb9ac5dfdd20c3f59495c22841adc5da980d312"
  12939. },
  12940. "dist": {
  12941. "type": "zip",
  12942. "url": "https://api.github.com/repos/twigphp/Twig/zipball/5eb9ac5dfdd20c3f59495c22841adc5da980d312",
  12943. "reference": "5eb9ac5dfdd20c3f59495c22841adc5da980d312",
  12944. "shasum": ""
  12945. },
  12946. "require": {
  12947. "php": ">=7.2.5",
  12948. "symfony/polyfill-ctype": "^1.8",
  12949. "symfony/polyfill-mbstring": "^1.3"
  12950. },
  12951. "require-dev": {
  12952. "psr/container": "^1.0",
  12953. "symfony/phpunit-bridge": "^4.4.9|^5.0.9"
  12954. },
  12955. "type": "library",
  12956. "extra": {
  12957. "branch-alias": {
  12958. "dev-master": "2.14-dev"
  12959. }
  12960. },
  12961. "autoload": {
  12962. "psr-0": {
  12963. "Twig_": "lib/"
  12964. },
  12965. "psr-4": {
  12966. "Twig\\": "src/"
  12967. }
  12968. },
  12969. "notification-url": "https://packagist.org/downloads/",
  12970. "license": [
  12971. "BSD-3-Clause"
  12972. ],
  12973. "authors": [
  12974. {
  12975. "name": "Fabien Potencier",
  12976. "email": "fabien@symfony.com",
  12977. "homepage": "http://fabien.potencier.org",
  12978. "role": "Lead Developer"
  12979. },
  12980. {
  12981. "name": "Twig Team",
  12982. "role": "Contributors"
  12983. },
  12984. {
  12985. "name": "Armin Ronacher",
  12986. "email": "armin.ronacher@active-4.com",
  12987. "role": "Project Founder"
  12988. }
  12989. ],
  12990. "description": "Twig, the flexible, fast, and secure template language for PHP",
  12991. "homepage": "https://twig.symfony.com",
  12992. "keywords": [
  12993. "templating"
  12994. ],
  12995. "support": {
  12996. "issues": "https://github.com/twigphp/Twig/issues",
  12997. "source": "https://github.com/twigphp/Twig/tree/v2.14.1"
  12998. },
  12999. "funding": [
  13000. {
  13001. "url": "https://github.com/fabpot",
  13002. "type": "github"
  13003. },
  13004. {
  13005. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  13006. "type": "tidelift"
  13007. }
  13008. ],
  13009. "time": "2020-10-27T19:25:29+00:00"
  13010. },
  13011. {
  13012. "name": "typo3/phar-stream-wrapper",
  13013. "version": "v3.1.6",
  13014. "source": {
  13015. "type": "git",
  13016. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  13017. "reference": "60131cb573a1e478cfecd34e4ea38e3b31505f75"
  13018. },
  13019. "dist": {
  13020. "type": "zip",
  13021. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/60131cb573a1e478cfecd34e4ea38e3b31505f75",
  13022. "reference": "60131cb573a1e478cfecd34e4ea38e3b31505f75",
  13023. "shasum": ""
  13024. },
  13025. "require": {
  13026. "ext-json": "*",
  13027. "php": "^7.0 || ^8.0"
  13028. },
  13029. "require-dev": {
  13030. "ext-xdebug": "*",
  13031. "phpspec/prophecy": "^1.10",
  13032. "symfony/phpunit-bridge": "^5.1"
  13033. },
  13034. "suggest": {
  13035. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  13036. },
  13037. "type": "library",
  13038. "extra": {
  13039. "branch-alias": {
  13040. "dev-master": "v3.x-dev"
  13041. }
  13042. },
  13043. "autoload": {
  13044. "psr-4": {
  13045. "TYPO3\\PharStreamWrapper\\": "src/"
  13046. }
  13047. },
  13048. "notification-url": "https://packagist.org/downloads/",
  13049. "license": [
  13050. "MIT"
  13051. ],
  13052. "description": "Interceptors for PHP's native phar:// stream handling",
  13053. "homepage": "https://typo3.org/",
  13054. "keywords": [
  13055. "phar",
  13056. "php",
  13057. "security",
  13058. "stream-wrapper"
  13059. ],
  13060. "support": {
  13061. "issues": "https://github.com/TYPO3/phar-stream-wrapper/issues",
  13062. "source": "https://github.com/TYPO3/phar-stream-wrapper/tree/v3.1.6"
  13063. },
  13064. "time": "2020-11-07T09:06:16+00:00"
  13065. },
  13066. {
  13067. "name": "webflo/drupal-finder",
  13068. "version": "1.2.2",
  13069. "source": {
  13070. "type": "git",
  13071. "url": "https://github.com/webflo/drupal-finder.git",
  13072. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  13073. },
  13074. "dist": {
  13075. "type": "zip",
  13076. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  13077. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  13078. "shasum": ""
  13079. },
  13080. "require": {
  13081. "ext-json": "*"
  13082. },
  13083. "require-dev": {
  13084. "mikey179/vfsstream": "^1.6",
  13085. "phpunit/phpunit": "^4.8"
  13086. },
  13087. "type": "library",
  13088. "autoload": {
  13089. "classmap": [
  13090. "src/DrupalFinder.php"
  13091. ]
  13092. },
  13093. "notification-url": "https://packagist.org/downloads/",
  13094. "license": [
  13095. "GPL-2.0-or-later"
  13096. ],
  13097. "authors": [
  13098. {
  13099. "name": "Florian Weber",
  13100. "email": "florian@webflo.org"
  13101. }
  13102. ],
  13103. "description": "Helper class to locate a Drupal installation from a given path.",
  13104. "time": "2020-10-27T09:42:17+00:00"
  13105. },
  13106. {
  13107. "name": "webmozart/assert",
  13108. "version": "1.9.1",
  13109. "source": {
  13110. "type": "git",
  13111. "url": "https://github.com/webmozarts/assert.git",
  13112. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  13113. },
  13114. "dist": {
  13115. "type": "zip",
  13116. "url": "https://api.github.com/repos/webmozarts/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  13117. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  13118. "shasum": ""
  13119. },
  13120. "require": {
  13121. "php": "^5.3.3 || ^7.0 || ^8.0",
  13122. "symfony/polyfill-ctype": "^1.8"
  13123. },
  13124. "conflict": {
  13125. "phpstan/phpstan": "<0.12.20",
  13126. "vimeo/psalm": "<3.9.1"
  13127. },
  13128. "require-dev": {
  13129. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  13130. },
  13131. "type": "library",
  13132. "autoload": {
  13133. "psr-4": {
  13134. "Webmozart\\Assert\\": "src/"
  13135. }
  13136. },
  13137. "notification-url": "https://packagist.org/downloads/",
  13138. "license": [
  13139. "MIT"
  13140. ],
  13141. "authors": [
  13142. {
  13143. "name": "Bernhard Schussek",
  13144. "email": "bschussek@gmail.com"
  13145. }
  13146. ],
  13147. "description": "Assertions to validate method input/output with nice error messages.",
  13148. "keywords": [
  13149. "assert",
  13150. "check",
  13151. "validate"
  13152. ],
  13153. "time": "2020-07-08T17:02:28+00:00"
  13154. },
  13155. {
  13156. "name": "webmozart/path-util",
  13157. "version": "2.3.0",
  13158. "source": {
  13159. "type": "git",
  13160. "url": "https://github.com/webmozart/path-util.git",
  13161. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  13162. },
  13163. "dist": {
  13164. "type": "zip",
  13165. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  13166. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  13167. "shasum": ""
  13168. },
  13169. "require": {
  13170. "php": ">=5.3.3",
  13171. "webmozart/assert": "~1.0"
  13172. },
  13173. "require-dev": {
  13174. "phpunit/phpunit": "^4.6",
  13175. "sebastian/version": "^1.0.1"
  13176. },
  13177. "type": "library",
  13178. "extra": {
  13179. "branch-alias": {
  13180. "dev-master": "2.3-dev"
  13181. }
  13182. },
  13183. "autoload": {
  13184. "psr-4": {
  13185. "Webmozart\\PathUtil\\": "src/"
  13186. }
  13187. },
  13188. "notification-url": "https://packagist.org/downloads/",
  13189. "license": [
  13190. "MIT"
  13191. ],
  13192. "authors": [
  13193. {
  13194. "name": "Bernhard Schussek",
  13195. "email": "bschussek@gmail.com"
  13196. }
  13197. ],
  13198. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  13199. "time": "2015-12-17T08:42:14+00:00"
  13200. },
  13201. {
  13202. "name": "webonyx/graphql-php",
  13203. "version": "v14.9.0",
  13204. "source": {
  13205. "type": "git",
  13206. "url": "https://github.com/webonyx/graphql-php.git",
  13207. "reference": "36b83621deb5eae354347a2e86dc7aec81b32a82"
  13208. },
  13209. "dist": {
  13210. "type": "zip",
  13211. "url": "https://api.github.com/repos/webonyx/graphql-php/zipball/36b83621deb5eae354347a2e86dc7aec81b32a82",
  13212. "reference": "36b83621deb5eae354347a2e86dc7aec81b32a82",
  13213. "shasum": ""
  13214. },
  13215. "require": {
  13216. "ext-json": "*",
  13217. "ext-mbstring": "*",
  13218. "php": "^7.1||^8.0"
  13219. },
  13220. "require-dev": {
  13221. "amphp/amp": "^2.3",
  13222. "doctrine/coding-standard": "^6.0",
  13223. "nyholm/psr7": "^1.2",
  13224. "phpbench/phpbench": "^0.16.10",
  13225. "phpstan/extension-installer": "^1.0",
  13226. "phpstan/phpstan": "0.12.82",
  13227. "phpstan/phpstan-phpunit": "0.12.18",
  13228. "phpstan/phpstan-strict-rules": "0.12.9",
  13229. "phpunit/phpunit": "^7.2|^8.5",
  13230. "psr/http-message": "^1.0",
  13231. "react/promise": "2.*",
  13232. "simpod/php-coveralls-mirror": "^3.0",
  13233. "squizlabs/php_codesniffer": "3.5.4"
  13234. },
  13235. "suggest": {
  13236. "psr/http-message": "To use standard GraphQL server",
  13237. "react/promise": "To leverage async resolving on React PHP platform"
  13238. },
  13239. "type": "library",
  13240. "autoload": {
  13241. "psr-4": {
  13242. "GraphQL\\": "src/"
  13243. }
  13244. },
  13245. "notification-url": "https://packagist.org/downloads/",
  13246. "license": [
  13247. "MIT"
  13248. ],
  13249. "description": "A PHP port of GraphQL reference implementation",
  13250. "homepage": "https://github.com/webonyx/graphql-php",
  13251. "keywords": [
  13252. "api",
  13253. "graphql"
  13254. ],
  13255. "support": {
  13256. "issues": "https://github.com/webonyx/graphql-php/issues",
  13257. "source": "https://github.com/webonyx/graphql-php/tree/v14.9.0"
  13258. },
  13259. "funding": [
  13260. {
  13261. "url": "https://opencollective.com/webonyx-graphql-php",
  13262. "type": "open_collective"
  13263. }
  13264. ],
  13265. "time": "2021-06-15T16:14:17+00:00"
  13266. },
  13267. {
  13268. "name": "wikimedia/composer-merge-plugin",
  13269. "version": "v2.0.1",
  13270. "source": {
  13271. "type": "git",
  13272. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  13273. "reference": "8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912"
  13274. },
  13275. "dist": {
  13276. "type": "zip",
  13277. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912",
  13278. "reference": "8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912",
  13279. "shasum": ""
  13280. },
  13281. "require": {
  13282. "composer-plugin-api": "^1.1||^2.0",
  13283. "php": ">=7.2.0"
  13284. },
  13285. "require-dev": {
  13286. "composer/composer": "^1.1||^2.0",
  13287. "php-parallel-lint/php-parallel-lint": "~1.1.0",
  13288. "phpunit/phpunit": "^8.5||^9.0",
  13289. "squizlabs/php_codesniffer": "~3.5.4"
  13290. },
  13291. "type": "composer-plugin",
  13292. "extra": {
  13293. "branch-alias": {
  13294. "dev-master": "2.x-dev"
  13295. },
  13296. "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin"
  13297. },
  13298. "autoload": {
  13299. "psr-4": {
  13300. "Wikimedia\\Composer\\Merge\\V2\\": "src/"
  13301. }
  13302. },
  13303. "notification-url": "https://packagist.org/downloads/",
  13304. "license": [
  13305. "MIT"
  13306. ],
  13307. "authors": [
  13308. {
  13309. "name": "Bryan Davis",
  13310. "email": "bd808@wikimedia.org"
  13311. }
  13312. ],
  13313. "description": "Composer plugin to merge multiple composer.json files",
  13314. "time": "2021-02-24T05:28:06+00:00"
  13315. }
  13316. ],
  13317. "packages-dev": [],
  13318. "aliases": [],
  13319. "minimum-stability": "stable",
  13320. "stability-flags": {
  13321. "drupal/auto_entitylabel": 20,
  13322. "drupal/cer": 15,
  13323. "drupal/insert": 20,
  13324. "drupal/typed_data": 20,
  13325. "drupal/autocomplete_deluxe": 5,
  13326. "drupal/better_exposed_filters": 10,
  13327. "drupal/bulkdelete": 20,
  13328. "drupal/cshs": 20,
  13329. "drupal/config_ignore": 5,
  13330. "drupal/config_devel": 20,
  13331. "drupal/context": 10,
  13332. "drupal/date_range_formatter": 20,
  13333. "drupal/domain": 20,
  13334. "drupal/domain_alias": 20,
  13335. "drupal/domain_config": 20,
  13336. "drupal/domain_site_settings": 20,
  13337. "drupal/email_registration": 5,
  13338. "drupal/entity_browser_enhanced": 5,
  13339. "drupal/entity_clone": 15,
  13340. "drupal/filefield_sources": 20,
  13341. "drupal/filter_perms": 20,
  13342. "drupal/inline_entity_form": 5,
  13343. "drupal/linkit": 10,
  13344. "drupal/login_destination": 20,
  13345. "drupal/maillog": 20,
  13346. "drupal/maxlength": 10,
  13347. "drupal/menu_block": 20,
  13348. "drupal/menu_position": 20,
  13349. "drupal/path_alias_xt": 20,
  13350. "drupal/pathologic": 15,
  13351. "drupal/profile": 5,
  13352. "drupal/smtp": 10,
  13353. "drupal/synonyms": 20,
  13354. "drupal/translation_views": 15,
  13355. "drupal/ultimate_cron": 15
  13356. },
  13357. "prefer-stable": true,
  13358. "prefer-lowest": false,
  13359. "platform": [],
  13360. "platform-dev": [],
  13361. "plugin-api-version": "2.1.0"
  13362. }