composer.lock 502 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665
  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": "4119f08413966cb004875771df63af0f",
  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. "support": {
  72. "issues": "https://github.com/alchemy-fr/Zippy/issues",
  73. "source": "https://github.com/alchemy-fr/Zippy/tree/master"
  74. },
  75. "time": "2018-02-22T13:58:36+00:00"
  76. },
  77. {
  78. "name": "asm89/stack-cors",
  79. "version": "1.3.0",
  80. "source": {
  81. "type": "git",
  82. "url": "https://github.com/asm89/stack-cors.git",
  83. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08"
  84. },
  85. "dist": {
  86. "type": "zip",
  87. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/b9c31def6a83f84b4d4a40d35996d375755f0e08",
  88. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08",
  89. "shasum": ""
  90. },
  91. "require": {
  92. "php": ">=5.5.9",
  93. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  94. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  95. },
  96. "require-dev": {
  97. "phpunit/phpunit": "^5.0 || ^4.8.10",
  98. "squizlabs/php_codesniffer": "^2.3"
  99. },
  100. "type": "library",
  101. "extra": {
  102. "branch-alias": {
  103. "dev-master": "1.2-dev"
  104. }
  105. },
  106. "autoload": {
  107. "psr-4": {
  108. "Asm89\\Stack\\": "src/Asm89/Stack/"
  109. }
  110. },
  111. "notification-url": "https://packagist.org/downloads/",
  112. "license": [
  113. "MIT"
  114. ],
  115. "authors": [
  116. {
  117. "name": "Alexander",
  118. "email": "iam.asm89@gmail.com"
  119. }
  120. ],
  121. "description": "Cross-origin resource sharing library and stack middleware",
  122. "homepage": "https://github.com/asm89/stack-cors",
  123. "keywords": [
  124. "cors",
  125. "stack"
  126. ],
  127. "support": {
  128. "issues": "https://github.com/asm89/stack-cors/issues",
  129. "source": "https://github.com/asm89/stack-cors/tree/1.3.0"
  130. },
  131. "time": "2019-12-24T22:41:47+00:00"
  132. },
  133. {
  134. "name": "chi-teck/drupal-code-generator",
  135. "version": "1.33.1",
  136. "source": {
  137. "type": "git",
  138. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  139. "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388"
  140. },
  141. "dist": {
  142. "type": "zip",
  143. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/5f814e980b6f9cf1ca8c74cc9385c3d81090d388",
  144. "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388",
  145. "shasum": ""
  146. },
  147. "require": {
  148. "ext-json": "*",
  149. "php": ">=5.5.9",
  150. "symfony/console": "^3.4 || ^4.0",
  151. "symfony/filesystem": "^2.7 || ^3.4 || ^4.0",
  152. "twig/twig": "^1.41 || ^2.12"
  153. },
  154. "conflict": {
  155. "drush/drush": "< 10.3.2"
  156. },
  157. "bin": [
  158. "bin/dcg"
  159. ],
  160. "type": "library",
  161. "extra": {
  162. "branch-alias": {
  163. "dev-master": "1.x-dev"
  164. }
  165. },
  166. "autoload": {
  167. "files": [
  168. "src/bootstrap.php"
  169. ],
  170. "psr-4": {
  171. "DrupalCodeGenerator\\": "src"
  172. }
  173. },
  174. "notification-url": "https://packagist.org/downloads/",
  175. "license": [
  176. "GPL-2.0-or-later"
  177. ],
  178. "description": "Drupal code generator",
  179. "time": "2020-12-05T05:59:11+00:00"
  180. },
  181. {
  182. "name": "commerceguys/addressing",
  183. "version": "v1.1.0",
  184. "source": {
  185. "type": "git",
  186. "url": "https://github.com/commerceguys/addressing.git",
  187. "reference": "2450ca97631042faf786855db206a2e48fb7dbb7"
  188. },
  189. "dist": {
  190. "type": "zip",
  191. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/2450ca97631042faf786855db206a2e48fb7dbb7",
  192. "reference": "2450ca97631042faf786855db206a2e48fb7dbb7",
  193. "shasum": ""
  194. },
  195. "require": {
  196. "doctrine/collections": "~1.0",
  197. "php": ">=7.0.8"
  198. },
  199. "require-dev": {
  200. "mikey179/vfsstream": "1.*",
  201. "phpunit/phpunit": "^6.0",
  202. "squizlabs/php_codesniffer": "2.*",
  203. "symfony/validator": "^3.4"
  204. },
  205. "suggest": {
  206. "symfony/validator": "to validate addresses"
  207. },
  208. "type": "library",
  209. "extra": {
  210. "branch-alias": {
  211. "dev-master": "1.x-dev"
  212. }
  213. },
  214. "autoload": {
  215. "psr-4": {
  216. "CommerceGuys\\Addressing\\": "src"
  217. }
  218. },
  219. "notification-url": "https://packagist.org/downloads/",
  220. "license": [
  221. "MIT"
  222. ],
  223. "authors": [
  224. {
  225. "name": "Bojan Zivanovic"
  226. },
  227. {
  228. "name": "Damien Tournoud"
  229. }
  230. ],
  231. "description": "Addressing library powered by CLDR and Google's address data.",
  232. "keywords": [
  233. "address",
  234. "internationalization",
  235. "localization",
  236. "postal"
  237. ],
  238. "time": "2020-11-29T18:48:07+00:00"
  239. },
  240. {
  241. "name": "components/highlightjs",
  242. "version": "9.7.0",
  243. "dist": {
  244. "type": "zip",
  245. "url": "https://github.com/components/highlightjs/archive/9.7.0.zip"
  246. },
  247. "type": "drupal-library"
  248. },
  249. {
  250. "name": "composer/installers",
  251. "version": "v1.12.0",
  252. "source": {
  253. "type": "git",
  254. "url": "https://github.com/composer/installers.git",
  255. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19"
  256. },
  257. "dist": {
  258. "type": "zip",
  259. "url": "https://api.github.com/repos/composer/installers/zipball/d20a64ed3c94748397ff5973488761b22f6d3f19",
  260. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19",
  261. "shasum": ""
  262. },
  263. "require": {
  264. "composer-plugin-api": "^1.0 || ^2.0"
  265. },
  266. "replace": {
  267. "roundcube/plugin-installer": "*",
  268. "shama/baton": "*"
  269. },
  270. "require-dev": {
  271. "composer/composer": "1.6.* || ^2.0",
  272. "composer/semver": "^1 || ^3",
  273. "phpstan/phpstan": "^0.12.55",
  274. "phpstan/phpstan-phpunit": "^0.12.16",
  275. "symfony/phpunit-bridge": "^4.2 || ^5",
  276. "symfony/process": "^2.3"
  277. },
  278. "type": "composer-plugin",
  279. "extra": {
  280. "class": "Composer\\Installers\\Plugin",
  281. "branch-alias": {
  282. "dev-main": "1.x-dev"
  283. }
  284. },
  285. "autoload": {
  286. "psr-4": {
  287. "Composer\\Installers\\": "src/Composer/Installers"
  288. }
  289. },
  290. "notification-url": "https://packagist.org/downloads/",
  291. "license": [
  292. "MIT"
  293. ],
  294. "authors": [
  295. {
  296. "name": "Kyle Robinson Young",
  297. "email": "kyle@dontkry.com",
  298. "homepage": "https://github.com/shama"
  299. }
  300. ],
  301. "description": "A multi-framework Composer library installer",
  302. "homepage": "https://composer.github.io/installers/",
  303. "keywords": [
  304. "Craft",
  305. "Dolibarr",
  306. "Eliasis",
  307. "Hurad",
  308. "ImageCMS",
  309. "Kanboard",
  310. "Lan Management System",
  311. "MODX Evo",
  312. "MantisBT",
  313. "Mautic",
  314. "Maya",
  315. "OXID",
  316. "Plentymarkets",
  317. "Porto",
  318. "RadPHP",
  319. "SMF",
  320. "Starbug",
  321. "Thelia",
  322. "Whmcs",
  323. "WolfCMS",
  324. "agl",
  325. "aimeos",
  326. "annotatecms",
  327. "attogram",
  328. "bitrix",
  329. "cakephp",
  330. "chef",
  331. "cockpit",
  332. "codeigniter",
  333. "concrete5",
  334. "croogo",
  335. "dokuwiki",
  336. "drupal",
  337. "eZ Platform",
  338. "elgg",
  339. "expressionengine",
  340. "fuelphp",
  341. "grav",
  342. "installer",
  343. "itop",
  344. "joomla",
  345. "known",
  346. "kohana",
  347. "laravel",
  348. "lavalite",
  349. "lithium",
  350. "magento",
  351. "majima",
  352. "mako",
  353. "mediawiki",
  354. "miaoxing",
  355. "modulework",
  356. "modx",
  357. "moodle",
  358. "osclass",
  359. "pantheon",
  360. "phpbb",
  361. "piwik",
  362. "ppi",
  363. "processwire",
  364. "puppet",
  365. "pxcms",
  366. "reindex",
  367. "roundcube",
  368. "shopware",
  369. "silverstripe",
  370. "sydes",
  371. "sylius",
  372. "symfony",
  373. "tastyigniter",
  374. "typo3",
  375. "wordpress",
  376. "yawik",
  377. "zend",
  378. "zikula"
  379. ],
  380. "support": {
  381. "issues": "https://github.com/composer/installers/issues",
  382. "source": "https://github.com/composer/installers/tree/v1.12.0"
  383. },
  384. "funding": [
  385. {
  386. "url": "https://packagist.com",
  387. "type": "custom"
  388. },
  389. {
  390. "url": "https://github.com/composer",
  391. "type": "github"
  392. },
  393. {
  394. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  395. "type": "tidelift"
  396. }
  397. ],
  398. "time": "2021-09-13T08:19:44+00:00"
  399. },
  400. {
  401. "name": "composer/semver",
  402. "version": "3.2.6",
  403. "source": {
  404. "type": "git",
  405. "url": "https://github.com/composer/semver.git",
  406. "reference": "83e511e247de329283478496f7a1e114c9517506"
  407. },
  408. "dist": {
  409. "type": "zip",
  410. "url": "https://api.github.com/repos/composer/semver/zipball/83e511e247de329283478496f7a1e114c9517506",
  411. "reference": "83e511e247de329283478496f7a1e114c9517506",
  412. "shasum": ""
  413. },
  414. "require": {
  415. "php": "^5.3.2 || ^7.0 || ^8.0"
  416. },
  417. "require-dev": {
  418. "phpstan/phpstan": "^0.12.54",
  419. "symfony/phpunit-bridge": "^4.2 || ^5"
  420. },
  421. "type": "library",
  422. "extra": {
  423. "branch-alias": {
  424. "dev-main": "3.x-dev"
  425. }
  426. },
  427. "autoload": {
  428. "psr-4": {
  429. "Composer\\Semver\\": "src"
  430. }
  431. },
  432. "notification-url": "https://packagist.org/downloads/",
  433. "license": [
  434. "MIT"
  435. ],
  436. "authors": [
  437. {
  438. "name": "Nils Adermann",
  439. "email": "naderman@naderman.de",
  440. "homepage": "http://www.naderman.de"
  441. },
  442. {
  443. "name": "Jordi Boggiano",
  444. "email": "j.boggiano@seld.be",
  445. "homepage": "http://seld.be"
  446. },
  447. {
  448. "name": "Rob Bast",
  449. "email": "rob.bast@gmail.com",
  450. "homepage": "http://robbast.nl"
  451. }
  452. ],
  453. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  454. "keywords": [
  455. "semantic",
  456. "semver",
  457. "validation",
  458. "versioning"
  459. ],
  460. "support": {
  461. "irc": "irc://irc.freenode.org/composer",
  462. "issues": "https://github.com/composer/semver/issues",
  463. "source": "https://github.com/composer/semver/tree/3.2.6"
  464. },
  465. "funding": [
  466. {
  467. "url": "https://packagist.com",
  468. "type": "custom"
  469. },
  470. {
  471. "url": "https://github.com/composer",
  472. "type": "github"
  473. },
  474. {
  475. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  476. "type": "tidelift"
  477. }
  478. ],
  479. "time": "2021-10-25T11:34:17+00:00"
  480. },
  481. {
  482. "name": "consolidation/annotated-command",
  483. "version": "4.2.4",
  484. "source": {
  485. "type": "git",
  486. "url": "https://github.com/consolidation/annotated-command.git",
  487. "reference": "ec297e05cb86557671c2d6cbb1bebba6c7ae2c60"
  488. },
  489. "dist": {
  490. "type": "zip",
  491. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/ec297e05cb86557671c2d6cbb1bebba6c7ae2c60",
  492. "reference": "ec297e05cb86557671c2d6cbb1bebba6c7ae2c60",
  493. "shasum": ""
  494. },
  495. "require": {
  496. "consolidation/output-formatters": "^4.1.1",
  497. "php": ">=7.1.3",
  498. "psr/log": "^1|^2",
  499. "symfony/console": "^4.4.8|~5.1.0",
  500. "symfony/event-dispatcher": "^4.4.8|^5",
  501. "symfony/finder": "^4.4.8|^5"
  502. },
  503. "require-dev": {
  504. "phpunit/phpunit": ">=7.5.20",
  505. "squizlabs/php_codesniffer": "^3",
  506. "yoast/phpunit-polyfills": "^0.2.0"
  507. },
  508. "type": "library",
  509. "extra": {
  510. "branch-alias": {
  511. "dev-main": "4.x-dev"
  512. }
  513. },
  514. "autoload": {
  515. "psr-4": {
  516. "Consolidation\\AnnotatedCommand\\": "src"
  517. }
  518. },
  519. "notification-url": "https://packagist.org/downloads/",
  520. "license": [
  521. "MIT"
  522. ],
  523. "authors": [
  524. {
  525. "name": "Greg Anderson",
  526. "email": "greg.1.anderson@greenknowe.org"
  527. }
  528. ],
  529. "description": "Initialize Symfony Console commands from annotated command class methods.",
  530. "time": "2020-12-10T16:56:39+00:00"
  531. },
  532. {
  533. "name": "consolidation/config",
  534. "version": "1.2.1",
  535. "source": {
  536. "type": "git",
  537. "url": "https://github.com/consolidation/config.git",
  538. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  539. },
  540. "dist": {
  541. "type": "zip",
  542. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  543. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  544. "shasum": ""
  545. },
  546. "require": {
  547. "dflydev/dot-access-data": "^1.1.0",
  548. "grasmash/expander": "^1",
  549. "php": ">=5.4.0"
  550. },
  551. "require-dev": {
  552. "g1a/composer-test-scenarios": "^3",
  553. "php-coveralls/php-coveralls": "^1",
  554. "phpunit/phpunit": "^5",
  555. "squizlabs/php_codesniffer": "2.*",
  556. "symfony/console": "^2.5|^3|^4",
  557. "symfony/yaml": "^2.8.11|^3|^4"
  558. },
  559. "suggest": {
  560. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  561. },
  562. "type": "library",
  563. "extra": {
  564. "scenarios": {
  565. "symfony4": {
  566. "require-dev": {
  567. "symfony/console": "^4.0"
  568. },
  569. "config": {
  570. "platform": {
  571. "php": "7.1.3"
  572. }
  573. }
  574. },
  575. "symfony2": {
  576. "require-dev": {
  577. "symfony/console": "^2.8",
  578. "symfony/event-dispatcher": "^2.8",
  579. "phpunit/phpunit": "^4.8.36"
  580. },
  581. "remove": [
  582. "php-coveralls/php-coveralls"
  583. ],
  584. "config": {
  585. "platform": {
  586. "php": "5.4.8"
  587. }
  588. }
  589. }
  590. },
  591. "branch-alias": {
  592. "dev-master": "1.x-dev"
  593. }
  594. },
  595. "autoload": {
  596. "psr-4": {
  597. "Consolidation\\Config\\": "src"
  598. }
  599. },
  600. "notification-url": "https://packagist.org/downloads/",
  601. "license": [
  602. "MIT"
  603. ],
  604. "authors": [
  605. {
  606. "name": "Greg Anderson",
  607. "email": "greg.1.anderson@greenknowe.org"
  608. }
  609. ],
  610. "description": "Provide configuration services for a commandline tool.",
  611. "time": "2019-03-03T19:37:04+00:00"
  612. },
  613. {
  614. "name": "consolidation/filter-via-dot-access-data",
  615. "version": "1.0.0",
  616. "source": {
  617. "type": "git",
  618. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  619. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  620. },
  621. "dist": {
  622. "type": "zip",
  623. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  624. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  625. "shasum": ""
  626. },
  627. "require": {
  628. "dflydev/dot-access-data": "^1.1.0",
  629. "php": ">=5.5.0"
  630. },
  631. "require-dev": {
  632. "consolidation/robo": "^1.2.3",
  633. "g1a/composer-test-scenarios": "^3",
  634. "knplabs/github-api": "^2.7",
  635. "php-coveralls/php-coveralls": "^1",
  636. "php-http/guzzle6-adapter": "^1.1",
  637. "phpunit/phpunit": "^5",
  638. "squizlabs/php_codesniffer": "^2.8",
  639. "symfony/console": "^2.8|^3|^4"
  640. },
  641. "type": "library",
  642. "extra": {
  643. "scenarios": {
  644. "phpunit5": {
  645. "require-dev": {
  646. "phpunit/phpunit": "^5.7.27"
  647. },
  648. "remove": [
  649. "php-coveralls/php-coveralls"
  650. ],
  651. "config": {
  652. "platform": {
  653. "php": "5.6.33"
  654. }
  655. }
  656. }
  657. },
  658. "branch-alias": {
  659. "dev-master": "1.x-dev"
  660. }
  661. },
  662. "autoload": {
  663. "psr-4": {
  664. "Consolidation\\Filter\\": "src"
  665. }
  666. },
  667. "notification-url": "https://packagist.org/downloads/",
  668. "license": [
  669. "MIT"
  670. ],
  671. "authors": [
  672. {
  673. "name": "Greg Anderson",
  674. "email": "greg.1.anderson@greenknowe.org"
  675. }
  676. ],
  677. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  678. "time": "2019-01-18T06:05:07+00:00"
  679. },
  680. {
  681. "name": "consolidation/log",
  682. "version": "2.0.2",
  683. "source": {
  684. "type": "git",
  685. "url": "https://github.com/consolidation/log.git",
  686. "reference": "82a2aaaa621a7b976e50a745a8d249d5085ee2b1"
  687. },
  688. "dist": {
  689. "type": "zip",
  690. "url": "https://api.github.com/repos/consolidation/log/zipball/82a2aaaa621a7b976e50a745a8d249d5085ee2b1",
  691. "reference": "82a2aaaa621a7b976e50a745a8d249d5085ee2b1",
  692. "shasum": ""
  693. },
  694. "require": {
  695. "php": ">=7.1.3",
  696. "psr/log": "^1.0",
  697. "symfony/console": "^4|^5"
  698. },
  699. "require-dev": {
  700. "phpunit/phpunit": ">=7.5.20",
  701. "squizlabs/php_codesniffer": "^3",
  702. "yoast/phpunit-polyfills": "^0.2.0"
  703. },
  704. "type": "library",
  705. "extra": {
  706. "branch-alias": {
  707. "dev-main": "2.x-dev"
  708. }
  709. },
  710. "autoload": {
  711. "psr-4": {
  712. "Consolidation\\Log\\": "src"
  713. }
  714. },
  715. "notification-url": "https://packagist.org/downloads/",
  716. "license": [
  717. "MIT"
  718. ],
  719. "authors": [
  720. {
  721. "name": "Greg Anderson",
  722. "email": "greg.1.anderson@greenknowe.org"
  723. }
  724. ],
  725. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  726. "time": "2020-12-10T16:26:23+00:00"
  727. },
  728. {
  729. "name": "consolidation/output-formatters",
  730. "version": "4.1.2",
  731. "source": {
  732. "type": "git",
  733. "url": "https://github.com/consolidation/output-formatters.git",
  734. "reference": "5821e6ae076bf690058a4de6c94dce97398a69c9"
  735. },
  736. "dist": {
  737. "type": "zip",
  738. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/5821e6ae076bf690058a4de6c94dce97398a69c9",
  739. "reference": "5821e6ae076bf690058a4de6c94dce97398a69c9",
  740. "shasum": ""
  741. },
  742. "require": {
  743. "dflydev/dot-access-data": "^1.1.0",
  744. "php": ">=7.1.3",
  745. "symfony/console": "^4|^5",
  746. "symfony/finder": "^4|^5"
  747. },
  748. "require-dev": {
  749. "php-coveralls/php-coveralls": "^2.4.2",
  750. "phpunit/phpunit": ">=7",
  751. "squizlabs/php_codesniffer": "^3",
  752. "symfony/var-dumper": "^4",
  753. "symfony/yaml": "^4",
  754. "yoast/phpunit-polyfills": "^0.2.0"
  755. },
  756. "suggest": {
  757. "symfony/var-dumper": "For using the var_dump formatter"
  758. },
  759. "type": "library",
  760. "extra": {
  761. "branch-alias": {
  762. "dev-main": "4.x-dev"
  763. }
  764. },
  765. "autoload": {
  766. "psr-4": {
  767. "Consolidation\\OutputFormatters\\": "src"
  768. }
  769. },
  770. "notification-url": "https://packagist.org/downloads/",
  771. "license": [
  772. "MIT"
  773. ],
  774. "authors": [
  775. {
  776. "name": "Greg Anderson",
  777. "email": "greg.1.anderson@greenknowe.org"
  778. }
  779. ],
  780. "description": "Format text by applying transformations provided by plug-in formatters.",
  781. "time": "2020-12-12T19:04:59+00:00"
  782. },
  783. {
  784. "name": "consolidation/robo",
  785. "version": "2.2.1",
  786. "source": {
  787. "type": "git",
  788. "url": "https://github.com/consolidation/Robo.git",
  789. "reference": "1a7c652371615fd72ff05380ffe6ce263eb31eb3"
  790. },
  791. "dist": {
  792. "type": "zip",
  793. "url": "https://api.github.com/repos/consolidation/Robo/zipball/1a7c652371615fd72ff05380ffe6ce263eb31eb3",
  794. "reference": "1a7c652371615fd72ff05380ffe6ce263eb31eb3",
  795. "shasum": ""
  796. },
  797. "require": {
  798. "consolidation/annotated-command": "^4.2.1",
  799. "consolidation/config": "^1.2.1|^2",
  800. "consolidation/log": "^1.1.1|^2.0.1",
  801. "consolidation/output-formatters": "^4.1.1",
  802. "consolidation/self-update": "^1.2",
  803. "league/container": "^2.4.1",
  804. "php": ">=7.1.3",
  805. "symfony/console": "^4.4.11|^5",
  806. "symfony/event-dispatcher": "^4.4.11|^5",
  807. "symfony/filesystem": "^4.4.11|^5",
  808. "symfony/finder": "^4.4.11|^5",
  809. "symfony/process": "^4.4.11|^5"
  810. },
  811. "conflict": {
  812. "codegyre/robo": "*"
  813. },
  814. "require-dev": {
  815. "g1a/composer-test-scenarios": "^3",
  816. "natxet/cssmin": "3.0.4",
  817. "patchwork/jsqueeze": "^2",
  818. "pear/archive_tar": "^1.4.4",
  819. "php-coveralls/php-coveralls": "^2.2",
  820. "phpdocumentor/reflection-docblock": "^4.3.2",
  821. "phpunit/phpunit": "^6.5.14",
  822. "squizlabs/php_codesniffer": "^3"
  823. },
  824. "suggest": {
  825. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  826. "natxet/cssmin": "For minifying CSS files in taskMinify",
  827. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  828. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  829. },
  830. "bin": [
  831. "robo"
  832. ],
  833. "type": "library",
  834. "extra": {
  835. "scenarios": {
  836. "symfony4": {
  837. "require": {
  838. "symfony/console": "^4.4.11",
  839. "symfony/event-dispatcher": "^4.4.11",
  840. "symfony/filesystem": "^4.4.11",
  841. "symfony/finder": "^4.4.11",
  842. "symfony/process": "^4.4.11",
  843. "phpunit/phpunit": "^6",
  844. "nikic/php-parser": "^2"
  845. },
  846. "remove": [
  847. "codeception/phpunit-wrapper"
  848. ],
  849. "config": {
  850. "platform": {
  851. "php": "7.1.3"
  852. }
  853. }
  854. }
  855. },
  856. "branch-alias": {
  857. "dev-master": "2.x-dev",
  858. "dev-main": "2.x-dev"
  859. }
  860. },
  861. "autoload": {
  862. "psr-4": {
  863. "Robo\\": "src"
  864. }
  865. },
  866. "notification-url": "https://packagist.org/downloads/",
  867. "license": [
  868. "MIT"
  869. ],
  870. "authors": [
  871. {
  872. "name": "Davert",
  873. "email": "davert.php@resend.cc"
  874. }
  875. ],
  876. "description": "Modern task runner",
  877. "time": "2020-09-08T16:23:18+00:00"
  878. },
  879. {
  880. "name": "consolidation/self-update",
  881. "version": "1.2.0",
  882. "source": {
  883. "type": "git",
  884. "url": "https://github.com/consolidation/self-update.git",
  885. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4"
  886. },
  887. "dist": {
  888. "type": "zip",
  889. "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4",
  890. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4",
  891. "shasum": ""
  892. },
  893. "require": {
  894. "php": ">=5.5.0",
  895. "symfony/console": "^2.8|^3|^4|^5",
  896. "symfony/filesystem": "^2.5|^3|^4|^5"
  897. },
  898. "bin": [
  899. "scripts/release"
  900. ],
  901. "type": "library",
  902. "extra": {
  903. "branch-alias": {
  904. "dev-master": "1.x-dev"
  905. }
  906. },
  907. "autoload": {
  908. "psr-4": {
  909. "SelfUpdate\\": "src"
  910. }
  911. },
  912. "notification-url": "https://packagist.org/downloads/",
  913. "license": [
  914. "MIT"
  915. ],
  916. "authors": [
  917. {
  918. "name": "Alexander Menk",
  919. "email": "menk@mestrona.net"
  920. },
  921. {
  922. "name": "Greg Anderson",
  923. "email": "greg.1.anderson@greenknowe.org"
  924. }
  925. ],
  926. "description": "Provides a self:update command for Symfony Console applications.",
  927. "time": "2020-04-13T02:49:20+00:00"
  928. },
  929. {
  930. "name": "consolidation/site-alias",
  931. "version": "3.0.1",
  932. "source": {
  933. "type": "git",
  934. "url": "https://github.com/consolidation/site-alias.git",
  935. "reference": "fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26"
  936. },
  937. "dist": {
  938. "type": "zip",
  939. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26",
  940. "reference": "fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26",
  941. "shasum": ""
  942. },
  943. "require": {
  944. "consolidation/config": "^1.2.1|^2",
  945. "php": ">=5.5.0"
  946. },
  947. "require-dev": {
  948. "consolidation/robo": "^1.2.3|^2",
  949. "g1a/composer-test-scenarios": "^3",
  950. "knplabs/github-api": "^2.7",
  951. "php-coveralls/php-coveralls": "^2.2",
  952. "php-http/guzzle6-adapter": "^1.1",
  953. "phpunit/phpunit": "^6",
  954. "squizlabs/php_codesniffer": "^2.8",
  955. "symfony/yaml": "~2.3|^3|^4.4|^5"
  956. },
  957. "type": "library",
  958. "extra": {
  959. "scenarios": {
  960. "phpunit5": {
  961. "require-dev": {
  962. "phpunit/phpunit": "^5.7.27"
  963. },
  964. "remove": [
  965. "php-coveralls/php-coveralls"
  966. ],
  967. "config": {
  968. "platform": {
  969. "php": "5.6.33"
  970. }
  971. }
  972. }
  973. },
  974. "branch-alias": {
  975. "dev-master": "3.x-dev"
  976. }
  977. },
  978. "autoload": {
  979. "psr-4": {
  980. "Consolidation\\SiteAlias\\": "src"
  981. }
  982. },
  983. "notification-url": "https://packagist.org/downloads/",
  984. "license": [
  985. "MIT"
  986. ],
  987. "authors": [
  988. {
  989. "name": "Greg Anderson",
  990. "email": "greg.1.anderson@greenknowe.org"
  991. },
  992. {
  993. "name": "Moshe Weitzman",
  994. "email": "weitzman@tejasa.com"
  995. }
  996. ],
  997. "description": "Manage alias records for local and remote sites.",
  998. "time": "2020-05-28T00:33:41+00:00"
  999. },
  1000. {
  1001. "name": "consolidation/site-process",
  1002. "version": "4.0.0",
  1003. "source": {
  1004. "type": "git",
  1005. "url": "https://github.com/consolidation/site-process.git",
  1006. "reference": "ad86475eb3fe73490eb1b6ff2e74ee0f09952e9d"
  1007. },
  1008. "dist": {
  1009. "type": "zip",
  1010. "url": "https://api.github.com/repos/consolidation/site-process/zipball/ad86475eb3fe73490eb1b6ff2e74ee0f09952e9d",
  1011. "reference": "ad86475eb3fe73490eb1b6ff2e74ee0f09952e9d",
  1012. "shasum": ""
  1013. },
  1014. "require": {
  1015. "consolidation/config": "^1.2.1|^2",
  1016. "consolidation/site-alias": "^3",
  1017. "php": ">=7.1.3",
  1018. "symfony/process": "^4.3.4"
  1019. },
  1020. "require-dev": {
  1021. "consolidation/robo": "^1.4.10|^2",
  1022. "g1a/composer-test-scenarios": "^3.0.4",
  1023. "knplabs/github-api": "^2.7",
  1024. "php-coveralls/php-coveralls": "^2.2",
  1025. "php-http/guzzle6-adapter": "^1.1",
  1026. "phpunit/phpunit": "^6.5.14",
  1027. "squizlabs/php_codesniffer": "^2.9.2"
  1028. },
  1029. "type": "library",
  1030. "extra": {
  1031. "scenarios": {
  1032. "symfony4": {
  1033. "require": {
  1034. "symfony/console": "^4.4.8",
  1035. "symfony/event-dispatcher": "^4.4.8",
  1036. "symfony/filesystem": "^4.4.8",
  1037. "symfony/finder": "^4.4.8"
  1038. },
  1039. "config": {
  1040. "platform": {
  1041. "php": "7.1.3"
  1042. }
  1043. }
  1044. }
  1045. },
  1046. "branch-alias": {
  1047. "dev-master": "4.x-dev"
  1048. }
  1049. },
  1050. "autoload": {
  1051. "psr-4": {
  1052. "Consolidation\\SiteProcess\\": "src"
  1053. }
  1054. },
  1055. "notification-url": "https://packagist.org/downloads/",
  1056. "license": [
  1057. "MIT"
  1058. ],
  1059. "authors": [
  1060. {
  1061. "name": "Greg Anderson",
  1062. "email": "greg.1.anderson@greenknowe.org"
  1063. },
  1064. {
  1065. "name": "Moshe Weitzman",
  1066. "email": "weitzman@tejasa.com"
  1067. }
  1068. ],
  1069. "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.",
  1070. "time": "2020-05-28T00:05:34+00:00"
  1071. },
  1072. {
  1073. "name": "container-interop/container-interop",
  1074. "version": "1.2.0",
  1075. "source": {
  1076. "type": "git",
  1077. "url": "https://github.com/container-interop/container-interop.git",
  1078. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  1079. },
  1080. "dist": {
  1081. "type": "zip",
  1082. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1083. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1084. "shasum": ""
  1085. },
  1086. "require": {
  1087. "psr/container": "^1.0"
  1088. },
  1089. "type": "library",
  1090. "autoload": {
  1091. "psr-4": {
  1092. "Interop\\Container\\": "src/Interop/Container/"
  1093. }
  1094. },
  1095. "notification-url": "https://packagist.org/downloads/",
  1096. "license": [
  1097. "MIT"
  1098. ],
  1099. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  1100. "homepage": "https://github.com/container-interop/container-interop",
  1101. "abandoned": "psr/container",
  1102. "time": "2017-02-14T19:40:03+00:00"
  1103. },
  1104. {
  1105. "name": "cweagans/composer-patches",
  1106. "version": "1.7.0",
  1107. "source": {
  1108. "type": "git",
  1109. "url": "https://github.com/cweagans/composer-patches.git",
  1110. "reference": "ae02121445ad75f4eaff800cc532b5e6233e2ddf"
  1111. },
  1112. "dist": {
  1113. "type": "zip",
  1114. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/ae02121445ad75f4eaff800cc532b5e6233e2ddf",
  1115. "reference": "ae02121445ad75f4eaff800cc532b5e6233e2ddf",
  1116. "shasum": ""
  1117. },
  1118. "require": {
  1119. "composer-plugin-api": "^1.0 || ^2.0",
  1120. "php": ">=5.3.0"
  1121. },
  1122. "require-dev": {
  1123. "composer/composer": "~1.0 || ~2.0",
  1124. "phpunit/phpunit": "~4.6"
  1125. },
  1126. "type": "composer-plugin",
  1127. "extra": {
  1128. "class": "cweagans\\Composer\\Patches"
  1129. },
  1130. "autoload": {
  1131. "psr-4": {
  1132. "cweagans\\Composer\\": "src"
  1133. }
  1134. },
  1135. "notification-url": "https://packagist.org/downloads/",
  1136. "license": [
  1137. "BSD-3-Clause"
  1138. ],
  1139. "authors": [
  1140. {
  1141. "name": "Cameron Eagans",
  1142. "email": "me@cweagans.net"
  1143. }
  1144. ],
  1145. "description": "Provides a way to patch Composer packages.",
  1146. "time": "2020-09-30T17:56:20+00:00"
  1147. },
  1148. {
  1149. "name": "d3/d3",
  1150. "version": "v3.5.17",
  1151. "dist": {
  1152. "type": "zip",
  1153. "url": "https://github.com/d3/d3/archive/v3.5.17.zip"
  1154. },
  1155. "type": "drupal-library"
  1156. },
  1157. {
  1158. "name": "dflydev/dot-access-configuration",
  1159. "version": "v1.0.3",
  1160. "source": {
  1161. "type": "git",
  1162. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  1163. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  1164. },
  1165. "dist": {
  1166. "type": "zip",
  1167. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1168. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1169. "shasum": ""
  1170. },
  1171. "require": {
  1172. "dflydev/dot-access-data": "1.*",
  1173. "dflydev/placeholder-resolver": "1.*",
  1174. "php": ">=5.3.2"
  1175. },
  1176. "require-dev": {
  1177. "symfony/yaml": "~2.1"
  1178. },
  1179. "suggest": {
  1180. "symfony/yaml": "Required for using the YAML Configuration Builders"
  1181. },
  1182. "type": "library",
  1183. "extra": {
  1184. "branch-alias": {
  1185. "dev-master": "1.0-dev"
  1186. }
  1187. },
  1188. "autoload": {
  1189. "psr-0": {
  1190. "Dflydev\\DotAccessConfiguration": "src"
  1191. }
  1192. },
  1193. "notification-url": "https://packagist.org/downloads/",
  1194. "license": [
  1195. "MIT"
  1196. ],
  1197. "authors": [
  1198. {
  1199. "name": "Dragonfly Development Inc.",
  1200. "email": "info@dflydev.com",
  1201. "homepage": "http://dflydev.com"
  1202. },
  1203. {
  1204. "name": "Beau Simensen",
  1205. "email": "beau@dflydev.com",
  1206. "homepage": "http://beausimensen.com"
  1207. }
  1208. ],
  1209. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  1210. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  1211. "keywords": [
  1212. "config",
  1213. "configuration"
  1214. ],
  1215. "support": {
  1216. "issues": "https://github.com/dflydev/dflydev-dot-access-configuration/issues",
  1217. "source": "https://github.com/dflydev/dflydev-dot-access-configuration/tree/master"
  1218. },
  1219. "time": "2018-09-08T23:00:17+00:00"
  1220. },
  1221. {
  1222. "name": "dflydev/dot-access-data",
  1223. "version": "v1.1.0",
  1224. "source": {
  1225. "type": "git",
  1226. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1227. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1228. },
  1229. "dist": {
  1230. "type": "zip",
  1231. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1232. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1233. "shasum": ""
  1234. },
  1235. "require": {
  1236. "php": ">=5.3.2"
  1237. },
  1238. "type": "library",
  1239. "extra": {
  1240. "branch-alias": {
  1241. "dev-master": "1.0-dev"
  1242. }
  1243. },
  1244. "autoload": {
  1245. "psr-0": {
  1246. "Dflydev\\DotAccessData": "src"
  1247. }
  1248. },
  1249. "notification-url": "https://packagist.org/downloads/",
  1250. "license": [
  1251. "MIT"
  1252. ],
  1253. "authors": [
  1254. {
  1255. "name": "Dragonfly Development Inc.",
  1256. "email": "info@dflydev.com",
  1257. "homepage": "http://dflydev.com"
  1258. },
  1259. {
  1260. "name": "Beau Simensen",
  1261. "email": "beau@dflydev.com",
  1262. "homepage": "http://beausimensen.com"
  1263. },
  1264. {
  1265. "name": "Carlos Frutos",
  1266. "email": "carlos@kiwing.it",
  1267. "homepage": "https://github.com/cfrutos"
  1268. }
  1269. ],
  1270. "description": "Given a deep data structure, access data by dot notation.",
  1271. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1272. "keywords": [
  1273. "access",
  1274. "data",
  1275. "dot",
  1276. "notation"
  1277. ],
  1278. "support": {
  1279. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1280. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/master"
  1281. },
  1282. "time": "2017-01-20T21:14:22+00:00"
  1283. },
  1284. {
  1285. "name": "dflydev/placeholder-resolver",
  1286. "version": "v1.0.3",
  1287. "source": {
  1288. "type": "git",
  1289. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1290. "reference": "d0161b4be1e15838327b01b21d0149f382d69906"
  1291. },
  1292. "dist": {
  1293. "type": "zip",
  1294. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/d0161b4be1e15838327b01b21d0149f382d69906",
  1295. "reference": "d0161b4be1e15838327b01b21d0149f382d69906",
  1296. "shasum": ""
  1297. },
  1298. "require": {
  1299. "php": ">=5.3.2"
  1300. },
  1301. "type": "library",
  1302. "extra": {
  1303. "branch-alias": {
  1304. "dev-master": "1.0-dev"
  1305. }
  1306. },
  1307. "autoload": {
  1308. "psr-0": {
  1309. "Dflydev\\PlaceholderResolver": "src"
  1310. }
  1311. },
  1312. "notification-url": "https://packagist.org/downloads/",
  1313. "license": [
  1314. "MIT"
  1315. ],
  1316. "authors": [
  1317. {
  1318. "name": "Dragonfly Development Inc.",
  1319. "email": "info@dflydev.com",
  1320. "homepage": "http://dflydev.com"
  1321. },
  1322. {
  1323. "name": "Beau Simensen",
  1324. "email": "beau@dflydev.com",
  1325. "homepage": "http://beausimensen.com"
  1326. }
  1327. ],
  1328. "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.",
  1329. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1330. "keywords": [
  1331. "placeholder",
  1332. "resolver"
  1333. ],
  1334. "support": {
  1335. "issues": "https://github.com/dflydev/dflydev-placeholder-resolver/issues",
  1336. "source": "https://github.com/dflydev/dflydev-placeholder-resolver/tree/v1.0.3"
  1337. },
  1338. "time": "2021-12-03T16:48:58+00:00"
  1339. },
  1340. {
  1341. "name": "doctrine/annotations",
  1342. "version": "1.13.2",
  1343. "source": {
  1344. "type": "git",
  1345. "url": "https://github.com/doctrine/annotations.git",
  1346. "reference": "5b668aef16090008790395c02c893b1ba13f7e08"
  1347. },
  1348. "dist": {
  1349. "type": "zip",
  1350. "url": "https://api.github.com/repos/doctrine/annotations/zipball/5b668aef16090008790395c02c893b1ba13f7e08",
  1351. "reference": "5b668aef16090008790395c02c893b1ba13f7e08",
  1352. "shasum": ""
  1353. },
  1354. "require": {
  1355. "doctrine/lexer": "1.*",
  1356. "ext-tokenizer": "*",
  1357. "php": "^7.1 || ^8.0",
  1358. "psr/cache": "^1 || ^2 || ^3"
  1359. },
  1360. "require-dev": {
  1361. "doctrine/cache": "^1.11 || ^2.0",
  1362. "doctrine/coding-standard": "^6.0 || ^8.1",
  1363. "phpstan/phpstan": "^0.12.20",
  1364. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
  1365. "symfony/cache": "^4.4 || ^5.2"
  1366. },
  1367. "type": "library",
  1368. "autoload": {
  1369. "psr-4": {
  1370. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1371. }
  1372. },
  1373. "notification-url": "https://packagist.org/downloads/",
  1374. "license": [
  1375. "MIT"
  1376. ],
  1377. "authors": [
  1378. {
  1379. "name": "Guilherme Blanco",
  1380. "email": "guilhermeblanco@gmail.com"
  1381. },
  1382. {
  1383. "name": "Roman Borschel",
  1384. "email": "roman@code-factory.org"
  1385. },
  1386. {
  1387. "name": "Benjamin Eberlei",
  1388. "email": "kontakt@beberlei.de"
  1389. },
  1390. {
  1391. "name": "Jonathan Wage",
  1392. "email": "jonwage@gmail.com"
  1393. },
  1394. {
  1395. "name": "Johannes Schmitt",
  1396. "email": "schmittjoh@gmail.com"
  1397. }
  1398. ],
  1399. "description": "Docblock Annotations Parser",
  1400. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1401. "keywords": [
  1402. "annotations",
  1403. "docblock",
  1404. "parser"
  1405. ],
  1406. "support": {
  1407. "issues": "https://github.com/doctrine/annotations/issues",
  1408. "source": "https://github.com/doctrine/annotations/tree/1.13.2"
  1409. },
  1410. "time": "2021-08-05T19:00:23+00:00"
  1411. },
  1412. {
  1413. "name": "doctrine/cache",
  1414. "version": "1.12.1",
  1415. "source": {
  1416. "type": "git",
  1417. "url": "https://github.com/doctrine/cache.git",
  1418. "reference": "4cf401d14df219fa6f38b671f5493449151c9ad8"
  1419. },
  1420. "dist": {
  1421. "type": "zip",
  1422. "url": "https://api.github.com/repos/doctrine/cache/zipball/4cf401d14df219fa6f38b671f5493449151c9ad8",
  1423. "reference": "4cf401d14df219fa6f38b671f5493449151c9ad8",
  1424. "shasum": ""
  1425. },
  1426. "require": {
  1427. "php": "~7.1 || ^8.0"
  1428. },
  1429. "conflict": {
  1430. "doctrine/common": ">2.2,<2.4"
  1431. },
  1432. "require-dev": {
  1433. "alcaeus/mongo-php-adapter": "^1.1",
  1434. "cache/integration-tests": "dev-master",
  1435. "doctrine/coding-standard": "^8.0",
  1436. "mongodb/mongodb": "^1.1",
  1437. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1438. "predis/predis": "~1.0",
  1439. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  1440. "symfony/cache": "^4.4 || ^5.2 || ^6.0@dev",
  1441. "symfony/var-exporter": "^4.4 || ^5.2 || ^6.0@dev"
  1442. },
  1443. "suggest": {
  1444. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  1445. },
  1446. "type": "library",
  1447. "autoload": {
  1448. "psr-4": {
  1449. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1450. }
  1451. },
  1452. "notification-url": "https://packagist.org/downloads/",
  1453. "license": [
  1454. "MIT"
  1455. ],
  1456. "authors": [
  1457. {
  1458. "name": "Guilherme Blanco",
  1459. "email": "guilhermeblanco@gmail.com"
  1460. },
  1461. {
  1462. "name": "Roman Borschel",
  1463. "email": "roman@code-factory.org"
  1464. },
  1465. {
  1466. "name": "Benjamin Eberlei",
  1467. "email": "kontakt@beberlei.de"
  1468. },
  1469. {
  1470. "name": "Jonathan Wage",
  1471. "email": "jonwage@gmail.com"
  1472. },
  1473. {
  1474. "name": "Johannes Schmitt",
  1475. "email": "schmittjoh@gmail.com"
  1476. }
  1477. ],
  1478. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  1479. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  1480. "keywords": [
  1481. "abstraction",
  1482. "apcu",
  1483. "cache",
  1484. "caching",
  1485. "couchdb",
  1486. "memcached",
  1487. "php",
  1488. "redis",
  1489. "xcache"
  1490. ],
  1491. "support": {
  1492. "issues": "https://github.com/doctrine/cache/issues",
  1493. "source": "https://github.com/doctrine/cache/tree/1.12.1"
  1494. },
  1495. "funding": [
  1496. {
  1497. "url": "https://www.doctrine-project.org/sponsorship.html",
  1498. "type": "custom"
  1499. },
  1500. {
  1501. "url": "https://www.patreon.com/phpdoctrine",
  1502. "type": "patreon"
  1503. },
  1504. {
  1505. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  1506. "type": "tidelift"
  1507. }
  1508. ],
  1509. "time": "2021-07-17T14:39:21+00:00"
  1510. },
  1511. {
  1512. "name": "doctrine/collections",
  1513. "version": "1.6.8",
  1514. "source": {
  1515. "type": "git",
  1516. "url": "https://github.com/doctrine/collections.git",
  1517. "reference": "1958a744696c6bb3bb0d28db2611dc11610e78af"
  1518. },
  1519. "dist": {
  1520. "type": "zip",
  1521. "url": "https://api.github.com/repos/doctrine/collections/zipball/1958a744696c6bb3bb0d28db2611dc11610e78af",
  1522. "reference": "1958a744696c6bb3bb0d28db2611dc11610e78af",
  1523. "shasum": ""
  1524. },
  1525. "require": {
  1526. "php": "^7.1.3 || ^8.0"
  1527. },
  1528. "require-dev": {
  1529. "doctrine/coding-standard": "^9.0",
  1530. "phpstan/phpstan": "^0.12",
  1531. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.1.5",
  1532. "vimeo/psalm": "^4.2.1"
  1533. },
  1534. "type": "library",
  1535. "autoload": {
  1536. "psr-4": {
  1537. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  1538. }
  1539. },
  1540. "notification-url": "https://packagist.org/downloads/",
  1541. "license": [
  1542. "MIT"
  1543. ],
  1544. "authors": [
  1545. {
  1546. "name": "Guilherme Blanco",
  1547. "email": "guilhermeblanco@gmail.com"
  1548. },
  1549. {
  1550. "name": "Roman Borschel",
  1551. "email": "roman@code-factory.org"
  1552. },
  1553. {
  1554. "name": "Benjamin Eberlei",
  1555. "email": "kontakt@beberlei.de"
  1556. },
  1557. {
  1558. "name": "Jonathan Wage",
  1559. "email": "jonwage@gmail.com"
  1560. },
  1561. {
  1562. "name": "Johannes Schmitt",
  1563. "email": "schmittjoh@gmail.com"
  1564. }
  1565. ],
  1566. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  1567. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  1568. "keywords": [
  1569. "array",
  1570. "collections",
  1571. "iterators",
  1572. "php"
  1573. ],
  1574. "support": {
  1575. "issues": "https://github.com/doctrine/collections/issues",
  1576. "source": "https://github.com/doctrine/collections/tree/1.6.8"
  1577. },
  1578. "time": "2021-08-10T18:51:53+00:00"
  1579. },
  1580. {
  1581. "name": "doctrine/common",
  1582. "version": "2.13.3",
  1583. "source": {
  1584. "type": "git",
  1585. "url": "https://github.com/doctrine/common.git",
  1586. "reference": "f3812c026e557892c34ef37f6ab808a6b567da7f"
  1587. },
  1588. "dist": {
  1589. "type": "zip",
  1590. "url": "https://api.github.com/repos/doctrine/common/zipball/f3812c026e557892c34ef37f6ab808a6b567da7f",
  1591. "reference": "f3812c026e557892c34ef37f6ab808a6b567da7f",
  1592. "shasum": ""
  1593. },
  1594. "require": {
  1595. "doctrine/annotations": "^1.0",
  1596. "doctrine/cache": "^1.0",
  1597. "doctrine/collections": "^1.0",
  1598. "doctrine/event-manager": "^1.0",
  1599. "doctrine/inflector": "^1.0",
  1600. "doctrine/lexer": "^1.0",
  1601. "doctrine/persistence": "^1.3.3",
  1602. "doctrine/reflection": "^1.0",
  1603. "php": "^7.1 || ^8.0"
  1604. },
  1605. "require-dev": {
  1606. "doctrine/coding-standard": "^1.0",
  1607. "phpstan/phpstan": "^0.11",
  1608. "phpstan/phpstan-phpunit": "^0.11",
  1609. "phpunit/phpunit": "^7.0",
  1610. "squizlabs/php_codesniffer": "^3.0",
  1611. "symfony/phpunit-bridge": "^4.0.5"
  1612. },
  1613. "type": "library",
  1614. "extra": {
  1615. "branch-alias": {
  1616. "dev-master": "2.11.x-dev"
  1617. }
  1618. },
  1619. "autoload": {
  1620. "psr-4": {
  1621. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1622. }
  1623. },
  1624. "notification-url": "https://packagist.org/downloads/",
  1625. "license": [
  1626. "MIT"
  1627. ],
  1628. "authors": [
  1629. {
  1630. "name": "Guilherme Blanco",
  1631. "email": "guilhermeblanco@gmail.com"
  1632. },
  1633. {
  1634. "name": "Roman Borschel",
  1635. "email": "roman@code-factory.org"
  1636. },
  1637. {
  1638. "name": "Benjamin Eberlei",
  1639. "email": "kontakt@beberlei.de"
  1640. },
  1641. {
  1642. "name": "Jonathan Wage",
  1643. "email": "jonwage@gmail.com"
  1644. },
  1645. {
  1646. "name": "Johannes Schmitt",
  1647. "email": "schmittjoh@gmail.com"
  1648. },
  1649. {
  1650. "name": "Marco Pivetta",
  1651. "email": "ocramius@gmail.com"
  1652. }
  1653. ],
  1654. "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.",
  1655. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1656. "keywords": [
  1657. "common",
  1658. "doctrine",
  1659. "php"
  1660. ],
  1661. "support": {
  1662. "issues": "https://github.com/doctrine/common/issues",
  1663. "source": "https://github.com/doctrine/common/tree/2.13.x"
  1664. },
  1665. "funding": [
  1666. {
  1667. "url": "https://www.doctrine-project.org/sponsorship.html",
  1668. "type": "custom"
  1669. },
  1670. {
  1671. "url": "https://www.patreon.com/phpdoctrine",
  1672. "type": "patreon"
  1673. },
  1674. {
  1675. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1676. "type": "tidelift"
  1677. }
  1678. ],
  1679. "time": "2020-06-05T16:46:05+00:00"
  1680. },
  1681. {
  1682. "name": "doctrine/event-manager",
  1683. "version": "1.1.1",
  1684. "source": {
  1685. "type": "git",
  1686. "url": "https://github.com/doctrine/event-manager.git",
  1687. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  1688. },
  1689. "dist": {
  1690. "type": "zip",
  1691. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1692. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1693. "shasum": ""
  1694. },
  1695. "require": {
  1696. "php": "^7.1 || ^8.0"
  1697. },
  1698. "conflict": {
  1699. "doctrine/common": "<2.9@dev"
  1700. },
  1701. "require-dev": {
  1702. "doctrine/coding-standard": "^6.0",
  1703. "phpunit/phpunit": "^7.0"
  1704. },
  1705. "type": "library",
  1706. "extra": {
  1707. "branch-alias": {
  1708. "dev-master": "1.0.x-dev"
  1709. }
  1710. },
  1711. "autoload": {
  1712. "psr-4": {
  1713. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1714. }
  1715. },
  1716. "notification-url": "https://packagist.org/downloads/",
  1717. "license": [
  1718. "MIT"
  1719. ],
  1720. "authors": [
  1721. {
  1722. "name": "Guilherme Blanco",
  1723. "email": "guilhermeblanco@gmail.com"
  1724. },
  1725. {
  1726. "name": "Roman Borschel",
  1727. "email": "roman@code-factory.org"
  1728. },
  1729. {
  1730. "name": "Benjamin Eberlei",
  1731. "email": "kontakt@beberlei.de"
  1732. },
  1733. {
  1734. "name": "Jonathan Wage",
  1735. "email": "jonwage@gmail.com"
  1736. },
  1737. {
  1738. "name": "Johannes Schmitt",
  1739. "email": "schmittjoh@gmail.com"
  1740. },
  1741. {
  1742. "name": "Marco Pivetta",
  1743. "email": "ocramius@gmail.com"
  1744. }
  1745. ],
  1746. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1747. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1748. "keywords": [
  1749. "event",
  1750. "event dispatcher",
  1751. "event manager",
  1752. "event system",
  1753. "events"
  1754. ],
  1755. "support": {
  1756. "issues": "https://github.com/doctrine/event-manager/issues",
  1757. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  1758. },
  1759. "funding": [
  1760. {
  1761. "url": "https://www.doctrine-project.org/sponsorship.html",
  1762. "type": "custom"
  1763. },
  1764. {
  1765. "url": "https://www.patreon.com/phpdoctrine",
  1766. "type": "patreon"
  1767. },
  1768. {
  1769. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1770. "type": "tidelift"
  1771. }
  1772. ],
  1773. "time": "2020-05-29T18:28:51+00:00"
  1774. },
  1775. {
  1776. "name": "doctrine/inflector",
  1777. "version": "1.4.4",
  1778. "source": {
  1779. "type": "git",
  1780. "url": "https://github.com/doctrine/inflector.git",
  1781. "reference": "4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9"
  1782. },
  1783. "dist": {
  1784. "type": "zip",
  1785. "url": "https://api.github.com/repos/doctrine/inflector/zipball/4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9",
  1786. "reference": "4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9",
  1787. "shasum": ""
  1788. },
  1789. "require": {
  1790. "php": "^7.1 || ^8.0"
  1791. },
  1792. "require-dev": {
  1793. "doctrine/coding-standard": "^8.0",
  1794. "phpstan/phpstan": "^0.12",
  1795. "phpstan/phpstan-phpunit": "^0.12",
  1796. "phpstan/phpstan-strict-rules": "^0.12",
  1797. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  1798. },
  1799. "type": "library",
  1800. "extra": {
  1801. "branch-alias": {
  1802. "dev-master": "2.0.x-dev"
  1803. }
  1804. },
  1805. "autoload": {
  1806. "psr-4": {
  1807. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector",
  1808. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1809. }
  1810. },
  1811. "notification-url": "https://packagist.org/downloads/",
  1812. "license": [
  1813. "MIT"
  1814. ],
  1815. "authors": [
  1816. {
  1817. "name": "Guilherme Blanco",
  1818. "email": "guilhermeblanco@gmail.com"
  1819. },
  1820. {
  1821. "name": "Roman Borschel",
  1822. "email": "roman@code-factory.org"
  1823. },
  1824. {
  1825. "name": "Benjamin Eberlei",
  1826. "email": "kontakt@beberlei.de"
  1827. },
  1828. {
  1829. "name": "Jonathan Wage",
  1830. "email": "jonwage@gmail.com"
  1831. },
  1832. {
  1833. "name": "Johannes Schmitt",
  1834. "email": "schmittjoh@gmail.com"
  1835. }
  1836. ],
  1837. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1838. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1839. "keywords": [
  1840. "inflection",
  1841. "inflector",
  1842. "lowercase",
  1843. "manipulation",
  1844. "php",
  1845. "plural",
  1846. "singular",
  1847. "strings",
  1848. "uppercase",
  1849. "words"
  1850. ],
  1851. "support": {
  1852. "issues": "https://github.com/doctrine/inflector/issues",
  1853. "source": "https://github.com/doctrine/inflector/tree/1.4.4"
  1854. },
  1855. "funding": [
  1856. {
  1857. "url": "https://www.doctrine-project.org/sponsorship.html",
  1858. "type": "custom"
  1859. },
  1860. {
  1861. "url": "https://www.patreon.com/phpdoctrine",
  1862. "type": "patreon"
  1863. },
  1864. {
  1865. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1866. "type": "tidelift"
  1867. }
  1868. ],
  1869. "time": "2021-04-16T17:34:40+00:00"
  1870. },
  1871. {
  1872. "name": "doctrine/lexer",
  1873. "version": "1.2.1",
  1874. "source": {
  1875. "type": "git",
  1876. "url": "https://github.com/doctrine/lexer.git",
  1877. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  1878. },
  1879. "dist": {
  1880. "type": "zip",
  1881. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  1882. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  1883. "shasum": ""
  1884. },
  1885. "require": {
  1886. "php": "^7.2 || ^8.0"
  1887. },
  1888. "require-dev": {
  1889. "doctrine/coding-standard": "^6.0",
  1890. "phpstan/phpstan": "^0.11.8",
  1891. "phpunit/phpunit": "^8.2"
  1892. },
  1893. "type": "library",
  1894. "extra": {
  1895. "branch-alias": {
  1896. "dev-master": "1.2.x-dev"
  1897. }
  1898. },
  1899. "autoload": {
  1900. "psr-4": {
  1901. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1902. }
  1903. },
  1904. "notification-url": "https://packagist.org/downloads/",
  1905. "license": [
  1906. "MIT"
  1907. ],
  1908. "authors": [
  1909. {
  1910. "name": "Guilherme Blanco",
  1911. "email": "guilhermeblanco@gmail.com"
  1912. },
  1913. {
  1914. "name": "Roman Borschel",
  1915. "email": "roman@code-factory.org"
  1916. },
  1917. {
  1918. "name": "Johannes Schmitt",
  1919. "email": "schmittjoh@gmail.com"
  1920. }
  1921. ],
  1922. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1923. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1924. "keywords": [
  1925. "annotations",
  1926. "docblock",
  1927. "lexer",
  1928. "parser",
  1929. "php"
  1930. ],
  1931. "support": {
  1932. "issues": "https://github.com/doctrine/lexer/issues",
  1933. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  1934. },
  1935. "funding": [
  1936. {
  1937. "url": "https://www.doctrine-project.org/sponsorship.html",
  1938. "type": "custom"
  1939. },
  1940. {
  1941. "url": "https://www.patreon.com/phpdoctrine",
  1942. "type": "patreon"
  1943. },
  1944. {
  1945. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1946. "type": "tidelift"
  1947. }
  1948. ],
  1949. "time": "2020-05-25T17:44:05+00:00"
  1950. },
  1951. {
  1952. "name": "doctrine/persistence",
  1953. "version": "1.3.8",
  1954. "source": {
  1955. "type": "git",
  1956. "url": "https://github.com/doctrine/persistence.git",
  1957. "reference": "7a6eac9fb6f61bba91328f15aa7547f4806ca288"
  1958. },
  1959. "dist": {
  1960. "type": "zip",
  1961. "url": "https://api.github.com/repos/doctrine/persistence/zipball/7a6eac9fb6f61bba91328f15aa7547f4806ca288",
  1962. "reference": "7a6eac9fb6f61bba91328f15aa7547f4806ca288",
  1963. "shasum": ""
  1964. },
  1965. "require": {
  1966. "doctrine/annotations": "^1.0",
  1967. "doctrine/cache": "^1.0",
  1968. "doctrine/collections": "^1.0",
  1969. "doctrine/event-manager": "^1.0",
  1970. "doctrine/reflection": "^1.2",
  1971. "php": "^7.1 || ^8.0"
  1972. },
  1973. "conflict": {
  1974. "doctrine/common": "<2.10@dev"
  1975. },
  1976. "require-dev": {
  1977. "doctrine/coding-standard": "^6.0",
  1978. "phpstan/phpstan": "^0.11",
  1979. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1980. "vimeo/psalm": "^3.11"
  1981. },
  1982. "type": "library",
  1983. "extra": {
  1984. "branch-alias": {
  1985. "dev-master": "1.3.x-dev"
  1986. }
  1987. },
  1988. "autoload": {
  1989. "psr-4": {
  1990. "Doctrine\\Common\\": "lib/Doctrine/Common",
  1991. "Doctrine\\Persistence\\": "lib/Doctrine/Persistence"
  1992. }
  1993. },
  1994. "notification-url": "https://packagist.org/downloads/",
  1995. "license": [
  1996. "MIT"
  1997. ],
  1998. "authors": [
  1999. {
  2000. "name": "Guilherme Blanco",
  2001. "email": "guilhermeblanco@gmail.com"
  2002. },
  2003. {
  2004. "name": "Roman Borschel",
  2005. "email": "roman@code-factory.org"
  2006. },
  2007. {
  2008. "name": "Benjamin Eberlei",
  2009. "email": "kontakt@beberlei.de"
  2010. },
  2011. {
  2012. "name": "Jonathan Wage",
  2013. "email": "jonwage@gmail.com"
  2014. },
  2015. {
  2016. "name": "Johannes Schmitt",
  2017. "email": "schmittjoh@gmail.com"
  2018. },
  2019. {
  2020. "name": "Marco Pivetta",
  2021. "email": "ocramius@gmail.com"
  2022. }
  2023. ],
  2024. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  2025. "homepage": "https://doctrine-project.org/projects/persistence.html",
  2026. "keywords": [
  2027. "mapper",
  2028. "object",
  2029. "odm",
  2030. "orm",
  2031. "persistence"
  2032. ],
  2033. "support": {
  2034. "issues": "https://github.com/doctrine/persistence/issues",
  2035. "source": "https://github.com/doctrine/persistence/tree/1.3.x"
  2036. },
  2037. "funding": [
  2038. {
  2039. "url": "https://www.doctrine-project.org/sponsorship.html",
  2040. "type": "custom"
  2041. },
  2042. {
  2043. "url": "https://www.patreon.com/phpdoctrine",
  2044. "type": "patreon"
  2045. },
  2046. {
  2047. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  2048. "type": "tidelift"
  2049. }
  2050. ],
  2051. "time": "2020-06-20T12:56:16+00:00"
  2052. },
  2053. {
  2054. "name": "doctrine/reflection",
  2055. "version": "1.2.2",
  2056. "source": {
  2057. "type": "git",
  2058. "url": "https://github.com/doctrine/reflection.git",
  2059. "reference": "fa587178be682efe90d005e3a322590d6ebb59a5"
  2060. },
  2061. "dist": {
  2062. "type": "zip",
  2063. "url": "https://api.github.com/repos/doctrine/reflection/zipball/fa587178be682efe90d005e3a322590d6ebb59a5",
  2064. "reference": "fa587178be682efe90d005e3a322590d6ebb59a5",
  2065. "shasum": ""
  2066. },
  2067. "require": {
  2068. "doctrine/annotations": "^1.0",
  2069. "ext-tokenizer": "*",
  2070. "php": "^7.1 || ^8.0"
  2071. },
  2072. "conflict": {
  2073. "doctrine/common": "<2.9"
  2074. },
  2075. "require-dev": {
  2076. "doctrine/coding-standard": "^6.0 || ^8.2.0",
  2077. "doctrine/common": "^2.10",
  2078. "phpstan/phpstan": "^0.11.0 || ^0.12.20",
  2079. "phpstan/phpstan-phpunit": "^0.11.0 || ^0.12.16",
  2080. "phpunit/phpunit": "^7.5 || ^9.1.5"
  2081. },
  2082. "type": "library",
  2083. "extra": {
  2084. "branch-alias": {
  2085. "dev-master": "1.2.x-dev"
  2086. }
  2087. },
  2088. "autoload": {
  2089. "psr-4": {
  2090. "Doctrine\\Common\\": "lib/Doctrine/Common"
  2091. }
  2092. },
  2093. "notification-url": "https://packagist.org/downloads/",
  2094. "license": [
  2095. "MIT"
  2096. ],
  2097. "authors": [
  2098. {
  2099. "name": "Guilherme Blanco",
  2100. "email": "guilhermeblanco@gmail.com"
  2101. },
  2102. {
  2103. "name": "Roman Borschel",
  2104. "email": "roman@code-factory.org"
  2105. },
  2106. {
  2107. "name": "Benjamin Eberlei",
  2108. "email": "kontakt@beberlei.de"
  2109. },
  2110. {
  2111. "name": "Jonathan Wage",
  2112. "email": "jonwage@gmail.com"
  2113. },
  2114. {
  2115. "name": "Johannes Schmitt",
  2116. "email": "schmittjoh@gmail.com"
  2117. },
  2118. {
  2119. "name": "Marco Pivetta",
  2120. "email": "ocramius@gmail.com"
  2121. }
  2122. ],
  2123. "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.",
  2124. "homepage": "https://www.doctrine-project.org/projects/reflection.html",
  2125. "keywords": [
  2126. "reflection",
  2127. "static"
  2128. ],
  2129. "support": {
  2130. "issues": "https://github.com/doctrine/reflection/issues",
  2131. "source": "https://github.com/doctrine/reflection/tree/1.2.2"
  2132. },
  2133. "abandoned": "roave/better-reflection",
  2134. "time": "2020-10-27T21:46:55+00:00"
  2135. },
  2136. {
  2137. "name": "drupal/address",
  2138. "version": "1.9.0",
  2139. "source": {
  2140. "type": "git",
  2141. "url": "https://git.drupalcode.org/project/address.git",
  2142. "reference": "8.x-1.9"
  2143. },
  2144. "dist": {
  2145. "type": "zip",
  2146. "url": "https://ftp.drupal.org/files/projects/address-8.x-1.9.zip",
  2147. "reference": "8.x-1.9",
  2148. "shasum": "c7e6406d88c6d6be9e8fe0091040d67012bdbf05"
  2149. },
  2150. "require": {
  2151. "commerceguys/addressing": "^1.0.7",
  2152. "drupal/core": "^8.8 || ^9"
  2153. },
  2154. "require-dev": {
  2155. "drupal/token": "^1.0"
  2156. },
  2157. "type": "drupal-module",
  2158. "extra": {
  2159. "drupal": {
  2160. "version": "8.x-1.9",
  2161. "datestamp": "1604422821",
  2162. "security-coverage": {
  2163. "status": "covered",
  2164. "message": "Covered by Drupal's security advisory policy"
  2165. }
  2166. }
  2167. },
  2168. "notification-url": "https://packages.drupal.org/8/downloads",
  2169. "license": [
  2170. "GPL-2.0-or-later"
  2171. ],
  2172. "authors": [
  2173. {
  2174. "name": "bojanz",
  2175. "homepage": "https://www.drupal.org/user/86106"
  2176. },
  2177. {
  2178. "name": "dww",
  2179. "homepage": "https://www.drupal.org/user/46549"
  2180. },
  2181. {
  2182. "name": "googletorp",
  2183. "homepage": "https://www.drupal.org/user/386230"
  2184. },
  2185. {
  2186. "name": "jsacksick",
  2187. "homepage": "https://www.drupal.org/user/972218"
  2188. },
  2189. {
  2190. "name": "mglaman",
  2191. "homepage": "https://www.drupal.org/user/2416470"
  2192. },
  2193. {
  2194. "name": "rszrama",
  2195. "homepage": "https://www.drupal.org/user/49344"
  2196. }
  2197. ],
  2198. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  2199. "homepage": "http://drupal.org/project/address",
  2200. "support": {
  2201. "source": "https://git.drupalcode.org/project/address"
  2202. }
  2203. },
  2204. {
  2205. "name": "drupal/admin_toolbar",
  2206. "version": "2.5.0",
  2207. "source": {
  2208. "type": "git",
  2209. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  2210. "reference": "8.x-2.5"
  2211. },
  2212. "dist": {
  2213. "type": "zip",
  2214. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.5.zip",
  2215. "reference": "8.x-2.5",
  2216. "shasum": "c71e58051b8d6818272df96d14cb11407d5e5ceb"
  2217. },
  2218. "require": {
  2219. "drupal/core": "^8.8.0 || ^9.0"
  2220. },
  2221. "type": "drupal-module",
  2222. "extra": {
  2223. "drupal": {
  2224. "version": "8.x-2.5",
  2225. "datestamp": "1629907119",
  2226. "security-coverage": {
  2227. "status": "covered",
  2228. "message": "Covered by Drupal's security advisory policy"
  2229. }
  2230. }
  2231. },
  2232. "notification-url": "https://packages.drupal.org/8/downloads",
  2233. "license": [
  2234. "GPL-2.0-or-later"
  2235. ],
  2236. "authors": [
  2237. {
  2238. "name": "Wilfrid Roze (eme)",
  2239. "homepage": "https://www.drupal.org/u/eme",
  2240. "role": "Maintainer"
  2241. },
  2242. {
  2243. "name": "Romain Jarraud (romainj)",
  2244. "homepage": "https://www.drupal.org/u/romainj",
  2245. "role": "Maintainer"
  2246. },
  2247. {
  2248. "name": "Adrian Cid Almaguer (adriancid)",
  2249. "homepage": "https://www.drupal.org/u/adriancid",
  2250. "email": "adriancid@gmail.com",
  2251. "role": "Maintainer"
  2252. },
  2253. {
  2254. "name": "Mohamed Anis Taktak (matio89)",
  2255. "homepage": "https://www.drupal.org/u/matio89",
  2256. "role": "Maintainer"
  2257. },
  2258. {
  2259. "name": "fethi.krout",
  2260. "homepage": "https://www.drupal.org/user/3206765"
  2261. },
  2262. {
  2263. "name": "matio89",
  2264. "homepage": "https://www.drupal.org/user/2320090"
  2265. },
  2266. {
  2267. "name": "romainj",
  2268. "homepage": "https://www.drupal.org/user/370706"
  2269. }
  2270. ],
  2271. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  2272. "homepage": "http://drupal.org/project/admin_toolbar",
  2273. "keywords": [
  2274. "Drupal",
  2275. "Toolbar"
  2276. ],
  2277. "support": {
  2278. "source": "https://git.drupalcode.org/project/admin_toolbar",
  2279. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  2280. }
  2281. },
  2282. {
  2283. "name": "drupal/adminimal_theme",
  2284. "version": "1.6.0",
  2285. "source": {
  2286. "type": "git",
  2287. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  2288. "reference": "8.x-1.6"
  2289. },
  2290. "dist": {
  2291. "type": "zip",
  2292. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.6.zip",
  2293. "reference": "8.x-1.6",
  2294. "shasum": "89132d0853388afe8dfd11fb83c69a48d8c13413"
  2295. },
  2296. "require": {
  2297. "drupal/core": "^8.8 || ^9"
  2298. },
  2299. "type": "drupal-theme",
  2300. "extra": {
  2301. "drupal": {
  2302. "version": "8.x-1.6",
  2303. "datestamp": "1602006937",
  2304. "security-coverage": {
  2305. "status": "covered",
  2306. "message": "Covered by Drupal's security advisory policy"
  2307. }
  2308. }
  2309. },
  2310. "notification-url": "https://packages.drupal.org/8/downloads",
  2311. "license": [
  2312. "GPL-2.0+"
  2313. ],
  2314. "authors": [
  2315. {
  2316. "name": "ANDiTKO",
  2317. "homepage": "https://www.drupal.org/user/1428124"
  2318. },
  2319. {
  2320. "name": "andrey.troeglazov",
  2321. "homepage": "https://www.drupal.org/user/3145389"
  2322. },
  2323. {
  2324. "name": "realityloop",
  2325. "homepage": "https://www.drupal.org/user/139189"
  2326. }
  2327. ],
  2328. "description": "Drupal administration theme with modern minimalist design.",
  2329. "homepage": "https://www.drupal.org/project/adminimal_theme",
  2330. "support": {
  2331. "source": "https://git.drupalcode.org/project/adminimal_theme",
  2332. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  2333. }
  2334. },
  2335. {
  2336. "name": "drupal/advanced_text_formatter",
  2337. "version": "2.1.1",
  2338. "source": {
  2339. "type": "git",
  2340. "url": "https://git.drupalcode.org/project/advanced_text_formatter.git",
  2341. "reference": "2.1.1"
  2342. },
  2343. "dist": {
  2344. "type": "zip",
  2345. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-2.1.1.zip",
  2346. "reference": "2.1.1",
  2347. "shasum": "c656349ce20bf6ca1f561b18bd223a993700bc6f"
  2348. },
  2349. "require": {
  2350. "drupal/core": "^8 || ^9"
  2351. },
  2352. "type": "drupal-module",
  2353. "extra": {
  2354. "drupal": {
  2355. "version": "2.1.1",
  2356. "datestamp": "1631794804",
  2357. "security-coverage": {
  2358. "status": "covered",
  2359. "message": "Covered by Drupal's security advisory policy"
  2360. }
  2361. }
  2362. },
  2363. "notification-url": "https://packages.drupal.org/8/downloads",
  2364. "license": [
  2365. "GPL-2.0-or-later"
  2366. ],
  2367. "authors": [
  2368. {
  2369. "name": "azovsky",
  2370. "homepage": "https://www.drupal.org/user/330533"
  2371. },
  2372. {
  2373. "name": "thmnhat",
  2374. "homepage": "https://www.drupal.org/user/998946"
  2375. }
  2376. ],
  2377. "description": "Provides an additional formatter for text field, text area and text format.",
  2378. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  2379. "support": {
  2380. "source": "https://git.drupalcode.org/project/advanced_text_formatter"
  2381. }
  2382. },
  2383. {
  2384. "name": "drupal/audiofield",
  2385. "version": "1.10.0",
  2386. "source": {
  2387. "type": "git",
  2388. "url": "https://git.drupalcode.org/project/audiofield.git",
  2389. "reference": "8.x-1.10"
  2390. },
  2391. "dist": {
  2392. "type": "zip",
  2393. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.10.zip",
  2394. "reference": "8.x-1.10",
  2395. "shasum": "0b321f6c01b77c2ff28ef8cb646af8ec223dc4c1"
  2396. },
  2397. "require": {
  2398. "drupal/core": "^8 || ^9"
  2399. },
  2400. "type": "drupal-module",
  2401. "extra": {
  2402. "drupal": {
  2403. "version": "8.x-1.10",
  2404. "datestamp": "1607014410",
  2405. "security-coverage": {
  2406. "status": "covered",
  2407. "message": "Covered by Drupal's security advisory policy"
  2408. }
  2409. },
  2410. "drush": {
  2411. "services": {
  2412. "drush.services.yml": "^9"
  2413. }
  2414. }
  2415. },
  2416. "notification-url": "https://packages.drupal.org/8/downloads",
  2417. "license": [
  2418. "GPL-2.0-or-later"
  2419. ],
  2420. "authors": [
  2421. {
  2422. "name": "Daniel Moberly",
  2423. "homepage": "https://www.drupal.org/u/danielmoberly",
  2424. "role": "Maintainer"
  2425. },
  2426. {
  2427. "name": "josipsaric",
  2428. "homepage": "https://www.drupal.org/user/3063287"
  2429. },
  2430. {
  2431. "name": "tamerzg",
  2432. "homepage": "https://www.drupal.org/user/464564"
  2433. }
  2434. ],
  2435. "description": "AudioField Module",
  2436. "homepage": "https://www.drupal.org/project/audiofield",
  2437. "support": {
  2438. "source": "https://git.drupalcode.org/project/audiofield",
  2439. "issues": "https://www.drupal.org/project/issues/audiofield"
  2440. }
  2441. },
  2442. {
  2443. "name": "drupal/auto_entitylabel",
  2444. "version": "dev-3.x",
  2445. "source": {
  2446. "type": "git",
  2447. "url": "https://git.drupalcode.org/project/auto_entitylabel.git",
  2448. "reference": "7d2063d5ee869d20e00409eca12bf6776fff7772"
  2449. },
  2450. "require": {
  2451. "drupal/core": "^8 || ^9"
  2452. },
  2453. "require-dev": {
  2454. "drupal/token": "^1.0"
  2455. },
  2456. "type": "drupal-module",
  2457. "extra": {
  2458. "branch-alias": {
  2459. "dev-3.x": "3.x-dev"
  2460. },
  2461. "drupal": {
  2462. "version": "8.x-3.0-beta3+6-dev",
  2463. "datestamp": "1609346741",
  2464. "security-coverage": {
  2465. "status": "not-covered",
  2466. "message": "Dev releases are not covered by Drupal security advisories."
  2467. }
  2468. }
  2469. },
  2470. "notification-url": "https://packages.drupal.org/8/downloads",
  2471. "license": [
  2472. "GPL-2.0-or-later"
  2473. ],
  2474. "authors": [
  2475. {
  2476. "name": "Pravin Ajaaz",
  2477. "homepage": "https://www.drupal.org/user/2910049"
  2478. },
  2479. {
  2480. "name": "RenatoG",
  2481. "homepage": "https://www.drupal.org/user/3326031"
  2482. },
  2483. {
  2484. "name": "VladimirAus",
  2485. "homepage": "https://www.drupal.org/user/673120"
  2486. },
  2487. {
  2488. "name": "bforchhammer",
  2489. "homepage": "https://www.drupal.org/user/216396"
  2490. },
  2491. {
  2492. "name": "colan",
  2493. "homepage": "https://www.drupal.org/user/58704"
  2494. },
  2495. {
  2496. "name": "diqidoq",
  2497. "homepage": "https://www.drupal.org/user/1001934"
  2498. },
  2499. {
  2500. "name": "purushotam.rai",
  2501. "homepage": "https://www.drupal.org/user/3193859"
  2502. }
  2503. ],
  2504. "description": "Allows hiding of entity label fields and automatic label creation.",
  2505. "homepage": "https://www.drupal.org/project/auto_entitylabel",
  2506. "support": {
  2507. "source": "https://git.drupalcode.org/project/auto_entitylabel",
  2508. "issues": "https://www.drupal.org/project/issues/auto_entitylabel"
  2509. },
  2510. "time": "2021-03-01T17:14:07+00:00"
  2511. },
  2512. {
  2513. "name": "drupal/autocomplete_deluxe",
  2514. "version": "2.0.1",
  2515. "source": {
  2516. "type": "git",
  2517. "url": "https://git.drupalcode.org/project/autocomplete_deluxe.git",
  2518. "reference": "2.0.1"
  2519. },
  2520. "dist": {
  2521. "type": "zip",
  2522. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-2.0.1.zip",
  2523. "reference": "2.0.1",
  2524. "shasum": "244d3a1992da6ec126220bab22a933f9f6780d78"
  2525. },
  2526. "require": {
  2527. "drupal/core": "^8 || ^9"
  2528. },
  2529. "type": "drupal-module",
  2530. "extra": {
  2531. "drupal": {
  2532. "version": "2.0.1",
  2533. "datestamp": "1630177423",
  2534. "security-coverage": {
  2535. "status": "covered",
  2536. "message": "Covered by Drupal's security advisory policy"
  2537. }
  2538. }
  2539. },
  2540. "notification-url": "https://packages.drupal.org/8/downloads",
  2541. "license": [
  2542. "GPL-2.0-or-later"
  2543. ],
  2544. "authors": [
  2545. {
  2546. "name": "Vardot",
  2547. "homepage": "https://www.drupal.org/vardot",
  2548. "role": "Maintenance for D8 and D9 versions"
  2549. },
  2550. {
  2551. "name": "Mediacurrent",
  2552. "homepage": "https://www.drupal.org/mediacurrent",
  2553. "role": "Supporting organization"
  2554. },
  2555. {
  2556. "name": "edwardchiapet",
  2557. "homepage": "https://www.drupal.org/user/2354784"
  2558. },
  2559. {
  2560. "name": "klausi",
  2561. "homepage": "https://www.drupal.org/user/262198"
  2562. },
  2563. {
  2564. "name": "mpriscella",
  2565. "homepage": "https://www.drupal.org/user/2354820"
  2566. },
  2567. {
  2568. "name": "sepgil",
  2569. "homepage": "https://www.drupal.org/user/512828"
  2570. }
  2571. ],
  2572. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  2573. "homepage": "https://www.drupal.org/project/autocomplete_deluxe",
  2574. "support": {
  2575. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  2576. "issues": "https://www.drupal.org/project/issues/autocomplete_deluxe"
  2577. }
  2578. },
  2579. {
  2580. "name": "drupal/autologout",
  2581. "version": "1.3.0",
  2582. "source": {
  2583. "type": "git",
  2584. "url": "https://git.drupalcode.org/project/autologout.git",
  2585. "reference": "8.x-1.3"
  2586. },
  2587. "dist": {
  2588. "type": "zip",
  2589. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.3.zip",
  2590. "reference": "8.x-1.3",
  2591. "shasum": "87733b2042d9dcdee0d8f33d206872208a8c97ea"
  2592. },
  2593. "require": {
  2594. "drupal/core": "^8 || ^9"
  2595. },
  2596. "type": "drupal-module",
  2597. "extra": {
  2598. "drupal": {
  2599. "version": "8.x-1.3",
  2600. "datestamp": "1587193798",
  2601. "security-coverage": {
  2602. "status": "covered",
  2603. "message": "Covered by Drupal's security advisory policy"
  2604. }
  2605. }
  2606. },
  2607. "notification-url": "https://packages.drupal.org/8/downloads",
  2608. "license": [
  2609. "GPL-2.0+"
  2610. ],
  2611. "authors": [
  2612. {
  2613. "name": "AjK",
  2614. "homepage": "https://www.drupal.org/user/39030"
  2615. },
  2616. {
  2617. "name": "AjitS",
  2618. "homepage": "https://www.drupal.org/user/981944"
  2619. },
  2620. {
  2621. "name": "boshtian",
  2622. "homepage": "https://www.drupal.org/user/1773456"
  2623. },
  2624. {
  2625. "name": "dandrews",
  2626. "homepage": "https://www.drupal.org/user/2014490"
  2627. },
  2628. {
  2629. "name": "darksnow",
  2630. "homepage": "https://www.drupal.org/user/391915"
  2631. },
  2632. {
  2633. "name": "johnennew",
  2634. "homepage": "https://www.drupal.org/user/1150042"
  2635. },
  2636. {
  2637. "name": "jrglasgow",
  2638. "homepage": "https://www.drupal.org/user/36590"
  2639. },
  2640. {
  2641. "name": "kmasood",
  2642. "homepage": "https://www.drupal.org/user/1262860"
  2643. },
  2644. {
  2645. "name": "levelos",
  2646. "homepage": "https://www.drupal.org/user/54135"
  2647. },
  2648. {
  2649. "name": "prabeen.giri",
  2650. "homepage": "https://www.drupal.org/user/913078"
  2651. },
  2652. {
  2653. "name": "str8",
  2654. "homepage": "https://www.drupal.org/user/2865063"
  2655. }
  2656. ],
  2657. "description": "Adds automated timed logout.",
  2658. "homepage": "http://drupal.org/project/autologout",
  2659. "support": {
  2660. "source": "https://git.drupalcode.org/project/autologout"
  2661. }
  2662. },
  2663. {
  2664. "name": "drupal/better_exposed_filters",
  2665. "version": "5.0.0",
  2666. "source": {
  2667. "type": "git",
  2668. "url": "https://git.drupalcode.org/project/better_exposed_filters.git",
  2669. "reference": "8.x-5.0"
  2670. },
  2671. "dist": {
  2672. "type": "zip",
  2673. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-8.x-5.0.zip",
  2674. "reference": "8.x-5.0",
  2675. "shasum": "ef575591af202b5c6867841ce58e1f447455e502"
  2676. },
  2677. "require": {
  2678. "drupal/core": "^8.8 || ^9",
  2679. "drupal/jquery_ui": "^1.4",
  2680. "drupal/jquery_ui_datepicker": "^1.0",
  2681. "drupal/jquery_ui_slider": "^1.1",
  2682. "drupal/jquery_ui_touch_punch": "^1.0"
  2683. },
  2684. "type": "drupal-module",
  2685. "extra": {
  2686. "drupal": {
  2687. "version": "8.x-5.0",
  2688. "datestamp": "1634748760",
  2689. "security-coverage": {
  2690. "status": "covered",
  2691. "message": "Covered by Drupal's security advisory policy"
  2692. }
  2693. }
  2694. },
  2695. "notification-url": "https://packages.drupal.org/8/downloads",
  2696. "license": [
  2697. "GPL-2.0-or-later"
  2698. ],
  2699. "authors": [
  2700. {
  2701. "name": "Mike Keran",
  2702. "homepage": "https://www.drupal.org/u/mikeker"
  2703. },
  2704. {
  2705. "name": "Martin Keereman",
  2706. "homepage": "https://www.drupal.org/u/etroid"
  2707. },
  2708. {
  2709. "name": "Neslee Canil Pinto",
  2710. "homepage": "https://www.drupal.org/u/neslee-canil-pinto"
  2711. },
  2712. {
  2713. "name": "jkopel",
  2714. "homepage": "https://www.drupal.org/user/66207"
  2715. },
  2716. {
  2717. "name": "mikeker",
  2718. "homepage": "https://www.drupal.org/user/192273"
  2719. },
  2720. {
  2721. "name": "rlhawk",
  2722. "homepage": "https://www.drupal.org/user/352283"
  2723. }
  2724. ],
  2725. "description": "Replaces the Views default single- or multi-select boxes with more advanced options.",
  2726. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2727. "support": {
  2728. "source": "https://git.drupalcode.org/project/better_exposed_filters",
  2729. "issues": "https://www.drupal.org/project/issues/better_exposed_filters"
  2730. }
  2731. },
  2732. {
  2733. "name": "drupal/betterlogin",
  2734. "version": "1.5.0",
  2735. "source": {
  2736. "type": "git",
  2737. "url": "https://git.drupalcode.org/project/betterlogin.git",
  2738. "reference": "8.x-1.5"
  2739. },
  2740. "dist": {
  2741. "type": "zip",
  2742. "url": "https://ftp.drupal.org/files/projects/betterlogin-8.x-1.5.zip",
  2743. "reference": "8.x-1.5",
  2744. "shasum": "2351972813754d0d4f15e49c9a933450dc1297f0"
  2745. },
  2746. "require": {
  2747. "drupal/core": "^8 || ^9"
  2748. },
  2749. "type": "drupal-module",
  2750. "extra": {
  2751. "drupal": {
  2752. "version": "8.x-1.5",
  2753. "datestamp": "1588242718",
  2754. "security-coverage": {
  2755. "status": "covered",
  2756. "message": "Covered by Drupal's security advisory policy"
  2757. }
  2758. }
  2759. },
  2760. "notification-url": "https://packages.drupal.org/8/downloads",
  2761. "license": [
  2762. "GPL-2.0-or-later"
  2763. ],
  2764. "authors": [
  2765. {
  2766. "name": "theamoeba",
  2767. "homepage": "https://www.drupal.org/user/251700"
  2768. },
  2769. {
  2770. "name": "yogeshmpawar",
  2771. "homepage": "https://www.drupal.org/user/2922907"
  2772. }
  2773. ],
  2774. "description": "Make the login screens better :)",
  2775. "homepage": "https://www.drupal.org/project/betterlogin",
  2776. "support": {
  2777. "source": "https://git.drupalcode.org/project/betterlogin"
  2778. }
  2779. },
  2780. {
  2781. "name": "drupal/block_class",
  2782. "version": "1.3.0",
  2783. "source": {
  2784. "type": "git",
  2785. "url": "https://git.drupalcode.org/project/block_class.git",
  2786. "reference": "8.x-1.3"
  2787. },
  2788. "dist": {
  2789. "type": "zip",
  2790. "url": "https://ftp.drupal.org/files/projects/block_class-8.x-1.3.zip",
  2791. "reference": "8.x-1.3",
  2792. "shasum": "29cfdb646ef83210f0eced30b38243339158fe3f"
  2793. },
  2794. "require": {
  2795. "drupal/core": "^8 || ^9"
  2796. },
  2797. "type": "drupal-module",
  2798. "extra": {
  2799. "drupal": {
  2800. "version": "8.x-1.3",
  2801. "datestamp": "1604426178",
  2802. "security-coverage": {
  2803. "status": "covered",
  2804. "message": "Covered by Drupal's security advisory policy"
  2805. }
  2806. }
  2807. },
  2808. "notification-url": "https://packages.drupal.org/8/downloads",
  2809. "license": [
  2810. "GPL-2.0-or-later"
  2811. ],
  2812. "authors": [
  2813. {
  2814. "name": "Todd Nienkerk",
  2815. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2816. "role": "Maintainer"
  2817. },
  2818. {
  2819. "name": "Renato Gonçalves (RenatoG)",
  2820. "homepage": "https://www.drupal.org/u/RenatoG",
  2821. "email": "renatog@ciandt.com",
  2822. "role": "Maintainer"
  2823. },
  2824. {
  2825. "name": "Neslee Canil Pinto",
  2826. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  2827. "role": "Maintainer"
  2828. },
  2829. {
  2830. "name": "Aaron Stanush",
  2831. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2832. "role": "Maintainer"
  2833. },
  2834. {
  2835. "name": "David Suissa (DYdave)",
  2836. "homepage": "https://www.drupal.org/u/DYdave",
  2837. "role": "Maintainer"
  2838. },
  2839. {
  2840. "name": "Four Kitchens",
  2841. "homepage": "https://www.drupal.org/user/358502",
  2842. "role": "Maintainer"
  2843. },
  2844. {
  2845. "name": "berenddeboer",
  2846. "homepage": "https://www.drupal.org/u/berenddeboer",
  2847. "role": "Maintainer"
  2848. },
  2849. {
  2850. "name": "elliotttf",
  2851. "homepage": "https://www.drupal.org/u/elliotttf",
  2852. "role": "Maintainer"
  2853. },
  2854. {
  2855. "name": "Michal Minecki (mirzu)",
  2856. "homepage": "https://www.drupal.org/u/mirzu",
  2857. "role": "Maintainer"
  2858. },
  2859. {
  2860. "name": "Patrick Coffey (pcoffey)",
  2861. "homepage": "https://www.drupal.org/u/pcoffey",
  2862. "role": "Maintainer"
  2863. },
  2864. {
  2865. "name": "Taylor Smith (tsmith512)",
  2866. "homepage": "https://www.drupal.org/u/tsmith512",
  2867. "role": "Maintainer"
  2868. }
  2869. ],
  2870. "description": "Allows assigning classes to Blocks.",
  2871. "homepage": "https://www.drupal.org/project/block_class",
  2872. "keywords": [
  2873. "Drupal"
  2874. ],
  2875. "support": {
  2876. "source": "https://git.drupalcode.org/project/block_class",
  2877. "issues": "https://www.drupal.org/project/issues/block_class",
  2878. "irc": "irc://irc.freenode.org/drupal-contribute"
  2879. }
  2880. },
  2881. {
  2882. "name": "drupal/bulkdelete",
  2883. "version": "dev-1.x",
  2884. "source": {
  2885. "type": "git",
  2886. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2887. "reference": "36e12429e99606463b9ef15203c2018de69965b2"
  2888. },
  2889. "require": {
  2890. "drupal/core": "^8.7.7 || ^9"
  2891. },
  2892. "type": "drupal-module",
  2893. "extra": {
  2894. "branch-alias": {
  2895. "dev-1.x": "1.x-dev"
  2896. },
  2897. "drupal": {
  2898. "version": "8.x-1.x-dev",
  2899. "datestamp": "1590300128",
  2900. "security-coverage": {
  2901. "status": "not-covered",
  2902. "message": "Dev releases are not covered by Drupal security advisories."
  2903. }
  2904. }
  2905. },
  2906. "notification-url": "https://packages.drupal.org/8/downloads",
  2907. "license": [
  2908. "GPL-2.0-or-later"
  2909. ],
  2910. "authors": [
  2911. {
  2912. "name": "Kars-T",
  2913. "homepage": "https://www.drupal.org/user/224499"
  2914. },
  2915. {
  2916. "name": "Rahul Seth",
  2917. "homepage": "https://www.drupal.org/user/2694359"
  2918. },
  2919. {
  2920. "name": "adriancid",
  2921. "homepage": "https://www.drupal.org/user/1962106"
  2922. },
  2923. {
  2924. "name": "robertDouglass",
  2925. "homepage": "https://www.drupal.org/user/5449"
  2926. }
  2927. ],
  2928. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2929. "homepage": "https://www.drupal.org/project/bulkdelete",
  2930. "support": {
  2931. "source": "https://git.drupalcode.org/project/bulkdelete"
  2932. },
  2933. "time": "2020-05-24T06:01:38+00:00"
  2934. },
  2935. {
  2936. "name": "drupal/cer",
  2937. "version": "4.0.0-alpha3",
  2938. "source": {
  2939. "type": "git",
  2940. "url": "https://git.drupalcode.org/project/cer.git",
  2941. "reference": "8.x-4.0-alpha3"
  2942. },
  2943. "dist": {
  2944. "type": "zip",
  2945. "url": "https://ftp.drupal.org/files/projects/cer-8.x-4.0-alpha3.zip",
  2946. "reference": "8.x-4.0-alpha3",
  2947. "shasum": "3c508e842a2c17235e4c9909ab64ef1aeb9d3ebe"
  2948. },
  2949. "require": {
  2950. "drupal/core": "^8 || ^9"
  2951. },
  2952. "type": "drupal-module",
  2953. "extra": {
  2954. "drupal": {
  2955. "version": "8.x-4.0-alpha3",
  2956. "datestamp": "1620240213",
  2957. "security-coverage": {
  2958. "status": "not-covered",
  2959. "message": "Project has not opted into security advisory coverage!"
  2960. }
  2961. }
  2962. },
  2963. "notification-url": "https://packages.drupal.org/8/downloads",
  2964. "license": [
  2965. "GPL-2.0-or-later"
  2966. ],
  2967. "authors": [
  2968. {
  2969. "name": "bmcclure",
  2970. "homepage": "https://www.drupal.org/user/278485"
  2971. },
  2972. {
  2973. "name": "chertzog",
  2974. "homepage": "https://www.drupal.org/user/806366"
  2975. },
  2976. {
  2977. "name": "gcb",
  2978. "homepage": "https://www.drupal.org/user/1682976"
  2979. },
  2980. {
  2981. "name": "gregcube",
  2982. "homepage": "https://www.drupal.org/user/336930"
  2983. },
  2984. {
  2985. "name": "jrglasgow",
  2986. "homepage": "https://www.drupal.org/user/36590"
  2987. },
  2988. {
  2989. "name": "phenaproxima",
  2990. "homepage": "https://www.drupal.org/user/205645"
  2991. }
  2992. ],
  2993. "description": "Allows user to create two-way references between entities.",
  2994. "homepage": "https://www.drupal.org/project/cer",
  2995. "support": {
  2996. "source": "https://git.drupalcode.org/project/cer"
  2997. }
  2998. },
  2999. {
  3000. "name": "drupal/config_devel",
  3001. "version": "dev-1.x",
  3002. "source": {
  3003. "type": "git",
  3004. "url": "https://git.drupalcode.org/project/config_devel.git",
  3005. "reference": "e519faae46b88fc23a88f64c22b6146cfec863a9"
  3006. },
  3007. "require": {
  3008. "drupal/core": "^8 || ^9"
  3009. },
  3010. "type": "drupal-module",
  3011. "extra": {
  3012. "branch-alias": {
  3013. "dev-1.x": "1.x-dev"
  3014. },
  3015. "drupal": {
  3016. "version": "8.x-1.7+3-dev",
  3017. "datestamp": "1607535421",
  3018. "security-coverage": {
  3019. "status": "not-covered",
  3020. "message": "Dev releases are not covered by Drupal security advisories."
  3021. }
  3022. }
  3023. },
  3024. "notification-url": "https://packages.drupal.org/8/downloads",
  3025. "license": [
  3026. "GPL-2.0+"
  3027. ],
  3028. "authors": [
  3029. {
  3030. "name": "alexpott",
  3031. "homepage": "https://www.drupal.org/user/157725"
  3032. },
  3033. {
  3034. "name": "benjy",
  3035. "homepage": "https://www.drupal.org/user/1852732"
  3036. },
  3037. {
  3038. "name": "chx",
  3039. "homepage": "https://www.drupal.org/user/9446"
  3040. },
  3041. {
  3042. "name": "joachim",
  3043. "homepage": "https://www.drupal.org/user/107701"
  3044. },
  3045. {
  3046. "name": "nedjo",
  3047. "homepage": "https://www.drupal.org/user/4481"
  3048. },
  3049. {
  3050. "name": "tim.plunkett",
  3051. "homepage": "https://www.drupal.org/user/241634"
  3052. },
  3053. {
  3054. "name": "vijaycs85",
  3055. "homepage": "https://www.drupal.org/user/93488"
  3056. }
  3057. ],
  3058. "description": "Helps developers work with configuration.",
  3059. "homepage": "https://www.drupal.org/project/config_devel",
  3060. "support": {
  3061. "source": "https://git.drupalcode.org/project/config_devel"
  3062. },
  3063. "time": "2020-12-11T15:36:08+00:00"
  3064. },
  3065. {
  3066. "name": "drupal/config_filter",
  3067. "version": "1.8.0",
  3068. "source": {
  3069. "type": "git",
  3070. "url": "https://git.drupalcode.org/project/config_filter.git",
  3071. "reference": "8.x-1.8"
  3072. },
  3073. "dist": {
  3074. "type": "zip",
  3075. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.8.zip",
  3076. "reference": "8.x-1.8",
  3077. "shasum": "5def5f97e79d6f5af6bb7007f012443475c90bfe"
  3078. },
  3079. "require": {
  3080. "drupal/core": "^8 || ^9"
  3081. },
  3082. "suggest": {
  3083. "drupal/config_split": "Split site configuration for different environments."
  3084. },
  3085. "type": "drupal-module",
  3086. "extra": {
  3087. "drupal": {
  3088. "version": "8.x-1.8",
  3089. "datestamp": "1603870062",
  3090. "security-coverage": {
  3091. "status": "covered",
  3092. "message": "Covered by Drupal's security advisory policy"
  3093. }
  3094. }
  3095. },
  3096. "notification-url": "https://packages.drupal.org/8/downloads",
  3097. "license": [
  3098. "GPL-2.0-or-later"
  3099. ],
  3100. "authors": [
  3101. {
  3102. "name": "Fabian Bircher",
  3103. "homepage": "https://www.drupal.org/u/bircher",
  3104. "email": "opensource@fabianbircher.com",
  3105. "role": "Maintainer"
  3106. },
  3107. {
  3108. "name": "Nuvole Web",
  3109. "homepage": "http://nuvole.org",
  3110. "email": "info@nuvole.org",
  3111. "role": "Maintainer"
  3112. },
  3113. {
  3114. "name": "pescetti",
  3115. "homepage": "https://www.drupal.org/user/436244"
  3116. }
  3117. ],
  3118. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  3119. "homepage": "https://www.drupal.org/project/config_filter",
  3120. "keywords": [
  3121. "Drupal",
  3122. "configuration",
  3123. "configuration management"
  3124. ],
  3125. "support": {
  3126. "source": "https://git.drupalcode.org/project/config_filter",
  3127. "issues": "https://www.drupal.org/project/issues/config_filter",
  3128. "slack": "https://drupal.slack.com/archives/C45342CDD"
  3129. }
  3130. },
  3131. {
  3132. "name": "drupal/config_ignore",
  3133. "version": "2.3.0",
  3134. "source": {
  3135. "type": "git",
  3136. "url": "https://git.drupalcode.org/project/config_ignore.git",
  3137. "reference": "8.x-2.3"
  3138. },
  3139. "dist": {
  3140. "type": "zip",
  3141. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.3.zip",
  3142. "reference": "8.x-2.3",
  3143. "shasum": "2e1f07a455275fb6637909921a8915646601fc00"
  3144. },
  3145. "require": {
  3146. "drupal/config_filter": "^1 || ^2",
  3147. "drupal/core": "^8 || ^9"
  3148. },
  3149. "type": "drupal-module",
  3150. "extra": {
  3151. "drupal": {
  3152. "version": "8.x-2.3",
  3153. "datestamp": "1608306489",
  3154. "security-coverage": {
  3155. "status": "covered",
  3156. "message": "Covered by Drupal's security advisory policy"
  3157. }
  3158. }
  3159. },
  3160. "notification-url": "https://packages.drupal.org/8/downloads",
  3161. "license": [
  3162. "GPL-2.0-or-later"
  3163. ],
  3164. "authors": [
  3165. {
  3166. "name": "Tommy Lynge Jørgensen",
  3167. "homepage": "https://www.drupal.org/u/tlyngej",
  3168. "email": "tlyngej@gmail.com",
  3169. "role": "Maintainer"
  3170. },
  3171. {
  3172. "name": "Fabian Bircher",
  3173. "homepage": "https://www.drupal.org/u/bircher",
  3174. "role": "Maintainer"
  3175. },
  3176. {
  3177. "name": "tlyngej",
  3178. "homepage": "https://www.drupal.org/user/413139"
  3179. }
  3180. ],
  3181. "description": "Ignore certain configuration during import.",
  3182. "homepage": "http://drupal.org/project/config_ignore",
  3183. "support": {
  3184. "source": "https://git.drupalcode.org/project/config_ignore",
  3185. "issues": "http://drupal.org/project/config_ignore",
  3186. "irc": "irc://irc.freenode.org/drupal-contribute"
  3187. }
  3188. },
  3189. {
  3190. "name": "drupal/config_update",
  3191. "version": "1.7.0",
  3192. "source": {
  3193. "type": "git",
  3194. "url": "https://git.drupalcode.org/project/config_update.git",
  3195. "reference": "8.x-1.7"
  3196. },
  3197. "dist": {
  3198. "type": "zip",
  3199. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.7.zip",
  3200. "reference": "8.x-1.7",
  3201. "shasum": "8f079abf7c2ea826a27fa5224b0770a26404c968"
  3202. },
  3203. "require": {
  3204. "drupal/core": "^8 || ^9"
  3205. },
  3206. "type": "drupal-module",
  3207. "extra": {
  3208. "drupal": {
  3209. "version": "8.x-1.7",
  3210. "datestamp": "1586355587",
  3211. "security-coverage": {
  3212. "status": "covered",
  3213. "message": "Covered by Drupal's security advisory policy"
  3214. }
  3215. }
  3216. },
  3217. "notification-url": "https://packages.drupal.org/8/downloads",
  3218. "license": [
  3219. "GPL-2.0-or-later"
  3220. ],
  3221. "authors": [
  3222. {
  3223. "name": "jhodgdon",
  3224. "homepage": "https://www.drupal.org/user/155601"
  3225. },
  3226. {
  3227. "name": "nedjo",
  3228. "homepage": "https://www.drupal.org/user/4481"
  3229. }
  3230. ],
  3231. "description": "Provides basic revert and update functionality for other modules",
  3232. "homepage": "https://www.drupal.org/project/config_update",
  3233. "support": {
  3234. "source": "https://git.drupalcode.org/project/config_update"
  3235. }
  3236. },
  3237. {
  3238. "name": "drupal/console",
  3239. "version": "1.9.8",
  3240. "source": {
  3241. "type": "git",
  3242. "url": "https://github.com/hechoendrupal/drupal-console.git",
  3243. "reference": "d292c940c07d164e32bbe9525e909311ca65e8cb"
  3244. },
  3245. "dist": {
  3246. "type": "zip",
  3247. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/d292c940c07d164e32bbe9525e909311ca65e8cb",
  3248. "reference": "d292c940c07d164e32bbe9525e909311ca65e8cb",
  3249. "shasum": ""
  3250. },
  3251. "require": {
  3252. "alchemy/zippy": "~0.4",
  3253. "composer/installers": "~1.0",
  3254. "doctrine/annotations": "^1.2",
  3255. "doctrine/collections": "^1.3",
  3256. "drupal/console-core": "1.9.7",
  3257. "drupal/console-extend-plugin": "~0.9.5",
  3258. "php": ">=7.0.8",
  3259. "psy/psysh": "0.6.* || ~0.8",
  3260. "symfony/css-selector": "~3.0|~4.0",
  3261. "symfony/dom-crawler": "~3.0|~4.0",
  3262. "symfony/http-foundation": "~3.0|~4.0"
  3263. },
  3264. "suggest": {
  3265. "symfony/thanks": "Thank your favorite PHP projects on GitHub using the CLI",
  3266. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically"
  3267. },
  3268. "bin": [
  3269. "bin/drupal"
  3270. ],
  3271. "type": "library",
  3272. "autoload": {
  3273. "psr-4": {
  3274. "Drupal\\Console\\": "src"
  3275. }
  3276. },
  3277. "notification-url": "https://packagist.org/downloads/",
  3278. "license": [
  3279. "GPL-2.0-or-later"
  3280. ],
  3281. "authors": [
  3282. {
  3283. "name": "David Flores",
  3284. "email": "dmousex@gmail.com",
  3285. "homepage": "http://dmouse.net"
  3286. },
  3287. {
  3288. "name": "Jesus Manuel Olivas",
  3289. "email": "jesus.olivas@gmail.com",
  3290. "homepage": "http://jmolivas.com"
  3291. },
  3292. {
  3293. "name": "Eduardo Garcia",
  3294. "email": "enzo@enzolutions.com",
  3295. "homepage": "http://enzolutions.com/"
  3296. },
  3297. {
  3298. "name": "Omar Aguirre",
  3299. "email": "omersguchigu@gmail.com"
  3300. },
  3301. {
  3302. "name": "Drupal Console Contributors",
  3303. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  3304. }
  3305. ],
  3306. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  3307. "homepage": "http://drupalconsole.com/",
  3308. "keywords": [
  3309. "console",
  3310. "development",
  3311. "drupal",
  3312. "symfony"
  3313. ],
  3314. "support": {
  3315. "docs": "https://docs.drupalconsole.com/",
  3316. "forum": "https://gitter.im/hechoendrupal/DrupalConsole",
  3317. "issues": "https://github.com/hechoendrupal/drupal-console/issues",
  3318. "source": "https://github.com/hechoendrupal/drupal-console/tree/1.9.8"
  3319. },
  3320. "funding": [
  3321. {
  3322. "url": "https://opencollective.com/drupalconsole",
  3323. "type": "open_collective"
  3324. }
  3325. ],
  3326. "time": "2021-11-29T17:09:44+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. "support": {
  3409. "docs": "http://docs.drupalconsole.com/",
  3410. "forum": "https://gitter.im/hechoendrupal/DrupalConsole",
  3411. "issues": "https://github.com/hechoendrupal/DrupalConsole/issues",
  3412. "source": "https://github.com/hechoendrupal/drupal-console-core/tree/1.9.7"
  3413. },
  3414. "time": "2020-11-30T01:45:57+00:00"
  3415. },
  3416. {
  3417. "name": "drupal/console-en",
  3418. "version": "v1.9.7",
  3419. "source": {
  3420. "type": "git",
  3421. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  3422. "reference": "7594601fff153c2799a62bd678ff80749baeee0c"
  3423. },
  3424. "dist": {
  3425. "type": "zip",
  3426. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/7594601fff153c2799a62bd678ff80749baeee0c",
  3427. "reference": "7594601fff153c2799a62bd678ff80749baeee0c",
  3428. "shasum": ""
  3429. },
  3430. "type": "library",
  3431. "notification-url": "https://packagist.org/downloads/",
  3432. "license": [
  3433. "GPL-2.0-or-later"
  3434. ],
  3435. "authors": [
  3436. {
  3437. "name": "David Flores",
  3438. "email": "dmousex@gmail.com",
  3439. "homepage": "http://dmouse.net"
  3440. },
  3441. {
  3442. "name": "Jesus Manuel Olivas",
  3443. "email": "jesus.olivas@gmail.com",
  3444. "homepage": "http://jmolivas.com"
  3445. },
  3446. {
  3447. "name": "Eduardo Garcia",
  3448. "email": "enzo@enzolutions.com",
  3449. "homepage": "http://enzolutions.com/"
  3450. },
  3451. {
  3452. "name": "Omar Aguirre",
  3453. "email": "omersguchigu@gmail.com"
  3454. },
  3455. {
  3456. "name": "Drupal Console Contributors",
  3457. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3458. }
  3459. ],
  3460. "description": "Drupal Console English Language",
  3461. "homepage": "http://drupalconsole.com/",
  3462. "keywords": [
  3463. "console",
  3464. "development",
  3465. "drupal",
  3466. "symfony"
  3467. ],
  3468. "support": {
  3469. "docs": "https://docs.drupalconsole.com",
  3470. "forum": "https://gitter.im/hechoendrupal/DrupalConsole",
  3471. "issues": "https://github.com/hechoendrupal/DrupalConsole/issues",
  3472. "source": "https://github.com/hechoendrupal/drupal-console-en/tree/master"
  3473. },
  3474. "time": "2020-08-15T03:34:54+00:00"
  3475. },
  3476. {
  3477. "name": "drupal/console-extend-plugin",
  3478. "version": "0.9.5",
  3479. "source": {
  3480. "type": "git",
  3481. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  3482. "reference": "eff6da99cfb5fe1fc60990672d2667c402eb3585"
  3483. },
  3484. "dist": {
  3485. "type": "zip",
  3486. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/eff6da99cfb5fe1fc60990672d2667c402eb3585",
  3487. "reference": "eff6da99cfb5fe1fc60990672d2667c402eb3585",
  3488. "shasum": ""
  3489. },
  3490. "require": {
  3491. "composer-plugin-api": "^1.0 || ^2.0",
  3492. "composer/installers": "^1.2",
  3493. "symfony/finder": "~3.0|^4.4",
  3494. "symfony/yaml": "~3.0|^4.4"
  3495. },
  3496. "type": "composer-plugin",
  3497. "extra": {
  3498. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  3499. },
  3500. "autoload": {
  3501. "psr-4": {
  3502. "Drupal\\Console\\Composer\\Plugin\\": "src"
  3503. }
  3504. },
  3505. "notification-url": "https://packagist.org/downloads/",
  3506. "license": [
  3507. "GPL-2.0+"
  3508. ],
  3509. "authors": [
  3510. {
  3511. "name": "Jesus Manuel Olivas",
  3512. "email": "jesus.olivas@gmail.com"
  3513. }
  3514. ],
  3515. "description": "Drupal Console Extend Plugin",
  3516. "support": {
  3517. "issues": "https://github.com/hechoendrupal/drupal-console-extend-plugin/issues",
  3518. "source": "https://github.com/hechoendrupal/drupal-console-extend-plugin/tree/0.9.5"
  3519. },
  3520. "time": "2020-11-18T00:15:28+00:00"
  3521. },
  3522. {
  3523. "name": "drupal/content_lock",
  3524. "version": "2.2.0",
  3525. "source": {
  3526. "type": "git",
  3527. "url": "https://git.drupalcode.org/project/content_lock.git",
  3528. "reference": "8.x-2.2"
  3529. },
  3530. "dist": {
  3531. "type": "zip",
  3532. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.2.zip",
  3533. "reference": "8.x-2.2",
  3534. "shasum": "9ea5810067c0df18879a16a19236e0cb46f9fba7"
  3535. },
  3536. "require": {
  3537. "drupal/core": "^8.8|^9.0"
  3538. },
  3539. "require-dev": {
  3540. "drupal/conflict": "^2.0@ALPHA",
  3541. "drupal/prefetch_cache": "dev-1.x"
  3542. },
  3543. "type": "drupal-module",
  3544. "extra": {
  3545. "drupal": {
  3546. "version": "8.x-2.2",
  3547. "datestamp": "1607936866",
  3548. "security-coverage": {
  3549. "status": "covered",
  3550. "message": "Covered by Drupal's security advisory policy"
  3551. }
  3552. }
  3553. },
  3554. "notification-url": "https://packages.drupal.org/8/downloads",
  3555. "license": [
  3556. "GPL-2.0-or-later"
  3557. ],
  3558. "authors": [
  3559. {
  3560. "name": "chr.fritsch",
  3561. "homepage": "https://www.drupal.org/user/2103716"
  3562. },
  3563. {
  3564. "name": "ergonlogic",
  3565. "homepage": "https://www.drupal.org/user/368613"
  3566. },
  3567. {
  3568. "name": "mfb",
  3569. "homepage": "https://www.drupal.org/user/12302"
  3570. },
  3571. {
  3572. "name": "pandaski",
  3573. "homepage": "https://www.drupal.org/user/1987218"
  3574. }
  3575. ],
  3576. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  3577. "homepage": "https://www.drupal.org/project/content_lock",
  3578. "support": {
  3579. "source": "https://git.drupalcode.org/project/content_lock"
  3580. }
  3581. },
  3582. {
  3583. "name": "drupal/context",
  3584. "version": "4.0.0-beta6",
  3585. "source": {
  3586. "type": "git",
  3587. "url": "https://git.drupalcode.org/project/context.git",
  3588. "reference": "8.x-4.0-beta6"
  3589. },
  3590. "dist": {
  3591. "type": "zip",
  3592. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta6.zip",
  3593. "reference": "8.x-4.0-beta6",
  3594. "shasum": "c377c12d8c23e8f39151f2da1d85d58b294033df"
  3595. },
  3596. "require": {
  3597. "drupal/core": "^8.8 || ^9"
  3598. },
  3599. "type": "drupal-module",
  3600. "extra": {
  3601. "drupal": {
  3602. "version": "8.x-4.0-beta6",
  3603. "datestamp": "1619440410",
  3604. "security-coverage": {
  3605. "status": "not-covered",
  3606. "message": "Beta releases are not covered by Drupal security advisories."
  3607. }
  3608. }
  3609. },
  3610. "notification-url": "https://packages.drupal.org/8/downloads",
  3611. "license": [
  3612. "MIT"
  3613. ],
  3614. "authors": [
  3615. {
  3616. "name": "Christoffer Palm",
  3617. "homepage": "http://www.oddhill.se/",
  3618. "email": "christoffer.palm@oddhill.se",
  3619. "role": "Developer"
  3620. },
  3621. {
  3622. "name": "Steven Jones",
  3623. "homepage": "https://www.drupal.org/user/99644"
  3624. },
  3625. {
  3626. "name": "alex_b",
  3627. "homepage": "https://www.drupal.org/user/53995"
  3628. },
  3629. {
  3630. "name": "boshtian",
  3631. "homepage": "https://www.drupal.org/user/1773456"
  3632. },
  3633. {
  3634. "name": "colan",
  3635. "homepage": "https://www.drupal.org/user/58704"
  3636. },
  3637. {
  3638. "name": "emanaton",
  3639. "homepage": "https://www.drupal.org/user/120853"
  3640. },
  3641. {
  3642. "name": "febbraro",
  3643. "homepage": "https://www.drupal.org/user/43670"
  3644. },
  3645. {
  3646. "name": "fizk",
  3647. "homepage": "https://www.drupal.org/user/473174"
  3648. },
  3649. {
  3650. "name": "hass",
  3651. "homepage": "https://www.drupal.org/user/85918"
  3652. },
  3653. {
  3654. "name": "hefox",
  3655. "homepage": "https://www.drupal.org/user/426416"
  3656. },
  3657. {
  3658. "name": "jmiccolis",
  3659. "homepage": "https://www.drupal.org/user/31731"
  3660. },
  3661. {
  3662. "name": "nedjo",
  3663. "homepage": "https://www.drupal.org/user/4481"
  3664. },
  3665. {
  3666. "name": "patricksettle",
  3667. "homepage": "https://www.drupal.org/user/26618"
  3668. },
  3669. {
  3670. "name": "paulocs",
  3671. "homepage": "https://www.drupal.org/user/3640109"
  3672. },
  3673. {
  3674. "name": "tekante",
  3675. "homepage": "https://www.drupal.org/user/640024"
  3676. },
  3677. {
  3678. "name": "yhahn",
  3679. "homepage": "https://www.drupal.org/user/264833"
  3680. }
  3681. ],
  3682. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3683. "homepage": "https://github.com/oddhill/context",
  3684. "keywords": [
  3685. "Drupal",
  3686. "block",
  3687. "conditions",
  3688. "context",
  3689. "visibility"
  3690. ],
  3691. "support": {
  3692. "source": "https://github.com/oddhill/context",
  3693. "issues": "https://github.com/oddhill/context/issues",
  3694. "docs": "https://github.com/oddhill/context"
  3695. }
  3696. },
  3697. {
  3698. "name": "drupal/core",
  3699. "version": "9.3.4",
  3700. "source": {
  3701. "type": "git",
  3702. "url": "https://github.com/drupal/core.git",
  3703. "reference": "5ed580731a38ebd024ad323e71ebdbca6dbaade1"
  3704. },
  3705. "dist": {
  3706. "type": "zip",
  3707. "url": "https://api.github.com/repos/drupal/core/zipball/5ed580731a38ebd024ad323e71ebdbca6dbaade1",
  3708. "reference": "5ed580731a38ebd024ad323e71ebdbca6dbaade1",
  3709. "shasum": ""
  3710. },
  3711. "require": {
  3712. "asm89/stack-cors": "^1.1",
  3713. "composer/semver": "^3.0",
  3714. "doctrine/annotations": "^1.12",
  3715. "doctrine/reflection": "^1.1",
  3716. "egulias/email-validator": "^2.1.22|^3.0",
  3717. "ext-date": "*",
  3718. "ext-dom": "*",
  3719. "ext-filter": "*",
  3720. "ext-gd": "*",
  3721. "ext-hash": "*",
  3722. "ext-json": "*",
  3723. "ext-pcre": "*",
  3724. "ext-pdo": "*",
  3725. "ext-session": "*",
  3726. "ext-simplexml": "*",
  3727. "ext-spl": "*",
  3728. "ext-tokenizer": "*",
  3729. "ext-xml": "*",
  3730. "guzzlehttp/guzzle": "^6.5.2",
  3731. "laminas/laminas-diactoros": "^2.1",
  3732. "laminas/laminas-feed": "^2.12",
  3733. "masterminds/html5": "^2.1",
  3734. "pear/archive_tar": "^1.4.14",
  3735. "php": ">=7.3.0",
  3736. "psr/log": "^1.0",
  3737. "stack/builder": "^1.0",
  3738. "symfony-cmf/routing": "^2.1",
  3739. "symfony/console": "^4.4",
  3740. "symfony/dependency-injection": "^4.4",
  3741. "symfony/event-dispatcher": "^4.4",
  3742. "symfony/http-foundation": "^4.4.7",
  3743. "symfony/http-kernel": "^4.4",
  3744. "symfony/mime": "^5.4",
  3745. "symfony/polyfill-iconv": "^1.0",
  3746. "symfony/polyfill-php80": "^1.16",
  3747. "symfony/process": "^4.4",
  3748. "symfony/psr-http-message-bridge": "^2.0",
  3749. "symfony/routing": "^4.4",
  3750. "symfony/serializer": "^4.4",
  3751. "symfony/translation": "^4.4",
  3752. "symfony/validator": "^4.4",
  3753. "symfony/yaml": "^4.4.19",
  3754. "twig/twig": "^2.12.0",
  3755. "typo3/phar-stream-wrapper": "^3.1.3"
  3756. },
  3757. "conflict": {
  3758. "drush/drush": "<8.1.10"
  3759. },
  3760. "replace": {
  3761. "drupal/action": "self.version",
  3762. "drupal/aggregator": "self.version",
  3763. "drupal/automated_cron": "self.version",
  3764. "drupal/ban": "self.version",
  3765. "drupal/bartik": "self.version",
  3766. "drupal/basic_auth": "self.version",
  3767. "drupal/big_pipe": "self.version",
  3768. "drupal/block": "self.version",
  3769. "drupal/block_content": "self.version",
  3770. "drupal/book": "self.version",
  3771. "drupal/breakpoint": "self.version",
  3772. "drupal/ckeditor": "self.version",
  3773. "drupal/ckeditor5": "self.version",
  3774. "drupal/claro": "self.version",
  3775. "drupal/classy": "self.version",
  3776. "drupal/color": "self.version",
  3777. "drupal/comment": "self.version",
  3778. "drupal/config": "self.version",
  3779. "drupal/config_translation": "self.version",
  3780. "drupal/contact": "self.version",
  3781. "drupal/content_moderation": "self.version",
  3782. "drupal/content_translation": "self.version",
  3783. "drupal/contextual": "self.version",
  3784. "drupal/core-annotation": "self.version",
  3785. "drupal/core-assertion": "self.version",
  3786. "drupal/core-bridge": "self.version",
  3787. "drupal/core-class-finder": "self.version",
  3788. "drupal/core-datetime": "self.version",
  3789. "drupal/core-dependency-injection": "self.version",
  3790. "drupal/core-diff": "self.version",
  3791. "drupal/core-discovery": "self.version",
  3792. "drupal/core-event-dispatcher": "self.version",
  3793. "drupal/core-file-cache": "self.version",
  3794. "drupal/core-file-security": "self.version",
  3795. "drupal/core-filesystem": "self.version",
  3796. "drupal/core-front-matter": "self.version",
  3797. "drupal/core-gettext": "self.version",
  3798. "drupal/core-graph": "self.version",
  3799. "drupal/core-http-foundation": "self.version",
  3800. "drupal/core-php-storage": "self.version",
  3801. "drupal/core-plugin": "self.version",
  3802. "drupal/core-proxy-builder": "self.version",
  3803. "drupal/core-render": "self.version",
  3804. "drupal/core-serialization": "self.version",
  3805. "drupal/core-transliteration": "self.version",
  3806. "drupal/core-utility": "self.version",
  3807. "drupal/core-uuid": "self.version",
  3808. "drupal/core-version": "self.version",
  3809. "drupal/datetime": "self.version",
  3810. "drupal/datetime_range": "self.version",
  3811. "drupal/dblog": "self.version",
  3812. "drupal/dynamic_page_cache": "self.version",
  3813. "drupal/editor": "self.version",
  3814. "drupal/entity_reference": "self.version",
  3815. "drupal/field": "self.version",
  3816. "drupal/field_layout": "self.version",
  3817. "drupal/field_ui": "self.version",
  3818. "drupal/file": "self.version",
  3819. "drupal/filter": "self.version",
  3820. "drupal/forum": "self.version",
  3821. "drupal/hal": "self.version",
  3822. "drupal/help": "self.version",
  3823. "drupal/help_topics": "self.version",
  3824. "drupal/history": "self.version",
  3825. "drupal/image": "self.version",
  3826. "drupal/inline_form_errors": "self.version",
  3827. "drupal/jsonapi": "self.version",
  3828. "drupal/language": "self.version",
  3829. "drupal/layout_builder": "self.version",
  3830. "drupal/layout_discovery": "self.version",
  3831. "drupal/link": "self.version",
  3832. "drupal/locale": "self.version",
  3833. "drupal/media": "self.version",
  3834. "drupal/media_library": "self.version",
  3835. "drupal/menu_link_content": "self.version",
  3836. "drupal/menu_ui": "self.version",
  3837. "drupal/migrate": "self.version",
  3838. "drupal/migrate_drupal": "self.version",
  3839. "drupal/migrate_drupal_multilingual": "self.version",
  3840. "drupal/migrate_drupal_ui": "self.version",
  3841. "drupal/minimal": "self.version",
  3842. "drupal/node": "self.version",
  3843. "drupal/olivero": "self.version",
  3844. "drupal/options": "self.version",
  3845. "drupal/page_cache": "self.version",
  3846. "drupal/path": "self.version",
  3847. "drupal/path_alias": "self.version",
  3848. "drupal/quickedit": "self.version",
  3849. "drupal/rdf": "self.version",
  3850. "drupal/responsive_image": "self.version",
  3851. "drupal/rest": "self.version",
  3852. "drupal/search": "self.version",
  3853. "drupal/serialization": "self.version",
  3854. "drupal/settings_tray": "self.version",
  3855. "drupal/seven": "self.version",
  3856. "drupal/shortcut": "self.version",
  3857. "drupal/standard": "self.version",
  3858. "drupal/stark": "self.version",
  3859. "drupal/statistics": "self.version",
  3860. "drupal/syslog": "self.version",
  3861. "drupal/system": "self.version",
  3862. "drupal/taxonomy": "self.version",
  3863. "drupal/telephone": "self.version",
  3864. "drupal/text": "self.version",
  3865. "drupal/toolbar": "self.version",
  3866. "drupal/tour": "self.version",
  3867. "drupal/tracker": "self.version",
  3868. "drupal/update": "self.version",
  3869. "drupal/user": "self.version",
  3870. "drupal/views": "self.version",
  3871. "drupal/views_ui": "self.version",
  3872. "drupal/workflows": "self.version",
  3873. "drupal/workspaces": "self.version"
  3874. },
  3875. "type": "drupal-core",
  3876. "extra": {
  3877. "drupal-scaffold": {
  3878. "file-mapping": {
  3879. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  3880. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  3881. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  3882. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  3883. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  3884. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  3885. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  3886. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  3887. "[web-root]/index.php": "assets/scaffold/files/index.php",
  3888. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  3889. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  3890. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  3891. "[web-root]/update.php": "assets/scaffold/files/update.php",
  3892. "[web-root]/web.config": "assets/scaffold/files/web.config",
  3893. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  3894. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  3895. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  3896. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  3897. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  3898. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  3899. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  3900. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  3901. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  3902. }
  3903. }
  3904. },
  3905. "autoload": {
  3906. "files": [
  3907. "includes/bootstrap.inc",
  3908. "includes/guzzle_php81_shim.php"
  3909. ],
  3910. "psr-4": {
  3911. "Drupal\\Core\\": "lib/Drupal/Core",
  3912. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver",
  3913. "Drupal\\Component\\": "lib/Drupal/Component"
  3914. },
  3915. "classmap": [
  3916. "lib/Drupal.php",
  3917. "lib/Drupal/Component/DependencyInjection/Container.php",
  3918. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  3919. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  3920. "lib/Drupal/Component/Utility/Timer.php",
  3921. "lib/Drupal/Component/Utility/Unicode.php",
  3922. "lib/Drupal/Core/Cache/Cache.php",
  3923. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  3924. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  3925. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  3926. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  3927. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  3928. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  3929. "lib/Drupal/Core/Database/Connection.php",
  3930. "lib/Drupal/Core/Database/Database.php",
  3931. "lib/Drupal/Core/Database/Driver/mysql/Connection.php",
  3932. "lib/Drupal/Core/Database/Driver/pgsql/Connection.php",
  3933. "lib/Drupal/Core/Database/Driver/sqlite/Connection.php",
  3934. "lib/Drupal/Core/Database/Statement.php",
  3935. "lib/Drupal/Core/Database/StatementInterface.php",
  3936. "lib/Drupal/Core/DependencyInjection/Container.php",
  3937. "lib/Drupal/Core/DrupalKernel.php",
  3938. "lib/Drupal/Core/DrupalKernelInterface.php",
  3939. "lib/Drupal/Core/Http/InputBag.php",
  3940. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  3941. "lib/Drupal/Core/Site/Settings.php"
  3942. ]
  3943. },
  3944. "notification-url": "https://packagist.org/downloads/",
  3945. "license": [
  3946. "GPL-2.0-or-later"
  3947. ],
  3948. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3949. "support": {
  3950. "source": "https://github.com/drupal/core/tree/9.3.4"
  3951. },
  3952. "time": "2022-02-02T18:03:30+00:00"
  3953. },
  3954. {
  3955. "name": "drupal/core-composer-scaffold",
  3956. "version": "9.1.4",
  3957. "source": {
  3958. "type": "git",
  3959. "url": "https://github.com/drupal/core-composer-scaffold.git",
  3960. "reference": "7b125516d6568b888945ee03ac2636dcced76e8d"
  3961. },
  3962. "dist": {
  3963. "type": "zip",
  3964. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/7b125516d6568b888945ee03ac2636dcced76e8d",
  3965. "reference": "7b125516d6568b888945ee03ac2636dcced76e8d",
  3966. "shasum": ""
  3967. },
  3968. "require": {
  3969. "composer-plugin-api": "^1 || ^2",
  3970. "php": ">=7.3.0"
  3971. },
  3972. "conflict": {
  3973. "drupal-composer/drupal-scaffold": "*"
  3974. },
  3975. "require-dev": {
  3976. "composer/composer": "^1.8@stable"
  3977. },
  3978. "type": "composer-plugin",
  3979. "extra": {
  3980. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  3981. "branch-alias": {
  3982. "dev-master": "1.0.x-dev"
  3983. }
  3984. },
  3985. "autoload": {
  3986. "psr-4": {
  3987. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  3988. }
  3989. },
  3990. "notification-url": "https://packagist.org/downloads/",
  3991. "license": [
  3992. "GPL-2.0-or-later"
  3993. ],
  3994. "description": "A flexible Composer project scaffold builder.",
  3995. "homepage": "https://www.drupal.org/project/drupal",
  3996. "keywords": [
  3997. "drupal"
  3998. ],
  3999. "time": "2020-08-07T22:30:13+00:00"
  4000. },
  4001. {
  4002. "name": "drupal/core-project-message",
  4003. "version": "9.1.4",
  4004. "source": {
  4005. "type": "git",
  4006. "url": "https://github.com/drupal/core-project-message.git",
  4007. "reference": "812d6da43dd49cc210af62e80fa92189e68e565a"
  4008. },
  4009. "dist": {
  4010. "type": "zip",
  4011. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/812d6da43dd49cc210af62e80fa92189e68e565a",
  4012. "reference": "812d6da43dd49cc210af62e80fa92189e68e565a",
  4013. "shasum": ""
  4014. },
  4015. "require": {
  4016. "composer-plugin-api": "^1.1 || ^2",
  4017. "php": ">=7.3.0"
  4018. },
  4019. "type": "composer-plugin",
  4020. "extra": {
  4021. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  4022. },
  4023. "autoload": {
  4024. "psr-4": {
  4025. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  4026. }
  4027. },
  4028. "notification-url": "https://packagist.org/downloads/",
  4029. "license": [
  4030. "GPL-2.0-or-later"
  4031. ],
  4032. "description": "Adds a message after Composer installation.",
  4033. "homepage": "https://www.drupal.org/project/drupal",
  4034. "keywords": [
  4035. "drupal"
  4036. ],
  4037. "time": "2020-09-14T13:40:36+00:00"
  4038. },
  4039. {
  4040. "name": "drupal/core-recommended",
  4041. "version": "9.3.4",
  4042. "source": {
  4043. "type": "git",
  4044. "url": "https://github.com/drupal/core-recommended.git",
  4045. "reference": "2d4c83eb8d68c4583343ecb4e2ef46506e6a1417"
  4046. },
  4047. "dist": {
  4048. "type": "zip",
  4049. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/2d4c83eb8d68c4583343ecb4e2ef46506e6a1417",
  4050. "reference": "2d4c83eb8d68c4583343ecb4e2ef46506e6a1417",
  4051. "shasum": ""
  4052. },
  4053. "require": {
  4054. "asm89/stack-cors": "1.3.0",
  4055. "composer/semver": "3.2.6",
  4056. "doctrine/annotations": "1.13.2",
  4057. "doctrine/lexer": "1.2.1",
  4058. "doctrine/reflection": "1.2.2",
  4059. "drupal/core": "9.3.4",
  4060. "egulias/email-validator": "3.1.2",
  4061. "guzzlehttp/guzzle": "6.5.5",
  4062. "guzzlehttp/promises": "1.5.1",
  4063. "guzzlehttp/psr7": "1.8.3",
  4064. "laminas/laminas-diactoros": "2.8.0",
  4065. "laminas/laminas-escaper": "2.9.0",
  4066. "laminas/laminas-feed": "2.15.0",
  4067. "laminas/laminas-stdlib": "3.6.1",
  4068. "masterminds/html5": "2.7.5",
  4069. "pear/archive_tar": "1.4.14",
  4070. "pear/console_getopt": "v1.4.3",
  4071. "pear/pear-core-minimal": "v1.10.11",
  4072. "pear/pear_exception": "v1.0.2",
  4073. "psr/cache": "1.0.1",
  4074. "psr/container": "1.1.1",
  4075. "psr/http-factory": "1.0.1",
  4076. "psr/http-message": "1.0.1",
  4077. "psr/log": "1.1.4",
  4078. "ralouphie/getallheaders": "3.0.3",
  4079. "stack/builder": "v1.0.6",
  4080. "symfony-cmf/routing": "2.3.4",
  4081. "symfony/console": "v4.4.34",
  4082. "symfony/debug": "v4.4.31",
  4083. "symfony/dependency-injection": "v4.4.34",
  4084. "symfony/deprecation-contracts": "v2.5.0",
  4085. "symfony/error-handler": "v4.4.34",
  4086. "symfony/event-dispatcher": "v4.4.34",
  4087. "symfony/event-dispatcher-contracts": "v1.1.11",
  4088. "symfony/http-client-contracts": "v2.5.0",
  4089. "symfony/http-foundation": "v4.4.34",
  4090. "symfony/http-kernel": "v4.4.35",
  4091. "symfony/mime": "v5.4.0",
  4092. "symfony/polyfill-ctype": "v1.23.0",
  4093. "symfony/polyfill-iconv": "v1.23.0",
  4094. "symfony/polyfill-intl-idn": "v1.23.0",
  4095. "symfony/polyfill-intl-normalizer": "v1.23.0",
  4096. "symfony/polyfill-mbstring": "v1.23.1",
  4097. "symfony/polyfill-php80": "v1.23.1",
  4098. "symfony/process": "v4.4.35",
  4099. "symfony/psr-http-message-bridge": "v2.1.2",
  4100. "symfony/routing": "v4.4.34",
  4101. "symfony/serializer": "v4.4.35",
  4102. "symfony/service-contracts": "v2.5.0",
  4103. "symfony/translation": "v4.4.34",
  4104. "symfony/translation-contracts": "v2.5.0",
  4105. "symfony/validator": "v4.4.35",
  4106. "symfony/var-dumper": "v5.4.0",
  4107. "symfony/yaml": "v4.4.34",
  4108. "twig/twig": "v2.14.7",
  4109. "typo3/phar-stream-wrapper": "v3.1.7"
  4110. },
  4111. "conflict": {
  4112. "webflo/drupal-core-strict": "*"
  4113. },
  4114. "type": "metapackage",
  4115. "notification-url": "https://packagist.org/downloads/",
  4116. "license": [
  4117. "GPL-2.0-or-later"
  4118. ],
  4119. "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.",
  4120. "support": {
  4121. "source": "https://github.com/drupal/core-recommended/tree/9.3.4"
  4122. },
  4123. "time": "2022-02-02T18:03:30+00:00"
  4124. },
  4125. {
  4126. "name": "drupal/cshs",
  4127. "version": "dev-1.x",
  4128. "source": {
  4129. "type": "git",
  4130. "url": "https://git.drupalcode.org/project/cshs.git",
  4131. "reference": "537e7fef494c71cfa59d8d90849cbf1beee80e49"
  4132. },
  4133. "require": {
  4134. "drupal/core": "^8 || ^9"
  4135. },
  4136. "type": "drupal-module",
  4137. "extra": {
  4138. "branch-alias": {
  4139. "dev-1.x": "1.x-dev"
  4140. },
  4141. "drupal": {
  4142. "version": "8.x-1.2+4-dev",
  4143. "datestamp": "1607678639",
  4144. "security-coverage": {
  4145. "status": "not-covered",
  4146. "message": "Dev releases are not covered by Drupal security advisories."
  4147. }
  4148. }
  4149. },
  4150. "notification-url": "https://packages.drupal.org/8/downloads",
  4151. "license": [
  4152. "GPL-2.0-or-later"
  4153. ],
  4154. "authors": [
  4155. {
  4156. "name": "Walter Jenner",
  4157. "homepage": "https://drupal.org/u/valderama"
  4158. },
  4159. {
  4160. "name": "Sergii Bondarenko",
  4161. "homepage": "https://drupal.org/u/BR0kEN",
  4162. "email": "sb@firstvector.org"
  4163. },
  4164. {
  4165. "name": "Daneel Cruz",
  4166. "homepage": "https://drupal.org/u/daneelcm"
  4167. },
  4168. {
  4169. "name": "Purushotam Rai",
  4170. "homepage": "https://drupal.org/u/purushotam.rai"
  4171. }
  4172. ],
  4173. "description": "A simple client-side hierarchical select widget for taxonomy terms.",
  4174. "homepage": "https://www.drupal.org/project/cshs",
  4175. "keywords": [
  4176. "client-side-select",
  4177. "hierarchical-select",
  4178. "module",
  4179. "select",
  4180. "taxonomy"
  4181. ],
  4182. "support": {
  4183. "source": "https://git.drupalcode.org/project/cshs",
  4184. "issues": "https://www.drupal.org/project/issues/cshs"
  4185. },
  4186. "time": "2020-12-11T09:23:35+00:00"
  4187. },
  4188. {
  4189. "name": "drupal/ctools",
  4190. "version": "3.7.0",
  4191. "source": {
  4192. "type": "git",
  4193. "url": "https://git.drupalcode.org/project/ctools.git",
  4194. "reference": "8.x-3.7"
  4195. },
  4196. "dist": {
  4197. "type": "zip",
  4198. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.7.zip",
  4199. "reference": "8.x-3.7",
  4200. "shasum": "b11c0981a1d2ab3cc9e8e614a337d8e2a2a70c0e"
  4201. },
  4202. "require": {
  4203. "drupal/core": "^8.8 || ^9"
  4204. },
  4205. "type": "drupal-module",
  4206. "extra": {
  4207. "drupal": {
  4208. "version": "8.x-3.7",
  4209. "datestamp": "1623860918",
  4210. "security-coverage": {
  4211. "status": "covered",
  4212. "message": "Covered by Drupal's security advisory policy"
  4213. }
  4214. },
  4215. "branch-alias": {
  4216. "dev-8.x-3.x": "3.x-dev"
  4217. }
  4218. },
  4219. "notification-url": "https://packages.drupal.org/8/downloads",
  4220. "license": [
  4221. "GPL-2.0-or-later"
  4222. ],
  4223. "authors": [
  4224. {
  4225. "name": "Kris Vanderwater (EclipseGc)",
  4226. "homepage": "https://www.drupal.org/u/eclipsegc",
  4227. "role": "Maintainer"
  4228. },
  4229. {
  4230. "name": "Jakob Perry (japerry)",
  4231. "homepage": "https://www.drupal.org/u/japerry",
  4232. "role": "Maintainer"
  4233. },
  4234. {
  4235. "name": "Tim Plunkett (tim.plunkett)",
  4236. "homepage": "https://www.drupal.org/u/timplunkett",
  4237. "role": "Maintainer"
  4238. },
  4239. {
  4240. "name": "James Gilliland (neclimdul)",
  4241. "homepage": "https://www.drupal.org/u/neclimdul",
  4242. "role": "Maintainer"
  4243. },
  4244. {
  4245. "name": "Daniel Wehner (dawehner)",
  4246. "homepage": "https://www.drupal.org/u/dawehner",
  4247. "role": "Maintainer"
  4248. },
  4249. {
  4250. "name": "joelpittet",
  4251. "homepage": "https://www.drupal.org/user/160302"
  4252. },
  4253. {
  4254. "name": "merlinofchaos",
  4255. "homepage": "https://www.drupal.org/user/26979"
  4256. },
  4257. {
  4258. "name": "neclimdul",
  4259. "homepage": "https://www.drupal.org/user/48673"
  4260. },
  4261. {
  4262. "name": "sdboyer",
  4263. "homepage": "https://www.drupal.org/user/146719"
  4264. },
  4265. {
  4266. "name": "sun",
  4267. "homepage": "https://www.drupal.org/user/54136"
  4268. },
  4269. {
  4270. "name": "tim.plunkett",
  4271. "homepage": "https://www.drupal.org/user/241634"
  4272. }
  4273. ],
  4274. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  4275. "homepage": "https://www.drupal.org/project/ctools",
  4276. "support": {
  4277. "source": "https://git.drupalcode.org/project/ctools",
  4278. "issues": "https://www.drupal.org/project/issues/ctools"
  4279. }
  4280. },
  4281. {
  4282. "name": "drupal/date_range_formatter",
  4283. "version": "dev-9.0.x",
  4284. "source": {
  4285. "type": "git",
  4286. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  4287. "reference": "c34acb20c37e6210099bf3080352a6da7227b867"
  4288. },
  4289. "require": {
  4290. "drupal/core": "^8 || ^9"
  4291. },
  4292. "type": "drupal-module",
  4293. "extra": {
  4294. "branch-alias": {
  4295. "dev-9.0.x": "9.0.x-dev"
  4296. },
  4297. "drupal": {
  4298. "version": "9.0.x-dev",
  4299. "datestamp": "1589956448",
  4300. "security-coverage": {
  4301. "status": "not-covered",
  4302. "message": "Dev releases are not covered by Drupal security advisories."
  4303. }
  4304. }
  4305. },
  4306. "notification-url": "https://packages.drupal.org/8/downloads",
  4307. "license": [
  4308. "GPL-2.0-or-later"
  4309. ],
  4310. "authors": [
  4311. {
  4312. "name": "maximpodorov",
  4313. "homepage": "https://www.drupal.org/user/515310"
  4314. },
  4315. {
  4316. "name": "sudishth",
  4317. "homepage": "https://www.drupal.org/user/1440562"
  4318. }
  4319. ],
  4320. "description": "Formats date ranges.",
  4321. "homepage": "https://www.drupal.org/project/date_range_formatter",
  4322. "support": {
  4323. "source": "https://git.drupalcode.org/project/date_range_formatter"
  4324. },
  4325. "time": "2020-05-20T06:32:37+00:00"
  4326. },
  4327. {
  4328. "name": "drupal/devel",
  4329. "version": "4.1.1",
  4330. "source": {
  4331. "type": "git",
  4332. "url": "https://git.drupalcode.org/project/devel.git",
  4333. "reference": "4.1.1"
  4334. },
  4335. "dist": {
  4336. "type": "zip",
  4337. "url": "https://ftp.drupal.org/files/projects/devel-4.1.1.zip",
  4338. "reference": "4.1.1",
  4339. "shasum": "88e5d49dda26a3136291ecd97bc6c8e897b24198"
  4340. },
  4341. "require": {
  4342. "doctrine/common": "^2.7",
  4343. "drupal/core": "^8.8 || ^9",
  4344. "symfony/var-dumper": "^4 || ^5"
  4345. },
  4346. "conflict": {
  4347. "kint-php/kint": "<3"
  4348. },
  4349. "require-dev": {
  4350. "drush/drush": "^10"
  4351. },
  4352. "suggest": {
  4353. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  4354. },
  4355. "type": "drupal-module",
  4356. "extra": {
  4357. "drupal": {
  4358. "version": "4.1.1",
  4359. "datestamp": "1609419527",
  4360. "security-coverage": {
  4361. "status": "covered",
  4362. "message": "Covered by Drupal's security advisory policy"
  4363. }
  4364. },
  4365. "drush": {
  4366. "services": {
  4367. "drush.services.yml": "^9 || ^10"
  4368. }
  4369. }
  4370. },
  4371. "notification-url": "https://packages.drupal.org/8/downloads",
  4372. "license": [
  4373. "GPL-2.0-or-later"
  4374. ],
  4375. "authors": [
  4376. {
  4377. "name": "drupalspoons",
  4378. "homepage": "https://www.drupal.org/user/3647684"
  4379. },
  4380. {
  4381. "name": "moshe weitzman",
  4382. "homepage": "https://www.drupal.org/user/23"
  4383. }
  4384. ],
  4385. "description": "Various blocks, pages, and functions for developers.",
  4386. "homepage": "https://www.drupal.org/project/devel",
  4387. "support": {
  4388. "source": "https://gitlab.com/drupalspoons/devel",
  4389. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  4390. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  4391. }
  4392. },
  4393. {
  4394. "name": "drupal/domain",
  4395. "version": "dev-1.x",
  4396. "source": {
  4397. "type": "git",
  4398. "url": "https://git.drupalcode.org/project/domain.git",
  4399. "reference": "bb4973dd3d7ecee279dcf521c05eb6a5589cf05b"
  4400. },
  4401. "require": {
  4402. "drupal/core": "^8 || ^9"
  4403. },
  4404. "require-dev": {
  4405. "drupal/domain_access": "*",
  4406. "drupal/domain_config": "*"
  4407. },
  4408. "type": "drupal-module",
  4409. "extra": {
  4410. "branch-alias": {
  4411. "dev-1.x": "1.x-dev"
  4412. },
  4413. "drupal": {
  4414. "version": "8.x-1.x-dev",
  4415. "datestamp": "1603119924",
  4416. "security-coverage": {
  4417. "status": "not-covered",
  4418. "message": "Dev releases are not covered by Drupal security advisories."
  4419. }
  4420. }
  4421. },
  4422. "notification-url": "https://packages.drupal.org/8/downloads",
  4423. "license": [
  4424. "GPL-2.0-or-later"
  4425. ],
  4426. "authors": [
  4427. {
  4428. "name": "agentrickard",
  4429. "homepage": "https://www.drupal.org/user/20975"
  4430. },
  4431. {
  4432. "name": "nonsie",
  4433. "homepage": "https://www.drupal.org/user/29899"
  4434. }
  4435. ],
  4436. "description": "Creates domain records within a Drupal installation.",
  4437. "homepage": "https://www.drupal.org/project/domain",
  4438. "support": {
  4439. "source": "https://git.drupalcode.org/project/domain"
  4440. },
  4441. "time": "2020-11-18T18:57:19+00:00"
  4442. },
  4443. {
  4444. "name": "drupal/domain_alias",
  4445. "version": "dev-1.x",
  4446. "require": {
  4447. "drupal/core": "^8 || ^9",
  4448. "drupal/domain": "*"
  4449. },
  4450. "type": "metapackage",
  4451. "extra": {
  4452. "branch-alias": {
  4453. "dev-1.x": "1.x-dev"
  4454. },
  4455. "drupal": {
  4456. "version": "8.x-1.x-dev",
  4457. "datestamp": "1603119924",
  4458. "security-coverage": {
  4459. "status": "not-covered",
  4460. "message": "Dev releases are not covered by Drupal security advisories."
  4461. }
  4462. }
  4463. },
  4464. "notification-url": "https://packages.drupal.org/8/downloads",
  4465. "license": [
  4466. "GPL-2.0-or-later"
  4467. ],
  4468. "authors": [
  4469. {
  4470. "name": "agentrickard",
  4471. "homepage": "https://www.drupal.org/user/20975"
  4472. },
  4473. {
  4474. "name": "nonsie",
  4475. "homepage": "https://www.drupal.org/user/29899"
  4476. }
  4477. ],
  4478. "description": "Maps multiple host requests to a single domain record.",
  4479. "homepage": "https://www.drupal.org/project/domain",
  4480. "support": {
  4481. "source": "https://git.drupalcode.org/project/domain"
  4482. }
  4483. },
  4484. {
  4485. "name": "drupal/domain_config",
  4486. "version": "dev-1.x",
  4487. "require": {
  4488. "drupal/core": "^8 || ^9",
  4489. "drupal/domain": "*"
  4490. },
  4491. "type": "metapackage",
  4492. "extra": {
  4493. "branch-alias": {
  4494. "dev-1.x": "1.x-dev"
  4495. },
  4496. "drupal": {
  4497. "version": "8.x-1.x-dev",
  4498. "datestamp": "1603119924",
  4499. "security-coverage": {
  4500. "status": "not-covered",
  4501. "message": "Dev releases are not covered by Drupal security advisories."
  4502. }
  4503. }
  4504. },
  4505. "notification-url": "https://packages.drupal.org/8/downloads",
  4506. "license": [
  4507. "GPL-2.0-or-later"
  4508. ],
  4509. "authors": [
  4510. {
  4511. "name": "agentrickard",
  4512. "homepage": "https://www.drupal.org/user/20975"
  4513. },
  4514. {
  4515. "name": "nonsie",
  4516. "homepage": "https://www.drupal.org/user/29899"
  4517. }
  4518. ],
  4519. "description": "Allows domain specific configuration.",
  4520. "homepage": "https://www.drupal.org/project/domain",
  4521. "support": {
  4522. "source": "https://git.drupalcode.org/project/domain"
  4523. }
  4524. },
  4525. {
  4526. "name": "drupal/domain_site_settings",
  4527. "version": "dev-1.x",
  4528. "source": {
  4529. "type": "git",
  4530. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  4531. "reference": "b3177fc7257cae13fe9c6ff6f65d86257a194d84"
  4532. },
  4533. "require": {
  4534. "drupal/core": "^8 || ^9",
  4535. "drupal/domain": "*",
  4536. "drupal/domain_config": "*"
  4537. },
  4538. "type": "drupal-module",
  4539. "extra": {
  4540. "branch-alias": {
  4541. "dev-1.x": "1.x-dev"
  4542. },
  4543. "drupal": {
  4544. "version": "8.x-1.3+7-dev",
  4545. "datestamp": "1584297727",
  4546. "security-coverage": {
  4547. "status": "not-covered",
  4548. "message": "Dev releases are not covered by Drupal security advisories."
  4549. }
  4550. }
  4551. },
  4552. "notification-url": "https://packages.drupal.org/8/downloads",
  4553. "license": [
  4554. "GPL-2.0+"
  4555. ],
  4556. "authors": [
  4557. {
  4558. "name": "aloknarwaria",
  4559. "homepage": "https://www.drupal.org/user/906640"
  4560. },
  4561. {
  4562. "name": "malaynayak",
  4563. "homepage": "https://www.drupal.org/user/3529755"
  4564. }
  4565. ],
  4566. "description": "Basic Site Setting for Domains.",
  4567. "homepage": "https://www.drupal.org/project/domain_site_settings",
  4568. "keywords": [
  4569. "Drupal"
  4570. ],
  4571. "support": {
  4572. "source": "http://cgit.drupalcode.org/domain_site_settings",
  4573. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  4574. },
  4575. "time": "2020-03-15T18:41:41+00:00"
  4576. },
  4577. {
  4578. "name": "drupal/email_registration",
  4579. "version": "1.1.0",
  4580. "source": {
  4581. "type": "git",
  4582. "url": "https://git.drupalcode.org/project/email_registration.git",
  4583. "reference": "8.x-1.1"
  4584. },
  4585. "dist": {
  4586. "type": "zip",
  4587. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.1.zip",
  4588. "reference": "8.x-1.1",
  4589. "shasum": "cc0eef597216a6d025d9017df104f2693b029f96"
  4590. },
  4591. "require": {
  4592. "drupal/core": "^8.7.7 || ^9"
  4593. },
  4594. "conflict": {
  4595. "drupal/commerce": "<2.12"
  4596. },
  4597. "require-dev": {
  4598. "drupal/commerce": "^2.0"
  4599. },
  4600. "type": "drupal-module",
  4601. "extra": {
  4602. "drupal": {
  4603. "version": "8.x-1.1",
  4604. "datestamp": "1592317072",
  4605. "security-coverage": {
  4606. "status": "covered",
  4607. "message": "Covered by Drupal's security advisory policy"
  4608. }
  4609. }
  4610. },
  4611. "notification-url": "https://packages.drupal.org/8/downloads",
  4612. "license": [
  4613. "GPL-2.0-or-later"
  4614. ],
  4615. "authors": [
  4616. {
  4617. "name": "Greg Knaddison (greggles)",
  4618. "homepage": "https://www.drupal.org/u/greggles",
  4619. "role": "Maintainer"
  4620. },
  4621. {
  4622. "name": "Andrey Postnikov (andypost)",
  4623. "homepage": "https://www.drupal.org/u/andypost",
  4624. "role": "Maintainer"
  4625. },
  4626. {
  4627. "name": "Chris Herberte",
  4628. "homepage": "https://www.drupal.org/u/chris-herberte",
  4629. "role": "Maintainer"
  4630. },
  4631. {
  4632. "name": "Moshe Weitzman (moshe weitzman)",
  4633. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  4634. "role": "Maintainer"
  4635. }
  4636. ],
  4637. "description": "Allows users to register with an email address as their username.",
  4638. "homepage": "https://www.drupal.org/project/email_registration",
  4639. "support": {
  4640. "source": "https://git.drupalcode.org/project/email_registration",
  4641. "issues": "http://drupal.org/project/issues/email_registration"
  4642. }
  4643. },
  4644. {
  4645. "name": "drupal/embed",
  4646. "version": "1.4.0",
  4647. "source": {
  4648. "type": "git",
  4649. "url": "https://git.drupalcode.org/project/embed.git",
  4650. "reference": "8.x-1.4"
  4651. },
  4652. "dist": {
  4653. "type": "zip",
  4654. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.4.zip",
  4655. "reference": "8.x-1.4",
  4656. "shasum": "09a2bda039bfbb3fff01c91964384bf3d924b8c5"
  4657. },
  4658. "require": {
  4659. "drupal/core": "^8.7.7 || ^9"
  4660. },
  4661. "type": "drupal-module",
  4662. "extra": {
  4663. "drupal": {
  4664. "version": "8.x-1.4",
  4665. "datestamp": "1590176831",
  4666. "security-coverage": {
  4667. "status": "covered",
  4668. "message": "Covered by Drupal's security advisory policy"
  4669. }
  4670. }
  4671. },
  4672. "notification-url": "https://packages.drupal.org/8/downloads",
  4673. "license": [
  4674. "GPL-2.0-or-later"
  4675. ],
  4676. "authors": [
  4677. {
  4678. "name": "Dave Reid",
  4679. "homepage": "https://www.drupal.org/user/53892"
  4680. },
  4681. {
  4682. "name": "Devin Carlson",
  4683. "homepage": "https://www.drupal.org/user/290182"
  4684. },
  4685. {
  4686. "name": "Drupal Media Team",
  4687. "homepage": "https://www.drupal.org/user/3260690"
  4688. },
  4689. {
  4690. "name": "cs_shadow",
  4691. "homepage": "https://www.drupal.org/user/2828287"
  4692. },
  4693. {
  4694. "name": "phenaproxima",
  4695. "homepage": "https://www.drupal.org/user/205645"
  4696. },
  4697. {
  4698. "name": "slashrsm",
  4699. "homepage": "https://www.drupal.org/user/744628"
  4700. }
  4701. ],
  4702. "description": "Provides a framework for different types of embeds in text editors.",
  4703. "homepage": "https://www.drupal.org/project/embed",
  4704. "support": {
  4705. "source": "https://git.drupalcode.org/project/embed"
  4706. }
  4707. },
  4708. {
  4709. "name": "drupal/entity",
  4710. "version": "1.2.0",
  4711. "source": {
  4712. "type": "git",
  4713. "url": "https://git.drupalcode.org/project/entity.git",
  4714. "reference": "8.x-1.2"
  4715. },
  4716. "dist": {
  4717. "type": "zip",
  4718. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.2.zip",
  4719. "reference": "8.x-1.2",
  4720. "shasum": "7e7cb12ea65d9f986b59935eda316387cf511079"
  4721. },
  4722. "require": {
  4723. "drupal/core": "^8.8 || ^9"
  4724. },
  4725. "type": "drupal-module",
  4726. "extra": {
  4727. "drupal": {
  4728. "version": "8.x-1.2",
  4729. "datestamp": "1606399149",
  4730. "security-coverage": {
  4731. "status": "covered",
  4732. "message": "Covered by Drupal's security advisory policy"
  4733. }
  4734. }
  4735. },
  4736. "notification-url": "https://packages.drupal.org/8/downloads",
  4737. "license": [
  4738. "GPL-2.0-or-later"
  4739. ],
  4740. "authors": [
  4741. {
  4742. "name": "Berdir",
  4743. "homepage": "https://www.drupal.org/user/214652"
  4744. },
  4745. {
  4746. "name": "bojanz",
  4747. "homepage": "https://www.drupal.org/user/86106"
  4748. },
  4749. {
  4750. "name": "dawehner",
  4751. "homepage": "https://www.drupal.org/user/99340"
  4752. },
  4753. {
  4754. "name": "dixon_",
  4755. "homepage": "https://www.drupal.org/user/239911"
  4756. },
  4757. {
  4758. "name": "fago",
  4759. "homepage": "https://www.drupal.org/user/16747"
  4760. },
  4761. {
  4762. "name": "mglaman",
  4763. "homepage": "https://www.drupal.org/user/2416470"
  4764. }
  4765. ],
  4766. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  4767. "homepage": "http://drupal.org/project/entity",
  4768. "support": {
  4769. "source": "https://git.drupalcode.org/project/entity"
  4770. }
  4771. },
  4772. {
  4773. "name": "drupal/entity_browser",
  4774. "version": "2.6.0",
  4775. "source": {
  4776. "type": "git",
  4777. "url": "https://git.drupalcode.org/project/entity_browser.git",
  4778. "reference": "8.x-2.6"
  4779. },
  4780. "dist": {
  4781. "type": "zip",
  4782. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.6.zip",
  4783. "reference": "8.x-2.6",
  4784. "shasum": "95cad4ce9620ccb4f02afa0e8b8bbf7c73fc5aac"
  4785. },
  4786. "require": {
  4787. "drupal/core": "^8.8 || ^9"
  4788. },
  4789. "require-dev": {
  4790. "drupal/embed": "~1.0",
  4791. "drupal/entity_embed": "1.x-dev",
  4792. "drupal/entity_reference_revisions": "1.x-dev",
  4793. "drupal/entityqueue": "1.x-dev",
  4794. "drupal/inline_entity_form": "1.x-dev",
  4795. "drupal/paragraphs": "1.x-dev",
  4796. "drupal/token": "~1.0"
  4797. },
  4798. "type": "drupal-module",
  4799. "extra": {
  4800. "drupal": {
  4801. "version": "8.x-2.6",
  4802. "datestamp": "1624401306",
  4803. "security-coverage": {
  4804. "status": "covered",
  4805. "message": "Covered by Drupal's security advisory policy"
  4806. }
  4807. }
  4808. },
  4809. "notification-url": "https://packages.drupal.org/8/downloads",
  4810. "license": [
  4811. "GPL-2.0+"
  4812. ],
  4813. "authors": [
  4814. {
  4815. "name": "Janez Urevc",
  4816. "homepage": "https://github.com/slashrsm",
  4817. "role": "Maintainer"
  4818. },
  4819. {
  4820. "name": "Primoz Hmeljak",
  4821. "homepage": "https://github.com/primsi",
  4822. "role": "Maintainer"
  4823. },
  4824. {
  4825. "name": "See other contributors",
  4826. "homepage": "https://www.drupal.org/node/1943336/committers",
  4827. "role": "contributor"
  4828. },
  4829. {
  4830. "name": "Drupal Media Team",
  4831. "homepage": "https://www.drupal.org/user/3260690"
  4832. },
  4833. {
  4834. "name": "Primsi",
  4835. "homepage": "https://www.drupal.org/user/282629"
  4836. },
  4837. {
  4838. "name": "marcingy",
  4839. "homepage": "https://www.drupal.org/user/77320"
  4840. },
  4841. {
  4842. "name": "oknate",
  4843. "homepage": "https://www.drupal.org/user/471638"
  4844. },
  4845. {
  4846. "name": "samuel.mortenson",
  4847. "homepage": "https://www.drupal.org/user/2582268"
  4848. },
  4849. {
  4850. "name": "slashrsm",
  4851. "homepage": "https://www.drupal.org/user/744628"
  4852. }
  4853. ],
  4854. "description": "Entity browsing and selecting component.",
  4855. "homepage": "http://drupal.org/project/entity_browser",
  4856. "support": {
  4857. "source": "https://git.drupalcode.org/project/entity_browser",
  4858. "issues": "https://www.drupal.org/project/issues/entity_browser",
  4859. "irc": "irc://irc.freenode.org/drupal-contribute"
  4860. }
  4861. },
  4862. {
  4863. "name": "drupal/entity_browser_enhanced",
  4864. "version": "1.0.0",
  4865. "source": {
  4866. "type": "git",
  4867. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  4868. "reference": "8.x-1.0"
  4869. },
  4870. "dist": {
  4871. "type": "zip",
  4872. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-8.x-1.0.zip",
  4873. "reference": "8.x-1.0",
  4874. "shasum": "c309e3c3eb65c358fafc577de68f3cbb8c118865"
  4875. },
  4876. "require": {
  4877. "drupal/core": "^8 || ^9",
  4878. "drupal/entity_browser": "~2.0"
  4879. },
  4880. "type": "drupal-module",
  4881. "extra": {
  4882. "drupal": {
  4883. "version": "8.x-1.0",
  4884. "datestamp": "1581940931",
  4885. "security-coverage": {
  4886. "status": "covered",
  4887. "message": "Covered by Drupal's security advisory policy"
  4888. }
  4889. },
  4890. "branch-alias": {
  4891. "dev-8.x-1.x": "8.1.x-dev"
  4892. }
  4893. },
  4894. "notification-url": "https://packages.drupal.org/8/downloads",
  4895. "license": [
  4896. "GPL-2.0-or-later"
  4897. ],
  4898. "authors": [
  4899. {
  4900. "name": "Vardot",
  4901. "homepage": "https://www.drupal.org/vardot",
  4902. "role": "Maintainer"
  4903. },
  4904. {
  4905. "name": "RajabNatshah",
  4906. "homepage": "https://www.drupal.org/user/1414312"
  4907. }
  4908. ],
  4909. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  4910. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  4911. "support": {
  4912. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  4913. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  4914. }
  4915. },
  4916. {
  4917. "name": "drupal/entity_clone",
  4918. "version": "1.0.0-beta4",
  4919. "source": {
  4920. "type": "git",
  4921. "url": "https://git.drupalcode.org/project/entity_clone.git",
  4922. "reference": "8.x-1.0-beta4"
  4923. },
  4924. "dist": {
  4925. "type": "zip",
  4926. "url": "https://ftp.drupal.org/files/projects/entity_clone-8.x-1.0-beta4.zip",
  4927. "reference": "8.x-1.0-beta4",
  4928. "shasum": "4568ca25634d4ce4f142f56156259ba1f0d9f3c1"
  4929. },
  4930. "require": {
  4931. "drupal/core": "^8 || ^9"
  4932. },
  4933. "type": "drupal-module",
  4934. "extra": {
  4935. "drupal": {
  4936. "version": "8.x-1.0-beta4",
  4937. "datestamp": "1588605099",
  4938. "security-coverage": {
  4939. "status": "not-covered",
  4940. "message": "Beta releases are not covered by Drupal security advisories."
  4941. }
  4942. }
  4943. },
  4944. "notification-url": "https://packages.drupal.org/8/downloads",
  4945. "license": [
  4946. "GPL-2.0-or-later"
  4947. ],
  4948. "authors": [
  4949. {
  4950. "name": "vpeltot",
  4951. "homepage": "https://www.drupal.org/user/1361586"
  4952. }
  4953. ],
  4954. "description": "Add a clone action for all entities",
  4955. "homepage": "https://www.drupal.org/project/entity_clone",
  4956. "support": {
  4957. "source": "https://git.drupalcode.org/project/entity_clone"
  4958. }
  4959. },
  4960. {
  4961. "name": "drupal/entity_reference_revisions",
  4962. "version": "1.9.0",
  4963. "source": {
  4964. "type": "git",
  4965. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  4966. "reference": "8.x-1.9"
  4967. },
  4968. "dist": {
  4969. "type": "zip",
  4970. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.9.zip",
  4971. "reference": "8.x-1.9",
  4972. "shasum": "e1c51bdea495eb3b458130d6f0a00c347f5637df"
  4973. },
  4974. "require": {
  4975. "drupal/core": "^8.7.7 || ^9"
  4976. },
  4977. "require-dev": {
  4978. "drupal/diff": "1.x-dev"
  4979. },
  4980. "type": "drupal-module",
  4981. "extra": {
  4982. "drupal": {
  4983. "version": "8.x-1.9",
  4984. "datestamp": "1614805871",
  4985. "security-coverage": {
  4986. "status": "covered",
  4987. "message": "Covered by Drupal's security advisory policy"
  4988. }
  4989. }
  4990. },
  4991. "notification-url": "https://packages.drupal.org/8/downloads",
  4992. "license": [
  4993. "GPL-2.0-or-later"
  4994. ],
  4995. "authors": [
  4996. {
  4997. "name": "Berdir",
  4998. "homepage": "https://www.drupal.org/user/214652"
  4999. },
  5000. {
  5001. "name": "Frans",
  5002. "homepage": "https://www.drupal.org/user/514222"
  5003. },
  5004. {
  5005. "name": "jeroen.b",
  5006. "homepage": "https://www.drupal.org/user/1853532"
  5007. },
  5008. {
  5009. "name": "miro_dietiker",
  5010. "homepage": "https://www.drupal.org/user/227761"
  5011. }
  5012. ],
  5013. "description": "Entity Reference Revisions",
  5014. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  5015. "support": {
  5016. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  5017. }
  5018. },
  5019. {
  5020. "name": "drupal/extlink",
  5021. "version": "1.6.0",
  5022. "source": {
  5023. "type": "git",
  5024. "url": "https://git.drupalcode.org/project/extlink.git",
  5025. "reference": "8.x-1.6"
  5026. },
  5027. "dist": {
  5028. "type": "zip",
  5029. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.6.zip",
  5030. "reference": "8.x-1.6",
  5031. "shasum": "92c2794b1d5ece7978f5f6fa37f719c0b37d470e"
  5032. },
  5033. "require": {
  5034. "drupal/core": "^8 || ^9"
  5035. },
  5036. "type": "drupal-module",
  5037. "extra": {
  5038. "drupal": {
  5039. "version": "8.x-1.6",
  5040. "datestamp": "1615218226",
  5041. "security-coverage": {
  5042. "status": "covered",
  5043. "message": "Covered by Drupal's security advisory policy"
  5044. }
  5045. }
  5046. },
  5047. "notification-url": "https://packages.drupal.org/8/downloads",
  5048. "license": [
  5049. "GPL-2.0-or-later"
  5050. ],
  5051. "authors": [
  5052. {
  5053. "name": "Nate Lampton",
  5054. "homepage": "https://www.drupal.org/u/quicksketch",
  5055. "role": "Maintainer"
  5056. },
  5057. {
  5058. "name": "Lachlan Ennis",
  5059. "homepage": "https://www.drupal.org/u/elachlan",
  5060. "role": "Maintainer"
  5061. },
  5062. {
  5063. "name": "Neslee Canil Pinto",
  5064. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  5065. "role": "Maintainer"
  5066. }
  5067. ],
  5068. "description": "Modify behavior and appearance of external links.",
  5069. "homepage": "https://www.drupal.org/project/extlink",
  5070. "keywords": [
  5071. "Drupal",
  5072. "External Links"
  5073. ],
  5074. "support": {
  5075. "source": "https://git.drupalcode.org/project/extlink",
  5076. "issues": "https://www.drupal.org/project/issues/extlink"
  5077. }
  5078. },
  5079. {
  5080. "name": "drupal/field_group",
  5081. "version": "3.1.0",
  5082. "source": {
  5083. "type": "git",
  5084. "url": "https://git.drupalcode.org/project/field_group.git",
  5085. "reference": "8.x-3.1"
  5086. },
  5087. "dist": {
  5088. "type": "zip",
  5089. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.1.zip",
  5090. "reference": "8.x-3.1",
  5091. "shasum": "8a719eaea594f0ba874172831cb28da93c66b77a"
  5092. },
  5093. "require": {
  5094. "drupal/core": "^8.8 || ^9"
  5095. },
  5096. "require-dev": {
  5097. "drupal/jquery_ui_accordion": "^1.0"
  5098. },
  5099. "type": "drupal-module",
  5100. "extra": {
  5101. "drupal": {
  5102. "version": "8.x-3.1",
  5103. "datestamp": "1591772567",
  5104. "security-coverage": {
  5105. "status": "covered",
  5106. "message": "Covered by Drupal's security advisory policy"
  5107. }
  5108. }
  5109. },
  5110. "notification-url": "https://packages.drupal.org/8/downloads",
  5111. "license": [
  5112. "GPL-2.0-or-later"
  5113. ],
  5114. "authors": [
  5115. {
  5116. "name": "Hydra",
  5117. "homepage": "https://www.drupal.org/user/647364"
  5118. },
  5119. {
  5120. "name": "Stalski",
  5121. "homepage": "https://www.drupal.org/user/322618"
  5122. },
  5123. {
  5124. "name": "jyve",
  5125. "homepage": "https://www.drupal.org/user/591438"
  5126. },
  5127. {
  5128. "name": "nils.destoop",
  5129. "homepage": "https://www.drupal.org/user/361625"
  5130. },
  5131. {
  5132. "name": "swentel",
  5133. "homepage": "https://www.drupal.org/user/107403"
  5134. }
  5135. ],
  5136. "description": "Provides the field_group module.",
  5137. "homepage": "https://www.drupal.org/project/field_group",
  5138. "support": {
  5139. "source": "https://git.drupalcode.org/project/field_group",
  5140. "issues": "https://www.drupal.org/project/issues/field_group"
  5141. }
  5142. },
  5143. {
  5144. "name": "drupal/file_mdm",
  5145. "version": "2.1.0",
  5146. "source": {
  5147. "type": "git",
  5148. "url": "https://git.drupalcode.org/project/file_mdm.git",
  5149. "reference": "8.x-2.1"
  5150. },
  5151. "dist": {
  5152. "type": "zip",
  5153. "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-2.1.zip",
  5154. "reference": "8.x-2.1",
  5155. "shasum": "5c3d75622299ebddc0e8456bb08bb371da8771bd"
  5156. },
  5157. "require": {
  5158. "drupal/core": "^8.8 || ^9",
  5159. "lsolesen/pel": "^0.9.8",
  5160. "phenx/php-font-lib": "^0.5.2",
  5161. "php": ">=7"
  5162. },
  5163. "require-dev": {
  5164. "drupal/image_effects": "*"
  5165. },
  5166. "type": "drupal-module",
  5167. "extra": {
  5168. "drupal": {
  5169. "version": "8.x-2.1",
  5170. "datestamp": "1586801064",
  5171. "security-coverage": {
  5172. "status": "covered",
  5173. "message": "Covered by Drupal's security advisory policy"
  5174. }
  5175. }
  5176. },
  5177. "notification-url": "https://packages.drupal.org/8/downloads",
  5178. "license": [
  5179. "GPL-2.0-or-later"
  5180. ],
  5181. "authors": [
  5182. {
  5183. "name": "mondrake",
  5184. "homepage": "https://www.drupal.org/user/1307444"
  5185. }
  5186. ],
  5187. "description": "Provides a service to manage file metadata.",
  5188. "homepage": "https://www.drupal.org/project/file_mdm",
  5189. "support": {
  5190. "source": "https://git.drupalcode.org/project/file_mdm"
  5191. }
  5192. },
  5193. {
  5194. "name": "drupal/filefield_sources",
  5195. "version": "dev-1.x",
  5196. "source": {
  5197. "type": "git",
  5198. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  5199. "reference": "2477ff91863c9c19569de4ebb3d379d0e5e24312"
  5200. },
  5201. "require": {
  5202. "drupal/core": "^8 || ^9"
  5203. },
  5204. "require-dev": {
  5205. "drupal/imce": "*"
  5206. },
  5207. "type": "drupal-module",
  5208. "extra": {
  5209. "branch-alias": {
  5210. "dev-1.x": "1.x-dev"
  5211. },
  5212. "drupal": {
  5213. "version": "8.x-1.0-alpha3+3-dev",
  5214. "datestamp": "1604712687",
  5215. "security-coverage": {
  5216. "status": "not-covered",
  5217. "message": "Dev releases are not covered by Drupal security advisories."
  5218. }
  5219. }
  5220. },
  5221. "notification-url": "https://packages.drupal.org/8/downloads",
  5222. "license": [
  5223. "GPL-2.0-or-later"
  5224. ],
  5225. "authors": [
  5226. {
  5227. "name": "Nate Lampton (quicksketch)",
  5228. "homepage": "https://www.drupal.org/u/quicksketch",
  5229. "role": "Maintainer"
  5230. },
  5231. {
  5232. "name": "Andrey Khromyshev (profak)",
  5233. "homepage": "https://www.drupal.org/u/profak",
  5234. "role": "Maintainer"
  5235. },
  5236. {
  5237. "name": "David Valdez (gnuget)",
  5238. "homepage": "https://www.drupal.org/u/gnuget",
  5239. "role": "Maintainer"
  5240. }
  5241. ],
  5242. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  5243. "homepage": "https://www.drupal.org/project/filefield_sources",
  5244. "support": {
  5245. "source": "https://git.drupalcode.org/project/filefield_sources",
  5246. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  5247. "irc": "irc://irc.freenode.org/drupal-contribute"
  5248. },
  5249. "time": "2020-11-07T01:30:52+00:00"
  5250. },
  5251. {
  5252. "name": "drupal/filter_perms",
  5253. "version": "dev-1.x",
  5254. "source": {
  5255. "type": "git",
  5256. "url": "https://git.drupalcode.org/project/filter_perms.git",
  5257. "reference": "f9abe65da2236de801902256f8388291bc3d2c83"
  5258. },
  5259. "require": {
  5260. "drupal/core": "^8 || ^9"
  5261. },
  5262. "type": "drupal-module",
  5263. "extra": {
  5264. "branch-alias": {
  5265. "dev-1.x": "1.x-dev"
  5266. },
  5267. "drupal": {
  5268. "version": "8.x-1.0-alpha1+2-dev",
  5269. "datestamp": "1599239698",
  5270. "security-coverage": {
  5271. "status": "not-covered",
  5272. "message": "Dev releases are not covered by Drupal security advisories."
  5273. }
  5274. }
  5275. },
  5276. "notification-url": "https://packages.drupal.org/8/downloads",
  5277. "license": [
  5278. "GPL-2.0-or-later"
  5279. ],
  5280. "authors": [
  5281. {
  5282. "name": "cYu",
  5283. "homepage": "https://www.drupal.org/user/202205"
  5284. },
  5285. {
  5286. "name": "deekayen",
  5287. "homepage": "https://www.drupal.org/user/972"
  5288. },
  5289. {
  5290. "name": "ivagold",
  5291. "homepage": "https://www.drupal.org/user/3061533"
  5292. },
  5293. {
  5294. "name": "mgbellaire",
  5295. "homepage": "https://www.drupal.org/user/1831932"
  5296. },
  5297. {
  5298. "name": "willzyx",
  5299. "homepage": "https://www.drupal.org/user/1043862"
  5300. }
  5301. ],
  5302. "description": "Provides role and module filters to simplify the user permissions page.",
  5303. "homepage": "https://www.drupal.org/project/filter_perms",
  5304. "support": {
  5305. "source": "https://git.drupalcode.org/project/filter_perms"
  5306. },
  5307. "time": "2020-11-17T18:20:11+00:00"
  5308. },
  5309. {
  5310. "name": "drupal/graphql",
  5311. "version": "4.2.0",
  5312. "source": {
  5313. "type": "git",
  5314. "url": "https://git.drupalcode.org/project/graphql.git",
  5315. "reference": "8.x-4.2"
  5316. },
  5317. "dist": {
  5318. "type": "zip",
  5319. "url": "https://ftp.drupal.org/files/projects/graphql-8.x-4.2.zip",
  5320. "reference": "8.x-4.2",
  5321. "shasum": "51f749e36f24cd83318d8fc3c268bac376ffec22"
  5322. },
  5323. "require": {
  5324. "drupal/core": "^8 || ^9",
  5325. "drupal/typed_data": "*",
  5326. "php": ">=7.2",
  5327. "webonyx/graphql-php": "^14.8.0"
  5328. },
  5329. "require-dev": {
  5330. "drupal/node-node": "*"
  5331. },
  5332. "type": "drupal-module",
  5333. "extra": {
  5334. "drupal": {
  5335. "version": "8.x-4.2",
  5336. "datestamp": "1631726359",
  5337. "security-coverage": {
  5338. "status": "covered",
  5339. "message": "Covered by Drupal's security advisory policy"
  5340. }
  5341. }
  5342. },
  5343. "notification-url": "https://packages.drupal.org/8/downloads",
  5344. "license": [
  5345. "GPL-2.0+"
  5346. ],
  5347. "authors": [
  5348. {
  5349. "name": "fubhy",
  5350. "homepage": "https://www.drupal.org/user/761344"
  5351. },
  5352. {
  5353. "name": "hideaway",
  5354. "homepage": "https://www.drupal.org/user/741876"
  5355. },
  5356. {
  5357. "name": "joaogarin",
  5358. "homepage": "https://www.drupal.org/user/612814"
  5359. },
  5360. {
  5361. "name": "klausi",
  5362. "homepage": "https://www.drupal.org/user/262198"
  5363. },
  5364. {
  5365. "name": "pmelab",
  5366. "homepage": "https://www.drupal.org/user/555322"
  5367. }
  5368. ],
  5369. "description": "Exposes your Drupal data model through a GraphQL schema.",
  5370. "homepage": "http://drupal.org/project/graphql",
  5371. "support": {
  5372. "source": "https://git.drupalcode.org/project/graphql"
  5373. }
  5374. },
  5375. {
  5376. "name": "drupal/honeypot",
  5377. "version": "2.0.1",
  5378. "source": {
  5379. "type": "git",
  5380. "url": "https://git.drupalcode.org/project/honeypot.git",
  5381. "reference": "2.0.1"
  5382. },
  5383. "dist": {
  5384. "type": "zip",
  5385. "url": "https://ftp.drupal.org/files/projects/honeypot-2.0.1.zip",
  5386. "reference": "2.0.1",
  5387. "shasum": "c29d248c0fdcdf733a31b9214355acfa73716632"
  5388. },
  5389. "require": {
  5390. "drupal/core": "^8.0 || ^9.0"
  5391. },
  5392. "type": "drupal-module",
  5393. "extra": {
  5394. "drupal": {
  5395. "version": "2.0.1",
  5396. "datestamp": "1597855128",
  5397. "security-coverage": {
  5398. "status": "covered",
  5399. "message": "Covered by Drupal's security advisory policy"
  5400. }
  5401. }
  5402. },
  5403. "notification-url": "https://packages.drupal.org/8/downloads",
  5404. "license": [
  5405. "GPL-2.0-or-later"
  5406. ],
  5407. "authors": [
  5408. {
  5409. "name": "Jeff Geerling",
  5410. "homepage": "https://www.drupal.org/user/213194",
  5411. "email": "geerlingguy@mac.com"
  5412. },
  5413. {
  5414. "name": "geerlingguy",
  5415. "homepage": "https://www.drupal.org/user/389011"
  5416. },
  5417. {
  5418. "name": "vijaycs85",
  5419. "homepage": "https://www.drupal.org/user/93488"
  5420. }
  5421. ],
  5422. "description": "Mitigates spam form submissions using the honeypot method.",
  5423. "homepage": "https://www.drupal.org/project/honeypot",
  5424. "keywords": [
  5425. "deterrent",
  5426. "form",
  5427. "honeypot",
  5428. "honeytrap",
  5429. "php",
  5430. "spam"
  5431. ],
  5432. "support": {
  5433. "source": "https://git.drupalcode.org/project/honeypot",
  5434. "issues": "https://www.drupal.org/project/issues/honeypot"
  5435. }
  5436. },
  5437. {
  5438. "name": "drupal/imagemagick",
  5439. "version": "3.1.0",
  5440. "source": {
  5441. "type": "git",
  5442. "url": "https://git.drupalcode.org/project/imagemagick.git",
  5443. "reference": "8.x-3.1"
  5444. },
  5445. "dist": {
  5446. "type": "zip",
  5447. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-3.1.zip",
  5448. "reference": "8.x-3.1",
  5449. "shasum": "f427b06312325aa667c549fed261f73f29e231e7"
  5450. },
  5451. "require": {
  5452. "drupal/core": "^8.8 || ^9",
  5453. "drupal/file_mdm": "^2",
  5454. "drupal/sophron": "^1",
  5455. "php": ">=7"
  5456. },
  5457. "type": "drupal-module",
  5458. "extra": {
  5459. "drupal": {
  5460. "version": "8.x-3.1",
  5461. "datestamp": "1581420882",
  5462. "security-coverage": {
  5463. "status": "covered",
  5464. "message": "Covered by Drupal's security advisory policy"
  5465. }
  5466. }
  5467. },
  5468. "notification-url": "https://packages.drupal.org/8/downloads",
  5469. "license": [
  5470. "GPL-2.0-or-later"
  5471. ],
  5472. "authors": [
  5473. {
  5474. "name": "Chris Charlton",
  5475. "homepage": "https://www.drupal.org/user/17089"
  5476. },
  5477. {
  5478. "name": "chx",
  5479. "homepage": "https://www.drupal.org/user/9446"
  5480. },
  5481. {
  5482. "name": "claudiu.cristea",
  5483. "homepage": "https://www.drupal.org/user/56348"
  5484. },
  5485. {
  5486. "name": "dman",
  5487. "homepage": "https://www.drupal.org/user/33240"
  5488. },
  5489. {
  5490. "name": "dopry",
  5491. "homepage": "https://www.drupal.org/user/22202"
  5492. },
  5493. {
  5494. "name": "drewish",
  5495. "homepage": "https://www.drupal.org/user/34869"
  5496. },
  5497. {
  5498. "name": "gdl",
  5499. "homepage": "https://www.drupal.org/user/507326"
  5500. },
  5501. {
  5502. "name": "mondrake",
  5503. "homepage": "https://www.drupal.org/user/1307444"
  5504. },
  5505. {
  5506. "name": "quicksketch",
  5507. "homepage": "https://www.drupal.org/user/35821"
  5508. },
  5509. {
  5510. "name": "sun",
  5511. "homepage": "https://www.drupal.org/user/54136"
  5512. },
  5513. {
  5514. "name": "walkah",
  5515. "homepage": "https://www.drupal.org/user/1531"
  5516. }
  5517. ],
  5518. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  5519. "homepage": "https://www.drupal.org/project/imagemagick",
  5520. "support": {
  5521. "source": "https://git.drupalcode.org/project/imagemagick"
  5522. }
  5523. },
  5524. {
  5525. "name": "drupal/inline_entity_form",
  5526. "version": "1.0.0-rc9",
  5527. "source": {
  5528. "type": "git",
  5529. "url": "https://git.drupalcode.org/project/inline_entity_form.git",
  5530. "reference": "8.x-1.0-rc9"
  5531. },
  5532. "dist": {
  5533. "type": "zip",
  5534. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc9.zip",
  5535. "reference": "8.x-1.0-rc9",
  5536. "shasum": "78953103a9c6e4e44bc877820a35f39913ea4559"
  5537. },
  5538. "require": {
  5539. "drupal/core": "^8.8 || ^9",
  5540. "php": ">=7.1"
  5541. },
  5542. "require-dev": {
  5543. "drupal/entity_reference_revisions": "^1.0"
  5544. },
  5545. "type": "drupal-module",
  5546. "extra": {
  5547. "drupal": {
  5548. "version": "8.x-1.0-rc9",
  5549. "datestamp": "1618174486",
  5550. "security-coverage": {
  5551. "status": "not-covered",
  5552. "message": "RC releases are not covered by Drupal security advisories."
  5553. }
  5554. }
  5555. },
  5556. "notification-url": "https://packages.drupal.org/8/downloads",
  5557. "license": [
  5558. "GPL-2.0-or-later"
  5559. ],
  5560. "authors": [
  5561. {
  5562. "name": "bojanz",
  5563. "homepage": "https://www.drupal.org/user/86106"
  5564. },
  5565. {
  5566. "name": "dawehner",
  5567. "homepage": "https://www.drupal.org/user/99340"
  5568. },
  5569. {
  5570. "name": "geek-merlin",
  5571. "homepage": "https://www.drupal.org/user/229048"
  5572. },
  5573. {
  5574. "name": "joachim",
  5575. "homepage": "https://www.drupal.org/user/107701"
  5576. },
  5577. {
  5578. "name": "jsacksick",
  5579. "homepage": "https://www.drupal.org/user/972218"
  5580. },
  5581. {
  5582. "name": "kaythay",
  5583. "homepage": "https://www.drupal.org/user/2182186"
  5584. },
  5585. {
  5586. "name": "oknate",
  5587. "homepage": "https://www.drupal.org/user/471638"
  5588. },
  5589. {
  5590. "name": "rszrama",
  5591. "homepage": "https://www.drupal.org/user/49344"
  5592. },
  5593. {
  5594. "name": "slashrsm",
  5595. "homepage": "https://www.drupal.org/user/744628"
  5596. },
  5597. {
  5598. "name": "webflo",
  5599. "homepage": "https://www.drupal.org/user/254778"
  5600. }
  5601. ],
  5602. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  5603. "homepage": "https://www.drupal.org/project/inline_entity_form",
  5604. "support": {
  5605. "source": "https://git.drupalcode.org/project/inline_entity_form"
  5606. }
  5607. },
  5608. {
  5609. "name": "drupal/insert",
  5610. "version": "dev-2.x",
  5611. "source": {
  5612. "type": "git",
  5613. "url": "https://git.drupalcode.org/project/insert.git",
  5614. "reference": "892cb12f5c748f29106a04b4cdfd4fe77a503118"
  5615. },
  5616. "require": {
  5617. "drupal/core": "^8 || ^9"
  5618. },
  5619. "require-dev": {
  5620. "drupal/colorbox": "*"
  5621. },
  5622. "type": "drupal-module",
  5623. "extra": {
  5624. "branch-alias": {
  5625. "dev-2.x": "2.x-dev"
  5626. },
  5627. "drupal": {
  5628. "version": "8.x-2.0-beta1+6-dev",
  5629. "datestamp": "1597165610",
  5630. "security-coverage": {
  5631. "status": "not-covered",
  5632. "message": "Dev releases are not covered by Drupal security advisories."
  5633. }
  5634. }
  5635. },
  5636. "notification-url": "https://packages.drupal.org/8/downloads",
  5637. "license": [
  5638. "GPL-2.0-or-later"
  5639. ],
  5640. "authors": [
  5641. {
  5642. "name": "Neslee Canil Pinto",
  5643. "homepage": "https://www.drupal.org/user/3580850"
  5644. },
  5645. {
  5646. "name": "Snater",
  5647. "homepage": "https://www.drupal.org/user/3513717"
  5648. },
  5649. {
  5650. "name": "quicksketch",
  5651. "homepage": "https://www.drupal.org/user/35821"
  5652. }
  5653. ],
  5654. "description": "Assists in inserting files, images, or other media into the body field as well as other editor and text areas.",
  5655. "homepage": "https://www.drupal.org/project/insert",
  5656. "support": {
  5657. "source": "https://git.drupalcode.org/project/insert"
  5658. },
  5659. "time": "2020-10-08T16:45:33+00:00"
  5660. },
  5661. {
  5662. "name": "drupal/jquery_ui",
  5663. "version": "1.4.0",
  5664. "source": {
  5665. "type": "git",
  5666. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  5667. "reference": "8.x-1.4"
  5668. },
  5669. "dist": {
  5670. "type": "zip",
  5671. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.4.zip",
  5672. "reference": "8.x-1.4",
  5673. "shasum": "64c19ecc8902e2b4b1ab0cc5f5fe28dbc83bfebe"
  5674. },
  5675. "require": {
  5676. "drupal/core": "^8 || ^9"
  5677. },
  5678. "type": "drupal-module",
  5679. "extra": {
  5680. "drupal": {
  5681. "version": "8.x-1.4",
  5682. "datestamp": "1582149957",
  5683. "security-coverage": {
  5684. "status": "covered",
  5685. "message": "Covered by Drupal's security advisory policy"
  5686. }
  5687. }
  5688. },
  5689. "notification-url": "https://packages.drupal.org/8/downloads",
  5690. "license": [
  5691. "GPL-2.0-or-later"
  5692. ],
  5693. "authors": [
  5694. {
  5695. "name": "RobLoach",
  5696. "homepage": "https://www.drupal.org/user/61114"
  5697. },
  5698. {
  5699. "name": "jjeff",
  5700. "homepage": "https://www.drupal.org/user/17190"
  5701. },
  5702. {
  5703. "name": "lauriii",
  5704. "homepage": "https://www.drupal.org/user/1078742"
  5705. },
  5706. {
  5707. "name": "litwol",
  5708. "homepage": "https://www.drupal.org/user/78134"
  5709. },
  5710. {
  5711. "name": "mfb",
  5712. "homepage": "https://www.drupal.org/user/12302"
  5713. },
  5714. {
  5715. "name": "mfer",
  5716. "homepage": "https://www.drupal.org/user/25701"
  5717. },
  5718. {
  5719. "name": "mikelutz",
  5720. "homepage": "https://www.drupal.org/user/2972409"
  5721. },
  5722. {
  5723. "name": "sun",
  5724. "homepage": "https://www.drupal.org/user/54136"
  5725. },
  5726. {
  5727. "name": "webchick",
  5728. "homepage": "https://www.drupal.org/user/24967"
  5729. },
  5730. {
  5731. "name": "zrpnr",
  5732. "homepage": "https://www.drupal.org/user/1448368"
  5733. }
  5734. ],
  5735. "description": "Provides jQuery UI library.",
  5736. "homepage": "https://www.drupal.org/project/jquery_ui",
  5737. "support": {
  5738. "source": "https://git.drupalcode.org/project/jquery_ui"
  5739. }
  5740. },
  5741. {
  5742. "name": "drupal/jquery_ui_button",
  5743. "version": "1.1.0",
  5744. "source": {
  5745. "type": "git",
  5746. "url": "https://git.drupalcode.org/project/jquery_ui_button.git",
  5747. "reference": "8.x-1.1"
  5748. },
  5749. "dist": {
  5750. "type": "zip",
  5751. "url": "https://ftp.drupal.org/files/projects/jquery_ui_button-8.x-1.1.zip",
  5752. "reference": "8.x-1.1",
  5753. "shasum": "70175a96c9034cc1cb2f28c415b2a9828355cc1a"
  5754. },
  5755. "require": {
  5756. "drupal/core": "^8 || ^9",
  5757. "drupal/jquery_ui": "*",
  5758. "drupal/jquery_ui_checkboxradio": "*",
  5759. "drupal/jquery_ui_controlgroup": "*"
  5760. },
  5761. "type": "drupal-module",
  5762. "extra": {
  5763. "drupal": {
  5764. "version": "8.x-1.1",
  5765. "datestamp": "1584106807",
  5766. "security-coverage": {
  5767. "status": "covered",
  5768. "message": "Covered by Drupal's security advisory policy"
  5769. }
  5770. }
  5771. },
  5772. "notification-url": "https://packages.drupal.org/8/downloads",
  5773. "license": [
  5774. "GPL-2.0-or-later"
  5775. ],
  5776. "authors": [
  5777. {
  5778. "name": "bnjmnm",
  5779. "homepage": "https://www.drupal.org/user/2369194"
  5780. },
  5781. {
  5782. "name": "lauriii",
  5783. "homepage": "https://www.drupal.org/user/1078742"
  5784. },
  5785. {
  5786. "name": "zrpnr",
  5787. "homepage": "https://www.drupal.org/user/1448368"
  5788. }
  5789. ],
  5790. "description": "Provides jQuery UI Button library.",
  5791. "homepage": "https://www.drupal.org/project/jquery_ui_button",
  5792. "support": {
  5793. "source": "https://git.drupalcode.org/project/jquery_ui_button"
  5794. }
  5795. },
  5796. {
  5797. "name": "drupal/jquery_ui_checkboxradio",
  5798. "version": "1.2.0",
  5799. "source": {
  5800. "type": "git",
  5801. "url": "https://git.drupalcode.org/project/jquery_ui_checkboxradio.git",
  5802. "reference": "8.x-1.2"
  5803. },
  5804. "dist": {
  5805. "type": "zip",
  5806. "url": "https://ftp.drupal.org/files/projects/jquery_ui_checkboxradio-8.x-1.2.zip",
  5807. "reference": "8.x-1.2",
  5808. "shasum": "8edb088cb89f4a0f95aa9d43894bf506dc5f6fe1"
  5809. },
  5810. "require": {
  5811. "drupal/core": "^8 || ^9",
  5812. "drupal/jquery_ui": "*"
  5813. },
  5814. "type": "drupal-module",
  5815. "extra": {
  5816. "drupal": {
  5817. "version": "8.x-1.2",
  5818. "datestamp": "1584106406",
  5819. "security-coverage": {
  5820. "status": "covered",
  5821. "message": "Covered by Drupal's security advisory policy"
  5822. }
  5823. }
  5824. },
  5825. "notification-url": "https://packages.drupal.org/8/downloads",
  5826. "license": [
  5827. "GPL-2.0-or-later"
  5828. ],
  5829. "authors": [
  5830. {
  5831. "name": "bnjmnm",
  5832. "homepage": "https://www.drupal.org/user/2369194"
  5833. },
  5834. {
  5835. "name": "lauriii",
  5836. "homepage": "https://www.drupal.org/user/1078742"
  5837. },
  5838. {
  5839. "name": "zrpnr",
  5840. "homepage": "https://www.drupal.org/user/1448368"
  5841. }
  5842. ],
  5843. "description": "Provides jQuery UI Checkboxradio library.",
  5844. "homepage": "https://www.drupal.org/project/jquery_ui_checkboxradio",
  5845. "support": {
  5846. "source": "https://git.drupalcode.org/project/jquery_ui_checkboxradio"
  5847. }
  5848. },
  5849. {
  5850. "name": "drupal/jquery_ui_controlgroup",
  5851. "version": "1.1.0",
  5852. "source": {
  5853. "type": "git",
  5854. "url": "https://git.drupalcode.org/project/jquery_ui_controlgroup.git",
  5855. "reference": "8.x-1.1"
  5856. },
  5857. "dist": {
  5858. "type": "zip",
  5859. "url": "https://ftp.drupal.org/files/projects/jquery_ui_controlgroup-8.x-1.1.zip",
  5860. "reference": "8.x-1.1",
  5861. "shasum": "ddbd4f01df4e3c9566aa76ba256217a27f45f48a"
  5862. },
  5863. "require": {
  5864. "drupal/core": "^8 || ^9",
  5865. "drupal/jquery_ui": "*"
  5866. },
  5867. "type": "drupal-module",
  5868. "extra": {
  5869. "drupal": {
  5870. "version": "8.x-1.1",
  5871. "datestamp": "1584106616",
  5872. "security-coverage": {
  5873. "status": "covered",
  5874. "message": "Covered by Drupal's security advisory policy"
  5875. }
  5876. }
  5877. },
  5878. "notification-url": "https://packages.drupal.org/8/downloads",
  5879. "license": [
  5880. "GPL-2.0-or-later"
  5881. ],
  5882. "authors": [
  5883. {
  5884. "name": "bnjmnm",
  5885. "homepage": "https://www.drupal.org/user/2369194"
  5886. },
  5887. {
  5888. "name": "lauriii",
  5889. "homepage": "https://www.drupal.org/user/1078742"
  5890. },
  5891. {
  5892. "name": "zrpnr",
  5893. "homepage": "https://www.drupal.org/user/1448368"
  5894. }
  5895. ],
  5896. "description": "Provides jQuery UI Controlgroup library.",
  5897. "homepage": "https://www.drupal.org/project/jquery_ui_controlgroup",
  5898. "support": {
  5899. "source": "https://git.drupalcode.org/project/jquery_ui_controlgroup"
  5900. }
  5901. },
  5902. {
  5903. "name": "drupal/jquery_ui_datepicker",
  5904. "version": "1.2.0",
  5905. "source": {
  5906. "type": "git",
  5907. "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
  5908. "reference": "8.x-1.2"
  5909. },
  5910. "dist": {
  5911. "type": "zip",
  5912. "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-8.x-1.2.zip",
  5913. "reference": "8.x-1.2",
  5914. "shasum": "19ffa245970ee4e9d908fa0c5d0761f567e487bb"
  5915. },
  5916. "require": {
  5917. "drupal/core": "^8 || ^9",
  5918. "drupal/jquery_ui": "*"
  5919. },
  5920. "type": "drupal-module",
  5921. "extra": {
  5922. "drupal": {
  5923. "version": "8.x-1.2",
  5924. "datestamp": "1642614454",
  5925. "security-coverage": {
  5926. "status": "covered",
  5927. "message": "Covered by Drupal's security advisory policy"
  5928. }
  5929. }
  5930. },
  5931. "notification-url": "https://packages.drupal.org/8/downloads",
  5932. "license": [
  5933. "GPL-2.0-or-later"
  5934. ],
  5935. "authors": [
  5936. {
  5937. "name": "Andrei Ivnitskii",
  5938. "homepage": "https://www.drupal.org/u/ivnish",
  5939. "role": "Maintainer"
  5940. },
  5941. {
  5942. "name": "ivnish",
  5943. "homepage": "https://www.drupal.org/user/3547706"
  5944. },
  5945. {
  5946. "name": "jrockowitz",
  5947. "homepage": "https://www.drupal.org/user/371407"
  5948. },
  5949. {
  5950. "name": "lauriii",
  5951. "homepage": "https://www.drupal.org/user/1078742"
  5952. },
  5953. {
  5954. "name": "zrpnr",
  5955. "homepage": "https://www.drupal.org/user/1448368"
  5956. }
  5957. ],
  5958. "description": "Provides jQuery UI Datepicker library.",
  5959. "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
  5960. "support": {
  5961. "source": "https://git.drupalcode.org/project/jquery_ui_datepicker",
  5962. "issues": "https://www.drupal.org/project/issues/jquery_ui_datepicker"
  5963. }
  5964. },
  5965. {
  5966. "name": "drupal/jquery_ui_slider",
  5967. "version": "1.1.0",
  5968. "source": {
  5969. "type": "git",
  5970. "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
  5971. "reference": "8.x-1.1"
  5972. },
  5973. "dist": {
  5974. "type": "zip",
  5975. "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-8.x-1.1.zip",
  5976. "reference": "8.x-1.1",
  5977. "shasum": "79b90cf60d45fc33ffdaa84bb2d6563f78a7d3d1"
  5978. },
  5979. "require": {
  5980. "drupal/core": "^8 || ^9",
  5981. "drupal/jquery_ui": "*"
  5982. },
  5983. "type": "drupal-module",
  5984. "extra": {
  5985. "drupal": {
  5986. "version": "8.x-1.1",
  5987. "datestamp": "1584107817",
  5988. "security-coverage": {
  5989. "status": "covered",
  5990. "message": "Covered by Drupal's security advisory policy"
  5991. }
  5992. }
  5993. },
  5994. "notification-url": "https://packages.drupal.org/8/downloads",
  5995. "license": [
  5996. "GPL-2.0-or-later"
  5997. ],
  5998. "authors": [
  5999. {
  6000. "name": "bnjmnm",
  6001. "homepage": "https://www.drupal.org/user/2369194"
  6002. },
  6003. {
  6004. "name": "lauriii",
  6005. "homepage": "https://www.drupal.org/user/1078742"
  6006. },
  6007. {
  6008. "name": "zrpnr",
  6009. "homepage": "https://www.drupal.org/user/1448368"
  6010. }
  6011. ],
  6012. "description": "Provides jQuery UI Slider library.",
  6013. "homepage": "https://www.drupal.org/project/jquery_ui_slider",
  6014. "support": {
  6015. "source": "https://git.drupalcode.org/project/jquery_ui_slider"
  6016. }
  6017. },
  6018. {
  6019. "name": "drupal/jquery_ui_touch_punch",
  6020. "version": "1.0.0",
  6021. "source": {
  6022. "type": "git",
  6023. "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
  6024. "reference": "1.0.0"
  6025. },
  6026. "dist": {
  6027. "type": "zip",
  6028. "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.0.0.zip",
  6029. "reference": "1.0.0",
  6030. "shasum": "8444a0ed897ba3d8e8876a9602ec8b3dca678cd1"
  6031. },
  6032. "require": {
  6033. "drupal/core": "^8 || ^9",
  6034. "drupal/jquery_ui": "^1.0"
  6035. },
  6036. "suggest": {
  6037. "furf/jquery-ui-touch-punch": "Required to use drupal/jquery_ui_touch_punch module."
  6038. },
  6039. "type": "drupal-module",
  6040. "extra": {
  6041. "drupal": {
  6042. "version": "1.0.0",
  6043. "datestamp": "1591893292",
  6044. "security-coverage": {
  6045. "status": "not-covered",
  6046. "message": "Project has not opted into security advisory coverage!"
  6047. }
  6048. }
  6049. },
  6050. "notification-url": "https://packages.drupal.org/8/downloads",
  6051. "license": [
  6052. "GPL-2.0+"
  6053. ],
  6054. "authors": [
  6055. {
  6056. "name": "Naveen Valecha",
  6057. "homepage": "https://drupal.org/u/naveenvalecha",
  6058. "role": "Maintainer"
  6059. }
  6060. ],
  6061. "description": "Provides jQuery UI Touch Punch library.",
  6062. "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
  6063. "keywords": [
  6064. "Drupal",
  6065. "jquery_ui_touch_punch"
  6066. ],
  6067. "support": {
  6068. "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
  6069. "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch",
  6070. "irc": "irc://irc.freenode.org/drupal-contribute"
  6071. }
  6072. },
  6073. {
  6074. "name": "drupal/link_attributes",
  6075. "version": "1.11.0",
  6076. "source": {
  6077. "type": "git",
  6078. "url": "https://git.drupalcode.org/project/link_attributes.git",
  6079. "reference": "8.x-1.11"
  6080. },
  6081. "dist": {
  6082. "type": "zip",
  6083. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.11.zip",
  6084. "reference": "8.x-1.11",
  6085. "shasum": "ca8c7e71c38350e3784dc3d1f779d700f55df818"
  6086. },
  6087. "require": {
  6088. "drupal/core": "^8 || ^9"
  6089. },
  6090. "type": "drupal-module",
  6091. "extra": {
  6092. "drupal": {
  6093. "version": "8.x-1.11",
  6094. "datestamp": "1598323550",
  6095. "security-coverage": {
  6096. "status": "covered",
  6097. "message": "Covered by Drupal's security advisory policy"
  6098. }
  6099. }
  6100. },
  6101. "notification-url": "https://packages.drupal.org/8/downloads",
  6102. "license": [
  6103. "GPL-2.0-or-later"
  6104. ],
  6105. "authors": [
  6106. {
  6107. "name": "larowlan",
  6108. "homepage": "https://www.drupal.org/user/395439"
  6109. }
  6110. ],
  6111. "description": "Provides a widget to allow settings of link attributes for menu links.",
  6112. "homepage": "https://www.drupal.org/project/link_attributes",
  6113. "support": {
  6114. "source": "https://git.drupalcode.org/project/link_attributes"
  6115. }
  6116. },
  6117. {
  6118. "name": "drupal/linkit",
  6119. "version": "5.0.0-beta13",
  6120. "source": {
  6121. "type": "git",
  6122. "url": "https://git.drupalcode.org/project/linkit.git",
  6123. "reference": "8.x-5.0-beta13"
  6124. },
  6125. "dist": {
  6126. "type": "zip",
  6127. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta13.zip",
  6128. "reference": "8.x-5.0-beta13",
  6129. "shasum": "9215fbea84166cabc9b7a2d9a04dedaffb9fc1ed"
  6130. },
  6131. "require": {
  6132. "drupal/core": "^8.7.7 || ^9"
  6133. },
  6134. "require-dev": {
  6135. "drupal/imce": "*"
  6136. },
  6137. "type": "drupal-module",
  6138. "extra": {
  6139. "drupal": {
  6140. "version": "8.x-5.0-beta13",
  6141. "datestamp": "1632946970",
  6142. "security-coverage": {
  6143. "status": "not-covered",
  6144. "message": "Beta releases are not covered by Drupal security advisories."
  6145. }
  6146. }
  6147. },
  6148. "notification-url": "https://packages.drupal.org/8/downloads",
  6149. "license": [
  6150. "GPL-2.0-or-later"
  6151. ],
  6152. "authors": [
  6153. {
  6154. "name": "Emil Stjerneman",
  6155. "homepage": "https://stjerneman.com",
  6156. "email": "emil@stjerneman.com",
  6157. "role": "Maintainer"
  6158. },
  6159. {
  6160. "name": "johnwebdev",
  6161. "homepage": "https://www.drupal.org/user/3331569"
  6162. }
  6163. ],
  6164. "description": "Linkit - Enriched linking experience",
  6165. "homepage": "http://drupal.org/project/linkit",
  6166. "support": {
  6167. "source": "http://cgit.drupalcode.org/linkit",
  6168. "issues": "http://drupal.org/project/linkit"
  6169. }
  6170. },
  6171. {
  6172. "name": "drupal/login_destination",
  6173. "version": "dev-2.x",
  6174. "source": {
  6175. "type": "git",
  6176. "url": "https://git.drupalcode.org/project/login_destination.git",
  6177. "reference": "0a2c46abd451b4c83e2f5a50cb791e68b141a8ab"
  6178. },
  6179. "require": {
  6180. "drupal/core": "^8.7.10 || ^9"
  6181. },
  6182. "require-dev": {
  6183. "drupal/admin_toolbar": "^1.23",
  6184. "drupal/admin_toolbar_tools": "*"
  6185. },
  6186. "type": "drupal-module",
  6187. "extra": {
  6188. "branch-alias": {
  6189. "dev-2.x": "2.x-dev"
  6190. },
  6191. "drupal": {
  6192. "version": "8.x-2.0-alpha3+8-dev",
  6193. "datestamp": "1603450565",
  6194. "security-coverage": {
  6195. "status": "not-covered",
  6196. "message": "Dev releases are not covered by Drupal security advisories."
  6197. }
  6198. }
  6199. },
  6200. "notification-url": "https://packages.drupal.org/8/downloads",
  6201. "license": [
  6202. "GPL-2.0-or-later"
  6203. ],
  6204. "authors": [
  6205. {
  6206. "name": "3CWebDev",
  6207. "homepage": "https://www.drupal.org/user/61221"
  6208. },
  6209. {
  6210. "name": "Oliver Huynh",
  6211. "homepage": "https://www.drupal.org/user/243730"
  6212. },
  6213. {
  6214. "name": "beautifulmind",
  6215. "homepage": "https://www.drupal.org/user/219482"
  6216. },
  6217. {
  6218. "name": "ddrozdik",
  6219. "homepage": "https://www.drupal.org/user/574124"
  6220. },
  6221. {
  6222. "name": "jng12",
  6223. "homepage": "https://www.drupal.org/user/204316"
  6224. },
  6225. {
  6226. "name": "marcp",
  6227. "homepage": "https://www.drupal.org/user/20885"
  6228. },
  6229. {
  6230. "name": "mithy",
  6231. "homepage": "https://www.drupal.org/user/258911"
  6232. },
  6233. {
  6234. "name": "moshe weitzman",
  6235. "homepage": "https://www.drupal.org/user/23"
  6236. },
  6237. {
  6238. "name": "perennial.sky",
  6239. "homepage": "https://www.drupal.org/user/2622667"
  6240. },
  6241. {
  6242. "name": "rsvelko",
  6243. "homepage": "https://www.drupal.org/user/337401"
  6244. }
  6245. ],
  6246. "description": "The Login Destination module add possibility customize the destination that the user is redirected to after login.",
  6247. "homepage": "https://www.drupal.org/project/login_destination",
  6248. "support": {
  6249. "source": "https://git.drupalcode.org/project/login_destination"
  6250. },
  6251. "time": "2020-10-23T10:55:36+00:00"
  6252. },
  6253. {
  6254. "name": "drupal/maillog",
  6255. "version": "dev-1.x",
  6256. "source": {
  6257. "type": "git",
  6258. "url": "https://git.drupalcode.org/project/maillog.git",
  6259. "reference": "053d0b4a53aea4f848be75b02fc8974bb7b053b3"
  6260. },
  6261. "require": {
  6262. "drupal/core": "^8 || ^9"
  6263. },
  6264. "type": "drupal-module",
  6265. "extra": {
  6266. "branch-alias": {
  6267. "dev-1.x": "1.x-dev"
  6268. },
  6269. "drupal": {
  6270. "version": "8.x-1.0-beta1+0-dev",
  6271. "datestamp": "1600799873",
  6272. "security-coverage": {
  6273. "status": "not-covered",
  6274. "message": "Dev releases are not covered by Drupal security advisories."
  6275. }
  6276. }
  6277. },
  6278. "notification-url": "https://packages.drupal.org/8/downloads",
  6279. "license": [
  6280. "GPL-2.0-or-later"
  6281. ],
  6282. "authors": [
  6283. {
  6284. "name": "Berdir",
  6285. "homepage": "https://www.drupal.org/user/214652"
  6286. },
  6287. {
  6288. "name": "DamienMcKenna",
  6289. "homepage": "https://www.drupal.org/user/108450"
  6290. },
  6291. {
  6292. "name": "miro_dietiker",
  6293. "homepage": "https://www.drupal.org/user/227761"
  6294. },
  6295. {
  6296. "name": "pluess",
  6297. "homepage": "https://www.drupal.org/user/84659"
  6298. }
  6299. ],
  6300. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  6301. "homepage": "https://www.drupal.org/project/maillog",
  6302. "support": {
  6303. "source": "https://git.drupalcode.org/project/maillog"
  6304. },
  6305. "time": "2020-09-22T18:37:31+00:00"
  6306. },
  6307. {
  6308. "name": "drupal/mailsystem",
  6309. "version": "4.3.0",
  6310. "source": {
  6311. "type": "git",
  6312. "url": "https://git.drupalcode.org/project/mailsystem.git",
  6313. "reference": "8.x-4.3"
  6314. },
  6315. "dist": {
  6316. "type": "zip",
  6317. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.3.zip",
  6318. "reference": "8.x-4.3",
  6319. "shasum": "1a74016e268ff207535be5d5e42ac8f72ac89050"
  6320. },
  6321. "require": {
  6322. "drupal/core": "^8.7.7 || ^9"
  6323. },
  6324. "type": "drupal-module",
  6325. "extra": {
  6326. "drupal": {
  6327. "version": "8.x-4.3",
  6328. "datestamp": "1586203024",
  6329. "security-coverage": {
  6330. "status": "covered",
  6331. "message": "Covered by Drupal's security advisory policy"
  6332. }
  6333. }
  6334. },
  6335. "notification-url": "https://packages.drupal.org/8/downloads",
  6336. "license": [
  6337. "GPL-2.0+"
  6338. ],
  6339. "authors": [
  6340. {
  6341. "name": "Berdir",
  6342. "homepage": "https://www.drupal.org/user/214652"
  6343. },
  6344. {
  6345. "name": "Les Lim",
  6346. "homepage": "https://www.drupal.org/user/84263"
  6347. },
  6348. {
  6349. "name": "Manuel Garcia",
  6350. "homepage": "https://www.drupal.org/user/213194"
  6351. },
  6352. {
  6353. "name": "Nafes",
  6354. "homepage": "https://www.drupal.org/user/2489926"
  6355. },
  6356. {
  6357. "name": "miro_dietiker",
  6358. "homepage": "https://www.drupal.org/user/227761"
  6359. },
  6360. {
  6361. "name": "pillarsdotnet",
  6362. "homepage": "https://www.drupal.org/user/36148"
  6363. }
  6364. ],
  6365. "description": "Mail System",
  6366. "homepage": "https://www.drupal.org/project/mailsystem",
  6367. "support": {
  6368. "source": "https://git.drupalcode.org/project/mailsystem"
  6369. }
  6370. },
  6371. {
  6372. "name": "drupal/matomo",
  6373. "version": "1.11.0",
  6374. "source": {
  6375. "type": "git",
  6376. "url": "https://git.drupalcode.org/project/matomo.git",
  6377. "reference": "8.x-1.11"
  6378. },
  6379. "dist": {
  6380. "type": "zip",
  6381. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.11.zip",
  6382. "reference": "8.x-1.11",
  6383. "shasum": "82be96c20ab15df03d199ab98d047cef6e67d40b"
  6384. },
  6385. "require": {
  6386. "drupal/core": "^8 || ^9"
  6387. },
  6388. "require-dev": {
  6389. "drupal/php": "*",
  6390. "drupal/token": "*"
  6391. },
  6392. "type": "drupal-module",
  6393. "extra": {
  6394. "drupal": {
  6395. "version": "8.x-1.11",
  6396. "datestamp": "1601651459",
  6397. "security-coverage": {
  6398. "status": "covered",
  6399. "message": "Covered by Drupal's security advisory policy"
  6400. }
  6401. }
  6402. },
  6403. "notification-url": "https://packages.drupal.org/8/downloads",
  6404. "license": [
  6405. "GPL-2.0-or-later"
  6406. ],
  6407. "authors": [
  6408. {
  6409. "name": "Carsten Logemann",
  6410. "homepage": "https://www.drupal.org/u/C_Logemann"
  6411. },
  6412. {
  6413. "name": "Shelane French",
  6414. "homepage": "https://www.drupal.org/u/shelane"
  6415. },
  6416. {
  6417. "name": "See other contributors",
  6418. "homepage": "https://www.drupal.org/node/247808/committers"
  6419. }
  6420. ],
  6421. "description": "Adds Matomo javascript tracking code to all your site's pages",
  6422. "homepage": "https://www.drupal.org/project/matomo",
  6423. "support": {
  6424. "source": "https://git.drupal.org/project/matomo.git",
  6425. "issues": "https://www.drupal.org/project/issues/matomo"
  6426. }
  6427. },
  6428. {
  6429. "name": "drupal/maxlength",
  6430. "version": "1.0.0-rc1",
  6431. "source": {
  6432. "type": "git",
  6433. "url": "https://git.drupalcode.org/project/maxlength.git",
  6434. "reference": "8.x-1.0-rc1"
  6435. },
  6436. "dist": {
  6437. "type": "zip",
  6438. "url": "https://ftp.drupal.org/files/projects/maxlength-8.x-1.0-rc1.zip",
  6439. "reference": "8.x-1.0-rc1",
  6440. "shasum": "44eb9d79d9814cd786c2c9874c28033759665a99"
  6441. },
  6442. "require": {
  6443. "drupal/core": "^8.8 || ^9"
  6444. },
  6445. "type": "drupal-module",
  6446. "extra": {
  6447. "drupal": {
  6448. "version": "8.x-1.0-rc1",
  6449. "datestamp": "1593198218",
  6450. "security-coverage": {
  6451. "status": "not-covered",
  6452. "message": "RC releases are not covered by Drupal security advisories."
  6453. }
  6454. }
  6455. },
  6456. "notification-url": "https://packages.drupal.org/8/downloads",
  6457. "license": [
  6458. "GPL-2.0-or-later"
  6459. ],
  6460. "authors": [
  6461. {
  6462. "name": "Aron Novak",
  6463. "homepage": "https://www.drupal.org/user/61864"
  6464. },
  6465. {
  6466. "name": "Schnitzel",
  6467. "homepage": "https://www.drupal.org/user/643820"
  6468. },
  6469. {
  6470. "name": "a_c_m",
  6471. "homepage": "https://www.drupal.org/user/195063"
  6472. },
  6473. {
  6474. "name": "barneytech",
  6475. "homepage": "https://www.drupal.org/user/669922"
  6476. },
  6477. {
  6478. "name": "claudiu_cristea",
  6479. "homepage": "https://www.drupal.org/user/2623935"
  6480. },
  6481. {
  6482. "name": "dawehner",
  6483. "homepage": "https://www.drupal.org/user/99340"
  6484. },
  6485. {
  6486. "name": "derhasi",
  6487. "homepage": "https://www.drupal.org/user/83474"
  6488. },
  6489. {
  6490. "name": "frjo",
  6491. "homepage": "https://www.drupal.org/user/5546"
  6492. },
  6493. {
  6494. "name": "hefox",
  6495. "homepage": "https://www.drupal.org/user/426416"
  6496. },
  6497. {
  6498. "name": "jm.federico",
  6499. "homepage": "https://www.drupal.org/user/509892"
  6500. },
  6501. {
  6502. "name": "k4v",
  6503. "homepage": "https://www.drupal.org/user/744246"
  6504. },
  6505. {
  6506. "name": "mariano73",
  6507. "homepage": "https://www.drupal.org/user/1324866"
  6508. },
  6509. {
  6510. "name": "mariuss",
  6511. "homepage": "https://www.drupal.org/user/28539"
  6512. },
  6513. {
  6514. "name": "sanduhrs",
  6515. "homepage": "https://www.drupal.org/user/28074"
  6516. },
  6517. {
  6518. "name": "vasi1186",
  6519. "homepage": "https://www.drupal.org/user/342104"
  6520. },
  6521. {
  6522. "name": "webiator GmbH",
  6523. "homepage": "https://www.drupal.org/user/2390554"
  6524. }
  6525. ],
  6526. "description": "Limit the number of characters in textfields and textareas and shows the amount of characters left.",
  6527. "homepage": "https://www.drupal.org/project/maxlength",
  6528. "support": {
  6529. "source": "https://git.drupalcode.org/project/maxlength"
  6530. }
  6531. },
  6532. {
  6533. "name": "drupal/menu_admin_per_menu",
  6534. "version": "1.3.0",
  6535. "source": {
  6536. "type": "git",
  6537. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  6538. "reference": "8.x-1.3"
  6539. },
  6540. "dist": {
  6541. "type": "zip",
  6542. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.3.zip",
  6543. "reference": "8.x-1.3",
  6544. "shasum": "cb967bdd9ca6f5692d670d5c7c8d77587e7fd38c"
  6545. },
  6546. "require": {
  6547. "drupal/core": "^8 || ^9"
  6548. },
  6549. "type": "drupal-module",
  6550. "extra": {
  6551. "drupal": {
  6552. "version": "8.x-1.3",
  6553. "datestamp": "1593436060",
  6554. "security-coverage": {
  6555. "status": "covered",
  6556. "message": "Covered by Drupal's security advisory policy"
  6557. }
  6558. }
  6559. },
  6560. "notification-url": "https://packages.drupal.org/8/downloads",
  6561. "license": [
  6562. "GPL-2.0-or-later"
  6563. ],
  6564. "authors": [
  6565. {
  6566. "name": "JeroenT",
  6567. "homepage": "https://www.drupal.org/user/2228934"
  6568. },
  6569. {
  6570. "name": "anrikun",
  6571. "homepage": "https://www.drupal.org/user/410199"
  6572. },
  6573. {
  6574. "name": "jonas139",
  6575. "homepage": "https://www.drupal.org/user/2873401"
  6576. },
  6577. {
  6578. "name": "mkdok",
  6579. "homepage": "https://www.drupal.org/user/3308753"
  6580. }
  6581. ],
  6582. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  6583. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  6584. "support": {
  6585. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  6586. }
  6587. },
  6588. {
  6589. "name": "drupal/menu_block",
  6590. "version": "dev-1.x",
  6591. "source": {
  6592. "type": "git",
  6593. "url": "https://git.drupalcode.org/project/menu_block.git",
  6594. "reference": "567becffbb0589e824fb053f15fb38a5846e7276"
  6595. },
  6596. "require": {
  6597. "drupal/core": "^8 || ^9"
  6598. },
  6599. "type": "drupal-module",
  6600. "extra": {
  6601. "branch-alias": {
  6602. "dev-1.x": "1.x-dev"
  6603. },
  6604. "drupal": {
  6605. "version": "8.x-1.6+5-dev",
  6606. "datestamp": "1591593747",
  6607. "security-coverage": {
  6608. "status": "not-covered",
  6609. "message": "Dev releases are not covered by Drupal security advisories."
  6610. }
  6611. }
  6612. },
  6613. "notification-url": "https://packages.drupal.org/8/downloads",
  6614. "license": [
  6615. "GPL-2.0-or-later"
  6616. ],
  6617. "authors": [
  6618. {
  6619. "name": "Dave Reid",
  6620. "homepage": "https://www.drupal.org/user/53892"
  6621. },
  6622. {
  6623. "name": "JohnAlbin",
  6624. "homepage": "https://www.drupal.org/user/32095"
  6625. },
  6626. {
  6627. "name": "joelpittet",
  6628. "homepage": "https://www.drupal.org/user/160302"
  6629. },
  6630. {
  6631. "name": "kim.pepper",
  6632. "homepage": "https://www.drupal.org/user/370574"
  6633. },
  6634. {
  6635. "name": "rrrob",
  6636. "homepage": "https://www.drupal.org/user/273533"
  6637. }
  6638. ],
  6639. "description": "Provides configurable blocks of menu links.",
  6640. "homepage": "https://www.drupal.org/project/menu_block",
  6641. "support": {
  6642. "source": "https://git.drupalcode.org/project/menu_block"
  6643. },
  6644. "time": "2020-11-18T00:42:05+00:00"
  6645. },
  6646. {
  6647. "name": "drupal/menu_position",
  6648. "version": "dev-1.x",
  6649. "source": {
  6650. "type": "git",
  6651. "url": "https://git.drupalcode.org/project/menu_position.git",
  6652. "reference": "bce075f4ea167a851d7401602394de557b76c85f"
  6653. },
  6654. "require": {
  6655. "drupal/core": "^8 || ^9"
  6656. },
  6657. "type": "drupal-module",
  6658. "extra": {
  6659. "branch-alias": {
  6660. "dev-1.x": "1.x-dev"
  6661. },
  6662. "drupal": {
  6663. "version": "8.x-1.0-alpha4+4-dev",
  6664. "datestamp": "1587797468",
  6665. "security-coverage": {
  6666. "status": "not-covered",
  6667. "message": "Dev releases are not covered by Drupal security advisories."
  6668. }
  6669. }
  6670. },
  6671. "notification-url": "https://packages.drupal.org/8/downloads",
  6672. "license": [
  6673. "GPL-2.0+"
  6674. ],
  6675. "authors": [
  6676. {
  6677. "name": "BarisW",
  6678. "homepage": "https://www.drupal.org/user/107229"
  6679. },
  6680. {
  6681. "name": "JohnAlbin",
  6682. "homepage": "https://www.drupal.org/user/32095"
  6683. },
  6684. {
  6685. "name": "Sutharsan",
  6686. "homepage": "https://www.drupal.org/user/73854"
  6687. },
  6688. {
  6689. "name": "joelpittet",
  6690. "homepage": "https://www.drupal.org/user/160302"
  6691. },
  6692. {
  6693. "name": "lbainbridge",
  6694. "homepage": "https://www.drupal.org/user/2406996"
  6695. }
  6696. ],
  6697. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  6698. "homepage": "https://www.drupal.org/project/menu_position",
  6699. "support": {
  6700. "source": "https://git.drupalcode.org/project/menu_position",
  6701. "issues": "https://www.drupal.org/project/issues/menu_position"
  6702. },
  6703. "time": "2020-04-25T06:50:43+00:00"
  6704. },
  6705. {
  6706. "name": "drupal/pagerer",
  6707. "version": "2.1.0",
  6708. "source": {
  6709. "type": "git",
  6710. "url": "https://git.drupalcode.org/project/pagerer.git",
  6711. "reference": "8.x-2.1"
  6712. },
  6713. "dist": {
  6714. "type": "zip",
  6715. "url": "https://ftp.drupal.org/files/projects/pagerer-8.x-2.1.zip",
  6716. "reference": "8.x-2.1",
  6717. "shasum": "a08539fde32372b66771afbaeba4105de19ddb14"
  6718. },
  6719. "require": {
  6720. "drupal/core": "^8.9 || ^9.1",
  6721. "drupal/jquery_ui_button": "*",
  6722. "drupal/jquery_ui_slider": "*",
  6723. "php": ">=7.1"
  6724. },
  6725. "type": "drupal-module",
  6726. "extra": {
  6727. "drupal": {
  6728. "version": "8.x-2.1",
  6729. "datestamp": "1621878520",
  6730. "security-coverage": {
  6731. "status": "covered",
  6732. "message": "Covered by Drupal's security advisory policy"
  6733. }
  6734. }
  6735. },
  6736. "notification-url": "https://packages.drupal.org/8/downloads",
  6737. "license": [
  6738. "GPL-2.0-or-later"
  6739. ],
  6740. "authors": [
  6741. {
  6742. "name": "mondrake",
  6743. "homepage": "https://www.drupal.org/user/1307444"
  6744. }
  6745. ],
  6746. "description": "Configurable pager styles.",
  6747. "homepage": "https://www.drupal.org/project/pagerer",
  6748. "support": {
  6749. "source": "https://git.drupalcode.org/project/pagerer"
  6750. }
  6751. },
  6752. {
  6753. "name": "drupal/paragraphs",
  6754. "version": "1.12.0",
  6755. "source": {
  6756. "type": "git",
  6757. "url": "https://git.drupalcode.org/project/paragraphs.git",
  6758. "reference": "8.x-1.12"
  6759. },
  6760. "dist": {
  6761. "type": "zip",
  6762. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.12.zip",
  6763. "reference": "8.x-1.12",
  6764. "shasum": "3b67d8af1160af42d93a4610be1e02869e428965"
  6765. },
  6766. "require": {
  6767. "drupal/core": "^8.8 || ^9",
  6768. "drupal/entity_reference_revisions": "~1.3"
  6769. },
  6770. "require-dev": {
  6771. "drupal/block_field": "~1.0",
  6772. "drupal/ctools": "3.x-dev",
  6773. "drupal/diff": "~1.0",
  6774. "drupal/entity_browser": "2.x-dev",
  6775. "drupal/entity_usage": "2.x-dev",
  6776. "drupal/field_group": "3.x-dev",
  6777. "drupal/inline_entity_form": "~1.0",
  6778. "drupal/paragraphs-paragraphs_library": "*",
  6779. "drupal/replicate": "~1.0",
  6780. "drupal/search_api": "~1.0",
  6781. "drupal/search_api_db": "*"
  6782. },
  6783. "suggest": {
  6784. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  6785. },
  6786. "type": "drupal-module",
  6787. "extra": {
  6788. "drupal": {
  6789. "version": "8.x-1.12",
  6790. "datestamp": "1590140081",
  6791. "security-coverage": {
  6792. "status": "covered",
  6793. "message": "Covered by Drupal's security advisory policy"
  6794. }
  6795. }
  6796. },
  6797. "notification-url": "https://packages.drupal.org/8/downloads",
  6798. "license": [
  6799. "GPL-2.0-or-later"
  6800. ],
  6801. "authors": [
  6802. {
  6803. "name": "Berdir",
  6804. "homepage": "https://www.drupal.org/user/214652"
  6805. },
  6806. {
  6807. "name": "Frans",
  6808. "homepage": "https://www.drupal.org/user/514222"
  6809. },
  6810. {
  6811. "name": "Primsi",
  6812. "homepage": "https://www.drupal.org/user/282629"
  6813. },
  6814. {
  6815. "name": "jeroen.b",
  6816. "homepage": "https://www.drupal.org/user/1853532"
  6817. },
  6818. {
  6819. "name": "jstoller",
  6820. "homepage": "https://www.drupal.org/user/99012"
  6821. },
  6822. {
  6823. "name": "miro_dietiker",
  6824. "homepage": "https://www.drupal.org/user/227761"
  6825. }
  6826. ],
  6827. "description": "Enables the creation of Paragraphs entities.",
  6828. "homepage": "https://www.drupal.org/project/paragraphs",
  6829. "support": {
  6830. "source": "https://git.drupalcode.org/project/paragraphs"
  6831. }
  6832. },
  6833. {
  6834. "name": "drupal/path_alias_xt",
  6835. "version": "dev-1.x",
  6836. "source": {
  6837. "type": "git",
  6838. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  6839. "reference": "10ef76dd3eb25bc1342195336291ded3f2d8cc7e"
  6840. },
  6841. "require": {
  6842. "drupal/core": "^8.7.7 || ^9"
  6843. },
  6844. "type": "drupal-module",
  6845. "extra": {
  6846. "branch-alias": {
  6847. "dev-1.x": "1.x-dev"
  6848. },
  6849. "drupal": {
  6850. "version": "8.x-1.x-dev",
  6851. "datestamp": "1590299862",
  6852. "security-coverage": {
  6853. "status": "not-covered",
  6854. "message": "Dev releases are not covered by Drupal security advisories."
  6855. }
  6856. }
  6857. },
  6858. "notification-url": "https://packages.drupal.org/8/downloads",
  6859. "license": [
  6860. "GPL-2.0-or-later"
  6861. ],
  6862. "authors": [
  6863. {
  6864. "name": "RdeBoer",
  6865. "homepage": "https://www.drupal.org/user/404007"
  6866. },
  6867. {
  6868. "name": "adriancid",
  6869. "homepage": "https://www.drupal.org/user/1962106"
  6870. },
  6871. {
  6872. "name": "sdstyles",
  6873. "homepage": "https://www.drupal.org/user/1420228"
  6874. }
  6875. ],
  6876. "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.",
  6877. "homepage": "https://www.drupal.org/project/path_alias_xt",
  6878. "support": {
  6879. "source": "https://git.drupalcode.org/project/path_alias_xt"
  6880. },
  6881. "time": "2020-05-24T05:57:09+00:00"
  6882. },
  6883. {
  6884. "name": "drupal/pathauto",
  6885. "version": "1.8.0",
  6886. "source": {
  6887. "type": "git",
  6888. "url": "https://git.drupalcode.org/project/pathauto.git",
  6889. "reference": "8.x-1.8"
  6890. },
  6891. "dist": {
  6892. "type": "zip",
  6893. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.8.zip",
  6894. "reference": "8.x-1.8",
  6895. "shasum": "ede3216abb9c4f77709338d9147334c595046329"
  6896. },
  6897. "require": {
  6898. "drupal/core": "^8.8 || ^9",
  6899. "drupal/ctools": "*",
  6900. "drupal/token": "*"
  6901. },
  6902. "suggest": {
  6903. "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."
  6904. },
  6905. "type": "drupal-module",
  6906. "extra": {
  6907. "drupal": {
  6908. "version": "8.x-1.8",
  6909. "datestamp": "1588103046",
  6910. "security-coverage": {
  6911. "status": "covered",
  6912. "message": "Covered by Drupal's security advisory policy"
  6913. }
  6914. },
  6915. "drush": {
  6916. "services": {
  6917. "drush.services.yml": "^9 || ^10"
  6918. }
  6919. }
  6920. },
  6921. "notification-url": "https://packages.drupal.org/8/downloads",
  6922. "license": [
  6923. "GPL-2.0-or-later"
  6924. ],
  6925. "authors": [
  6926. {
  6927. "name": "Berdir",
  6928. "homepage": "https://www.drupal.org/user/214652"
  6929. },
  6930. {
  6931. "name": "Dave Reid",
  6932. "homepage": "https://www.drupal.org/user/53892"
  6933. },
  6934. {
  6935. "name": "Freso",
  6936. "homepage": "https://www.drupal.org/user/27504"
  6937. },
  6938. {
  6939. "name": "greggles",
  6940. "homepage": "https://www.drupal.org/user/36762"
  6941. }
  6942. ],
  6943. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  6944. "homepage": "https://www.drupal.org/project/pathauto",
  6945. "support": {
  6946. "source": "https://cgit.drupalcode.org/pathauto",
  6947. "issues": "https://www.drupal.org/project/issues/pathauto",
  6948. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  6949. }
  6950. },
  6951. {
  6952. "name": "drupal/pathologic",
  6953. "version": "1.0.0-alpha2",
  6954. "source": {
  6955. "type": "git",
  6956. "url": "https://git.drupalcode.org/project/pathologic.git",
  6957. "reference": "8.x-1.0-alpha2"
  6958. },
  6959. "dist": {
  6960. "type": "zip",
  6961. "url": "https://ftp.drupal.org/files/projects/pathologic-8.x-1.0-alpha2.zip",
  6962. "reference": "8.x-1.0-alpha2",
  6963. "shasum": "5b1b6846ab72e24a90dcd4cafbe855fba069e56b"
  6964. },
  6965. "require": {
  6966. "drupal/core": "^8 || ^9"
  6967. },
  6968. "type": "drupal-module",
  6969. "extra": {
  6970. "drupal": {
  6971. "version": "8.x-1.0-alpha2",
  6972. "datestamp": "1593911470",
  6973. "security-coverage": {
  6974. "status": "not-covered",
  6975. "message": "Alpha releases are not covered by Drupal security advisories."
  6976. }
  6977. }
  6978. },
  6979. "notification-url": "https://packages.drupal.org/8/downloads",
  6980. "license": [
  6981. "GPL-2.0-or-later"
  6982. ],
  6983. "authors": [
  6984. {
  6985. "name": "Berdir",
  6986. "homepage": "https://www.drupal.org/user/214652"
  6987. },
  6988. {
  6989. "name": "Garrett Albright",
  6990. "homepage": "https://www.drupal.org/user/191212"
  6991. },
  6992. {
  6993. "name": "dww",
  6994. "homepage": "https://www.drupal.org/user/46549"
  6995. }
  6996. ],
  6997. "description": "Helps avoid broken links and incorrect paths in content.",
  6998. "homepage": "https://www.drupal.org/project/pathologic",
  6999. "support": {
  7000. "source": "https://git.drupalcode.org/project/pathologic"
  7001. }
  7002. },
  7003. {
  7004. "name": "drupal/persistent_login",
  7005. "version": "1.3.0",
  7006. "source": {
  7007. "type": "git",
  7008. "url": "https://git.drupalcode.org/project/persistent_login.git",
  7009. "reference": "8.x-1.3"
  7010. },
  7011. "dist": {
  7012. "type": "zip",
  7013. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.3.zip",
  7014. "reference": "8.x-1.3",
  7015. "shasum": "dfff4cb76d6b3888073dd992bcf4d51b1bb47696"
  7016. },
  7017. "require": {
  7018. "drupal/core": "^8.3 || ^9.0"
  7019. },
  7020. "type": "drupal-module",
  7021. "extra": {
  7022. "drupal": {
  7023. "version": "8.x-1.3",
  7024. "datestamp": "1591597823",
  7025. "security-coverage": {
  7026. "status": "covered",
  7027. "message": "Covered by Drupal's security advisory policy"
  7028. }
  7029. }
  7030. },
  7031. "notification-url": "https://packages.drupal.org/8/downloads",
  7032. "license": [
  7033. "GPL-2.0-or-later"
  7034. ],
  7035. "authors": [
  7036. {
  7037. "name": "gapple",
  7038. "homepage": "https://www.drupal.org/user/490940"
  7039. }
  7040. ],
  7041. "description": "Provides a \"Remember Me\" feature on the login form.",
  7042. "homepage": "https://www.drupal.org/project/persistent_login",
  7043. "keywords": [
  7044. "Drupal"
  7045. ],
  7046. "support": {
  7047. "source": "https://git.drupalcode.org/project/persistent_login",
  7048. "issues": "https://www.drupal.org/project/issues/persistent_login"
  7049. }
  7050. },
  7051. {
  7052. "name": "drupal/profile",
  7053. "version": "1.2.0",
  7054. "source": {
  7055. "type": "git",
  7056. "url": "https://git.drupalcode.org/project/profile.git",
  7057. "reference": "8.x-1.2"
  7058. },
  7059. "dist": {
  7060. "type": "zip",
  7061. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.2.zip",
  7062. "reference": "8.x-1.2",
  7063. "shasum": "5ea5167ed6cc5b47761ea497fe20bae0fbea1cf2"
  7064. },
  7065. "require": {
  7066. "drupal/core": "^8.8 || ^9",
  7067. "drupal/entity": "^1.0-rc2"
  7068. },
  7069. "require-dev": {
  7070. "drupal/token": "^1.7"
  7071. },
  7072. "type": "drupal-module",
  7073. "extra": {
  7074. "drupal": {
  7075. "version": "8.x-1.2",
  7076. "datestamp": "1604422701",
  7077. "security-coverage": {
  7078. "status": "covered",
  7079. "message": "Covered by Drupal's security advisory policy"
  7080. }
  7081. }
  7082. },
  7083. "notification-url": "https://packages.drupal.org/8/downloads",
  7084. "license": [
  7085. "GPL-2.0-or-later"
  7086. ],
  7087. "authors": [
  7088. {
  7089. "name": "bojanz",
  7090. "homepage": "https://www.drupal.org/user/86106"
  7091. },
  7092. {
  7093. "name": "daggerhart",
  7094. "homepage": "https://www.drupal.org/user/167806"
  7095. },
  7096. {
  7097. "name": "fago",
  7098. "homepage": "https://www.drupal.org/user/16747"
  7099. },
  7100. {
  7101. "name": "jsacksick",
  7102. "homepage": "https://www.drupal.org/user/972218"
  7103. },
  7104. {
  7105. "name": "mglaman",
  7106. "homepage": "https://www.drupal.org/user/2416470"
  7107. },
  7108. {
  7109. "name": "pcambra",
  7110. "homepage": "https://www.drupal.org/user/122101"
  7111. }
  7112. ],
  7113. "description": "Provides configurable user profiles.",
  7114. "homepage": "http://drupal.org/project/profile",
  7115. "support": {
  7116. "source": "https://git.drupalcode.org/project/profile"
  7117. }
  7118. },
  7119. {
  7120. "name": "drupal/redirect",
  7121. "version": "1.6.0",
  7122. "source": {
  7123. "type": "git",
  7124. "url": "https://git.drupalcode.org/project/redirect.git",
  7125. "reference": "8.x-1.6"
  7126. },
  7127. "dist": {
  7128. "type": "zip",
  7129. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.6.zip",
  7130. "reference": "8.x-1.6",
  7131. "shasum": "f848e001deac8425ae57d4b9397087c491d37294"
  7132. },
  7133. "require": {
  7134. "drupal/core": "^8.8 || ^9"
  7135. },
  7136. "type": "drupal-module",
  7137. "extra": {
  7138. "drupal": {
  7139. "version": "8.x-1.6",
  7140. "datestamp": "1589312204",
  7141. "security-coverage": {
  7142. "status": "covered",
  7143. "message": "Covered by Drupal's security advisory policy"
  7144. }
  7145. }
  7146. },
  7147. "notification-url": "https://packages.drupal.org/8/downloads",
  7148. "license": [
  7149. "GPL-2.0-or-later"
  7150. ],
  7151. "authors": [
  7152. {
  7153. "name": "Berdir",
  7154. "homepage": "https://www.drupal.org/user/214652"
  7155. },
  7156. {
  7157. "name": "Dave Reid",
  7158. "homepage": "https://www.drupal.org/user/53892"
  7159. },
  7160. {
  7161. "name": "pifagor",
  7162. "homepage": "https://www.drupal.org/user/2375692"
  7163. }
  7164. ],
  7165. "description": "Allows users to redirect from old URLs to new URLs.",
  7166. "homepage": "https://www.drupal.org/project/redirect",
  7167. "support": {
  7168. "source": "https://git.drupalcode.org/project/redirect"
  7169. }
  7170. },
  7171. {
  7172. "name": "drupal/redirect_after_login",
  7173. "version": "2.7.0",
  7174. "source": {
  7175. "type": "git",
  7176. "url": "https://git.drupalcode.org/project/redirect_after_login.git",
  7177. "reference": "8.x-2.7"
  7178. },
  7179. "dist": {
  7180. "type": "zip",
  7181. "url": "https://ftp.drupal.org/files/projects/redirect_after_login-8.x-2.7.zip",
  7182. "reference": "8.x-2.7",
  7183. "shasum": "3ce87df792e918c2ec5a00e24818c893e558d111"
  7184. },
  7185. "require": {
  7186. "drupal/core": "^8 || ^9"
  7187. },
  7188. "type": "drupal-module",
  7189. "extra": {
  7190. "drupal": {
  7191. "version": "8.x-2.7",
  7192. "datestamp": "1611645039",
  7193. "security-coverage": {
  7194. "status": "covered",
  7195. "message": "Covered by Drupal's security advisory policy"
  7196. }
  7197. }
  7198. },
  7199. "notification-url": "https://packages.drupal.org/8/downloads",
  7200. "license": [
  7201. "GPL-2.0+"
  7202. ],
  7203. "authors": [
  7204. {
  7205. "name": "Shamsher Alam",
  7206. "homepage": "https://www.drupal.org/u/shamsher_alam",
  7207. "role": "Author"
  7208. },
  7209. {
  7210. "name": "pen",
  7211. "homepage": "https://www.drupal.org/user/2435634"
  7212. },
  7213. {
  7214. "name": "prempatel2447",
  7215. "homepage": "https://www.drupal.org/user/3250112"
  7216. },
  7217. {
  7218. "name": "rahul-kr-sh",
  7219. "homepage": "https://www.drupal.org/user/3561577"
  7220. }
  7221. ],
  7222. "description": "Redirect user after login to a configured url",
  7223. "homepage": "https://drupal.org/project/redirect_after_login",
  7224. "support": {
  7225. "source": "https://git.drupalcode.org/project/redirect_after_login"
  7226. }
  7227. },
  7228. {
  7229. "name": "drupal/redis",
  7230. "version": "1.5.0",
  7231. "source": {
  7232. "type": "git",
  7233. "url": "https://git.drupalcode.org/project/redis.git",
  7234. "reference": "8.x-1.5"
  7235. },
  7236. "dist": {
  7237. "type": "zip",
  7238. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.5.zip",
  7239. "reference": "8.x-1.5",
  7240. "shasum": "4283333dc2bf405045765b83ca662acc409a6543"
  7241. },
  7242. "require": {
  7243. "drupal/core": "^8.8 || ^9"
  7244. },
  7245. "suggest": {
  7246. "predis/predis": "^1.1.1"
  7247. },
  7248. "type": "drupal-module",
  7249. "extra": {
  7250. "drupal": {
  7251. "version": "8.x-1.5",
  7252. "datestamp": "1609972488",
  7253. "security-coverage": {
  7254. "status": "covered",
  7255. "message": "Covered by Drupal's security advisory policy"
  7256. }
  7257. }
  7258. },
  7259. "autoload": {
  7260. "psr-4": {
  7261. "Drupal\\redis\\": "src"
  7262. }
  7263. },
  7264. "notification-url": "https://packages.drupal.org/8/downloads",
  7265. "license": [
  7266. "GPL-2.0-or-later"
  7267. ],
  7268. "authors": [
  7269. {
  7270. "name": "Berdir",
  7271. "homepage": "https://www.drupal.org/user/214652"
  7272. },
  7273. {
  7274. "name": "pounard",
  7275. "homepage": "https://www.drupal.org/user/240164"
  7276. }
  7277. ],
  7278. "description": "Integration of Drupal with the Redis key-value store.",
  7279. "homepage": "https://www.drupal.org/project/redis",
  7280. "support": {
  7281. "source": "https://git.drupalcode.org/project/redis"
  7282. }
  7283. },
  7284. {
  7285. "name": "drupal/search_api",
  7286. "version": "1.19.0",
  7287. "source": {
  7288. "type": "git",
  7289. "url": "https://git.drupalcode.org/project/search_api.git",
  7290. "reference": "8.x-1.19"
  7291. },
  7292. "dist": {
  7293. "type": "zip",
  7294. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.19.zip",
  7295. "reference": "8.x-1.19",
  7296. "shasum": "5654e9d02117e28c585d89a25ea3cc40d20c5019"
  7297. },
  7298. "require": {
  7299. "drupal/core": "^8.8 || ^9"
  7300. },
  7301. "conflict": {
  7302. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  7303. },
  7304. "require-dev": {
  7305. "drupal/language_fallback_fix": "@dev",
  7306. "drupal/search_api_autocomplete": "@dev",
  7307. "drupal/search_api_db": "*"
  7308. },
  7309. "suggest": {
  7310. "drupal/facets": "Adds the ability to create faceted searches.",
  7311. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  7312. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  7313. },
  7314. "type": "drupal-module",
  7315. "extra": {
  7316. "drupal": {
  7317. "version": "8.x-1.19",
  7318. "datestamp": "1612192040",
  7319. "security-coverage": {
  7320. "status": "covered",
  7321. "message": "Covered by Drupal's security advisory policy"
  7322. }
  7323. },
  7324. "drush": {
  7325. "services": {
  7326. "drush.services.yml": "^9"
  7327. }
  7328. }
  7329. },
  7330. "notification-url": "https://packages.drupal.org/8/downloads",
  7331. "license": [
  7332. "GPL-2.0-or-later"
  7333. ],
  7334. "authors": [
  7335. {
  7336. "name": "Thomas Seidl",
  7337. "homepage": "https://www.drupal.org/u/drunken-monkey"
  7338. },
  7339. {
  7340. "name": "Nick Veenhof",
  7341. "homepage": "https://www.drupal.org/u/nick_vh"
  7342. },
  7343. {
  7344. "name": "See other contributors",
  7345. "homepage": "https://www.drupal.org/node/790418/committers"
  7346. }
  7347. ],
  7348. "description": "Provides a generic framework for modules offering search capabilities.",
  7349. "homepage": "https://www.drupal.org/project/search_api",
  7350. "support": {
  7351. "source": "https://git.drupalcode.org/project/search_api",
  7352. "issues": "https://www.drupal.org/project/issues/search_api",
  7353. "irc": "irc://irc.freenode.org/drupal-search-api"
  7354. }
  7355. },
  7356. {
  7357. "name": "drupal/search_api_db",
  7358. "version": "1.18.0",
  7359. "require": {
  7360. "drupal/core": "^8.8 || ^9",
  7361. "drupal/search_api": "*"
  7362. },
  7363. "type": "metapackage",
  7364. "extra": {
  7365. "drupal": {
  7366. "version": "8.x-1.18",
  7367. "datestamp": "1605204423",
  7368. "security-coverage": {
  7369. "status": "covered",
  7370. "message": "Covered by Drupal's security advisory policy"
  7371. }
  7372. }
  7373. },
  7374. "notification-url": "https://packages.drupal.org/8/downloads",
  7375. "license": [
  7376. "GPL-2.0-or-later"
  7377. ],
  7378. "authors": [
  7379. {
  7380. "name": "Nick_vh",
  7381. "homepage": "https://www.drupal.org/user/122682"
  7382. },
  7383. {
  7384. "name": "borisson_",
  7385. "homepage": "https://www.drupal.org/user/2393360"
  7386. },
  7387. {
  7388. "name": "drunken monkey",
  7389. "homepage": "https://www.drupal.org/user/205582"
  7390. }
  7391. ],
  7392. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  7393. "homepage": "https://www.drupal.org/project/search_api",
  7394. "support": {
  7395. "source": "https://git.drupalcode.org/project/search_api"
  7396. }
  7397. },
  7398. {
  7399. "name": "drupal/smart_trim",
  7400. "version": "1.3.0",
  7401. "source": {
  7402. "type": "git",
  7403. "url": "https://git.drupalcode.org/project/smart_trim.git",
  7404. "reference": "8.x-1.3"
  7405. },
  7406. "dist": {
  7407. "type": "zip",
  7408. "url": "https://ftp.drupal.org/files/projects/smart_trim-8.x-1.3.zip",
  7409. "reference": "8.x-1.3",
  7410. "shasum": "5894aa067fba19a3452ed8ce749f33bd9ae91907"
  7411. },
  7412. "require": {
  7413. "drupal/core": "^8 || ^9"
  7414. },
  7415. "type": "drupal-module",
  7416. "extra": {
  7417. "drupal": {
  7418. "version": "8.x-1.3",
  7419. "datestamp": "1589766531",
  7420. "security-coverage": {
  7421. "status": "covered",
  7422. "message": "Covered by Drupal's security advisory policy"
  7423. }
  7424. }
  7425. },
  7426. "notification-url": "https://packages.drupal.org/8/downloads",
  7427. "license": [
  7428. "GPL-2.0-or-later"
  7429. ],
  7430. "authors": [
  7431. {
  7432. "name": "Mark Casias (markie)",
  7433. "homepage": "https://www.drupal.org/u/markie",
  7434. "role": "Maintainer"
  7435. },
  7436. {
  7437. "name": "chrisjlee",
  7438. "homepage": "https://www.drupal.org/user/760600"
  7439. },
  7440. {
  7441. "name": "drywall",
  7442. "homepage": "https://www.drupal.org/user/192591"
  7443. },
  7444. {
  7445. "name": "jsenich",
  7446. "homepage": "https://www.drupal.org/user/58871"
  7447. },
  7448. {
  7449. "name": "markie",
  7450. "homepage": "https://www.drupal.org/user/206687"
  7451. },
  7452. {
  7453. "name": "newsignature",
  7454. "homepage": "https://www.drupal.org/user/765518"
  7455. }
  7456. ],
  7457. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  7458. "homepage": "https://drupal.org/project/smart_trim",
  7459. "support": {
  7460. "source": "https://cgit.drupalcode.org/smart_trim",
  7461. "issues": "https://drupal.org/project/issues/smart_trim"
  7462. }
  7463. },
  7464. {
  7465. "name": "drupal/smtp",
  7466. "version": "1.0.0",
  7467. "source": {
  7468. "type": "git",
  7469. "url": "https://git.drupalcode.org/project/smtp.git",
  7470. "reference": "8.x-1.0"
  7471. },
  7472. "dist": {
  7473. "type": "zip",
  7474. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.0.zip",
  7475. "reference": "8.x-1.0",
  7476. "shasum": "c40cc7a3c20d3f743e3a4e53f4cc296748da89fd"
  7477. },
  7478. "require": {
  7479. "drupal/core": "^8.8 || ^9",
  7480. "phpmailer/phpmailer": "^6.1.7"
  7481. },
  7482. "suggest": {
  7483. "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
  7484. },
  7485. "type": "drupal-module",
  7486. "extra": {
  7487. "drupal": {
  7488. "version": "8.x-1.0",
  7489. "datestamp": "1601070985",
  7490. "security-coverage": {
  7491. "status": "covered",
  7492. "message": "Covered by Drupal's security advisory policy"
  7493. }
  7494. },
  7495. "branch-alias": {
  7496. "dev-8.x-1.x": "1.x-dev"
  7497. }
  7498. },
  7499. "notification-url": "https://packages.drupal.org/8/downloads",
  7500. "license": [
  7501. "GPL-2.0-or-later"
  7502. ],
  7503. "authors": [
  7504. {
  7505. "name": "LukeLast",
  7506. "homepage": "https://www.drupal.org/user/30151"
  7507. },
  7508. {
  7509. "name": "japerry",
  7510. "homepage": "https://www.drupal.org/user/45640"
  7511. },
  7512. {
  7513. "name": "josesanmartin",
  7514. "homepage": "https://www.drupal.org/user/72012"
  7515. },
  7516. {
  7517. "name": "oadaeh",
  7518. "homepage": "https://www.drupal.org/user/4649"
  7519. },
  7520. {
  7521. "name": "sadashiv",
  7522. "homepage": "https://www.drupal.org/user/1773304"
  7523. },
  7524. {
  7525. "name": "wundo",
  7526. "homepage": "https://www.drupal.org/user/25523"
  7527. },
  7528. {
  7529. "name": "yettyn",
  7530. "homepage": "https://www.drupal.org/user/93281"
  7531. }
  7532. ],
  7533. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  7534. "homepage": "https://www.drupal.org/project/smtp",
  7535. "support": {
  7536. "source": "https://git.drupalcode.org/project/smtp",
  7537. "issues": "https://www.drupal.org/project/issues/smtp"
  7538. }
  7539. },
  7540. {
  7541. "name": "drupal/sophron",
  7542. "version": "1.1.0",
  7543. "source": {
  7544. "type": "git",
  7545. "url": "https://git.drupalcode.org/project/sophron.git",
  7546. "reference": "8.x-1.1"
  7547. },
  7548. "dist": {
  7549. "type": "zip",
  7550. "url": "https://ftp.drupal.org/files/projects/sophron-8.x-1.1.zip",
  7551. "reference": "8.x-1.1",
  7552. "shasum": "afb3650458b15b87918471defa763f24880622ca"
  7553. },
  7554. "require": {
  7555. "drupal/core": "^8.9 || ^9",
  7556. "fileeye/mimemap": "^1.1.4",
  7557. "php": ">=7.1"
  7558. },
  7559. "type": "drupal-module",
  7560. "extra": {
  7561. "drupal": {
  7562. "version": "8.x-1.1",
  7563. "datestamp": "1606047077",
  7564. "security-coverage": {
  7565. "status": "covered",
  7566. "message": "Covered by Drupal's security advisory policy"
  7567. }
  7568. }
  7569. },
  7570. "autoload": {
  7571. "psr-4": {
  7572. "Drupal\\sophron\\": "src/"
  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": "mondrake",
  7582. "homepage": "https://www.drupal.org/user/1307444"
  7583. }
  7584. ],
  7585. "description": "Provides an extensive MIME types management API",
  7586. "homepage": "https://www.drupal.org/project/sophron",
  7587. "support": {
  7588. "source": "https://git.drupalcode.org/project/sophron"
  7589. }
  7590. },
  7591. {
  7592. "name": "drupal/synonyms",
  7593. "version": "dev-1.x",
  7594. "source": {
  7595. "type": "git",
  7596. "url": "https://git.drupalcode.org/project/synonyms.git",
  7597. "reference": "487a41e2b4d4c4a5f161852cbd46178edb954d5d"
  7598. },
  7599. "require": {
  7600. "drupal/core": "^8 || ^9"
  7601. },
  7602. "type": "drupal-module",
  7603. "extra": {
  7604. "branch-alias": {
  7605. "dev-1.x": "1.x-dev"
  7606. },
  7607. "drupal": {
  7608. "version": "8.x-1.0-alpha1+23-dev",
  7609. "datestamp": "1607727823",
  7610. "security-coverage": {
  7611. "status": "not-covered",
  7612. "message": "Dev releases are not covered by Drupal security advisories."
  7613. }
  7614. }
  7615. },
  7616. "notification-url": "https://packages.drupal.org/8/downloads",
  7617. "license": [
  7618. "GPL-2.0-or-later"
  7619. ],
  7620. "authors": [
  7621. {
  7622. "name": "Zen",
  7623. "homepage": "https://www.drupal.org/user/21209"
  7624. },
  7625. {
  7626. "name": "bojanz",
  7627. "homepage": "https://www.drupal.org/user/86106"
  7628. },
  7629. {
  7630. "name": "bucefal91",
  7631. "homepage": "https://www.drupal.org/user/504128"
  7632. },
  7633. {
  7634. "name": "devad",
  7635. "homepage": "https://www.drupal.org/user/2268520"
  7636. }
  7637. ],
  7638. "description": "Provides synonyms feature for content entities.",
  7639. "homepage": "https://www.drupal.org/project/synonyms",
  7640. "support": {
  7641. "source": "https://git.drupalcode.org/project/synonyms"
  7642. },
  7643. "time": "2020-12-11T23:17:33+00:00"
  7644. },
  7645. {
  7646. "name": "drupal/taxonomy_unique",
  7647. "version": "2.3.0",
  7648. "source": {
  7649. "type": "git",
  7650. "url": "https://git.drupalcode.org/project/taxonomy_unique.git",
  7651. "reference": "8.x-2.3"
  7652. },
  7653. "dist": {
  7654. "type": "zip",
  7655. "url": "https://ftp.drupal.org/files/projects/taxonomy_unique-8.x-2.3.zip",
  7656. "reference": "8.x-2.3",
  7657. "shasum": "550d06d5b9c670538b93e0aa31b43b4eb1a76f7e"
  7658. },
  7659. "require": {
  7660. "drupal/core": "^8 || ^9"
  7661. },
  7662. "require-dev": {
  7663. "drupal/coder": "^8.3.6",
  7664. "squizlabs/php_codesniffer": "^3.4.1"
  7665. },
  7666. "type": "drupal-module",
  7667. "extra": {
  7668. "drupal": {
  7669. "version": "8.x-2.3",
  7670. "datestamp": "1591087096",
  7671. "security-coverage": {
  7672. "status": "covered",
  7673. "message": "Covered by Drupal's security advisory policy"
  7674. }
  7675. }
  7676. },
  7677. "notification-url": "https://packages.drupal.org/8/downloads",
  7678. "scripts": {
  7679. "post-install-cmd": [
  7680. "./vendor/bin/phpcs --config-set installed_paths ../../drupal/coder/coder_sniffer",
  7681. "./vendor/bin/phpcs --config-set show_progress 1"
  7682. ],
  7683. "post-update-cmd": [
  7684. "./vendor/bin/phpcs --config-set installed_paths ../../drupal/coder/coder_sniffer",
  7685. "./vendor/bin/phpcs --config-set show_progress 1"
  7686. ],
  7687. "phpcs": [
  7688. "./vendor/bin/phpcs --standard=Drupal,DrupalPractice ./ --ignore=./vendor"
  7689. ],
  7690. "phpcbf": [
  7691. "./vendor/bin/phpcbf --standard=Drupal,DrupalPractice ./ --ignore=./vendor"
  7692. ]
  7693. },
  7694. "license": [
  7695. "GPL-2.0+"
  7696. ],
  7697. "authors": [
  7698. {
  7699. "name": "Rafael Schally",
  7700. "homepage": "https://www.drupal.org/user/856550",
  7701. "email": "rafael.schally@gmail.com"
  7702. }
  7703. ],
  7704. "description": "Checks for duplicate occurrences of term names.",
  7705. "homepage": "https://www.drupal.org/project/taxonomy_unique",
  7706. "keywords": [
  7707. "drupal",
  7708. "taxonomy",
  7709. "ui"
  7710. ],
  7711. "support": {
  7712. "source": "https://git.drupalcode.org/project/taxonomy_unique"
  7713. }
  7714. },
  7715. {
  7716. "name": "drupal/token",
  7717. "version": "1.9.0",
  7718. "source": {
  7719. "type": "git",
  7720. "url": "https://git.drupalcode.org/project/token.git",
  7721. "reference": "8.x-1.9"
  7722. },
  7723. "dist": {
  7724. "type": "zip",
  7725. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.9.zip",
  7726. "reference": "8.x-1.9",
  7727. "shasum": "a5d234382a1a0e4ba61d4c7a2fa10671ca656be4"
  7728. },
  7729. "require": {
  7730. "drupal/core": "^8.8 || ^9"
  7731. },
  7732. "type": "drupal-module",
  7733. "extra": {
  7734. "drupal": {
  7735. "version": "8.x-1.9",
  7736. "datestamp": "1608284866",
  7737. "security-coverage": {
  7738. "status": "covered",
  7739. "message": "Covered by Drupal's security advisory policy"
  7740. }
  7741. },
  7742. "drush": {
  7743. "services": {
  7744. "drush.services.yml": "^9 || ^10"
  7745. }
  7746. }
  7747. },
  7748. "notification-url": "https://packages.drupal.org/8/downloads",
  7749. "license": [
  7750. "GPL-2.0-or-later"
  7751. ],
  7752. "authors": [
  7753. {
  7754. "name": "Berdir",
  7755. "homepage": "https://www.drupal.org/user/214652"
  7756. },
  7757. {
  7758. "name": "Dave Reid",
  7759. "homepage": "https://www.drupal.org/user/53892"
  7760. },
  7761. {
  7762. "name": "eaton",
  7763. "homepage": "https://www.drupal.org/user/16496"
  7764. },
  7765. {
  7766. "name": "fago",
  7767. "homepage": "https://www.drupal.org/user/16747"
  7768. },
  7769. {
  7770. "name": "greggles",
  7771. "homepage": "https://www.drupal.org/user/36762"
  7772. },
  7773. {
  7774. "name": "mikeryan",
  7775. "homepage": "https://www.drupal.org/user/4420"
  7776. }
  7777. ],
  7778. "description": "Provides a user interface for the Token API, some missing core tokens.",
  7779. "homepage": "https://www.drupal.org/project/token",
  7780. "support": {
  7781. "source": "https://git.drupalcode.org/project/token"
  7782. }
  7783. },
  7784. {
  7785. "name": "drupal/translation_views",
  7786. "version": "1.0.0-alpha10",
  7787. "source": {
  7788. "type": "git",
  7789. "url": "https://git.drupalcode.org/project/translation_views.git",
  7790. "reference": "8.x-1.0-alpha10"
  7791. },
  7792. "dist": {
  7793. "type": "zip",
  7794. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha10.zip",
  7795. "reference": "8.x-1.0-alpha10",
  7796. "shasum": "ca1a6d4bf16293b1b094db6439f9f065de1dbbd5"
  7797. },
  7798. "require": {
  7799. "drupal/core": "^8.8 || ^9"
  7800. },
  7801. "require-dev": {
  7802. "drupal/translators": "*",
  7803. "drupal/translators_content": "*"
  7804. },
  7805. "type": "drupal-module",
  7806. "extra": {
  7807. "drupal": {
  7808. "version": "8.x-1.0-alpha10",
  7809. "datestamp": "1584303687",
  7810. "security-coverage": {
  7811. "status": "not-covered",
  7812. "message": "Project has not opted into security advisory coverage!"
  7813. }
  7814. }
  7815. },
  7816. "notification-url": "https://packages.drupal.org/8/downloads",
  7817. "license": [
  7818. "GPL-2.0-or-later"
  7819. ],
  7820. "authors": [
  7821. {
  7822. "name": "matsbla",
  7823. "homepage": "https://www.drupal.org/user/2325394"
  7824. },
  7825. {
  7826. "name": "vlad.dancer",
  7827. "homepage": "https://www.drupal.org/user/903844"
  7828. }
  7829. ],
  7830. "description": "Create customized lists and queries of translations from your database.",
  7831. "homepage": "https://www.drupal.org/project/translation_views",
  7832. "support": {
  7833. "source": "https://git.drupalcode.org/project/translation_views"
  7834. }
  7835. },
  7836. {
  7837. "name": "drupal/typed_data",
  7838. "version": "dev-1.x",
  7839. "source": {
  7840. "type": "git",
  7841. "url": "https://git.drupalcode.org/project/typed_data.git",
  7842. "reference": "6be2072b6d1a3255fd4af62c624976080c47d1a3"
  7843. },
  7844. "require": {
  7845. "drupal/core": "^9 || ^10"
  7846. },
  7847. "type": "drupal-module",
  7848. "extra": {
  7849. "branch-alias": {
  7850. "dev-1.x": "1.x-dev"
  7851. },
  7852. "drupal": {
  7853. "version": "8.x-1.0-beta1+6-dev",
  7854. "datestamp": "1642914208",
  7855. "security-coverage": {
  7856. "status": "not-covered",
  7857. "message": "Dev releases are not covered by Drupal security advisories."
  7858. }
  7859. },
  7860. "drush": {
  7861. "services": {
  7862. "drush.services.yml": "^9 || ^10"
  7863. }
  7864. }
  7865. },
  7866. "notification-url": "https://packages.drupal.org/8/downloads",
  7867. "license": [
  7868. "GPL-2.0-or-later"
  7869. ],
  7870. "authors": [
  7871. {
  7872. "name": "TR",
  7873. "homepage": "https://www.drupal.org/user/202830"
  7874. },
  7875. {
  7876. "name": "fago",
  7877. "homepage": "https://www.drupal.org/user/16747"
  7878. }
  7879. ],
  7880. "description": "Extends the core Typed Data API with new APIs and features.",
  7881. "homepage": "https://www.drupal.org/project/typed_data",
  7882. "support": {
  7883. "source": "https://git.drupalcode.org/project/typed_data",
  7884. "issues": "https://www.drupal.org/project/issues/typed_data"
  7885. }
  7886. },
  7887. {
  7888. "name": "drupal/ultimate_cron",
  7889. "version": "2.0.0-alpha5",
  7890. "source": {
  7891. "type": "git",
  7892. "url": "https://git.drupalcode.org/project/ultimate_cron.git",
  7893. "reference": "8.x-2.0-alpha5"
  7894. },
  7895. "dist": {
  7896. "type": "zip",
  7897. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha5.zip",
  7898. "reference": "8.x-2.0-alpha5",
  7899. "shasum": "0f10464fff29eca89024e7afa5b6d8d07bd52f75"
  7900. },
  7901. "require": {
  7902. "drupal/core": "^8.7.7 || ^9"
  7903. },
  7904. "type": "drupal-module",
  7905. "extra": {
  7906. "drupal": {
  7907. "version": "8.x-2.0-alpha5",
  7908. "datestamp": "1600928948",
  7909. "security-coverage": {
  7910. "status": "not-covered",
  7911. "message": "Alpha releases are not covered by Drupal security advisories."
  7912. }
  7913. },
  7914. "drush": {
  7915. "services": {
  7916. "drush.services.yml": "^9 || ^10"
  7917. }
  7918. }
  7919. },
  7920. "notification-url": "https://packages.drupal.org/8/downloads",
  7921. "license": [
  7922. "GPL-2.0+"
  7923. ],
  7924. "authors": [
  7925. {
  7926. "name": "Berdir",
  7927. "homepage": "https://www.drupal.org/user/214652"
  7928. },
  7929. {
  7930. "name": "Dane Powell",
  7931. "homepage": "https://www.drupal.org/user/339326"
  7932. },
  7933. {
  7934. "name": "Primsi",
  7935. "homepage": "https://www.drupal.org/user/282629"
  7936. },
  7937. {
  7938. "name": "arnested",
  7939. "homepage": "https://www.drupal.org/user/245635"
  7940. },
  7941. {
  7942. "name": "gielfeldt",
  7943. "homepage": "https://www.drupal.org/user/366993"
  7944. },
  7945. {
  7946. "name": "miro_dietiker",
  7947. "homepage": "https://www.drupal.org/user/227761"
  7948. }
  7949. ],
  7950. "description": "Ultimate cron",
  7951. "homepage": "https://www.drupal.org/project/ultimate_cron",
  7952. "support": {
  7953. "source": "https://git.drupalcode.org/project/ultimate_cron"
  7954. }
  7955. },
  7956. {
  7957. "name": "drupal/url_to_video_filter",
  7958. "version": "2.0.0",
  7959. "source": {
  7960. "type": "git",
  7961. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  7962. "reference": "2.0.0"
  7963. },
  7964. "dist": {
  7965. "type": "zip",
  7966. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-2.0.0.zip",
  7967. "reference": "2.0.0",
  7968. "shasum": "ac728919cc220846d8ef2ce61dbe1b94fbbf479b"
  7969. },
  7970. "require": {
  7971. "drupal/core": "^8 || ^9"
  7972. },
  7973. "type": "drupal-module",
  7974. "extra": {
  7975. "drupal": {
  7976. "version": "2.0.0",
  7977. "datestamp": "1607298389",
  7978. "security-coverage": {
  7979. "status": "covered",
  7980. "message": "Covered by Drupal's security advisory policy"
  7981. }
  7982. }
  7983. },
  7984. "notification-url": "https://packages.drupal.org/8/downloads",
  7985. "license": [
  7986. "GPL-2.0-or-later"
  7987. ],
  7988. "authors": [
  7989. {
  7990. "name": "Jaypan",
  7991. "homepage": "https://www.drupal.org/user/324696"
  7992. }
  7993. ],
  7994. "description": "Text filter to convert URLs to embedded videos",
  7995. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  7996. "support": {
  7997. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  7998. }
  7999. },
  8000. {
  8001. "name": "drupal/video_embed_field",
  8002. "version": "2.4.0",
  8003. "source": {
  8004. "type": "git",
  8005. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  8006. "reference": "8.x-2.4"
  8007. },
  8008. "dist": {
  8009. "type": "zip",
  8010. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.4.zip",
  8011. "reference": "8.x-2.4",
  8012. "shasum": "96b14bb93c1bb6a07b84315a4f87367870f8b574"
  8013. },
  8014. "require": {
  8015. "drupal/core": "^8.8 || ^9"
  8016. },
  8017. "require-dev": {
  8018. "drupal/colorbox": "^1.0",
  8019. "drupal/video_embed_media": "*"
  8020. },
  8021. "type": "drupal-module",
  8022. "extra": {
  8023. "drupal": {
  8024. "version": "8.x-2.4",
  8025. "datestamp": "1587686337",
  8026. "security-coverage": {
  8027. "status": "covered",
  8028. "message": "Covered by Drupal's security advisory policy"
  8029. }
  8030. }
  8031. },
  8032. "notification-url": "https://packages.drupal.org/8/downloads",
  8033. "license": [
  8034. "GPL-2.0+"
  8035. ],
  8036. "authors": [
  8037. {
  8038. "name": "Sam152",
  8039. "homepage": "https://www.drupal.org/user/1485048"
  8040. },
  8041. {
  8042. "name": "jec006",
  8043. "homepage": "https://www.drupal.org/user/855980"
  8044. },
  8045. {
  8046. "name": "plopesc",
  8047. "homepage": "https://www.drupal.org/user/282415"
  8048. }
  8049. ],
  8050. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  8051. "homepage": "https://www.drupal.org/project/video_embed_field",
  8052. "support": {
  8053. "source": "https://git.drupalcode.org/project/video_embed_field"
  8054. }
  8055. },
  8056. {
  8057. "name": "drupal/views_autocomplete_filters",
  8058. "version": "1.3.0",
  8059. "source": {
  8060. "type": "git",
  8061. "url": "https://git.drupalcode.org/project/views_autocomplete_filters.git",
  8062. "reference": "8.x-1.3"
  8063. },
  8064. "dist": {
  8065. "type": "zip",
  8066. "url": "https://ftp.drupal.org/files/projects/views_autocomplete_filters-8.x-1.3.zip",
  8067. "reference": "8.x-1.3",
  8068. "shasum": "55762182e55c70f117d5edb8692049e0881ec4ce"
  8069. },
  8070. "require": {
  8071. "drupal/core": "^8 || ^9"
  8072. },
  8073. "type": "drupal-module",
  8074. "extra": {
  8075. "drupal": {
  8076. "version": "8.x-1.3",
  8077. "datestamp": "1587146330",
  8078. "security-coverage": {
  8079. "status": "covered",
  8080. "message": "Covered by Drupal's security advisory policy"
  8081. }
  8082. }
  8083. },
  8084. "notification-url": "https://packages.drupal.org/8/downloads",
  8085. "license": [
  8086. "GPL-2.0-or-later"
  8087. ],
  8088. "authors": [
  8089. {
  8090. "name": "RobLoach",
  8091. "homepage": "https://www.drupal.org/user/61114"
  8092. },
  8093. {
  8094. "name": "colan",
  8095. "homepage": "https://www.drupal.org/user/58704"
  8096. },
  8097. {
  8098. "name": "vasike",
  8099. "homepage": "https://www.drupal.org/user/156237"
  8100. }
  8101. ],
  8102. "description": "Add autocomplete functionality to the views filter text fields.",
  8103. "homepage": "https://www.drupal.org/project/views_autocomplete_filters",
  8104. "keywords": [
  8105. "Drupal",
  8106. "views_autocomplete_filters"
  8107. ],
  8108. "support": {
  8109. "source": "https://git.drupalcode.org/project/views_autocomplete_filters",
  8110. "issues": "https://www.drupal.org/project/issues/views_autocomplete_filters"
  8111. }
  8112. },
  8113. {
  8114. "name": "drupal/views_bulk_edit",
  8115. "version": "2.6.0",
  8116. "source": {
  8117. "type": "git",
  8118. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  8119. "reference": "8.x-2.6"
  8120. },
  8121. "dist": {
  8122. "type": "zip",
  8123. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.6.zip",
  8124. "reference": "8.x-2.6",
  8125. "shasum": "0e0f1dab2fa0903cbe2656e754b0d9ed3a935fbb"
  8126. },
  8127. "require": {
  8128. "drupal/core": "^8 || ^9"
  8129. },
  8130. "require-dev": {
  8131. "drupal/views_bulk_operations": "~3.0"
  8132. },
  8133. "suggest": {
  8134. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  8135. },
  8136. "type": "drupal-module",
  8137. "extra": {
  8138. "drupal": {
  8139. "version": "8.x-2.6",
  8140. "datestamp": "1623748025",
  8141. "security-coverage": {
  8142. "status": "covered",
  8143. "message": "Covered by Drupal's security advisory policy"
  8144. }
  8145. }
  8146. },
  8147. "notification-url": "https://packages.drupal.org/8/downloads",
  8148. "license": [
  8149. "GPL-2.0+"
  8150. ],
  8151. "authors": [
  8152. {
  8153. "name": "Marcin Grabias",
  8154. "homepage": "https://www.drupal.org/u/graber"
  8155. },
  8156. {
  8157. "name": "benjy",
  8158. "homepage": "https://www.drupal.org/user/1852732"
  8159. }
  8160. ],
  8161. "description": "Allows bulk edition of entity field values.",
  8162. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  8163. "support": {
  8164. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  8165. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  8166. }
  8167. },
  8168. {
  8169. "name": "drupal/views_bulk_operations",
  8170. "version": "3.13.0",
  8171. "source": {
  8172. "type": "git",
  8173. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  8174. "reference": "8.x-3.13"
  8175. },
  8176. "dist": {
  8177. "type": "zip",
  8178. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.13.zip",
  8179. "reference": "8.x-3.13",
  8180. "shasum": "70583d08b91be3b5e008f571589425c2176eb73b"
  8181. },
  8182. "require": {
  8183. "drupal/core": "^8.8 || ^9"
  8184. },
  8185. "require-dev": {
  8186. "drush/drush": "^10"
  8187. },
  8188. "suggest": {
  8189. "drush/drush": "^9 || ^10"
  8190. },
  8191. "type": "drupal-module",
  8192. "extra": {
  8193. "drupal": {
  8194. "version": "8.x-3.13",
  8195. "datestamp": "1619697066",
  8196. "security-coverage": {
  8197. "status": "covered",
  8198. "message": "Covered by Drupal's security advisory policy"
  8199. }
  8200. },
  8201. "drush": {
  8202. "services": {
  8203. "drush.services.yml": "^9 || ^10"
  8204. }
  8205. }
  8206. },
  8207. "notification-url": "https://packages.drupal.org/8/downloads",
  8208. "license": [
  8209. "GPL-2.0-or-later"
  8210. ],
  8211. "authors": [
  8212. {
  8213. "name": "Marcin Grabias",
  8214. "homepage": "https://www.drupal.org/u/graber"
  8215. },
  8216. {
  8217. "name": "Jon Pugh",
  8218. "homepage": "https://www.drupal.org/user/17028"
  8219. },
  8220. {
  8221. "name": "bojanz",
  8222. "homepage": "https://www.drupal.org/user/86106"
  8223. },
  8224. {
  8225. "name": "infojunkie",
  8226. "homepage": "https://www.drupal.org/user/48424"
  8227. },
  8228. {
  8229. "name": "joelpittet",
  8230. "homepage": "https://www.drupal.org/user/160302"
  8231. }
  8232. ],
  8233. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  8234. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  8235. "support": {
  8236. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  8237. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  8238. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  8239. }
  8240. },
  8241. {
  8242. "name": "drupal/views_ef_fieldset",
  8243. "version": "1.5.0",
  8244. "source": {
  8245. "type": "git",
  8246. "url": "https://git.drupalcode.org/project/views_ef_fieldset.git",
  8247. "reference": "8.x-1.5"
  8248. },
  8249. "dist": {
  8250. "type": "zip",
  8251. "url": "https://ftp.drupal.org/files/projects/views_ef_fieldset-8.x-1.5.zip",
  8252. "reference": "8.x-1.5",
  8253. "shasum": "72ca0b63028d0fe65e13c8472546a8803aa0d079"
  8254. },
  8255. "require": {
  8256. "drupal/core": "^8 || ^9",
  8257. "php": ">=7"
  8258. },
  8259. "type": "drupal-module",
  8260. "extra": {
  8261. "drupal": {
  8262. "version": "8.x-1.5",
  8263. "datestamp": "1604567512",
  8264. "security-coverage": {
  8265. "status": "covered",
  8266. "message": "Covered by Drupal's security advisory policy"
  8267. }
  8268. },
  8269. "composer-exit-on-patch-failure": true,
  8270. "enable-patching": true,
  8271. "patches": {
  8272. "drupal/core": {
  8273. "https://www.drupal.org/project/drupal/issues/2943172": "https://www.drupal.org/files/issues/2018-07-05/2943172-kernel-test-base-3.patch"
  8274. }
  8275. }
  8276. },
  8277. "autoload-dev": {
  8278. "psr-4": {
  8279. "Drupal\\Tests\\views_ef_fieldset\\": "./tests/"
  8280. }
  8281. },
  8282. "notification-url": "https://packages.drupal.org/8/downloads",
  8283. "scripts": {
  8284. "grumphp": [
  8285. "./vendor/bin/grumphp run"
  8286. ]
  8287. },
  8288. "license": [
  8289. "GPL-2.0+"
  8290. ],
  8291. "authors": [
  8292. {
  8293. "name": "Pol Dellaiera",
  8294. "homepage": "https://www.drupal.org/user/47194",
  8295. "email": "pol.dellaiera@protonmail.com"
  8296. },
  8297. {
  8298. "name": "ciss",
  8299. "homepage": "https://www.drupal.org/user/1632364"
  8300. }
  8301. ],
  8302. "description": "Provide an option to render the 'exposed form widgets' in a fieldset.",
  8303. "homepage": "https://drupal.org/project/views_field_formatter",
  8304. "support": {
  8305. "source": "https://git.drupalcode.org/project/views_ef_fieldset"
  8306. }
  8307. },
  8308. {
  8309. "name": "drush/drush",
  8310. "version": "10.3.6",
  8311. "source": {
  8312. "type": "git",
  8313. "url": "https://github.com/drush-ops/drush.git",
  8314. "reference": "fc985a95c6010e04891a2dbcf3f39984b8c9ef0a"
  8315. },
  8316. "dist": {
  8317. "type": "zip",
  8318. "url": "https://api.github.com/repos/drush-ops/drush/zipball/fc985a95c6010e04891a2dbcf3f39984b8c9ef0a",
  8319. "reference": "fc985a95c6010e04891a2dbcf3f39984b8c9ef0a",
  8320. "shasum": ""
  8321. },
  8322. "require": {
  8323. "chi-teck/drupal-code-generator": "^1.32.1",
  8324. "composer/semver": "^1.4 || ^3",
  8325. "consolidation/config": "^1.2",
  8326. "consolidation/filter-via-dot-access-data": "^1",
  8327. "consolidation/robo": "^1.4.11 || ^2",
  8328. "consolidation/site-alias": "^3.0.0@stable",
  8329. "consolidation/site-process": "^2.1 || ^4",
  8330. "ext-dom": "*",
  8331. "grasmash/yaml-expander": "^1.1.1",
  8332. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  8333. "league/container": "~2",
  8334. "php": ">=7.1.3",
  8335. "psr/log": "~1.0",
  8336. "psy/psysh": "~0.6",
  8337. "symfony/event-dispatcher": "^3.4 || ^4.0",
  8338. "symfony/finder": "^3.4 || ^4.0 || ^5",
  8339. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0",
  8340. "symfony/yaml": "^3.4 || ^4.0",
  8341. "webflo/drupal-finder": "^1.2",
  8342. "webmozart/path-util": "^2.1.0"
  8343. },
  8344. "require-dev": {
  8345. "composer/installers": "^1.7",
  8346. "cweagans/composer-patches": "~1.0",
  8347. "david-garcia/phpwhois": "4.3.0",
  8348. "drupal/alinks": "1.0.0",
  8349. "drupal/core-recommended": "^8.8",
  8350. "lox/xhprof": "dev-master",
  8351. "phpunit/phpunit": "^4.8.36 || ^6.1",
  8352. "squizlabs/php_codesniffer": "^2.7 || ^3",
  8353. "vlucas/phpdotenv": "^2.4"
  8354. },
  8355. "bin": [
  8356. "drush"
  8357. ],
  8358. "type": "library",
  8359. "extra": {
  8360. "installer-paths": {
  8361. "sut/core": [
  8362. "type:drupal-core"
  8363. ],
  8364. "sut/libraries/{$name}": [
  8365. "type:drupal-library"
  8366. ],
  8367. "sut/modules/unish/{$name}": [
  8368. "drupal/devel"
  8369. ],
  8370. "sut/themes/unish/{$name}": [
  8371. "drupal/empty_theme"
  8372. ],
  8373. "sut/modules/contrib/{$name}": [
  8374. "type:drupal-module"
  8375. ],
  8376. "sut/profiles/contrib/{$name}": [
  8377. "type:drupal-profile"
  8378. ],
  8379. "sut/themes/contrib/{$name}": [
  8380. "type:drupal-theme"
  8381. ],
  8382. "sut/drush/contrib/{$name}": [
  8383. "type:drupal-drush"
  8384. ]
  8385. }
  8386. },
  8387. "autoload": {
  8388. "psr-4": {
  8389. "Drush\\": "src/",
  8390. "Drush\\Internal\\": "src/internal-forks"
  8391. }
  8392. },
  8393. "notification-url": "https://packagist.org/downloads/",
  8394. "license": [
  8395. "GPL-2.0-or-later"
  8396. ],
  8397. "authors": [
  8398. {
  8399. "name": "Moshe Weitzman",
  8400. "email": "weitzman@tejasa.com"
  8401. },
  8402. {
  8403. "name": "Owen Barton",
  8404. "email": "drupal@owenbarton.com"
  8405. },
  8406. {
  8407. "name": "Greg Anderson",
  8408. "email": "greg.1.anderson@greenknowe.org"
  8409. },
  8410. {
  8411. "name": "Jonathan Araña Cruz",
  8412. "email": "jonhattan@faita.net"
  8413. },
  8414. {
  8415. "name": "Jonathan Hedstrom",
  8416. "email": "jhedstrom@gmail.com"
  8417. },
  8418. {
  8419. "name": "Christopher Gervais",
  8420. "email": "chris@ergonlogic.com"
  8421. },
  8422. {
  8423. "name": "Dave Reid",
  8424. "email": "dave@davereid.net"
  8425. },
  8426. {
  8427. "name": "Damian Lee",
  8428. "email": "damiankloip@googlemail.com"
  8429. }
  8430. ],
  8431. "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.",
  8432. "homepage": "http://www.drush.org",
  8433. "funding": [
  8434. {
  8435. "url": "https://github.com/weitzman",
  8436. "type": "github"
  8437. }
  8438. ],
  8439. "time": "2020-11-11T04:36:51+00:00"
  8440. },
  8441. {
  8442. "name": "egulias/email-validator",
  8443. "version": "3.1.2",
  8444. "source": {
  8445. "type": "git",
  8446. "url": "https://github.com/egulias/EmailValidator.git",
  8447. "reference": "ee0db30118f661fb166bcffbf5d82032df484697"
  8448. },
  8449. "dist": {
  8450. "type": "zip",
  8451. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ee0db30118f661fb166bcffbf5d82032df484697",
  8452. "reference": "ee0db30118f661fb166bcffbf5d82032df484697",
  8453. "shasum": ""
  8454. },
  8455. "require": {
  8456. "doctrine/lexer": "^1.2",
  8457. "php": ">=7.2",
  8458. "symfony/polyfill-intl-idn": "^1.15"
  8459. },
  8460. "require-dev": {
  8461. "php-coveralls/php-coveralls": "^2.2",
  8462. "phpunit/phpunit": "^8.5.8|^9.3.3",
  8463. "vimeo/psalm": "^4"
  8464. },
  8465. "suggest": {
  8466. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  8467. },
  8468. "type": "library",
  8469. "extra": {
  8470. "branch-alias": {
  8471. "dev-master": "3.0.x-dev"
  8472. }
  8473. },
  8474. "autoload": {
  8475. "psr-4": {
  8476. "Egulias\\EmailValidator\\": "src"
  8477. }
  8478. },
  8479. "notification-url": "https://packagist.org/downloads/",
  8480. "license": [
  8481. "MIT"
  8482. ],
  8483. "authors": [
  8484. {
  8485. "name": "Eduardo Gulias Davis"
  8486. }
  8487. ],
  8488. "description": "A library for validating emails against several RFCs",
  8489. "homepage": "https://github.com/egulias/EmailValidator",
  8490. "keywords": [
  8491. "email",
  8492. "emailvalidation",
  8493. "emailvalidator",
  8494. "validation",
  8495. "validator"
  8496. ],
  8497. "support": {
  8498. "issues": "https://github.com/egulias/EmailValidator/issues",
  8499. "source": "https://github.com/egulias/EmailValidator/tree/3.1.2"
  8500. },
  8501. "funding": [
  8502. {
  8503. "url": "https://github.com/egulias",
  8504. "type": "github"
  8505. }
  8506. ],
  8507. "time": "2021-10-11T09:18:27+00:00"
  8508. },
  8509. {
  8510. "name": "fileeye/mimemap",
  8511. "version": "1.1.4",
  8512. "source": {
  8513. "type": "git",
  8514. "url": "https://github.com/FileEye/MimeMap.git",
  8515. "reference": "3a0ddb71f06d8fb3f84f0a3c45348af81803b16d"
  8516. },
  8517. "dist": {
  8518. "type": "zip",
  8519. "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/3a0ddb71f06d8fb3f84f0a3c45348af81803b16d",
  8520. "reference": "3a0ddb71f06d8fb3f84f0a3c45348af81803b16d",
  8521. "shasum": ""
  8522. },
  8523. "require": {
  8524. "php": ">=5.4"
  8525. },
  8526. "require-dev": {
  8527. "phpunit/phpunit": "<10",
  8528. "sebastian/comparator": "*",
  8529. "sebastian/diff": "*",
  8530. "squizlabs/php_codesniffer": "*",
  8531. "symfony/console": "*",
  8532. "symfony/filesystem": "*",
  8533. "symfony/var-dumper": "*",
  8534. "symfony/yaml": "*"
  8535. },
  8536. "bin": [
  8537. "bin/fileeye-mimemap"
  8538. ],
  8539. "type": "library",
  8540. "extra": {
  8541. "branch-alias": {
  8542. "dev-master": "1.x-dev"
  8543. }
  8544. },
  8545. "autoload": {
  8546. "psr-4": {
  8547. "FileEye\\MimeMap\\": "src/"
  8548. }
  8549. },
  8550. "notification-url": "https://packagist.org/downloads/",
  8551. "license": [
  8552. "LGPL-3.0-or-later"
  8553. ],
  8554. "description": "A PHP library to handle MIME Content-Type fields and their related file extensions.",
  8555. "homepage": "https://github.com/FileEye/MimeMap",
  8556. "keywords": [
  8557. "mime",
  8558. "mime-database",
  8559. "mime-parser",
  8560. "mime-type"
  8561. ],
  8562. "time": "2020-05-16T10:19:16+00:00"
  8563. },
  8564. {
  8565. "name": "grasmash/expander",
  8566. "version": "1.0.0",
  8567. "source": {
  8568. "type": "git",
  8569. "url": "https://github.com/grasmash/expander.git",
  8570. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  8571. },
  8572. "dist": {
  8573. "type": "zip",
  8574. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  8575. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  8576. "shasum": ""
  8577. },
  8578. "require": {
  8579. "dflydev/dot-access-data": "^1.1.0",
  8580. "php": ">=5.4"
  8581. },
  8582. "require-dev": {
  8583. "greg-1-anderson/composer-test-scenarios": "^1",
  8584. "phpunit/phpunit": "^4|^5.5.4",
  8585. "satooshi/php-coveralls": "^1.0.2|dev-master",
  8586. "squizlabs/php_codesniffer": "^2.7"
  8587. },
  8588. "type": "library",
  8589. "extra": {
  8590. "branch-alias": {
  8591. "dev-master": "1.x-dev"
  8592. }
  8593. },
  8594. "autoload": {
  8595. "psr-4": {
  8596. "Grasmash\\Expander\\": "src/"
  8597. }
  8598. },
  8599. "notification-url": "https://packagist.org/downloads/",
  8600. "license": [
  8601. "MIT"
  8602. ],
  8603. "authors": [
  8604. {
  8605. "name": "Matthew Grasmick"
  8606. }
  8607. ],
  8608. "description": "Expands internal property references in PHP arrays file.",
  8609. "time": "2017-12-21T22:14:55+00:00"
  8610. },
  8611. {
  8612. "name": "grasmash/yaml-expander",
  8613. "version": "1.4.0",
  8614. "source": {
  8615. "type": "git",
  8616. "url": "https://github.com/grasmash/yaml-expander.git",
  8617. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  8618. },
  8619. "dist": {
  8620. "type": "zip",
  8621. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  8622. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  8623. "shasum": ""
  8624. },
  8625. "require": {
  8626. "dflydev/dot-access-data": "^1.1.0",
  8627. "php": ">=5.4",
  8628. "symfony/yaml": "^2.8.11|^3|^4"
  8629. },
  8630. "require-dev": {
  8631. "greg-1-anderson/composer-test-scenarios": "^1",
  8632. "phpunit/phpunit": "^4.8|^5.5.4",
  8633. "satooshi/php-coveralls": "^1.0.2|dev-master",
  8634. "squizlabs/php_codesniffer": "^2.7"
  8635. },
  8636. "type": "library",
  8637. "extra": {
  8638. "branch-alias": {
  8639. "dev-master": "1.x-dev"
  8640. }
  8641. },
  8642. "autoload": {
  8643. "psr-4": {
  8644. "Grasmash\\YamlExpander\\": "src/"
  8645. }
  8646. },
  8647. "notification-url": "https://packagist.org/downloads/",
  8648. "license": [
  8649. "MIT"
  8650. ],
  8651. "authors": [
  8652. {
  8653. "name": "Matthew Grasmick"
  8654. }
  8655. ],
  8656. "description": "Expands internal property references in a yaml file.",
  8657. "time": "2017-12-16T16:06:03+00:00"
  8658. },
  8659. {
  8660. "name": "guzzlehttp/guzzle",
  8661. "version": "6.5.5",
  8662. "source": {
  8663. "type": "git",
  8664. "url": "https://github.com/guzzle/guzzle.git",
  8665. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  8666. },
  8667. "dist": {
  8668. "type": "zip",
  8669. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  8670. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  8671. "shasum": ""
  8672. },
  8673. "require": {
  8674. "ext-json": "*",
  8675. "guzzlehttp/promises": "^1.0",
  8676. "guzzlehttp/psr7": "^1.6.1",
  8677. "php": ">=5.5",
  8678. "symfony/polyfill-intl-idn": "^1.17.0"
  8679. },
  8680. "require-dev": {
  8681. "ext-curl": "*",
  8682. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  8683. "psr/log": "^1.1"
  8684. },
  8685. "suggest": {
  8686. "psr/log": "Required for using the Log middleware"
  8687. },
  8688. "type": "library",
  8689. "extra": {
  8690. "branch-alias": {
  8691. "dev-master": "6.5-dev"
  8692. }
  8693. },
  8694. "autoload": {
  8695. "psr-4": {
  8696. "GuzzleHttp\\": "src/"
  8697. },
  8698. "files": [
  8699. "src/functions_include.php"
  8700. ]
  8701. },
  8702. "notification-url": "https://packagist.org/downloads/",
  8703. "license": [
  8704. "MIT"
  8705. ],
  8706. "authors": [
  8707. {
  8708. "name": "Michael Dowling",
  8709. "email": "mtdowling@gmail.com",
  8710. "homepage": "https://github.com/mtdowling"
  8711. }
  8712. ],
  8713. "description": "Guzzle is a PHP HTTP client library",
  8714. "homepage": "http://guzzlephp.org/",
  8715. "keywords": [
  8716. "client",
  8717. "curl",
  8718. "framework",
  8719. "http",
  8720. "http client",
  8721. "rest",
  8722. "web service"
  8723. ],
  8724. "support": {
  8725. "issues": "https://github.com/guzzle/guzzle/issues",
  8726. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  8727. },
  8728. "time": "2020-06-16T21:01:06+00:00"
  8729. },
  8730. {
  8731. "name": "guzzlehttp/promises",
  8732. "version": "1.5.1",
  8733. "source": {
  8734. "type": "git",
  8735. "url": "https://github.com/guzzle/promises.git",
  8736. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da"
  8737. },
  8738. "dist": {
  8739. "type": "zip",
  8740. "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  8741. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  8742. "shasum": ""
  8743. },
  8744. "require": {
  8745. "php": ">=5.5"
  8746. },
  8747. "require-dev": {
  8748. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  8749. },
  8750. "type": "library",
  8751. "extra": {
  8752. "branch-alias": {
  8753. "dev-master": "1.5-dev"
  8754. }
  8755. },
  8756. "autoload": {
  8757. "psr-4": {
  8758. "GuzzleHttp\\Promise\\": "src/"
  8759. },
  8760. "files": [
  8761. "src/functions_include.php"
  8762. ]
  8763. },
  8764. "notification-url": "https://packagist.org/downloads/",
  8765. "license": [
  8766. "MIT"
  8767. ],
  8768. "authors": [
  8769. {
  8770. "name": "Graham Campbell",
  8771. "email": "hello@gjcampbell.co.uk",
  8772. "homepage": "https://github.com/GrahamCampbell"
  8773. },
  8774. {
  8775. "name": "Michael Dowling",
  8776. "email": "mtdowling@gmail.com",
  8777. "homepage": "https://github.com/mtdowling"
  8778. },
  8779. {
  8780. "name": "Tobias Nyholm",
  8781. "email": "tobias.nyholm@gmail.com",
  8782. "homepage": "https://github.com/Nyholm"
  8783. },
  8784. {
  8785. "name": "Tobias Schultze",
  8786. "email": "webmaster@tubo-world.de",
  8787. "homepage": "https://github.com/Tobion"
  8788. }
  8789. ],
  8790. "description": "Guzzle promises library",
  8791. "keywords": [
  8792. "promise"
  8793. ],
  8794. "support": {
  8795. "issues": "https://github.com/guzzle/promises/issues",
  8796. "source": "https://github.com/guzzle/promises/tree/1.5.1"
  8797. },
  8798. "funding": [
  8799. {
  8800. "url": "https://github.com/GrahamCampbell",
  8801. "type": "github"
  8802. },
  8803. {
  8804. "url": "https://github.com/Nyholm",
  8805. "type": "github"
  8806. },
  8807. {
  8808. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  8809. "type": "tidelift"
  8810. }
  8811. ],
  8812. "time": "2021-10-22T20:56:57+00:00"
  8813. },
  8814. {
  8815. "name": "guzzlehttp/psr7",
  8816. "version": "1.8.3",
  8817. "source": {
  8818. "type": "git",
  8819. "url": "https://github.com/guzzle/psr7.git",
  8820. "reference": "1afdd860a2566ed3c2b0b4a3de6e23434a79ec85"
  8821. },
  8822. "dist": {
  8823. "type": "zip",
  8824. "url": "https://api.github.com/repos/guzzle/psr7/zipball/1afdd860a2566ed3c2b0b4a3de6e23434a79ec85",
  8825. "reference": "1afdd860a2566ed3c2b0b4a3de6e23434a79ec85",
  8826. "shasum": ""
  8827. },
  8828. "require": {
  8829. "php": ">=5.4.0",
  8830. "psr/http-message": "~1.0",
  8831. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  8832. },
  8833. "provide": {
  8834. "psr/http-message-implementation": "1.0"
  8835. },
  8836. "require-dev": {
  8837. "ext-zlib": "*",
  8838. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  8839. },
  8840. "suggest": {
  8841. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  8842. },
  8843. "type": "library",
  8844. "extra": {
  8845. "branch-alias": {
  8846. "dev-master": "1.7-dev"
  8847. }
  8848. },
  8849. "autoload": {
  8850. "files": [
  8851. "src/functions_include.php"
  8852. ],
  8853. "psr-4": {
  8854. "GuzzleHttp\\Psr7\\": "src/"
  8855. }
  8856. },
  8857. "notification-url": "https://packagist.org/downloads/",
  8858. "license": [
  8859. "MIT"
  8860. ],
  8861. "authors": [
  8862. {
  8863. "name": "Graham Campbell",
  8864. "email": "hello@gjcampbell.co.uk",
  8865. "homepage": "https://github.com/GrahamCampbell"
  8866. },
  8867. {
  8868. "name": "Michael Dowling",
  8869. "email": "mtdowling@gmail.com",
  8870. "homepage": "https://github.com/mtdowling"
  8871. },
  8872. {
  8873. "name": "George Mponos",
  8874. "email": "gmponos@gmail.com",
  8875. "homepage": "https://github.com/gmponos"
  8876. },
  8877. {
  8878. "name": "Tobias Nyholm",
  8879. "email": "tobias.nyholm@gmail.com",
  8880. "homepage": "https://github.com/Nyholm"
  8881. },
  8882. {
  8883. "name": "Márk Sági-Kazár",
  8884. "email": "mark.sagikazar@gmail.com",
  8885. "homepage": "https://github.com/sagikazarmark"
  8886. },
  8887. {
  8888. "name": "Tobias Schultze",
  8889. "email": "webmaster@tubo-world.de",
  8890. "homepage": "https://github.com/Tobion"
  8891. }
  8892. ],
  8893. "description": "PSR-7 message implementation that also provides common utility methods",
  8894. "keywords": [
  8895. "http",
  8896. "message",
  8897. "psr-7",
  8898. "request",
  8899. "response",
  8900. "stream",
  8901. "uri",
  8902. "url"
  8903. ],
  8904. "support": {
  8905. "issues": "https://github.com/guzzle/psr7/issues",
  8906. "source": "https://github.com/guzzle/psr7/tree/1.8.3"
  8907. },
  8908. "funding": [
  8909. {
  8910. "url": "https://github.com/GrahamCampbell",
  8911. "type": "github"
  8912. },
  8913. {
  8914. "url": "https://github.com/Nyholm",
  8915. "type": "github"
  8916. },
  8917. {
  8918. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  8919. "type": "tidelift"
  8920. }
  8921. ],
  8922. "time": "2021-10-05T13:56:00+00:00"
  8923. },
  8924. {
  8925. "name": "kint-php/kint",
  8926. "version": "3.3",
  8927. "source": {
  8928. "type": "git",
  8929. "url": "https://github.com/kint-php/kint.git",
  8930. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b"
  8931. },
  8932. "dist": {
  8933. "type": "zip",
  8934. "url": "https://api.github.com/repos/kint-php/kint/zipball/335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8935. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8936. "shasum": ""
  8937. },
  8938. "require": {
  8939. "php": ">=5.3.6"
  8940. },
  8941. "require-dev": {
  8942. "friendsofphp/php-cs-fixer": "^2.0",
  8943. "phpunit/phpunit": "^4.0",
  8944. "seld/phar-utils": "^1.0",
  8945. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  8946. "vimeo/psalm": "^3.0"
  8947. },
  8948. "suggest": {
  8949. "ext-ctype": "Simple data type tests",
  8950. "ext-iconv": "Provides fallback detection for ambiguous legacy string encodings such as the Windows and ISO 8859 code pages",
  8951. "ext-mbstring": "Provides string encoding detection",
  8952. "kint-php/kint-js": "Provides a simplified dump to console.log()",
  8953. "kint-php/kint-twig": "Provides d() and s() functions in twig templates",
  8954. "symfony/polyfill-ctype": "Replacement for ext-ctype if missing",
  8955. "symfony/polyfill-iconv": "Replacement for ext-iconv if missing",
  8956. "symfony/polyfill-mbstring": "Replacement for ext-mbstring if missing"
  8957. },
  8958. "type": "library",
  8959. "autoload": {
  8960. "files": [
  8961. "init.php"
  8962. ],
  8963. "psr-4": {
  8964. "Kint\\": "src/"
  8965. }
  8966. },
  8967. "notification-url": "https://packagist.org/downloads/",
  8968. "license": [
  8969. "MIT"
  8970. ],
  8971. "authors": [
  8972. {
  8973. "name": "Jonathan Vollebregt",
  8974. "homepage": "https://github.com/jnvsor"
  8975. },
  8976. {
  8977. "name": "Rokas Šleinius",
  8978. "homepage": "https://github.com/raveren"
  8979. },
  8980. {
  8981. "name": "Contributors",
  8982. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  8983. }
  8984. ],
  8985. "description": "Kint - debugging tool for PHP developers",
  8986. "homepage": "https://kint-php.github.io/kint/",
  8987. "keywords": [
  8988. "debug",
  8989. "kint",
  8990. "php"
  8991. ],
  8992. "time": "2019-10-17T18:05:24+00:00"
  8993. },
  8994. {
  8995. "name": "laminas/laminas-diactoros",
  8996. "version": "2.8.0",
  8997. "source": {
  8998. "type": "git",
  8999. "url": "https://github.com/laminas/laminas-diactoros.git",
  9000. "reference": "0c26ef1d95b6d7e6e3943a243ba3dc0797227199"
  9001. },
  9002. "dist": {
  9003. "type": "zip",
  9004. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/0c26ef1d95b6d7e6e3943a243ba3dc0797227199",
  9005. "reference": "0c26ef1d95b6d7e6e3943a243ba3dc0797227199",
  9006. "shasum": ""
  9007. },
  9008. "require": {
  9009. "php": "^7.3 || ~8.0.0 || ~8.1.0",
  9010. "psr/http-factory": "^1.0",
  9011. "psr/http-message": "^1.0"
  9012. },
  9013. "conflict": {
  9014. "phpspec/prophecy": "<1.9.0",
  9015. "zendframework/zend-diactoros": "*"
  9016. },
  9017. "provide": {
  9018. "psr/http-factory-implementation": "1.0",
  9019. "psr/http-message-implementation": "1.0"
  9020. },
  9021. "require-dev": {
  9022. "ext-curl": "*",
  9023. "ext-dom": "*",
  9024. "ext-gd": "*",
  9025. "ext-libxml": "*",
  9026. "http-interop/http-factory-tests": "^0.8.0",
  9027. "laminas/laminas-coding-standard": "~1.0.0",
  9028. "php-http/psr7-integration-tests": "^1.1",
  9029. "phpspec/prophecy-phpunit": "^2.0",
  9030. "phpunit/phpunit": "^9.1",
  9031. "psalm/plugin-phpunit": "^0.14.0",
  9032. "vimeo/psalm": "^4.3"
  9033. },
  9034. "type": "library",
  9035. "extra": {
  9036. "laminas": {
  9037. "config-provider": "Laminas\\Diactoros\\ConfigProvider",
  9038. "module": "Laminas\\Diactoros"
  9039. }
  9040. },
  9041. "autoload": {
  9042. "files": [
  9043. "src/functions/create_uploaded_file.php",
  9044. "src/functions/marshal_headers_from_sapi.php",
  9045. "src/functions/marshal_method_from_sapi.php",
  9046. "src/functions/marshal_protocol_version_from_sapi.php",
  9047. "src/functions/marshal_uri_from_sapi.php",
  9048. "src/functions/normalize_server.php",
  9049. "src/functions/normalize_uploaded_files.php",
  9050. "src/functions/parse_cookie_header.php",
  9051. "src/functions/create_uploaded_file.legacy.php",
  9052. "src/functions/marshal_headers_from_sapi.legacy.php",
  9053. "src/functions/marshal_method_from_sapi.legacy.php",
  9054. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  9055. "src/functions/marshal_uri_from_sapi.legacy.php",
  9056. "src/functions/normalize_server.legacy.php",
  9057. "src/functions/normalize_uploaded_files.legacy.php",
  9058. "src/functions/parse_cookie_header.legacy.php"
  9059. ],
  9060. "psr-4": {
  9061. "Laminas\\Diactoros\\": "src/"
  9062. }
  9063. },
  9064. "notification-url": "https://packagist.org/downloads/",
  9065. "license": [
  9066. "BSD-3-Clause"
  9067. ],
  9068. "description": "PSR HTTP Message implementations",
  9069. "homepage": "https://laminas.dev",
  9070. "keywords": [
  9071. "http",
  9072. "laminas",
  9073. "psr",
  9074. "psr-17",
  9075. "psr-7"
  9076. ],
  9077. "support": {
  9078. "chat": "https://laminas.dev/chat",
  9079. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  9080. "forum": "https://discourse.laminas.dev",
  9081. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  9082. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  9083. "source": "https://github.com/laminas/laminas-diactoros"
  9084. },
  9085. "funding": [
  9086. {
  9087. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9088. "type": "community_bridge"
  9089. }
  9090. ],
  9091. "time": "2021-09-22T03:54:36+00:00"
  9092. },
  9093. {
  9094. "name": "laminas/laminas-escaper",
  9095. "version": "2.9.0",
  9096. "source": {
  9097. "type": "git",
  9098. "url": "https://github.com/laminas/laminas-escaper.git",
  9099. "reference": "891ad70986729e20ed2e86355fcf93c9dc238a5f"
  9100. },
  9101. "dist": {
  9102. "type": "zip",
  9103. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/891ad70986729e20ed2e86355fcf93c9dc238a5f",
  9104. "reference": "891ad70986729e20ed2e86355fcf93c9dc238a5f",
  9105. "shasum": ""
  9106. },
  9107. "require": {
  9108. "php": "^7.3 || ~8.0.0 || ~8.1.0"
  9109. },
  9110. "conflict": {
  9111. "zendframework/zend-escaper": "*"
  9112. },
  9113. "require-dev": {
  9114. "laminas/laminas-coding-standard": "~2.3.0",
  9115. "phpunit/phpunit": "^9.3",
  9116. "psalm/plugin-phpunit": "^0.12.2",
  9117. "vimeo/psalm": "^3.16"
  9118. },
  9119. "suggest": {
  9120. "ext-iconv": "*",
  9121. "ext-mbstring": "*"
  9122. },
  9123. "type": "library",
  9124. "autoload": {
  9125. "psr-4": {
  9126. "Laminas\\Escaper\\": "src/"
  9127. }
  9128. },
  9129. "notification-url": "https://packagist.org/downloads/",
  9130. "license": [
  9131. "BSD-3-Clause"
  9132. ],
  9133. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  9134. "homepage": "https://laminas.dev",
  9135. "keywords": [
  9136. "escaper",
  9137. "laminas"
  9138. ],
  9139. "support": {
  9140. "chat": "https://laminas.dev/chat",
  9141. "docs": "https://docs.laminas.dev/laminas-escaper/",
  9142. "forum": "https://discourse.laminas.dev",
  9143. "issues": "https://github.com/laminas/laminas-escaper/issues",
  9144. "rss": "https://github.com/laminas/laminas-escaper/releases.atom",
  9145. "source": "https://github.com/laminas/laminas-escaper"
  9146. },
  9147. "funding": [
  9148. {
  9149. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9150. "type": "community_bridge"
  9151. }
  9152. ],
  9153. "time": "2021-09-02T17:10:53+00:00"
  9154. },
  9155. {
  9156. "name": "laminas/laminas-feed",
  9157. "version": "2.15.0",
  9158. "source": {
  9159. "type": "git",
  9160. "url": "https://github.com/laminas/laminas-feed.git",
  9161. "reference": "3ef837a12833c74b438d2c3780023c4244e0abae"
  9162. },
  9163. "dist": {
  9164. "type": "zip",
  9165. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/3ef837a12833c74b438d2c3780023c4244e0abae",
  9166. "reference": "3ef837a12833c74b438d2c3780023c4244e0abae",
  9167. "shasum": ""
  9168. },
  9169. "require": {
  9170. "ext-dom": "*",
  9171. "ext-libxml": "*",
  9172. "laminas/laminas-escaper": "^2.9",
  9173. "laminas/laminas-stdlib": "^3.6",
  9174. "php": "^7.3 || ~8.0.0 || ~8.1.0"
  9175. },
  9176. "conflict": {
  9177. "laminas/laminas-servicemanager": "<3.3",
  9178. "zendframework/zend-feed": "*"
  9179. },
  9180. "require-dev": {
  9181. "laminas/laminas-cache": "^2.7.2",
  9182. "laminas/laminas-coding-standard": "~2.2.1",
  9183. "laminas/laminas-db": "^2.13.3",
  9184. "laminas/laminas-http": "^2.15",
  9185. "laminas/laminas-servicemanager": "^3.7",
  9186. "laminas/laminas-validator": "^2.15",
  9187. "phpunit/phpunit": "^9.5.5",
  9188. "psalm/plugin-phpunit": "^0.13.0",
  9189. "psr/http-message": "^1.0.1",
  9190. "vimeo/psalm": "^4.1"
  9191. },
  9192. "suggest": {
  9193. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  9194. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  9195. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  9196. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  9197. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  9198. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  9199. },
  9200. "type": "library",
  9201. "autoload": {
  9202. "psr-4": {
  9203. "Laminas\\Feed\\": "src/"
  9204. }
  9205. },
  9206. "notification-url": "https://packagist.org/downloads/",
  9207. "license": [
  9208. "BSD-3-Clause"
  9209. ],
  9210. "description": "provides functionality for consuming RSS and Atom feeds",
  9211. "homepage": "https://laminas.dev",
  9212. "keywords": [
  9213. "feed",
  9214. "laminas"
  9215. ],
  9216. "support": {
  9217. "chat": "https://laminas.dev/chat",
  9218. "docs": "https://docs.laminas.dev/laminas-feed/",
  9219. "forum": "https://discourse.laminas.dev",
  9220. "issues": "https://github.com/laminas/laminas-feed/issues",
  9221. "rss": "https://github.com/laminas/laminas-feed/releases.atom",
  9222. "source": "https://github.com/laminas/laminas-feed"
  9223. },
  9224. "funding": [
  9225. {
  9226. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9227. "type": "community_bridge"
  9228. }
  9229. ],
  9230. "time": "2021-09-20T18:11:11+00:00"
  9231. },
  9232. {
  9233. "name": "laminas/laminas-stdlib",
  9234. "version": "3.6.1",
  9235. "source": {
  9236. "type": "git",
  9237. "url": "https://github.com/laminas/laminas-stdlib.git",
  9238. "reference": "db581851a092246ad99e12d4fddf105184924c71"
  9239. },
  9240. "dist": {
  9241. "type": "zip",
  9242. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/db581851a092246ad99e12d4fddf105184924c71",
  9243. "reference": "db581851a092246ad99e12d4fddf105184924c71",
  9244. "shasum": ""
  9245. },
  9246. "require": {
  9247. "php": "^7.3 || ~8.0.0 || ~8.1.0"
  9248. },
  9249. "conflict": {
  9250. "zendframework/zend-stdlib": "*"
  9251. },
  9252. "require-dev": {
  9253. "laminas/laminas-coding-standard": "~2.3.0",
  9254. "phpbench/phpbench": "^0.17.1",
  9255. "phpunit/phpunit": "~9.3.7",
  9256. "psalm/plugin-phpunit": "^0.16.0",
  9257. "vimeo/psalm": "^4.7"
  9258. },
  9259. "type": "library",
  9260. "autoload": {
  9261. "psr-4": {
  9262. "Laminas\\Stdlib\\": "src/"
  9263. }
  9264. },
  9265. "notification-url": "https://packagist.org/downloads/",
  9266. "license": [
  9267. "BSD-3-Clause"
  9268. ],
  9269. "description": "SPL extensions, array utilities, error handlers, and more",
  9270. "homepage": "https://laminas.dev",
  9271. "keywords": [
  9272. "laminas",
  9273. "stdlib"
  9274. ],
  9275. "support": {
  9276. "chat": "https://laminas.dev/chat",
  9277. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  9278. "forum": "https://discourse.laminas.dev",
  9279. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  9280. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  9281. "source": "https://github.com/laminas/laminas-stdlib"
  9282. },
  9283. "funding": [
  9284. {
  9285. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9286. "type": "community_bridge"
  9287. }
  9288. ],
  9289. "time": "2021-11-10T11:33:52+00:00"
  9290. },
  9291. {
  9292. "name": "league/container",
  9293. "version": "2.4.1",
  9294. "source": {
  9295. "type": "git",
  9296. "url": "https://github.com/thephpleague/container.git",
  9297. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  9298. },
  9299. "dist": {
  9300. "type": "zip",
  9301. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  9302. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  9303. "shasum": ""
  9304. },
  9305. "require": {
  9306. "container-interop/container-interop": "^1.2",
  9307. "php": "^5.4.0 || ^7.0"
  9308. },
  9309. "provide": {
  9310. "container-interop/container-interop-implementation": "^1.2",
  9311. "psr/container-implementation": "^1.0"
  9312. },
  9313. "replace": {
  9314. "orno/di": "~2.0"
  9315. },
  9316. "require-dev": {
  9317. "phpunit/phpunit": "4.*"
  9318. },
  9319. "type": "library",
  9320. "extra": {
  9321. "branch-alias": {
  9322. "dev-2.x": "2.x-dev",
  9323. "dev-1.x": "1.x-dev"
  9324. }
  9325. },
  9326. "autoload": {
  9327. "psr-4": {
  9328. "League\\Container\\": "src"
  9329. }
  9330. },
  9331. "notification-url": "https://packagist.org/downloads/",
  9332. "license": [
  9333. "MIT"
  9334. ],
  9335. "authors": [
  9336. {
  9337. "name": "Phil Bennett",
  9338. "email": "philipobenito@gmail.com",
  9339. "homepage": "http://www.philipobenito.com",
  9340. "role": "Developer"
  9341. }
  9342. ],
  9343. "description": "A fast and intuitive dependency injection container.",
  9344. "homepage": "https://github.com/thephpleague/container",
  9345. "keywords": [
  9346. "container",
  9347. "dependency",
  9348. "di",
  9349. "injection",
  9350. "league",
  9351. "provider",
  9352. "service"
  9353. ],
  9354. "time": "2017-05-10T09:20:27+00:00"
  9355. },
  9356. {
  9357. "name": "lsolesen/pel",
  9358. "version": "0.9.9",
  9359. "source": {
  9360. "type": "git",
  9361. "url": "https://github.com/pel/pel.git",
  9362. "reference": "95dd3c16161c588f0ac66662c1870a073159e5ec"
  9363. },
  9364. "dist": {
  9365. "type": "zip",
  9366. "url": "https://api.github.com/repos/pel/pel/zipball/95dd3c16161c588f0ac66662c1870a073159e5ec",
  9367. "reference": "95dd3c16161c588f0ac66662c1870a073159e5ec",
  9368. "shasum": ""
  9369. },
  9370. "require": {
  9371. "php": ">=5.4.0"
  9372. },
  9373. "require-dev": {
  9374. "ext-gd": "*",
  9375. "phpunit/phpunit": ">=4.8.36 <8",
  9376. "satooshi/php-coveralls": "1.0.*",
  9377. "squizlabs/php_codesniffer": "^3.0.0"
  9378. },
  9379. "type": "library",
  9380. "autoload": {
  9381. "psr-4": {
  9382. "lsolesen\\pel\\": "src/"
  9383. }
  9384. },
  9385. "notification-url": "https://packagist.org/downloads/",
  9386. "license": [
  9387. "GPL-2.0"
  9388. ],
  9389. "authors": [
  9390. {
  9391. "name": "Lars Olesen",
  9392. "email": "lars@intraface.dk",
  9393. "homepage": "http://intraface.dk",
  9394. "role": "Developer"
  9395. },
  9396. {
  9397. "name": "Martin Geisler",
  9398. "email": "martin@geisler.net",
  9399. "homepage": "http://geisler.net",
  9400. "role": "Developer"
  9401. }
  9402. ],
  9403. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  9404. "homepage": "http://pel.github.com/pel/",
  9405. "keywords": [
  9406. "exif",
  9407. "image"
  9408. ],
  9409. "time": "2020-11-07T06:04:18+00:00"
  9410. },
  9411. {
  9412. "name": "masterminds/html5",
  9413. "version": "2.7.5",
  9414. "source": {
  9415. "type": "git",
  9416. "url": "https://github.com/Masterminds/html5-php.git",
  9417. "reference": "f640ac1bdddff06ea333a920c95bbad8872429ab"
  9418. },
  9419. "dist": {
  9420. "type": "zip",
  9421. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f640ac1bdddff06ea333a920c95bbad8872429ab",
  9422. "reference": "f640ac1bdddff06ea333a920c95bbad8872429ab",
  9423. "shasum": ""
  9424. },
  9425. "require": {
  9426. "ext-ctype": "*",
  9427. "ext-dom": "*",
  9428. "ext-libxml": "*",
  9429. "php": ">=5.3.0"
  9430. },
  9431. "require-dev": {
  9432. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7"
  9433. },
  9434. "type": "library",
  9435. "extra": {
  9436. "branch-alias": {
  9437. "dev-master": "2.7-dev"
  9438. }
  9439. },
  9440. "autoload": {
  9441. "psr-4": {
  9442. "Masterminds\\": "src"
  9443. }
  9444. },
  9445. "notification-url": "https://packagist.org/downloads/",
  9446. "license": [
  9447. "MIT"
  9448. ],
  9449. "authors": [
  9450. {
  9451. "name": "Matt Butcher",
  9452. "email": "technosophos@gmail.com"
  9453. },
  9454. {
  9455. "name": "Matt Farina",
  9456. "email": "matt@mattfarina.com"
  9457. },
  9458. {
  9459. "name": "Asmir Mustafic",
  9460. "email": "goetas@gmail.com"
  9461. }
  9462. ],
  9463. "description": "An HTML5 parser and serializer.",
  9464. "homepage": "http://masterminds.github.io/html5-php",
  9465. "keywords": [
  9466. "HTML5",
  9467. "dom",
  9468. "html",
  9469. "parser",
  9470. "querypath",
  9471. "serializer",
  9472. "xml"
  9473. ],
  9474. "support": {
  9475. "issues": "https://github.com/Masterminds/html5-php/issues",
  9476. "source": "https://github.com/Masterminds/html5-php/tree/2.7.5"
  9477. },
  9478. "time": "2021-07-01T14:25:37+00:00"
  9479. },
  9480. {
  9481. "name": "nikic/php-parser",
  9482. "version": "v4.13.2",
  9483. "source": {
  9484. "type": "git",
  9485. "url": "https://github.com/nikic/PHP-Parser.git",
  9486. "reference": "210577fe3cf7badcc5814d99455df46564f3c077"
  9487. },
  9488. "dist": {
  9489. "type": "zip",
  9490. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/210577fe3cf7badcc5814d99455df46564f3c077",
  9491. "reference": "210577fe3cf7badcc5814d99455df46564f3c077",
  9492. "shasum": ""
  9493. },
  9494. "require": {
  9495. "ext-tokenizer": "*",
  9496. "php": ">=7.0"
  9497. },
  9498. "require-dev": {
  9499. "ircmaxell/php-yacc": "^0.0.7",
  9500. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  9501. },
  9502. "bin": [
  9503. "bin/php-parse"
  9504. ],
  9505. "type": "library",
  9506. "extra": {
  9507. "branch-alias": {
  9508. "dev-master": "4.9-dev"
  9509. }
  9510. },
  9511. "autoload": {
  9512. "psr-4": {
  9513. "PhpParser\\": "lib/PhpParser"
  9514. }
  9515. },
  9516. "notification-url": "https://packagist.org/downloads/",
  9517. "license": [
  9518. "BSD-3-Clause"
  9519. ],
  9520. "authors": [
  9521. {
  9522. "name": "Nikita Popov"
  9523. }
  9524. ],
  9525. "description": "A PHP parser written in PHP",
  9526. "keywords": [
  9527. "parser",
  9528. "php"
  9529. ],
  9530. "support": {
  9531. "issues": "https://github.com/nikic/PHP-Parser/issues",
  9532. "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.2"
  9533. },
  9534. "time": "2021-11-30T19:35:32+00:00"
  9535. },
  9536. {
  9537. "name": "pear/archive_tar",
  9538. "version": "1.4.14",
  9539. "source": {
  9540. "type": "git",
  9541. "url": "https://github.com/pear/Archive_Tar.git",
  9542. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  9543. },
  9544. "dist": {
  9545. "type": "zip",
  9546. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  9547. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  9548. "shasum": ""
  9549. },
  9550. "require": {
  9551. "pear/pear-core-minimal": "^1.10.0alpha2",
  9552. "php": ">=5.2.0"
  9553. },
  9554. "require-dev": {
  9555. "phpunit/phpunit": "*"
  9556. },
  9557. "suggest": {
  9558. "ext-bz2": "Bz2 compression support.",
  9559. "ext-xz": "Lzma2 compression support.",
  9560. "ext-zlib": "Gzip compression support."
  9561. },
  9562. "type": "library",
  9563. "extra": {
  9564. "branch-alias": {
  9565. "dev-master": "1.4.x-dev"
  9566. }
  9567. },
  9568. "autoload": {
  9569. "psr-0": {
  9570. "Archive_Tar": ""
  9571. }
  9572. },
  9573. "notification-url": "https://packagist.org/downloads/",
  9574. "include-path": [
  9575. "./"
  9576. ],
  9577. "license": [
  9578. "BSD-3-Clause"
  9579. ],
  9580. "authors": [
  9581. {
  9582. "name": "Vincent Blavet",
  9583. "email": "vincent@phpconcept.net"
  9584. },
  9585. {
  9586. "name": "Greg Beaver",
  9587. "email": "greg@chiaraquartet.net"
  9588. },
  9589. {
  9590. "name": "Michiel Rook",
  9591. "email": "mrook@php.net"
  9592. }
  9593. ],
  9594. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  9595. "homepage": "https://github.com/pear/Archive_Tar",
  9596. "keywords": [
  9597. "archive",
  9598. "tar"
  9599. ],
  9600. "support": {
  9601. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  9602. "source": "https://github.com/pear/Archive_Tar"
  9603. },
  9604. "funding": [
  9605. {
  9606. "url": "https://github.com/mrook",
  9607. "type": "github"
  9608. },
  9609. {
  9610. "url": "https://www.patreon.com/michielrook",
  9611. "type": "patreon"
  9612. }
  9613. ],
  9614. "time": "2021-07-20T13:53:39+00:00"
  9615. },
  9616. {
  9617. "name": "pear/console_getopt",
  9618. "version": "v1.4.3",
  9619. "source": {
  9620. "type": "git",
  9621. "url": "https://github.com/pear/Console_Getopt.git",
  9622. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  9623. },
  9624. "dist": {
  9625. "type": "zip",
  9626. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9627. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9628. "shasum": ""
  9629. },
  9630. "type": "library",
  9631. "autoload": {
  9632. "psr-0": {
  9633. "Console": "./"
  9634. }
  9635. },
  9636. "notification-url": "https://packagist.org/downloads/",
  9637. "include-path": [
  9638. "./"
  9639. ],
  9640. "license": [
  9641. "BSD-2-Clause"
  9642. ],
  9643. "authors": [
  9644. {
  9645. "name": "Andrei Zmievski",
  9646. "email": "andrei@php.net",
  9647. "role": "Lead"
  9648. },
  9649. {
  9650. "name": "Stig Bakken",
  9651. "email": "stig@php.net",
  9652. "role": "Developer"
  9653. },
  9654. {
  9655. "name": "Greg Beaver",
  9656. "email": "cellog@php.net",
  9657. "role": "Helper"
  9658. }
  9659. ],
  9660. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  9661. "support": {
  9662. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  9663. "source": "https://github.com/pear/Console_Getopt"
  9664. },
  9665. "time": "2019-11-20T18:27:48+00:00"
  9666. },
  9667. {
  9668. "name": "pear/pear-core-minimal",
  9669. "version": "v1.10.11",
  9670. "source": {
  9671. "type": "git",
  9672. "url": "https://github.com/pear/pear-core-minimal.git",
  9673. "reference": "68d0d32ada737153b7e93b8d3c710ebe70ac867d"
  9674. },
  9675. "dist": {
  9676. "type": "zip",
  9677. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/68d0d32ada737153b7e93b8d3c710ebe70ac867d",
  9678. "reference": "68d0d32ada737153b7e93b8d3c710ebe70ac867d",
  9679. "shasum": ""
  9680. },
  9681. "require": {
  9682. "pear/console_getopt": "~1.4",
  9683. "pear/pear_exception": "~1.0"
  9684. },
  9685. "replace": {
  9686. "rsky/pear-core-min": "self.version"
  9687. },
  9688. "type": "library",
  9689. "autoload": {
  9690. "psr-0": {
  9691. "": "src/"
  9692. }
  9693. },
  9694. "notification-url": "https://packagist.org/downloads/",
  9695. "include-path": [
  9696. "src/"
  9697. ],
  9698. "license": [
  9699. "BSD-3-Clause"
  9700. ],
  9701. "authors": [
  9702. {
  9703. "name": "Christian Weiske",
  9704. "email": "cweiske@php.net",
  9705. "role": "Lead"
  9706. }
  9707. ],
  9708. "description": "Minimal set of PEAR core files to be used as composer dependency",
  9709. "support": {
  9710. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  9711. "source": "https://github.com/pear/pear-core-minimal"
  9712. },
  9713. "time": "2021-08-10T22:31:03+00:00"
  9714. },
  9715. {
  9716. "name": "pear/pear_exception",
  9717. "version": "v1.0.2",
  9718. "source": {
  9719. "type": "git",
  9720. "url": "https://github.com/pear/PEAR_Exception.git",
  9721. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  9722. },
  9723. "dist": {
  9724. "type": "zip",
  9725. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  9726. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  9727. "shasum": ""
  9728. },
  9729. "require": {
  9730. "php": ">=5.2.0"
  9731. },
  9732. "require-dev": {
  9733. "phpunit/phpunit": "<9"
  9734. },
  9735. "type": "class",
  9736. "extra": {
  9737. "branch-alias": {
  9738. "dev-master": "1.0.x-dev"
  9739. }
  9740. },
  9741. "autoload": {
  9742. "classmap": [
  9743. "PEAR/"
  9744. ]
  9745. },
  9746. "notification-url": "https://packagist.org/downloads/",
  9747. "include-path": [
  9748. "."
  9749. ],
  9750. "license": [
  9751. "BSD-2-Clause"
  9752. ],
  9753. "authors": [
  9754. {
  9755. "name": "Helgi Thormar",
  9756. "email": "dufuz@php.net"
  9757. },
  9758. {
  9759. "name": "Greg Beaver",
  9760. "email": "cellog@php.net"
  9761. }
  9762. ],
  9763. "description": "The PEAR Exception base class.",
  9764. "homepage": "https://github.com/pear/PEAR_Exception",
  9765. "keywords": [
  9766. "exception"
  9767. ],
  9768. "support": {
  9769. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  9770. "source": "https://github.com/pear/PEAR_Exception"
  9771. },
  9772. "time": "2021-03-21T15:43:46+00:00"
  9773. },
  9774. {
  9775. "name": "phenx/php-font-lib",
  9776. "version": "0.5.2",
  9777. "source": {
  9778. "type": "git",
  9779. "url": "https://github.com/PhenX/php-font-lib.git",
  9780. "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8"
  9781. },
  9782. "dist": {
  9783. "type": "zip",
  9784. "url": "https://api.github.com/repos/PhenX/php-font-lib/zipball/ca6ad461f032145fff5971b5985e5af9e7fa88d8",
  9785. "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8",
  9786. "shasum": ""
  9787. },
  9788. "require-dev": {
  9789. "phpunit/phpunit": "^4.8.35 || ^5 || ^6 || ^7"
  9790. },
  9791. "type": "library",
  9792. "autoload": {
  9793. "psr-4": {
  9794. "FontLib\\": "src/FontLib"
  9795. }
  9796. },
  9797. "notification-url": "https://packagist.org/downloads/",
  9798. "license": [
  9799. "LGPL-3.0"
  9800. ],
  9801. "authors": [
  9802. {
  9803. "name": "Fabien Ménager",
  9804. "email": "fabien.menager@gmail.com"
  9805. }
  9806. ],
  9807. "description": "A library to read, parse, export and make subsets of different types of font files.",
  9808. "homepage": "https://github.com/PhenX/php-font-lib",
  9809. "time": "2020-03-08T15:31:32+00:00"
  9810. },
  9811. {
  9812. "name": "phpmailer/phpmailer",
  9813. "version": "v6.2.0",
  9814. "source": {
  9815. "type": "git",
  9816. "url": "https://github.com/PHPMailer/PHPMailer.git",
  9817. "reference": "e38888a75c070304ca5514197d4847a59a5c853f"
  9818. },
  9819. "dist": {
  9820. "type": "zip",
  9821. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/e38888a75c070304ca5514197d4847a59a5c853f",
  9822. "reference": "e38888a75c070304ca5514197d4847a59a5c853f",
  9823. "shasum": ""
  9824. },
  9825. "require": {
  9826. "ext-ctype": "*",
  9827. "ext-filter": "*",
  9828. "ext-hash": "*",
  9829. "php": ">=5.5.0"
  9830. },
  9831. "require-dev": {
  9832. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  9833. "doctrine/annotations": "^1.2",
  9834. "phpcompatibility/php-compatibility": "^9.3.5",
  9835. "roave/security-advisories": "dev-latest",
  9836. "squizlabs/php_codesniffer": "^3.5.6",
  9837. "yoast/phpunit-polyfills": "^0.2.0"
  9838. },
  9839. "suggest": {
  9840. "ext-mbstring": "Needed to send email in multibyte encoding charset",
  9841. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  9842. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  9843. "psr/log": "For optional PSR-3 debug logging",
  9844. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  9845. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  9846. },
  9847. "type": "library",
  9848. "autoload": {
  9849. "psr-4": {
  9850. "PHPMailer\\PHPMailer\\": "src/"
  9851. }
  9852. },
  9853. "notification-url": "https://packagist.org/downloads/",
  9854. "license": [
  9855. "LGPL-2.1-only"
  9856. ],
  9857. "authors": [
  9858. {
  9859. "name": "Marcus Bointon",
  9860. "email": "phpmailer@synchromedia.co.uk"
  9861. },
  9862. {
  9863. "name": "Jim Jagielski",
  9864. "email": "jimjag@gmail.com"
  9865. },
  9866. {
  9867. "name": "Andy Prevost",
  9868. "email": "codeworxtech@users.sourceforge.net"
  9869. },
  9870. {
  9871. "name": "Brent R. Matzelle"
  9872. }
  9873. ],
  9874. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  9875. "funding": [
  9876. {
  9877. "url": "https://github.com/Synchro",
  9878. "type": "github"
  9879. }
  9880. ],
  9881. "time": "2020-11-25T15:24:57+00:00"
  9882. },
  9883. {
  9884. "name": "psr/cache",
  9885. "version": "1.0.1",
  9886. "source": {
  9887. "type": "git",
  9888. "url": "https://github.com/php-fig/cache.git",
  9889. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  9890. },
  9891. "dist": {
  9892. "type": "zip",
  9893. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  9894. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  9895. "shasum": ""
  9896. },
  9897. "require": {
  9898. "php": ">=5.3.0"
  9899. },
  9900. "type": "library",
  9901. "extra": {
  9902. "branch-alias": {
  9903. "dev-master": "1.0.x-dev"
  9904. }
  9905. },
  9906. "autoload": {
  9907. "psr-4": {
  9908. "Psr\\Cache\\": "src/"
  9909. }
  9910. },
  9911. "notification-url": "https://packagist.org/downloads/",
  9912. "license": [
  9913. "MIT"
  9914. ],
  9915. "authors": [
  9916. {
  9917. "name": "PHP-FIG",
  9918. "homepage": "http://www.php-fig.org/"
  9919. }
  9920. ],
  9921. "description": "Common interface for caching libraries",
  9922. "keywords": [
  9923. "cache",
  9924. "psr",
  9925. "psr-6"
  9926. ],
  9927. "support": {
  9928. "source": "https://github.com/php-fig/cache/tree/master"
  9929. },
  9930. "time": "2016-08-06T20:24:11+00:00"
  9931. },
  9932. {
  9933. "name": "psr/container",
  9934. "version": "1.1.1",
  9935. "source": {
  9936. "type": "git",
  9937. "url": "https://github.com/php-fig/container.git",
  9938. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  9939. },
  9940. "dist": {
  9941. "type": "zip",
  9942. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  9943. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  9944. "shasum": ""
  9945. },
  9946. "require": {
  9947. "php": ">=7.2.0"
  9948. },
  9949. "type": "library",
  9950. "autoload": {
  9951. "psr-4": {
  9952. "Psr\\Container\\": "src/"
  9953. }
  9954. },
  9955. "notification-url": "https://packagist.org/downloads/",
  9956. "license": [
  9957. "MIT"
  9958. ],
  9959. "authors": [
  9960. {
  9961. "name": "PHP-FIG",
  9962. "homepage": "https://www.php-fig.org/"
  9963. }
  9964. ],
  9965. "description": "Common Container Interface (PHP FIG PSR-11)",
  9966. "homepage": "https://github.com/php-fig/container",
  9967. "keywords": [
  9968. "PSR-11",
  9969. "container",
  9970. "container-interface",
  9971. "container-interop",
  9972. "psr"
  9973. ],
  9974. "support": {
  9975. "issues": "https://github.com/php-fig/container/issues",
  9976. "source": "https://github.com/php-fig/container/tree/1.1.1"
  9977. },
  9978. "time": "2021-03-05T17:36:06+00:00"
  9979. },
  9980. {
  9981. "name": "psr/http-factory",
  9982. "version": "1.0.1",
  9983. "source": {
  9984. "type": "git",
  9985. "url": "https://github.com/php-fig/http-factory.git",
  9986. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  9987. },
  9988. "dist": {
  9989. "type": "zip",
  9990. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  9991. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  9992. "shasum": ""
  9993. },
  9994. "require": {
  9995. "php": ">=7.0.0",
  9996. "psr/http-message": "^1.0"
  9997. },
  9998. "type": "library",
  9999. "extra": {
  10000. "branch-alias": {
  10001. "dev-master": "1.0.x-dev"
  10002. }
  10003. },
  10004. "autoload": {
  10005. "psr-4": {
  10006. "Psr\\Http\\Message\\": "src/"
  10007. }
  10008. },
  10009. "notification-url": "https://packagist.org/downloads/",
  10010. "license": [
  10011. "MIT"
  10012. ],
  10013. "authors": [
  10014. {
  10015. "name": "PHP-FIG",
  10016. "homepage": "http://www.php-fig.org/"
  10017. }
  10018. ],
  10019. "description": "Common interfaces for PSR-7 HTTP message factories",
  10020. "keywords": [
  10021. "factory",
  10022. "http",
  10023. "message",
  10024. "psr",
  10025. "psr-17",
  10026. "psr-7",
  10027. "request",
  10028. "response"
  10029. ],
  10030. "support": {
  10031. "source": "https://github.com/php-fig/http-factory/tree/master"
  10032. },
  10033. "time": "2019-04-30T12:38:16+00:00"
  10034. },
  10035. {
  10036. "name": "psr/http-message",
  10037. "version": "1.0.1",
  10038. "source": {
  10039. "type": "git",
  10040. "url": "https://github.com/php-fig/http-message.git",
  10041. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  10042. },
  10043. "dist": {
  10044. "type": "zip",
  10045. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  10046. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  10047. "shasum": ""
  10048. },
  10049. "require": {
  10050. "php": ">=5.3.0"
  10051. },
  10052. "type": "library",
  10053. "extra": {
  10054. "branch-alias": {
  10055. "dev-master": "1.0.x-dev"
  10056. }
  10057. },
  10058. "autoload": {
  10059. "psr-4": {
  10060. "Psr\\Http\\Message\\": "src/"
  10061. }
  10062. },
  10063. "notification-url": "https://packagist.org/downloads/",
  10064. "license": [
  10065. "MIT"
  10066. ],
  10067. "authors": [
  10068. {
  10069. "name": "PHP-FIG",
  10070. "homepage": "http://www.php-fig.org/"
  10071. }
  10072. ],
  10073. "description": "Common interface for HTTP messages",
  10074. "homepage": "https://github.com/php-fig/http-message",
  10075. "keywords": [
  10076. "http",
  10077. "http-message",
  10078. "psr",
  10079. "psr-7",
  10080. "request",
  10081. "response"
  10082. ],
  10083. "support": {
  10084. "source": "https://github.com/php-fig/http-message/tree/master"
  10085. },
  10086. "time": "2016-08-06T14:39:51+00:00"
  10087. },
  10088. {
  10089. "name": "psr/log",
  10090. "version": "1.1.4",
  10091. "source": {
  10092. "type": "git",
  10093. "url": "https://github.com/php-fig/log.git",
  10094. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  10095. },
  10096. "dist": {
  10097. "type": "zip",
  10098. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  10099. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  10100. "shasum": ""
  10101. },
  10102. "require": {
  10103. "php": ">=5.3.0"
  10104. },
  10105. "type": "library",
  10106. "extra": {
  10107. "branch-alias": {
  10108. "dev-master": "1.1.x-dev"
  10109. }
  10110. },
  10111. "autoload": {
  10112. "psr-4": {
  10113. "Psr\\Log\\": "Psr/Log/"
  10114. }
  10115. },
  10116. "notification-url": "https://packagist.org/downloads/",
  10117. "license": [
  10118. "MIT"
  10119. ],
  10120. "authors": [
  10121. {
  10122. "name": "PHP-FIG",
  10123. "homepage": "https://www.php-fig.org/"
  10124. }
  10125. ],
  10126. "description": "Common interface for logging libraries",
  10127. "homepage": "https://github.com/php-fig/log",
  10128. "keywords": [
  10129. "log",
  10130. "psr",
  10131. "psr-3"
  10132. ],
  10133. "support": {
  10134. "source": "https://github.com/php-fig/log/tree/1.1.4"
  10135. },
  10136. "time": "2021-05-03T11:20:27+00:00"
  10137. },
  10138. {
  10139. "name": "psy/psysh",
  10140. "version": "v0.11.1",
  10141. "source": {
  10142. "type": "git",
  10143. "url": "https://github.com/bobthecow/psysh.git",
  10144. "reference": "570292577277f06f590635381a7f761a6cf4f026"
  10145. },
  10146. "dist": {
  10147. "type": "zip",
  10148. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/570292577277f06f590635381a7f761a6cf4f026",
  10149. "reference": "570292577277f06f590635381a7f761a6cf4f026",
  10150. "shasum": ""
  10151. },
  10152. "require": {
  10153. "ext-json": "*",
  10154. "ext-tokenizer": "*",
  10155. "nikic/php-parser": "^4.0 || ^3.1",
  10156. "php": "^8.0 || ^7.0.8",
  10157. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  10158. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  10159. },
  10160. "require-dev": {
  10161. "bamarni/composer-bin-plugin": "^1.2",
  10162. "hoa/console": "3.17.05.02"
  10163. },
  10164. "suggest": {
  10165. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  10166. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  10167. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  10168. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  10169. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  10170. },
  10171. "bin": [
  10172. "bin/psysh"
  10173. ],
  10174. "type": "library",
  10175. "extra": {
  10176. "branch-alias": {
  10177. "dev-main": "0.11.x-dev"
  10178. }
  10179. },
  10180. "autoload": {
  10181. "files": [
  10182. "src/functions.php"
  10183. ],
  10184. "psr-4": {
  10185. "Psy\\": "src/"
  10186. }
  10187. },
  10188. "notification-url": "https://packagist.org/downloads/",
  10189. "license": [
  10190. "MIT"
  10191. ],
  10192. "authors": [
  10193. {
  10194. "name": "Justin Hileman",
  10195. "email": "justin@justinhileman.info",
  10196. "homepage": "http://justinhileman.com"
  10197. }
  10198. ],
  10199. "description": "An interactive shell for modern PHP.",
  10200. "homepage": "http://psysh.org",
  10201. "keywords": [
  10202. "REPL",
  10203. "console",
  10204. "interactive",
  10205. "shell"
  10206. ],
  10207. "support": {
  10208. "issues": "https://github.com/bobthecow/psysh/issues",
  10209. "source": "https://github.com/bobthecow/psysh/tree/v0.11.1"
  10210. },
  10211. "time": "2022-01-03T13:58:38+00:00"
  10212. },
  10213. {
  10214. "name": "ralouphie/getallheaders",
  10215. "version": "3.0.3",
  10216. "source": {
  10217. "type": "git",
  10218. "url": "https://github.com/ralouphie/getallheaders.git",
  10219. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  10220. },
  10221. "dist": {
  10222. "type": "zip",
  10223. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  10224. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  10225. "shasum": ""
  10226. },
  10227. "require": {
  10228. "php": ">=5.6"
  10229. },
  10230. "require-dev": {
  10231. "php-coveralls/php-coveralls": "^2.1",
  10232. "phpunit/phpunit": "^5 || ^6.5"
  10233. },
  10234. "type": "library",
  10235. "autoload": {
  10236. "files": [
  10237. "src/getallheaders.php"
  10238. ]
  10239. },
  10240. "notification-url": "https://packagist.org/downloads/",
  10241. "license": [
  10242. "MIT"
  10243. ],
  10244. "authors": [
  10245. {
  10246. "name": "Ralph Khattar",
  10247. "email": "ralph.khattar@gmail.com"
  10248. }
  10249. ],
  10250. "description": "A polyfill for getallheaders.",
  10251. "support": {
  10252. "issues": "https://github.com/ralouphie/getallheaders/issues",
  10253. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  10254. },
  10255. "time": "2019-03-08T08:55:37+00:00"
  10256. },
  10257. {
  10258. "name": "stack/builder",
  10259. "version": "v1.0.6",
  10260. "source": {
  10261. "type": "git",
  10262. "url": "https://github.com/stackphp/builder.git",
  10263. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c"
  10264. },
  10265. "dist": {
  10266. "type": "zip",
  10267. "url": "https://api.github.com/repos/stackphp/builder/zipball/a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  10268. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  10269. "shasum": ""
  10270. },
  10271. "require": {
  10272. "php": ">=7.2.0",
  10273. "symfony/http-foundation": "~2.1|~3.0|~4.0|~5.0",
  10274. "symfony/http-kernel": "~2.1|~3.0|~4.0|~5.0"
  10275. },
  10276. "require-dev": {
  10277. "phpunit/phpunit": "~8.0",
  10278. "symfony/routing": "^5.0"
  10279. },
  10280. "type": "library",
  10281. "extra": {
  10282. "branch-alias": {
  10283. "dev-master": "1.0-dev"
  10284. }
  10285. },
  10286. "autoload": {
  10287. "psr-0": {
  10288. "Stack": "src"
  10289. }
  10290. },
  10291. "notification-url": "https://packagist.org/downloads/",
  10292. "license": [
  10293. "MIT"
  10294. ],
  10295. "authors": [
  10296. {
  10297. "name": "Igor Wiedler",
  10298. "email": "igor@wiedler.ch"
  10299. }
  10300. ],
  10301. "description": "Builder for stack middleware based on HttpKernelInterface.",
  10302. "keywords": [
  10303. "stack"
  10304. ],
  10305. "support": {
  10306. "issues": "https://github.com/stackphp/builder/issues",
  10307. "source": "https://github.com/stackphp/builder/tree/v1.0.6"
  10308. },
  10309. "time": "2020-01-30T12:17:27+00:00"
  10310. },
  10311. {
  10312. "name": "stecman/symfony-console-completion",
  10313. "version": "0.11.0",
  10314. "source": {
  10315. "type": "git",
  10316. "url": "https://github.com/stecman/symfony-console-completion.git",
  10317. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518"
  10318. },
  10319. "dist": {
  10320. "type": "zip",
  10321. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/a9502dab59405e275a9f264536c4e1cb61fc3518",
  10322. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518",
  10323. "shasum": ""
  10324. },
  10325. "require": {
  10326. "php": ">=5.3.2",
  10327. "symfony/console": "~2.3 || ~3.0 || ~4.0 || ~5.0"
  10328. },
  10329. "require-dev": {
  10330. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  10331. },
  10332. "type": "library",
  10333. "extra": {
  10334. "branch-alias": {
  10335. "dev-master": "0.10.x-dev"
  10336. }
  10337. },
  10338. "autoload": {
  10339. "psr-4": {
  10340. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  10341. }
  10342. },
  10343. "notification-url": "https://packagist.org/downloads/",
  10344. "license": [
  10345. "MIT"
  10346. ],
  10347. "authors": [
  10348. {
  10349. "name": "Stephen Holdaway",
  10350. "email": "stephen@stecman.co.nz"
  10351. }
  10352. ],
  10353. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  10354. "support": {
  10355. "issues": "https://github.com/stecman/symfony-console-completion/issues",
  10356. "source": "https://github.com/stecman/symfony-console-completion/tree/0.11.0"
  10357. },
  10358. "time": "2019-11-24T17:03:06+00:00"
  10359. },
  10360. {
  10361. "name": "symfony-cmf/routing",
  10362. "version": "2.3.4",
  10363. "source": {
  10364. "type": "git",
  10365. "url": "https://github.com/symfony-cmf/Routing.git",
  10366. "reference": "bbcdf2f6301d740454ba9ebb8adaefd436c36a6b"
  10367. },
  10368. "dist": {
  10369. "type": "zip",
  10370. "url": "https://api.github.com/repos/symfony-cmf/Routing/zipball/bbcdf2f6301d740454ba9ebb8adaefd436c36a6b",
  10371. "reference": "bbcdf2f6301d740454ba9ebb8adaefd436c36a6b",
  10372. "shasum": ""
  10373. },
  10374. "require": {
  10375. "php": "^7.2 || ^8.0",
  10376. "psr/log": "^1.0 || ^2.0 || ^3.0",
  10377. "symfony/http-kernel": "^4.4 || ^5.0",
  10378. "symfony/routing": "^4.4 || ^5.0"
  10379. },
  10380. "require-dev": {
  10381. "symfony-cmf/testing": "^3@dev",
  10382. "symfony/config": "^4.4 || ^5.0",
  10383. "symfony/dependency-injection": "^4.4 || ^5.0",
  10384. "symfony/event-dispatcher": "^4.4 || ^5.0",
  10385. "symfony/phpunit-bridge": "^5.0"
  10386. },
  10387. "suggest": {
  10388. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (^4.4 || ^5.0)"
  10389. },
  10390. "type": "library",
  10391. "extra": {
  10392. "branch-alias": {
  10393. "dev-master": "2.x-dev"
  10394. }
  10395. },
  10396. "autoload": {
  10397. "psr-4": {
  10398. "Symfony\\Cmf\\Component\\Routing\\": "src/"
  10399. }
  10400. },
  10401. "notification-url": "https://packagist.org/downloads/",
  10402. "license": [
  10403. "MIT"
  10404. ],
  10405. "authors": [
  10406. {
  10407. "name": "Symfony CMF Community",
  10408. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  10409. }
  10410. ],
  10411. "description": "Extends the Symfony routing component for dynamic routes and chaining several routers",
  10412. "homepage": "http://cmf.symfony.com",
  10413. "keywords": [
  10414. "database",
  10415. "routing"
  10416. ],
  10417. "support": {
  10418. "issues": "https://github.com/symfony-cmf/Routing/issues",
  10419. "source": "https://github.com/symfony-cmf/Routing/tree/2.3.4"
  10420. },
  10421. "time": "2021-11-08T16:33:10+00:00"
  10422. },
  10423. {
  10424. "name": "symfony/config",
  10425. "version": "v4.4.37",
  10426. "source": {
  10427. "type": "git",
  10428. "url": "https://github.com/symfony/config.git",
  10429. "reference": "e8c2d2c951ddedecb6d28954d336cb7d2e852d0e"
  10430. },
  10431. "dist": {
  10432. "type": "zip",
  10433. "url": "https://api.github.com/repos/symfony/config/zipball/e8c2d2c951ddedecb6d28954d336cb7d2e852d0e",
  10434. "reference": "e8c2d2c951ddedecb6d28954d336cb7d2e852d0e",
  10435. "shasum": ""
  10436. },
  10437. "require": {
  10438. "php": ">=7.1.3",
  10439. "symfony/filesystem": "^3.4|^4.0|^5.0",
  10440. "symfony/polyfill-ctype": "~1.8",
  10441. "symfony/polyfill-php80": "^1.16",
  10442. "symfony/polyfill-php81": "^1.22"
  10443. },
  10444. "conflict": {
  10445. "symfony/finder": "<3.4"
  10446. },
  10447. "require-dev": {
  10448. "symfony/event-dispatcher": "^3.4|^4.0|^5.0",
  10449. "symfony/finder": "^3.4|^4.0|^5.0",
  10450. "symfony/messenger": "^4.1|^5.0",
  10451. "symfony/service-contracts": "^1.1|^2",
  10452. "symfony/yaml": "^3.4|^4.0|^5.0"
  10453. },
  10454. "suggest": {
  10455. "symfony/yaml": "To use the yaml reference dumper"
  10456. },
  10457. "type": "library",
  10458. "autoload": {
  10459. "psr-4": {
  10460. "Symfony\\Component\\Config\\": ""
  10461. },
  10462. "exclude-from-classmap": [
  10463. "/Tests/"
  10464. ]
  10465. },
  10466. "notification-url": "https://packagist.org/downloads/",
  10467. "license": [
  10468. "MIT"
  10469. ],
  10470. "authors": [
  10471. {
  10472. "name": "Fabien Potencier",
  10473. "email": "fabien@symfony.com"
  10474. },
  10475. {
  10476. "name": "Symfony Community",
  10477. "homepage": "https://symfony.com/contributors"
  10478. }
  10479. ],
  10480. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  10481. "homepage": "https://symfony.com",
  10482. "support": {
  10483. "source": "https://github.com/symfony/config/tree/v4.4.37"
  10484. },
  10485. "funding": [
  10486. {
  10487. "url": "https://symfony.com/sponsor",
  10488. "type": "custom"
  10489. },
  10490. {
  10491. "url": "https://github.com/fabpot",
  10492. "type": "github"
  10493. },
  10494. {
  10495. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10496. "type": "tidelift"
  10497. }
  10498. ],
  10499. "time": "2022-01-03T09:46:22+00:00"
  10500. },
  10501. {
  10502. "name": "symfony/console",
  10503. "version": "v4.4.34",
  10504. "source": {
  10505. "type": "git",
  10506. "url": "https://github.com/symfony/console.git",
  10507. "reference": "329b3a75cc6b16d435ba1b1a41df54a53382a3f0"
  10508. },
  10509. "dist": {
  10510. "type": "zip",
  10511. "url": "https://api.github.com/repos/symfony/console/zipball/329b3a75cc6b16d435ba1b1a41df54a53382a3f0",
  10512. "reference": "329b3a75cc6b16d435ba1b1a41df54a53382a3f0",
  10513. "shasum": ""
  10514. },
  10515. "require": {
  10516. "php": ">=7.1.3",
  10517. "symfony/polyfill-mbstring": "~1.0",
  10518. "symfony/polyfill-php73": "^1.8",
  10519. "symfony/polyfill-php80": "^1.16",
  10520. "symfony/service-contracts": "^1.1|^2"
  10521. },
  10522. "conflict": {
  10523. "psr/log": ">=3",
  10524. "symfony/dependency-injection": "<3.4",
  10525. "symfony/event-dispatcher": "<4.3|>=5",
  10526. "symfony/lock": "<4.4",
  10527. "symfony/process": "<3.3"
  10528. },
  10529. "provide": {
  10530. "psr/log-implementation": "1.0|2.0"
  10531. },
  10532. "require-dev": {
  10533. "psr/log": "^1|^2",
  10534. "symfony/config": "^3.4|^4.0|^5.0",
  10535. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  10536. "symfony/event-dispatcher": "^4.3",
  10537. "symfony/lock": "^4.4|^5.0",
  10538. "symfony/process": "^3.4|^4.0|^5.0",
  10539. "symfony/var-dumper": "^4.3|^5.0"
  10540. },
  10541. "suggest": {
  10542. "psr/log": "For using the console logger",
  10543. "symfony/event-dispatcher": "",
  10544. "symfony/lock": "",
  10545. "symfony/process": ""
  10546. },
  10547. "type": "library",
  10548. "autoload": {
  10549. "psr-4": {
  10550. "Symfony\\Component\\Console\\": ""
  10551. },
  10552. "exclude-from-classmap": [
  10553. "/Tests/"
  10554. ]
  10555. },
  10556. "notification-url": "https://packagist.org/downloads/",
  10557. "license": [
  10558. "MIT"
  10559. ],
  10560. "authors": [
  10561. {
  10562. "name": "Fabien Potencier",
  10563. "email": "fabien@symfony.com"
  10564. },
  10565. {
  10566. "name": "Symfony Community",
  10567. "homepage": "https://symfony.com/contributors"
  10568. }
  10569. ],
  10570. "description": "Eases the creation of beautiful and testable command line interfaces",
  10571. "homepage": "https://symfony.com",
  10572. "support": {
  10573. "source": "https://github.com/symfony/console/tree/v4.4.34"
  10574. },
  10575. "funding": [
  10576. {
  10577. "url": "https://symfony.com/sponsor",
  10578. "type": "custom"
  10579. },
  10580. {
  10581. "url": "https://github.com/fabpot",
  10582. "type": "github"
  10583. },
  10584. {
  10585. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10586. "type": "tidelift"
  10587. }
  10588. ],
  10589. "time": "2021-11-04T12:23:33+00:00"
  10590. },
  10591. {
  10592. "name": "symfony/css-selector",
  10593. "version": "v4.4.37",
  10594. "source": {
  10595. "type": "git",
  10596. "url": "https://github.com/symfony/css-selector.git",
  10597. "reference": "0628e6c6d7c92f1a7bae543959bdc17347be2436"
  10598. },
  10599. "dist": {
  10600. "type": "zip",
  10601. "url": "https://api.github.com/repos/symfony/css-selector/zipball/0628e6c6d7c92f1a7bae543959bdc17347be2436",
  10602. "reference": "0628e6c6d7c92f1a7bae543959bdc17347be2436",
  10603. "shasum": ""
  10604. },
  10605. "require": {
  10606. "php": ">=7.1.3",
  10607. "symfony/polyfill-php80": "^1.16"
  10608. },
  10609. "type": "library",
  10610. "autoload": {
  10611. "psr-4": {
  10612. "Symfony\\Component\\CssSelector\\": ""
  10613. },
  10614. "exclude-from-classmap": [
  10615. "/Tests/"
  10616. ]
  10617. },
  10618. "notification-url": "https://packagist.org/downloads/",
  10619. "license": [
  10620. "MIT"
  10621. ],
  10622. "authors": [
  10623. {
  10624. "name": "Fabien Potencier",
  10625. "email": "fabien@symfony.com"
  10626. },
  10627. {
  10628. "name": "Jean-François Simon",
  10629. "email": "jeanfrancois.simon@sensiolabs.com"
  10630. },
  10631. {
  10632. "name": "Symfony Community",
  10633. "homepage": "https://symfony.com/contributors"
  10634. }
  10635. ],
  10636. "description": "Converts CSS selectors to XPath expressions",
  10637. "homepage": "https://symfony.com",
  10638. "support": {
  10639. "source": "https://github.com/symfony/css-selector/tree/v4.4.37"
  10640. },
  10641. "funding": [
  10642. {
  10643. "url": "https://symfony.com/sponsor",
  10644. "type": "custom"
  10645. },
  10646. {
  10647. "url": "https://github.com/fabpot",
  10648. "type": "github"
  10649. },
  10650. {
  10651. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10652. "type": "tidelift"
  10653. }
  10654. ],
  10655. "time": "2022-01-02T09:41:36+00:00"
  10656. },
  10657. {
  10658. "name": "symfony/debug",
  10659. "version": "v4.4.31",
  10660. "source": {
  10661. "type": "git",
  10662. "url": "https://github.com/symfony/debug.git",
  10663. "reference": "43ede438d4cb52cd589ae5dc070e9323866ba8e0"
  10664. },
  10665. "dist": {
  10666. "type": "zip",
  10667. "url": "https://api.github.com/repos/symfony/debug/zipball/43ede438d4cb52cd589ae5dc070e9323866ba8e0",
  10668. "reference": "43ede438d4cb52cd589ae5dc070e9323866ba8e0",
  10669. "shasum": ""
  10670. },
  10671. "require": {
  10672. "php": ">=7.1.3",
  10673. "psr/log": "^1|^2|^3"
  10674. },
  10675. "conflict": {
  10676. "symfony/http-kernel": "<3.4"
  10677. },
  10678. "require-dev": {
  10679. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  10680. },
  10681. "type": "library",
  10682. "autoload": {
  10683. "psr-4": {
  10684. "Symfony\\Component\\Debug\\": ""
  10685. },
  10686. "exclude-from-classmap": [
  10687. "/Tests/"
  10688. ]
  10689. },
  10690. "notification-url": "https://packagist.org/downloads/",
  10691. "license": [
  10692. "MIT"
  10693. ],
  10694. "authors": [
  10695. {
  10696. "name": "Fabien Potencier",
  10697. "email": "fabien@symfony.com"
  10698. },
  10699. {
  10700. "name": "Symfony Community",
  10701. "homepage": "https://symfony.com/contributors"
  10702. }
  10703. ],
  10704. "description": "Provides tools to ease debugging PHP code",
  10705. "homepage": "https://symfony.com",
  10706. "support": {
  10707. "source": "https://github.com/symfony/debug/tree/v4.4.31"
  10708. },
  10709. "funding": [
  10710. {
  10711. "url": "https://symfony.com/sponsor",
  10712. "type": "custom"
  10713. },
  10714. {
  10715. "url": "https://github.com/fabpot",
  10716. "type": "github"
  10717. },
  10718. {
  10719. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10720. "type": "tidelift"
  10721. }
  10722. ],
  10723. "time": "2021-09-24T13:30:14+00:00"
  10724. },
  10725. {
  10726. "name": "symfony/dependency-injection",
  10727. "version": "v4.4.34",
  10728. "source": {
  10729. "type": "git",
  10730. "url": "https://github.com/symfony/dependency-injection.git",
  10731. "reference": "117d7f132ed7efbd535ec947709d49bec1b9d24b"
  10732. },
  10733. "dist": {
  10734. "type": "zip",
  10735. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/117d7f132ed7efbd535ec947709d49bec1b9d24b",
  10736. "reference": "117d7f132ed7efbd535ec947709d49bec1b9d24b",
  10737. "shasum": ""
  10738. },
  10739. "require": {
  10740. "php": ">=7.1.3",
  10741. "psr/container": "^1.0",
  10742. "symfony/polyfill-php80": "^1.16",
  10743. "symfony/service-contracts": "^1.1.6|^2"
  10744. },
  10745. "conflict": {
  10746. "symfony/config": "<4.3|>=5.0",
  10747. "symfony/finder": "<3.4",
  10748. "symfony/proxy-manager-bridge": "<3.4",
  10749. "symfony/yaml": "<3.4"
  10750. },
  10751. "provide": {
  10752. "psr/container-implementation": "1.0",
  10753. "symfony/service-implementation": "1.0|2.0"
  10754. },
  10755. "require-dev": {
  10756. "symfony/config": "^4.3",
  10757. "symfony/expression-language": "^3.4|^4.0|^5.0",
  10758. "symfony/yaml": "^4.4|^5.0"
  10759. },
  10760. "suggest": {
  10761. "symfony/config": "",
  10762. "symfony/expression-language": "For using expressions in service container configuration",
  10763. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  10764. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  10765. "symfony/yaml": ""
  10766. },
  10767. "type": "library",
  10768. "autoload": {
  10769. "psr-4": {
  10770. "Symfony\\Component\\DependencyInjection\\": ""
  10771. },
  10772. "exclude-from-classmap": [
  10773. "/Tests/"
  10774. ]
  10775. },
  10776. "notification-url": "https://packagist.org/downloads/",
  10777. "license": [
  10778. "MIT"
  10779. ],
  10780. "authors": [
  10781. {
  10782. "name": "Fabien Potencier",
  10783. "email": "fabien@symfony.com"
  10784. },
  10785. {
  10786. "name": "Symfony Community",
  10787. "homepage": "https://symfony.com/contributors"
  10788. }
  10789. ],
  10790. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  10791. "homepage": "https://symfony.com",
  10792. "support": {
  10793. "source": "https://github.com/symfony/dependency-injection/tree/v4.4.34"
  10794. },
  10795. "funding": [
  10796. {
  10797. "url": "https://symfony.com/sponsor",
  10798. "type": "custom"
  10799. },
  10800. {
  10801. "url": "https://github.com/fabpot",
  10802. "type": "github"
  10803. },
  10804. {
  10805. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10806. "type": "tidelift"
  10807. }
  10808. ],
  10809. "time": "2021-11-15T14:42:25+00:00"
  10810. },
  10811. {
  10812. "name": "symfony/deprecation-contracts",
  10813. "version": "v2.5.0",
  10814. "source": {
  10815. "type": "git",
  10816. "url": "https://github.com/symfony/deprecation-contracts.git",
  10817. "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8"
  10818. },
  10819. "dist": {
  10820. "type": "zip",
  10821. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/6f981ee24cf69ee7ce9736146d1c57c2780598a8",
  10822. "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8",
  10823. "shasum": ""
  10824. },
  10825. "require": {
  10826. "php": ">=7.1"
  10827. },
  10828. "type": "library",
  10829. "extra": {
  10830. "branch-alias": {
  10831. "dev-main": "2.5-dev"
  10832. },
  10833. "thanks": {
  10834. "name": "symfony/contracts",
  10835. "url": "https://github.com/symfony/contracts"
  10836. }
  10837. },
  10838. "autoload": {
  10839. "files": [
  10840. "function.php"
  10841. ]
  10842. },
  10843. "notification-url": "https://packagist.org/downloads/",
  10844. "license": [
  10845. "MIT"
  10846. ],
  10847. "authors": [
  10848. {
  10849. "name": "Nicolas Grekas",
  10850. "email": "p@tchwork.com"
  10851. },
  10852. {
  10853. "name": "Symfony Community",
  10854. "homepage": "https://symfony.com/contributors"
  10855. }
  10856. ],
  10857. "description": "A generic function and convention to trigger deprecation notices",
  10858. "homepage": "https://symfony.com",
  10859. "support": {
  10860. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.0"
  10861. },
  10862. "funding": [
  10863. {
  10864. "url": "https://symfony.com/sponsor",
  10865. "type": "custom"
  10866. },
  10867. {
  10868. "url": "https://github.com/fabpot",
  10869. "type": "github"
  10870. },
  10871. {
  10872. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10873. "type": "tidelift"
  10874. }
  10875. ],
  10876. "time": "2021-07-12T14:48:14+00:00"
  10877. },
  10878. {
  10879. "name": "symfony/dom-crawler",
  10880. "version": "v4.4.37",
  10881. "source": {
  10882. "type": "git",
  10883. "url": "https://github.com/symfony/dom-crawler.git",
  10884. "reference": "60d36408a3a48500bcc6e30d9f831e51d04d7fa4"
  10885. },
  10886. "dist": {
  10887. "type": "zip",
  10888. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/60d36408a3a48500bcc6e30d9f831e51d04d7fa4",
  10889. "reference": "60d36408a3a48500bcc6e30d9f831e51d04d7fa4",
  10890. "shasum": ""
  10891. },
  10892. "require": {
  10893. "php": ">=7.1.3",
  10894. "symfony/polyfill-ctype": "~1.8",
  10895. "symfony/polyfill-mbstring": "~1.0",
  10896. "symfony/polyfill-php80": "^1.16"
  10897. },
  10898. "conflict": {
  10899. "masterminds/html5": "<2.6"
  10900. },
  10901. "require-dev": {
  10902. "masterminds/html5": "^2.6",
  10903. "symfony/css-selector": "^3.4|^4.0|^5.0"
  10904. },
  10905. "suggest": {
  10906. "symfony/css-selector": ""
  10907. },
  10908. "type": "library",
  10909. "autoload": {
  10910. "psr-4": {
  10911. "Symfony\\Component\\DomCrawler\\": ""
  10912. },
  10913. "exclude-from-classmap": [
  10914. "/Tests/"
  10915. ]
  10916. },
  10917. "notification-url": "https://packagist.org/downloads/",
  10918. "license": [
  10919. "MIT"
  10920. ],
  10921. "authors": [
  10922. {
  10923. "name": "Fabien Potencier",
  10924. "email": "fabien@symfony.com"
  10925. },
  10926. {
  10927. "name": "Symfony Community",
  10928. "homepage": "https://symfony.com/contributors"
  10929. }
  10930. ],
  10931. "description": "Eases DOM navigation for HTML and XML documents",
  10932. "homepage": "https://symfony.com",
  10933. "support": {
  10934. "source": "https://github.com/symfony/dom-crawler/tree/v4.4.37"
  10935. },
  10936. "funding": [
  10937. {
  10938. "url": "https://symfony.com/sponsor",
  10939. "type": "custom"
  10940. },
  10941. {
  10942. "url": "https://github.com/fabpot",
  10943. "type": "github"
  10944. },
  10945. {
  10946. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10947. "type": "tidelift"
  10948. }
  10949. ],
  10950. "time": "2022-01-02T09:41:36+00:00"
  10951. },
  10952. {
  10953. "name": "symfony/error-handler",
  10954. "version": "v4.4.34",
  10955. "source": {
  10956. "type": "git",
  10957. "url": "https://github.com/symfony/error-handler.git",
  10958. "reference": "17785c374645def1e884d8ec49976c156c61db4d"
  10959. },
  10960. "dist": {
  10961. "type": "zip",
  10962. "url": "https://api.github.com/repos/symfony/error-handler/zipball/17785c374645def1e884d8ec49976c156c61db4d",
  10963. "reference": "17785c374645def1e884d8ec49976c156c61db4d",
  10964. "shasum": ""
  10965. },
  10966. "require": {
  10967. "php": ">=7.1.3",
  10968. "psr/log": "^1|^2|^3",
  10969. "symfony/debug": "^4.4.5",
  10970. "symfony/var-dumper": "^4.4|^5.0"
  10971. },
  10972. "require-dev": {
  10973. "symfony/http-kernel": "^4.4|^5.0",
  10974. "symfony/serializer": "^4.4|^5.0"
  10975. },
  10976. "type": "library",
  10977. "autoload": {
  10978. "psr-4": {
  10979. "Symfony\\Component\\ErrorHandler\\": ""
  10980. },
  10981. "exclude-from-classmap": [
  10982. "/Tests/"
  10983. ]
  10984. },
  10985. "notification-url": "https://packagist.org/downloads/",
  10986. "license": [
  10987. "MIT"
  10988. ],
  10989. "authors": [
  10990. {
  10991. "name": "Fabien Potencier",
  10992. "email": "fabien@symfony.com"
  10993. },
  10994. {
  10995. "name": "Symfony Community",
  10996. "homepage": "https://symfony.com/contributors"
  10997. }
  10998. ],
  10999. "description": "Provides tools to manage errors and ease debugging PHP code",
  11000. "homepage": "https://symfony.com",
  11001. "support": {
  11002. "source": "https://github.com/symfony/error-handler/tree/v4.4.34"
  11003. },
  11004. "funding": [
  11005. {
  11006. "url": "https://symfony.com/sponsor",
  11007. "type": "custom"
  11008. },
  11009. {
  11010. "url": "https://github.com/fabpot",
  11011. "type": "github"
  11012. },
  11013. {
  11014. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11015. "type": "tidelift"
  11016. }
  11017. ],
  11018. "time": "2021-11-12T14:57:39+00:00"
  11019. },
  11020. {
  11021. "name": "symfony/event-dispatcher",
  11022. "version": "v4.4.34",
  11023. "source": {
  11024. "type": "git",
  11025. "url": "https://github.com/symfony/event-dispatcher.git",
  11026. "reference": "1a024b45369c9d55d76b6b8a241bd20c9ea1cbd8"
  11027. },
  11028. "dist": {
  11029. "type": "zip",
  11030. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1a024b45369c9d55d76b6b8a241bd20c9ea1cbd8",
  11031. "reference": "1a024b45369c9d55d76b6b8a241bd20c9ea1cbd8",
  11032. "shasum": ""
  11033. },
  11034. "require": {
  11035. "php": ">=7.1.3",
  11036. "symfony/event-dispatcher-contracts": "^1.1",
  11037. "symfony/polyfill-php80": "^1.16"
  11038. },
  11039. "conflict": {
  11040. "symfony/dependency-injection": "<3.4"
  11041. },
  11042. "provide": {
  11043. "psr/event-dispatcher-implementation": "1.0",
  11044. "symfony/event-dispatcher-implementation": "1.1"
  11045. },
  11046. "require-dev": {
  11047. "psr/log": "^1|^2|^3",
  11048. "symfony/config": "^3.4|^4.0|^5.0",
  11049. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  11050. "symfony/error-handler": "~3.4|~4.4",
  11051. "symfony/expression-language": "^3.4|^4.0|^5.0",
  11052. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  11053. "symfony/service-contracts": "^1.1|^2",
  11054. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  11055. },
  11056. "suggest": {
  11057. "symfony/dependency-injection": "",
  11058. "symfony/http-kernel": ""
  11059. },
  11060. "type": "library",
  11061. "autoload": {
  11062. "psr-4": {
  11063. "Symfony\\Component\\EventDispatcher\\": ""
  11064. },
  11065. "exclude-from-classmap": [
  11066. "/Tests/"
  11067. ]
  11068. },
  11069. "notification-url": "https://packagist.org/downloads/",
  11070. "license": [
  11071. "MIT"
  11072. ],
  11073. "authors": [
  11074. {
  11075. "name": "Fabien Potencier",
  11076. "email": "fabien@symfony.com"
  11077. },
  11078. {
  11079. "name": "Symfony Community",
  11080. "homepage": "https://symfony.com/contributors"
  11081. }
  11082. ],
  11083. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  11084. "homepage": "https://symfony.com",
  11085. "support": {
  11086. "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.34"
  11087. },
  11088. "funding": [
  11089. {
  11090. "url": "https://symfony.com/sponsor",
  11091. "type": "custom"
  11092. },
  11093. {
  11094. "url": "https://github.com/fabpot",
  11095. "type": "github"
  11096. },
  11097. {
  11098. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11099. "type": "tidelift"
  11100. }
  11101. ],
  11102. "time": "2021-11-15T14:42:25+00:00"
  11103. },
  11104. {
  11105. "name": "symfony/event-dispatcher-contracts",
  11106. "version": "v1.1.11",
  11107. "source": {
  11108. "type": "git",
  11109. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  11110. "reference": "01e9a4efac0ee33a05dfdf93b346f62e7d0e998c"
  11111. },
  11112. "dist": {
  11113. "type": "zip",
  11114. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/01e9a4efac0ee33a05dfdf93b346f62e7d0e998c",
  11115. "reference": "01e9a4efac0ee33a05dfdf93b346f62e7d0e998c",
  11116. "shasum": ""
  11117. },
  11118. "require": {
  11119. "php": ">=7.1.3"
  11120. },
  11121. "suggest": {
  11122. "psr/event-dispatcher": "",
  11123. "symfony/event-dispatcher-implementation": ""
  11124. },
  11125. "type": "library",
  11126. "extra": {
  11127. "branch-alias": {
  11128. "dev-main": "1.1-dev"
  11129. },
  11130. "thanks": {
  11131. "name": "symfony/contracts",
  11132. "url": "https://github.com/symfony/contracts"
  11133. }
  11134. },
  11135. "autoload": {
  11136. "psr-4": {
  11137. "Symfony\\Contracts\\EventDispatcher\\": ""
  11138. }
  11139. },
  11140. "notification-url": "https://packagist.org/downloads/",
  11141. "license": [
  11142. "MIT"
  11143. ],
  11144. "authors": [
  11145. {
  11146. "name": "Nicolas Grekas",
  11147. "email": "p@tchwork.com"
  11148. },
  11149. {
  11150. "name": "Symfony Community",
  11151. "homepage": "https://symfony.com/contributors"
  11152. }
  11153. ],
  11154. "description": "Generic abstractions related to dispatching event",
  11155. "homepage": "https://symfony.com",
  11156. "keywords": [
  11157. "abstractions",
  11158. "contracts",
  11159. "decoupling",
  11160. "interfaces",
  11161. "interoperability",
  11162. "standards"
  11163. ],
  11164. "support": {
  11165. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.11"
  11166. },
  11167. "funding": [
  11168. {
  11169. "url": "https://symfony.com/sponsor",
  11170. "type": "custom"
  11171. },
  11172. {
  11173. "url": "https://github.com/fabpot",
  11174. "type": "github"
  11175. },
  11176. {
  11177. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11178. "type": "tidelift"
  11179. }
  11180. ],
  11181. "time": "2021-03-23T15:25:38+00:00"
  11182. },
  11183. {
  11184. "name": "symfony/filesystem",
  11185. "version": "v4.4.37",
  11186. "source": {
  11187. "type": "git",
  11188. "url": "https://github.com/symfony/filesystem.git",
  11189. "reference": "c59f37705c3e513ae55b2735f128f4ce363c82ec"
  11190. },
  11191. "dist": {
  11192. "type": "zip",
  11193. "url": "https://api.github.com/repos/symfony/filesystem/zipball/c59f37705c3e513ae55b2735f128f4ce363c82ec",
  11194. "reference": "c59f37705c3e513ae55b2735f128f4ce363c82ec",
  11195. "shasum": ""
  11196. },
  11197. "require": {
  11198. "php": ">=7.1.3",
  11199. "symfony/polyfill-ctype": "~1.8",
  11200. "symfony/polyfill-php80": "^1.16"
  11201. },
  11202. "type": "library",
  11203. "autoload": {
  11204. "psr-4": {
  11205. "Symfony\\Component\\Filesystem\\": ""
  11206. },
  11207. "exclude-from-classmap": [
  11208. "/Tests/"
  11209. ]
  11210. },
  11211. "notification-url": "https://packagist.org/downloads/",
  11212. "license": [
  11213. "MIT"
  11214. ],
  11215. "authors": [
  11216. {
  11217. "name": "Fabien Potencier",
  11218. "email": "fabien@symfony.com"
  11219. },
  11220. {
  11221. "name": "Symfony Community",
  11222. "homepage": "https://symfony.com/contributors"
  11223. }
  11224. ],
  11225. "description": "Provides basic utilities for the filesystem",
  11226. "homepage": "https://symfony.com",
  11227. "support": {
  11228. "source": "https://github.com/symfony/filesystem/tree/v4.4.37"
  11229. },
  11230. "funding": [
  11231. {
  11232. "url": "https://symfony.com/sponsor",
  11233. "type": "custom"
  11234. },
  11235. {
  11236. "url": "https://github.com/fabpot",
  11237. "type": "github"
  11238. },
  11239. {
  11240. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11241. "type": "tidelift"
  11242. }
  11243. ],
  11244. "time": "2022-01-02T09:41:36+00:00"
  11245. },
  11246. {
  11247. "name": "symfony/finder",
  11248. "version": "v4.4.37",
  11249. "source": {
  11250. "type": "git",
  11251. "url": "https://github.com/symfony/finder.git",
  11252. "reference": "b17d76d7ed179f017aad646e858c90a2771af15d"
  11253. },
  11254. "dist": {
  11255. "type": "zip",
  11256. "url": "https://api.github.com/repos/symfony/finder/zipball/b17d76d7ed179f017aad646e858c90a2771af15d",
  11257. "reference": "b17d76d7ed179f017aad646e858c90a2771af15d",
  11258. "shasum": ""
  11259. },
  11260. "require": {
  11261. "php": ">=7.1.3",
  11262. "symfony/polyfill-php80": "^1.16"
  11263. },
  11264. "type": "library",
  11265. "autoload": {
  11266. "psr-4": {
  11267. "Symfony\\Component\\Finder\\": ""
  11268. },
  11269. "exclude-from-classmap": [
  11270. "/Tests/"
  11271. ]
  11272. },
  11273. "notification-url": "https://packagist.org/downloads/",
  11274. "license": [
  11275. "MIT"
  11276. ],
  11277. "authors": [
  11278. {
  11279. "name": "Fabien Potencier",
  11280. "email": "fabien@symfony.com"
  11281. },
  11282. {
  11283. "name": "Symfony Community",
  11284. "homepage": "https://symfony.com/contributors"
  11285. }
  11286. ],
  11287. "description": "Finds files and directories via an intuitive fluent interface",
  11288. "homepage": "https://symfony.com",
  11289. "support": {
  11290. "source": "https://github.com/symfony/finder/tree/v4.4.37"
  11291. },
  11292. "funding": [
  11293. {
  11294. "url": "https://symfony.com/sponsor",
  11295. "type": "custom"
  11296. },
  11297. {
  11298. "url": "https://github.com/fabpot",
  11299. "type": "github"
  11300. },
  11301. {
  11302. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11303. "type": "tidelift"
  11304. }
  11305. ],
  11306. "time": "2022-01-02T09:41:36+00:00"
  11307. },
  11308. {
  11309. "name": "symfony/http-client-contracts",
  11310. "version": "v2.5.0",
  11311. "source": {
  11312. "type": "git",
  11313. "url": "https://github.com/symfony/http-client-contracts.git",
  11314. "reference": "ec82e57b5b714dbb69300d348bd840b345e24166"
  11315. },
  11316. "dist": {
  11317. "type": "zip",
  11318. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/ec82e57b5b714dbb69300d348bd840b345e24166",
  11319. "reference": "ec82e57b5b714dbb69300d348bd840b345e24166",
  11320. "shasum": ""
  11321. },
  11322. "require": {
  11323. "php": ">=7.2.5"
  11324. },
  11325. "suggest": {
  11326. "symfony/http-client-implementation": ""
  11327. },
  11328. "type": "library",
  11329. "extra": {
  11330. "branch-alias": {
  11331. "dev-main": "2.5-dev"
  11332. },
  11333. "thanks": {
  11334. "name": "symfony/contracts",
  11335. "url": "https://github.com/symfony/contracts"
  11336. }
  11337. },
  11338. "autoload": {
  11339. "psr-4": {
  11340. "Symfony\\Contracts\\HttpClient\\": ""
  11341. }
  11342. },
  11343. "notification-url": "https://packagist.org/downloads/",
  11344. "license": [
  11345. "MIT"
  11346. ],
  11347. "authors": [
  11348. {
  11349. "name": "Nicolas Grekas",
  11350. "email": "p@tchwork.com"
  11351. },
  11352. {
  11353. "name": "Symfony Community",
  11354. "homepage": "https://symfony.com/contributors"
  11355. }
  11356. ],
  11357. "description": "Generic abstractions related to HTTP clients",
  11358. "homepage": "https://symfony.com",
  11359. "keywords": [
  11360. "abstractions",
  11361. "contracts",
  11362. "decoupling",
  11363. "interfaces",
  11364. "interoperability",
  11365. "standards"
  11366. ],
  11367. "support": {
  11368. "source": "https://github.com/symfony/http-client-contracts/tree/v2.5.0"
  11369. },
  11370. "funding": [
  11371. {
  11372. "url": "https://symfony.com/sponsor",
  11373. "type": "custom"
  11374. },
  11375. {
  11376. "url": "https://github.com/fabpot",
  11377. "type": "github"
  11378. },
  11379. {
  11380. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11381. "type": "tidelift"
  11382. }
  11383. ],
  11384. "time": "2021-11-03T09:24:47+00:00"
  11385. },
  11386. {
  11387. "name": "symfony/http-foundation",
  11388. "version": "v4.4.34",
  11389. "source": {
  11390. "type": "git",
  11391. "url": "https://github.com/symfony/http-foundation.git",
  11392. "reference": "f4cbbb6fc428588ce8373802461e7fe84e6809ab"
  11393. },
  11394. "dist": {
  11395. "type": "zip",
  11396. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/f4cbbb6fc428588ce8373802461e7fe84e6809ab",
  11397. "reference": "f4cbbb6fc428588ce8373802461e7fe84e6809ab",
  11398. "shasum": ""
  11399. },
  11400. "require": {
  11401. "php": ">=7.1.3",
  11402. "symfony/mime": "^4.3|^5.0",
  11403. "symfony/polyfill-mbstring": "~1.1",
  11404. "symfony/polyfill-php80": "^1.16"
  11405. },
  11406. "require-dev": {
  11407. "predis/predis": "~1.0",
  11408. "symfony/expression-language": "^3.4|^4.0|^5.0"
  11409. },
  11410. "type": "library",
  11411. "autoload": {
  11412. "psr-4": {
  11413. "Symfony\\Component\\HttpFoundation\\": ""
  11414. },
  11415. "exclude-from-classmap": [
  11416. "/Tests/"
  11417. ]
  11418. },
  11419. "notification-url": "https://packagist.org/downloads/",
  11420. "license": [
  11421. "MIT"
  11422. ],
  11423. "authors": [
  11424. {
  11425. "name": "Fabien Potencier",
  11426. "email": "fabien@symfony.com"
  11427. },
  11428. {
  11429. "name": "Symfony Community",
  11430. "homepage": "https://symfony.com/contributors"
  11431. }
  11432. ],
  11433. "description": "Defines an object-oriented layer for the HTTP specification",
  11434. "homepage": "https://symfony.com",
  11435. "support": {
  11436. "source": "https://github.com/symfony/http-foundation/tree/v4.4.34"
  11437. },
  11438. "funding": [
  11439. {
  11440. "url": "https://symfony.com/sponsor",
  11441. "type": "custom"
  11442. },
  11443. {
  11444. "url": "https://github.com/fabpot",
  11445. "type": "github"
  11446. },
  11447. {
  11448. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11449. "type": "tidelift"
  11450. }
  11451. ],
  11452. "time": "2021-11-04T12:23:33+00:00"
  11453. },
  11454. {
  11455. "name": "symfony/http-kernel",
  11456. "version": "v4.4.35",
  11457. "source": {
  11458. "type": "git",
  11459. "url": "https://github.com/symfony/http-kernel.git",
  11460. "reference": "fb793f1381c34b79a43596a532a6a49bd729c9db"
  11461. },
  11462. "dist": {
  11463. "type": "zip",
  11464. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/fb793f1381c34b79a43596a532a6a49bd729c9db",
  11465. "reference": "fb793f1381c34b79a43596a532a6a49bd729c9db",
  11466. "shasum": ""
  11467. },
  11468. "require": {
  11469. "php": ">=7.1.3",
  11470. "psr/log": "^1|^2",
  11471. "symfony/error-handler": "^4.4",
  11472. "symfony/event-dispatcher": "^4.4",
  11473. "symfony/http-client-contracts": "^1.1|^2",
  11474. "symfony/http-foundation": "^4.4.30|^5.3.7",
  11475. "symfony/polyfill-ctype": "^1.8",
  11476. "symfony/polyfill-php73": "^1.9",
  11477. "symfony/polyfill-php80": "^1.16"
  11478. },
  11479. "conflict": {
  11480. "symfony/browser-kit": "<4.3",
  11481. "symfony/config": "<3.4",
  11482. "symfony/console": ">=5",
  11483. "symfony/dependency-injection": "<4.3",
  11484. "symfony/translation": "<4.2",
  11485. "twig/twig": "<1.43|<2.13,>=2"
  11486. },
  11487. "provide": {
  11488. "psr/log-implementation": "1.0|2.0"
  11489. },
  11490. "require-dev": {
  11491. "psr/cache": "^1.0|^2.0|^3.0",
  11492. "symfony/browser-kit": "^4.3|^5.0",
  11493. "symfony/config": "^3.4|^4.0|^5.0",
  11494. "symfony/console": "^3.4|^4.0",
  11495. "symfony/css-selector": "^3.4|^4.0|^5.0",
  11496. "symfony/dependency-injection": "^4.3|^5.0",
  11497. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  11498. "symfony/expression-language": "^3.4|^4.0|^5.0",
  11499. "symfony/finder": "^3.4|^4.0|^5.0",
  11500. "symfony/process": "^3.4|^4.0|^5.0",
  11501. "symfony/routing": "^3.4|^4.0|^5.0",
  11502. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  11503. "symfony/templating": "^3.4|^4.0|^5.0",
  11504. "symfony/translation": "^4.2|^5.0",
  11505. "symfony/translation-contracts": "^1.1|^2",
  11506. "twig/twig": "^1.43|^2.13|^3.0.4"
  11507. },
  11508. "suggest": {
  11509. "symfony/browser-kit": "",
  11510. "symfony/config": "",
  11511. "symfony/console": "",
  11512. "symfony/dependency-injection": ""
  11513. },
  11514. "type": "library",
  11515. "autoload": {
  11516. "psr-4": {
  11517. "Symfony\\Component\\HttpKernel\\": ""
  11518. },
  11519. "exclude-from-classmap": [
  11520. "/Tests/"
  11521. ]
  11522. },
  11523. "notification-url": "https://packagist.org/downloads/",
  11524. "license": [
  11525. "MIT"
  11526. ],
  11527. "authors": [
  11528. {
  11529. "name": "Fabien Potencier",
  11530. "email": "fabien@symfony.com"
  11531. },
  11532. {
  11533. "name": "Symfony Community",
  11534. "homepage": "https://symfony.com/contributors"
  11535. }
  11536. ],
  11537. "description": "Provides a structured process for converting a Request into a Response",
  11538. "homepage": "https://symfony.com",
  11539. "support": {
  11540. "source": "https://github.com/symfony/http-kernel/tree/v4.4.35"
  11541. },
  11542. "funding": [
  11543. {
  11544. "url": "https://symfony.com/sponsor",
  11545. "type": "custom"
  11546. },
  11547. {
  11548. "url": "https://github.com/fabpot",
  11549. "type": "github"
  11550. },
  11551. {
  11552. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11553. "type": "tidelift"
  11554. }
  11555. ],
  11556. "time": "2021-11-24T08:40:10+00:00"
  11557. },
  11558. {
  11559. "name": "symfony/mime",
  11560. "version": "v5.4.0",
  11561. "source": {
  11562. "type": "git",
  11563. "url": "https://github.com/symfony/mime.git",
  11564. "reference": "d4365000217b67c01acff407573906ff91bcfb34"
  11565. },
  11566. "dist": {
  11567. "type": "zip",
  11568. "url": "https://api.github.com/repos/symfony/mime/zipball/d4365000217b67c01acff407573906ff91bcfb34",
  11569. "reference": "d4365000217b67c01acff407573906ff91bcfb34",
  11570. "shasum": ""
  11571. },
  11572. "require": {
  11573. "php": ">=7.2.5",
  11574. "symfony/deprecation-contracts": "^2.1|^3",
  11575. "symfony/polyfill-intl-idn": "^1.10",
  11576. "symfony/polyfill-mbstring": "^1.0",
  11577. "symfony/polyfill-php80": "^1.16"
  11578. },
  11579. "conflict": {
  11580. "egulias/email-validator": "~3.0.0",
  11581. "phpdocumentor/reflection-docblock": "<3.2.2",
  11582. "phpdocumentor/type-resolver": "<1.4.0",
  11583. "symfony/mailer": "<4.4"
  11584. },
  11585. "require-dev": {
  11586. "egulias/email-validator": "^2.1.10|^3.1",
  11587. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  11588. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  11589. "symfony/property-access": "^4.4|^5.1|^6.0",
  11590. "symfony/property-info": "^4.4|^5.1|^6.0",
  11591. "symfony/serializer": "^5.2|^6.0"
  11592. },
  11593. "type": "library",
  11594. "autoload": {
  11595. "psr-4": {
  11596. "Symfony\\Component\\Mime\\": ""
  11597. },
  11598. "exclude-from-classmap": [
  11599. "/Tests/"
  11600. ]
  11601. },
  11602. "notification-url": "https://packagist.org/downloads/",
  11603. "license": [
  11604. "MIT"
  11605. ],
  11606. "authors": [
  11607. {
  11608. "name": "Fabien Potencier",
  11609. "email": "fabien@symfony.com"
  11610. },
  11611. {
  11612. "name": "Symfony Community",
  11613. "homepage": "https://symfony.com/contributors"
  11614. }
  11615. ],
  11616. "description": "Allows manipulating MIME messages",
  11617. "homepage": "https://symfony.com",
  11618. "keywords": [
  11619. "mime",
  11620. "mime-type"
  11621. ],
  11622. "support": {
  11623. "source": "https://github.com/symfony/mime/tree/v5.4.0"
  11624. },
  11625. "funding": [
  11626. {
  11627. "url": "https://symfony.com/sponsor",
  11628. "type": "custom"
  11629. },
  11630. {
  11631. "url": "https://github.com/fabpot",
  11632. "type": "github"
  11633. },
  11634. {
  11635. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11636. "type": "tidelift"
  11637. }
  11638. ],
  11639. "time": "2021-11-23T10:19:22+00:00"
  11640. },
  11641. {
  11642. "name": "symfony/polyfill-ctype",
  11643. "version": "v1.23.0",
  11644. "source": {
  11645. "type": "git",
  11646. "url": "https://github.com/symfony/polyfill-ctype.git",
  11647. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
  11648. },
  11649. "dist": {
  11650. "type": "zip",
  11651. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  11652. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  11653. "shasum": ""
  11654. },
  11655. "require": {
  11656. "php": ">=7.1"
  11657. },
  11658. "suggest": {
  11659. "ext-ctype": "For best performance"
  11660. },
  11661. "type": "library",
  11662. "extra": {
  11663. "branch-alias": {
  11664. "dev-main": "1.23-dev"
  11665. },
  11666. "thanks": {
  11667. "name": "symfony/polyfill",
  11668. "url": "https://github.com/symfony/polyfill"
  11669. }
  11670. },
  11671. "autoload": {
  11672. "psr-4": {
  11673. "Symfony\\Polyfill\\Ctype\\": ""
  11674. },
  11675. "files": [
  11676. "bootstrap.php"
  11677. ]
  11678. },
  11679. "notification-url": "https://packagist.org/downloads/",
  11680. "license": [
  11681. "MIT"
  11682. ],
  11683. "authors": [
  11684. {
  11685. "name": "Gert de Pagter",
  11686. "email": "BackEndTea@gmail.com"
  11687. },
  11688. {
  11689. "name": "Symfony Community",
  11690. "homepage": "https://symfony.com/contributors"
  11691. }
  11692. ],
  11693. "description": "Symfony polyfill for ctype functions",
  11694. "homepage": "https://symfony.com",
  11695. "keywords": [
  11696. "compatibility",
  11697. "ctype",
  11698. "polyfill",
  11699. "portable"
  11700. ],
  11701. "support": {
  11702. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0"
  11703. },
  11704. "funding": [
  11705. {
  11706. "url": "https://symfony.com/sponsor",
  11707. "type": "custom"
  11708. },
  11709. {
  11710. "url": "https://github.com/fabpot",
  11711. "type": "github"
  11712. },
  11713. {
  11714. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11715. "type": "tidelift"
  11716. }
  11717. ],
  11718. "time": "2021-02-19T12:13:01+00:00"
  11719. },
  11720. {
  11721. "name": "symfony/polyfill-iconv",
  11722. "version": "v1.23.0",
  11723. "source": {
  11724. "type": "git",
  11725. "url": "https://github.com/symfony/polyfill-iconv.git",
  11726. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933"
  11727. },
  11728. "dist": {
  11729. "type": "zip",
  11730. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  11731. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  11732. "shasum": ""
  11733. },
  11734. "require": {
  11735. "php": ">=7.1"
  11736. },
  11737. "suggest": {
  11738. "ext-iconv": "For best performance"
  11739. },
  11740. "type": "library",
  11741. "extra": {
  11742. "branch-alias": {
  11743. "dev-main": "1.23-dev"
  11744. },
  11745. "thanks": {
  11746. "name": "symfony/polyfill",
  11747. "url": "https://github.com/symfony/polyfill"
  11748. }
  11749. },
  11750. "autoload": {
  11751. "psr-4": {
  11752. "Symfony\\Polyfill\\Iconv\\": ""
  11753. },
  11754. "files": [
  11755. "bootstrap.php"
  11756. ]
  11757. },
  11758. "notification-url": "https://packagist.org/downloads/",
  11759. "license": [
  11760. "MIT"
  11761. ],
  11762. "authors": [
  11763. {
  11764. "name": "Nicolas Grekas",
  11765. "email": "p@tchwork.com"
  11766. },
  11767. {
  11768. "name": "Symfony Community",
  11769. "homepage": "https://symfony.com/contributors"
  11770. }
  11771. ],
  11772. "description": "Symfony polyfill for the Iconv extension",
  11773. "homepage": "https://symfony.com",
  11774. "keywords": [
  11775. "compatibility",
  11776. "iconv",
  11777. "polyfill",
  11778. "portable",
  11779. "shim"
  11780. ],
  11781. "support": {
  11782. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.23.0"
  11783. },
  11784. "funding": [
  11785. {
  11786. "url": "https://symfony.com/sponsor",
  11787. "type": "custom"
  11788. },
  11789. {
  11790. "url": "https://github.com/fabpot",
  11791. "type": "github"
  11792. },
  11793. {
  11794. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11795. "type": "tidelift"
  11796. }
  11797. ],
  11798. "time": "2021-05-27T09:27:20+00:00"
  11799. },
  11800. {
  11801. "name": "symfony/polyfill-intl-idn",
  11802. "version": "v1.23.0",
  11803. "source": {
  11804. "type": "git",
  11805. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  11806. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65"
  11807. },
  11808. "dist": {
  11809. "type": "zip",
  11810. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65",
  11811. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65",
  11812. "shasum": ""
  11813. },
  11814. "require": {
  11815. "php": ">=7.1",
  11816. "symfony/polyfill-intl-normalizer": "^1.10",
  11817. "symfony/polyfill-php72": "^1.10"
  11818. },
  11819. "suggest": {
  11820. "ext-intl": "For best performance"
  11821. },
  11822. "type": "library",
  11823. "extra": {
  11824. "branch-alias": {
  11825. "dev-main": "1.23-dev"
  11826. },
  11827. "thanks": {
  11828. "name": "symfony/polyfill",
  11829. "url": "https://github.com/symfony/polyfill"
  11830. }
  11831. },
  11832. "autoload": {
  11833. "psr-4": {
  11834. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  11835. },
  11836. "files": [
  11837. "bootstrap.php"
  11838. ]
  11839. },
  11840. "notification-url": "https://packagist.org/downloads/",
  11841. "license": [
  11842. "MIT"
  11843. ],
  11844. "authors": [
  11845. {
  11846. "name": "Laurent Bassin",
  11847. "email": "laurent@bassin.info"
  11848. },
  11849. {
  11850. "name": "Trevor Rowbotham",
  11851. "email": "trevor.rowbotham@pm.me"
  11852. },
  11853. {
  11854. "name": "Symfony Community",
  11855. "homepage": "https://symfony.com/contributors"
  11856. }
  11857. ],
  11858. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  11859. "homepage": "https://symfony.com",
  11860. "keywords": [
  11861. "compatibility",
  11862. "idn",
  11863. "intl",
  11864. "polyfill",
  11865. "portable",
  11866. "shim"
  11867. ],
  11868. "support": {
  11869. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.23.0"
  11870. },
  11871. "funding": [
  11872. {
  11873. "url": "https://symfony.com/sponsor",
  11874. "type": "custom"
  11875. },
  11876. {
  11877. "url": "https://github.com/fabpot",
  11878. "type": "github"
  11879. },
  11880. {
  11881. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11882. "type": "tidelift"
  11883. }
  11884. ],
  11885. "time": "2021-05-27T09:27:20+00:00"
  11886. },
  11887. {
  11888. "name": "symfony/polyfill-intl-normalizer",
  11889. "version": "v1.23.0",
  11890. "source": {
  11891. "type": "git",
  11892. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  11893. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  11894. },
  11895. "dist": {
  11896. "type": "zip",
  11897. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  11898. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  11899. "shasum": ""
  11900. },
  11901. "require": {
  11902. "php": ">=7.1"
  11903. },
  11904. "suggest": {
  11905. "ext-intl": "For best performance"
  11906. },
  11907. "type": "library",
  11908. "extra": {
  11909. "branch-alias": {
  11910. "dev-main": "1.23-dev"
  11911. },
  11912. "thanks": {
  11913. "name": "symfony/polyfill",
  11914. "url": "https://github.com/symfony/polyfill"
  11915. }
  11916. },
  11917. "autoload": {
  11918. "psr-4": {
  11919. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  11920. },
  11921. "files": [
  11922. "bootstrap.php"
  11923. ],
  11924. "classmap": [
  11925. "Resources/stubs"
  11926. ]
  11927. },
  11928. "notification-url": "https://packagist.org/downloads/",
  11929. "license": [
  11930. "MIT"
  11931. ],
  11932. "authors": [
  11933. {
  11934. "name": "Nicolas Grekas",
  11935. "email": "p@tchwork.com"
  11936. },
  11937. {
  11938. "name": "Symfony Community",
  11939. "homepage": "https://symfony.com/contributors"
  11940. }
  11941. ],
  11942. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  11943. "homepage": "https://symfony.com",
  11944. "keywords": [
  11945. "compatibility",
  11946. "intl",
  11947. "normalizer",
  11948. "polyfill",
  11949. "portable",
  11950. "shim"
  11951. ],
  11952. "support": {
  11953. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.23.0"
  11954. },
  11955. "funding": [
  11956. {
  11957. "url": "https://symfony.com/sponsor",
  11958. "type": "custom"
  11959. },
  11960. {
  11961. "url": "https://github.com/fabpot",
  11962. "type": "github"
  11963. },
  11964. {
  11965. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11966. "type": "tidelift"
  11967. }
  11968. ],
  11969. "time": "2021-02-19T12:13:01+00:00"
  11970. },
  11971. {
  11972. "name": "symfony/polyfill-mbstring",
  11973. "version": "v1.23.1",
  11974. "source": {
  11975. "type": "git",
  11976. "url": "https://github.com/symfony/polyfill-mbstring.git",
  11977. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6"
  11978. },
  11979. "dist": {
  11980. "type": "zip",
  11981. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6",
  11982. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6",
  11983. "shasum": ""
  11984. },
  11985. "require": {
  11986. "php": ">=7.1"
  11987. },
  11988. "suggest": {
  11989. "ext-mbstring": "For best performance"
  11990. },
  11991. "type": "library",
  11992. "extra": {
  11993. "branch-alias": {
  11994. "dev-main": "1.23-dev"
  11995. },
  11996. "thanks": {
  11997. "name": "symfony/polyfill",
  11998. "url": "https://github.com/symfony/polyfill"
  11999. }
  12000. },
  12001. "autoload": {
  12002. "psr-4": {
  12003. "Symfony\\Polyfill\\Mbstring\\": ""
  12004. },
  12005. "files": [
  12006. "bootstrap.php"
  12007. ]
  12008. },
  12009. "notification-url": "https://packagist.org/downloads/",
  12010. "license": [
  12011. "MIT"
  12012. ],
  12013. "authors": [
  12014. {
  12015. "name": "Nicolas Grekas",
  12016. "email": "p@tchwork.com"
  12017. },
  12018. {
  12019. "name": "Symfony Community",
  12020. "homepage": "https://symfony.com/contributors"
  12021. }
  12022. ],
  12023. "description": "Symfony polyfill for the Mbstring extension",
  12024. "homepage": "https://symfony.com",
  12025. "keywords": [
  12026. "compatibility",
  12027. "mbstring",
  12028. "polyfill",
  12029. "portable",
  12030. "shim"
  12031. ],
  12032. "support": {
  12033. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.1"
  12034. },
  12035. "funding": [
  12036. {
  12037. "url": "https://symfony.com/sponsor",
  12038. "type": "custom"
  12039. },
  12040. {
  12041. "url": "https://github.com/fabpot",
  12042. "type": "github"
  12043. },
  12044. {
  12045. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12046. "type": "tidelift"
  12047. }
  12048. ],
  12049. "time": "2021-05-27T12:26:48+00:00"
  12050. },
  12051. {
  12052. "name": "symfony/polyfill-php72",
  12053. "version": "v1.24.0",
  12054. "source": {
  12055. "type": "git",
  12056. "url": "https://github.com/symfony/polyfill-php72.git",
  12057. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  12058. },
  12059. "dist": {
  12060. "type": "zip",
  12061. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  12062. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  12063. "shasum": ""
  12064. },
  12065. "require": {
  12066. "php": ">=7.1"
  12067. },
  12068. "type": "library",
  12069. "extra": {
  12070. "branch-alias": {
  12071. "dev-main": "1.23-dev"
  12072. },
  12073. "thanks": {
  12074. "name": "symfony/polyfill",
  12075. "url": "https://github.com/symfony/polyfill"
  12076. }
  12077. },
  12078. "autoload": {
  12079. "psr-4": {
  12080. "Symfony\\Polyfill\\Php72\\": ""
  12081. },
  12082. "files": [
  12083. "bootstrap.php"
  12084. ]
  12085. },
  12086. "notification-url": "https://packagist.org/downloads/",
  12087. "license": [
  12088. "MIT"
  12089. ],
  12090. "authors": [
  12091. {
  12092. "name": "Nicolas Grekas",
  12093. "email": "p@tchwork.com"
  12094. },
  12095. {
  12096. "name": "Symfony Community",
  12097. "homepage": "https://symfony.com/contributors"
  12098. }
  12099. ],
  12100. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  12101. "homepage": "https://symfony.com",
  12102. "keywords": [
  12103. "compatibility",
  12104. "polyfill",
  12105. "portable",
  12106. "shim"
  12107. ],
  12108. "support": {
  12109. "source": "https://github.com/symfony/polyfill-php72/tree/v1.24.0"
  12110. },
  12111. "funding": [
  12112. {
  12113. "url": "https://symfony.com/sponsor",
  12114. "type": "custom"
  12115. },
  12116. {
  12117. "url": "https://github.com/fabpot",
  12118. "type": "github"
  12119. },
  12120. {
  12121. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12122. "type": "tidelift"
  12123. }
  12124. ],
  12125. "time": "2021-05-27T09:17:38+00:00"
  12126. },
  12127. {
  12128. "name": "symfony/polyfill-php73",
  12129. "version": "v1.24.0",
  12130. "source": {
  12131. "type": "git",
  12132. "url": "https://github.com/symfony/polyfill-php73.git",
  12133. "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5"
  12134. },
  12135. "dist": {
  12136. "type": "zip",
  12137. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/cc5db0e22b3cb4111010e48785a97f670b350ca5",
  12138. "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5",
  12139. "shasum": ""
  12140. },
  12141. "require": {
  12142. "php": ">=7.1"
  12143. },
  12144. "type": "library",
  12145. "extra": {
  12146. "branch-alias": {
  12147. "dev-main": "1.23-dev"
  12148. },
  12149. "thanks": {
  12150. "name": "symfony/polyfill",
  12151. "url": "https://github.com/symfony/polyfill"
  12152. }
  12153. },
  12154. "autoload": {
  12155. "psr-4": {
  12156. "Symfony\\Polyfill\\Php73\\": ""
  12157. },
  12158. "files": [
  12159. "bootstrap.php"
  12160. ],
  12161. "classmap": [
  12162. "Resources/stubs"
  12163. ]
  12164. },
  12165. "notification-url": "https://packagist.org/downloads/",
  12166. "license": [
  12167. "MIT"
  12168. ],
  12169. "authors": [
  12170. {
  12171. "name": "Nicolas Grekas",
  12172. "email": "p@tchwork.com"
  12173. },
  12174. {
  12175. "name": "Symfony Community",
  12176. "homepage": "https://symfony.com/contributors"
  12177. }
  12178. ],
  12179. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  12180. "homepage": "https://symfony.com",
  12181. "keywords": [
  12182. "compatibility",
  12183. "polyfill",
  12184. "portable",
  12185. "shim"
  12186. ],
  12187. "support": {
  12188. "source": "https://github.com/symfony/polyfill-php73/tree/v1.24.0"
  12189. },
  12190. "funding": [
  12191. {
  12192. "url": "https://symfony.com/sponsor",
  12193. "type": "custom"
  12194. },
  12195. {
  12196. "url": "https://github.com/fabpot",
  12197. "type": "github"
  12198. },
  12199. {
  12200. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12201. "type": "tidelift"
  12202. }
  12203. ],
  12204. "time": "2021-06-05T21:20:04+00:00"
  12205. },
  12206. {
  12207. "name": "symfony/polyfill-php80",
  12208. "version": "v1.23.1",
  12209. "source": {
  12210. "type": "git",
  12211. "url": "https://github.com/symfony/polyfill-php80.git",
  12212. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be"
  12213. },
  12214. "dist": {
  12215. "type": "zip",
  12216. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be",
  12217. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be",
  12218. "shasum": ""
  12219. },
  12220. "require": {
  12221. "php": ">=7.1"
  12222. },
  12223. "type": "library",
  12224. "extra": {
  12225. "branch-alias": {
  12226. "dev-main": "1.23-dev"
  12227. },
  12228. "thanks": {
  12229. "name": "symfony/polyfill",
  12230. "url": "https://github.com/symfony/polyfill"
  12231. }
  12232. },
  12233. "autoload": {
  12234. "psr-4": {
  12235. "Symfony\\Polyfill\\Php80\\": ""
  12236. },
  12237. "files": [
  12238. "bootstrap.php"
  12239. ],
  12240. "classmap": [
  12241. "Resources/stubs"
  12242. ]
  12243. },
  12244. "notification-url": "https://packagist.org/downloads/",
  12245. "license": [
  12246. "MIT"
  12247. ],
  12248. "authors": [
  12249. {
  12250. "name": "Ion Bazan",
  12251. "email": "ion.bazan@gmail.com"
  12252. },
  12253. {
  12254. "name": "Nicolas Grekas",
  12255. "email": "p@tchwork.com"
  12256. },
  12257. {
  12258. "name": "Symfony Community",
  12259. "homepage": "https://symfony.com/contributors"
  12260. }
  12261. ],
  12262. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  12263. "homepage": "https://symfony.com",
  12264. "keywords": [
  12265. "compatibility",
  12266. "polyfill",
  12267. "portable",
  12268. "shim"
  12269. ],
  12270. "support": {
  12271. "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.1"
  12272. },
  12273. "funding": [
  12274. {
  12275. "url": "https://symfony.com/sponsor",
  12276. "type": "custom"
  12277. },
  12278. {
  12279. "url": "https://github.com/fabpot",
  12280. "type": "github"
  12281. },
  12282. {
  12283. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12284. "type": "tidelift"
  12285. }
  12286. ],
  12287. "time": "2021-07-28T13:41:28+00:00"
  12288. },
  12289. {
  12290. "name": "symfony/polyfill-php81",
  12291. "version": "v1.24.0",
  12292. "source": {
  12293. "type": "git",
  12294. "url": "https://github.com/symfony/polyfill-php81.git",
  12295. "reference": "5de4ba2d41b15f9bd0e19b2ab9674135813ec98f"
  12296. },
  12297. "dist": {
  12298. "type": "zip",
  12299. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/5de4ba2d41b15f9bd0e19b2ab9674135813ec98f",
  12300. "reference": "5de4ba2d41b15f9bd0e19b2ab9674135813ec98f",
  12301. "shasum": ""
  12302. },
  12303. "require": {
  12304. "php": ">=7.1"
  12305. },
  12306. "type": "library",
  12307. "extra": {
  12308. "branch-alias": {
  12309. "dev-main": "1.23-dev"
  12310. },
  12311. "thanks": {
  12312. "name": "symfony/polyfill",
  12313. "url": "https://github.com/symfony/polyfill"
  12314. }
  12315. },
  12316. "autoload": {
  12317. "psr-4": {
  12318. "Symfony\\Polyfill\\Php81\\": ""
  12319. },
  12320. "files": [
  12321. "bootstrap.php"
  12322. ],
  12323. "classmap": [
  12324. "Resources/stubs"
  12325. ]
  12326. },
  12327. "notification-url": "https://packagist.org/downloads/",
  12328. "license": [
  12329. "MIT"
  12330. ],
  12331. "authors": [
  12332. {
  12333. "name": "Nicolas Grekas",
  12334. "email": "p@tchwork.com"
  12335. },
  12336. {
  12337. "name": "Symfony Community",
  12338. "homepage": "https://symfony.com/contributors"
  12339. }
  12340. ],
  12341. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  12342. "homepage": "https://symfony.com",
  12343. "keywords": [
  12344. "compatibility",
  12345. "polyfill",
  12346. "portable",
  12347. "shim"
  12348. ],
  12349. "support": {
  12350. "source": "https://github.com/symfony/polyfill-php81/tree/v1.24.0"
  12351. },
  12352. "funding": [
  12353. {
  12354. "url": "https://symfony.com/sponsor",
  12355. "type": "custom"
  12356. },
  12357. {
  12358. "url": "https://github.com/fabpot",
  12359. "type": "github"
  12360. },
  12361. {
  12362. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12363. "type": "tidelift"
  12364. }
  12365. ],
  12366. "time": "2021-09-13T13:58:11+00:00"
  12367. },
  12368. {
  12369. "name": "symfony/process",
  12370. "version": "v4.4.35",
  12371. "source": {
  12372. "type": "git",
  12373. "url": "https://github.com/symfony/process.git",
  12374. "reference": "c2098705326addae6e6742151dfade47ac71da1b"
  12375. },
  12376. "dist": {
  12377. "type": "zip",
  12378. "url": "https://api.github.com/repos/symfony/process/zipball/c2098705326addae6e6742151dfade47ac71da1b",
  12379. "reference": "c2098705326addae6e6742151dfade47ac71da1b",
  12380. "shasum": ""
  12381. },
  12382. "require": {
  12383. "php": ">=7.1.3",
  12384. "symfony/polyfill-php80": "^1.16"
  12385. },
  12386. "type": "library",
  12387. "autoload": {
  12388. "psr-4": {
  12389. "Symfony\\Component\\Process\\": ""
  12390. },
  12391. "exclude-from-classmap": [
  12392. "/Tests/"
  12393. ]
  12394. },
  12395. "notification-url": "https://packagist.org/downloads/",
  12396. "license": [
  12397. "MIT"
  12398. ],
  12399. "authors": [
  12400. {
  12401. "name": "Fabien Potencier",
  12402. "email": "fabien@symfony.com"
  12403. },
  12404. {
  12405. "name": "Symfony Community",
  12406. "homepage": "https://symfony.com/contributors"
  12407. }
  12408. ],
  12409. "description": "Executes commands in sub-processes",
  12410. "homepage": "https://symfony.com",
  12411. "support": {
  12412. "source": "https://github.com/symfony/process/tree/v4.4.35"
  12413. },
  12414. "funding": [
  12415. {
  12416. "url": "https://symfony.com/sponsor",
  12417. "type": "custom"
  12418. },
  12419. {
  12420. "url": "https://github.com/fabpot",
  12421. "type": "github"
  12422. },
  12423. {
  12424. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12425. "type": "tidelift"
  12426. }
  12427. ],
  12428. "time": "2021-11-22T22:36:24+00:00"
  12429. },
  12430. {
  12431. "name": "symfony/psr-http-message-bridge",
  12432. "version": "v2.1.2",
  12433. "source": {
  12434. "type": "git",
  12435. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  12436. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34"
  12437. },
  12438. "dist": {
  12439. "type": "zip",
  12440. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  12441. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  12442. "shasum": ""
  12443. },
  12444. "require": {
  12445. "php": ">=7.1",
  12446. "psr/http-message": "^1.0",
  12447. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  12448. },
  12449. "require-dev": {
  12450. "nyholm/psr7": "^1.1",
  12451. "psr/log": "^1.1 || ^2 || ^3",
  12452. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  12453. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  12454. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  12455. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  12456. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  12457. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  12458. },
  12459. "suggest": {
  12460. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  12461. },
  12462. "type": "symfony-bridge",
  12463. "extra": {
  12464. "branch-alias": {
  12465. "dev-main": "2.1-dev"
  12466. }
  12467. },
  12468. "autoload": {
  12469. "psr-4": {
  12470. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  12471. },
  12472. "exclude-from-classmap": [
  12473. "/Tests/"
  12474. ]
  12475. },
  12476. "notification-url": "https://packagist.org/downloads/",
  12477. "license": [
  12478. "MIT"
  12479. ],
  12480. "authors": [
  12481. {
  12482. "name": "Fabien Potencier",
  12483. "email": "fabien@symfony.com"
  12484. },
  12485. {
  12486. "name": "Symfony Community",
  12487. "homepage": "http://symfony.com/contributors"
  12488. }
  12489. ],
  12490. "description": "PSR HTTP message bridge",
  12491. "homepage": "http://symfony.com",
  12492. "keywords": [
  12493. "http",
  12494. "http-message",
  12495. "psr-17",
  12496. "psr-7"
  12497. ],
  12498. "support": {
  12499. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  12500. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.2"
  12501. },
  12502. "funding": [
  12503. {
  12504. "url": "https://symfony.com/sponsor",
  12505. "type": "custom"
  12506. },
  12507. {
  12508. "url": "https://github.com/fabpot",
  12509. "type": "github"
  12510. },
  12511. {
  12512. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12513. "type": "tidelift"
  12514. }
  12515. ],
  12516. "time": "2021-11-05T13:13:39+00:00"
  12517. },
  12518. {
  12519. "name": "symfony/routing",
  12520. "version": "v4.4.34",
  12521. "source": {
  12522. "type": "git",
  12523. "url": "https://github.com/symfony/routing.git",
  12524. "reference": "fc9dda0c8496f8ef0a89805c2eabfc43b8cef366"
  12525. },
  12526. "dist": {
  12527. "type": "zip",
  12528. "url": "https://api.github.com/repos/symfony/routing/zipball/fc9dda0c8496f8ef0a89805c2eabfc43b8cef366",
  12529. "reference": "fc9dda0c8496f8ef0a89805c2eabfc43b8cef366",
  12530. "shasum": ""
  12531. },
  12532. "require": {
  12533. "php": ">=7.1.3",
  12534. "symfony/polyfill-php80": "^1.16"
  12535. },
  12536. "conflict": {
  12537. "symfony/config": "<4.2",
  12538. "symfony/dependency-injection": "<3.4",
  12539. "symfony/yaml": "<3.4"
  12540. },
  12541. "require-dev": {
  12542. "doctrine/annotations": "^1.10.4",
  12543. "psr/log": "^1|^2|^3",
  12544. "symfony/config": "^4.2|^5.0",
  12545. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  12546. "symfony/expression-language": "^3.4|^4.0|^5.0",
  12547. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  12548. "symfony/yaml": "^3.4|^4.0|^5.0"
  12549. },
  12550. "suggest": {
  12551. "doctrine/annotations": "For using the annotation loader",
  12552. "symfony/config": "For using the all-in-one router or any loader",
  12553. "symfony/expression-language": "For using expression matching",
  12554. "symfony/http-foundation": "For using a Symfony Request object",
  12555. "symfony/yaml": "For using the YAML loader"
  12556. },
  12557. "type": "library",
  12558. "autoload": {
  12559. "psr-4": {
  12560. "Symfony\\Component\\Routing\\": ""
  12561. },
  12562. "exclude-from-classmap": [
  12563. "/Tests/"
  12564. ]
  12565. },
  12566. "notification-url": "https://packagist.org/downloads/",
  12567. "license": [
  12568. "MIT"
  12569. ],
  12570. "authors": [
  12571. {
  12572. "name": "Fabien Potencier",
  12573. "email": "fabien@symfony.com"
  12574. },
  12575. {
  12576. "name": "Symfony Community",
  12577. "homepage": "https://symfony.com/contributors"
  12578. }
  12579. ],
  12580. "description": "Maps an HTTP request to a set of configuration variables",
  12581. "homepage": "https://symfony.com",
  12582. "keywords": [
  12583. "router",
  12584. "routing",
  12585. "uri",
  12586. "url"
  12587. ],
  12588. "support": {
  12589. "source": "https://github.com/symfony/routing/tree/v4.4.34"
  12590. },
  12591. "funding": [
  12592. {
  12593. "url": "https://symfony.com/sponsor",
  12594. "type": "custom"
  12595. },
  12596. {
  12597. "url": "https://github.com/fabpot",
  12598. "type": "github"
  12599. },
  12600. {
  12601. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12602. "type": "tidelift"
  12603. }
  12604. ],
  12605. "time": "2021-11-04T12:23:33+00:00"
  12606. },
  12607. {
  12608. "name": "symfony/serializer",
  12609. "version": "v4.4.35",
  12610. "source": {
  12611. "type": "git",
  12612. "url": "https://github.com/symfony/serializer.git",
  12613. "reference": "1b2ae02cb1b923987947e013688c51954a80b751"
  12614. },
  12615. "dist": {
  12616. "type": "zip",
  12617. "url": "https://api.github.com/repos/symfony/serializer/zipball/1b2ae02cb1b923987947e013688c51954a80b751",
  12618. "reference": "1b2ae02cb1b923987947e013688c51954a80b751",
  12619. "shasum": ""
  12620. },
  12621. "require": {
  12622. "php": ">=7.1.3",
  12623. "symfony/polyfill-ctype": "~1.8",
  12624. "symfony/polyfill-php80": "^1.16"
  12625. },
  12626. "conflict": {
  12627. "phpdocumentor/reflection-docblock": "<3.0|>=3.2.0,<3.2.2",
  12628. "phpdocumentor/type-resolver": "<0.3.0|1.3.*",
  12629. "symfony/dependency-injection": "<3.4",
  12630. "symfony/property-access": "<3.4",
  12631. "symfony/property-info": "<3.4",
  12632. "symfony/yaml": "<3.4"
  12633. },
  12634. "require-dev": {
  12635. "doctrine/annotations": "^1.10.4",
  12636. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  12637. "symfony/cache": "^3.4|^4.0|^5.0",
  12638. "symfony/config": "^3.4|^4.0|^5.0",
  12639. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  12640. "symfony/error-handler": "^4.4|^5.0",
  12641. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  12642. "symfony/mime": "^4.4|^5.0",
  12643. "symfony/property-access": "^3.4.41|^4.4.9|^5.0.9",
  12644. "symfony/property-info": "^3.4.13|~4.0|^5.0",
  12645. "symfony/validator": "^3.4|^4.0|^5.0",
  12646. "symfony/yaml": "^3.4|^4.0|^5.0"
  12647. },
  12648. "suggest": {
  12649. "doctrine/annotations": "For using the annotation mapping.",
  12650. "psr/cache-implementation": "For using the metadata cache.",
  12651. "symfony/config": "For using the XML mapping loader.",
  12652. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  12653. "symfony/property-access": "For using the ObjectNormalizer.",
  12654. "symfony/property-info": "To deserialize relations.",
  12655. "symfony/yaml": "For using the default YAML mapping loader."
  12656. },
  12657. "type": "library",
  12658. "autoload": {
  12659. "psr-4": {
  12660. "Symfony\\Component\\Serializer\\": ""
  12661. },
  12662. "exclude-from-classmap": [
  12663. "/Tests/"
  12664. ]
  12665. },
  12666. "notification-url": "https://packagist.org/downloads/",
  12667. "license": [
  12668. "MIT"
  12669. ],
  12670. "authors": [
  12671. {
  12672. "name": "Fabien Potencier",
  12673. "email": "fabien@symfony.com"
  12674. },
  12675. {
  12676. "name": "Symfony Community",
  12677. "homepage": "https://symfony.com/contributors"
  12678. }
  12679. ],
  12680. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  12681. "homepage": "https://symfony.com",
  12682. "support": {
  12683. "source": "https://github.com/symfony/serializer/tree/v4.4.35"
  12684. },
  12685. "funding": [
  12686. {
  12687. "url": "https://symfony.com/sponsor",
  12688. "type": "custom"
  12689. },
  12690. {
  12691. "url": "https://github.com/fabpot",
  12692. "type": "github"
  12693. },
  12694. {
  12695. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12696. "type": "tidelift"
  12697. }
  12698. ],
  12699. "time": "2021-11-24T08:12:42+00:00"
  12700. },
  12701. {
  12702. "name": "symfony/service-contracts",
  12703. "version": "v2.5.0",
  12704. "source": {
  12705. "type": "git",
  12706. "url": "https://github.com/symfony/service-contracts.git",
  12707. "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc"
  12708. },
  12709. "dist": {
  12710. "type": "zip",
  12711. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc",
  12712. "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc",
  12713. "shasum": ""
  12714. },
  12715. "require": {
  12716. "php": ">=7.2.5",
  12717. "psr/container": "^1.1",
  12718. "symfony/deprecation-contracts": "^2.1"
  12719. },
  12720. "conflict": {
  12721. "ext-psr": "<1.1|>=2"
  12722. },
  12723. "suggest": {
  12724. "symfony/service-implementation": ""
  12725. },
  12726. "type": "library",
  12727. "extra": {
  12728. "branch-alias": {
  12729. "dev-main": "2.5-dev"
  12730. },
  12731. "thanks": {
  12732. "name": "symfony/contracts",
  12733. "url": "https://github.com/symfony/contracts"
  12734. }
  12735. },
  12736. "autoload": {
  12737. "psr-4": {
  12738. "Symfony\\Contracts\\Service\\": ""
  12739. }
  12740. },
  12741. "notification-url": "https://packagist.org/downloads/",
  12742. "license": [
  12743. "MIT"
  12744. ],
  12745. "authors": [
  12746. {
  12747. "name": "Nicolas Grekas",
  12748. "email": "p@tchwork.com"
  12749. },
  12750. {
  12751. "name": "Symfony Community",
  12752. "homepage": "https://symfony.com/contributors"
  12753. }
  12754. ],
  12755. "description": "Generic abstractions related to writing services",
  12756. "homepage": "https://symfony.com",
  12757. "keywords": [
  12758. "abstractions",
  12759. "contracts",
  12760. "decoupling",
  12761. "interfaces",
  12762. "interoperability",
  12763. "standards"
  12764. ],
  12765. "support": {
  12766. "source": "https://github.com/symfony/service-contracts/tree/v2.5.0"
  12767. },
  12768. "funding": [
  12769. {
  12770. "url": "https://symfony.com/sponsor",
  12771. "type": "custom"
  12772. },
  12773. {
  12774. "url": "https://github.com/fabpot",
  12775. "type": "github"
  12776. },
  12777. {
  12778. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12779. "type": "tidelift"
  12780. }
  12781. ],
  12782. "time": "2021-11-04T16:48:04+00:00"
  12783. },
  12784. {
  12785. "name": "symfony/translation",
  12786. "version": "v4.4.34",
  12787. "source": {
  12788. "type": "git",
  12789. "url": "https://github.com/symfony/translation.git",
  12790. "reference": "26d330720627b234803595ecfc0191eeabc65190"
  12791. },
  12792. "dist": {
  12793. "type": "zip",
  12794. "url": "https://api.github.com/repos/symfony/translation/zipball/26d330720627b234803595ecfc0191eeabc65190",
  12795. "reference": "26d330720627b234803595ecfc0191eeabc65190",
  12796. "shasum": ""
  12797. },
  12798. "require": {
  12799. "php": ">=7.1.3",
  12800. "symfony/polyfill-mbstring": "~1.0",
  12801. "symfony/polyfill-php80": "^1.16",
  12802. "symfony/translation-contracts": "^1.1.6|^2"
  12803. },
  12804. "conflict": {
  12805. "symfony/config": "<3.4",
  12806. "symfony/dependency-injection": "<3.4",
  12807. "symfony/http-kernel": "<4.4",
  12808. "symfony/yaml": "<3.4"
  12809. },
  12810. "provide": {
  12811. "symfony/translation-implementation": "1.0|2.0"
  12812. },
  12813. "require-dev": {
  12814. "psr/log": "^1|^2|^3",
  12815. "symfony/config": "^3.4|^4.0|^5.0",
  12816. "symfony/console": "^3.4|^4.0|^5.0",
  12817. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  12818. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  12819. "symfony/http-kernel": "^4.4",
  12820. "symfony/intl": "^3.4|^4.0|^5.0",
  12821. "symfony/service-contracts": "^1.1.2|^2",
  12822. "symfony/yaml": "^3.4|^4.0|^5.0"
  12823. },
  12824. "suggest": {
  12825. "psr/log-implementation": "To use logging capability in translator",
  12826. "symfony/config": "",
  12827. "symfony/yaml": ""
  12828. },
  12829. "type": "library",
  12830. "autoload": {
  12831. "psr-4": {
  12832. "Symfony\\Component\\Translation\\": ""
  12833. },
  12834. "exclude-from-classmap": [
  12835. "/Tests/"
  12836. ]
  12837. },
  12838. "notification-url": "https://packagist.org/downloads/",
  12839. "license": [
  12840. "MIT"
  12841. ],
  12842. "authors": [
  12843. {
  12844. "name": "Fabien Potencier",
  12845. "email": "fabien@symfony.com"
  12846. },
  12847. {
  12848. "name": "Symfony Community",
  12849. "homepage": "https://symfony.com/contributors"
  12850. }
  12851. ],
  12852. "description": "Provides tools to internationalize your application",
  12853. "homepage": "https://symfony.com",
  12854. "support": {
  12855. "source": "https://github.com/symfony/translation/tree/v4.4.34"
  12856. },
  12857. "funding": [
  12858. {
  12859. "url": "https://symfony.com/sponsor",
  12860. "type": "custom"
  12861. },
  12862. {
  12863. "url": "https://github.com/fabpot",
  12864. "type": "github"
  12865. },
  12866. {
  12867. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12868. "type": "tidelift"
  12869. }
  12870. ],
  12871. "time": "2021-11-04T12:23:33+00:00"
  12872. },
  12873. {
  12874. "name": "symfony/translation-contracts",
  12875. "version": "v2.5.0",
  12876. "source": {
  12877. "type": "git",
  12878. "url": "https://github.com/symfony/translation-contracts.git",
  12879. "reference": "d28150f0f44ce854e942b671fc2620a98aae1b1e"
  12880. },
  12881. "dist": {
  12882. "type": "zip",
  12883. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/d28150f0f44ce854e942b671fc2620a98aae1b1e",
  12884. "reference": "d28150f0f44ce854e942b671fc2620a98aae1b1e",
  12885. "shasum": ""
  12886. },
  12887. "require": {
  12888. "php": ">=7.2.5"
  12889. },
  12890. "suggest": {
  12891. "symfony/translation-implementation": ""
  12892. },
  12893. "type": "library",
  12894. "extra": {
  12895. "branch-alias": {
  12896. "dev-main": "2.5-dev"
  12897. },
  12898. "thanks": {
  12899. "name": "symfony/contracts",
  12900. "url": "https://github.com/symfony/contracts"
  12901. }
  12902. },
  12903. "autoload": {
  12904. "psr-4": {
  12905. "Symfony\\Contracts\\Translation\\": ""
  12906. }
  12907. },
  12908. "notification-url": "https://packagist.org/downloads/",
  12909. "license": [
  12910. "MIT"
  12911. ],
  12912. "authors": [
  12913. {
  12914. "name": "Nicolas Grekas",
  12915. "email": "p@tchwork.com"
  12916. },
  12917. {
  12918. "name": "Symfony Community",
  12919. "homepage": "https://symfony.com/contributors"
  12920. }
  12921. ],
  12922. "description": "Generic abstractions related to translation",
  12923. "homepage": "https://symfony.com",
  12924. "keywords": [
  12925. "abstractions",
  12926. "contracts",
  12927. "decoupling",
  12928. "interfaces",
  12929. "interoperability",
  12930. "standards"
  12931. ],
  12932. "support": {
  12933. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.0"
  12934. },
  12935. "funding": [
  12936. {
  12937. "url": "https://symfony.com/sponsor",
  12938. "type": "custom"
  12939. },
  12940. {
  12941. "url": "https://github.com/fabpot",
  12942. "type": "github"
  12943. },
  12944. {
  12945. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12946. "type": "tidelift"
  12947. }
  12948. ],
  12949. "time": "2021-08-17T14:20:01+00:00"
  12950. },
  12951. {
  12952. "name": "symfony/validator",
  12953. "version": "v4.4.35",
  12954. "source": {
  12955. "type": "git",
  12956. "url": "https://github.com/symfony/validator.git",
  12957. "reference": "629f420d8350634fd8ed686d4472c1f10044b265"
  12958. },
  12959. "dist": {
  12960. "type": "zip",
  12961. "url": "https://api.github.com/repos/symfony/validator/zipball/629f420d8350634fd8ed686d4472c1f10044b265",
  12962. "reference": "629f420d8350634fd8ed686d4472c1f10044b265",
  12963. "shasum": ""
  12964. },
  12965. "require": {
  12966. "php": ">=7.1.3",
  12967. "symfony/polyfill-ctype": "~1.8",
  12968. "symfony/polyfill-mbstring": "~1.0",
  12969. "symfony/polyfill-php80": "^1.16",
  12970. "symfony/translation-contracts": "^1.1|^2"
  12971. },
  12972. "conflict": {
  12973. "doctrine/lexer": "<1.0.2",
  12974. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  12975. "symfony/dependency-injection": "<3.4",
  12976. "symfony/http-kernel": "<4.4",
  12977. "symfony/intl": "<4.3",
  12978. "symfony/translation": ">=5.0",
  12979. "symfony/yaml": "<3.4"
  12980. },
  12981. "require-dev": {
  12982. "doctrine/annotations": "^1.10.4",
  12983. "doctrine/cache": "^1.0|^2.0",
  12984. "egulias/email-validator": "^2.1.10|^3",
  12985. "symfony/cache": "^3.4|^4.0|^5.0",
  12986. "symfony/config": "^3.4|^4.0|^5.0",
  12987. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  12988. "symfony/expression-language": "^3.4|^4.0|^5.0",
  12989. "symfony/http-client": "^4.3|^5.0",
  12990. "symfony/http-foundation": "^4.1|^5.0",
  12991. "symfony/http-kernel": "^4.4",
  12992. "symfony/intl": "^4.3|^5.0",
  12993. "symfony/mime": "^4.4|^5.0",
  12994. "symfony/property-access": "^3.4|^4.0|^5.0",
  12995. "symfony/property-info": "^3.4|^4.0|^5.0",
  12996. "symfony/translation": "^4.2",
  12997. "symfony/yaml": "^3.4|^4.0|^5.0"
  12998. },
  12999. "suggest": {
  13000. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  13001. "doctrine/cache": "For using the default cached annotation reader.",
  13002. "egulias/email-validator": "Strict (RFC compliant) email validation",
  13003. "psr/cache-implementation": "For using the mapping cache.",
  13004. "symfony/config": "",
  13005. "symfony/expression-language": "For using the Expression validator",
  13006. "symfony/http-foundation": "",
  13007. "symfony/intl": "",
  13008. "symfony/property-access": "For accessing properties within comparison constraints",
  13009. "symfony/property-info": "To automatically add NotNull and Type constraints",
  13010. "symfony/translation": "For translating validation errors.",
  13011. "symfony/yaml": ""
  13012. },
  13013. "type": "library",
  13014. "autoload": {
  13015. "psr-4": {
  13016. "Symfony\\Component\\Validator\\": ""
  13017. },
  13018. "exclude-from-classmap": [
  13019. "/Tests/"
  13020. ]
  13021. },
  13022. "notification-url": "https://packagist.org/downloads/",
  13023. "license": [
  13024. "MIT"
  13025. ],
  13026. "authors": [
  13027. {
  13028. "name": "Fabien Potencier",
  13029. "email": "fabien@symfony.com"
  13030. },
  13031. {
  13032. "name": "Symfony Community",
  13033. "homepage": "https://symfony.com/contributors"
  13034. }
  13035. ],
  13036. "description": "Provides tools to validate values",
  13037. "homepage": "https://symfony.com",
  13038. "support": {
  13039. "source": "https://github.com/symfony/validator/tree/v4.4.35"
  13040. },
  13041. "funding": [
  13042. {
  13043. "url": "https://symfony.com/sponsor",
  13044. "type": "custom"
  13045. },
  13046. {
  13047. "url": "https://github.com/fabpot",
  13048. "type": "github"
  13049. },
  13050. {
  13051. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13052. "type": "tidelift"
  13053. }
  13054. ],
  13055. "time": "2021-11-22T21:43:32+00:00"
  13056. },
  13057. {
  13058. "name": "symfony/var-dumper",
  13059. "version": "v5.4.0",
  13060. "source": {
  13061. "type": "git",
  13062. "url": "https://github.com/symfony/var-dumper.git",
  13063. "reference": "89ab66eaef230c9cd1992de2e9a1b26652b127b9"
  13064. },
  13065. "dist": {
  13066. "type": "zip",
  13067. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/89ab66eaef230c9cd1992de2e9a1b26652b127b9",
  13068. "reference": "89ab66eaef230c9cd1992de2e9a1b26652b127b9",
  13069. "shasum": ""
  13070. },
  13071. "require": {
  13072. "php": ">=7.2.5",
  13073. "symfony/polyfill-mbstring": "~1.0",
  13074. "symfony/polyfill-php80": "^1.16"
  13075. },
  13076. "conflict": {
  13077. "phpunit/phpunit": "<5.4.3",
  13078. "symfony/console": "<4.4"
  13079. },
  13080. "require-dev": {
  13081. "ext-iconv": "*",
  13082. "symfony/console": "^4.4|^5.0|^6.0",
  13083. "symfony/process": "^4.4|^5.0|^6.0",
  13084. "symfony/uid": "^5.1|^6.0",
  13085. "twig/twig": "^2.13|^3.0.4"
  13086. },
  13087. "suggest": {
  13088. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  13089. "ext-intl": "To show region name in time zone dump",
  13090. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  13091. },
  13092. "bin": [
  13093. "Resources/bin/var-dump-server"
  13094. ],
  13095. "type": "library",
  13096. "autoload": {
  13097. "files": [
  13098. "Resources/functions/dump.php"
  13099. ],
  13100. "psr-4": {
  13101. "Symfony\\Component\\VarDumper\\": ""
  13102. },
  13103. "exclude-from-classmap": [
  13104. "/Tests/"
  13105. ]
  13106. },
  13107. "notification-url": "https://packagist.org/downloads/",
  13108. "license": [
  13109. "MIT"
  13110. ],
  13111. "authors": [
  13112. {
  13113. "name": "Nicolas Grekas",
  13114. "email": "p@tchwork.com"
  13115. },
  13116. {
  13117. "name": "Symfony Community",
  13118. "homepage": "https://symfony.com/contributors"
  13119. }
  13120. ],
  13121. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  13122. "homepage": "https://symfony.com",
  13123. "keywords": [
  13124. "debug",
  13125. "dump"
  13126. ],
  13127. "support": {
  13128. "source": "https://github.com/symfony/var-dumper/tree/v5.4.0"
  13129. },
  13130. "funding": [
  13131. {
  13132. "url": "https://symfony.com/sponsor",
  13133. "type": "custom"
  13134. },
  13135. {
  13136. "url": "https://github.com/fabpot",
  13137. "type": "github"
  13138. },
  13139. {
  13140. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13141. "type": "tidelift"
  13142. }
  13143. ],
  13144. "time": "2021-11-29T15:30:56+00:00"
  13145. },
  13146. {
  13147. "name": "symfony/yaml",
  13148. "version": "v4.4.34",
  13149. "source": {
  13150. "type": "git",
  13151. "url": "https://github.com/symfony/yaml.git",
  13152. "reference": "2c309e258adeb9970229042be39b360d34986fad"
  13153. },
  13154. "dist": {
  13155. "type": "zip",
  13156. "url": "https://api.github.com/repos/symfony/yaml/zipball/2c309e258adeb9970229042be39b360d34986fad",
  13157. "reference": "2c309e258adeb9970229042be39b360d34986fad",
  13158. "shasum": ""
  13159. },
  13160. "require": {
  13161. "php": ">=7.1.3",
  13162. "symfony/polyfill-ctype": "~1.8"
  13163. },
  13164. "conflict": {
  13165. "symfony/console": "<3.4"
  13166. },
  13167. "require-dev": {
  13168. "symfony/console": "^3.4|^4.0|^5.0"
  13169. },
  13170. "suggest": {
  13171. "symfony/console": "For validating YAML files using the lint command"
  13172. },
  13173. "type": "library",
  13174. "autoload": {
  13175. "psr-4": {
  13176. "Symfony\\Component\\Yaml\\": ""
  13177. },
  13178. "exclude-from-classmap": [
  13179. "/Tests/"
  13180. ]
  13181. },
  13182. "notification-url": "https://packagist.org/downloads/",
  13183. "license": [
  13184. "MIT"
  13185. ],
  13186. "authors": [
  13187. {
  13188. "name": "Fabien Potencier",
  13189. "email": "fabien@symfony.com"
  13190. },
  13191. {
  13192. "name": "Symfony Community",
  13193. "homepage": "https://symfony.com/contributors"
  13194. }
  13195. ],
  13196. "description": "Loads and dumps YAML files",
  13197. "homepage": "https://symfony.com",
  13198. "support": {
  13199. "source": "https://github.com/symfony/yaml/tree/v4.4.34"
  13200. },
  13201. "funding": [
  13202. {
  13203. "url": "https://symfony.com/sponsor",
  13204. "type": "custom"
  13205. },
  13206. {
  13207. "url": "https://github.com/fabpot",
  13208. "type": "github"
  13209. },
  13210. {
  13211. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13212. "type": "tidelift"
  13213. }
  13214. ],
  13215. "time": "2021-11-18T18:49:23+00:00"
  13216. },
  13217. {
  13218. "name": "twig/twig",
  13219. "version": "v2.14.7",
  13220. "source": {
  13221. "type": "git",
  13222. "url": "https://github.com/twigphp/Twig.git",
  13223. "reference": "8e202327ee1ed863629de9b18a5ec70ac614d88f"
  13224. },
  13225. "dist": {
  13226. "type": "zip",
  13227. "url": "https://api.github.com/repos/twigphp/Twig/zipball/8e202327ee1ed863629de9b18a5ec70ac614d88f",
  13228. "reference": "8e202327ee1ed863629de9b18a5ec70ac614d88f",
  13229. "shasum": ""
  13230. },
  13231. "require": {
  13232. "php": ">=7.2.5",
  13233. "symfony/polyfill-ctype": "^1.8",
  13234. "symfony/polyfill-mbstring": "^1.3"
  13235. },
  13236. "require-dev": {
  13237. "psr/container": "^1.0",
  13238. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  13239. },
  13240. "type": "library",
  13241. "extra": {
  13242. "branch-alias": {
  13243. "dev-master": "2.14-dev"
  13244. }
  13245. },
  13246. "autoload": {
  13247. "psr-0": {
  13248. "Twig_": "lib/"
  13249. },
  13250. "psr-4": {
  13251. "Twig\\": "src/"
  13252. }
  13253. },
  13254. "notification-url": "https://packagist.org/downloads/",
  13255. "license": [
  13256. "BSD-3-Clause"
  13257. ],
  13258. "authors": [
  13259. {
  13260. "name": "Fabien Potencier",
  13261. "email": "fabien@symfony.com",
  13262. "homepage": "http://fabien.potencier.org",
  13263. "role": "Lead Developer"
  13264. },
  13265. {
  13266. "name": "Twig Team",
  13267. "role": "Contributors"
  13268. },
  13269. {
  13270. "name": "Armin Ronacher",
  13271. "email": "armin.ronacher@active-4.com",
  13272. "role": "Project Founder"
  13273. }
  13274. ],
  13275. "description": "Twig, the flexible, fast, and secure template language for PHP",
  13276. "homepage": "https://twig.symfony.com",
  13277. "keywords": [
  13278. "templating"
  13279. ],
  13280. "support": {
  13281. "issues": "https://github.com/twigphp/Twig/issues",
  13282. "source": "https://github.com/twigphp/Twig/tree/v2.14.7"
  13283. },
  13284. "funding": [
  13285. {
  13286. "url": "https://github.com/fabpot",
  13287. "type": "github"
  13288. },
  13289. {
  13290. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  13291. "type": "tidelift"
  13292. }
  13293. ],
  13294. "time": "2021-09-17T08:39:54+00:00"
  13295. },
  13296. {
  13297. "name": "typo3/phar-stream-wrapper",
  13298. "version": "v3.1.7",
  13299. "source": {
  13300. "type": "git",
  13301. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  13302. "reference": "5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c"
  13303. },
  13304. "dist": {
  13305. "type": "zip",
  13306. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c",
  13307. "reference": "5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c",
  13308. "shasum": ""
  13309. },
  13310. "require": {
  13311. "ext-json": "*",
  13312. "php": "^7.0 || ^8.0"
  13313. },
  13314. "require-dev": {
  13315. "ext-xdebug": "*",
  13316. "phpspec/prophecy": "^1.10",
  13317. "symfony/phpunit-bridge": "^5.1"
  13318. },
  13319. "suggest": {
  13320. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  13321. },
  13322. "type": "library",
  13323. "extra": {
  13324. "branch-alias": {
  13325. "dev-master": "v3.x-dev"
  13326. }
  13327. },
  13328. "autoload": {
  13329. "psr-4": {
  13330. "TYPO3\\PharStreamWrapper\\": "src/"
  13331. }
  13332. },
  13333. "notification-url": "https://packagist.org/downloads/",
  13334. "license": [
  13335. "MIT"
  13336. ],
  13337. "description": "Interceptors for PHP's native phar:// stream handling",
  13338. "homepage": "https://typo3.org/",
  13339. "keywords": [
  13340. "phar",
  13341. "php",
  13342. "security",
  13343. "stream-wrapper"
  13344. ],
  13345. "support": {
  13346. "issues": "https://github.com/TYPO3/phar-stream-wrapper/issues",
  13347. "source": "https://github.com/TYPO3/phar-stream-wrapper/tree/v3.1.7"
  13348. },
  13349. "time": "2021-09-20T19:19:13+00:00"
  13350. },
  13351. {
  13352. "name": "webflo/drupal-finder",
  13353. "version": "1.2.2",
  13354. "source": {
  13355. "type": "git",
  13356. "url": "https://github.com/webflo/drupal-finder.git",
  13357. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  13358. },
  13359. "dist": {
  13360. "type": "zip",
  13361. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  13362. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  13363. "shasum": ""
  13364. },
  13365. "require": {
  13366. "ext-json": "*"
  13367. },
  13368. "require-dev": {
  13369. "mikey179/vfsstream": "^1.6",
  13370. "phpunit/phpunit": "^4.8"
  13371. },
  13372. "type": "library",
  13373. "autoload": {
  13374. "classmap": [
  13375. "src/DrupalFinder.php"
  13376. ]
  13377. },
  13378. "notification-url": "https://packagist.org/downloads/",
  13379. "license": [
  13380. "GPL-2.0-or-later"
  13381. ],
  13382. "authors": [
  13383. {
  13384. "name": "Florian Weber",
  13385. "email": "florian@webflo.org"
  13386. }
  13387. ],
  13388. "description": "Helper class to locate a Drupal installation from a given path.",
  13389. "support": {
  13390. "issues": "https://github.com/webflo/drupal-finder/issues",
  13391. "source": "https://github.com/webflo/drupal-finder/tree/1.2.2"
  13392. },
  13393. "time": "2020-10-27T09:42:17+00:00"
  13394. },
  13395. {
  13396. "name": "webmozart/assert",
  13397. "version": "1.10.0",
  13398. "source": {
  13399. "type": "git",
  13400. "url": "https://github.com/webmozarts/assert.git",
  13401. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  13402. },
  13403. "dist": {
  13404. "type": "zip",
  13405. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  13406. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  13407. "shasum": ""
  13408. },
  13409. "require": {
  13410. "php": "^7.2 || ^8.0",
  13411. "symfony/polyfill-ctype": "^1.8"
  13412. },
  13413. "conflict": {
  13414. "phpstan/phpstan": "<0.12.20",
  13415. "vimeo/psalm": "<4.6.1 || 4.6.2"
  13416. },
  13417. "require-dev": {
  13418. "phpunit/phpunit": "^8.5.13"
  13419. },
  13420. "type": "library",
  13421. "extra": {
  13422. "branch-alias": {
  13423. "dev-master": "1.10-dev"
  13424. }
  13425. },
  13426. "autoload": {
  13427. "psr-4": {
  13428. "Webmozart\\Assert\\": "src/"
  13429. }
  13430. },
  13431. "notification-url": "https://packagist.org/downloads/",
  13432. "license": [
  13433. "MIT"
  13434. ],
  13435. "authors": [
  13436. {
  13437. "name": "Bernhard Schussek",
  13438. "email": "bschussek@gmail.com"
  13439. }
  13440. ],
  13441. "description": "Assertions to validate method input/output with nice error messages.",
  13442. "keywords": [
  13443. "assert",
  13444. "check",
  13445. "validate"
  13446. ],
  13447. "support": {
  13448. "issues": "https://github.com/webmozarts/assert/issues",
  13449. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  13450. },
  13451. "time": "2021-03-09T10:59:23+00:00"
  13452. },
  13453. {
  13454. "name": "webmozart/path-util",
  13455. "version": "2.3.0",
  13456. "source": {
  13457. "type": "git",
  13458. "url": "https://github.com/webmozart/path-util.git",
  13459. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  13460. },
  13461. "dist": {
  13462. "type": "zip",
  13463. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  13464. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  13465. "shasum": ""
  13466. },
  13467. "require": {
  13468. "php": ">=5.3.3",
  13469. "webmozart/assert": "~1.0"
  13470. },
  13471. "require-dev": {
  13472. "phpunit/phpunit": "^4.6",
  13473. "sebastian/version": "^1.0.1"
  13474. },
  13475. "type": "library",
  13476. "extra": {
  13477. "branch-alias": {
  13478. "dev-master": "2.3-dev"
  13479. }
  13480. },
  13481. "autoload": {
  13482. "psr-4": {
  13483. "Webmozart\\PathUtil\\": "src/"
  13484. }
  13485. },
  13486. "notification-url": "https://packagist.org/downloads/",
  13487. "license": [
  13488. "MIT"
  13489. ],
  13490. "authors": [
  13491. {
  13492. "name": "Bernhard Schussek",
  13493. "email": "bschussek@gmail.com"
  13494. }
  13495. ],
  13496. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  13497. "support": {
  13498. "issues": "https://github.com/webmozart/path-util/issues",
  13499. "source": "https://github.com/webmozart/path-util/tree/2.3.0"
  13500. },
  13501. "abandoned": "symfony/filesystem",
  13502. "time": "2015-12-17T08:42:14+00:00"
  13503. },
  13504. {
  13505. "name": "webonyx/graphql-php",
  13506. "version": "v14.11.5",
  13507. "source": {
  13508. "type": "git",
  13509. "url": "https://github.com/webonyx/graphql-php.git",
  13510. "reference": "ffa431c0821821839370a68dab3c2597c06bf7f0"
  13511. },
  13512. "dist": {
  13513. "type": "zip",
  13514. "url": "https://api.github.com/repos/webonyx/graphql-php/zipball/ffa431c0821821839370a68dab3c2597c06bf7f0",
  13515. "reference": "ffa431c0821821839370a68dab3c2597c06bf7f0",
  13516. "shasum": ""
  13517. },
  13518. "require": {
  13519. "ext-json": "*",
  13520. "ext-mbstring": "*",
  13521. "php": "^7.1 || ^8"
  13522. },
  13523. "require-dev": {
  13524. "amphp/amp": "^2.3",
  13525. "doctrine/coding-standard": "^6.0",
  13526. "nyholm/psr7": "^1.2",
  13527. "phpbench/phpbench": "^1.2",
  13528. "phpstan/extension-installer": "^1.0",
  13529. "phpstan/phpstan": "0.12.82",
  13530. "phpstan/phpstan-phpunit": "0.12.18",
  13531. "phpstan/phpstan-strict-rules": "0.12.9",
  13532. "phpunit/phpunit": "^7.2 || ^8.5",
  13533. "psr/http-message": "^1.0",
  13534. "react/promise": "2.*",
  13535. "simpod/php-coveralls-mirror": "^3.0",
  13536. "squizlabs/php_codesniffer": "3.5.4"
  13537. },
  13538. "suggest": {
  13539. "psr/http-message": "To use standard GraphQL server",
  13540. "react/promise": "To leverage async resolving on React PHP platform"
  13541. },
  13542. "type": "library",
  13543. "autoload": {
  13544. "psr-4": {
  13545. "GraphQL\\": "src/"
  13546. }
  13547. },
  13548. "notification-url": "https://packagist.org/downloads/",
  13549. "license": [
  13550. "MIT"
  13551. ],
  13552. "description": "A PHP port of GraphQL reference implementation",
  13553. "homepage": "https://github.com/webonyx/graphql-php",
  13554. "keywords": [
  13555. "api",
  13556. "graphql"
  13557. ],
  13558. "support": {
  13559. "issues": "https://github.com/webonyx/graphql-php/issues",
  13560. "source": "https://github.com/webonyx/graphql-php/tree/v14.11.5"
  13561. },
  13562. "funding": [
  13563. {
  13564. "url": "https://opencollective.com/webonyx-graphql-php",
  13565. "type": "open_collective"
  13566. }
  13567. ],
  13568. "time": "2022-01-24T11:13:31+00:00"
  13569. },
  13570. {
  13571. "name": "wikimedia/composer-merge-plugin",
  13572. "version": "v2.0.1",
  13573. "source": {
  13574. "type": "git",
  13575. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  13576. "reference": "8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912"
  13577. },
  13578. "dist": {
  13579. "type": "zip",
  13580. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912",
  13581. "reference": "8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912",
  13582. "shasum": ""
  13583. },
  13584. "require": {
  13585. "composer-plugin-api": "^1.1||^2.0",
  13586. "php": ">=7.2.0"
  13587. },
  13588. "require-dev": {
  13589. "composer/composer": "^1.1||^2.0",
  13590. "php-parallel-lint/php-parallel-lint": "~1.1.0",
  13591. "phpunit/phpunit": "^8.5||^9.0",
  13592. "squizlabs/php_codesniffer": "~3.5.4"
  13593. },
  13594. "type": "composer-plugin",
  13595. "extra": {
  13596. "branch-alias": {
  13597. "dev-master": "2.x-dev"
  13598. },
  13599. "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin"
  13600. },
  13601. "autoload": {
  13602. "psr-4": {
  13603. "Wikimedia\\Composer\\Merge\\V2\\": "src/"
  13604. }
  13605. },
  13606. "notification-url": "https://packagist.org/downloads/",
  13607. "license": [
  13608. "MIT"
  13609. ],
  13610. "authors": [
  13611. {
  13612. "name": "Bryan Davis",
  13613. "email": "bd808@wikimedia.org"
  13614. }
  13615. ],
  13616. "description": "Composer plugin to merge multiple composer.json files",
  13617. "time": "2021-02-24T05:28:06+00:00"
  13618. }
  13619. ],
  13620. "packages-dev": [],
  13621. "aliases": [],
  13622. "minimum-stability": "stable",
  13623. "stability-flags": {
  13624. "drupal/auto_entitylabel": 20,
  13625. "drupal/cer": 15,
  13626. "drupal/insert": 20,
  13627. "drupal/typed_data": 20,
  13628. "drupal/autocomplete_deluxe": 5,
  13629. "drupal/better_exposed_filters": 10,
  13630. "drupal/bulkdelete": 20,
  13631. "drupal/cshs": 20,
  13632. "drupal/config_ignore": 5,
  13633. "drupal/config_devel": 20,
  13634. "drupal/context": 10,
  13635. "drupal/date_range_formatter": 20,
  13636. "drupal/domain": 20,
  13637. "drupal/domain_alias": 20,
  13638. "drupal/domain_config": 20,
  13639. "drupal/domain_site_settings": 20,
  13640. "drupal/email_registration": 5,
  13641. "drupal/entity_browser_enhanced": 5,
  13642. "drupal/entity_clone": 15,
  13643. "drupal/filefield_sources": 20,
  13644. "drupal/filter_perms": 20,
  13645. "drupal/inline_entity_form": 5,
  13646. "drupal/linkit": 10,
  13647. "drupal/login_destination": 20,
  13648. "drupal/maillog": 20,
  13649. "drupal/maxlength": 10,
  13650. "drupal/menu_block": 20,
  13651. "drupal/menu_position": 20,
  13652. "drupal/path_alias_xt": 20,
  13653. "drupal/pathologic": 15,
  13654. "drupal/profile": 5,
  13655. "drupal/smtp": 10,
  13656. "drupal/synonyms": 20,
  13657. "drupal/translation_views": 15,
  13658. "drupal/ultimate_cron": 15
  13659. },
  13660. "prefer-stable": true,
  13661. "prefer-lowest": false,
  13662. "platform": [],
  13663. "platform-dev": [],
  13664. "plugin-api-version": "2.0.0"
  13665. }