composer.lock 369 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113
  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": "8468a28ac4bdb41656a180bdd036b156",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "1.3.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/b9c31def6a83f84b4d4a40d35996d375755f0e08",
  20. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.5.9",
  25. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  26. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^5.0 || ^4.8.10",
  30. "squizlabs/php_codesniffer": "^2.3"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "1.2-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/Asm89/Stack/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/asm89/stack-cors/issues",
  61. "source": "https://github.com/asm89/stack-cors/tree/1.3.0"
  62. },
  63. "time": "2019-12-24T22:41:47+00:00"
  64. },
  65. {
  66. "name": "chi-teck/drupal-code-generator",
  67. "version": "1.32.0",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  71. "reference": "0e045f7a7e747af3d8f603156bf4d73be5768246"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/0e045f7a7e747af3d8f603156bf4d73be5768246",
  76. "reference": "0e045f7a7e747af3d8f603156bf4d73be5768246",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "ext-json": "*",
  81. "php": ">=5.5.9",
  82. "symfony/console": "^3.4 || ^4.0",
  83. "symfony/filesystem": "^2.7 || ^3.4 || ^4.0",
  84. "twig/twig": "^1.41 || ^2.12"
  85. },
  86. "bin": [
  87. "bin/dcg"
  88. ],
  89. "type": "library",
  90. "extra": {
  91. "branch-alias": {
  92. "dev-master": "1.x-dev"
  93. }
  94. },
  95. "autoload": {
  96. "files": [
  97. "src/bootstrap.php"
  98. ],
  99. "psr-4": {
  100. "DrupalCodeGenerator\\": "src"
  101. }
  102. },
  103. "notification-url": "https://packagist.org/downloads/",
  104. "license": [
  105. "GPL-2.0-or-later"
  106. ],
  107. "description": "Drupal code generator",
  108. "time": "2020-04-16T06:45:06+00:00"
  109. },
  110. {
  111. "name": "composer/installers",
  112. "version": "v1.11.0",
  113. "source": {
  114. "type": "git",
  115. "url": "https://github.com/composer/installers.git",
  116. "reference": "ae03311f45dfe194412081526be2e003960df74b"
  117. },
  118. "dist": {
  119. "type": "zip",
  120. "url": "https://api.github.com/repos/composer/installers/zipball/ae03311f45dfe194412081526be2e003960df74b",
  121. "reference": "ae03311f45dfe194412081526be2e003960df74b",
  122. "shasum": ""
  123. },
  124. "require": {
  125. "composer-plugin-api": "^1.0 || ^2.0"
  126. },
  127. "replace": {
  128. "roundcube/plugin-installer": "*",
  129. "shama/baton": "*"
  130. },
  131. "require-dev": {
  132. "composer/composer": "1.6.* || ^2.0",
  133. "composer/semver": "^1 || ^3",
  134. "phpstan/phpstan": "^0.12.55",
  135. "phpstan/phpstan-phpunit": "^0.12.16",
  136. "symfony/phpunit-bridge": "^4.2 || ^5",
  137. "symfony/process": "^2.3"
  138. },
  139. "type": "composer-plugin",
  140. "extra": {
  141. "class": "Composer\\Installers\\Plugin",
  142. "branch-alias": {
  143. "dev-main": "1.x-dev"
  144. }
  145. },
  146. "autoload": {
  147. "psr-4": {
  148. "Composer\\Installers\\": "src/Composer/Installers"
  149. }
  150. },
  151. "notification-url": "https://packagist.org/downloads/",
  152. "license": [
  153. "MIT"
  154. ],
  155. "authors": [
  156. {
  157. "name": "Kyle Robinson Young",
  158. "email": "kyle@dontkry.com",
  159. "homepage": "https://github.com/shama"
  160. }
  161. ],
  162. "description": "A multi-framework Composer library installer",
  163. "homepage": "https://composer.github.io/installers/",
  164. "keywords": [
  165. "Craft",
  166. "Dolibarr",
  167. "Eliasis",
  168. "Hurad",
  169. "ImageCMS",
  170. "Kanboard",
  171. "Lan Management System",
  172. "MODX Evo",
  173. "MantisBT",
  174. "Mautic",
  175. "Maya",
  176. "OXID",
  177. "Plentymarkets",
  178. "Porto",
  179. "RadPHP",
  180. "SMF",
  181. "Starbug",
  182. "Thelia",
  183. "Whmcs",
  184. "WolfCMS",
  185. "agl",
  186. "aimeos",
  187. "annotatecms",
  188. "attogram",
  189. "bitrix",
  190. "cakephp",
  191. "chef",
  192. "cockpit",
  193. "codeigniter",
  194. "concrete5",
  195. "croogo",
  196. "dokuwiki",
  197. "drupal",
  198. "eZ Platform",
  199. "elgg",
  200. "expressionengine",
  201. "fuelphp",
  202. "grav",
  203. "installer",
  204. "itop",
  205. "joomla",
  206. "known",
  207. "kohana",
  208. "laravel",
  209. "lavalite",
  210. "lithium",
  211. "magento",
  212. "majima",
  213. "mako",
  214. "mediawiki",
  215. "miaoxing",
  216. "modulework",
  217. "modx",
  218. "moodle",
  219. "osclass",
  220. "phpbb",
  221. "piwik",
  222. "ppi",
  223. "processwire",
  224. "puppet",
  225. "pxcms",
  226. "reindex",
  227. "roundcube",
  228. "shopware",
  229. "silverstripe",
  230. "sydes",
  231. "sylius",
  232. "symfony",
  233. "tastyigniter",
  234. "typo3",
  235. "wordpress",
  236. "yawik",
  237. "zend",
  238. "zikula"
  239. ],
  240. "funding": [
  241. {
  242. "url": "https://packagist.com",
  243. "type": "custom"
  244. },
  245. {
  246. "url": "https://github.com/composer",
  247. "type": "github"
  248. },
  249. {
  250. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  251. "type": "tidelift"
  252. }
  253. ],
  254. "time": "2021-04-28T06:42:17+00:00"
  255. },
  256. {
  257. "name": "composer/semver",
  258. "version": "1.5.1",
  259. "source": {
  260. "type": "git",
  261. "url": "https://github.com/composer/semver.git",
  262. "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de"
  263. },
  264. "dist": {
  265. "type": "zip",
  266. "url": "https://api.github.com/repos/composer/semver/zipball/c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
  267. "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
  268. "shasum": ""
  269. },
  270. "require": {
  271. "php": "^5.3.2 || ^7.0"
  272. },
  273. "require-dev": {
  274. "phpunit/phpunit": "^4.5 || ^5.0.5"
  275. },
  276. "type": "library",
  277. "extra": {
  278. "branch-alias": {
  279. "dev-master": "1.x-dev"
  280. }
  281. },
  282. "autoload": {
  283. "psr-4": {
  284. "Composer\\Semver\\": "src"
  285. }
  286. },
  287. "notification-url": "https://packagist.org/downloads/",
  288. "license": [
  289. "MIT"
  290. ],
  291. "authors": [
  292. {
  293. "name": "Nils Adermann",
  294. "email": "naderman@naderman.de",
  295. "homepage": "http://www.naderman.de"
  296. },
  297. {
  298. "name": "Jordi Boggiano",
  299. "email": "j.boggiano@seld.be",
  300. "homepage": "http://seld.be"
  301. },
  302. {
  303. "name": "Rob Bast",
  304. "email": "rob.bast@gmail.com",
  305. "homepage": "http://robbast.nl"
  306. }
  307. ],
  308. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  309. "keywords": [
  310. "semantic",
  311. "semver",
  312. "validation",
  313. "versioning"
  314. ],
  315. "support": {
  316. "irc": "irc://irc.freenode.org/composer",
  317. "issues": "https://github.com/composer/semver/issues",
  318. "source": "https://github.com/composer/semver/tree/1.5.1"
  319. },
  320. "time": "2020-01-13T12:06:48+00:00"
  321. },
  322. {
  323. "name": "consolidation/annotated-command",
  324. "version": "2.12.0",
  325. "source": {
  326. "type": "git",
  327. "url": "https://github.com/consolidation/annotated-command.git",
  328. "reference": "512a2e54c98f3af377589de76c43b24652bcb789"
  329. },
  330. "dist": {
  331. "type": "zip",
  332. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/512a2e54c98f3af377589de76c43b24652bcb789",
  333. "reference": "512a2e54c98f3af377589de76c43b24652bcb789",
  334. "shasum": ""
  335. },
  336. "require": {
  337. "consolidation/output-formatters": "^3.4",
  338. "php": ">=5.4.5",
  339. "psr/log": "^1",
  340. "symfony/console": "^2.8|^3|^4",
  341. "symfony/event-dispatcher": "^2.5|^3|^4",
  342. "symfony/finder": "^2.5|^3|^4"
  343. },
  344. "require-dev": {
  345. "g1a/composer-test-scenarios": "^3",
  346. "php-coveralls/php-coveralls": "^1",
  347. "phpunit/phpunit": "^6",
  348. "squizlabs/php_codesniffer": "^2.7"
  349. },
  350. "type": "library",
  351. "extra": {
  352. "scenarios": {
  353. "symfony4": {
  354. "require": {
  355. "symfony/console": "^4.0"
  356. },
  357. "config": {
  358. "platform": {
  359. "php": "7.1.3"
  360. }
  361. }
  362. },
  363. "symfony2": {
  364. "require": {
  365. "symfony/console": "^2.8"
  366. },
  367. "require-dev": {
  368. "phpunit/phpunit": "^4.8.36"
  369. },
  370. "remove": [
  371. "php-coveralls/php-coveralls"
  372. ],
  373. "config": {
  374. "platform": {
  375. "php": "5.4.8"
  376. }
  377. },
  378. "scenario-options": {
  379. "create-lockfile": "false"
  380. }
  381. },
  382. "phpunit4": {
  383. "require-dev": {
  384. "phpunit/phpunit": "^4.8.36"
  385. },
  386. "remove": [
  387. "php-coveralls/php-coveralls"
  388. ],
  389. "config": {
  390. "platform": {
  391. "php": "5.4.8"
  392. }
  393. }
  394. }
  395. },
  396. "branch-alias": {
  397. "dev-master": "2.x-dev"
  398. }
  399. },
  400. "autoload": {
  401. "psr-4": {
  402. "Consolidation\\AnnotatedCommand\\": "src"
  403. }
  404. },
  405. "notification-url": "https://packagist.org/downloads/",
  406. "license": [
  407. "MIT"
  408. ],
  409. "authors": [
  410. {
  411. "name": "Greg Anderson",
  412. "email": "greg.1.anderson@greenknowe.org"
  413. }
  414. ],
  415. "description": "Initialize Symfony Console commands from annotated command class methods.",
  416. "time": "2019-03-08T16:55:03+00:00"
  417. },
  418. {
  419. "name": "consolidation/config",
  420. "version": "1.2.1",
  421. "source": {
  422. "type": "git",
  423. "url": "https://github.com/consolidation/config.git",
  424. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  425. },
  426. "dist": {
  427. "type": "zip",
  428. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  429. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  430. "shasum": ""
  431. },
  432. "require": {
  433. "dflydev/dot-access-data": "^1.1.0",
  434. "grasmash/expander": "^1",
  435. "php": ">=5.4.0"
  436. },
  437. "require-dev": {
  438. "g1a/composer-test-scenarios": "^3",
  439. "php-coveralls/php-coveralls": "^1",
  440. "phpunit/phpunit": "^5",
  441. "squizlabs/php_codesniffer": "2.*",
  442. "symfony/console": "^2.5|^3|^4",
  443. "symfony/yaml": "^2.8.11|^3|^4"
  444. },
  445. "suggest": {
  446. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  447. },
  448. "type": "library",
  449. "extra": {
  450. "scenarios": {
  451. "symfony4": {
  452. "require-dev": {
  453. "symfony/console": "^4.0"
  454. },
  455. "config": {
  456. "platform": {
  457. "php": "7.1.3"
  458. }
  459. }
  460. },
  461. "symfony2": {
  462. "require-dev": {
  463. "symfony/console": "^2.8",
  464. "symfony/event-dispatcher": "^2.8",
  465. "phpunit/phpunit": "^4.8.36"
  466. },
  467. "remove": [
  468. "php-coveralls/php-coveralls"
  469. ],
  470. "config": {
  471. "platform": {
  472. "php": "5.4.8"
  473. }
  474. }
  475. }
  476. },
  477. "branch-alias": {
  478. "dev-master": "1.x-dev"
  479. }
  480. },
  481. "autoload": {
  482. "psr-4": {
  483. "Consolidation\\Config\\": "src"
  484. }
  485. },
  486. "notification-url": "https://packagist.org/downloads/",
  487. "license": [
  488. "MIT"
  489. ],
  490. "authors": [
  491. {
  492. "name": "Greg Anderson",
  493. "email": "greg.1.anderson@greenknowe.org"
  494. }
  495. ],
  496. "description": "Provide configuration services for a commandline tool.",
  497. "time": "2019-03-03T19:37:04+00:00"
  498. },
  499. {
  500. "name": "consolidation/filter-via-dot-access-data",
  501. "version": "1.0.0",
  502. "source": {
  503. "type": "git",
  504. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  505. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  506. },
  507. "dist": {
  508. "type": "zip",
  509. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  510. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  511. "shasum": ""
  512. },
  513. "require": {
  514. "dflydev/dot-access-data": "^1.1.0",
  515. "php": ">=5.5.0"
  516. },
  517. "require-dev": {
  518. "consolidation/robo": "^1.2.3",
  519. "g1a/composer-test-scenarios": "^3",
  520. "knplabs/github-api": "^2.7",
  521. "php-coveralls/php-coveralls": "^1",
  522. "php-http/guzzle6-adapter": "^1.1",
  523. "phpunit/phpunit": "^5",
  524. "squizlabs/php_codesniffer": "^2.8",
  525. "symfony/console": "^2.8|^3|^4"
  526. },
  527. "type": "library",
  528. "extra": {
  529. "scenarios": {
  530. "phpunit5": {
  531. "require-dev": {
  532. "phpunit/phpunit": "^5.7.27"
  533. },
  534. "remove": [
  535. "php-coveralls/php-coveralls"
  536. ],
  537. "config": {
  538. "platform": {
  539. "php": "5.6.33"
  540. }
  541. }
  542. }
  543. },
  544. "branch-alias": {
  545. "dev-master": "1.x-dev"
  546. }
  547. },
  548. "autoload": {
  549. "psr-4": {
  550. "Consolidation\\Filter\\": "src"
  551. }
  552. },
  553. "notification-url": "https://packagist.org/downloads/",
  554. "license": [
  555. "MIT"
  556. ],
  557. "authors": [
  558. {
  559. "name": "Greg Anderson",
  560. "email": "greg.1.anderson@greenknowe.org"
  561. }
  562. ],
  563. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  564. "time": "2019-01-18T06:05:07+00:00"
  565. },
  566. {
  567. "name": "consolidation/log",
  568. "version": "1.1.1",
  569. "source": {
  570. "type": "git",
  571. "url": "https://github.com/consolidation/log.git",
  572. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a"
  573. },
  574. "dist": {
  575. "type": "zip",
  576. "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  577. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  578. "shasum": ""
  579. },
  580. "require": {
  581. "php": ">=5.4.5",
  582. "psr/log": "^1.0",
  583. "symfony/console": "^2.8|^3|^4"
  584. },
  585. "require-dev": {
  586. "g1a/composer-test-scenarios": "^3",
  587. "php-coveralls/php-coveralls": "^1",
  588. "phpunit/phpunit": "^6",
  589. "squizlabs/php_codesniffer": "^2"
  590. },
  591. "type": "library",
  592. "extra": {
  593. "scenarios": {
  594. "symfony4": {
  595. "require": {
  596. "symfony/console": "^4.0"
  597. },
  598. "config": {
  599. "platform": {
  600. "php": "7.1.3"
  601. }
  602. }
  603. },
  604. "symfony2": {
  605. "require": {
  606. "symfony/console": "^2.8"
  607. },
  608. "require-dev": {
  609. "phpunit/phpunit": "^4.8.36"
  610. },
  611. "remove": [
  612. "php-coveralls/php-coveralls"
  613. ],
  614. "config": {
  615. "platform": {
  616. "php": "5.4.8"
  617. }
  618. }
  619. },
  620. "phpunit4": {
  621. "require-dev": {
  622. "phpunit/phpunit": "^4.8.36"
  623. },
  624. "remove": [
  625. "php-coveralls/php-coveralls"
  626. ],
  627. "config": {
  628. "platform": {
  629. "php": "5.4.8"
  630. }
  631. }
  632. }
  633. },
  634. "branch-alias": {
  635. "dev-master": "1.x-dev"
  636. }
  637. },
  638. "autoload": {
  639. "psr-4": {
  640. "Consolidation\\Log\\": "src"
  641. }
  642. },
  643. "notification-url": "https://packagist.org/downloads/",
  644. "license": [
  645. "MIT"
  646. ],
  647. "authors": [
  648. {
  649. "name": "Greg Anderson",
  650. "email": "greg.1.anderson@greenknowe.org"
  651. }
  652. ],
  653. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  654. "time": "2019-01-01T17:30:51+00:00"
  655. },
  656. {
  657. "name": "consolidation/output-formatters",
  658. "version": "3.5.0",
  659. "source": {
  660. "type": "git",
  661. "url": "https://github.com/consolidation/output-formatters.git",
  662. "reference": "99ec998ffb697e0eada5aacf81feebfb13023605"
  663. },
  664. "dist": {
  665. "type": "zip",
  666. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/99ec998ffb697e0eada5aacf81feebfb13023605",
  667. "reference": "99ec998ffb697e0eada5aacf81feebfb13023605",
  668. "shasum": ""
  669. },
  670. "require": {
  671. "dflydev/dot-access-data": "^1.1.0",
  672. "php": ">=5.4.0",
  673. "symfony/console": "^2.8|^3|^4",
  674. "symfony/finder": "^2.5|^3|^4"
  675. },
  676. "require-dev": {
  677. "g1a/composer-test-scenarios": "^3",
  678. "php-coveralls/php-coveralls": "^1",
  679. "phpunit/phpunit": "^5.7.27",
  680. "squizlabs/php_codesniffer": "^2.7",
  681. "symfony/var-dumper": "^2.8|^3|^4",
  682. "victorjonsson/markdowndocs": "^1.3"
  683. },
  684. "suggest": {
  685. "symfony/var-dumper": "For using the var_dump formatter"
  686. },
  687. "type": "library",
  688. "extra": {
  689. "scenarios": {
  690. "symfony4": {
  691. "require": {
  692. "symfony/console": "^4.0"
  693. },
  694. "require-dev": {
  695. "phpunit/phpunit": "^6"
  696. },
  697. "config": {
  698. "platform": {
  699. "php": "7.1.3"
  700. }
  701. }
  702. },
  703. "symfony3": {
  704. "require": {
  705. "symfony/console": "^3.4",
  706. "symfony/finder": "^3.4",
  707. "symfony/var-dumper": "^3.4"
  708. },
  709. "config": {
  710. "platform": {
  711. "php": "5.6.32"
  712. }
  713. }
  714. },
  715. "symfony2": {
  716. "require": {
  717. "symfony/console": "^2.8"
  718. },
  719. "require-dev": {
  720. "phpunit/phpunit": "^4.8.36"
  721. },
  722. "remove": [
  723. "php-coveralls/php-coveralls"
  724. ],
  725. "config": {
  726. "platform": {
  727. "php": "5.4.8"
  728. }
  729. },
  730. "scenario-options": {
  731. "create-lockfile": "false"
  732. }
  733. }
  734. },
  735. "branch-alias": {
  736. "dev-master": "3.x-dev"
  737. }
  738. },
  739. "autoload": {
  740. "psr-4": {
  741. "Consolidation\\OutputFormatters\\": "src"
  742. }
  743. },
  744. "notification-url": "https://packagist.org/downloads/",
  745. "license": [
  746. "MIT"
  747. ],
  748. "authors": [
  749. {
  750. "name": "Greg Anderson",
  751. "email": "greg.1.anderson@greenknowe.org"
  752. }
  753. ],
  754. "description": "Format text by applying transformations provided by plug-in formatters.",
  755. "time": "2019-05-30T23:16:01+00:00"
  756. },
  757. {
  758. "name": "consolidation/robo",
  759. "version": "1.4.12",
  760. "source": {
  761. "type": "git",
  762. "url": "https://github.com/consolidation/Robo.git",
  763. "reference": "eb45606f498b3426b9a98b7c85e300666a968e51"
  764. },
  765. "dist": {
  766. "type": "zip",
  767. "url": "https://api.github.com/repos/consolidation/Robo/zipball/eb45606f498b3426b9a98b7c85e300666a968e51",
  768. "reference": "eb45606f498b3426b9a98b7c85e300666a968e51",
  769. "shasum": ""
  770. },
  771. "require": {
  772. "consolidation/annotated-command": "^2.11.0|^4.1",
  773. "consolidation/config": "^1.2.1",
  774. "consolidation/log": "^1.1.1|^2",
  775. "consolidation/output-formatters": "^3.1.13|^4.1",
  776. "consolidation/self-update": "^1.1.5",
  777. "grasmash/yaml-expander": "^1.4",
  778. "league/container": "^2.4.1",
  779. "php": ">=5.5.0",
  780. "symfony/console": "^2.8|^3|^4",
  781. "symfony/event-dispatcher": "^2.5|^3|^4",
  782. "symfony/filesystem": "^2.5|^3|^4",
  783. "symfony/finder": "^2.5|^3|^4",
  784. "symfony/process": "^2.5|^3|^4"
  785. },
  786. "replace": {
  787. "codegyre/robo": "< 1.0"
  788. },
  789. "require-dev": {
  790. "g1a/composer-test-scenarios": "^3",
  791. "natxet/cssmin": "3.0.4",
  792. "patchwork/jsqueeze": "^2",
  793. "pear/archive_tar": "^1.4.4",
  794. "php-coveralls/php-coveralls": "^1",
  795. "phpunit/phpunit": "^5.7.27",
  796. "squizlabs/php_codesniffer": "^3"
  797. },
  798. "suggest": {
  799. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  800. "natxet/CssMin": "For minifying CSS files in taskMinify",
  801. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  802. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  803. },
  804. "bin": [
  805. "robo"
  806. ],
  807. "type": "library",
  808. "extra": {
  809. "scenarios": {
  810. "symfony4": {
  811. "require": {
  812. "symfony/console": "^4"
  813. },
  814. "config": {
  815. "platform": {
  816. "php": "7.1.3"
  817. }
  818. }
  819. },
  820. "symfony2": {
  821. "require": {
  822. "symfony/console": "^2.8"
  823. },
  824. "require-dev": {
  825. "phpunit/phpunit": "^4.8.36"
  826. },
  827. "remove": [
  828. "php-coveralls/php-coveralls"
  829. ],
  830. "config": {
  831. "platform": {
  832. "php": "5.5.9"
  833. }
  834. },
  835. "scenario-options": {
  836. "create-lockfile": "false"
  837. }
  838. }
  839. },
  840. "branch-alias": {
  841. "dev-master": "1.x-dev"
  842. }
  843. },
  844. "autoload": {
  845. "psr-4": {
  846. "Robo\\": "src"
  847. }
  848. },
  849. "notification-url": "https://packagist.org/downloads/",
  850. "license": [
  851. "MIT"
  852. ],
  853. "authors": [
  854. {
  855. "name": "Davert",
  856. "email": "davert.php@resend.cc"
  857. }
  858. ],
  859. "description": "Modern task runner",
  860. "time": "2020-02-18T17:31:26+00:00"
  861. },
  862. {
  863. "name": "consolidation/self-update",
  864. "version": "1.2.0",
  865. "source": {
  866. "type": "git",
  867. "url": "https://github.com/consolidation/self-update.git",
  868. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4"
  869. },
  870. "dist": {
  871. "type": "zip",
  872. "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4",
  873. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4",
  874. "shasum": ""
  875. },
  876. "require": {
  877. "php": ">=5.5.0",
  878. "symfony/console": "^2.8|^3|^4|^5",
  879. "symfony/filesystem": "^2.5|^3|^4|^5"
  880. },
  881. "bin": [
  882. "scripts/release"
  883. ],
  884. "type": "library",
  885. "extra": {
  886. "branch-alias": {
  887. "dev-master": "1.x-dev"
  888. }
  889. },
  890. "autoload": {
  891. "psr-4": {
  892. "SelfUpdate\\": "src"
  893. }
  894. },
  895. "notification-url": "https://packagist.org/downloads/",
  896. "license": [
  897. "MIT"
  898. ],
  899. "authors": [
  900. {
  901. "name": "Alexander Menk",
  902. "email": "menk@mestrona.net"
  903. },
  904. {
  905. "name": "Greg Anderson",
  906. "email": "greg.1.anderson@greenknowe.org"
  907. }
  908. ],
  909. "description": "Provides a self:update command for Symfony Console applications.",
  910. "time": "2020-04-13T02:49:20+00:00"
  911. },
  912. {
  913. "name": "consolidation/site-alias",
  914. "version": "3.0.0",
  915. "source": {
  916. "type": "git",
  917. "url": "https://github.com/consolidation/site-alias.git",
  918. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f"
  919. },
  920. "dist": {
  921. "type": "zip",
  922. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/8cfd3b6ab6d541086fc970bf850864293b284e6f",
  923. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f",
  924. "shasum": ""
  925. },
  926. "require": {
  927. "consolidation/config": "^1.2.1",
  928. "php": ">=5.5.0"
  929. },
  930. "require-dev": {
  931. "consolidation/robo": "^1.2.3",
  932. "g1a/composer-test-scenarios": "^3",
  933. "knplabs/github-api": "^2.7",
  934. "php-coveralls/php-coveralls": "^1",
  935. "php-http/guzzle6-adapter": "^1.1",
  936. "phpunit/phpunit": "^6",
  937. "squizlabs/php_codesniffer": "^2.8",
  938. "symfony/console": "^2.8|^3|^4",
  939. "symfony/yaml": "~2.3|^3"
  940. },
  941. "type": "library",
  942. "extra": {
  943. "scenarios": {
  944. "phpunit5": {
  945. "require-dev": {
  946. "phpunit/phpunit": "^5.7.27"
  947. },
  948. "remove": [
  949. "php-coveralls/php-coveralls"
  950. ],
  951. "config": {
  952. "platform": {
  953. "php": "5.6.33"
  954. }
  955. }
  956. }
  957. },
  958. "branch-alias": {
  959. "dev-master": "3.x-dev"
  960. }
  961. },
  962. "autoload": {
  963. "psr-4": {
  964. "Consolidation\\SiteAlias\\": "src"
  965. }
  966. },
  967. "notification-url": "https://packagist.org/downloads/",
  968. "license": [
  969. "MIT"
  970. ],
  971. "authors": [
  972. {
  973. "name": "Moshe Weitzman",
  974. "email": "weitzman@tejasa.com"
  975. },
  976. {
  977. "name": "Greg Anderson",
  978. "email": "greg.1.anderson@greenknowe.org"
  979. }
  980. ],
  981. "description": "Manage alias records for local and remote sites.",
  982. "time": "2019-03-12T17:31:48+00:00"
  983. },
  984. {
  985. "name": "consolidation/site-process",
  986. "version": "2.1.0",
  987. "source": {
  988. "type": "git",
  989. "url": "https://github.com/consolidation/site-process.git",
  990. "reference": "f3211fa4c60671c6f068184221f06f932556e443"
  991. },
  992. "dist": {
  993. "type": "zip",
  994. "url": "https://api.github.com/repos/consolidation/site-process/zipball/f3211fa4c60671c6f068184221f06f932556e443",
  995. "reference": "f3211fa4c60671c6f068184221f06f932556e443",
  996. "shasum": ""
  997. },
  998. "require": {
  999. "consolidation/config": "^1.2.1",
  1000. "consolidation/site-alias": "^3",
  1001. "php": ">=5.6.0",
  1002. "symfony/process": "^3.4"
  1003. },
  1004. "require-dev": {
  1005. "consolidation/robo": "^1.3",
  1006. "g1a/composer-test-scenarios": "^3",
  1007. "knplabs/github-api": "^2.7",
  1008. "php-coveralls/php-coveralls": "^1",
  1009. "php-http/guzzle6-adapter": "^1.1",
  1010. "phpunit/phpunit": "^6",
  1011. "squizlabs/php_codesniffer": "^2.8"
  1012. },
  1013. "type": "library",
  1014. "extra": {
  1015. "scenarios": {
  1016. "phpunit5": {
  1017. "require-dev": {
  1018. "phpunit/phpunit": "^5.7.27"
  1019. },
  1020. "remove": [
  1021. "php-coveralls/php-coveralls"
  1022. ],
  1023. "config": {
  1024. "platform": {
  1025. "php": "5.6.33"
  1026. }
  1027. }
  1028. }
  1029. },
  1030. "branch-alias": {
  1031. "dev-master": "0.x-dev"
  1032. }
  1033. },
  1034. "autoload": {
  1035. "psr-4": {
  1036. "Consolidation\\SiteProcess\\": "src"
  1037. }
  1038. },
  1039. "notification-url": "https://packagist.org/downloads/",
  1040. "license": [
  1041. "MIT"
  1042. ],
  1043. "authors": [
  1044. {
  1045. "name": "Greg Anderson",
  1046. "email": "greg.1.anderson@greenknowe.org"
  1047. },
  1048. {
  1049. "name": "Moshe Weitzman",
  1050. "email": "weitzman@tejasa.com"
  1051. }
  1052. ],
  1053. "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.",
  1054. "time": "2019-09-10T17:56:24+00:00"
  1055. },
  1056. {
  1057. "name": "cweagans/composer-patches",
  1058. "version": "1.7.1",
  1059. "source": {
  1060. "type": "git",
  1061. "url": "https://github.com/cweagans/composer-patches.git",
  1062. "reference": "9888dcc74993c030b75f3dd548bb5e20cdbd740c"
  1063. },
  1064. "dist": {
  1065. "type": "zip",
  1066. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/9888dcc74993c030b75f3dd548bb5e20cdbd740c",
  1067. "reference": "9888dcc74993c030b75f3dd548bb5e20cdbd740c",
  1068. "shasum": ""
  1069. },
  1070. "require": {
  1071. "composer-plugin-api": "^1.0 || ^2.0",
  1072. "php": ">=5.3.0"
  1073. },
  1074. "require-dev": {
  1075. "composer/composer": "~1.0 || ~2.0",
  1076. "phpunit/phpunit": "~4.6"
  1077. },
  1078. "type": "composer-plugin",
  1079. "extra": {
  1080. "class": "cweagans\\Composer\\Patches"
  1081. },
  1082. "autoload": {
  1083. "psr-4": {
  1084. "cweagans\\Composer\\": "src"
  1085. }
  1086. },
  1087. "notification-url": "https://packagist.org/downloads/",
  1088. "license": [
  1089. "BSD-3-Clause"
  1090. ],
  1091. "authors": [
  1092. {
  1093. "name": "Cameron Eagans",
  1094. "email": "me@cweagans.net"
  1095. }
  1096. ],
  1097. "description": "Provides a way to patch Composer packages.",
  1098. "time": "2021-06-08T15:12:46+00:00"
  1099. },
  1100. {
  1101. "name": "dflydev/dot-access-data",
  1102. "version": "v1.1.0",
  1103. "source": {
  1104. "type": "git",
  1105. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1106. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1107. },
  1108. "dist": {
  1109. "type": "zip",
  1110. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1111. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1112. "shasum": ""
  1113. },
  1114. "require": {
  1115. "php": ">=5.3.2"
  1116. },
  1117. "type": "library",
  1118. "extra": {
  1119. "branch-alias": {
  1120. "dev-master": "1.0-dev"
  1121. }
  1122. },
  1123. "autoload": {
  1124. "psr-0": {
  1125. "Dflydev\\DotAccessData": "src"
  1126. }
  1127. },
  1128. "notification-url": "https://packagist.org/downloads/",
  1129. "license": [
  1130. "MIT"
  1131. ],
  1132. "authors": [
  1133. {
  1134. "name": "Dragonfly Development Inc.",
  1135. "email": "info@dflydev.com",
  1136. "homepage": "http://dflydev.com"
  1137. },
  1138. {
  1139. "name": "Beau Simensen",
  1140. "email": "beau@dflydev.com",
  1141. "homepage": "http://beausimensen.com"
  1142. },
  1143. {
  1144. "name": "Carlos Frutos",
  1145. "email": "carlos@kiwing.it",
  1146. "homepage": "https://github.com/cfrutos"
  1147. }
  1148. ],
  1149. "description": "Given a deep data structure, access data by dot notation.",
  1150. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1151. "keywords": [
  1152. "access",
  1153. "data",
  1154. "dot",
  1155. "notation"
  1156. ],
  1157. "time": "2017-01-20T21:14:22+00:00"
  1158. },
  1159. {
  1160. "name": "dnoegel/php-xdg-base-dir",
  1161. "version": "v0.1.1",
  1162. "source": {
  1163. "type": "git",
  1164. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1165. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  1166. },
  1167. "dist": {
  1168. "type": "zip",
  1169. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1170. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1171. "shasum": ""
  1172. },
  1173. "require": {
  1174. "php": ">=5.3.2"
  1175. },
  1176. "require-dev": {
  1177. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  1178. },
  1179. "type": "library",
  1180. "autoload": {
  1181. "psr-4": {
  1182. "XdgBaseDir\\": "src/"
  1183. }
  1184. },
  1185. "notification-url": "https://packagist.org/downloads/",
  1186. "license": [
  1187. "MIT"
  1188. ],
  1189. "description": "implementation of xdg base directory specification for php",
  1190. "time": "2019-12-04T15:06:13+00:00"
  1191. },
  1192. {
  1193. "name": "doctrine/annotations",
  1194. "version": "v1.4.0",
  1195. "source": {
  1196. "type": "git",
  1197. "url": "https://github.com/doctrine/annotations.git",
  1198. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  1199. },
  1200. "dist": {
  1201. "type": "zip",
  1202. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  1203. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  1204. "shasum": ""
  1205. },
  1206. "require": {
  1207. "doctrine/lexer": "1.*",
  1208. "php": "^5.6 || ^7.0"
  1209. },
  1210. "require-dev": {
  1211. "doctrine/cache": "1.*",
  1212. "phpunit/phpunit": "^5.7"
  1213. },
  1214. "type": "library",
  1215. "extra": {
  1216. "branch-alias": {
  1217. "dev-master": "1.4.x-dev"
  1218. }
  1219. },
  1220. "autoload": {
  1221. "psr-4": {
  1222. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1223. }
  1224. },
  1225. "notification-url": "https://packagist.org/downloads/",
  1226. "license": [
  1227. "MIT"
  1228. ],
  1229. "authors": [
  1230. {
  1231. "name": "Roman Borschel",
  1232. "email": "roman@code-factory.org"
  1233. },
  1234. {
  1235. "name": "Benjamin Eberlei",
  1236. "email": "kontakt@beberlei.de"
  1237. },
  1238. {
  1239. "name": "Guilherme Blanco",
  1240. "email": "guilhermeblanco@gmail.com"
  1241. },
  1242. {
  1243. "name": "Jonathan Wage",
  1244. "email": "jonwage@gmail.com"
  1245. },
  1246. {
  1247. "name": "Johannes Schmitt",
  1248. "email": "schmittjoh@gmail.com"
  1249. }
  1250. ],
  1251. "description": "Docblock Annotations Parser",
  1252. "homepage": "http://www.doctrine-project.org",
  1253. "keywords": [
  1254. "annotations",
  1255. "docblock",
  1256. "parser"
  1257. ],
  1258. "support": {
  1259. "issues": "https://github.com/doctrine/annotations/issues",
  1260. "source": "https://github.com/doctrine/annotations/tree/v1.4.0"
  1261. },
  1262. "time": "2017-02-24T16:22:25+00:00"
  1263. },
  1264. {
  1265. "name": "doctrine/cache",
  1266. "version": "v1.6.2",
  1267. "source": {
  1268. "type": "git",
  1269. "url": "https://github.com/doctrine/cache.git",
  1270. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  1271. },
  1272. "dist": {
  1273. "type": "zip",
  1274. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1275. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1276. "shasum": ""
  1277. },
  1278. "require": {
  1279. "php": "~5.5|~7.0"
  1280. },
  1281. "conflict": {
  1282. "doctrine/common": ">2.2,<2.4"
  1283. },
  1284. "require-dev": {
  1285. "phpunit/phpunit": "~4.8|~5.0",
  1286. "predis/predis": "~1.0",
  1287. "satooshi/php-coveralls": "~0.6"
  1288. },
  1289. "type": "library",
  1290. "extra": {
  1291. "branch-alias": {
  1292. "dev-master": "1.6.x-dev"
  1293. }
  1294. },
  1295. "autoload": {
  1296. "psr-4": {
  1297. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1298. }
  1299. },
  1300. "notification-url": "https://packagist.org/downloads/",
  1301. "license": [
  1302. "MIT"
  1303. ],
  1304. "authors": [
  1305. {
  1306. "name": "Roman Borschel",
  1307. "email": "roman@code-factory.org"
  1308. },
  1309. {
  1310. "name": "Benjamin Eberlei",
  1311. "email": "kontakt@beberlei.de"
  1312. },
  1313. {
  1314. "name": "Guilherme Blanco",
  1315. "email": "guilhermeblanco@gmail.com"
  1316. },
  1317. {
  1318. "name": "Jonathan Wage",
  1319. "email": "jonwage@gmail.com"
  1320. },
  1321. {
  1322. "name": "Johannes Schmitt",
  1323. "email": "schmittjoh@gmail.com"
  1324. }
  1325. ],
  1326. "description": "Caching library offering an object-oriented API for many cache backends",
  1327. "homepage": "http://www.doctrine-project.org",
  1328. "keywords": [
  1329. "cache",
  1330. "caching"
  1331. ],
  1332. "support": {
  1333. "issues": "https://github.com/doctrine/cache/issues",
  1334. "source": "https://github.com/doctrine/cache/tree/1.6.x"
  1335. },
  1336. "time": "2017-07-22T12:49:21+00:00"
  1337. },
  1338. {
  1339. "name": "doctrine/collections",
  1340. "version": "v1.4.0",
  1341. "source": {
  1342. "type": "git",
  1343. "url": "https://github.com/doctrine/collections.git",
  1344. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1345. },
  1346. "dist": {
  1347. "type": "zip",
  1348. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1349. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1350. "shasum": ""
  1351. },
  1352. "require": {
  1353. "php": "^5.6 || ^7.0"
  1354. },
  1355. "require-dev": {
  1356. "doctrine/coding-standard": "~0.1@dev",
  1357. "phpunit/phpunit": "^5.7"
  1358. },
  1359. "type": "library",
  1360. "extra": {
  1361. "branch-alias": {
  1362. "dev-master": "1.3.x-dev"
  1363. }
  1364. },
  1365. "autoload": {
  1366. "psr-0": {
  1367. "Doctrine\\Common\\Collections\\": "lib/"
  1368. }
  1369. },
  1370. "notification-url": "https://packagist.org/downloads/",
  1371. "license": [
  1372. "MIT"
  1373. ],
  1374. "authors": [
  1375. {
  1376. "name": "Roman Borschel",
  1377. "email": "roman@code-factory.org"
  1378. },
  1379. {
  1380. "name": "Benjamin Eberlei",
  1381. "email": "kontakt@beberlei.de"
  1382. },
  1383. {
  1384. "name": "Guilherme Blanco",
  1385. "email": "guilhermeblanco@gmail.com"
  1386. },
  1387. {
  1388. "name": "Jonathan Wage",
  1389. "email": "jonwage@gmail.com"
  1390. },
  1391. {
  1392. "name": "Johannes Schmitt",
  1393. "email": "schmittjoh@gmail.com"
  1394. }
  1395. ],
  1396. "description": "Collections Abstraction library",
  1397. "homepage": "http://www.doctrine-project.org",
  1398. "keywords": [
  1399. "array",
  1400. "collections",
  1401. "iterator"
  1402. ],
  1403. "support": {
  1404. "issues": "https://github.com/doctrine/collections/issues",
  1405. "source": "https://github.com/doctrine/collections/tree/master"
  1406. },
  1407. "time": "2017-01-03T10:49:41+00:00"
  1408. },
  1409. {
  1410. "name": "doctrine/common",
  1411. "version": "v2.7.3",
  1412. "source": {
  1413. "type": "git",
  1414. "url": "https://github.com/doctrine/common.git",
  1415. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1416. },
  1417. "dist": {
  1418. "type": "zip",
  1419. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1420. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1421. "shasum": ""
  1422. },
  1423. "require": {
  1424. "doctrine/annotations": "1.*",
  1425. "doctrine/cache": "1.*",
  1426. "doctrine/collections": "1.*",
  1427. "doctrine/inflector": "1.*",
  1428. "doctrine/lexer": "1.*",
  1429. "php": "~5.6|~7.0"
  1430. },
  1431. "require-dev": {
  1432. "phpunit/phpunit": "^5.4.6"
  1433. },
  1434. "type": "library",
  1435. "extra": {
  1436. "branch-alias": {
  1437. "dev-master": "2.7.x-dev"
  1438. }
  1439. },
  1440. "autoload": {
  1441. "psr-4": {
  1442. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1443. }
  1444. },
  1445. "notification-url": "https://packagist.org/downloads/",
  1446. "license": [
  1447. "MIT"
  1448. ],
  1449. "authors": [
  1450. {
  1451. "name": "Roman Borschel",
  1452. "email": "roman@code-factory.org"
  1453. },
  1454. {
  1455. "name": "Benjamin Eberlei",
  1456. "email": "kontakt@beberlei.de"
  1457. },
  1458. {
  1459. "name": "Guilherme Blanco",
  1460. "email": "guilhermeblanco@gmail.com"
  1461. },
  1462. {
  1463. "name": "Jonathan Wage",
  1464. "email": "jonwage@gmail.com"
  1465. },
  1466. {
  1467. "name": "Johannes Schmitt",
  1468. "email": "schmittjoh@gmail.com"
  1469. }
  1470. ],
  1471. "description": "Common Library for Doctrine projects",
  1472. "homepage": "http://www.doctrine-project.org",
  1473. "keywords": [
  1474. "annotations",
  1475. "collections",
  1476. "eventmanager",
  1477. "persistence",
  1478. "spl"
  1479. ],
  1480. "support": {
  1481. "issues": "https://github.com/doctrine/common/issues",
  1482. "source": "https://github.com/doctrine/common/tree/v2.7.3"
  1483. },
  1484. "time": "2017-07-22T08:35:12+00:00"
  1485. },
  1486. {
  1487. "name": "doctrine/inflector",
  1488. "version": "v1.2.0",
  1489. "source": {
  1490. "type": "git",
  1491. "url": "https://github.com/doctrine/inflector.git",
  1492. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1493. },
  1494. "dist": {
  1495. "type": "zip",
  1496. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1497. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1498. "shasum": ""
  1499. },
  1500. "require": {
  1501. "php": "^7.0"
  1502. },
  1503. "require-dev": {
  1504. "phpunit/phpunit": "^6.2"
  1505. },
  1506. "type": "library",
  1507. "extra": {
  1508. "branch-alias": {
  1509. "dev-master": "1.2.x-dev"
  1510. }
  1511. },
  1512. "autoload": {
  1513. "psr-4": {
  1514. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1515. }
  1516. },
  1517. "notification-url": "https://packagist.org/downloads/",
  1518. "license": [
  1519. "MIT"
  1520. ],
  1521. "authors": [
  1522. {
  1523. "name": "Roman Borschel",
  1524. "email": "roman@code-factory.org"
  1525. },
  1526. {
  1527. "name": "Benjamin Eberlei",
  1528. "email": "kontakt@beberlei.de"
  1529. },
  1530. {
  1531. "name": "Guilherme Blanco",
  1532. "email": "guilhermeblanco@gmail.com"
  1533. },
  1534. {
  1535. "name": "Jonathan Wage",
  1536. "email": "jonwage@gmail.com"
  1537. },
  1538. {
  1539. "name": "Johannes Schmitt",
  1540. "email": "schmittjoh@gmail.com"
  1541. }
  1542. ],
  1543. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1544. "homepage": "http://www.doctrine-project.org",
  1545. "keywords": [
  1546. "inflection",
  1547. "pluralize",
  1548. "singularize",
  1549. "string"
  1550. ],
  1551. "support": {
  1552. "source": "https://github.com/doctrine/inflector/tree/master"
  1553. },
  1554. "time": "2017-07-22T12:18:28+00:00"
  1555. },
  1556. {
  1557. "name": "doctrine/lexer",
  1558. "version": "1.0.2",
  1559. "source": {
  1560. "type": "git",
  1561. "url": "https://github.com/doctrine/lexer.git",
  1562. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8"
  1563. },
  1564. "dist": {
  1565. "type": "zip",
  1566. "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  1567. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  1568. "shasum": ""
  1569. },
  1570. "require": {
  1571. "php": ">=5.3.2"
  1572. },
  1573. "require-dev": {
  1574. "phpunit/phpunit": "^4.5"
  1575. },
  1576. "type": "library",
  1577. "extra": {
  1578. "branch-alias": {
  1579. "dev-master": "1.0.x-dev"
  1580. }
  1581. },
  1582. "autoload": {
  1583. "psr-4": {
  1584. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1585. }
  1586. },
  1587. "notification-url": "https://packagist.org/downloads/",
  1588. "license": [
  1589. "MIT"
  1590. ],
  1591. "authors": [
  1592. {
  1593. "name": "Roman Borschel",
  1594. "email": "roman@code-factory.org"
  1595. },
  1596. {
  1597. "name": "Guilherme Blanco",
  1598. "email": "guilhermeblanco@gmail.com"
  1599. },
  1600. {
  1601. "name": "Johannes Schmitt",
  1602. "email": "schmittjoh@gmail.com"
  1603. }
  1604. ],
  1605. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1606. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1607. "keywords": [
  1608. "annotations",
  1609. "docblock",
  1610. "lexer",
  1611. "parser",
  1612. "php"
  1613. ],
  1614. "support": {
  1615. "issues": "https://github.com/doctrine/lexer/issues",
  1616. "source": "https://github.com/doctrine/lexer/tree/1.0.2"
  1617. },
  1618. "time": "2019-06-08T11:03:04+00:00"
  1619. },
  1620. {
  1621. "name": "drupal/addtoany",
  1622. "version": "1.14.0",
  1623. "source": {
  1624. "type": "git",
  1625. "url": "https://git.drupalcode.org/project/addtoany.git",
  1626. "reference": "8.x-1.14"
  1627. },
  1628. "dist": {
  1629. "type": "zip",
  1630. "url": "https://ftp.drupal.org/files/projects/addtoany-8.x-1.14.zip",
  1631. "reference": "8.x-1.14",
  1632. "shasum": "269ec4d1cfaf93132d5945edebf691ec7c04901a"
  1633. },
  1634. "require": {
  1635. "drupal/core": "^8 || ^9"
  1636. },
  1637. "type": "drupal-module",
  1638. "extra": {
  1639. "drupal": {
  1640. "version": "8.x-1.14",
  1641. "datestamp": "1589571718",
  1642. "security-coverage": {
  1643. "status": "covered",
  1644. "message": "Covered by Drupal's security advisory policy"
  1645. }
  1646. }
  1647. },
  1648. "notification-url": "https://packages.drupal.org/8/downloads",
  1649. "license": [
  1650. "GPL-2.0-or-later"
  1651. ],
  1652. "authors": [
  1653. {
  1654. "name": "AddToAny",
  1655. "homepage": "https://www.drupal.org/user/2640913"
  1656. },
  1657. {
  1658. "name": "micropat",
  1659. "homepage": "https://www.drupal.org/user/260224"
  1660. }
  1661. ],
  1662. "description": "Share buttons for Drupal including the AddToAny universal share button, Facebook, Twitter, Pinterest, WhatsApp and many more.",
  1663. "homepage": "https://www.drupal.org/project/addtoany",
  1664. "keywords": [
  1665. "Drupal"
  1666. ],
  1667. "support": {
  1668. "source": "https://git.drupalcode.org/project/addtoany",
  1669. "issues": "https://www.drupal.org/project/issues/addtoany"
  1670. }
  1671. },
  1672. {
  1673. "name": "drupal/admin_toolbar",
  1674. "version": "2.3.0",
  1675. "source": {
  1676. "type": "git",
  1677. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1678. "reference": "8.x-2.3"
  1679. },
  1680. "dist": {
  1681. "type": "zip",
  1682. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.3.zip",
  1683. "reference": "8.x-2.3",
  1684. "shasum": "cf8ee1aa8adfc604db4394655e3ba4c423d5f24a"
  1685. },
  1686. "require": {
  1687. "drupal/core": "^8.8.0 || ^9.0"
  1688. },
  1689. "type": "drupal-module",
  1690. "extra": {
  1691. "drupal": {
  1692. "version": "8.x-2.3",
  1693. "datestamp": "1592535714",
  1694. "security-coverage": {
  1695. "status": "covered",
  1696. "message": "Covered by Drupal's security advisory policy"
  1697. }
  1698. }
  1699. },
  1700. "notification-url": "https://packages.drupal.org/8/downloads",
  1701. "license": [
  1702. "GPL-2.0-or-later"
  1703. ],
  1704. "authors": [
  1705. {
  1706. "name": "Wilfrid Roze (eme)",
  1707. "homepage": "https://www.drupal.org/u/eme",
  1708. "role": "Maintainer"
  1709. },
  1710. {
  1711. "name": "Romain Jarraud (romainj)",
  1712. "homepage": "https://www.drupal.org/u/romainj",
  1713. "role": "Maintainer"
  1714. },
  1715. {
  1716. "name": "Adrian Cid Almaguer (adriancid)",
  1717. "homepage": "https://www.drupal.org/u/adriancid",
  1718. "email": "adriancid@gmail.com",
  1719. "role": "Maintainer"
  1720. },
  1721. {
  1722. "name": "Mohamed Anis Taktak (matio89)",
  1723. "homepage": "https://www.drupal.org/u/matio89",
  1724. "role": "Maintainer"
  1725. },
  1726. {
  1727. "name": "fethi.krout",
  1728. "homepage": "https://www.drupal.org/user/3206765"
  1729. },
  1730. {
  1731. "name": "matio89",
  1732. "homepage": "https://www.drupal.org/user/2320090"
  1733. },
  1734. {
  1735. "name": "romainj",
  1736. "homepage": "https://www.drupal.org/user/370706"
  1737. }
  1738. ],
  1739. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1740. "homepage": "http://drupal.org/project/admin_toolbar",
  1741. "keywords": [
  1742. "Drupal",
  1743. "Toolbar"
  1744. ],
  1745. "support": {
  1746. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1747. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1748. }
  1749. },
  1750. {
  1751. "name": "drupal/adminimal_theme",
  1752. "version": "1.6.0",
  1753. "source": {
  1754. "type": "git",
  1755. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1756. "reference": "8.x-1.6"
  1757. },
  1758. "dist": {
  1759. "type": "zip",
  1760. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.6.zip",
  1761. "reference": "8.x-1.6",
  1762. "shasum": "89132d0853388afe8dfd11fb83c69a48d8c13413"
  1763. },
  1764. "require": {
  1765. "drupal/core": "^8.8 || ^9"
  1766. },
  1767. "type": "drupal-theme",
  1768. "extra": {
  1769. "drupal": {
  1770. "version": "8.x-1.6",
  1771. "datestamp": "1602006937",
  1772. "security-coverage": {
  1773. "status": "covered",
  1774. "message": "Covered by Drupal's security advisory policy"
  1775. }
  1776. }
  1777. },
  1778. "notification-url": "https://packages.drupal.org/8/downloads",
  1779. "license": [
  1780. "GPL-2.0+"
  1781. ],
  1782. "authors": [
  1783. {
  1784. "name": "ANDiTKO",
  1785. "homepage": "https://www.drupal.org/user/1428124"
  1786. },
  1787. {
  1788. "name": "andrey.troeglazov",
  1789. "homepage": "https://www.drupal.org/user/3145389"
  1790. },
  1791. {
  1792. "name": "realityloop",
  1793. "homepage": "https://www.drupal.org/user/139189"
  1794. },
  1795. {
  1796. "name": "rjjakes",
  1797. "homepage": "https://www.drupal.org/user/3457245"
  1798. }
  1799. ],
  1800. "description": "Drupal administration theme with modern minimalist design.",
  1801. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1802. "support": {
  1803. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1804. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1805. }
  1806. },
  1807. {
  1808. "name": "drupal/audiofield",
  1809. "version": "1.13.0",
  1810. "source": {
  1811. "type": "git",
  1812. "url": "https://git.drupalcode.org/project/audiofield.git",
  1813. "reference": "8.x-1.13"
  1814. },
  1815. "dist": {
  1816. "type": "zip",
  1817. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  1818. "reference": "8.x-1.13",
  1819. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  1820. },
  1821. "require": {
  1822. "drupal/core": "^8 || ^9 || ^10"
  1823. },
  1824. "type": "drupal-module",
  1825. "extra": {
  1826. "drupal": {
  1827. "version": "8.x-1.13",
  1828. "datestamp": "1681143245",
  1829. "security-coverage": {
  1830. "status": "covered",
  1831. "message": "Covered by Drupal's security advisory policy"
  1832. }
  1833. },
  1834. "drush": {
  1835. "services": {
  1836. "drush.services.yml": "^9"
  1837. }
  1838. }
  1839. },
  1840. "notification-url": "https://packages.drupal.org/8/downloads",
  1841. "license": [
  1842. "GPL-2.0-or-later"
  1843. ],
  1844. "authors": [
  1845. {
  1846. "name": "Daniel Moberly",
  1847. "homepage": "https://www.drupal.org/u/danielmoberly",
  1848. "role": "Maintainer"
  1849. },
  1850. {
  1851. "name": "tamerzg",
  1852. "homepage": "https://www.drupal.org/user/464564"
  1853. }
  1854. ],
  1855. "description": "AudioField Module",
  1856. "homepage": "https://www.drupal.org/project/audiofield",
  1857. "support": {
  1858. "source": "https://git.drupalcode.org/project/audiofield",
  1859. "issues": "https://www.drupal.org/project/issues/audiofield"
  1860. }
  1861. },
  1862. {
  1863. "name": "drupal/autologout",
  1864. "version": "1.3.0",
  1865. "source": {
  1866. "type": "git",
  1867. "url": "https://git.drupalcode.org/project/autologout.git",
  1868. "reference": "8.x-1.3"
  1869. },
  1870. "dist": {
  1871. "type": "zip",
  1872. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.3.zip",
  1873. "reference": "8.x-1.3",
  1874. "shasum": "87733b2042d9dcdee0d8f33d206872208a8c97ea"
  1875. },
  1876. "require": {
  1877. "drupal/core": "^8 || ^9"
  1878. },
  1879. "type": "drupal-module",
  1880. "extra": {
  1881. "drupal": {
  1882. "version": "8.x-1.3",
  1883. "datestamp": "1587193798",
  1884. "security-coverage": {
  1885. "status": "covered",
  1886. "message": "Covered by Drupal's security advisory policy"
  1887. }
  1888. },
  1889. "patches_applied": {
  1890. "AutologoutManager class incompatible with interface https://www.drupal.org/project/autologout/issues/3121214": "https://www.drupal.org/files/issues/2020-03-20/3121214-autologout_manager_incompatible_interface.patch"
  1891. }
  1892. },
  1893. "notification-url": "https://packages.drupal.org/8/downloads",
  1894. "license": [
  1895. "GPL-2.0+"
  1896. ],
  1897. "authors": [
  1898. {
  1899. "name": "AjK",
  1900. "homepage": "https://www.drupal.org/user/39030"
  1901. },
  1902. {
  1903. "name": "AjitS",
  1904. "homepage": "https://www.drupal.org/user/981944"
  1905. },
  1906. {
  1907. "name": "boshtian",
  1908. "homepage": "https://www.drupal.org/user/1773456"
  1909. },
  1910. {
  1911. "name": "dandrews",
  1912. "homepage": "https://www.drupal.org/user/2014490"
  1913. },
  1914. {
  1915. "name": "darksnow",
  1916. "homepage": "https://www.drupal.org/user/391915"
  1917. },
  1918. {
  1919. "name": "johnennew",
  1920. "homepage": "https://www.drupal.org/user/1150042"
  1921. },
  1922. {
  1923. "name": "jrglasgow",
  1924. "homepage": "https://www.drupal.org/user/36590"
  1925. },
  1926. {
  1927. "name": "kmasood",
  1928. "homepage": "https://www.drupal.org/user/1262860"
  1929. },
  1930. {
  1931. "name": "levelos",
  1932. "homepage": "https://www.drupal.org/user/54135"
  1933. },
  1934. {
  1935. "name": "prabeen.giri",
  1936. "homepage": "https://www.drupal.org/user/913078"
  1937. },
  1938. {
  1939. "name": "str8",
  1940. "homepage": "https://www.drupal.org/user/2865063"
  1941. }
  1942. ],
  1943. "description": "Adds automated timed logout.",
  1944. "homepage": "http://drupal.org/project/autologout",
  1945. "support": {
  1946. "source": "https://git.drupalcode.org/project/autologout"
  1947. }
  1948. },
  1949. {
  1950. "name": "drupal/basic",
  1951. "version": "2.1.0",
  1952. "source": {
  1953. "type": "git",
  1954. "url": "https://git.drupalcode.org/project/basic.git",
  1955. "reference": "8.x-2.1"
  1956. },
  1957. "dist": {
  1958. "type": "zip",
  1959. "url": "https://ftp.drupal.org/files/projects/basic-8.x-2.1.zip",
  1960. "reference": "8.x-2.1",
  1961. "shasum": "2497b30bd419e6f49a72a1f80ab40b47582df4f5"
  1962. },
  1963. "require": {
  1964. "drupal/core": "^8.8 || ^9"
  1965. },
  1966. "type": "drupal-theme",
  1967. "extra": {
  1968. "drupal": {
  1969. "version": "8.x-2.1",
  1970. "datestamp": "1612916291",
  1971. "security-coverage": {
  1972. "status": "covered",
  1973. "message": "Covered by Drupal's security advisory policy"
  1974. }
  1975. }
  1976. },
  1977. "notification-url": "https://packages.drupal.org/8/downloads",
  1978. "license": [
  1979. "GPL-2.0+"
  1980. ],
  1981. "authors": [
  1982. {
  1983. "name": "Steve Krueger",
  1984. "homepage": "http://thejibe.com",
  1985. "email": "steve@thejibe.com",
  1986. "role": "Maintainer"
  1987. },
  1988. {
  1989. "name": "Joël Pittet",
  1990. "homepage": "https://www.drupal.org/u/joelpittet",
  1991. "email": "joel@pittet.ca",
  1992. "role": "Maintainer"
  1993. },
  1994. {
  1995. "name": "Leah Wagner",
  1996. "homepage": "http://thejibe.com",
  1997. "email": "leah@thejibe.com",
  1998. "role": "Maintainer"
  1999. },
  2000. {
  2001. "name": "Catherine Winters",
  2002. "homepage": "http://www.catherinewinters.com",
  2003. "email": "catherine@catherinewinters.com",
  2004. "role": "Maintainer"
  2005. },
  2006. {
  2007. "name": "Johannes Schmidt",
  2008. "homepage": "http://2tabs.com",
  2009. "email": "mail@2tabs.com",
  2010. "role": "Maintainer"
  2011. },
  2012. {
  2013. "name": "Chuck Kosman",
  2014. "homepage": "http://thejibe.com",
  2015. "email": "chuck@thejibe.com",
  2016. "role": "Maintainer"
  2017. },
  2018. {
  2019. "name": "SteveK",
  2020. "homepage": "https://www.drupal.org/user/111656"
  2021. }
  2022. ],
  2023. "description": "HTML5, SASS, Responsive grid starter theme.",
  2024. "homepage": "http://drupal.org/project/basic",
  2025. "support": {
  2026. "source": "http://cgit.drupalcode.org/basic",
  2027. "issues": "https://www.drupal.org/project/issues/basic",
  2028. "irc": "irc://irc.freenode.org/drupal-contribute"
  2029. }
  2030. },
  2031. {
  2032. "name": "drupal/better_messages",
  2033. "version": "2.0.0-alpha2",
  2034. "source": {
  2035. "type": "git",
  2036. "url": "https://git.drupalcode.org/project/better_messages.git",
  2037. "reference": "2.0.0-alpha2"
  2038. },
  2039. "dist": {
  2040. "type": "zip",
  2041. "url": "https://ftp.drupal.org/files/projects/better_messages-2.0.0-alpha2.zip",
  2042. "reference": "2.0.0-alpha2",
  2043. "shasum": "e93618447a97e90d95b7242cc6398be4346b59b4"
  2044. },
  2045. "require": {
  2046. "drupal/core": "^8 || ^9"
  2047. },
  2048. "type": "drupal-module",
  2049. "extra": {
  2050. "drupal": {
  2051. "version": "2.0.0-alpha2",
  2052. "datestamp": "1644241962",
  2053. "security-coverage": {
  2054. "status": "not-covered",
  2055. "message": "Alpha releases are not covered by Drupal security advisories."
  2056. }
  2057. }
  2058. },
  2059. "notification-url": "https://packages.drupal.org/8/downloads",
  2060. "license": [
  2061. "GPL-2.0-or-later"
  2062. ],
  2063. "authors": [
  2064. {
  2065. "name": "bucefal91",
  2066. "homepage": "https://www.drupal.org/user/504128"
  2067. },
  2068. {
  2069. "name": "le72",
  2070. "homepage": "https://www.drupal.org/user/1866896"
  2071. },
  2072. {
  2073. "name": "mohammed j. razem",
  2074. "homepage": "https://www.drupal.org/user/255384"
  2075. },
  2076. {
  2077. "name": "usingsession",
  2078. "homepage": "https://www.drupal.org/user/3582050"
  2079. }
  2080. ],
  2081. "description": "This module adds simple functions to make Drupal messages look and act better.",
  2082. "homepage": "https://www.drupal.org/project/better_messages",
  2083. "support": {
  2084. "source": "https://git.drupalcode.org/project/better_messages"
  2085. }
  2086. },
  2087. {
  2088. "name": "drupal/bulkdelete",
  2089. "version": "dev-1.x",
  2090. "source": {
  2091. "type": "git",
  2092. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2093. "reference": "36e12429e99606463b9ef15203c2018de69965b2"
  2094. },
  2095. "require": {
  2096. "drupal/core": "^8.7.7 || ^9"
  2097. },
  2098. "type": "drupal-module",
  2099. "extra": {
  2100. "branch-alias": {
  2101. "dev-1.x": "1.x-dev"
  2102. },
  2103. "drupal": {
  2104. "version": "8.x-1.x-dev",
  2105. "datestamp": "1569586386",
  2106. "security-coverage": {
  2107. "status": "not-covered",
  2108. "message": "Dev releases are not covered by Drupal security advisories."
  2109. }
  2110. }
  2111. },
  2112. "notification-url": "https://packages.drupal.org/8/downloads",
  2113. "license": [
  2114. "GPL-2.0-or-later"
  2115. ],
  2116. "authors": [
  2117. {
  2118. "name": "Kars-T",
  2119. "homepage": "https://www.drupal.org/user/224499"
  2120. },
  2121. {
  2122. "name": "Rahul Seth",
  2123. "homepage": "https://www.drupal.org/user/2694359"
  2124. },
  2125. {
  2126. "name": "adriancid",
  2127. "homepage": "https://www.drupal.org/user/1962106"
  2128. },
  2129. {
  2130. "name": "robertDouglass",
  2131. "homepage": "https://www.drupal.org/user/5449"
  2132. }
  2133. ],
  2134. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2135. "homepage": "https://www.drupal.org/project/bulkdelete",
  2136. "support": {
  2137. "source": "https://git.drupalcode.org/project/bulkdelete"
  2138. },
  2139. "time": "2020-05-24T06:01:38+00:00"
  2140. },
  2141. {
  2142. "name": "drupal/color_field",
  2143. "version": "2.4.0",
  2144. "source": {
  2145. "type": "git",
  2146. "url": "https://git.drupalcode.org/project/color_field.git",
  2147. "reference": "8.x-2.4"
  2148. },
  2149. "dist": {
  2150. "type": "zip",
  2151. "url": "https://ftp.drupal.org/files/projects/color_field-8.x-2.4.zip",
  2152. "reference": "8.x-2.4",
  2153. "shasum": "11c163a409f4f70083f188d917fecc6052c53a2f"
  2154. },
  2155. "require": {
  2156. "drupal/core": "^8 || ^9"
  2157. },
  2158. "require-dev": {
  2159. "drupal/token": "~1.3",
  2160. "nickwilde1990/php-composter-phpcs-drupal": "^2.0"
  2161. },
  2162. "suggest": {
  2163. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  2164. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  2165. },
  2166. "type": "drupal-module",
  2167. "extra": {
  2168. "drupal": {
  2169. "version": "8.x-2.4",
  2170. "datestamp": "1596479692",
  2171. "security-coverage": {
  2172. "status": "covered",
  2173. "message": "Covered by Drupal's security advisory policy"
  2174. }
  2175. }
  2176. },
  2177. "notification-url": "https://packages.drupal.org/8/downloads",
  2178. "license": [
  2179. "GPL-2.0-or-later"
  2180. ],
  2181. "authors": [
  2182. {
  2183. "name": "targoo",
  2184. "homepage": "https://www.drupal.org/user/431910",
  2185. "role": "Maintainer"
  2186. },
  2187. {
  2188. "name": "Nick Wilde",
  2189. "homepage": "https://www.drupal.org/user/nickwilde",
  2190. "role": "Maintainer"
  2191. }
  2192. ],
  2193. "description": "Provides a color field type to store the color value and opacity",
  2194. "homepage": "https://www.drupal.org/project/color_field",
  2195. "support": {
  2196. "source": "https://git.drupalcode.org/project/color_field",
  2197. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2198. }
  2199. },
  2200. {
  2201. "name": "drupal/config_devel",
  2202. "version": "1.8.0",
  2203. "source": {
  2204. "type": "git",
  2205. "url": "https://git.drupalcode.org/project/config_devel.git",
  2206. "reference": "8.x-1.8"
  2207. },
  2208. "dist": {
  2209. "type": "zip",
  2210. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.8.zip",
  2211. "reference": "8.x-1.8",
  2212. "shasum": "325caa6c6d0ee39e938807892f9ec509e71b5fb7"
  2213. },
  2214. "require": {
  2215. "drupal/core": "^8 || ^9"
  2216. },
  2217. "type": "drupal-module",
  2218. "extra": {
  2219. "drupal": {
  2220. "version": "8.x-1.8",
  2221. "datestamp": "1609324318",
  2222. "security-coverage": {
  2223. "status": "covered",
  2224. "message": "Covered by Drupal's security advisory policy"
  2225. }
  2226. }
  2227. },
  2228. "notification-url": "https://packages.drupal.org/8/downloads",
  2229. "license": [
  2230. "GPL-2.0+"
  2231. ],
  2232. "authors": [
  2233. {
  2234. "name": "alexpott",
  2235. "homepage": "https://www.drupal.org/user/157725"
  2236. },
  2237. {
  2238. "name": "benjy",
  2239. "homepage": "https://www.drupal.org/user/1852732"
  2240. },
  2241. {
  2242. "name": "chx",
  2243. "homepage": "https://www.drupal.org/user/9446"
  2244. },
  2245. {
  2246. "name": "joachim",
  2247. "homepage": "https://www.drupal.org/user/107701"
  2248. },
  2249. {
  2250. "name": "vijaycs85",
  2251. "homepage": "https://www.drupal.org/user/93488"
  2252. }
  2253. ],
  2254. "description": "Helps developers work with configuration.",
  2255. "homepage": "https://www.drupal.org/project/config_devel",
  2256. "support": {
  2257. "source": "https://git.drupalcode.org/project/config_devel"
  2258. }
  2259. },
  2260. {
  2261. "name": "drupal/config_filter",
  2262. "version": "1.12.0",
  2263. "source": {
  2264. "type": "git",
  2265. "url": "https://git.drupalcode.org/project/config_filter.git",
  2266. "reference": "8.x-1.12"
  2267. },
  2268. "dist": {
  2269. "type": "zip",
  2270. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.12.zip",
  2271. "reference": "8.x-1.12",
  2272. "shasum": "364581700ca3a298f62950ff37dd309d0bfb8381"
  2273. },
  2274. "require": {
  2275. "drupal/core": "^8.8 || ^9 || ^10"
  2276. },
  2277. "suggest": {
  2278. "drupal/config_split": "Split site configuration for different environments."
  2279. },
  2280. "type": "drupal-module",
  2281. "extra": {
  2282. "drupal": {
  2283. "version": "8.x-1.12",
  2284. "datestamp": "1698308496",
  2285. "security-coverage": {
  2286. "status": "covered",
  2287. "message": "Covered by Drupal's security advisory policy"
  2288. }
  2289. }
  2290. },
  2291. "notification-url": "https://packages.drupal.org/8/downloads",
  2292. "license": [
  2293. "GPL-2.0-or-later"
  2294. ],
  2295. "authors": [
  2296. {
  2297. "name": "Fabian Bircher",
  2298. "homepage": "https://www.drupal.org/u/bircher",
  2299. "email": "opensource@fabianbircher.com",
  2300. "role": "Maintainer"
  2301. },
  2302. {
  2303. "name": "Nuvole Web",
  2304. "homepage": "http://nuvole.org",
  2305. "email": "info@nuvole.org",
  2306. "role": "Maintainer"
  2307. },
  2308. {
  2309. "name": "pescetti",
  2310. "homepage": "https://www.drupal.org/user/436244"
  2311. }
  2312. ],
  2313. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2314. "homepage": "https://www.drupal.org/project/config_filter",
  2315. "keywords": [
  2316. "Drupal",
  2317. "configuration",
  2318. "configuration management"
  2319. ],
  2320. "support": {
  2321. "source": "https://git.drupalcode.org/project/config_filter",
  2322. "issues": "https://www.drupal.org/project/issues/config_filter",
  2323. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2324. }
  2325. },
  2326. {
  2327. "name": "drupal/config_ignore",
  2328. "version": "2.4.0",
  2329. "source": {
  2330. "type": "git",
  2331. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2332. "reference": "8.x-2.4"
  2333. },
  2334. "dist": {
  2335. "type": "zip",
  2336. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.4.zip",
  2337. "reference": "8.x-2.4",
  2338. "shasum": "e0e45dde2d6927c5d26de59f352792fb6cf26554"
  2339. },
  2340. "require": {
  2341. "drupal/config_filter": "^1 || ^2",
  2342. "drupal/core": "^8 || ^9 || ^10"
  2343. },
  2344. "type": "drupal-module",
  2345. "extra": {
  2346. "drupal": {
  2347. "version": "8.x-2.4",
  2348. "datestamp": "1676045435",
  2349. "security-coverage": {
  2350. "status": "covered",
  2351. "message": "Covered by Drupal's security advisory policy"
  2352. }
  2353. }
  2354. },
  2355. "notification-url": "https://packages.drupal.org/8/downloads",
  2356. "license": [
  2357. "GPL-2.0-or-later"
  2358. ],
  2359. "authors": [
  2360. {
  2361. "name": "Tommy Lynge Jørgensen",
  2362. "homepage": "https://www.drupal.org/u/tlyngej",
  2363. "email": "tlyngej@gmail.com",
  2364. "role": "Maintainer"
  2365. },
  2366. {
  2367. "name": "Fabian Bircher",
  2368. "homepage": "https://www.drupal.org/u/bircher",
  2369. "role": "Maintainer"
  2370. },
  2371. {
  2372. "name": "tlyngej",
  2373. "homepage": "https://www.drupal.org/user/413139"
  2374. }
  2375. ],
  2376. "description": "Ignore certain configuration during import.",
  2377. "homepage": "http://drupal.org/project/config_ignore",
  2378. "support": {
  2379. "source": "https://git.drupalcode.org/project/config_ignore",
  2380. "issues": "https://drupal.org/project/config_ignore",
  2381. "irc": "irc://irc.freenode.org/drupal-contribute"
  2382. }
  2383. },
  2384. {
  2385. "name": "drupal/config_update",
  2386. "version": "1.7.0",
  2387. "source": {
  2388. "type": "git",
  2389. "url": "https://git.drupalcode.org/project/config_update.git",
  2390. "reference": "8.x-1.7"
  2391. },
  2392. "dist": {
  2393. "type": "zip",
  2394. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.7.zip",
  2395. "reference": "8.x-1.7",
  2396. "shasum": "8f079abf7c2ea826a27fa5224b0770a26404c968"
  2397. },
  2398. "require": {
  2399. "drupal/core": "^8 || ^9"
  2400. },
  2401. "type": "drupal-module",
  2402. "extra": {
  2403. "drupal": {
  2404. "version": "8.x-1.7",
  2405. "datestamp": "1586355587",
  2406. "security-coverage": {
  2407. "status": "covered",
  2408. "message": "Covered by Drupal's security advisory policy"
  2409. }
  2410. }
  2411. },
  2412. "notification-url": "https://packages.drupal.org/8/downloads",
  2413. "license": [
  2414. "GPL-2.0-or-later"
  2415. ],
  2416. "authors": [
  2417. {
  2418. "name": "jhodgdon",
  2419. "homepage": "https://www.drupal.org/user/155601"
  2420. },
  2421. {
  2422. "name": "nedjo",
  2423. "homepage": "https://www.drupal.org/user/4481"
  2424. }
  2425. ],
  2426. "description": "Provides basic revert and update functionality for other modules",
  2427. "homepage": "https://www.drupal.org/project/config_update",
  2428. "support": {
  2429. "source": "https://git.drupalcode.org/project/config_update"
  2430. }
  2431. },
  2432. {
  2433. "name": "drupal/context",
  2434. "version": "4.1.0",
  2435. "source": {
  2436. "type": "git",
  2437. "url": "https://git.drupalcode.org/project/context.git",
  2438. "reference": "8.x-4.1"
  2439. },
  2440. "dist": {
  2441. "type": "zip",
  2442. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.1.zip",
  2443. "reference": "8.x-4.1",
  2444. "shasum": "5cfee680f7299d82b584502479c85566bb4285c1"
  2445. },
  2446. "require": {
  2447. "drupal/core": "^8.8 || ^9"
  2448. },
  2449. "type": "drupal-module",
  2450. "extra": {
  2451. "drupal": {
  2452. "version": "8.x-4.1",
  2453. "datestamp": "1628187190",
  2454. "security-coverage": {
  2455. "status": "covered",
  2456. "message": "Covered by Drupal's security advisory policy"
  2457. }
  2458. }
  2459. },
  2460. "notification-url": "https://packages.drupal.org/8/downloads",
  2461. "license": [
  2462. "MIT"
  2463. ],
  2464. "authors": [
  2465. {
  2466. "name": "Christoffer Palm",
  2467. "homepage": "http://www.oddhill.se/",
  2468. "email": "christoffer.palm@oddhill.se",
  2469. "role": "Developer"
  2470. },
  2471. {
  2472. "name": "boshtian",
  2473. "homepage": "https://www.drupal.org/user/1773456"
  2474. },
  2475. {
  2476. "name": "colan",
  2477. "homepage": "https://www.drupal.org/user/58704"
  2478. },
  2479. {
  2480. "name": "emanaton",
  2481. "homepage": "https://www.drupal.org/user/120853"
  2482. },
  2483. {
  2484. "name": "febbraro",
  2485. "homepage": "https://www.drupal.org/user/43670"
  2486. },
  2487. {
  2488. "name": "fizk",
  2489. "homepage": "https://www.drupal.org/user/473174"
  2490. },
  2491. {
  2492. "name": "hass",
  2493. "homepage": "https://www.drupal.org/user/85918"
  2494. },
  2495. {
  2496. "name": "hefox",
  2497. "homepage": "https://www.drupal.org/user/426416"
  2498. },
  2499. {
  2500. "name": "jmiccolis",
  2501. "homepage": "https://www.drupal.org/user/31731"
  2502. },
  2503. {
  2504. "name": "Kristen Pol",
  2505. "homepage": "https://www.drupal.org/user/8389"
  2506. },
  2507. {
  2508. "name": "nedjo",
  2509. "homepage": "https://www.drupal.org/user/4481"
  2510. },
  2511. {
  2512. "name": "NormySan",
  2513. "homepage": "https://www.drupal.org/user/112352"
  2514. },
  2515. {
  2516. "name": "patricksettle",
  2517. "homepage": "https://www.drupal.org/user/26618"
  2518. },
  2519. {
  2520. "name": "paulocs",
  2521. "homepage": "https://www.drupal.org/user/3640109"
  2522. },
  2523. {
  2524. "name": "Steven Jones",
  2525. "homepage": "https://www.drupal.org/user/99644"
  2526. },
  2527. {
  2528. "name": "tekante",
  2529. "homepage": "https://www.drupal.org/user/640024"
  2530. },
  2531. {
  2532. "name": "yhahn",
  2533. "homepage": "https://www.drupal.org/user/264833"
  2534. }
  2535. ],
  2536. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2537. "homepage": "https://github.com/oddhill/context",
  2538. "keywords": [
  2539. "Drupal",
  2540. "block",
  2541. "conditions",
  2542. "context",
  2543. "visibility"
  2544. ],
  2545. "support": {
  2546. "source": "https://github.com/oddhill/context",
  2547. "issues": "https://github.com/oddhill/context/issues",
  2548. "docs": "https://github.com/oddhill/context"
  2549. }
  2550. },
  2551. {
  2552. "name": "drupal/core",
  2553. "version": "8.9.20",
  2554. "source": {
  2555. "type": "git",
  2556. "url": "https://github.com/drupal/core.git",
  2557. "reference": "39e2e1c32498338921923af66a90cb4a23a5b389"
  2558. },
  2559. "dist": {
  2560. "type": "zip",
  2561. "url": "https://api.github.com/repos/drupal/core/zipball/39e2e1c32498338921923af66a90cb4a23a5b389",
  2562. "reference": "39e2e1c32498338921923af66a90cb4a23a5b389",
  2563. "shasum": ""
  2564. },
  2565. "require": {
  2566. "asm89/stack-cors": "^1.1",
  2567. "composer/semver": "^1.0",
  2568. "doctrine/annotations": "^1.4",
  2569. "doctrine/common": "^2.7",
  2570. "easyrdf/easyrdf": "^0.9",
  2571. "egulias/email-validator": "^2.0",
  2572. "ext-date": "*",
  2573. "ext-dom": "*",
  2574. "ext-filter": "*",
  2575. "ext-gd": "*",
  2576. "ext-hash": "*",
  2577. "ext-json": "*",
  2578. "ext-pcre": "*",
  2579. "ext-pdo": "*",
  2580. "ext-session": "*",
  2581. "ext-simplexml": "*",
  2582. "ext-spl": "*",
  2583. "ext-tokenizer": "*",
  2584. "ext-xml": "*",
  2585. "guzzlehttp/guzzle": "^6.3",
  2586. "laminas/laminas-diactoros": "^1.8",
  2587. "laminas/laminas-feed": "^2.12",
  2588. "masterminds/html5": "^2.1",
  2589. "pear/archive_tar": "^1.4.14",
  2590. "php": "^7.0.8",
  2591. "psr/log": "^1.0",
  2592. "stack/builder": "^1.0",
  2593. "symfony-cmf/routing": "^1.4",
  2594. "symfony/class-loader": "~3.4.0",
  2595. "symfony/console": "~3.4.0",
  2596. "symfony/dependency-injection": "~3.4.26",
  2597. "symfony/event-dispatcher": "~3.4.0",
  2598. "symfony/http-foundation": "~3.4.35",
  2599. "symfony/http-kernel": "~3.4.14",
  2600. "symfony/polyfill-iconv": "^1.0",
  2601. "symfony/process": "~3.4.0",
  2602. "symfony/psr-http-message-bridge": "^1.1.2",
  2603. "symfony/routing": "~3.4.0",
  2604. "symfony/serializer": "~3.4.0",
  2605. "symfony/translation": "~3.4.0",
  2606. "symfony/validator": "~3.4.0",
  2607. "symfony/yaml": "~3.4.5",
  2608. "twig/twig": "^1.38.2",
  2609. "typo3/phar-stream-wrapper": "^3.1.3"
  2610. },
  2611. "conflict": {
  2612. "drupal/pathauto": "<1.6",
  2613. "drush/drush": "<8.1.10"
  2614. },
  2615. "replace": {
  2616. "drupal/action": "self.version",
  2617. "drupal/aggregator": "self.version",
  2618. "drupal/automated_cron": "self.version",
  2619. "drupal/ban": "self.version",
  2620. "drupal/bartik": "self.version",
  2621. "drupal/basic_auth": "self.version",
  2622. "drupal/big_pipe": "self.version",
  2623. "drupal/block": "self.version",
  2624. "drupal/block_content": "self.version",
  2625. "drupal/block_place": "self.version",
  2626. "drupal/book": "self.version",
  2627. "drupal/breakpoint": "self.version",
  2628. "drupal/ckeditor": "self.version",
  2629. "drupal/claro": "self.version",
  2630. "drupal/classy": "self.version",
  2631. "drupal/color": "self.version",
  2632. "drupal/comment": "self.version",
  2633. "drupal/config": "self.version",
  2634. "drupal/config_translation": "self.version",
  2635. "drupal/contact": "self.version",
  2636. "drupal/content_moderation": "self.version",
  2637. "drupal/content_translation": "self.version",
  2638. "drupal/contextual": "self.version",
  2639. "drupal/core-annotation": "self.version",
  2640. "drupal/core-assertion": "self.version",
  2641. "drupal/core-bridge": "self.version",
  2642. "drupal/core-class-finder": "self.version",
  2643. "drupal/core-datetime": "self.version",
  2644. "drupal/core-dependency-injection": "self.version",
  2645. "drupal/core-diff": "self.version",
  2646. "drupal/core-discovery": "self.version",
  2647. "drupal/core-event-dispatcher": "self.version",
  2648. "drupal/core-file-cache": "self.version",
  2649. "drupal/core-file-security": "self.version",
  2650. "drupal/core-filesystem": "self.version",
  2651. "drupal/core-gettext": "self.version",
  2652. "drupal/core-graph": "self.version",
  2653. "drupal/core-http-foundation": "self.version",
  2654. "drupal/core-php-storage": "self.version",
  2655. "drupal/core-plugin": "self.version",
  2656. "drupal/core-proxy-builder": "self.version",
  2657. "drupal/core-render": "self.version",
  2658. "drupal/core-serialization": "self.version",
  2659. "drupal/core-transliteration": "self.version",
  2660. "drupal/core-utility": "self.version",
  2661. "drupal/core-uuid": "self.version",
  2662. "drupal/core-version": "self.version",
  2663. "drupal/datetime": "self.version",
  2664. "drupal/datetime_range": "self.version",
  2665. "drupal/dblog": "self.version",
  2666. "drupal/dynamic_page_cache": "self.version",
  2667. "drupal/editor": "self.version",
  2668. "drupal/entity_reference": "self.version",
  2669. "drupal/field": "self.version",
  2670. "drupal/field_layout": "self.version",
  2671. "drupal/field_ui": "self.version",
  2672. "drupal/file": "self.version",
  2673. "drupal/filter": "self.version",
  2674. "drupal/forum": "self.version",
  2675. "drupal/hal": "self.version",
  2676. "drupal/help": "self.version",
  2677. "drupal/help_topics": "self.version",
  2678. "drupal/history": "self.version",
  2679. "drupal/image": "self.version",
  2680. "drupal/inline_form_errors": "self.version",
  2681. "drupal/jsonapi": "self.version",
  2682. "drupal/language": "self.version",
  2683. "drupal/layout_builder": "self.version",
  2684. "drupal/layout_discovery": "self.version",
  2685. "drupal/link": "self.version",
  2686. "drupal/locale": "self.version",
  2687. "drupal/media": "self.version",
  2688. "drupal/media_library": "self.version",
  2689. "drupal/menu_link_content": "self.version",
  2690. "drupal/menu_ui": "self.version",
  2691. "drupal/migrate": "self.version",
  2692. "drupal/migrate_drupal": "self.version",
  2693. "drupal/migrate_drupal_multilingual": "self.version",
  2694. "drupal/migrate_drupal_ui": "self.version",
  2695. "drupal/minimal": "self.version",
  2696. "drupal/node": "self.version",
  2697. "drupal/options": "self.version",
  2698. "drupal/page_cache": "self.version",
  2699. "drupal/path": "self.version",
  2700. "drupal/path_alias": "self.version",
  2701. "drupal/quickedit": "self.version",
  2702. "drupal/rdf": "self.version",
  2703. "drupal/responsive_image": "self.version",
  2704. "drupal/rest": "self.version",
  2705. "drupal/search": "self.version",
  2706. "drupal/serialization": "self.version",
  2707. "drupal/settings_tray": "self.version",
  2708. "drupal/seven": "self.version",
  2709. "drupal/shortcut": "self.version",
  2710. "drupal/simpletest": "self.version",
  2711. "drupal/standard": "self.version",
  2712. "drupal/stark": "self.version",
  2713. "drupal/statistics": "self.version",
  2714. "drupal/syslog": "self.version",
  2715. "drupal/system": "self.version",
  2716. "drupal/taxonomy": "self.version",
  2717. "drupal/telephone": "self.version",
  2718. "drupal/text": "self.version",
  2719. "drupal/toolbar": "self.version",
  2720. "drupal/tour": "self.version",
  2721. "drupal/tracker": "self.version",
  2722. "drupal/update": "self.version",
  2723. "drupal/user": "self.version",
  2724. "drupal/views": "self.version",
  2725. "drupal/views_ui": "self.version",
  2726. "drupal/workflows": "self.version",
  2727. "drupal/workspaces": "self.version"
  2728. },
  2729. "type": "drupal-core",
  2730. "extra": {
  2731. "drupal-scaffold": {
  2732. "file-mapping": {
  2733. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  2734. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  2735. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  2736. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  2737. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  2738. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  2739. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  2740. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  2741. "[web-root]/index.php": "assets/scaffold/files/index.php",
  2742. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  2743. "[web-root]/README.txt": "assets/scaffold/files/drupal.README.txt",
  2744. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  2745. "[web-root]/update.php": "assets/scaffold/files/update.php",
  2746. "[web-root]/web.config": "assets/scaffold/files/web.config",
  2747. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  2748. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  2749. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  2750. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  2751. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  2752. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  2753. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  2754. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  2755. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  2756. }
  2757. }
  2758. },
  2759. "autoload": {
  2760. "psr-4": {
  2761. "Drupal\\Core\\": "lib/Drupal/Core",
  2762. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver",
  2763. "Drupal\\Component\\": "lib/Drupal/Component"
  2764. },
  2765. "classmap": [
  2766. "lib/Drupal.php",
  2767. "lib/Drupal/Component/Utility/Timer.php",
  2768. "lib/Drupal/Component/Utility/Unicode.php",
  2769. "lib/Drupal/Core/Database/Database.php",
  2770. "lib/Drupal/Core/DrupalKernel.php",
  2771. "lib/Drupal/Core/DrupalKernelInterface.php",
  2772. "lib/Drupal/Core/Site/Settings.php"
  2773. ]
  2774. },
  2775. "notification-url": "https://packagist.org/downloads/",
  2776. "license": [
  2777. "GPL-2.0-or-later"
  2778. ],
  2779. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  2780. "support": {
  2781. "source": "https://github.com/drupal/core/tree/8.9.20"
  2782. },
  2783. "time": "2021-11-17T21:24:28+00:00"
  2784. },
  2785. {
  2786. "name": "drupal/core-composer-scaffold",
  2787. "version": "8.9.20",
  2788. "source": {
  2789. "type": "git",
  2790. "url": "https://github.com/drupal/core-composer-scaffold.git",
  2791. "reference": "c902d07cb49ef73777e2b33a39e54c2861a8c81d"
  2792. },
  2793. "dist": {
  2794. "type": "zip",
  2795. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/c902d07cb49ef73777e2b33a39e54c2861a8c81d",
  2796. "reference": "c902d07cb49ef73777e2b33a39e54c2861a8c81d",
  2797. "shasum": ""
  2798. },
  2799. "require": {
  2800. "composer-plugin-api": "^1 || ^2",
  2801. "php": ">=7.0.8"
  2802. },
  2803. "conflict": {
  2804. "drupal-composer/drupal-scaffold": "*"
  2805. },
  2806. "require-dev": {
  2807. "composer/composer": "^1.8@stable"
  2808. },
  2809. "type": "composer-plugin",
  2810. "extra": {
  2811. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  2812. "branch-alias": {
  2813. "dev-master": "1.0.x-dev"
  2814. }
  2815. },
  2816. "autoload": {
  2817. "psr-4": {
  2818. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  2819. }
  2820. },
  2821. "notification-url": "https://packagist.org/downloads/",
  2822. "license": [
  2823. "GPL-2.0-or-later"
  2824. ],
  2825. "description": "A flexible Composer project scaffold builder.",
  2826. "homepage": "https://www.drupal.org/project/drupal",
  2827. "keywords": [
  2828. "drupal"
  2829. ],
  2830. "support": {
  2831. "source": "https://github.com/drupal/core-composer-scaffold/tree/8.9.4"
  2832. },
  2833. "time": "2020-08-07T22:30:30+00:00"
  2834. },
  2835. {
  2836. "name": "drupal/core-recommended",
  2837. "version": "8.9.20",
  2838. "source": {
  2839. "type": "git",
  2840. "url": "https://github.com/drupal/core-recommended.git",
  2841. "reference": "49b9abf15bf4b82c5b47692e39770f2f3a76eaf1"
  2842. },
  2843. "dist": {
  2844. "type": "zip",
  2845. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/49b9abf15bf4b82c5b47692e39770f2f3a76eaf1",
  2846. "reference": "49b9abf15bf4b82c5b47692e39770f2f3a76eaf1",
  2847. "shasum": ""
  2848. },
  2849. "require": {
  2850. "asm89/stack-cors": "1.3.0",
  2851. "composer/semver": "1.5.1",
  2852. "doctrine/annotations": "v1.4.0",
  2853. "doctrine/cache": "v1.6.2",
  2854. "doctrine/collections": "v1.4.0",
  2855. "doctrine/common": "v2.7.3",
  2856. "doctrine/inflector": "v1.2.0",
  2857. "doctrine/lexer": "1.0.2",
  2858. "drupal/core": "8.9.20",
  2859. "easyrdf/easyrdf": "0.9.1",
  2860. "egulias/email-validator": "2.1.17",
  2861. "guzzlehttp/guzzle": "6.5.4",
  2862. "guzzlehttp/promises": "v1.3.1",
  2863. "guzzlehttp/psr7": "1.6.1",
  2864. "laminas/laminas-diactoros": "1.8.7p2",
  2865. "laminas/laminas-escaper": "2.6.1",
  2866. "laminas/laminas-feed": "2.12.2",
  2867. "laminas/laminas-stdlib": "3.2.1",
  2868. "laminas/laminas-zendframework-bridge": "1.0.4",
  2869. "masterminds/html5": "2.3.0",
  2870. "paragonie/random_compat": "v9.99.99",
  2871. "pear/archive_tar": "1.4.14",
  2872. "pear/console_getopt": "v1.4.3",
  2873. "pear/pear-core-minimal": "v1.10.10",
  2874. "pear/pear_exception": "v1.0.1",
  2875. "psr/container": "1.0.0",
  2876. "psr/http-message": "1.0.1",
  2877. "psr/log": "1.1.3",
  2878. "ralouphie/getallheaders": "3.0.3",
  2879. "stack/builder": "v1.0.5",
  2880. "symfony-cmf/routing": "1.4.1",
  2881. "symfony/class-loader": "v3.4.41",
  2882. "symfony/console": "v3.4.41",
  2883. "symfony/debug": "v3.4.41",
  2884. "symfony/dependency-injection": "v3.4.41",
  2885. "symfony/event-dispatcher": "v3.4.41",
  2886. "symfony/http-foundation": "v3.4.41",
  2887. "symfony/http-kernel": "v3.4.44",
  2888. "symfony/polyfill-ctype": "v1.17.0",
  2889. "symfony/polyfill-iconv": "v1.17.0",
  2890. "symfony/polyfill-intl-idn": "v1.17.0",
  2891. "symfony/polyfill-mbstring": "v1.17.0",
  2892. "symfony/polyfill-php56": "v1.17.0",
  2893. "symfony/polyfill-php70": "v1.17.0",
  2894. "symfony/polyfill-php72": "v1.17.0",
  2895. "symfony/polyfill-util": "v1.17.0",
  2896. "symfony/process": "v3.4.41",
  2897. "symfony/psr-http-message-bridge": "v1.1.2",
  2898. "symfony/routing": "v3.4.41",
  2899. "symfony/serializer": "v3.4.41",
  2900. "symfony/translation": "v3.4.41",
  2901. "symfony/validator": "v3.4.41",
  2902. "symfony/yaml": "v3.4.41",
  2903. "twig/twig": "v1.42.5",
  2904. "typo3/phar-stream-wrapper": "v3.1.4"
  2905. },
  2906. "conflict": {
  2907. "webflo/drupal-core-strict": "*"
  2908. },
  2909. "type": "metapackage",
  2910. "notification-url": "https://packagist.org/downloads/",
  2911. "license": [
  2912. "GPL-2.0-or-later"
  2913. ],
  2914. "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.",
  2915. "support": {
  2916. "source": "https://github.com/drupal/core-recommended/tree/8.9.20"
  2917. },
  2918. "time": "2021-11-17T21:24:28+00:00"
  2919. },
  2920. {
  2921. "name": "drupal/ctools",
  2922. "version": "3.4.0",
  2923. "source": {
  2924. "type": "git",
  2925. "url": "https://git.drupalcode.org/project/ctools.git",
  2926. "reference": "8.x-3.4"
  2927. },
  2928. "dist": {
  2929. "type": "zip",
  2930. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.4.zip",
  2931. "reference": "8.x-3.4",
  2932. "shasum": "016ca5abb7ac4ca720352a72e8989f3ef0e20539"
  2933. },
  2934. "require": {
  2935. "drupal/core": "^8.7.7 || ^9"
  2936. },
  2937. "type": "drupal-module",
  2938. "extra": {
  2939. "drupal": {
  2940. "version": "8.x-3.4",
  2941. "datestamp": "1585763383",
  2942. "security-coverage": {
  2943. "status": "covered",
  2944. "message": "Covered by Drupal's security advisory policy"
  2945. }
  2946. }
  2947. },
  2948. "notification-url": "https://packages.drupal.org/8/downloads",
  2949. "license": [
  2950. "GPL-2.0+"
  2951. ],
  2952. "authors": [
  2953. {
  2954. "name": "Kris Vanderwater (EclipseGc)",
  2955. "homepage": "https://www.drupal.org/u/eclipsegc",
  2956. "role": "Maintainer"
  2957. },
  2958. {
  2959. "name": "Jakob Perry (japerry)",
  2960. "homepage": "https://www.drupal.org/u/japerry",
  2961. "role": "Maintainer"
  2962. },
  2963. {
  2964. "name": "Tim Plunkett (tim.plunkett)",
  2965. "homepage": "https://www.drupal.org/u/timplunkett",
  2966. "role": "Maintainer"
  2967. },
  2968. {
  2969. "name": "James Gilliland (neclimdul)",
  2970. "homepage": "https://www.drupal.org/u/neclimdul",
  2971. "role": "Maintainer"
  2972. },
  2973. {
  2974. "name": "Daniel Wehner (dawehner)",
  2975. "homepage": "https://www.drupal.org/u/dawehner",
  2976. "role": "Maintainer"
  2977. },
  2978. {
  2979. "name": "joelpittet",
  2980. "homepage": "https://www.drupal.org/user/160302"
  2981. },
  2982. {
  2983. "name": "merlinofchaos",
  2984. "homepage": "https://www.drupal.org/user/26979"
  2985. },
  2986. {
  2987. "name": "neclimdul",
  2988. "homepage": "https://www.drupal.org/user/48673"
  2989. },
  2990. {
  2991. "name": "sdboyer",
  2992. "homepage": "https://www.drupal.org/user/146719"
  2993. },
  2994. {
  2995. "name": "sun",
  2996. "homepage": "https://www.drupal.org/user/54136"
  2997. },
  2998. {
  2999. "name": "tim.plunkett",
  3000. "homepage": "https://www.drupal.org/user/241634"
  3001. }
  3002. ],
  3003. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3004. "homepage": "https://www.drupal.org/project/ctools",
  3005. "support": {
  3006. "source": "https://git.drupalcode.org/project/ctools",
  3007. "issues": "https://www.drupal.org/project/issues/ctools"
  3008. }
  3009. },
  3010. {
  3011. "name": "drupal/date_range_formatter",
  3012. "version": "4.0.1",
  3013. "source": {
  3014. "type": "git",
  3015. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3016. "reference": "4.0.1"
  3017. },
  3018. "dist": {
  3019. "type": "zip",
  3020. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-4.0.1.zip",
  3021. "reference": "4.0.1",
  3022. "shasum": "d218f325c9a1e144ede86d34b87002330a4e8709"
  3023. },
  3024. "require": {
  3025. "drupal/core": "^8 || ^9 || ^10"
  3026. },
  3027. "type": "drupal-module",
  3028. "extra": {
  3029. "drupal": {
  3030. "version": "4.0.1",
  3031. "datestamp": "1661752209",
  3032. "security-coverage": {
  3033. "status": "covered",
  3034. "message": "Covered by Drupal's security advisory policy"
  3035. }
  3036. }
  3037. },
  3038. "notification-url": "https://packages.drupal.org/8/downloads",
  3039. "license": [
  3040. "GPL-2.0-or-later"
  3041. ],
  3042. "authors": [
  3043. {
  3044. "name": "maximpodorov",
  3045. "homepage": "https://www.drupal.org/user/515310"
  3046. },
  3047. {
  3048. "name": "sudishth",
  3049. "homepage": "https://www.drupal.org/user/1440562"
  3050. }
  3051. ],
  3052. "description": "Formats date ranges.",
  3053. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3054. "support": {
  3055. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3056. }
  3057. },
  3058. {
  3059. "name": "drupal/devel",
  3060. "version": "4.2.1",
  3061. "source": {
  3062. "type": "git",
  3063. "url": "https://git.drupalcode.org/project/devel.git",
  3064. "reference": "4.2.1"
  3065. },
  3066. "dist": {
  3067. "type": "zip",
  3068. "url": "https://ftp.drupal.org/files/projects/devel-4.2.1.zip",
  3069. "reference": "4.2.1",
  3070. "shasum": "aa08379bad81cb2e604ee9a0b9e2aabd86fae13f"
  3071. },
  3072. "require": {
  3073. "doctrine/common": "^2.7",
  3074. "drupal/core": "^8.8 || ^9",
  3075. "symfony/var-dumper": "^4 || ^5"
  3076. },
  3077. "conflict": {
  3078. "kint-php/kint": "<3"
  3079. },
  3080. "require-dev": {
  3081. "drush/drush": "^10"
  3082. },
  3083. "suggest": {
  3084. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3085. },
  3086. "type": "drupal-module",
  3087. "extra": {
  3088. "drupal": {
  3089. "version": "4.2.1",
  3090. "datestamp": "1664317444",
  3091. "security-coverage": {
  3092. "status": "covered",
  3093. "message": "Covered by Drupal's security advisory policy"
  3094. }
  3095. },
  3096. "drush": {
  3097. "services": {
  3098. "drush.services.yml": "^9 || ^10"
  3099. }
  3100. }
  3101. },
  3102. "notification-url": "https://packages.drupal.org/8/downloads",
  3103. "license": [
  3104. "GPL-2.0-or-later"
  3105. ],
  3106. "authors": [
  3107. {
  3108. "name": "moshe weitzman",
  3109. "homepage": "https://www.drupal.org/user/23"
  3110. }
  3111. ],
  3112. "description": "Various blocks, pages, and functions for developers.",
  3113. "homepage": "https://www.drupal.org/project/devel",
  3114. "support": {
  3115. "source": "https://gitlab.com/drupalspoons/devel",
  3116. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3117. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3118. }
  3119. },
  3120. {
  3121. "name": "drupal/domain",
  3122. "version": "1.0.0-beta8",
  3123. "source": {
  3124. "type": "git",
  3125. "url": "https://git.drupalcode.org/project/domain.git",
  3126. "reference": "8.x-1.0-beta8"
  3127. },
  3128. "dist": {
  3129. "type": "zip",
  3130. "url": "https://ftp.drupal.org/files/projects/domain-8.x-1.0-beta8.zip",
  3131. "reference": "8.x-1.0-beta8",
  3132. "shasum": "24deb7c239b3d0f9cd177a9e0893a9ecb5cf81d3"
  3133. },
  3134. "require": {
  3135. "drupal/core": "^8 || ^9"
  3136. },
  3137. "require-dev": {
  3138. "drupal/domain_access": "*",
  3139. "drupal/domain_config": "*"
  3140. },
  3141. "type": "drupal-module",
  3142. "extra": {
  3143. "drupal": {
  3144. "version": "8.x-1.0-beta8",
  3145. "datestamp": "1677511311",
  3146. "security-coverage": {
  3147. "status": "not-covered",
  3148. "message": "Beta releases are not covered by Drupal security advisories."
  3149. }
  3150. }
  3151. },
  3152. "notification-url": "https://packages.drupal.org/8/downloads",
  3153. "license": [
  3154. "GPL-2.0-or-later"
  3155. ],
  3156. "authors": [
  3157. {
  3158. "name": "agentrickard",
  3159. "homepage": "https://www.drupal.org/user/20975"
  3160. },
  3161. {
  3162. "name": "nonsie",
  3163. "homepage": "https://www.drupal.org/user/29899"
  3164. },
  3165. {
  3166. "name": "webflo",
  3167. "homepage": "https://www.drupal.org/user/254778"
  3168. }
  3169. ],
  3170. "description": "Creates domain records within a Drupal installation.",
  3171. "homepage": "https://www.drupal.org/project/domain",
  3172. "support": {
  3173. "source": "https://git.drupalcode.org/project/domain"
  3174. }
  3175. },
  3176. {
  3177. "name": "drupal/email_registration",
  3178. "version": "1.1.0",
  3179. "source": {
  3180. "type": "git",
  3181. "url": "https://git.drupalcode.org/project/email_registration.git",
  3182. "reference": "8.x-1.1"
  3183. },
  3184. "dist": {
  3185. "type": "zip",
  3186. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.1.zip",
  3187. "reference": "8.x-1.1",
  3188. "shasum": "cc0eef597216a6d025d9017df104f2693b029f96"
  3189. },
  3190. "require": {
  3191. "drupal/core": "^8.7.7 || ^9"
  3192. },
  3193. "conflict": {
  3194. "drupal/commerce": "<2.12"
  3195. },
  3196. "require-dev": {
  3197. "drupal/commerce": "^2.0"
  3198. },
  3199. "type": "drupal-module",
  3200. "extra": {
  3201. "drupal": {
  3202. "version": "8.x-1.1",
  3203. "datestamp": "1592317072",
  3204. "security-coverage": {
  3205. "status": "covered",
  3206. "message": "Covered by Drupal's security advisory policy"
  3207. }
  3208. }
  3209. },
  3210. "notification-url": "https://packages.drupal.org/8/downloads",
  3211. "license": [
  3212. "GPL-2.0-or-later"
  3213. ],
  3214. "authors": [
  3215. {
  3216. "name": "Greg Knaddison (greggles)",
  3217. "homepage": "https://www.drupal.org/u/greggles",
  3218. "role": "Maintainer"
  3219. },
  3220. {
  3221. "name": "Andrey Postnikov (andypost)",
  3222. "homepage": "https://www.drupal.org/u/andypost",
  3223. "role": "Maintainer"
  3224. },
  3225. {
  3226. "name": "Chris Herberte",
  3227. "homepage": "https://www.drupal.org/u/chris-herberte",
  3228. "role": "Maintainer"
  3229. },
  3230. {
  3231. "name": "Moshe Weitzman (moshe weitzman)",
  3232. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3233. "role": "Maintainer"
  3234. }
  3235. ],
  3236. "description": "Allows users to register with an email address as their username.",
  3237. "homepage": "https://www.drupal.org/project/email_registration",
  3238. "support": {
  3239. "source": "https://git.drupalcode.org/project/email_registration",
  3240. "issues": "http://drupal.org/project/issues/email_registration"
  3241. }
  3242. },
  3243. {
  3244. "name": "drupal/entity",
  3245. "version": "dev-1.x",
  3246. "source": {
  3247. "type": "git",
  3248. "url": "https://git.drupalcode.org/project/entity.git",
  3249. "reference": "3d3a99924df1b65564a417e74802bb524691dfd8"
  3250. },
  3251. "require": {
  3252. "drupal/core": "^8.8 || ^9"
  3253. },
  3254. "type": "drupal-module",
  3255. "extra": {
  3256. "branch-alias": {
  3257. "dev-1.x": "1.x-dev"
  3258. },
  3259. "drupal": {
  3260. "version": "8.x-1.0+5-dev",
  3261. "datestamp": "1594294834",
  3262. "security-coverage": {
  3263. "status": "not-covered",
  3264. "message": "Dev releases are not covered by Drupal security advisories."
  3265. }
  3266. }
  3267. },
  3268. "notification-url": "https://packages.drupal.org/8/downloads",
  3269. "license": [
  3270. "GPL-2.0-or-later"
  3271. ],
  3272. "authors": [
  3273. {
  3274. "name": "Berdir",
  3275. "homepage": "https://www.drupal.org/user/214652"
  3276. },
  3277. {
  3278. "name": "bojanz",
  3279. "homepage": "https://www.drupal.org/user/86106"
  3280. },
  3281. {
  3282. "name": "dawehner",
  3283. "homepage": "https://www.drupal.org/user/99340"
  3284. },
  3285. {
  3286. "name": "dixon_",
  3287. "homepage": "https://www.drupal.org/user/239911"
  3288. },
  3289. {
  3290. "name": "fago",
  3291. "homepage": "https://www.drupal.org/user/16747"
  3292. },
  3293. {
  3294. "name": "mglaman",
  3295. "homepage": "https://www.drupal.org/user/2416470"
  3296. }
  3297. ],
  3298. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3299. "homepage": "http://drupal.org/project/entity",
  3300. "support": {
  3301. "source": "https://git.drupalcode.org/project/entity"
  3302. },
  3303. "time": "2020-08-08T09:14:05+00:00"
  3304. },
  3305. {
  3306. "name": "drupal/features",
  3307. "version": "3.11.0",
  3308. "source": {
  3309. "type": "git",
  3310. "url": "https://git.drupalcode.org/project/features.git",
  3311. "reference": "8.x-3.11"
  3312. },
  3313. "dist": {
  3314. "type": "zip",
  3315. "url": "https://ftp.drupal.org/files/projects/features-8.x-3.11.zip",
  3316. "reference": "8.x-3.11",
  3317. "shasum": "cfdb1de2fb791856069c50b63eb28cb8d7c93442"
  3318. },
  3319. "require": {
  3320. "drupal/config_update": "^1.4",
  3321. "drupal/core": "^8.8 || ^9"
  3322. },
  3323. "type": "drupal-module",
  3324. "extra": {
  3325. "drupal": {
  3326. "version": "8.x-3.11",
  3327. "datestamp": "1591023154",
  3328. "security-coverage": {
  3329. "status": "covered",
  3330. "message": "Covered by Drupal's security advisory policy"
  3331. }
  3332. },
  3333. "drush": {
  3334. "services": {
  3335. "drush.services.yml": "^9"
  3336. }
  3337. }
  3338. },
  3339. "notification-url": "https://packages.drupal.org/8/downloads",
  3340. "license": [
  3341. "GPL-2.0-or-later"
  3342. ],
  3343. "authors": [
  3344. {
  3345. "name": "dawehner",
  3346. "homepage": "https://www.drupal.org/user/99340"
  3347. },
  3348. {
  3349. "name": "donquixote",
  3350. "homepage": "https://www.drupal.org/user/459338"
  3351. },
  3352. {
  3353. "name": "e2thex",
  3354. "homepage": "https://www.drupal.org/user/189123"
  3355. },
  3356. {
  3357. "name": "febbraro",
  3358. "homepage": "https://www.drupal.org/user/43670"
  3359. },
  3360. {
  3361. "name": "flocondetoile",
  3362. "homepage": "https://www.drupal.org/user/2006064"
  3363. },
  3364. {
  3365. "name": "jmiccolis",
  3366. "homepage": "https://www.drupal.org/user/31731"
  3367. },
  3368. {
  3369. "name": "joseph.olstad",
  3370. "homepage": "https://www.drupal.org/user/1321830"
  3371. },
  3372. {
  3373. "name": "mpotter",
  3374. "homepage": "https://www.drupal.org/user/616192"
  3375. },
  3376. {
  3377. "name": "nedjo",
  3378. "homepage": "https://www.drupal.org/user/4481"
  3379. },
  3380. {
  3381. "name": "tim.plunkett",
  3382. "homepage": "https://www.drupal.org/user/241634"
  3383. }
  3384. ],
  3385. "description": "Enables administrators to package configuration into modules",
  3386. "homepage": "https://www.drupal.org/project/features",
  3387. "support": {
  3388. "source": "https://git.drupalcode.org/project/features"
  3389. }
  3390. },
  3391. {
  3392. "name": "drupal/field_group",
  3393. "version": "3.1.0",
  3394. "source": {
  3395. "type": "git",
  3396. "url": "https://git.drupalcode.org/project/field_group.git",
  3397. "reference": "8.x-3.1"
  3398. },
  3399. "dist": {
  3400. "type": "zip",
  3401. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.1.zip",
  3402. "reference": "8.x-3.1",
  3403. "shasum": "8a719eaea594f0ba874172831cb28da93c66b77a"
  3404. },
  3405. "require": {
  3406. "drupal/core": "^8.8 || ^9"
  3407. },
  3408. "require-dev": {
  3409. "drupal/jquery_ui_accordion": "^1.0"
  3410. },
  3411. "type": "drupal-module",
  3412. "extra": {
  3413. "drupal": {
  3414. "version": "8.x-3.1",
  3415. "datestamp": "1591772567",
  3416. "security-coverage": {
  3417. "status": "covered",
  3418. "message": "Covered by Drupal's security advisory policy"
  3419. }
  3420. }
  3421. },
  3422. "notification-url": "https://packages.drupal.org/8/downloads",
  3423. "license": [
  3424. "GPL-2.0-or-later"
  3425. ],
  3426. "authors": [
  3427. {
  3428. "name": "Hydra",
  3429. "homepage": "https://www.drupal.org/user/647364"
  3430. },
  3431. {
  3432. "name": "Stalski",
  3433. "homepage": "https://www.drupal.org/user/322618"
  3434. },
  3435. {
  3436. "name": "jyve",
  3437. "homepage": "https://www.drupal.org/user/591438"
  3438. },
  3439. {
  3440. "name": "nils.destoop",
  3441. "homepage": "https://www.drupal.org/user/361625"
  3442. },
  3443. {
  3444. "name": "swentel",
  3445. "homepage": "https://www.drupal.org/user/107403"
  3446. }
  3447. ],
  3448. "description": "Provides the field_group module.",
  3449. "homepage": "https://www.drupal.org/project/field_group",
  3450. "support": {
  3451. "source": "https://git.drupalcode.org/project/field_group",
  3452. "issues": "https://www.drupal.org/project/issues/field_group"
  3453. }
  3454. },
  3455. {
  3456. "name": "drupal/filefield_sources",
  3457. "version": "1.0.0-alpha5",
  3458. "source": {
  3459. "type": "git",
  3460. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  3461. "reference": "8.x-1.0-alpha5"
  3462. },
  3463. "dist": {
  3464. "type": "zip",
  3465. "url": "https://ftp.drupal.org/files/projects/filefield_sources-8.x-1.0-alpha5.zip",
  3466. "reference": "8.x-1.0-alpha5",
  3467. "shasum": "e2438610bf829a82c6415f88f708b2dc73d91c49"
  3468. },
  3469. "require": {
  3470. "drupal/core": "^8 || ^9"
  3471. },
  3472. "require-dev": {
  3473. "drupal/imce": "^2.3"
  3474. },
  3475. "type": "drupal-module",
  3476. "extra": {
  3477. "drupal": {
  3478. "version": "8.x-1.0-alpha5",
  3479. "datestamp": "1642555269",
  3480. "security-coverage": {
  3481. "status": "not-covered",
  3482. "message": "Alpha releases are not covered by Drupal security advisories."
  3483. }
  3484. }
  3485. },
  3486. "notification-url": "https://packages.drupal.org/8/downloads",
  3487. "license": [
  3488. "GPL-2.0-or-later"
  3489. ],
  3490. "authors": [
  3491. {
  3492. "name": "Nate Lampton (quicksketch)",
  3493. "homepage": "https://www.drupal.org/u/quicksketch",
  3494. "role": "Maintainer"
  3495. },
  3496. {
  3497. "name": "Andrey Khromyshev (profak)",
  3498. "homepage": "https://www.drupal.org/u/profak",
  3499. "role": "Maintainer"
  3500. },
  3501. {
  3502. "name": "David Valdez (gnuget)",
  3503. "homepage": "https://www.drupal.org/u/gnuget",
  3504. "role": "Maintainer"
  3505. },
  3506. {
  3507. "name": "quicksketch",
  3508. "homepage": "https://www.drupal.org/user/35821"
  3509. }
  3510. ],
  3511. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  3512. "homepage": "https://www.drupal.org/project/filefield_sources",
  3513. "support": {
  3514. "source": "https://git.drupalcode.org/project/filefield_sources",
  3515. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  3516. "irc": "irc://irc.freenode.org/drupal-contribute"
  3517. }
  3518. },
  3519. {
  3520. "name": "drupal/filter_perms",
  3521. "version": "1.0.0-alpha1",
  3522. "source": {
  3523. "type": "git",
  3524. "url": "https://git.drupalcode.org/project/filter_perms.git",
  3525. "reference": "8.x-1.0-alpha1"
  3526. },
  3527. "dist": {
  3528. "type": "zip",
  3529. "url": "https://ftp.drupal.org/files/projects/filter_perms-8.x-1.0-alpha1.zip",
  3530. "reference": "8.x-1.0-alpha1",
  3531. "shasum": "5a4bf4332f97b238864191042198f9f9a85cab26"
  3532. },
  3533. "require": {
  3534. "drupal/core": "^8 || ^9"
  3535. },
  3536. "type": "drupal-module",
  3537. "extra": {
  3538. "drupal": {
  3539. "version": "8.x-1.0-alpha1",
  3540. "datestamp": "1595202904",
  3541. "security-coverage": {
  3542. "status": "not-covered",
  3543. "message": "Alpha releases are not covered by Drupal security advisories."
  3544. }
  3545. }
  3546. },
  3547. "notification-url": "https://packages.drupal.org/8/downloads",
  3548. "license": [
  3549. "GPL-2.0-or-later"
  3550. ],
  3551. "authors": [
  3552. {
  3553. "name": "cYu",
  3554. "homepage": "https://www.drupal.org/user/202205"
  3555. },
  3556. {
  3557. "name": "deekayen",
  3558. "homepage": "https://www.drupal.org/user/972"
  3559. },
  3560. {
  3561. "name": "ivavictoria",
  3562. "homepage": "https://www.drupal.org/user/3061533"
  3563. },
  3564. {
  3565. "name": "justcaldwell",
  3566. "homepage": "https://www.drupal.org/user/290069"
  3567. },
  3568. {
  3569. "name": "mgbellaire",
  3570. "homepage": "https://www.drupal.org/user/1831932"
  3571. },
  3572. {
  3573. "name": "willzyx",
  3574. "homepage": "https://www.drupal.org/user/1043862"
  3575. }
  3576. ],
  3577. "description": "Provides role and module filters to simplify the user permissions page.",
  3578. "homepage": "https://www.drupal.org/project/filter_perms",
  3579. "support": {
  3580. "source": "https://git.drupalcode.org/project/filter_perms"
  3581. }
  3582. },
  3583. {
  3584. "name": "drupal/honeypot",
  3585. "version": "2.0.2",
  3586. "source": {
  3587. "type": "git",
  3588. "url": "https://git.drupalcode.org/project/honeypot.git",
  3589. "reference": "2.0.2"
  3590. },
  3591. "dist": {
  3592. "type": "zip",
  3593. "url": "https://ftp.drupal.org/files/projects/honeypot-2.0.2.zip",
  3594. "reference": "2.0.2",
  3595. "shasum": "8a3e15509f649c39e88c4f22105f12fb6445fc62"
  3596. },
  3597. "require": {
  3598. "drupal/core": "^8.8.2 || ^9"
  3599. },
  3600. "type": "drupal-module",
  3601. "extra": {
  3602. "drupal": {
  3603. "version": "2.0.2",
  3604. "datestamp": "1651895165",
  3605. "security-coverage": {
  3606. "status": "covered",
  3607. "message": "Covered by Drupal's security advisory policy"
  3608. }
  3609. }
  3610. },
  3611. "notification-url": "https://packages.drupal.org/8/downloads",
  3612. "license": [
  3613. "GPL-2.0-or-later"
  3614. ],
  3615. "authors": [
  3616. {
  3617. "name": "Jeff Geerling",
  3618. "homepage": "https://www.drupal.org/user/389011",
  3619. "email": "geerlingguy@mac.com"
  3620. },
  3621. {
  3622. "name": "Manuel Garcia",
  3623. "homepage": "https://www.drupal.org/user/213194"
  3624. },
  3625. {
  3626. "name": "TR",
  3627. "homepage": "https://www.drupal.org/user/202830"
  3628. },
  3629. {
  3630. "name": "vijaycs85",
  3631. "homepage": "https://www.drupal.org/user/93488"
  3632. }
  3633. ],
  3634. "description": "Mitigates spam form submissions using the honeypot method.",
  3635. "homepage": "https://www.drupal.org/project/honeypot",
  3636. "keywords": [
  3637. "deterrent",
  3638. "form",
  3639. "honeypot",
  3640. "honeytrap",
  3641. "php",
  3642. "spam"
  3643. ],
  3644. "support": {
  3645. "source": "https://git.drupalcode.org/project/honeypot",
  3646. "issues": "https://www.drupal.org/project/issues/honeypot"
  3647. }
  3648. },
  3649. {
  3650. "name": "drupal/jquery_ui",
  3651. "version": "1.4.0",
  3652. "source": {
  3653. "type": "git",
  3654. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  3655. "reference": "8.x-1.4"
  3656. },
  3657. "dist": {
  3658. "type": "zip",
  3659. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.4.zip",
  3660. "reference": "8.x-1.4",
  3661. "shasum": "64c19ecc8902e2b4b1ab0cc5f5fe28dbc83bfebe"
  3662. },
  3663. "require": {
  3664. "drupal/core": "^8 || ^9"
  3665. },
  3666. "type": "drupal-module",
  3667. "extra": {
  3668. "drupal": {
  3669. "version": "8.x-1.4",
  3670. "datestamp": "1582149957",
  3671. "security-coverage": {
  3672. "status": "covered",
  3673. "message": "Covered by Drupal's security advisory policy"
  3674. }
  3675. }
  3676. },
  3677. "notification-url": "https://packages.drupal.org/8/downloads",
  3678. "license": [
  3679. "GPL-2.0-or-later"
  3680. ],
  3681. "authors": [
  3682. {
  3683. "name": "bnjmnm",
  3684. "homepage": "https://www.drupal.org/user/2369194"
  3685. },
  3686. {
  3687. "name": "jjeff",
  3688. "homepage": "https://www.drupal.org/user/17190"
  3689. },
  3690. {
  3691. "name": "lauriii",
  3692. "homepage": "https://www.drupal.org/user/1078742"
  3693. },
  3694. {
  3695. "name": "litwol",
  3696. "homepage": "https://www.drupal.org/user/78134"
  3697. },
  3698. {
  3699. "name": "mfb",
  3700. "homepage": "https://www.drupal.org/user/12302"
  3701. },
  3702. {
  3703. "name": "mfer",
  3704. "homepage": "https://www.drupal.org/user/25701"
  3705. },
  3706. {
  3707. "name": "mikelutz",
  3708. "homepage": "https://www.drupal.org/user/2972409"
  3709. },
  3710. {
  3711. "name": "nod_",
  3712. "homepage": "https://www.drupal.org/user/598310"
  3713. },
  3714. {
  3715. "name": "phenaproxima",
  3716. "homepage": "https://www.drupal.org/user/205645"
  3717. },
  3718. {
  3719. "name": "RobLoach",
  3720. "homepage": "https://www.drupal.org/user/61114"
  3721. },
  3722. {
  3723. "name": "sun",
  3724. "homepage": "https://www.drupal.org/user/54136"
  3725. },
  3726. {
  3727. "name": "webchick",
  3728. "homepage": "https://www.drupal.org/user/24967"
  3729. },
  3730. {
  3731. "name": "Wim Leers",
  3732. "homepage": "https://www.drupal.org/user/99777"
  3733. },
  3734. {
  3735. "name": "zrpnr",
  3736. "homepage": "https://www.drupal.org/user/1448368"
  3737. }
  3738. ],
  3739. "description": "Provides jQuery UI library.",
  3740. "homepage": "https://www.drupal.org/project/jquery_ui",
  3741. "support": {
  3742. "source": "https://git.drupalcode.org/project/jquery_ui"
  3743. }
  3744. },
  3745. {
  3746. "name": "drupal/jquery_ui_draggable",
  3747. "version": "1.2.0",
  3748. "source": {
  3749. "type": "git",
  3750. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  3751. "reference": "8.x-1.2"
  3752. },
  3753. "dist": {
  3754. "type": "zip",
  3755. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-8.x-1.2.zip",
  3756. "reference": "8.x-1.2",
  3757. "shasum": "09e17046e38aebf84ed573822b0d5be6de3f0c94"
  3758. },
  3759. "require": {
  3760. "drupal/core": "^8 || ^9",
  3761. "drupal/jquery_ui": "*"
  3762. },
  3763. "type": "drupal-module",
  3764. "extra": {
  3765. "drupal": {
  3766. "version": "8.x-1.2",
  3767. "datestamp": "1582150027",
  3768. "security-coverage": {
  3769. "status": "covered",
  3770. "message": "Covered by Drupal's security advisory policy"
  3771. }
  3772. }
  3773. },
  3774. "notification-url": "https://packages.drupal.org/8/downloads",
  3775. "license": [
  3776. "GPL-2.0-or-later"
  3777. ],
  3778. "authors": [
  3779. {
  3780. "name": "bnjmnm",
  3781. "homepage": "https://www.drupal.org/user/2369194"
  3782. },
  3783. {
  3784. "name": "lauriii",
  3785. "homepage": "https://www.drupal.org/user/1078742"
  3786. },
  3787. {
  3788. "name": "zrpnr",
  3789. "homepage": "https://www.drupal.org/user/1448368"
  3790. }
  3791. ],
  3792. "description": "Provides jQuery UI Draggable library.",
  3793. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  3794. "support": {
  3795. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  3796. }
  3797. },
  3798. {
  3799. "name": "drupal/jquery_ui_droppable",
  3800. "version": "1.2.0",
  3801. "source": {
  3802. "type": "git",
  3803. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  3804. "reference": "8.x-1.2"
  3805. },
  3806. "dist": {
  3807. "type": "zip",
  3808. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-8.x-1.2.zip",
  3809. "reference": "8.x-1.2",
  3810. "shasum": "6e53043f2d3215f211721eea4d4c6ab5d1672b14"
  3811. },
  3812. "require": {
  3813. "drupal/core": "^8 || ^9",
  3814. "drupal/jquery_ui": "*",
  3815. "drupal/jquery_ui_draggable": "*"
  3816. },
  3817. "type": "drupal-module",
  3818. "extra": {
  3819. "drupal": {
  3820. "version": "8.x-1.2",
  3821. "datestamp": "1582150071",
  3822. "security-coverage": {
  3823. "status": "covered",
  3824. "message": "Covered by Drupal's security advisory policy"
  3825. }
  3826. }
  3827. },
  3828. "notification-url": "https://packages.drupal.org/8/downloads",
  3829. "license": [
  3830. "GPL-2.0-or-later"
  3831. ],
  3832. "authors": [
  3833. {
  3834. "name": "bnjmnm",
  3835. "homepage": "https://www.drupal.org/user/2369194"
  3836. },
  3837. {
  3838. "name": "lauriii",
  3839. "homepage": "https://www.drupal.org/user/1078742"
  3840. },
  3841. {
  3842. "name": "zrpnr",
  3843. "homepage": "https://www.drupal.org/user/1448368"
  3844. }
  3845. ],
  3846. "description": "Provides jQuery UI Droppable library.",
  3847. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  3848. "support": {
  3849. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  3850. }
  3851. },
  3852. {
  3853. "name": "drupal/jquery_ui_sortable",
  3854. "version": "1.1.0",
  3855. "source": {
  3856. "type": "git",
  3857. "url": "https://git.drupalcode.org/project/jquery_ui_sortable.git",
  3858. "reference": "8.x-1.1"
  3859. },
  3860. "dist": {
  3861. "type": "zip",
  3862. "url": "https://ftp.drupal.org/files/projects/jquery_ui_sortable-8.x-1.1.zip",
  3863. "reference": "8.x-1.1",
  3864. "shasum": "dbb64f4e8f57b08a3e0ddd2e5cc3ba8d27d2722f"
  3865. },
  3866. "require": {
  3867. "drupal/core": "^8 || ^9",
  3868. "drupal/jquery_ui": "*"
  3869. },
  3870. "type": "drupal-module",
  3871. "extra": {
  3872. "drupal": {
  3873. "version": "8.x-1.1",
  3874. "datestamp": "1583174744",
  3875. "security-coverage": {
  3876. "status": "covered",
  3877. "message": "Covered by Drupal's security advisory policy"
  3878. }
  3879. }
  3880. },
  3881. "notification-url": "https://packages.drupal.org/8/downloads",
  3882. "license": [
  3883. "GPL-2.0-or-later"
  3884. ],
  3885. "authors": [
  3886. {
  3887. "name": "bnjmnm",
  3888. "homepage": "https://www.drupal.org/user/2369194"
  3889. },
  3890. {
  3891. "name": "lauriii",
  3892. "homepage": "https://www.drupal.org/user/1078742"
  3893. },
  3894. {
  3895. "name": "zrpnr",
  3896. "homepage": "https://www.drupal.org/user/1448368"
  3897. }
  3898. ],
  3899. "description": "Provides jQuery UI Sortable library.",
  3900. "homepage": "https://www.drupal.org/project/jquery_ui_sortable",
  3901. "support": {
  3902. "source": "https://git.drupalcode.org/project/jquery_ui_sortable"
  3903. }
  3904. },
  3905. {
  3906. "name": "drupal/linkit",
  3907. "version": "5.0.0-beta11",
  3908. "source": {
  3909. "type": "git",
  3910. "url": "https://git.drupalcode.org/project/linkit.git",
  3911. "reference": "8.x-5.0-beta11"
  3912. },
  3913. "dist": {
  3914. "type": "zip",
  3915. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta11.zip",
  3916. "reference": "8.x-5.0-beta11",
  3917. "shasum": "9133a3e61deafdd6a9d5a8b31a1f42e16051ee97"
  3918. },
  3919. "require": {
  3920. "drupal/core": "^8.7.7 || ^9"
  3921. },
  3922. "require-dev": {
  3923. "drupal/imce": "*"
  3924. },
  3925. "type": "drupal-module",
  3926. "extra": {
  3927. "drupal": {
  3928. "version": "8.x-5.0-beta11",
  3929. "datestamp": "1591971693",
  3930. "security-coverage": {
  3931. "status": "not-covered",
  3932. "message": "Beta releases are not covered by Drupal security advisories."
  3933. }
  3934. }
  3935. },
  3936. "notification-url": "https://packages.drupal.org/8/downloads",
  3937. "license": [
  3938. "GPL-2.0+"
  3939. ],
  3940. "authors": [
  3941. {
  3942. "name": "Emil Stjerneman",
  3943. "homepage": "https://stjerneman.com",
  3944. "email": "emil@stjerneman.com",
  3945. "role": "Maintainer"
  3946. }
  3947. ],
  3948. "description": "Linkit - Enriched linking experience",
  3949. "homepage": "http://drupal.org/project/linkit",
  3950. "support": {
  3951. "source": "http://cgit.drupalcode.org/linkit",
  3952. "issues": "http://drupal.org/project/linkit"
  3953. }
  3954. },
  3955. {
  3956. "name": "drupal/login_emailusername",
  3957. "version": "2.1.0",
  3958. "source": {
  3959. "type": "git",
  3960. "url": "https://git.drupalcode.org/project/login_emailusername.git",
  3961. "reference": "2.1.0"
  3962. },
  3963. "dist": {
  3964. "type": "zip",
  3965. "url": "https://ftp.drupal.org/files/projects/login_emailusername-2.1.0.zip",
  3966. "reference": "2.1.0",
  3967. "shasum": "5a3858d06e7d67110a6cd8eda38cbfeb350f115c"
  3968. },
  3969. "require": {
  3970. "drupal/core": "^8.8 || ^9 || ^10"
  3971. },
  3972. "type": "drupal-module",
  3973. "extra": {
  3974. "drupal": {
  3975. "version": "2.1.0",
  3976. "datestamp": "1677072401",
  3977. "security-coverage": {
  3978. "status": "covered",
  3979. "message": "Covered by Drupal's security advisory policy"
  3980. }
  3981. },
  3982. "branch-alias": {
  3983. "dev-8.x-1.x": "8.1.x-dev"
  3984. }
  3985. },
  3986. "notification-url": "https://packages.drupal.org/8/downloads",
  3987. "license": [
  3988. "GPL-2.0-or-later"
  3989. ],
  3990. "authors": [
  3991. {
  3992. "name": "See contributors",
  3993. "homepage": "https://www.drupal.org/node/2820429/committers",
  3994. "role": "contributor"
  3995. },
  3996. {
  3997. "name": "rjjakes",
  3998. "homepage": "https://www.drupal.org/user/3457245"
  3999. },
  4000. {
  4001. "name": "VladimirAus",
  4002. "homepage": "https://www.drupal.org/user/673120"
  4003. }
  4004. ],
  4005. "description": "Login with the email as username.",
  4006. "homepage": "https://drupal.org/project/login_emailusername",
  4007. "support": {
  4008. "source": "https://git.drupalcode.org/project/login_emailusername",
  4009. "issues": "https://drupal.org/project/issues/login_emailusername"
  4010. }
  4011. },
  4012. {
  4013. "name": "drupal/maillog",
  4014. "version": "1.0.0-beta1",
  4015. "source": {
  4016. "type": "git",
  4017. "url": "https://git.drupalcode.org/project/maillog.git",
  4018. "reference": "8.x-1.0-beta1"
  4019. },
  4020. "dist": {
  4021. "type": "zip",
  4022. "url": "https://ftp.drupal.org/files/projects/maillog-8.x-1.0-beta1.zip",
  4023. "reference": "8.x-1.0-beta1",
  4024. "shasum": "0af5fe6fcdc8053bd0a61561a2c69e69c2b1faf2"
  4025. },
  4026. "require": {
  4027. "drupal/core": "^8 || ^9"
  4028. },
  4029. "type": "drupal-module",
  4030. "extra": {
  4031. "drupal": {
  4032. "version": "8.x-1.0-beta1",
  4033. "datestamp": "1600800168",
  4034. "security-coverage": {
  4035. "status": "not-covered",
  4036. "message": "Beta releases are not covered by Drupal security advisories."
  4037. }
  4038. }
  4039. },
  4040. "notification-url": "https://packages.drupal.org/8/downloads",
  4041. "license": [
  4042. "GPL-2.0-or-later"
  4043. ],
  4044. "authors": [
  4045. {
  4046. "name": "berdir",
  4047. "homepage": "https://www.drupal.org/user/214652"
  4048. },
  4049. {
  4050. "name": "damienmckenna",
  4051. "homepage": "https://www.drupal.org/user/108450"
  4052. },
  4053. {
  4054. "name": "miro_dietiker",
  4055. "homepage": "https://www.drupal.org/user/227761"
  4056. },
  4057. {
  4058. "name": "pluess",
  4059. "homepage": "https://www.drupal.org/user/84659"
  4060. }
  4061. ],
  4062. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4063. "homepage": "https://www.drupal.org/project/maillog",
  4064. "support": {
  4065. "source": "https://git.drupalcode.org/project/maillog"
  4066. }
  4067. },
  4068. {
  4069. "name": "drupal/matomo",
  4070. "version": "1.9.0",
  4071. "source": {
  4072. "type": "git",
  4073. "url": "https://git.drupalcode.org/project/matomo.git",
  4074. "reference": "8.x-1.9"
  4075. },
  4076. "dist": {
  4077. "type": "zip",
  4078. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.9.zip",
  4079. "reference": "8.x-1.9",
  4080. "shasum": "2c818af730f834d3aef3f6b7aa29f05e6fa9246d"
  4081. },
  4082. "require": {
  4083. "drupal/core": "~8.5"
  4084. },
  4085. "require-dev": {
  4086. "drupal/php": "*",
  4087. "drupal/token": "*"
  4088. },
  4089. "type": "drupal-module",
  4090. "extra": {
  4091. "branch-alias": {
  4092. "dev-1.x": "1.x-dev"
  4093. },
  4094. "drupal": {
  4095. "version": "8.x-1.9",
  4096. "datestamp": "1549615080",
  4097. "security-coverage": {
  4098. "status": "covered",
  4099. "message": "Covered by Drupal's security advisory policy"
  4100. }
  4101. }
  4102. },
  4103. "notification-url": "https://packages.drupal.org/8/downloads",
  4104. "license": [
  4105. "GPL-2.0+"
  4106. ],
  4107. "authors": [
  4108. {
  4109. "name": "hass",
  4110. "homepage": "https://www.drupal.org/u/hass"
  4111. },
  4112. {
  4113. "name": "See other contributors",
  4114. "homepage": "https://www.drupal.org/node/247808/committers"
  4115. }
  4116. ],
  4117. "description": "Adds Matomo javascript tracking code to all your site's pages",
  4118. "homepage": "https://www.drupal.org/project/matomo",
  4119. "support": {
  4120. "source": "https://git.drupal.org/project/matomo.git",
  4121. "issues": "https://www.drupal.org/project/issues/matomo"
  4122. }
  4123. },
  4124. {
  4125. "name": "drupal/menu_admin_per_menu",
  4126. "version": "1.1.0",
  4127. "source": {
  4128. "type": "git",
  4129. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4130. "reference": "8.x-1.1"
  4131. },
  4132. "dist": {
  4133. "type": "zip",
  4134. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.1.zip",
  4135. "reference": "8.x-1.1",
  4136. "shasum": "a9522b06654faa2d9bd23f704c93e1093f3ff6ec"
  4137. },
  4138. "require": {
  4139. "drupal/core": "^8 || ^9"
  4140. },
  4141. "type": "drupal-module",
  4142. "extra": {
  4143. "drupal": {
  4144. "version": "8.x-1.1",
  4145. "datestamp": "1591098397",
  4146. "security-coverage": {
  4147. "status": "covered",
  4148. "message": "Covered by Drupal's security advisory policy"
  4149. }
  4150. }
  4151. },
  4152. "notification-url": "https://packages.drupal.org/8/downloads",
  4153. "license": [
  4154. "GPL-2.0-or-later"
  4155. ],
  4156. "authors": [
  4157. {
  4158. "name": "JeroenT",
  4159. "homepage": "https://www.drupal.org/user/2228934"
  4160. },
  4161. {
  4162. "name": "anrikun",
  4163. "homepage": "https://www.drupal.org/user/410199"
  4164. },
  4165. {
  4166. "name": "jonas139",
  4167. "homepage": "https://www.drupal.org/user/2873401"
  4168. },
  4169. {
  4170. "name": "mkdok",
  4171. "homepage": "https://www.drupal.org/user/3308753"
  4172. }
  4173. ],
  4174. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4175. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4176. "support": {
  4177. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  4178. }
  4179. },
  4180. {
  4181. "name": "drupal/metatag",
  4182. "version": "1.14.0",
  4183. "source": {
  4184. "type": "git",
  4185. "url": "https://git.drupalcode.org/project/metatag.git",
  4186. "reference": "8.x-1.14"
  4187. },
  4188. "dist": {
  4189. "type": "zip",
  4190. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.14.zip",
  4191. "reference": "8.x-1.14",
  4192. "shasum": "9bf9f1517ad015d0c93ca1460e284c557624aa90"
  4193. },
  4194. "require": {
  4195. "drupal/core": "^8 || ^9",
  4196. "drupal/token": "^1.0"
  4197. },
  4198. "require-dev": {
  4199. "drupal/metatag_dc": "*",
  4200. "drupal/metatag_open_graph": "*",
  4201. "drupal/page_manager": "4.x-dev",
  4202. "drupal/panelizer": "4.x-dev",
  4203. "drupal/redirect": "1.x-dev"
  4204. },
  4205. "type": "drupal-module",
  4206. "extra": {
  4207. "drupal": {
  4208. "version": "8.x-1.14",
  4209. "datestamp": "1597183852",
  4210. "security-coverage": {
  4211. "status": "covered",
  4212. "message": "Covered by Drupal's security advisory policy"
  4213. }
  4214. }
  4215. },
  4216. "notification-url": "https://packages.drupal.org/8/downloads",
  4217. "license": [
  4218. "GPL-2.0-or-later"
  4219. ],
  4220. "authors": [
  4221. {
  4222. "name": "See contributors",
  4223. "homepage": "https://www.drupal.org/node/640498/committers",
  4224. "role": "Developer"
  4225. },
  4226. {
  4227. "name": "Dave Reid",
  4228. "homepage": "https://www.drupal.org/user/53892"
  4229. }
  4230. ],
  4231. "description": "Manage meta tags for all entities.",
  4232. "homepage": "https://www.drupal.org/project/metatag",
  4233. "keywords": [
  4234. "Drupal",
  4235. "seo"
  4236. ],
  4237. "support": {
  4238. "source": "https://git.drupalcode.org/project/metatag",
  4239. "issues": "https://www.drupal.org/project/issues/metatag",
  4240. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  4241. }
  4242. },
  4243. {
  4244. "name": "drupal/migrate_plus",
  4245. "version": "5.0.0",
  4246. "source": {
  4247. "type": "git",
  4248. "url": "https://git.drupalcode.org/project/migrate_plus.git",
  4249. "reference": "8.x-5.0"
  4250. },
  4251. "dist": {
  4252. "type": "zip",
  4253. "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-5.0.zip",
  4254. "reference": "8.x-5.0",
  4255. "shasum": "5509c76498e4c6141c29db626d20904e1e8593c6"
  4256. },
  4257. "require": {
  4258. "drupal/core": "^8 || ^9"
  4259. },
  4260. "require-dev": {
  4261. "drupal/migrate_example_advanced_setup": "*",
  4262. "drupal/migrate_example_setup": "*"
  4263. },
  4264. "suggest": {
  4265. "ext-soap": "*",
  4266. "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  4267. },
  4268. "type": "drupal-module",
  4269. "extra": {
  4270. "drupal": {
  4271. "version": "8.x-5.0",
  4272. "datestamp": "1586234154",
  4273. "security-coverage": {
  4274. "status": "covered",
  4275. "message": "Covered by Drupal's security advisory policy"
  4276. }
  4277. }
  4278. },
  4279. "notification-url": "https://packages.drupal.org/8/downloads",
  4280. "license": [
  4281. "GPL-2.0+"
  4282. ],
  4283. "authors": [
  4284. {
  4285. "name": "Mike Ryan",
  4286. "homepage": "https://www.drupal.org/u/mikeryan",
  4287. "role": "Maintainer"
  4288. },
  4289. {
  4290. "name": "Lucas Hedding",
  4291. "homepage": "https://www.drupal.org/u/heddn",
  4292. "role": "Maintainer"
  4293. }
  4294. ],
  4295. "description": "Enhancements to core migration support.",
  4296. "homepage": "https://www.drupal.org/project/migrate_plus",
  4297. "support": {
  4298. "source": "https://git.drupalcode.org/project/migrate_plus",
  4299. "issues": "https://www.drupal.org/project/issues/migrate_plus",
  4300. "slack": "#migrate"
  4301. }
  4302. },
  4303. {
  4304. "name": "drupal/migrate_tools",
  4305. "version": "4.5.0",
  4306. "source": {
  4307. "type": "git",
  4308. "url": "https://git.drupalcode.org/project/migrate_tools.git",
  4309. "reference": "8.x-4.5"
  4310. },
  4311. "dist": {
  4312. "type": "zip",
  4313. "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-4.5.zip",
  4314. "reference": "8.x-4.5",
  4315. "shasum": "06390b359bf53c50a30f2d6dc4c7542bfb1fe7ca"
  4316. },
  4317. "require": {
  4318. "drupal/core": "^8 || ^9",
  4319. "drupal/migrate_plus": "^4 || ^5"
  4320. },
  4321. "require-dev": {
  4322. "drupal/migrate_plus": "4.x-dev",
  4323. "drupal/migrate_source_csv": "^2.2",
  4324. "drush/drush": "^10"
  4325. },
  4326. "type": "drupal-module",
  4327. "extra": {
  4328. "drupal": {
  4329. "version": "8.x-4.5",
  4330. "datestamp": "1574693285",
  4331. "security-coverage": {
  4332. "status": "covered",
  4333. "message": "Covered by Drupal's security advisory policy"
  4334. }
  4335. },
  4336. "drush": {
  4337. "services": {
  4338. "drush.services.yml": "^9 || ^10"
  4339. }
  4340. }
  4341. },
  4342. "notification-url": "https://packages.drupal.org/8/downloads",
  4343. "license": [
  4344. "GPL-2.0-or-later"
  4345. ],
  4346. "authors": [
  4347. {
  4348. "name": "heddn",
  4349. "homepage": "https://www.drupal.org/user/1463982"
  4350. },
  4351. {
  4352. "name": "mikeryan",
  4353. "homepage": "https://www.drupal.org/user/4420"
  4354. },
  4355. {
  4356. "name": "moshe weitzman",
  4357. "homepage": "https://www.drupal.org/user/23"
  4358. }
  4359. ],
  4360. "description": "Tools to assist in developing and running migrations.",
  4361. "homepage": "http://drupal.org/project/migrate_tools",
  4362. "support": {
  4363. "source": "http://cgit.drupalcode.org/migrate_tools",
  4364. "issues": "http://drupal.org/project/migrate_tools",
  4365. "irc": "irc://irc.freenode.org/drupal-migrate"
  4366. }
  4367. },
  4368. {
  4369. "name": "drupal/path_alias_xt",
  4370. "version": "dev-1.x",
  4371. "source": {
  4372. "type": "git",
  4373. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  4374. "reference": "10ef76dd3eb25bc1342195336291ded3f2d8cc7e"
  4375. },
  4376. "require": {
  4377. "drupal/core": "^8.7.7 || ^9"
  4378. },
  4379. "type": "drupal-module",
  4380. "extra": {
  4381. "branch-alias": {
  4382. "dev-1.x": "1.x-dev"
  4383. },
  4384. "drupal": {
  4385. "version": "8.x-1.x-dev",
  4386. "datestamp": "1582322571",
  4387. "security-coverage": {
  4388. "status": "not-covered",
  4389. "message": "Dev releases are not covered by Drupal security advisories."
  4390. }
  4391. }
  4392. },
  4393. "notification-url": "https://packages.drupal.org/8/downloads",
  4394. "license": [
  4395. "GPL-2.0-or-later"
  4396. ],
  4397. "authors": [
  4398. {
  4399. "name": "RdeBoer",
  4400. "homepage": "https://www.drupal.org/user/404007"
  4401. },
  4402. {
  4403. "name": "adriancid",
  4404. "homepage": "https://www.drupal.org/user/1962106"
  4405. },
  4406. {
  4407. "name": "sdstyles",
  4408. "homepage": "https://www.drupal.org/user/1420228"
  4409. }
  4410. ],
  4411. "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.",
  4412. "homepage": "https://www.drupal.org/project/path_alias_xt",
  4413. "support": {
  4414. "source": "https://git.drupalcode.org/project/path_alias_xt"
  4415. },
  4416. "time": "2020-05-24T05:57:09+00:00"
  4417. },
  4418. {
  4419. "name": "drupal/pathauto",
  4420. "version": "1.8.0",
  4421. "source": {
  4422. "type": "git",
  4423. "url": "https://git.drupalcode.org/project/pathauto.git",
  4424. "reference": "8.x-1.8"
  4425. },
  4426. "dist": {
  4427. "type": "zip",
  4428. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.8.zip",
  4429. "reference": "8.x-1.8",
  4430. "shasum": "ede3216abb9c4f77709338d9147334c595046329"
  4431. },
  4432. "require": {
  4433. "drupal/core": "^8.8 || ^9",
  4434. "drupal/ctools": "*",
  4435. "drupal/token": "*"
  4436. },
  4437. "suggest": {
  4438. "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."
  4439. },
  4440. "type": "drupal-module",
  4441. "extra": {
  4442. "drupal": {
  4443. "version": "8.x-1.8",
  4444. "datestamp": "1588103046",
  4445. "security-coverage": {
  4446. "status": "covered",
  4447. "message": "Covered by Drupal's security advisory policy"
  4448. }
  4449. },
  4450. "drush": {
  4451. "services": {
  4452. "drush.services.yml": "^9 || ^10"
  4453. }
  4454. }
  4455. },
  4456. "notification-url": "https://packages.drupal.org/8/downloads",
  4457. "license": [
  4458. "GPL-2.0-or-later"
  4459. ],
  4460. "authors": [
  4461. {
  4462. "name": "Berdir",
  4463. "homepage": "https://www.drupal.org/user/214652"
  4464. },
  4465. {
  4466. "name": "Dave Reid",
  4467. "homepage": "https://www.drupal.org/user/53892"
  4468. },
  4469. {
  4470. "name": "Freso",
  4471. "homepage": "https://www.drupal.org/user/27504"
  4472. },
  4473. {
  4474. "name": "greggles",
  4475. "homepage": "https://www.drupal.org/user/36762"
  4476. }
  4477. ],
  4478. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4479. "homepage": "https://www.drupal.org/project/pathauto",
  4480. "support": {
  4481. "source": "https://cgit.drupalcode.org/pathauto",
  4482. "issues": "https://www.drupal.org/project/issues/pathauto",
  4483. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  4484. }
  4485. },
  4486. {
  4487. "name": "drupal/piwik",
  4488. "version": "1.4.0",
  4489. "source": {
  4490. "type": "git",
  4491. "url": "https://git.drupalcode.org/project/piwik.git",
  4492. "reference": "8.x-1.4"
  4493. },
  4494. "dist": {
  4495. "type": "zip",
  4496. "url": "https://ftp.drupal.org/files/projects/piwik-8.x-1.4.zip",
  4497. "reference": "8.x-1.4",
  4498. "shasum": "3692831f4b3de636e90679fb052ba8f30e49ac97"
  4499. },
  4500. "require": {
  4501. "drupal/core": "~8.0",
  4502. "drupal/matomo": "^1.0"
  4503. },
  4504. "require-dev": {
  4505. "drupal/php": "*",
  4506. "drupal/token": "*"
  4507. },
  4508. "type": "drupal-module",
  4509. "extra": {
  4510. "branch-alias": {
  4511. "dev-1.x": "1.x-dev"
  4512. },
  4513. "drupal": {
  4514. "version": "8.x-1.4",
  4515. "datestamp": "1530437786",
  4516. "security-coverage": {
  4517. "status": "covered",
  4518. "message": "Covered by Drupal's security advisory policy"
  4519. }
  4520. }
  4521. },
  4522. "notification-url": "https://packages.drupal.org/8/downloads",
  4523. "license": [
  4524. "GPL-2.0+"
  4525. ],
  4526. "authors": [
  4527. {
  4528. "name": "hass",
  4529. "homepage": "https://www.drupal.org/u/hass"
  4530. },
  4531. {
  4532. "name": "See other contributors",
  4533. "homepage": "https://www.drupal.org/node/247808/committers"
  4534. }
  4535. ],
  4536. "description": "Adds Piwik javascript tracking code to all your site's pages",
  4537. "homepage": "https://www.drupal.org/project/piwik",
  4538. "support": {
  4539. "source": "http://git.drupal.org/project/piwik.git",
  4540. "issues": "https://www.drupal.org/project/issues/piwik"
  4541. }
  4542. },
  4543. {
  4544. "name": "drupal/profile",
  4545. "version": "1.1.0",
  4546. "source": {
  4547. "type": "git",
  4548. "url": "https://git.drupalcode.org/project/profile.git",
  4549. "reference": "8.x-1.1"
  4550. },
  4551. "dist": {
  4552. "type": "zip",
  4553. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.1.zip",
  4554. "reference": "8.x-1.1",
  4555. "shasum": "b8f6aca4f432228e614dca0a50cb187e936e4825"
  4556. },
  4557. "require": {
  4558. "drupal/core": "^8.7.7 || ^9",
  4559. "drupal/entity": "^1.0-rc2"
  4560. },
  4561. "require-dev": {
  4562. "drupal/token": "^1.0"
  4563. },
  4564. "type": "drupal-module",
  4565. "extra": {
  4566. "drupal": {
  4567. "version": "8.x-1.1",
  4568. "datestamp": "1582134004",
  4569. "security-coverage": {
  4570. "status": "covered",
  4571. "message": "Covered by Drupal's security advisory policy"
  4572. }
  4573. }
  4574. },
  4575. "notification-url": "https://packages.drupal.org/8/downloads",
  4576. "license": [
  4577. "GPL-2.0+"
  4578. ],
  4579. "authors": [
  4580. {
  4581. "name": "bojanz",
  4582. "homepage": "https://www.drupal.org/user/86106"
  4583. },
  4584. {
  4585. "name": "daggerhart",
  4586. "homepage": "https://www.drupal.org/user/167806"
  4587. },
  4588. {
  4589. "name": "fago",
  4590. "homepage": "https://www.drupal.org/user/16747"
  4591. },
  4592. {
  4593. "name": "jsacksick",
  4594. "homepage": "https://www.drupal.org/user/972218"
  4595. },
  4596. {
  4597. "name": "mglaman",
  4598. "homepage": "https://www.drupal.org/user/2416470"
  4599. },
  4600. {
  4601. "name": "pcambra",
  4602. "homepage": "https://www.drupal.org/user/122101"
  4603. }
  4604. ],
  4605. "description": "Provides configurable user profiles.",
  4606. "homepage": "http://drupal.org/project/profile",
  4607. "support": {
  4608. "source": "https://git.drupalcode.org/project/profile"
  4609. }
  4610. },
  4611. {
  4612. "name": "drupal/redirect",
  4613. "version": "1.6.0",
  4614. "source": {
  4615. "type": "git",
  4616. "url": "https://git.drupalcode.org/project/redirect.git",
  4617. "reference": "8.x-1.6"
  4618. },
  4619. "dist": {
  4620. "type": "zip",
  4621. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.6.zip",
  4622. "reference": "8.x-1.6",
  4623. "shasum": "f848e001deac8425ae57d4b9397087c491d37294"
  4624. },
  4625. "require": {
  4626. "drupal/core": "^8.8 || ^9"
  4627. },
  4628. "type": "drupal-module",
  4629. "extra": {
  4630. "drupal": {
  4631. "version": "8.x-1.6",
  4632. "datestamp": "1589312204",
  4633. "security-coverage": {
  4634. "status": "covered",
  4635. "message": "Covered by Drupal's security advisory policy"
  4636. }
  4637. }
  4638. },
  4639. "notification-url": "https://packages.drupal.org/8/downloads",
  4640. "license": [
  4641. "GPL-2.0-or-later"
  4642. ],
  4643. "authors": [
  4644. {
  4645. "name": "Berdir",
  4646. "homepage": "https://www.drupal.org/user/214652"
  4647. },
  4648. {
  4649. "name": "Dave Reid",
  4650. "homepage": "https://www.drupal.org/user/53892"
  4651. },
  4652. {
  4653. "name": "pifagor",
  4654. "homepage": "https://www.drupal.org/user/2375692"
  4655. }
  4656. ],
  4657. "description": "Allows users to redirect from old URLs to new URLs.",
  4658. "homepage": "https://www.drupal.org/project/redirect",
  4659. "support": {
  4660. "source": "https://git.drupalcode.org/project/redirect"
  4661. }
  4662. },
  4663. {
  4664. "name": "drupal/redis",
  4665. "version": "1.4.0",
  4666. "source": {
  4667. "type": "git",
  4668. "url": "https://git.drupalcode.org/project/redis.git",
  4669. "reference": "8.x-1.4"
  4670. },
  4671. "dist": {
  4672. "type": "zip",
  4673. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.4.zip",
  4674. "reference": "8.x-1.4",
  4675. "shasum": "87165acdda18873c1e3994c670bcb4cdafd3d0ff"
  4676. },
  4677. "require": {
  4678. "drupal/core": "^8.8 || ^9"
  4679. },
  4680. "suggest": {
  4681. "predis/predis": "^1.1.1"
  4682. },
  4683. "type": "drupal-module",
  4684. "extra": {
  4685. "branch-alias": {
  4686. "dev-1.x": "1.x-dev"
  4687. },
  4688. "drupal": {
  4689. "version": "8.x-1.4",
  4690. "datestamp": "1581504947",
  4691. "security-coverage": {
  4692. "status": "covered",
  4693. "message": "Covered by Drupal's security advisory policy"
  4694. }
  4695. }
  4696. },
  4697. "autoload": {
  4698. "psr-4": {
  4699. "Drupal\\redis\\": "src"
  4700. }
  4701. },
  4702. "notification-url": "https://packages.drupal.org/8/downloads",
  4703. "license": [
  4704. "GPL-2.0"
  4705. ],
  4706. "authors": [
  4707. {
  4708. "name": "Berdir",
  4709. "homepage": "https://www.drupal.org/user/214652"
  4710. },
  4711. {
  4712. "name": "pounard",
  4713. "homepage": "https://www.drupal.org/user/240164"
  4714. }
  4715. ],
  4716. "description": "Provide a module placeholder, for using as dependency for module that needs Redis.",
  4717. "homepage": "https://www.drupal.org/project/redis",
  4718. "support": {
  4719. "source": "https://git.drupalcode.org/project/redis"
  4720. }
  4721. },
  4722. {
  4723. "name": "drupal/restui",
  4724. "version": "1.18.0",
  4725. "source": {
  4726. "type": "git",
  4727. "url": "https://git.drupalcode.org/project/restui.git",
  4728. "reference": "8.x-1.18"
  4729. },
  4730. "dist": {
  4731. "type": "zip",
  4732. "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.18.zip",
  4733. "reference": "8.x-1.18",
  4734. "shasum": "40edbe907d5ec6d6c6a00abd219c7305d90d19e5"
  4735. },
  4736. "require": {
  4737. "drupal/core": "^8.7.7 || ^9"
  4738. },
  4739. "type": "drupal-module",
  4740. "extra": {
  4741. "drupal": {
  4742. "version": "8.x-1.18",
  4743. "datestamp": "1586170645",
  4744. "security-coverage": {
  4745. "status": "covered",
  4746. "message": "Covered by Drupal's security advisory policy"
  4747. }
  4748. }
  4749. },
  4750. "notification-url": "https://packages.drupal.org/8/downloads",
  4751. "license": [
  4752. "GPL-2.0-or-later"
  4753. ],
  4754. "authors": [
  4755. {
  4756. "name": "-enzo-",
  4757. "homepage": "https://www.drupal.org/user/294937"
  4758. },
  4759. {
  4760. "name": "clemens.tolboom",
  4761. "homepage": "https://www.drupal.org/user/125814"
  4762. },
  4763. {
  4764. "name": "juampynr",
  4765. "homepage": "https://www.drupal.org/user/682736"
  4766. },
  4767. {
  4768. "name": "klausi",
  4769. "homepage": "https://www.drupal.org/user/262198"
  4770. }
  4771. ],
  4772. "description": "Provides a user interface to manage REST resources.",
  4773. "homepage": "https://www.drupal.org/project/restui",
  4774. "support": {
  4775. "source": "https://git.drupalcode.org/project/restui"
  4776. }
  4777. },
  4778. {
  4779. "name": "drupal/search_api",
  4780. "version": "1.17.0",
  4781. "source": {
  4782. "type": "git",
  4783. "url": "https://git.drupalcode.org/project/search_api.git",
  4784. "reference": "8.x-1.17"
  4785. },
  4786. "dist": {
  4787. "type": "zip",
  4788. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.17.zip",
  4789. "reference": "8.x-1.17",
  4790. "shasum": "a9f3352f1c8c893c7032c11f00a23f76b9733b56"
  4791. },
  4792. "require": {
  4793. "drupal/core": "^8.8 || ^9"
  4794. },
  4795. "conflict": {
  4796. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  4797. },
  4798. "require-dev": {
  4799. "drupal/language_fallback_fix": "@dev",
  4800. "drupal/search_api_autocomplete": "@dev",
  4801. "drupal/search_api_db": "*"
  4802. },
  4803. "suggest": {
  4804. "drupal/facets": "Adds the ability to create faceted searches.",
  4805. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  4806. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  4807. },
  4808. "type": "drupal-module",
  4809. "extra": {
  4810. "drupal": {
  4811. "version": "8.x-1.17",
  4812. "datestamp": "1594482952",
  4813. "security-coverage": {
  4814. "status": "covered",
  4815. "message": "Covered by Drupal's security advisory policy"
  4816. }
  4817. },
  4818. "drush": {
  4819. "services": {
  4820. "drush.services.yml": "^9"
  4821. }
  4822. }
  4823. },
  4824. "notification-url": "https://packages.drupal.org/8/downloads",
  4825. "license": [
  4826. "GPL-2.0+"
  4827. ],
  4828. "authors": [
  4829. {
  4830. "name": "Thomas Seidl",
  4831. "homepage": "https://www.drupal.org/u/drunken-monkey"
  4832. },
  4833. {
  4834. "name": "Nick Veenhof",
  4835. "homepage": "https://www.drupal.org/u/nick_vh"
  4836. },
  4837. {
  4838. "name": "See other contributors",
  4839. "homepage": "https://www.drupal.org/node/790418/committers"
  4840. }
  4841. ],
  4842. "description": "Provides a generic framework for modules offering search capabilities.",
  4843. "homepage": "https://www.drupal.org/project/search_api",
  4844. "support": {
  4845. "source": "https://git.drupalcode.org/project/search_api",
  4846. "issues": "https://www.drupal.org/project/issues/search_api",
  4847. "irc": "irc://irc.freenode.org/drupal-search-api"
  4848. }
  4849. },
  4850. {
  4851. "name": "drupal/simple_sitemap",
  4852. "version": "3.7.0",
  4853. "source": {
  4854. "type": "git",
  4855. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  4856. "reference": "8.x-3.7"
  4857. },
  4858. "dist": {
  4859. "type": "zip",
  4860. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-8.x-3.7.zip",
  4861. "reference": "8.x-3.7",
  4862. "shasum": "7b23930cc71d37f332c1e836bc18c29ed2ae8cde"
  4863. },
  4864. "require": {
  4865. "drupal/core": "^8 || ^9",
  4866. "ext-xmlwriter": "*"
  4867. },
  4868. "type": "drupal-module",
  4869. "extra": {
  4870. "drupal": {
  4871. "version": "8.x-3.7",
  4872. "datestamp": "1592298918",
  4873. "security-coverage": {
  4874. "status": "covered",
  4875. "message": "Covered by Drupal's security advisory policy"
  4876. }
  4877. },
  4878. "drush": {
  4879. "services": {
  4880. "drush.services.yml": "^9 || ^10"
  4881. }
  4882. }
  4883. },
  4884. "notification-url": "https://packages.drupal.org/8/downloads",
  4885. "license": [
  4886. "GPL-2.0-or-later"
  4887. ],
  4888. "authors": [
  4889. {
  4890. "name": "Pawel Ginalski (gbyte.co)",
  4891. "homepage": "https://www.drupal.org/u/gbyte.co",
  4892. "email": "contact@gbyte.co",
  4893. "role": "Maintainer"
  4894. }
  4895. ],
  4896. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  4897. "homepage": "https://drupal.org/project/simple_sitemap",
  4898. "support": {
  4899. "source": "https://cgit.drupalcode.org/simple_sitemap",
  4900. "issues": "https://drupal.org/project/issues/simple_sitemap",
  4901. "irc": "irc://irc.freenode.org/drupal-contribute"
  4902. }
  4903. },
  4904. {
  4905. "name": "drupal/synonyms",
  4906. "version": "1.0.0-alpha3",
  4907. "source": {
  4908. "type": "git",
  4909. "url": "https://git.drupalcode.org/project/synonyms.git",
  4910. "reference": "8.x-1.0-alpha3"
  4911. },
  4912. "dist": {
  4913. "type": "zip",
  4914. "url": "https://ftp.drupal.org/files/projects/synonyms-8.x-1.0-alpha3.zip",
  4915. "reference": "8.x-1.0-alpha3",
  4916. "shasum": "0306a9dfb279c0594246b49658309c1686e984a9"
  4917. },
  4918. "require": {
  4919. "drupal/core": "^8 || ^9"
  4920. },
  4921. "type": "drupal-module",
  4922. "extra": {
  4923. "drupal": {
  4924. "version": "8.x-1.0-alpha3",
  4925. "datestamp": "1609623594",
  4926. "security-coverage": {
  4927. "status": "not-covered",
  4928. "message": "Alpha releases are not covered by Drupal security advisories."
  4929. }
  4930. }
  4931. },
  4932. "notification-url": "https://packages.drupal.org/8/downloads",
  4933. "license": [
  4934. "GPL-2.0-or-later"
  4935. ],
  4936. "authors": [
  4937. {
  4938. "name": "bojanz",
  4939. "homepage": "https://www.drupal.org/user/86106"
  4940. },
  4941. {
  4942. "name": "bucefal91",
  4943. "homepage": "https://www.drupal.org/user/504128"
  4944. },
  4945. {
  4946. "name": "devad",
  4947. "homepage": "https://www.drupal.org/user/2268520"
  4948. },
  4949. {
  4950. "name": "Zen",
  4951. "homepage": "https://www.drupal.org/user/21209"
  4952. }
  4953. ],
  4954. "description": "Provides synonyms feature for content entities.",
  4955. "homepage": "https://www.drupal.org/project/synonyms",
  4956. "support": {
  4957. "source": "https://git.drupalcode.org/project/synonyms"
  4958. }
  4959. },
  4960. {
  4961. "name": "drupal/token",
  4962. "version": "1.7.0",
  4963. "source": {
  4964. "type": "git",
  4965. "url": "https://git.drupalcode.org/project/token.git",
  4966. "reference": "8.x-1.7"
  4967. },
  4968. "dist": {
  4969. "type": "zip",
  4970. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.7.zip",
  4971. "reference": "8.x-1.7",
  4972. "shasum": "c7e3a3757282e4c94e3c1fff08d01e22155cb853"
  4973. },
  4974. "require": {
  4975. "drupal/core": "^8.8 || ^9"
  4976. },
  4977. "type": "drupal-module",
  4978. "extra": {
  4979. "drupal": {
  4980. "version": "8.x-1.7",
  4981. "datestamp": "1589314266",
  4982. "security-coverage": {
  4983. "status": "covered",
  4984. "message": "Covered by Drupal's security advisory policy"
  4985. }
  4986. },
  4987. "drush": {
  4988. "services": {
  4989. "drush.services.yml": "^9 || ^10"
  4990. }
  4991. }
  4992. },
  4993. "notification-url": "https://packages.drupal.org/8/downloads",
  4994. "license": [
  4995. "GPL-2.0+"
  4996. ],
  4997. "authors": [
  4998. {
  4999. "name": "Berdir",
  5000. "homepage": "https://www.drupal.org/user/214652"
  5001. },
  5002. {
  5003. "name": "Dave Reid",
  5004. "homepage": "https://www.drupal.org/user/53892"
  5005. },
  5006. {
  5007. "name": "eaton",
  5008. "homepage": "https://www.drupal.org/user/16496"
  5009. },
  5010. {
  5011. "name": "fago",
  5012. "homepage": "https://www.drupal.org/user/16747"
  5013. },
  5014. {
  5015. "name": "greggles",
  5016. "homepage": "https://www.drupal.org/user/36762"
  5017. },
  5018. {
  5019. "name": "mikeryan",
  5020. "homepage": "https://www.drupal.org/user/4420"
  5021. }
  5022. ],
  5023. "description": "Provides a user interface for the Token API, some missing core tokens.",
  5024. "homepage": "https://www.drupal.org/project/token",
  5025. "support": {
  5026. "source": "https://git.drupalcode.org/project/token"
  5027. }
  5028. },
  5029. {
  5030. "name": "drupal/toolbar_themes",
  5031. "version": "dev-1.x",
  5032. "source": {
  5033. "type": "git",
  5034. "url": "https://git.drupalcode.org/project/toolbar_themes.git",
  5035. "reference": "62e79c8635ec13fe5a4dd67b87f698a14822c044"
  5036. },
  5037. "require": {
  5038. "drupal/core": "*"
  5039. },
  5040. "type": "drupal-module",
  5041. "extra": {
  5042. "branch-alias": {
  5043. "dev-1.x": "1.x-dev"
  5044. },
  5045. "drupal": {
  5046. "version": "8.x-1.0-alpha4+10-dev",
  5047. "datestamp": "1510689485",
  5048. "security-coverage": {
  5049. "status": "not-covered",
  5050. "message": "Project has not opted into security advisory coverage!"
  5051. }
  5052. }
  5053. },
  5054. "notification-url": "https://packages.drupal.org/8/downloads",
  5055. "license": [
  5056. "GPL-2.0-or-later"
  5057. ],
  5058. "authors": [
  5059. {
  5060. "name": "Jeff Burnz",
  5061. "homepage": "https://www.drupal.org/user/61393"
  5062. }
  5063. ],
  5064. "description": "Apply themes to the toolbar.",
  5065. "homepage": "https://www.drupal.org/project/toolbar_themes",
  5066. "support": {
  5067. "source": "https://git.drupalcode.org/project/toolbar_themes"
  5068. },
  5069. "time": "2017-11-14T19:57:02+00:00"
  5070. },
  5071. {
  5072. "name": "drupal/translation_views",
  5073. "version": "1.0.0-alpha10",
  5074. "source": {
  5075. "type": "git",
  5076. "url": "https://git.drupalcode.org/project/translation_views.git",
  5077. "reference": "8.x-1.0-alpha10"
  5078. },
  5079. "dist": {
  5080. "type": "zip",
  5081. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha10.zip",
  5082. "reference": "8.x-1.0-alpha10",
  5083. "shasum": "ca1a6d4bf16293b1b094db6439f9f065de1dbbd5"
  5084. },
  5085. "require": {
  5086. "drupal/core": "^8.8 || ^9"
  5087. },
  5088. "require-dev": {
  5089. "drupal/translators": "*",
  5090. "drupal/translators_content": "*"
  5091. },
  5092. "type": "drupal-module",
  5093. "extra": {
  5094. "drupal": {
  5095. "version": "8.x-1.0-alpha10",
  5096. "datestamp": "1584303687",
  5097. "security-coverage": {
  5098. "status": "not-covered",
  5099. "message": "Project has not opted into security advisory coverage!"
  5100. }
  5101. }
  5102. },
  5103. "notification-url": "https://packages.drupal.org/8/downloads",
  5104. "license": [
  5105. "GPL-2.0-or-later"
  5106. ],
  5107. "authors": [
  5108. {
  5109. "name": "matsbla",
  5110. "homepage": "https://www.drupal.org/user/2325394"
  5111. },
  5112. {
  5113. "name": "vlad.dancer",
  5114. "homepage": "https://www.drupal.org/user/903844"
  5115. }
  5116. ],
  5117. "description": "Create customized lists and queries of translations from your database.",
  5118. "homepage": "https://www.drupal.org/project/translation_views",
  5119. "support": {
  5120. "source": "https://git.drupalcode.org/project/translation_views"
  5121. }
  5122. },
  5123. {
  5124. "name": "drupal/upgrade_status",
  5125. "version": "3.19.0",
  5126. "source": {
  5127. "type": "git",
  5128. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  5129. "reference": "8.x-3.19"
  5130. },
  5131. "dist": {
  5132. "type": "zip",
  5133. "url": "https://ftp.drupal.org/files/projects/upgrade_status-8.x-3.19.zip",
  5134. "reference": "8.x-3.19",
  5135. "shasum": "e155b34b80f2782778b841d72639bd0ac8b923f9"
  5136. },
  5137. "require": {
  5138. "drupal/core": "^8 || ^9",
  5139. "mathieuviossat/arraytotexttable": "~1.0.0",
  5140. "mglaman/phpstan-drupal": "^1.0.0",
  5141. "nikic/php-parser": "^4.0.0",
  5142. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  5143. "symfony/process": "^3.4|^4.0|^5.0|^6.0",
  5144. "webflo/drupal-finder": "^1.2"
  5145. },
  5146. "type": "drupal-module",
  5147. "extra": {
  5148. "drupal": {
  5149. "version": "8.x-3.19",
  5150. "datestamp": "1678815320",
  5151. "security-coverage": {
  5152. "status": "covered",
  5153. "message": "Covered by Drupal's security advisory policy"
  5154. }
  5155. },
  5156. "drush": {
  5157. "services": {
  5158. "drush.services.yml": "^9 || ^10"
  5159. }
  5160. }
  5161. },
  5162. "notification-url": "https://packages.drupal.org/8/downloads",
  5163. "license": [
  5164. "GPL-2.0-or-later"
  5165. ],
  5166. "authors": [
  5167. {
  5168. "name": "Gábor Hojtsy",
  5169. "homepage": "https://www.drupal.org/user/4166"
  5170. }
  5171. ],
  5172. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  5173. "homepage": "http://drupal.org/project/upgrade_status",
  5174. "support": {
  5175. "source": "https://git.drupalcode.org/project/upgrade_status"
  5176. }
  5177. },
  5178. {
  5179. "name": "drupal/url_to_video_filter",
  5180. "version": "2.0.0",
  5181. "source": {
  5182. "type": "git",
  5183. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  5184. "reference": "2.0.0"
  5185. },
  5186. "dist": {
  5187. "type": "zip",
  5188. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-2.0.0.zip",
  5189. "reference": "2.0.0",
  5190. "shasum": "ac728919cc220846d8ef2ce61dbe1b94fbbf479b"
  5191. },
  5192. "require": {
  5193. "drupal/core": "^8 || ^9"
  5194. },
  5195. "type": "drupal-module",
  5196. "extra": {
  5197. "drupal": {
  5198. "version": "2.0.0",
  5199. "datestamp": "1607298389",
  5200. "security-coverage": {
  5201. "status": "covered",
  5202. "message": "Covered by Drupal's security advisory policy"
  5203. }
  5204. }
  5205. },
  5206. "notification-url": "https://packages.drupal.org/8/downloads",
  5207. "license": [
  5208. "GPL-2.0-or-later"
  5209. ],
  5210. "authors": [
  5211. {
  5212. "name": "Jaypan",
  5213. "homepage": "https://www.drupal.org/user/324696"
  5214. }
  5215. ],
  5216. "description": "Text filter to convert URLs to embedded videos",
  5217. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  5218. "support": {
  5219. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  5220. }
  5221. },
  5222. {
  5223. "name": "drupal/views_bulk_edit",
  5224. "version": "2.7.0",
  5225. "source": {
  5226. "type": "git",
  5227. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5228. "reference": "8.x-2.7"
  5229. },
  5230. "dist": {
  5231. "type": "zip",
  5232. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.7.zip",
  5233. "reference": "8.x-2.7",
  5234. "shasum": "148457820e7ecd78942326c9c799147ed440f2a6"
  5235. },
  5236. "require": {
  5237. "drupal/core": "^8 || ^9"
  5238. },
  5239. "require-dev": {
  5240. "drupal/views_bulk_operations": "~3.0"
  5241. },
  5242. "suggest": {
  5243. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  5244. },
  5245. "type": "drupal-module",
  5246. "extra": {
  5247. "drupal": {
  5248. "version": "8.x-2.7",
  5249. "datestamp": "1664355764",
  5250. "security-coverage": {
  5251. "status": "covered",
  5252. "message": "Covered by Drupal's security advisory policy"
  5253. }
  5254. }
  5255. },
  5256. "notification-url": "https://packages.drupal.org/8/downloads",
  5257. "license": [
  5258. "GPL-2.0+"
  5259. ],
  5260. "authors": [
  5261. {
  5262. "name": "Marcin Grabias",
  5263. "homepage": "https://www.drupal.org/u/graber"
  5264. },
  5265. {
  5266. "name": "benjy",
  5267. "homepage": "https://www.drupal.org/user/1852732"
  5268. },
  5269. {
  5270. "name": "graber",
  5271. "homepage": "https://www.drupal.org/user/1599440"
  5272. },
  5273. {
  5274. "name": "grevil",
  5275. "homepage": "https://www.drupal.org/user/3668491"
  5276. },
  5277. {
  5278. "name": "joseph.olstad",
  5279. "homepage": "https://www.drupal.org/user/1321830"
  5280. }
  5281. ],
  5282. "description": "Allows bulk edition of entity field values.",
  5283. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5284. "support": {
  5285. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5286. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5287. }
  5288. },
  5289. {
  5290. "name": "drupal/views_bulk_operations",
  5291. "version": "3.9.0",
  5292. "source": {
  5293. "type": "git",
  5294. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5295. "reference": "8.x-3.9"
  5296. },
  5297. "dist": {
  5298. "type": "zip",
  5299. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.9.zip",
  5300. "reference": "8.x-3.9",
  5301. "shasum": "d7f6e50c31d21ff32f21e8f4aaedb52f6dee2da8"
  5302. },
  5303. "require": {
  5304. "drupal/core": "^8.8 || ^9"
  5305. },
  5306. "require-dev": {
  5307. "drush/drush": "^10"
  5308. },
  5309. "suggest": {
  5310. "drush/drush": "^9 || ^10"
  5311. },
  5312. "type": "drupal-module",
  5313. "extra": {
  5314. "drupal": {
  5315. "version": "8.x-3.9",
  5316. "datestamp": "1597319021",
  5317. "security-coverage": {
  5318. "status": "covered",
  5319. "message": "Covered by Drupal's security advisory policy"
  5320. }
  5321. },
  5322. "drush": {
  5323. "services": {
  5324. "drush.services.yml": "^9 || ^10"
  5325. }
  5326. }
  5327. },
  5328. "notification-url": "https://packages.drupal.org/8/downloads",
  5329. "license": [
  5330. "GPL-2.0-or-later"
  5331. ],
  5332. "authors": [
  5333. {
  5334. "name": "Marcin Grabias",
  5335. "homepage": "https://www.drupal.org/u/graber"
  5336. },
  5337. {
  5338. "name": "Jon Pugh",
  5339. "homepage": "https://www.drupal.org/user/17028"
  5340. },
  5341. {
  5342. "name": "bojanz",
  5343. "homepage": "https://www.drupal.org/user/86106"
  5344. },
  5345. {
  5346. "name": "infojunkie",
  5347. "homepage": "https://www.drupal.org/user/48424"
  5348. },
  5349. {
  5350. "name": "joelpittet",
  5351. "homepage": "https://www.drupal.org/user/160302"
  5352. }
  5353. ],
  5354. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5355. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5356. "support": {
  5357. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  5358. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5359. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5360. }
  5361. },
  5362. {
  5363. "name": "drupal/workflow",
  5364. "version": "1.3.0",
  5365. "source": {
  5366. "type": "git",
  5367. "url": "https://git.drupalcode.org/project/workflow.git",
  5368. "reference": "8.x-1.3"
  5369. },
  5370. "dist": {
  5371. "type": "zip",
  5372. "url": "https://ftp.drupal.org/files/projects/workflow-8.x-1.3.zip",
  5373. "reference": "8.x-1.3",
  5374. "shasum": "99b3c58d466f9564831b50a3b1428fac2a08c55c"
  5375. },
  5376. "require": {
  5377. "drupal/core": "^8 || ^9"
  5378. },
  5379. "type": "drupal-module",
  5380. "extra": {
  5381. "drupal": {
  5382. "version": "8.x-1.3",
  5383. "datestamp": "1590740623",
  5384. "security-coverage": {
  5385. "status": "covered",
  5386. "message": "Covered by Drupal's security advisory policy"
  5387. }
  5388. }
  5389. },
  5390. "notification-url": "https://packages.drupal.org/8/downloads",
  5391. "license": [
  5392. "GPL-2.0-or-later"
  5393. ],
  5394. "authors": [
  5395. {
  5396. "name": "Bastlynn",
  5397. "homepage": "https://www.drupal.org/user/275249"
  5398. },
  5399. {
  5400. "name": "eaton",
  5401. "homepage": "https://www.drupal.org/user/16496"
  5402. },
  5403. {
  5404. "name": "Heine",
  5405. "homepage": "https://www.drupal.org/user/17943"
  5406. },
  5407. {
  5408. "name": "JacobSingh",
  5409. "homepage": "https://www.drupal.org/user/68912"
  5410. },
  5411. {
  5412. "name": "johnv",
  5413. "homepage": "https://www.drupal.org/user/591042"
  5414. },
  5415. {
  5416. "name": "jvandyk",
  5417. "homepage": "https://www.drupal.org/user/2375"
  5418. },
  5419. {
  5420. "name": "mfredrickson",
  5421. "homepage": "https://www.drupal.org/user/31994"
  5422. },
  5423. {
  5424. "name": "NancyDru",
  5425. "homepage": "https://www.drupal.org/user/101412"
  5426. },
  5427. {
  5428. "name": "q0rban",
  5429. "homepage": "https://www.drupal.org/user/31022"
  5430. }
  5431. ],
  5432. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5433. "homepage": "https://www.drupal.org/project/workflow",
  5434. "support": {
  5435. "source": "https://git.drupalcode.org/project/workflow"
  5436. }
  5437. },
  5438. {
  5439. "name": "drush/drush",
  5440. "version": "9.7.3",
  5441. "source": {
  5442. "type": "git",
  5443. "url": "https://github.com/drush-ops/drush.git",
  5444. "reference": "6ab9a89ab18189618eea40bf8e6553c1817ee210"
  5445. },
  5446. "dist": {
  5447. "type": "zip",
  5448. "url": "https://api.github.com/repos/drush-ops/drush/zipball/6ab9a89ab18189618eea40bf8e6553c1817ee210",
  5449. "reference": "6ab9a89ab18189618eea40bf8e6553c1817ee210",
  5450. "shasum": ""
  5451. },
  5452. "require": {
  5453. "chi-teck/drupal-code-generator": "^1.28.1",
  5454. "composer/semver": "^1.4",
  5455. "consolidation/annotated-command": "^2.12",
  5456. "consolidation/config": "^1.2",
  5457. "consolidation/filter-via-dot-access-data": "^1",
  5458. "consolidation/output-formatters": "^3.3.1",
  5459. "consolidation/robo": "^1.4.6",
  5460. "consolidation/site-alias": "^3.0.0@stable",
  5461. "consolidation/site-process": "^2.0.3",
  5462. "ext-dom": "*",
  5463. "grasmash/yaml-expander": "^1.1.1",
  5464. "league/container": "~2",
  5465. "php": ">=5.6.0",
  5466. "psr/log": "~1.0",
  5467. "psy/psysh": "~0.6",
  5468. "symfony/console": "^3.4",
  5469. "symfony/event-dispatcher": "^3.4 || ^4.0",
  5470. "symfony/finder": "^3.4 || ^4.0",
  5471. "symfony/process": "^3.4",
  5472. "symfony/var-dumper": "^3.4 || ^4.0",
  5473. "symfony/yaml": "^3.4",
  5474. "webflo/drupal-finder": "^1.1",
  5475. "webmozart/path-util": "^2.1.0"
  5476. },
  5477. "require-dev": {
  5478. "composer/installers": "^1.2",
  5479. "cweagans/composer-patches": "~1.0",
  5480. "drupal/alinks": "1.0.0",
  5481. "drupal/core-recommended": "^8.9",
  5482. "drupal/devel": "^2",
  5483. "drupal/empty_theme": "1.0",
  5484. "g1a/composer-test-scenarios": "^3",
  5485. "lox/xhprof": "dev-master",
  5486. "phpunit/phpunit": "^4.8.36 || ^6.1",
  5487. "squizlabs/php_codesniffer": "^2.7 || ^3",
  5488. "vlucas/phpdotenv": "^2.4"
  5489. },
  5490. "bin": [
  5491. "drush"
  5492. ],
  5493. "type": "library",
  5494. "extra": {
  5495. "installer-paths": {
  5496. "sut/core": [
  5497. "type:drupal-core"
  5498. ],
  5499. "sut/libraries/{$name}": [
  5500. "type:drupal-library"
  5501. ],
  5502. "sut/modules/unish/{$name}": [
  5503. "drupal/devel"
  5504. ],
  5505. "sut/themes/unish/{$name}": [
  5506. "drupal/empty_theme"
  5507. ],
  5508. "sut/modules/contrib/{$name}": [
  5509. "type:drupal-module"
  5510. ],
  5511. "sut/profiles/contrib/{$name}": [
  5512. "type:drupal-profile"
  5513. ],
  5514. "sut/themes/contrib/{$name}": [
  5515. "type:drupal-theme"
  5516. ],
  5517. "sut/drush/contrib/{$name}": [
  5518. "type:drupal-drush"
  5519. ]
  5520. },
  5521. "scenarios": {
  5522. "php5": {
  5523. "config": {
  5524. "platform": {
  5525. "php": "5.6.38"
  5526. }
  5527. },
  5528. "require-dev": {
  5529. "drupal/core-recommended": "~8.6.0"
  5530. }
  5531. }
  5532. },
  5533. "branch-alias": {
  5534. "dev-master": "9.x-dev"
  5535. }
  5536. },
  5537. "autoload": {
  5538. "psr-4": {
  5539. "Drush\\": "src/",
  5540. "Drush\\Internal\\": "src/internal-forks"
  5541. }
  5542. },
  5543. "notification-url": "https://packagist.org/downloads/",
  5544. "license": [
  5545. "GPL-2.0-or-later"
  5546. ],
  5547. "authors": [
  5548. {
  5549. "name": "Moshe Weitzman",
  5550. "email": "weitzman@tejasa.com"
  5551. },
  5552. {
  5553. "name": "Owen Barton",
  5554. "email": "drupal@owenbarton.com"
  5555. },
  5556. {
  5557. "name": "Greg Anderson",
  5558. "email": "greg.1.anderson@greenknowe.org"
  5559. },
  5560. {
  5561. "name": "Jonathan Araña Cruz",
  5562. "email": "jonhattan@faita.net"
  5563. },
  5564. {
  5565. "name": "Jonathan Hedstrom",
  5566. "email": "jhedstrom@gmail.com"
  5567. },
  5568. {
  5569. "name": "Christopher Gervais",
  5570. "email": "chris@ergonlogic.com"
  5571. },
  5572. {
  5573. "name": "Dave Reid",
  5574. "email": "dave@davereid.net"
  5575. },
  5576. {
  5577. "name": "Damian Lee",
  5578. "email": "damiankloip@googlemail.com"
  5579. }
  5580. ],
  5581. "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.",
  5582. "homepage": "http://www.drush.org",
  5583. "support": {
  5584. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  5585. "irc": "irc://irc.freenode.org/drush",
  5586. "issues": "https://github.com/drush-ops/drush/issues",
  5587. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  5588. "source": "https://github.com/drush-ops/drush/tree/9.7.3"
  5589. },
  5590. "funding": [
  5591. {
  5592. "url": "https://github.com/weitzman",
  5593. "type": "github"
  5594. }
  5595. ],
  5596. "time": "2021-03-22T17:00:48+00:00"
  5597. },
  5598. {
  5599. "name": "easyrdf/easyrdf",
  5600. "version": "0.9.1",
  5601. "source": {
  5602. "type": "git",
  5603. "url": "https://github.com/easyrdf/easyrdf.git",
  5604. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  5605. },
  5606. "dist": {
  5607. "type": "zip",
  5608. "url": "https://api.github.com/repos/easyrdf/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  5609. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  5610. "shasum": ""
  5611. },
  5612. "require": {
  5613. "ext-mbstring": "*",
  5614. "ext-pcre": "*",
  5615. "php": ">=5.2.8"
  5616. },
  5617. "require-dev": {
  5618. "phpunit/phpunit": "~3.5",
  5619. "sami/sami": "~1.4",
  5620. "squizlabs/php_codesniffer": "~1.4.3"
  5621. },
  5622. "suggest": {
  5623. "ml/json-ld": "~1.0"
  5624. },
  5625. "type": "library",
  5626. "autoload": {
  5627. "psr-0": {
  5628. "EasyRdf_": "lib/"
  5629. }
  5630. },
  5631. "notification-url": "https://packagist.org/downloads/",
  5632. "license": [
  5633. "BSD-3-Clause"
  5634. ],
  5635. "authors": [
  5636. {
  5637. "name": "Nicholas Humfrey",
  5638. "email": "njh@aelius.com",
  5639. "homepage": "http://www.aelius.com/njh/",
  5640. "role": "Developer"
  5641. },
  5642. {
  5643. "name": "Alexey Zakhlestin",
  5644. "email": "indeyets@gmail.com",
  5645. "role": "Developer"
  5646. }
  5647. ],
  5648. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  5649. "homepage": "http://www.easyrdf.org/",
  5650. "keywords": [
  5651. "Linked Data",
  5652. "RDF",
  5653. "Semantic Web",
  5654. "Turtle",
  5655. "rdfa",
  5656. "sparql"
  5657. ],
  5658. "support": {
  5659. "forum": "http://groups.google.com/group/easyrdf/",
  5660. "irc": "irc://chat.freenode.net/easyrdf",
  5661. "issues": "http://github.com/njh/easyrdf/issues",
  5662. "source": "https://github.com/easyrdf/easyrdf/tree/0.9.1"
  5663. },
  5664. "time": "2015-02-27T09:45:49+00:00"
  5665. },
  5666. {
  5667. "name": "egulias/email-validator",
  5668. "version": "2.1.17",
  5669. "source": {
  5670. "type": "git",
  5671. "url": "https://github.com/egulias/EmailValidator.git",
  5672. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a"
  5673. },
  5674. "dist": {
  5675. "type": "zip",
  5676. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ade6887fd9bd74177769645ab5c474824f8a418a",
  5677. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a",
  5678. "shasum": ""
  5679. },
  5680. "require": {
  5681. "doctrine/lexer": "^1.0.1",
  5682. "php": ">=5.5",
  5683. "symfony/polyfill-intl-idn": "^1.10"
  5684. },
  5685. "require-dev": {
  5686. "dominicsayers/isemail": "^3.0.7",
  5687. "phpunit/phpunit": "^4.8.36|^7.5.15",
  5688. "satooshi/php-coveralls": "^1.0.1"
  5689. },
  5690. "suggest": {
  5691. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  5692. },
  5693. "type": "library",
  5694. "extra": {
  5695. "branch-alias": {
  5696. "dev-master": "2.1.x-dev"
  5697. }
  5698. },
  5699. "autoload": {
  5700. "psr-4": {
  5701. "Egulias\\EmailValidator\\": "EmailValidator"
  5702. }
  5703. },
  5704. "notification-url": "https://packagist.org/downloads/",
  5705. "license": [
  5706. "MIT"
  5707. ],
  5708. "authors": [
  5709. {
  5710. "name": "Eduardo Gulias Davis"
  5711. }
  5712. ],
  5713. "description": "A library for validating emails against several RFCs",
  5714. "homepage": "https://github.com/egulias/EmailValidator",
  5715. "keywords": [
  5716. "email",
  5717. "emailvalidation",
  5718. "emailvalidator",
  5719. "validation",
  5720. "validator"
  5721. ],
  5722. "support": {
  5723. "issues": "https://github.com/egulias/EmailValidator/issues",
  5724. "source": "https://github.com/egulias/EmailValidator/tree/2.1.17"
  5725. },
  5726. "time": "2020-02-13T22:36:52+00:00"
  5727. },
  5728. {
  5729. "name": "grasmash/expander",
  5730. "version": "1.0.0",
  5731. "source": {
  5732. "type": "git",
  5733. "url": "https://github.com/grasmash/expander.git",
  5734. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  5735. },
  5736. "dist": {
  5737. "type": "zip",
  5738. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5739. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5740. "shasum": ""
  5741. },
  5742. "require": {
  5743. "dflydev/dot-access-data": "^1.1.0",
  5744. "php": ">=5.4"
  5745. },
  5746. "require-dev": {
  5747. "greg-1-anderson/composer-test-scenarios": "^1",
  5748. "phpunit/phpunit": "^4|^5.5.4",
  5749. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5750. "squizlabs/php_codesniffer": "^2.7"
  5751. },
  5752. "type": "library",
  5753. "extra": {
  5754. "branch-alias": {
  5755. "dev-master": "1.x-dev"
  5756. }
  5757. },
  5758. "autoload": {
  5759. "psr-4": {
  5760. "Grasmash\\Expander\\": "src/"
  5761. }
  5762. },
  5763. "notification-url": "https://packagist.org/downloads/",
  5764. "license": [
  5765. "MIT"
  5766. ],
  5767. "authors": [
  5768. {
  5769. "name": "Matthew Grasmick"
  5770. }
  5771. ],
  5772. "description": "Expands internal property references in PHP arrays file.",
  5773. "time": "2017-12-21T22:14:55+00:00"
  5774. },
  5775. {
  5776. "name": "grasmash/yaml-expander",
  5777. "version": "1.4.0",
  5778. "source": {
  5779. "type": "git",
  5780. "url": "https://github.com/grasmash/yaml-expander.git",
  5781. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  5782. },
  5783. "dist": {
  5784. "type": "zip",
  5785. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5786. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5787. "shasum": ""
  5788. },
  5789. "require": {
  5790. "dflydev/dot-access-data": "^1.1.0",
  5791. "php": ">=5.4",
  5792. "symfony/yaml": "^2.8.11|^3|^4"
  5793. },
  5794. "require-dev": {
  5795. "greg-1-anderson/composer-test-scenarios": "^1",
  5796. "phpunit/phpunit": "^4.8|^5.5.4",
  5797. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5798. "squizlabs/php_codesniffer": "^2.7"
  5799. },
  5800. "type": "library",
  5801. "extra": {
  5802. "branch-alias": {
  5803. "dev-master": "1.x-dev"
  5804. }
  5805. },
  5806. "autoload": {
  5807. "psr-4": {
  5808. "Grasmash\\YamlExpander\\": "src/"
  5809. }
  5810. },
  5811. "notification-url": "https://packagist.org/downloads/",
  5812. "license": [
  5813. "MIT"
  5814. ],
  5815. "authors": [
  5816. {
  5817. "name": "Matthew Grasmick"
  5818. }
  5819. ],
  5820. "description": "Expands internal property references in a yaml file.",
  5821. "time": "2017-12-16T16:06:03+00:00"
  5822. },
  5823. {
  5824. "name": "guzzlehttp/guzzle",
  5825. "version": "6.5.4",
  5826. "source": {
  5827. "type": "git",
  5828. "url": "https://github.com/guzzle/guzzle.git",
  5829. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d"
  5830. },
  5831. "dist": {
  5832. "type": "zip",
  5833. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  5834. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  5835. "shasum": ""
  5836. },
  5837. "require": {
  5838. "ext-json": "*",
  5839. "guzzlehttp/promises": "^1.0",
  5840. "guzzlehttp/psr7": "^1.6.1",
  5841. "php": ">=5.5",
  5842. "symfony/polyfill-intl-idn": "1.17.0"
  5843. },
  5844. "require-dev": {
  5845. "ext-curl": "*",
  5846. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  5847. "psr/log": "^1.1"
  5848. },
  5849. "suggest": {
  5850. "psr/log": "Required for using the Log middleware"
  5851. },
  5852. "type": "library",
  5853. "extra": {
  5854. "branch-alias": {
  5855. "dev-master": "6.5-dev"
  5856. }
  5857. },
  5858. "autoload": {
  5859. "files": [
  5860. "src/functions_include.php"
  5861. ],
  5862. "psr-4": {
  5863. "GuzzleHttp\\": "src/"
  5864. }
  5865. },
  5866. "notification-url": "https://packagist.org/downloads/",
  5867. "license": [
  5868. "MIT"
  5869. ],
  5870. "authors": [
  5871. {
  5872. "name": "Michael Dowling",
  5873. "email": "mtdowling@gmail.com",
  5874. "homepage": "https://github.com/mtdowling"
  5875. }
  5876. ],
  5877. "description": "Guzzle is a PHP HTTP client library",
  5878. "homepage": "http://guzzlephp.org/",
  5879. "keywords": [
  5880. "client",
  5881. "curl",
  5882. "framework",
  5883. "http",
  5884. "http client",
  5885. "rest",
  5886. "web service"
  5887. ],
  5888. "support": {
  5889. "issues": "https://github.com/guzzle/guzzle/issues",
  5890. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  5891. },
  5892. "time": "2020-05-25T19:35:05+00:00"
  5893. },
  5894. {
  5895. "name": "guzzlehttp/promises",
  5896. "version": "v1.3.1",
  5897. "source": {
  5898. "type": "git",
  5899. "url": "https://github.com/guzzle/promises.git",
  5900. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  5901. },
  5902. "dist": {
  5903. "type": "zip",
  5904. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  5905. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  5906. "shasum": ""
  5907. },
  5908. "require": {
  5909. "php": ">=5.5.0"
  5910. },
  5911. "require-dev": {
  5912. "phpunit/phpunit": "^4.0"
  5913. },
  5914. "type": "library",
  5915. "extra": {
  5916. "branch-alias": {
  5917. "dev-master": "1.4-dev"
  5918. }
  5919. },
  5920. "autoload": {
  5921. "files": [
  5922. "src/functions_include.php"
  5923. ],
  5924. "psr-4": {
  5925. "GuzzleHttp\\Promise\\": "src/"
  5926. }
  5927. },
  5928. "notification-url": "https://packagist.org/downloads/",
  5929. "license": [
  5930. "MIT"
  5931. ],
  5932. "authors": [
  5933. {
  5934. "name": "Michael Dowling",
  5935. "email": "mtdowling@gmail.com",
  5936. "homepage": "https://github.com/mtdowling"
  5937. }
  5938. ],
  5939. "description": "Guzzle promises library",
  5940. "keywords": [
  5941. "promise"
  5942. ],
  5943. "support": {
  5944. "issues": "https://github.com/guzzle/promises/issues",
  5945. "source": "https://github.com/guzzle/promises/tree/master"
  5946. },
  5947. "time": "2016-12-20T10:07:11+00:00"
  5948. },
  5949. {
  5950. "name": "guzzlehttp/psr7",
  5951. "version": "1.6.1",
  5952. "source": {
  5953. "type": "git",
  5954. "url": "https://github.com/guzzle/psr7.git",
  5955. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  5956. },
  5957. "dist": {
  5958. "type": "zip",
  5959. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  5960. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  5961. "shasum": ""
  5962. },
  5963. "require": {
  5964. "php": ">=5.4.0",
  5965. "psr/http-message": "~1.0",
  5966. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  5967. },
  5968. "provide": {
  5969. "psr/http-message-implementation": "1.0"
  5970. },
  5971. "require-dev": {
  5972. "ext-zlib": "*",
  5973. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  5974. },
  5975. "suggest": {
  5976. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  5977. },
  5978. "type": "library",
  5979. "extra": {
  5980. "branch-alias": {
  5981. "dev-master": "1.6-dev"
  5982. }
  5983. },
  5984. "autoload": {
  5985. "files": [
  5986. "src/functions_include.php"
  5987. ],
  5988. "psr-4": {
  5989. "GuzzleHttp\\Psr7\\": "src/"
  5990. }
  5991. },
  5992. "notification-url": "https://packagist.org/downloads/",
  5993. "license": [
  5994. "MIT"
  5995. ],
  5996. "authors": [
  5997. {
  5998. "name": "Michael Dowling",
  5999. "email": "mtdowling@gmail.com",
  6000. "homepage": "https://github.com/mtdowling"
  6001. },
  6002. {
  6003. "name": "Tobias Schultze",
  6004. "homepage": "https://github.com/Tobion"
  6005. }
  6006. ],
  6007. "description": "PSR-7 message implementation that also provides common utility methods",
  6008. "keywords": [
  6009. "http",
  6010. "message",
  6011. "psr-7",
  6012. "request",
  6013. "response",
  6014. "stream",
  6015. "uri",
  6016. "url"
  6017. ],
  6018. "support": {
  6019. "issues": "https://github.com/guzzle/psr7/issues",
  6020. "source": "https://github.com/guzzle/psr7/tree/1.6.1"
  6021. },
  6022. "time": "2019-07-01T23:21:34+00:00"
  6023. },
  6024. {
  6025. "name": "kint-php/kint",
  6026. "version": "5.1.1",
  6027. "source": {
  6028. "type": "git",
  6029. "url": "https://github.com/kint-php/kint.git",
  6030. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b"
  6031. },
  6032. "dist": {
  6033. "type": "zip",
  6034. "url": "https://api.github.com/repos/kint-php/kint/zipball/8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  6035. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  6036. "shasum": ""
  6037. },
  6038. "require": {
  6039. "php": ">=7.1"
  6040. },
  6041. "require-dev": {
  6042. "friendsofphp/php-cs-fixer": "^3",
  6043. "phpspec/prophecy-phpunit": "^2",
  6044. "phpunit/phpunit": "^9",
  6045. "seld/phar-utils": "^1",
  6046. "symfony/finder": ">=4.0",
  6047. "vimeo/psalm": "^5"
  6048. },
  6049. "suggest": {
  6050. "kint-php/kint-helpers": "Provides extra helper functions",
  6051. "kint-php/kint-twig": "Provides d() and s() functions in twig templates"
  6052. },
  6053. "type": "library",
  6054. "autoload": {
  6055. "files": [
  6056. "init.php"
  6057. ],
  6058. "psr-4": {
  6059. "Kint\\": "src/"
  6060. }
  6061. },
  6062. "notification-url": "https://packagist.org/downloads/",
  6063. "license": [
  6064. "MIT"
  6065. ],
  6066. "authors": [
  6067. {
  6068. "name": "Jonathan Vollebregt",
  6069. "homepage": "https://github.com/jnvsor"
  6070. },
  6071. {
  6072. "name": "Contributors",
  6073. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  6074. }
  6075. ],
  6076. "description": "Kint - debugging tool for PHP developers",
  6077. "homepage": "https://kint-php.github.io/kint/",
  6078. "keywords": [
  6079. "debug",
  6080. "kint",
  6081. "php"
  6082. ],
  6083. "support": {
  6084. "issues": "https://github.com/kint-php/kint/issues",
  6085. "source": "https://github.com/kint-php/kint/tree/5.1.1"
  6086. },
  6087. "time": "2024-04-26T14:20:09+00:00"
  6088. },
  6089. {
  6090. "name": "laminas/laminas-diactoros",
  6091. "version": "1.8.7p2",
  6092. "source": {
  6093. "type": "git",
  6094. "url": "https://github.com/laminas/laminas-diactoros.git",
  6095. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa"
  6096. },
  6097. "dist": {
  6098. "type": "zip",
  6099. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/6991c1af7c8d2c8efee81b22ba97024781824aaa",
  6100. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa",
  6101. "shasum": ""
  6102. },
  6103. "require": {
  6104. "laminas/laminas-zendframework-bridge": "^1.0",
  6105. "php": "^5.6 || ^7.0",
  6106. "psr/http-message": "^1.0"
  6107. },
  6108. "provide": {
  6109. "psr/http-message-implementation": "1.0"
  6110. },
  6111. "replace": {
  6112. "zendframework/zend-diactoros": "~1.8.7.0"
  6113. },
  6114. "require-dev": {
  6115. "ext-dom": "*",
  6116. "ext-libxml": "*",
  6117. "laminas/laminas-coding-standard": "~1.0",
  6118. "php-http/psr7-integration-tests": "dev-master",
  6119. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7"
  6120. },
  6121. "type": "library",
  6122. "extra": {
  6123. "branch-alias": {
  6124. "dev-release-1.8": "1.8.x-dev"
  6125. }
  6126. },
  6127. "autoload": {
  6128. "files": [
  6129. "src/functions/create_uploaded_file.php",
  6130. "src/functions/marshal_headers_from_sapi.php",
  6131. "src/functions/marshal_method_from_sapi.php",
  6132. "src/functions/marshal_protocol_version_from_sapi.php",
  6133. "src/functions/marshal_uri_from_sapi.php",
  6134. "src/functions/normalize_server.php",
  6135. "src/functions/normalize_uploaded_files.php",
  6136. "src/functions/parse_cookie_header.php",
  6137. "src/functions/create_uploaded_file.legacy.php",
  6138. "src/functions/marshal_headers_from_sapi.legacy.php",
  6139. "src/functions/marshal_method_from_sapi.legacy.php",
  6140. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  6141. "src/functions/marshal_uri_from_sapi.legacy.php",
  6142. "src/functions/normalize_server.legacy.php",
  6143. "src/functions/normalize_uploaded_files.legacy.php",
  6144. "src/functions/parse_cookie_header.legacy.php"
  6145. ],
  6146. "psr-4": {
  6147. "Laminas\\Diactoros\\": "src/"
  6148. }
  6149. },
  6150. "notification-url": "https://packagist.org/downloads/",
  6151. "license": [
  6152. "BSD-3-Clause"
  6153. ],
  6154. "description": "PSR HTTP Message implementations",
  6155. "homepage": "https://laminas.dev",
  6156. "keywords": [
  6157. "http",
  6158. "laminas",
  6159. "psr",
  6160. "psr-7"
  6161. ],
  6162. "support": {
  6163. "chat": "https://laminas.dev/chat",
  6164. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  6165. "forum": "https://discourse.laminas.dev",
  6166. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  6167. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  6168. "source": "https://github.com/laminas/laminas-diactoros"
  6169. },
  6170. "time": "2020-03-23T15:28:28+00:00"
  6171. },
  6172. {
  6173. "name": "laminas/laminas-escaper",
  6174. "version": "2.6.1",
  6175. "source": {
  6176. "type": "git",
  6177. "url": "https://github.com/laminas/laminas-escaper.git",
  6178. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70"
  6179. },
  6180. "dist": {
  6181. "type": "zip",
  6182. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/25f2a053eadfa92ddacb609dcbbc39362610da70",
  6183. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70",
  6184. "shasum": ""
  6185. },
  6186. "require": {
  6187. "laminas/laminas-zendframework-bridge": "^1.0",
  6188. "php": "^5.6 || ^7.0"
  6189. },
  6190. "replace": {
  6191. "zendframework/zend-escaper": "self.version"
  6192. },
  6193. "require-dev": {
  6194. "laminas/laminas-coding-standard": "~1.0.0",
  6195. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  6196. },
  6197. "type": "library",
  6198. "extra": {
  6199. "branch-alias": {
  6200. "dev-master": "2.6.x-dev",
  6201. "dev-develop": "2.7.x-dev"
  6202. }
  6203. },
  6204. "autoload": {
  6205. "psr-4": {
  6206. "Laminas\\Escaper\\": "src/"
  6207. }
  6208. },
  6209. "notification-url": "https://packagist.org/downloads/",
  6210. "license": [
  6211. "BSD-3-Clause"
  6212. ],
  6213. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  6214. "homepage": "https://laminas.dev",
  6215. "keywords": [
  6216. "escaper",
  6217. "laminas"
  6218. ],
  6219. "support": {
  6220. "chat": "https://laminas.dev/chat",
  6221. "docs": "https://docs.laminas.dev/laminas-escaper/",
  6222. "forum": "https://discourse.laminas.dev",
  6223. "issues": "https://github.com/laminas/laminas-escaper/issues",
  6224. "rss": "https://github.com/laminas/laminas-escaper/releases.atom",
  6225. "source": "https://github.com/laminas/laminas-escaper"
  6226. },
  6227. "time": "2019-12-31T16:43:30+00:00"
  6228. },
  6229. {
  6230. "name": "laminas/laminas-feed",
  6231. "version": "2.12.2",
  6232. "source": {
  6233. "type": "git",
  6234. "url": "https://github.com/laminas/laminas-feed.git",
  6235. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654"
  6236. },
  6237. "dist": {
  6238. "type": "zip",
  6239. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  6240. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  6241. "shasum": ""
  6242. },
  6243. "require": {
  6244. "ext-dom": "*",
  6245. "ext-libxml": "*",
  6246. "laminas/laminas-escaper": "^2.5.2",
  6247. "laminas/laminas-stdlib": "^3.2.1",
  6248. "laminas/laminas-zendframework-bridge": "^1.0",
  6249. "php": "^5.6 || ^7.0"
  6250. },
  6251. "replace": {
  6252. "zendframework/zend-feed": "^2.12.0"
  6253. },
  6254. "require-dev": {
  6255. "laminas/laminas-cache": "^2.7.2",
  6256. "laminas/laminas-coding-standard": "~1.0.0",
  6257. "laminas/laminas-db": "^2.8.2",
  6258. "laminas/laminas-http": "^2.7",
  6259. "laminas/laminas-servicemanager": "^2.7.8 || ^3.3",
  6260. "laminas/laminas-validator": "^2.10.1",
  6261. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.20",
  6262. "psr/http-message": "^1.0.1"
  6263. },
  6264. "suggest": {
  6265. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  6266. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  6267. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  6268. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  6269. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  6270. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  6271. },
  6272. "type": "library",
  6273. "extra": {
  6274. "branch-alias": {
  6275. "dev-master": "2.12.x-dev",
  6276. "dev-develop": "2.13.x-dev"
  6277. }
  6278. },
  6279. "autoload": {
  6280. "psr-4": {
  6281. "Laminas\\Feed\\": "src/"
  6282. }
  6283. },
  6284. "notification-url": "https://packagist.org/downloads/",
  6285. "license": [
  6286. "BSD-3-Clause"
  6287. ],
  6288. "description": "provides functionality for consuming RSS and Atom feeds",
  6289. "homepage": "https://laminas.dev",
  6290. "keywords": [
  6291. "feed",
  6292. "laminas"
  6293. ],
  6294. "support": {
  6295. "chat": "https://laminas.dev/chat",
  6296. "docs": "https://docs.laminas.dev/laminas-feed/",
  6297. "forum": "https://discourse.laminas.dev",
  6298. "issues": "https://github.com/laminas/laminas-feed/issues",
  6299. "rss": "https://github.com/laminas/laminas-feed/releases.atom",
  6300. "source": "https://github.com/laminas/laminas-feed"
  6301. },
  6302. "time": "2020-03-29T12:36:29+00:00"
  6303. },
  6304. {
  6305. "name": "laminas/laminas-servicemanager",
  6306. "version": "3.17.0",
  6307. "source": {
  6308. "type": "git",
  6309. "url": "https://github.com/laminas/laminas-servicemanager.git",
  6310. "reference": "360be5f16955dd1edbcce1cfaa98ed82a17f02ec"
  6311. },
  6312. "dist": {
  6313. "type": "zip",
  6314. "url": "https://api.github.com/repos/laminas/laminas-servicemanager/zipball/360be5f16955dd1edbcce1cfaa98ed82a17f02ec",
  6315. "reference": "360be5f16955dd1edbcce1cfaa98ed82a17f02ec",
  6316. "shasum": ""
  6317. },
  6318. "require": {
  6319. "laminas/laminas-stdlib": "^3.2.1",
  6320. "php": "~7.4.0 || ~8.0.0 || ~8.1.0",
  6321. "psr/container": "^1.0"
  6322. },
  6323. "conflict": {
  6324. "ext-psr": "*",
  6325. "laminas/laminas-code": "<3.3.1",
  6326. "zendframework/zend-code": "<3.3.1",
  6327. "zendframework/zend-servicemanager": "*"
  6328. },
  6329. "provide": {
  6330. "psr/container-implementation": "^1.0"
  6331. },
  6332. "replace": {
  6333. "container-interop/container-interop": "^1.2.0"
  6334. },
  6335. "require-dev": {
  6336. "composer/package-versions-deprecated": "^1.0",
  6337. "laminas/laminas-coding-standard": "~2.4.0",
  6338. "laminas/laminas-container-config-test": "^0.7",
  6339. "laminas/laminas-dependency-plugin": "^2.1.2",
  6340. "mikey179/vfsstream": "^1.6.10@alpha",
  6341. "ocramius/proxy-manager": "^2.11",
  6342. "phpbench/phpbench": "^1.1",
  6343. "phpspec/prophecy-phpunit": "^2.0",
  6344. "phpunit/phpunit": "^9.5.5",
  6345. "psalm/plugin-phpunit": "^0.17.0",
  6346. "vimeo/psalm": "^4.8"
  6347. },
  6348. "suggest": {
  6349. "ocramius/proxy-manager": "ProxyManager ^2.1.1 to handle lazy initialization of services"
  6350. },
  6351. "bin": [
  6352. "bin/generate-deps-for-config-factory",
  6353. "bin/generate-factory-for-class"
  6354. ],
  6355. "type": "library",
  6356. "autoload": {
  6357. "files": [
  6358. "src/autoload.php"
  6359. ],
  6360. "psr-4": {
  6361. "Laminas\\ServiceManager\\": "src/"
  6362. }
  6363. },
  6364. "notification-url": "https://packagist.org/downloads/",
  6365. "license": [
  6366. "BSD-3-Clause"
  6367. ],
  6368. "description": "Factory-Driven Dependency Injection Container",
  6369. "homepage": "https://laminas.dev",
  6370. "keywords": [
  6371. "PSR-11",
  6372. "dependency-injection",
  6373. "di",
  6374. "dic",
  6375. "laminas",
  6376. "service-manager",
  6377. "servicemanager"
  6378. ],
  6379. "support": {
  6380. "chat": "https://laminas.dev/chat",
  6381. "docs": "https://docs.laminas.dev/laminas-servicemanager/",
  6382. "forum": "https://discourse.laminas.dev",
  6383. "issues": "https://github.com/laminas/laminas-servicemanager/issues",
  6384. "rss": "https://github.com/laminas/laminas-servicemanager/releases.atom",
  6385. "source": "https://github.com/laminas/laminas-servicemanager"
  6386. },
  6387. "funding": [
  6388. {
  6389. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6390. "type": "community_bridge"
  6391. }
  6392. ],
  6393. "time": "2022-09-22T11:33:46+00:00"
  6394. },
  6395. {
  6396. "name": "laminas/laminas-stdlib",
  6397. "version": "3.2.1",
  6398. "source": {
  6399. "type": "git",
  6400. "url": "https://github.com/laminas/laminas-stdlib.git",
  6401. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6"
  6402. },
  6403. "dist": {
  6404. "type": "zip",
  6405. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/2b18347625a2f06a1a485acfbc870f699dbe51c6",
  6406. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6",
  6407. "shasum": ""
  6408. },
  6409. "require": {
  6410. "laminas/laminas-zendframework-bridge": "^1.0",
  6411. "php": "^5.6 || ^7.0"
  6412. },
  6413. "replace": {
  6414. "zendframework/zend-stdlib": "self.version"
  6415. },
  6416. "require-dev": {
  6417. "laminas/laminas-coding-standard": "~1.0.0",
  6418. "phpbench/phpbench": "^0.13",
  6419. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  6420. },
  6421. "type": "library",
  6422. "extra": {
  6423. "branch-alias": {
  6424. "dev-master": "3.2.x-dev",
  6425. "dev-develop": "3.3.x-dev"
  6426. }
  6427. },
  6428. "autoload": {
  6429. "psr-4": {
  6430. "Laminas\\Stdlib\\": "src/"
  6431. }
  6432. },
  6433. "notification-url": "https://packagist.org/downloads/",
  6434. "license": [
  6435. "BSD-3-Clause"
  6436. ],
  6437. "description": "SPL extensions, array utilities, error handlers, and more",
  6438. "homepage": "https://laminas.dev",
  6439. "keywords": [
  6440. "laminas",
  6441. "stdlib"
  6442. ],
  6443. "support": {
  6444. "chat": "https://laminas.dev/chat",
  6445. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  6446. "forum": "https://discourse.laminas.dev",
  6447. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  6448. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  6449. "source": "https://github.com/laminas/laminas-stdlib"
  6450. },
  6451. "time": "2019-12-31T17:51:15+00:00"
  6452. },
  6453. {
  6454. "name": "laminas/laminas-text",
  6455. "version": "2.8.1",
  6456. "source": {
  6457. "type": "git",
  6458. "url": "https://github.com/laminas/laminas-text.git",
  6459. "reference": "d696fa1fb3880b9b8f02c08be58685013b421608"
  6460. },
  6461. "dist": {
  6462. "type": "zip",
  6463. "url": "https://api.github.com/repos/laminas/laminas-text/zipball/d696fa1fb3880b9b8f02c08be58685013b421608",
  6464. "reference": "d696fa1fb3880b9b8f02c08be58685013b421608",
  6465. "shasum": ""
  6466. },
  6467. "require": {
  6468. "laminas/laminas-servicemanager": "^3.4",
  6469. "laminas/laminas-stdlib": "^3.1",
  6470. "laminas/laminas-zendframework-bridge": "^1.0",
  6471. "php": "^7.3 || ~8.0.0"
  6472. },
  6473. "replace": {
  6474. "zendframework/zend-text": "^2.7.1"
  6475. },
  6476. "require-dev": {
  6477. "laminas/laminas-coding-standard": "~1.0.0",
  6478. "laminas/laminas-config": "^3.4",
  6479. "phpunit/phpunit": "^9.3"
  6480. },
  6481. "type": "library",
  6482. "autoload": {
  6483. "psr-4": {
  6484. "Laminas\\Text\\": "src/"
  6485. }
  6486. },
  6487. "notification-url": "https://packagist.org/downloads/",
  6488. "license": [
  6489. "BSD-3-Clause"
  6490. ],
  6491. "description": "Create FIGlets and text-based tables",
  6492. "homepage": "https://laminas.dev",
  6493. "keywords": [
  6494. "laminas",
  6495. "text"
  6496. ],
  6497. "support": {
  6498. "chat": "https://laminas.dev/chat",
  6499. "docs": "https://docs.laminas.dev/laminas-text/",
  6500. "forum": "https://discourse.laminas.dev",
  6501. "issues": "https://github.com/laminas/laminas-text/issues",
  6502. "rss": "https://github.com/laminas/laminas-text/releases.atom",
  6503. "source": "https://github.com/laminas/laminas-text"
  6504. },
  6505. "funding": [
  6506. {
  6507. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6508. "type": "community_bridge"
  6509. }
  6510. ],
  6511. "time": "2021-02-17T21:24:58+00:00"
  6512. },
  6513. {
  6514. "name": "laminas/laminas-zendframework-bridge",
  6515. "version": "1.0.4",
  6516. "source": {
  6517. "type": "git",
  6518. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  6519. "reference": "fcd87520e4943d968557803919523772475e8ea3"
  6520. },
  6521. "dist": {
  6522. "type": "zip",
  6523. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/fcd87520e4943d968557803919523772475e8ea3",
  6524. "reference": "fcd87520e4943d968557803919523772475e8ea3",
  6525. "shasum": ""
  6526. },
  6527. "require": {
  6528. "php": "^5.6 || ^7.0"
  6529. },
  6530. "require-dev": {
  6531. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1",
  6532. "squizlabs/php_codesniffer": "^3.5"
  6533. },
  6534. "type": "library",
  6535. "extra": {
  6536. "branch-alias": {
  6537. "dev-master": "1.0.x-dev",
  6538. "dev-develop": "1.1.x-dev"
  6539. },
  6540. "laminas": {
  6541. "module": "Laminas\\ZendFrameworkBridge"
  6542. }
  6543. },
  6544. "autoload": {
  6545. "files": [
  6546. "src/autoload.php"
  6547. ],
  6548. "psr-4": {
  6549. "Laminas\\ZendFrameworkBridge\\": "src//"
  6550. }
  6551. },
  6552. "notification-url": "https://packagist.org/downloads/",
  6553. "license": [
  6554. "BSD-3-Clause"
  6555. ],
  6556. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  6557. "keywords": [
  6558. "ZendFramework",
  6559. "autoloading",
  6560. "laminas",
  6561. "zf"
  6562. ],
  6563. "support": {
  6564. "forum": "https://discourse.laminas.dev/",
  6565. "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues",
  6566. "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom",
  6567. "source": "https://github.com/laminas/laminas-zendframework-bridge"
  6568. },
  6569. "funding": [
  6570. {
  6571. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6572. "type": "community_bridge"
  6573. }
  6574. ],
  6575. "abandoned": true,
  6576. "time": "2020-05-20T16:45:56+00:00"
  6577. },
  6578. {
  6579. "name": "league/container",
  6580. "version": "2.4.1",
  6581. "source": {
  6582. "type": "git",
  6583. "url": "https://github.com/thephpleague/container.git",
  6584. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  6585. },
  6586. "dist": {
  6587. "type": "zip",
  6588. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  6589. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  6590. "shasum": ""
  6591. },
  6592. "require": {
  6593. "container-interop/container-interop": "^1.2",
  6594. "php": "^5.4.0 || ^7.0"
  6595. },
  6596. "provide": {
  6597. "container-interop/container-interop-implementation": "^1.2",
  6598. "psr/container-implementation": "^1.0"
  6599. },
  6600. "replace": {
  6601. "orno/di": "~2.0"
  6602. },
  6603. "require-dev": {
  6604. "phpunit/phpunit": "4.*"
  6605. },
  6606. "type": "library",
  6607. "extra": {
  6608. "branch-alias": {
  6609. "dev-2.x": "2.x-dev",
  6610. "dev-1.x": "1.x-dev"
  6611. }
  6612. },
  6613. "autoload": {
  6614. "psr-4": {
  6615. "League\\Container\\": "src"
  6616. }
  6617. },
  6618. "notification-url": "https://packagist.org/downloads/",
  6619. "license": [
  6620. "MIT"
  6621. ],
  6622. "authors": [
  6623. {
  6624. "name": "Phil Bennett",
  6625. "email": "philipobenito@gmail.com",
  6626. "homepage": "http://www.philipobenito.com",
  6627. "role": "Developer"
  6628. }
  6629. ],
  6630. "description": "A fast and intuitive dependency injection container.",
  6631. "homepage": "https://github.com/thephpleague/container",
  6632. "keywords": [
  6633. "container",
  6634. "dependency",
  6635. "di",
  6636. "injection",
  6637. "league",
  6638. "provider",
  6639. "service"
  6640. ],
  6641. "time": "2017-05-10T09:20:27+00:00"
  6642. },
  6643. {
  6644. "name": "masterminds/html5",
  6645. "version": "2.3.0",
  6646. "source": {
  6647. "type": "git",
  6648. "url": "https://github.com/Masterminds/html5-php.git",
  6649. "reference": "2c37c6c520b995b761674de3be8455a381679067"
  6650. },
  6651. "dist": {
  6652. "type": "zip",
  6653. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067",
  6654. "reference": "2c37c6c520b995b761674de3be8455a381679067",
  6655. "shasum": ""
  6656. },
  6657. "require": {
  6658. "ext-libxml": "*",
  6659. "php": ">=5.3.0"
  6660. },
  6661. "require-dev": {
  6662. "phpunit/phpunit": "4.*",
  6663. "sami/sami": "~2.0",
  6664. "satooshi/php-coveralls": "1.0.*"
  6665. },
  6666. "type": "library",
  6667. "extra": {
  6668. "branch-alias": {
  6669. "dev-master": "2.2-dev"
  6670. }
  6671. },
  6672. "autoload": {
  6673. "psr-4": {
  6674. "Masterminds\\": "src"
  6675. }
  6676. },
  6677. "notification-url": "https://packagist.org/downloads/",
  6678. "license": [
  6679. "MIT"
  6680. ],
  6681. "authors": [
  6682. {
  6683. "name": "Matt Butcher",
  6684. "email": "technosophos@gmail.com"
  6685. },
  6686. {
  6687. "name": "Asmir Mustafic",
  6688. "email": "goetas@gmail.com"
  6689. },
  6690. {
  6691. "name": "Matt Farina",
  6692. "email": "matt@mattfarina.com"
  6693. }
  6694. ],
  6695. "description": "An HTML5 parser and serializer.",
  6696. "homepage": "http://masterminds.github.io/html5-php",
  6697. "keywords": [
  6698. "HTML5",
  6699. "dom",
  6700. "html",
  6701. "parser",
  6702. "querypath",
  6703. "serializer",
  6704. "xml"
  6705. ],
  6706. "support": {
  6707. "issues": "https://github.com/Masterminds/html5-php/issues",
  6708. "source": "https://github.com/Masterminds/html5-php/tree/2.x"
  6709. },
  6710. "time": "2017-09-04T12:26:28+00:00"
  6711. },
  6712. {
  6713. "name": "mathieuviossat/arraytotexttable",
  6714. "version": "v1.0.8",
  6715. "source": {
  6716. "type": "git",
  6717. "url": "https://github.com/viossat/arraytotexttable.git",
  6718. "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4"
  6719. },
  6720. "dist": {
  6721. "type": "zip",
  6722. "url": "https://api.github.com/repos/viossat/arraytotexttable/zipball/6b1af924478cb9c3a903269e304fff006fe0dbf4",
  6723. "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4",
  6724. "shasum": ""
  6725. },
  6726. "require": {
  6727. "laminas/laminas-text": "^2.7",
  6728. "php": ">=5.3.0"
  6729. },
  6730. "type": "library",
  6731. "autoload": {
  6732. "psr-4": {
  6733. "MathieuViossat\\Util\\": "src/"
  6734. }
  6735. },
  6736. "notification-url": "https://packagist.org/downloads/",
  6737. "license": [
  6738. "MIT"
  6739. ],
  6740. "authors": [
  6741. {
  6742. "name": "Mathieu Viossat",
  6743. "email": "mathieu@viossat.fr",
  6744. "homepage": "https://viossat.fr"
  6745. }
  6746. ],
  6747. "description": "Display arrays in terminal",
  6748. "homepage": "https://github.com/viossat/arraytotexttable",
  6749. "keywords": [
  6750. "array",
  6751. "ascii",
  6752. "table",
  6753. "terminal",
  6754. "text",
  6755. "unicode"
  6756. ],
  6757. "support": {
  6758. "issues": "https://github.com/viossat/arraytotexttable/issues",
  6759. "source": "https://github.com/viossat/arraytotexttable/tree/v1.0.8"
  6760. },
  6761. "time": "2020-06-23T17:14:22+00:00"
  6762. },
  6763. {
  6764. "name": "mglaman/phpstan-drupal",
  6765. "version": "1.2.1",
  6766. "source": {
  6767. "type": "git",
  6768. "url": "https://github.com/mglaman/phpstan-drupal.git",
  6769. "reference": "920c6b972a832046327f66dc6ff7448e3b5d6e4c"
  6770. },
  6771. "dist": {
  6772. "type": "zip",
  6773. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/920c6b972a832046327f66dc6ff7448e3b5d6e4c",
  6774. "reference": "920c6b972a832046327f66dc6ff7448e3b5d6e4c",
  6775. "shasum": ""
  6776. },
  6777. "require": {
  6778. "php": "^7.4 || ^8.0",
  6779. "phpstan/phpstan": "^1.10.1",
  6780. "phpstan/phpstan-deprecation-rules": "^1.1.4",
  6781. "symfony/finder": "~3.4.5 ||^4.2 || ^5.0 || ^6.0",
  6782. "symfony/yaml": "~3.4.5 || ^4.2|| ^5.0 || ^6.0",
  6783. "webflo/drupal-finder": "^1.2"
  6784. },
  6785. "require-dev": {
  6786. "behat/mink": "^1.8",
  6787. "composer/installers": "^1.9",
  6788. "drupal/core-recommended": "^8.8@alpha || ^9.0",
  6789. "drush/drush": "^9.6 || ^10.0 || ^11",
  6790. "phpstan/extension-installer": "^1.1",
  6791. "phpstan/phpstan-strict-rules": "^1.0",
  6792. "phpunit/phpunit": "^6.5 || ^7.5 || ^8.0 || ^9",
  6793. "slevomat/coding-standard": "^7.1",
  6794. "squizlabs/php_codesniffer": "^3.3",
  6795. "symfony/phpunit-bridge": "^3.4.3 || ^4.4 || ^5.4 || ^6.0"
  6796. },
  6797. "suggest": {
  6798. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  6799. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  6800. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  6801. },
  6802. "type": "phpstan-extension",
  6803. "extra": {
  6804. "branch-alias": {
  6805. "dev-main": "1.0-dev"
  6806. },
  6807. "installer-paths": {
  6808. "tests/fixtures/drupal/core": [
  6809. "type:drupal-core"
  6810. ],
  6811. "tests/fixtures/drupal/libraries/{$name}": [
  6812. "type:drupal-library"
  6813. ],
  6814. "tests/fixtures/drupal/modules/contrib/{$name}": [
  6815. "type:drupal-module"
  6816. ],
  6817. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  6818. "type:drupal-profile"
  6819. ],
  6820. "tests/fixtures/drupal/themes/contrib/{$name}": [
  6821. "type:drupal-theme"
  6822. ]
  6823. },
  6824. "phpstan": {
  6825. "includes": [
  6826. "extension.neon",
  6827. "rules.neon"
  6828. ]
  6829. }
  6830. },
  6831. "autoload": {
  6832. "psr-4": {
  6833. "mglaman\\PHPStanDrupal\\": "src/"
  6834. }
  6835. },
  6836. "notification-url": "https://packagist.org/downloads/",
  6837. "license": [
  6838. "MIT"
  6839. ],
  6840. "authors": [
  6841. {
  6842. "name": "Matt Glaman",
  6843. "email": "nmd.matt@gmail.com"
  6844. }
  6845. ],
  6846. "description": "Drupal extension and rules for PHPStan",
  6847. "support": {
  6848. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  6849. "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.1"
  6850. },
  6851. "funding": [
  6852. {
  6853. "url": "https://github.com/mglaman",
  6854. "type": "github"
  6855. },
  6856. {
  6857. "url": "https://opencollective.com/phpstan-drupal",
  6858. "type": "open_collective"
  6859. },
  6860. {
  6861. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  6862. "type": "tidelift"
  6863. }
  6864. ],
  6865. "time": "2023-11-03T13:17:28+00:00"
  6866. },
  6867. {
  6868. "name": "nikic/php-parser",
  6869. "version": "v4.4.0",
  6870. "source": {
  6871. "type": "git",
  6872. "url": "https://github.com/nikic/PHP-Parser.git",
  6873. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120"
  6874. },
  6875. "dist": {
  6876. "type": "zip",
  6877. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  6878. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  6879. "shasum": ""
  6880. },
  6881. "require": {
  6882. "ext-tokenizer": "*",
  6883. "php": ">=7.0"
  6884. },
  6885. "require-dev": {
  6886. "ircmaxell/php-yacc": "0.0.5",
  6887. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  6888. },
  6889. "bin": [
  6890. "bin/php-parse"
  6891. ],
  6892. "type": "library",
  6893. "extra": {
  6894. "branch-alias": {
  6895. "dev-master": "4.3-dev"
  6896. }
  6897. },
  6898. "autoload": {
  6899. "psr-4": {
  6900. "PhpParser\\": "lib/PhpParser"
  6901. }
  6902. },
  6903. "notification-url": "https://packagist.org/downloads/",
  6904. "license": [
  6905. "BSD-3-Clause"
  6906. ],
  6907. "authors": [
  6908. {
  6909. "name": "Nikita Popov"
  6910. }
  6911. ],
  6912. "description": "A PHP parser written in PHP",
  6913. "keywords": [
  6914. "parser",
  6915. "php"
  6916. ],
  6917. "time": "2020-04-10T16:34:50+00:00"
  6918. },
  6919. {
  6920. "name": "paragonie/random_compat",
  6921. "version": "v9.99.99",
  6922. "source": {
  6923. "type": "git",
  6924. "url": "https://github.com/paragonie/random_compat.git",
  6925. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  6926. },
  6927. "dist": {
  6928. "type": "zip",
  6929. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  6930. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  6931. "shasum": ""
  6932. },
  6933. "require": {
  6934. "php": "^7"
  6935. },
  6936. "require-dev": {
  6937. "phpunit/phpunit": "4.*|5.*",
  6938. "vimeo/psalm": "^1"
  6939. },
  6940. "suggest": {
  6941. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  6942. },
  6943. "type": "library",
  6944. "notification-url": "https://packagist.org/downloads/",
  6945. "license": [
  6946. "MIT"
  6947. ],
  6948. "authors": [
  6949. {
  6950. "name": "Paragon Initiative Enterprises",
  6951. "email": "security@paragonie.com",
  6952. "homepage": "https://paragonie.com"
  6953. }
  6954. ],
  6955. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  6956. "keywords": [
  6957. "csprng",
  6958. "polyfill",
  6959. "pseudorandom",
  6960. "random"
  6961. ],
  6962. "support": {
  6963. "email": "info@paragonie.com",
  6964. "issues": "https://github.com/paragonie/random_compat/issues",
  6965. "source": "https://github.com/paragonie/random_compat"
  6966. },
  6967. "time": "2018-07-02T15:55:56+00:00"
  6968. },
  6969. {
  6970. "name": "pear/archive_tar",
  6971. "version": "1.4.14",
  6972. "source": {
  6973. "type": "git",
  6974. "url": "https://github.com/pear/Archive_Tar.git",
  6975. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  6976. },
  6977. "dist": {
  6978. "type": "zip",
  6979. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  6980. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  6981. "shasum": ""
  6982. },
  6983. "require": {
  6984. "pear/pear-core-minimal": "^1.10.0alpha2",
  6985. "php": ">=5.2.0"
  6986. },
  6987. "require-dev": {
  6988. "phpunit/phpunit": "*"
  6989. },
  6990. "suggest": {
  6991. "ext-bz2": "Bz2 compression support.",
  6992. "ext-xz": "Lzma2 compression support.",
  6993. "ext-zlib": "Gzip compression support."
  6994. },
  6995. "type": "library",
  6996. "extra": {
  6997. "branch-alias": {
  6998. "dev-master": "1.4.x-dev"
  6999. }
  7000. },
  7001. "autoload": {
  7002. "psr-0": {
  7003. "Archive_Tar": ""
  7004. }
  7005. },
  7006. "notification-url": "https://packagist.org/downloads/",
  7007. "include-path": [
  7008. "./"
  7009. ],
  7010. "license": [
  7011. "BSD-3-Clause"
  7012. ],
  7013. "authors": [
  7014. {
  7015. "name": "Vincent Blavet",
  7016. "email": "vincent@phpconcept.net"
  7017. },
  7018. {
  7019. "name": "Greg Beaver",
  7020. "email": "greg@chiaraquartet.net"
  7021. },
  7022. {
  7023. "name": "Michiel Rook",
  7024. "email": "mrook@php.net"
  7025. }
  7026. ],
  7027. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  7028. "homepage": "https://github.com/pear/Archive_Tar",
  7029. "keywords": [
  7030. "archive",
  7031. "tar"
  7032. ],
  7033. "support": {
  7034. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  7035. "source": "https://github.com/pear/Archive_Tar"
  7036. },
  7037. "funding": [
  7038. {
  7039. "url": "https://github.com/mrook",
  7040. "type": "github"
  7041. },
  7042. {
  7043. "url": "https://www.patreon.com/michielrook",
  7044. "type": "patreon"
  7045. }
  7046. ],
  7047. "time": "2021-07-20T13:53:39+00:00"
  7048. },
  7049. {
  7050. "name": "pear/console_getopt",
  7051. "version": "v1.4.3",
  7052. "source": {
  7053. "type": "git",
  7054. "url": "https://github.com/pear/Console_Getopt.git",
  7055. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  7056. },
  7057. "dist": {
  7058. "type": "zip",
  7059. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7060. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7061. "shasum": ""
  7062. },
  7063. "type": "library",
  7064. "autoload": {
  7065. "psr-0": {
  7066. "Console": "./"
  7067. }
  7068. },
  7069. "notification-url": "https://packagist.org/downloads/",
  7070. "include-path": [
  7071. "./"
  7072. ],
  7073. "license": [
  7074. "BSD-2-Clause"
  7075. ],
  7076. "authors": [
  7077. {
  7078. "name": "Andrei Zmievski",
  7079. "email": "andrei@php.net",
  7080. "role": "Lead"
  7081. },
  7082. {
  7083. "name": "Stig Bakken",
  7084. "email": "stig@php.net",
  7085. "role": "Developer"
  7086. },
  7087. {
  7088. "name": "Greg Beaver",
  7089. "email": "cellog@php.net",
  7090. "role": "Helper"
  7091. }
  7092. ],
  7093. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  7094. "support": {
  7095. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  7096. "source": "https://github.com/pear/Console_Getopt"
  7097. },
  7098. "time": "2019-11-20T18:27:48+00:00"
  7099. },
  7100. {
  7101. "name": "pear/pear-core-minimal",
  7102. "version": "v1.10.10",
  7103. "source": {
  7104. "type": "git",
  7105. "url": "https://github.com/pear/pear-core-minimal.git",
  7106. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  7107. },
  7108. "dist": {
  7109. "type": "zip",
  7110. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  7111. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  7112. "shasum": ""
  7113. },
  7114. "require": {
  7115. "pear/console_getopt": "~1.4",
  7116. "pear/pear_exception": "~1.0"
  7117. },
  7118. "replace": {
  7119. "rsky/pear-core-min": "self.version"
  7120. },
  7121. "type": "library",
  7122. "autoload": {
  7123. "psr-0": {
  7124. "": "src/"
  7125. }
  7126. },
  7127. "notification-url": "https://packagist.org/downloads/",
  7128. "include-path": [
  7129. "src/"
  7130. ],
  7131. "license": [
  7132. "BSD-3-Clause"
  7133. ],
  7134. "authors": [
  7135. {
  7136. "name": "Christian Weiske",
  7137. "email": "cweiske@php.net",
  7138. "role": "Lead"
  7139. }
  7140. ],
  7141. "description": "Minimal set of PEAR core files to be used as composer dependency",
  7142. "support": {
  7143. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  7144. "source": "https://github.com/pear/pear-core-minimal"
  7145. },
  7146. "time": "2019-11-19T19:00:24+00:00"
  7147. },
  7148. {
  7149. "name": "pear/pear_exception",
  7150. "version": "v1.0.1",
  7151. "source": {
  7152. "type": "git",
  7153. "url": "https://github.com/pear/PEAR_Exception.git",
  7154. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7"
  7155. },
  7156. "dist": {
  7157. "type": "zip",
  7158. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  7159. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  7160. "shasum": ""
  7161. },
  7162. "require": {
  7163. "php": ">=4.4.0"
  7164. },
  7165. "require-dev": {
  7166. "phpunit/phpunit": "*"
  7167. },
  7168. "type": "class",
  7169. "extra": {
  7170. "branch-alias": {
  7171. "dev-master": "1.0.x-dev"
  7172. }
  7173. },
  7174. "autoload": {
  7175. "classmap": [
  7176. "PEAR/"
  7177. ]
  7178. },
  7179. "notification-url": "https://packagist.org/downloads/",
  7180. "include-path": [
  7181. "."
  7182. ],
  7183. "license": [
  7184. "BSD-2-Clause"
  7185. ],
  7186. "authors": [
  7187. {
  7188. "name": "Helgi Thormar",
  7189. "email": "dufuz@php.net"
  7190. },
  7191. {
  7192. "name": "Greg Beaver",
  7193. "email": "cellog@php.net"
  7194. }
  7195. ],
  7196. "description": "The PEAR Exception base class.",
  7197. "homepage": "https://github.com/pear/PEAR_Exception",
  7198. "keywords": [
  7199. "exception"
  7200. ],
  7201. "support": {
  7202. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  7203. "source": "https://github.com/pear/PEAR_Exception"
  7204. },
  7205. "time": "2019-12-10T10:24:42+00:00"
  7206. },
  7207. {
  7208. "name": "phpstan/phpstan",
  7209. "version": "1.12.3",
  7210. "source": {
  7211. "type": "git",
  7212. "url": "https://github.com/phpstan/phpstan.git",
  7213. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009"
  7214. },
  7215. "dist": {
  7216. "type": "zip",
  7217. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0fcbf194ab63d8159bb70d9aa3e1350051632009",
  7218. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009",
  7219. "shasum": ""
  7220. },
  7221. "require": {
  7222. "php": "^7.2|^8.0"
  7223. },
  7224. "conflict": {
  7225. "phpstan/phpstan-shim": "*"
  7226. },
  7227. "bin": [
  7228. "phpstan",
  7229. "phpstan.phar"
  7230. ],
  7231. "type": "library",
  7232. "autoload": {
  7233. "files": [
  7234. "bootstrap.php"
  7235. ]
  7236. },
  7237. "notification-url": "https://packagist.org/downloads/",
  7238. "license": [
  7239. "MIT"
  7240. ],
  7241. "description": "PHPStan - PHP Static Analysis Tool",
  7242. "keywords": [
  7243. "dev",
  7244. "static analysis"
  7245. ],
  7246. "support": {
  7247. "docs": "https://phpstan.org/user-guide/getting-started",
  7248. "forum": "https://github.com/phpstan/phpstan/discussions",
  7249. "issues": "https://github.com/phpstan/phpstan/issues",
  7250. "security": "https://github.com/phpstan/phpstan/security/policy",
  7251. "source": "https://github.com/phpstan/phpstan-src"
  7252. },
  7253. "funding": [
  7254. {
  7255. "url": "https://github.com/ondrejmirtes",
  7256. "type": "github"
  7257. },
  7258. {
  7259. "url": "https://github.com/phpstan",
  7260. "type": "github"
  7261. }
  7262. ],
  7263. "time": "2024-09-09T08:10:35+00:00"
  7264. },
  7265. {
  7266. "name": "phpstan/phpstan-deprecation-rules",
  7267. "version": "1.2.1",
  7268. "source": {
  7269. "type": "git",
  7270. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  7271. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82"
  7272. },
  7273. "dist": {
  7274. "type": "zip",
  7275. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7276. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7277. "shasum": ""
  7278. },
  7279. "require": {
  7280. "php": "^7.2 || ^8.0",
  7281. "phpstan/phpstan": "^1.12"
  7282. },
  7283. "require-dev": {
  7284. "php-parallel-lint/php-parallel-lint": "^1.2",
  7285. "phpstan/phpstan-phpunit": "^1.0",
  7286. "phpunit/phpunit": "^9.5"
  7287. },
  7288. "type": "phpstan-extension",
  7289. "extra": {
  7290. "phpstan": {
  7291. "includes": [
  7292. "rules.neon"
  7293. ]
  7294. }
  7295. },
  7296. "autoload": {
  7297. "psr-4": {
  7298. "PHPStan\\": "src/"
  7299. }
  7300. },
  7301. "notification-url": "https://packagist.org/downloads/",
  7302. "license": [
  7303. "MIT"
  7304. ],
  7305. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  7306. "support": {
  7307. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  7308. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.2.1"
  7309. },
  7310. "time": "2024-09-11T15:52:35+00:00"
  7311. },
  7312. {
  7313. "name": "psr/container",
  7314. "version": "1.0.0",
  7315. "source": {
  7316. "type": "git",
  7317. "url": "https://github.com/php-fig/container.git",
  7318. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  7319. },
  7320. "dist": {
  7321. "type": "zip",
  7322. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7323. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7324. "shasum": ""
  7325. },
  7326. "require": {
  7327. "php": ">=5.3.0"
  7328. },
  7329. "type": "library",
  7330. "extra": {
  7331. "branch-alias": {
  7332. "dev-master": "1.0.x-dev"
  7333. }
  7334. },
  7335. "autoload": {
  7336. "psr-4": {
  7337. "Psr\\Container\\": "src/"
  7338. }
  7339. },
  7340. "notification-url": "https://packagist.org/downloads/",
  7341. "license": [
  7342. "MIT"
  7343. ],
  7344. "authors": [
  7345. {
  7346. "name": "PHP-FIG",
  7347. "homepage": "http://www.php-fig.org/"
  7348. }
  7349. ],
  7350. "description": "Common Container Interface (PHP FIG PSR-11)",
  7351. "homepage": "https://github.com/php-fig/container",
  7352. "keywords": [
  7353. "PSR-11",
  7354. "container",
  7355. "container-interface",
  7356. "container-interop",
  7357. "psr"
  7358. ],
  7359. "support": {
  7360. "issues": "https://github.com/php-fig/container/issues",
  7361. "source": "https://github.com/php-fig/container/tree/master"
  7362. },
  7363. "time": "2017-02-14T16:28:37+00:00"
  7364. },
  7365. {
  7366. "name": "psr/http-message",
  7367. "version": "1.0.1",
  7368. "source": {
  7369. "type": "git",
  7370. "url": "https://github.com/php-fig/http-message.git",
  7371. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  7372. },
  7373. "dist": {
  7374. "type": "zip",
  7375. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  7376. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  7377. "shasum": ""
  7378. },
  7379. "require": {
  7380. "php": ">=5.3.0"
  7381. },
  7382. "type": "library",
  7383. "extra": {
  7384. "branch-alias": {
  7385. "dev-master": "1.0.x-dev"
  7386. }
  7387. },
  7388. "autoload": {
  7389. "psr-4": {
  7390. "Psr\\Http\\Message\\": "src/"
  7391. }
  7392. },
  7393. "notification-url": "https://packagist.org/downloads/",
  7394. "license": [
  7395. "MIT"
  7396. ],
  7397. "authors": [
  7398. {
  7399. "name": "PHP-FIG",
  7400. "homepage": "http://www.php-fig.org/"
  7401. }
  7402. ],
  7403. "description": "Common interface for HTTP messages",
  7404. "homepage": "https://github.com/php-fig/http-message",
  7405. "keywords": [
  7406. "http",
  7407. "http-message",
  7408. "psr",
  7409. "psr-7",
  7410. "request",
  7411. "response"
  7412. ],
  7413. "support": {
  7414. "source": "https://github.com/php-fig/http-message/tree/master"
  7415. },
  7416. "time": "2016-08-06T14:39:51+00:00"
  7417. },
  7418. {
  7419. "name": "psr/log",
  7420. "version": "1.1.3",
  7421. "source": {
  7422. "type": "git",
  7423. "url": "https://github.com/php-fig/log.git",
  7424. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  7425. },
  7426. "dist": {
  7427. "type": "zip",
  7428. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  7429. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  7430. "shasum": ""
  7431. },
  7432. "require": {
  7433. "php": ">=5.3.0"
  7434. },
  7435. "type": "library",
  7436. "extra": {
  7437. "branch-alias": {
  7438. "dev-master": "1.1.x-dev"
  7439. }
  7440. },
  7441. "autoload": {
  7442. "psr-4": {
  7443. "Psr\\Log\\": "Psr/Log/"
  7444. }
  7445. },
  7446. "notification-url": "https://packagist.org/downloads/",
  7447. "license": [
  7448. "MIT"
  7449. ],
  7450. "authors": [
  7451. {
  7452. "name": "PHP-FIG",
  7453. "homepage": "http://www.php-fig.org/"
  7454. }
  7455. ],
  7456. "description": "Common interface for logging libraries",
  7457. "homepage": "https://github.com/php-fig/log",
  7458. "keywords": [
  7459. "log",
  7460. "psr",
  7461. "psr-3"
  7462. ],
  7463. "support": {
  7464. "source": "https://github.com/php-fig/log/tree/1.1.3"
  7465. },
  7466. "time": "2020-03-23T09:12:05+00:00"
  7467. },
  7468. {
  7469. "name": "psy/psysh",
  7470. "version": "v0.10.4",
  7471. "source": {
  7472. "type": "git",
  7473. "url": "https://github.com/bobthecow/psysh.git",
  7474. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560"
  7475. },
  7476. "dist": {
  7477. "type": "zip",
  7478. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560",
  7479. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560",
  7480. "shasum": ""
  7481. },
  7482. "require": {
  7483. "dnoegel/php-xdg-base-dir": "0.1.*",
  7484. "ext-json": "*",
  7485. "ext-tokenizer": "*",
  7486. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  7487. "php": "^8.0 || ^7.0 || ^5.5.9",
  7488. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  7489. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  7490. },
  7491. "require-dev": {
  7492. "bamarni/composer-bin-plugin": "^1.2",
  7493. "hoa/console": "3.17.*"
  7494. },
  7495. "suggest": {
  7496. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7497. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  7498. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  7499. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  7500. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  7501. },
  7502. "bin": [
  7503. "bin/psysh"
  7504. ],
  7505. "type": "library",
  7506. "extra": {
  7507. "branch-alias": {
  7508. "dev-master": "0.10.x-dev"
  7509. }
  7510. },
  7511. "autoload": {
  7512. "files": [
  7513. "src/functions.php"
  7514. ],
  7515. "psr-4": {
  7516. "Psy\\": "src/"
  7517. }
  7518. },
  7519. "notification-url": "https://packagist.org/downloads/",
  7520. "license": [
  7521. "MIT"
  7522. ],
  7523. "authors": [
  7524. {
  7525. "name": "Justin Hileman",
  7526. "email": "justin@justinhileman.info",
  7527. "homepage": "http://justinhileman.com"
  7528. }
  7529. ],
  7530. "description": "An interactive shell for modern PHP.",
  7531. "homepage": "http://psysh.org",
  7532. "keywords": [
  7533. "REPL",
  7534. "console",
  7535. "interactive",
  7536. "shell"
  7537. ],
  7538. "time": "2020-05-03T19:32:03+00:00"
  7539. },
  7540. {
  7541. "name": "ralouphie/getallheaders",
  7542. "version": "3.0.3",
  7543. "source": {
  7544. "type": "git",
  7545. "url": "https://github.com/ralouphie/getallheaders.git",
  7546. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7547. },
  7548. "dist": {
  7549. "type": "zip",
  7550. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7551. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7552. "shasum": ""
  7553. },
  7554. "require": {
  7555. "php": ">=5.6"
  7556. },
  7557. "require-dev": {
  7558. "php-coveralls/php-coveralls": "^2.1",
  7559. "phpunit/phpunit": "^5 || ^6.5"
  7560. },
  7561. "type": "library",
  7562. "autoload": {
  7563. "files": [
  7564. "src/getallheaders.php"
  7565. ]
  7566. },
  7567. "notification-url": "https://packagist.org/downloads/",
  7568. "license": [
  7569. "MIT"
  7570. ],
  7571. "authors": [
  7572. {
  7573. "name": "Ralph Khattar",
  7574. "email": "ralph.khattar@gmail.com"
  7575. }
  7576. ],
  7577. "description": "A polyfill for getallheaders.",
  7578. "support": {
  7579. "issues": "https://github.com/ralouphie/getallheaders/issues",
  7580. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  7581. },
  7582. "time": "2019-03-08T08:55:37+00:00"
  7583. },
  7584. {
  7585. "name": "stack/builder",
  7586. "version": "v1.0.5",
  7587. "source": {
  7588. "type": "git",
  7589. "url": "https://github.com/stackphp/builder.git",
  7590. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  7591. },
  7592. "dist": {
  7593. "type": "zip",
  7594. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7595. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7596. "shasum": ""
  7597. },
  7598. "require": {
  7599. "php": ">=5.3.0",
  7600. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  7601. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  7602. },
  7603. "require-dev": {
  7604. "silex/silex": "~1.0"
  7605. },
  7606. "type": "library",
  7607. "extra": {
  7608. "branch-alias": {
  7609. "dev-master": "1.0-dev"
  7610. }
  7611. },
  7612. "autoload": {
  7613. "psr-0": {
  7614. "Stack": "src"
  7615. }
  7616. },
  7617. "notification-url": "https://packagist.org/downloads/",
  7618. "license": [
  7619. "MIT"
  7620. ],
  7621. "authors": [
  7622. {
  7623. "name": "Igor Wiedler",
  7624. "email": "igor@wiedler.ch"
  7625. }
  7626. ],
  7627. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  7628. "keywords": [
  7629. "stack"
  7630. ],
  7631. "support": {
  7632. "issues": "https://github.com/stackphp/builder/issues",
  7633. "source": "https://github.com/stackphp/builder/tree/master"
  7634. },
  7635. "abandoned": true,
  7636. "time": "2017-11-18T14:57:29+00:00"
  7637. },
  7638. {
  7639. "name": "symfony-cmf/routing",
  7640. "version": "1.4.1",
  7641. "source": {
  7642. "type": "git",
  7643. "url": "https://github.com/symfony-cmf/routing.git",
  7644. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  7645. },
  7646. "dist": {
  7647. "type": "zip",
  7648. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7649. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7650. "shasum": ""
  7651. },
  7652. "require": {
  7653. "php": "^5.3.9|^7.0",
  7654. "psr/log": "1.*",
  7655. "symfony/http-kernel": "^2.2|3.*",
  7656. "symfony/routing": "^2.2|3.*"
  7657. },
  7658. "require-dev": {
  7659. "friendsofsymfony/jsrouting-bundle": "^1.1",
  7660. "symfony-cmf/testing": "^1.3",
  7661. "symfony/config": "^2.2|3.*",
  7662. "symfony/dependency-injection": "^2.0.5|3.*",
  7663. "symfony/event-dispatcher": "^2.1|3.*"
  7664. },
  7665. "suggest": {
  7666. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  7667. },
  7668. "type": "library",
  7669. "extra": {
  7670. "branch-alias": {
  7671. "dev-master": "1.4-dev"
  7672. }
  7673. },
  7674. "autoload": {
  7675. "psr-4": {
  7676. "Symfony\\Cmf\\Component\\Routing\\": ""
  7677. }
  7678. },
  7679. "notification-url": "https://packagist.org/downloads/",
  7680. "license": [
  7681. "MIT"
  7682. ],
  7683. "authors": [
  7684. {
  7685. "name": "Symfony CMF Community",
  7686. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  7687. }
  7688. ],
  7689. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  7690. "homepage": "http://cmf.symfony.com",
  7691. "keywords": [
  7692. "database",
  7693. "routing"
  7694. ],
  7695. "support": {
  7696. "issues": "https://github.com/symfony-cmf/routing/issues",
  7697. "source": "https://github.com/symfony-cmf/routing/tree/1.4"
  7698. },
  7699. "time": "2017-05-09T08:10:41+00:00"
  7700. },
  7701. {
  7702. "name": "symfony/class-loader",
  7703. "version": "v3.4.41",
  7704. "source": {
  7705. "type": "git",
  7706. "url": "https://github.com/symfony/class-loader.git",
  7707. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8"
  7708. },
  7709. "dist": {
  7710. "type": "zip",
  7711. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e4636a4f23f157278a19e5db160c63de0da297d8",
  7712. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8",
  7713. "shasum": ""
  7714. },
  7715. "require": {
  7716. "php": "^5.5.9|>=7.0.8"
  7717. },
  7718. "require-dev": {
  7719. "symfony/finder": "~2.8|~3.0|~4.0",
  7720. "symfony/polyfill-apcu": "~1.1"
  7721. },
  7722. "suggest": {
  7723. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  7724. },
  7725. "type": "library",
  7726. "extra": {
  7727. "branch-alias": {
  7728. "dev-master": "3.4-dev"
  7729. }
  7730. },
  7731. "autoload": {
  7732. "psr-4": {
  7733. "Symfony\\Component\\ClassLoader\\": ""
  7734. },
  7735. "exclude-from-classmap": [
  7736. "/Tests/"
  7737. ]
  7738. },
  7739. "notification-url": "https://packagist.org/downloads/",
  7740. "license": [
  7741. "MIT"
  7742. ],
  7743. "authors": [
  7744. {
  7745. "name": "Fabien Potencier",
  7746. "email": "fabien@symfony.com"
  7747. },
  7748. {
  7749. "name": "Symfony Community",
  7750. "homepage": "https://symfony.com/contributors"
  7751. }
  7752. ],
  7753. "description": "Symfony ClassLoader Component",
  7754. "homepage": "https://symfony.com",
  7755. "support": {
  7756. "source": "https://github.com/symfony/class-loader/tree/3.4"
  7757. },
  7758. "funding": [
  7759. {
  7760. "url": "https://symfony.com/sponsor",
  7761. "type": "custom"
  7762. },
  7763. {
  7764. "url": "https://github.com/fabpot",
  7765. "type": "github"
  7766. },
  7767. {
  7768. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7769. "type": "tidelift"
  7770. }
  7771. ],
  7772. "abandoned": true,
  7773. "time": "2020-03-15T09:38:08+00:00"
  7774. },
  7775. {
  7776. "name": "symfony/console",
  7777. "version": "v3.4.41",
  7778. "source": {
  7779. "type": "git",
  7780. "url": "https://github.com/symfony/console.git",
  7781. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13"
  7782. },
  7783. "dist": {
  7784. "type": "zip",
  7785. "url": "https://api.github.com/repos/symfony/console/zipball/bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  7786. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  7787. "shasum": ""
  7788. },
  7789. "require": {
  7790. "php": "^5.5.9|>=7.0.8",
  7791. "symfony/debug": "~2.8|~3.0|~4.0",
  7792. "symfony/polyfill-mbstring": "~1.0"
  7793. },
  7794. "conflict": {
  7795. "symfony/dependency-injection": "<3.4",
  7796. "symfony/process": "<3.3"
  7797. },
  7798. "provide": {
  7799. "psr/log-implementation": "1.0"
  7800. },
  7801. "require-dev": {
  7802. "psr/log": "~1.0",
  7803. "symfony/config": "~3.3|~4.0",
  7804. "symfony/dependency-injection": "~3.4|~4.0",
  7805. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  7806. "symfony/lock": "~3.4|~4.0",
  7807. "symfony/process": "~3.3|~4.0"
  7808. },
  7809. "suggest": {
  7810. "psr/log": "For using the console logger",
  7811. "symfony/event-dispatcher": "",
  7812. "symfony/lock": "",
  7813. "symfony/process": ""
  7814. },
  7815. "type": "library",
  7816. "extra": {
  7817. "branch-alias": {
  7818. "dev-master": "3.4-dev"
  7819. }
  7820. },
  7821. "autoload": {
  7822. "psr-4": {
  7823. "Symfony\\Component\\Console\\": ""
  7824. },
  7825. "exclude-from-classmap": [
  7826. "/Tests/"
  7827. ]
  7828. },
  7829. "notification-url": "https://packagist.org/downloads/",
  7830. "license": [
  7831. "MIT"
  7832. ],
  7833. "authors": [
  7834. {
  7835. "name": "Fabien Potencier",
  7836. "email": "fabien@symfony.com"
  7837. },
  7838. {
  7839. "name": "Symfony Community",
  7840. "homepage": "https://symfony.com/contributors"
  7841. }
  7842. ],
  7843. "description": "Symfony Console Component",
  7844. "homepage": "https://symfony.com",
  7845. "support": {
  7846. "source": "https://github.com/symfony/console/tree/v3.4.41"
  7847. },
  7848. "funding": [
  7849. {
  7850. "url": "https://symfony.com/sponsor",
  7851. "type": "custom"
  7852. },
  7853. {
  7854. "url": "https://github.com/fabpot",
  7855. "type": "github"
  7856. },
  7857. {
  7858. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7859. "type": "tidelift"
  7860. }
  7861. ],
  7862. "time": "2020-05-30T18:58:05+00:00"
  7863. },
  7864. {
  7865. "name": "symfony/debug",
  7866. "version": "v3.4.41",
  7867. "source": {
  7868. "type": "git",
  7869. "url": "https://github.com/symfony/debug.git",
  7870. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d"
  7871. },
  7872. "dist": {
  7873. "type": "zip",
  7874. "url": "https://api.github.com/repos/symfony/debug/zipball/518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  7875. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  7876. "shasum": ""
  7877. },
  7878. "require": {
  7879. "php": "^5.5.9|>=7.0.8",
  7880. "psr/log": "~1.0"
  7881. },
  7882. "conflict": {
  7883. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  7884. },
  7885. "require-dev": {
  7886. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  7887. },
  7888. "type": "library",
  7889. "extra": {
  7890. "branch-alias": {
  7891. "dev-master": "3.4-dev"
  7892. }
  7893. },
  7894. "autoload": {
  7895. "psr-4": {
  7896. "Symfony\\Component\\Debug\\": ""
  7897. },
  7898. "exclude-from-classmap": [
  7899. "/Tests/"
  7900. ]
  7901. },
  7902. "notification-url": "https://packagist.org/downloads/",
  7903. "license": [
  7904. "MIT"
  7905. ],
  7906. "authors": [
  7907. {
  7908. "name": "Fabien Potencier",
  7909. "email": "fabien@symfony.com"
  7910. },
  7911. {
  7912. "name": "Symfony Community",
  7913. "homepage": "https://symfony.com/contributors"
  7914. }
  7915. ],
  7916. "description": "Symfony Debug Component",
  7917. "homepage": "https://symfony.com",
  7918. "support": {
  7919. "source": "https://github.com/symfony/debug/tree/3.4"
  7920. },
  7921. "funding": [
  7922. {
  7923. "url": "https://symfony.com/sponsor",
  7924. "type": "custom"
  7925. },
  7926. {
  7927. "url": "https://github.com/fabpot",
  7928. "type": "github"
  7929. },
  7930. {
  7931. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7932. "type": "tidelift"
  7933. }
  7934. ],
  7935. "abandoned": "symfony/error-handler",
  7936. "time": "2020-05-22T18:25:20+00:00"
  7937. },
  7938. {
  7939. "name": "symfony/dependency-injection",
  7940. "version": "v3.4.41",
  7941. "source": {
  7942. "type": "git",
  7943. "url": "https://github.com/symfony/dependency-injection.git",
  7944. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac"
  7945. },
  7946. "dist": {
  7947. "type": "zip",
  7948. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/e39380b7104b0ec538a075ae919f00c7e5267bac",
  7949. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac",
  7950. "shasum": ""
  7951. },
  7952. "require": {
  7953. "php": "^5.5.9|>=7.0.8",
  7954. "psr/container": "^1.0"
  7955. },
  7956. "conflict": {
  7957. "symfony/config": "<3.3.7",
  7958. "symfony/finder": "<3.3",
  7959. "symfony/proxy-manager-bridge": "<3.4",
  7960. "symfony/yaml": "<3.4"
  7961. },
  7962. "provide": {
  7963. "psr/container-implementation": "1.0"
  7964. },
  7965. "require-dev": {
  7966. "symfony/config": "~3.3|~4.0",
  7967. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7968. "symfony/yaml": "~3.4|~4.0"
  7969. },
  7970. "suggest": {
  7971. "symfony/config": "",
  7972. "symfony/expression-language": "For using expressions in service container configuration",
  7973. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  7974. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  7975. "symfony/yaml": ""
  7976. },
  7977. "type": "library",
  7978. "extra": {
  7979. "branch-alias": {
  7980. "dev-master": "3.4-dev"
  7981. }
  7982. },
  7983. "autoload": {
  7984. "psr-4": {
  7985. "Symfony\\Component\\DependencyInjection\\": ""
  7986. },
  7987. "exclude-from-classmap": [
  7988. "/Tests/"
  7989. ]
  7990. },
  7991. "notification-url": "https://packagist.org/downloads/",
  7992. "license": [
  7993. "MIT"
  7994. ],
  7995. "authors": [
  7996. {
  7997. "name": "Fabien Potencier",
  7998. "email": "fabien@symfony.com"
  7999. },
  8000. {
  8001. "name": "Symfony Community",
  8002. "homepage": "https://symfony.com/contributors"
  8003. }
  8004. ],
  8005. "description": "Symfony DependencyInjection Component",
  8006. "homepage": "https://symfony.com",
  8007. "support": {
  8008. "source": "https://github.com/symfony/dependency-injection/tree/3.4"
  8009. },
  8010. "funding": [
  8011. {
  8012. "url": "https://symfony.com/sponsor",
  8013. "type": "custom"
  8014. },
  8015. {
  8016. "url": "https://github.com/fabpot",
  8017. "type": "github"
  8018. },
  8019. {
  8020. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8021. "type": "tidelift"
  8022. }
  8023. ],
  8024. "time": "2020-05-30T21:06:01+00:00"
  8025. },
  8026. {
  8027. "name": "symfony/event-dispatcher",
  8028. "version": "v3.4.41",
  8029. "source": {
  8030. "type": "git",
  8031. "url": "https://github.com/symfony/event-dispatcher.git",
  8032. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081"
  8033. },
  8034. "dist": {
  8035. "type": "zip",
  8036. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/14d978f8e8555f2de719c00eb65376be7d2e9081",
  8037. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081",
  8038. "shasum": ""
  8039. },
  8040. "require": {
  8041. "php": "^5.5.9|>=7.0.8"
  8042. },
  8043. "conflict": {
  8044. "symfony/dependency-injection": "<3.3"
  8045. },
  8046. "require-dev": {
  8047. "psr/log": "~1.0",
  8048. "symfony/config": "~2.8|~3.0|~4.0",
  8049. "symfony/dependency-injection": "~3.3|~4.0",
  8050. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8051. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  8052. },
  8053. "suggest": {
  8054. "symfony/dependency-injection": "",
  8055. "symfony/http-kernel": ""
  8056. },
  8057. "type": "library",
  8058. "extra": {
  8059. "branch-alias": {
  8060. "dev-master": "3.4-dev"
  8061. }
  8062. },
  8063. "autoload": {
  8064. "psr-4": {
  8065. "Symfony\\Component\\EventDispatcher\\": ""
  8066. },
  8067. "exclude-from-classmap": [
  8068. "/Tests/"
  8069. ]
  8070. },
  8071. "notification-url": "https://packagist.org/downloads/",
  8072. "license": [
  8073. "MIT"
  8074. ],
  8075. "authors": [
  8076. {
  8077. "name": "Fabien Potencier",
  8078. "email": "fabien@symfony.com"
  8079. },
  8080. {
  8081. "name": "Symfony Community",
  8082. "homepage": "https://symfony.com/contributors"
  8083. }
  8084. ],
  8085. "description": "Symfony EventDispatcher Component",
  8086. "homepage": "https://symfony.com",
  8087. "support": {
  8088. "source": "https://github.com/symfony/event-dispatcher/tree/3.4"
  8089. },
  8090. "funding": [
  8091. {
  8092. "url": "https://symfony.com/sponsor",
  8093. "type": "custom"
  8094. },
  8095. {
  8096. "url": "https://github.com/fabpot",
  8097. "type": "github"
  8098. },
  8099. {
  8100. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8101. "type": "tidelift"
  8102. }
  8103. ],
  8104. "time": "2020-05-05T15:06:23+00:00"
  8105. },
  8106. {
  8107. "name": "symfony/filesystem",
  8108. "version": "v4.4.42",
  8109. "source": {
  8110. "type": "git",
  8111. "url": "https://github.com/symfony/filesystem.git",
  8112. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5"
  8113. },
  8114. "dist": {
  8115. "type": "zip",
  8116. "url": "https://api.github.com/repos/symfony/filesystem/zipball/815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  8117. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  8118. "shasum": ""
  8119. },
  8120. "require": {
  8121. "php": ">=7.1.3",
  8122. "symfony/polyfill-ctype": "~1.8",
  8123. "symfony/polyfill-php80": "^1.16"
  8124. },
  8125. "type": "library",
  8126. "autoload": {
  8127. "psr-4": {
  8128. "Symfony\\Component\\Filesystem\\": ""
  8129. },
  8130. "exclude-from-classmap": [
  8131. "/Tests/"
  8132. ]
  8133. },
  8134. "notification-url": "https://packagist.org/downloads/",
  8135. "license": [
  8136. "MIT"
  8137. ],
  8138. "authors": [
  8139. {
  8140. "name": "Fabien Potencier",
  8141. "email": "fabien@symfony.com"
  8142. },
  8143. {
  8144. "name": "Symfony Community",
  8145. "homepage": "https://symfony.com/contributors"
  8146. }
  8147. ],
  8148. "description": "Provides basic utilities for the filesystem",
  8149. "homepage": "https://symfony.com",
  8150. "support": {
  8151. "source": "https://github.com/symfony/filesystem/tree/v4.4.42"
  8152. },
  8153. "funding": [
  8154. {
  8155. "url": "https://symfony.com/sponsor",
  8156. "type": "custom"
  8157. },
  8158. {
  8159. "url": "https://github.com/fabpot",
  8160. "type": "github"
  8161. },
  8162. {
  8163. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8164. "type": "tidelift"
  8165. }
  8166. ],
  8167. "time": "2022-05-20T08:49:14+00:00"
  8168. },
  8169. {
  8170. "name": "symfony/finder",
  8171. "version": "v4.4.44",
  8172. "source": {
  8173. "type": "git",
  8174. "url": "https://github.com/symfony/finder.git",
  8175. "reference": "66bd787edb5e42ff59d3523f623895af05043e4f"
  8176. },
  8177. "dist": {
  8178. "type": "zip",
  8179. "url": "https://api.github.com/repos/symfony/finder/zipball/66bd787edb5e42ff59d3523f623895af05043e4f",
  8180. "reference": "66bd787edb5e42ff59d3523f623895af05043e4f",
  8181. "shasum": ""
  8182. },
  8183. "require": {
  8184. "php": ">=7.1.3",
  8185. "symfony/polyfill-php80": "^1.16"
  8186. },
  8187. "type": "library",
  8188. "autoload": {
  8189. "psr-4": {
  8190. "Symfony\\Component\\Finder\\": ""
  8191. },
  8192. "exclude-from-classmap": [
  8193. "/Tests/"
  8194. ]
  8195. },
  8196. "notification-url": "https://packagist.org/downloads/",
  8197. "license": [
  8198. "MIT"
  8199. ],
  8200. "authors": [
  8201. {
  8202. "name": "Fabien Potencier",
  8203. "email": "fabien@symfony.com"
  8204. },
  8205. {
  8206. "name": "Symfony Community",
  8207. "homepage": "https://symfony.com/contributors"
  8208. }
  8209. ],
  8210. "description": "Finds files and directories via an intuitive fluent interface",
  8211. "homepage": "https://symfony.com",
  8212. "support": {
  8213. "source": "https://github.com/symfony/finder/tree/v4.4.44"
  8214. },
  8215. "funding": [
  8216. {
  8217. "url": "https://symfony.com/sponsor",
  8218. "type": "custom"
  8219. },
  8220. {
  8221. "url": "https://github.com/fabpot",
  8222. "type": "github"
  8223. },
  8224. {
  8225. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8226. "type": "tidelift"
  8227. }
  8228. ],
  8229. "time": "2022-07-29T07:35:46+00:00"
  8230. },
  8231. {
  8232. "name": "symfony/http-foundation",
  8233. "version": "v3.4.41",
  8234. "source": {
  8235. "type": "git",
  8236. "url": "https://github.com/symfony/http-foundation.git",
  8237. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359"
  8238. },
  8239. "dist": {
  8240. "type": "zip",
  8241. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/fbd216d2304b1a3fe38d6392b04729c8dd356359",
  8242. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359",
  8243. "shasum": ""
  8244. },
  8245. "require": {
  8246. "php": "^5.5.9|>=7.0.8",
  8247. "symfony/polyfill-mbstring": "~1.1",
  8248. "symfony/polyfill-php70": "~1.6"
  8249. },
  8250. "require-dev": {
  8251. "symfony/expression-language": "~2.8|~3.0|~4.0"
  8252. },
  8253. "type": "library",
  8254. "extra": {
  8255. "branch-alias": {
  8256. "dev-master": "3.4-dev"
  8257. }
  8258. },
  8259. "autoload": {
  8260. "psr-4": {
  8261. "Symfony\\Component\\HttpFoundation\\": ""
  8262. },
  8263. "exclude-from-classmap": [
  8264. "/Tests/"
  8265. ]
  8266. },
  8267. "notification-url": "https://packagist.org/downloads/",
  8268. "license": [
  8269. "MIT"
  8270. ],
  8271. "authors": [
  8272. {
  8273. "name": "Fabien Potencier",
  8274. "email": "fabien@symfony.com"
  8275. },
  8276. {
  8277. "name": "Symfony Community",
  8278. "homepage": "https://symfony.com/contributors"
  8279. }
  8280. ],
  8281. "description": "Symfony HttpFoundation Component",
  8282. "homepage": "https://symfony.com",
  8283. "support": {
  8284. "source": "https://github.com/symfony/http-foundation/tree/3.4"
  8285. },
  8286. "funding": [
  8287. {
  8288. "url": "https://symfony.com/sponsor",
  8289. "type": "custom"
  8290. },
  8291. {
  8292. "url": "https://github.com/fabpot",
  8293. "type": "github"
  8294. },
  8295. {
  8296. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8297. "type": "tidelift"
  8298. }
  8299. ],
  8300. "time": "2020-05-16T13:15:54+00:00"
  8301. },
  8302. {
  8303. "name": "symfony/http-kernel",
  8304. "version": "v3.4.44",
  8305. "source": {
  8306. "type": "git",
  8307. "url": "https://github.com/symfony/http-kernel.git",
  8308. "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326"
  8309. },
  8310. "dist": {
  8311. "type": "zip",
  8312. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/27dcaa8c6b18c75df9f37badeb4d3564ffaa1326",
  8313. "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326",
  8314. "shasum": ""
  8315. },
  8316. "require": {
  8317. "php": "^5.5.9|>=7.0.8",
  8318. "psr/log": "~1.0",
  8319. "symfony/debug": "^3.3.3|~4.0",
  8320. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  8321. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  8322. "symfony/polyfill-ctype": "~1.8",
  8323. "symfony/polyfill-php56": "~1.8"
  8324. },
  8325. "conflict": {
  8326. "symfony/config": "<2.8",
  8327. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  8328. "symfony/var-dumper": "<3.3",
  8329. "twig/twig": "<1.34|<2.4,>=2"
  8330. },
  8331. "provide": {
  8332. "psr/log-implementation": "1.0"
  8333. },
  8334. "require-dev": {
  8335. "psr/cache": "~1.0",
  8336. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  8337. "symfony/class-loader": "~2.8|~3.0",
  8338. "symfony/config": "~2.8|~3.0|~4.0",
  8339. "symfony/console": "~2.8|~3.0|~4.0",
  8340. "symfony/css-selector": "~2.8|~3.0|~4.0",
  8341. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  8342. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  8343. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8344. "symfony/finder": "~2.8|~3.0|~4.0",
  8345. "symfony/process": "~2.8|~3.0|~4.0",
  8346. "symfony/routing": "~3.4|~4.0",
  8347. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  8348. "symfony/templating": "~2.8|~3.0|~4.0",
  8349. "symfony/translation": "~2.8|~3.0|~4.0",
  8350. "symfony/var-dumper": "~3.3|~4.0"
  8351. },
  8352. "suggest": {
  8353. "symfony/browser-kit": "",
  8354. "symfony/config": "",
  8355. "symfony/console": "",
  8356. "symfony/dependency-injection": "",
  8357. "symfony/finder": "",
  8358. "symfony/var-dumper": ""
  8359. },
  8360. "type": "library",
  8361. "extra": {
  8362. "branch-alias": {
  8363. "dev-master": "3.4-dev"
  8364. }
  8365. },
  8366. "autoload": {
  8367. "psr-4": {
  8368. "Symfony\\Component\\HttpKernel\\": ""
  8369. },
  8370. "exclude-from-classmap": [
  8371. "/Tests/"
  8372. ]
  8373. },
  8374. "notification-url": "https://packagist.org/downloads/",
  8375. "license": [
  8376. "MIT"
  8377. ],
  8378. "authors": [
  8379. {
  8380. "name": "Fabien Potencier",
  8381. "email": "fabien@symfony.com"
  8382. },
  8383. {
  8384. "name": "Symfony Community",
  8385. "homepage": "https://symfony.com/contributors"
  8386. }
  8387. ],
  8388. "description": "Symfony HttpKernel Component",
  8389. "homepage": "https://symfony.com",
  8390. "support": {
  8391. "source": "https://github.com/symfony/http-kernel/tree/v3.4.44"
  8392. },
  8393. "funding": [
  8394. {
  8395. "url": "https://symfony.com/sponsor",
  8396. "type": "custom"
  8397. },
  8398. {
  8399. "url": "https://github.com/fabpot",
  8400. "type": "github"
  8401. },
  8402. {
  8403. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8404. "type": "tidelift"
  8405. }
  8406. ],
  8407. "time": "2020-08-31T05:53:42+00:00"
  8408. },
  8409. {
  8410. "name": "symfony/polyfill-ctype",
  8411. "version": "v1.17.0",
  8412. "source": {
  8413. "type": "git",
  8414. "url": "https://github.com/symfony/polyfill-ctype.git",
  8415. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9"
  8416. },
  8417. "dist": {
  8418. "type": "zip",
  8419. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  8420. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  8421. "shasum": ""
  8422. },
  8423. "require": {
  8424. "php": ">=5.3.3"
  8425. },
  8426. "suggest": {
  8427. "ext-ctype": "For best performance"
  8428. },
  8429. "type": "library",
  8430. "extra": {
  8431. "branch-alias": {
  8432. "dev-master": "1.17-dev"
  8433. }
  8434. },
  8435. "autoload": {
  8436. "files": [
  8437. "bootstrap.php"
  8438. ],
  8439. "psr-4": {
  8440. "Symfony\\Polyfill\\Ctype\\": ""
  8441. }
  8442. },
  8443. "notification-url": "https://packagist.org/downloads/",
  8444. "license": [
  8445. "MIT"
  8446. ],
  8447. "authors": [
  8448. {
  8449. "name": "Gert de Pagter",
  8450. "email": "BackEndTea@gmail.com"
  8451. },
  8452. {
  8453. "name": "Symfony Community",
  8454. "homepage": "https://symfony.com/contributors"
  8455. }
  8456. ],
  8457. "description": "Symfony polyfill for ctype functions",
  8458. "homepage": "https://symfony.com",
  8459. "keywords": [
  8460. "compatibility",
  8461. "ctype",
  8462. "polyfill",
  8463. "portable"
  8464. ],
  8465. "support": {
  8466. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.17.0"
  8467. },
  8468. "funding": [
  8469. {
  8470. "url": "https://symfony.com/sponsor",
  8471. "type": "custom"
  8472. },
  8473. {
  8474. "url": "https://github.com/fabpot",
  8475. "type": "github"
  8476. },
  8477. {
  8478. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8479. "type": "tidelift"
  8480. }
  8481. ],
  8482. "time": "2020-05-12T16:14:59+00:00"
  8483. },
  8484. {
  8485. "name": "symfony/polyfill-iconv",
  8486. "version": "v1.17.0",
  8487. "source": {
  8488. "type": "git",
  8489. "url": "https://github.com/symfony/polyfill-iconv.git",
  8490. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424"
  8491. },
  8492. "dist": {
  8493. "type": "zip",
  8494. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c4de7601eefbf25f9d47190abe07f79fe0a27424",
  8495. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424",
  8496. "shasum": ""
  8497. },
  8498. "require": {
  8499. "php": ">=5.3.3"
  8500. },
  8501. "suggest": {
  8502. "ext-iconv": "For best performance"
  8503. },
  8504. "type": "library",
  8505. "extra": {
  8506. "branch-alias": {
  8507. "dev-master": "1.17-dev"
  8508. }
  8509. },
  8510. "autoload": {
  8511. "files": [
  8512. "bootstrap.php"
  8513. ],
  8514. "psr-4": {
  8515. "Symfony\\Polyfill\\Iconv\\": ""
  8516. }
  8517. },
  8518. "notification-url": "https://packagist.org/downloads/",
  8519. "license": [
  8520. "MIT"
  8521. ],
  8522. "authors": [
  8523. {
  8524. "name": "Nicolas Grekas",
  8525. "email": "p@tchwork.com"
  8526. },
  8527. {
  8528. "name": "Symfony Community",
  8529. "homepage": "https://symfony.com/contributors"
  8530. }
  8531. ],
  8532. "description": "Symfony polyfill for the Iconv extension",
  8533. "homepage": "https://symfony.com",
  8534. "keywords": [
  8535. "compatibility",
  8536. "iconv",
  8537. "polyfill",
  8538. "portable",
  8539. "shim"
  8540. ],
  8541. "support": {
  8542. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.17.0"
  8543. },
  8544. "funding": [
  8545. {
  8546. "url": "https://symfony.com/sponsor",
  8547. "type": "custom"
  8548. },
  8549. {
  8550. "url": "https://github.com/fabpot",
  8551. "type": "github"
  8552. },
  8553. {
  8554. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8555. "type": "tidelift"
  8556. }
  8557. ],
  8558. "time": "2020-05-12T16:47:27+00:00"
  8559. },
  8560. {
  8561. "name": "symfony/polyfill-intl-idn",
  8562. "version": "v1.17.0",
  8563. "source": {
  8564. "type": "git",
  8565. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8566. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a"
  8567. },
  8568. "dist": {
  8569. "type": "zip",
  8570. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  8571. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  8572. "shasum": ""
  8573. },
  8574. "require": {
  8575. "php": ">=5.3.3",
  8576. "symfony/polyfill-mbstring": "^1.3",
  8577. "symfony/polyfill-php72": "^1.10"
  8578. },
  8579. "suggest": {
  8580. "ext-intl": "For best performance"
  8581. },
  8582. "type": "library",
  8583. "extra": {
  8584. "branch-alias": {
  8585. "dev-master": "1.17-dev"
  8586. }
  8587. },
  8588. "autoload": {
  8589. "files": [
  8590. "bootstrap.php"
  8591. ],
  8592. "psr-4": {
  8593. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8594. }
  8595. },
  8596. "notification-url": "https://packagist.org/downloads/",
  8597. "license": [
  8598. "MIT"
  8599. ],
  8600. "authors": [
  8601. {
  8602. "name": "Laurent Bassin",
  8603. "email": "laurent@bassin.info"
  8604. },
  8605. {
  8606. "name": "Symfony Community",
  8607. "homepage": "https://symfony.com/contributors"
  8608. }
  8609. ],
  8610. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8611. "homepage": "https://symfony.com",
  8612. "keywords": [
  8613. "compatibility",
  8614. "idn",
  8615. "intl",
  8616. "polyfill",
  8617. "portable",
  8618. "shim"
  8619. ],
  8620. "support": {
  8621. "source": "https://github.com/symfony/polyfill-intl-idn/tree/master"
  8622. },
  8623. "funding": [
  8624. {
  8625. "url": "https://symfony.com/sponsor",
  8626. "type": "custom"
  8627. },
  8628. {
  8629. "url": "https://github.com/fabpot",
  8630. "type": "github"
  8631. },
  8632. {
  8633. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8634. "type": "tidelift"
  8635. }
  8636. ],
  8637. "time": "2020-05-12T16:47:27+00:00"
  8638. },
  8639. {
  8640. "name": "symfony/polyfill-mbstring",
  8641. "version": "v1.17.0",
  8642. "source": {
  8643. "type": "git",
  8644. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8645. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c"
  8646. },
  8647. "dist": {
  8648. "type": "zip",
  8649. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fa79b11539418b02fc5e1897267673ba2c19419c",
  8650. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c",
  8651. "shasum": ""
  8652. },
  8653. "require": {
  8654. "php": ">=5.3.3"
  8655. },
  8656. "suggest": {
  8657. "ext-mbstring": "For best performance"
  8658. },
  8659. "type": "library",
  8660. "extra": {
  8661. "branch-alias": {
  8662. "dev-master": "1.17-dev"
  8663. }
  8664. },
  8665. "autoload": {
  8666. "files": [
  8667. "bootstrap.php"
  8668. ],
  8669. "psr-4": {
  8670. "Symfony\\Polyfill\\Mbstring\\": ""
  8671. }
  8672. },
  8673. "notification-url": "https://packagist.org/downloads/",
  8674. "license": [
  8675. "MIT"
  8676. ],
  8677. "authors": [
  8678. {
  8679. "name": "Nicolas Grekas",
  8680. "email": "p@tchwork.com"
  8681. },
  8682. {
  8683. "name": "Symfony Community",
  8684. "homepage": "https://symfony.com/contributors"
  8685. }
  8686. ],
  8687. "description": "Symfony polyfill for the Mbstring extension",
  8688. "homepage": "https://symfony.com",
  8689. "keywords": [
  8690. "compatibility",
  8691. "mbstring",
  8692. "polyfill",
  8693. "portable",
  8694. "shim"
  8695. ],
  8696. "support": {
  8697. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.17.0"
  8698. },
  8699. "funding": [
  8700. {
  8701. "url": "https://symfony.com/sponsor",
  8702. "type": "custom"
  8703. },
  8704. {
  8705. "url": "https://github.com/fabpot",
  8706. "type": "github"
  8707. },
  8708. {
  8709. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8710. "type": "tidelift"
  8711. }
  8712. ],
  8713. "time": "2020-05-12T16:47:27+00:00"
  8714. },
  8715. {
  8716. "name": "symfony/polyfill-php56",
  8717. "version": "v1.17.0",
  8718. "source": {
  8719. "type": "git",
  8720. "url": "https://github.com/symfony/polyfill-php56.git",
  8721. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23"
  8722. },
  8723. "dist": {
  8724. "type": "zip",
  8725. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/e3c8c138280cdfe4b81488441555583aa1984e23",
  8726. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23",
  8727. "shasum": ""
  8728. },
  8729. "require": {
  8730. "php": ">=5.3.3",
  8731. "symfony/polyfill-util": "~1.0"
  8732. },
  8733. "type": "library",
  8734. "extra": {
  8735. "branch-alias": {
  8736. "dev-master": "1.17-dev"
  8737. }
  8738. },
  8739. "autoload": {
  8740. "files": [
  8741. "bootstrap.php"
  8742. ],
  8743. "psr-4": {
  8744. "Symfony\\Polyfill\\Php56\\": ""
  8745. }
  8746. },
  8747. "notification-url": "https://packagist.org/downloads/",
  8748. "license": [
  8749. "MIT"
  8750. ],
  8751. "authors": [
  8752. {
  8753. "name": "Nicolas Grekas",
  8754. "email": "p@tchwork.com"
  8755. },
  8756. {
  8757. "name": "Symfony Community",
  8758. "homepage": "https://symfony.com/contributors"
  8759. }
  8760. ],
  8761. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  8762. "homepage": "https://symfony.com",
  8763. "keywords": [
  8764. "compatibility",
  8765. "polyfill",
  8766. "portable",
  8767. "shim"
  8768. ],
  8769. "support": {
  8770. "source": "https://github.com/symfony/polyfill-php56/tree/v1.17.0"
  8771. },
  8772. "funding": [
  8773. {
  8774. "url": "https://symfony.com/sponsor",
  8775. "type": "custom"
  8776. },
  8777. {
  8778. "url": "https://github.com/fabpot",
  8779. "type": "github"
  8780. },
  8781. {
  8782. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8783. "type": "tidelift"
  8784. }
  8785. ],
  8786. "time": "2020-05-12T16:47:27+00:00"
  8787. },
  8788. {
  8789. "name": "symfony/polyfill-php70",
  8790. "version": "v1.17.0",
  8791. "source": {
  8792. "type": "git",
  8793. "url": "https://github.com/symfony/polyfill-php70.git",
  8794. "reference": "82225c2d7d23d7e70515496d249c0152679b468e"
  8795. },
  8796. "dist": {
  8797. "type": "zip",
  8798. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/82225c2d7d23d7e70515496d249c0152679b468e",
  8799. "reference": "82225c2d7d23d7e70515496d249c0152679b468e",
  8800. "shasum": ""
  8801. },
  8802. "require": {
  8803. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  8804. "php": ">=5.3.3"
  8805. },
  8806. "type": "library",
  8807. "extra": {
  8808. "branch-alias": {
  8809. "dev-master": "1.17-dev"
  8810. }
  8811. },
  8812. "autoload": {
  8813. "files": [
  8814. "bootstrap.php"
  8815. ],
  8816. "psr-4": {
  8817. "Symfony\\Polyfill\\Php70\\": ""
  8818. },
  8819. "classmap": [
  8820. "Resources/stubs"
  8821. ]
  8822. },
  8823. "notification-url": "https://packagist.org/downloads/",
  8824. "license": [
  8825. "MIT"
  8826. ],
  8827. "authors": [
  8828. {
  8829. "name": "Nicolas Grekas",
  8830. "email": "p@tchwork.com"
  8831. },
  8832. {
  8833. "name": "Symfony Community",
  8834. "homepage": "https://symfony.com/contributors"
  8835. }
  8836. ],
  8837. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  8838. "homepage": "https://symfony.com",
  8839. "keywords": [
  8840. "compatibility",
  8841. "polyfill",
  8842. "portable",
  8843. "shim"
  8844. ],
  8845. "support": {
  8846. "source": "https://github.com/symfony/polyfill-php70/tree/master"
  8847. },
  8848. "funding": [
  8849. {
  8850. "url": "https://symfony.com/sponsor",
  8851. "type": "custom"
  8852. },
  8853. {
  8854. "url": "https://github.com/fabpot",
  8855. "type": "github"
  8856. },
  8857. {
  8858. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8859. "type": "tidelift"
  8860. }
  8861. ],
  8862. "time": "2020-05-12T16:47:27+00:00"
  8863. },
  8864. {
  8865. "name": "symfony/polyfill-php72",
  8866. "version": "v1.17.0",
  8867. "source": {
  8868. "type": "git",
  8869. "url": "https://github.com/symfony/polyfill-php72.git",
  8870. "reference": "f048e612a3905f34931127360bdd2def19a5e582"
  8871. },
  8872. "dist": {
  8873. "type": "zip",
  8874. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/f048e612a3905f34931127360bdd2def19a5e582",
  8875. "reference": "f048e612a3905f34931127360bdd2def19a5e582",
  8876. "shasum": ""
  8877. },
  8878. "require": {
  8879. "php": ">=5.3.3"
  8880. },
  8881. "type": "library",
  8882. "extra": {
  8883. "branch-alias": {
  8884. "dev-master": "1.17-dev"
  8885. }
  8886. },
  8887. "autoload": {
  8888. "files": [
  8889. "bootstrap.php"
  8890. ],
  8891. "psr-4": {
  8892. "Symfony\\Polyfill\\Php72\\": ""
  8893. }
  8894. },
  8895. "notification-url": "https://packagist.org/downloads/",
  8896. "license": [
  8897. "MIT"
  8898. ],
  8899. "authors": [
  8900. {
  8901. "name": "Nicolas Grekas",
  8902. "email": "p@tchwork.com"
  8903. },
  8904. {
  8905. "name": "Symfony Community",
  8906. "homepage": "https://symfony.com/contributors"
  8907. }
  8908. ],
  8909. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  8910. "homepage": "https://symfony.com",
  8911. "keywords": [
  8912. "compatibility",
  8913. "polyfill",
  8914. "portable",
  8915. "shim"
  8916. ],
  8917. "support": {
  8918. "source": "https://github.com/symfony/polyfill-php72/tree/master"
  8919. },
  8920. "funding": [
  8921. {
  8922. "url": "https://symfony.com/sponsor",
  8923. "type": "custom"
  8924. },
  8925. {
  8926. "url": "https://github.com/fabpot",
  8927. "type": "github"
  8928. },
  8929. {
  8930. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8931. "type": "tidelift"
  8932. }
  8933. ],
  8934. "time": "2020-05-12T16:47:27+00:00"
  8935. },
  8936. {
  8937. "name": "symfony/polyfill-php80",
  8938. "version": "v1.31.0",
  8939. "source": {
  8940. "type": "git",
  8941. "url": "https://github.com/symfony/polyfill-php80.git",
  8942. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  8943. },
  8944. "dist": {
  8945. "type": "zip",
  8946. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  8947. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  8948. "shasum": ""
  8949. },
  8950. "require": {
  8951. "php": ">=7.2"
  8952. },
  8953. "type": "library",
  8954. "extra": {
  8955. "thanks": {
  8956. "name": "symfony/polyfill",
  8957. "url": "https://github.com/symfony/polyfill"
  8958. }
  8959. },
  8960. "autoload": {
  8961. "files": [
  8962. "bootstrap.php"
  8963. ],
  8964. "psr-4": {
  8965. "Symfony\\Polyfill\\Php80\\": ""
  8966. },
  8967. "classmap": [
  8968. "Resources/stubs"
  8969. ]
  8970. },
  8971. "notification-url": "https://packagist.org/downloads/",
  8972. "license": [
  8973. "MIT"
  8974. ],
  8975. "authors": [
  8976. {
  8977. "name": "Ion Bazan",
  8978. "email": "ion.bazan@gmail.com"
  8979. },
  8980. {
  8981. "name": "Nicolas Grekas",
  8982. "email": "p@tchwork.com"
  8983. },
  8984. {
  8985. "name": "Symfony Community",
  8986. "homepage": "https://symfony.com/contributors"
  8987. }
  8988. ],
  8989. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8990. "homepage": "https://symfony.com",
  8991. "keywords": [
  8992. "compatibility",
  8993. "polyfill",
  8994. "portable",
  8995. "shim"
  8996. ],
  8997. "support": {
  8998. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  8999. },
  9000. "funding": [
  9001. {
  9002. "url": "https://symfony.com/sponsor",
  9003. "type": "custom"
  9004. },
  9005. {
  9006. "url": "https://github.com/fabpot",
  9007. "type": "github"
  9008. },
  9009. {
  9010. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9011. "type": "tidelift"
  9012. }
  9013. ],
  9014. "time": "2024-09-09T11:45:10+00:00"
  9015. },
  9016. {
  9017. "name": "symfony/polyfill-util",
  9018. "version": "v1.17.0",
  9019. "source": {
  9020. "type": "git",
  9021. "url": "https://github.com/symfony/polyfill-util.git",
  9022. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7"
  9023. },
  9024. "dist": {
  9025. "type": "zip",
  9026. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  9027. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  9028. "shasum": ""
  9029. },
  9030. "require": {
  9031. "php": ">=5.3.3"
  9032. },
  9033. "type": "library",
  9034. "extra": {
  9035. "branch-alias": {
  9036. "dev-master": "1.17-dev"
  9037. }
  9038. },
  9039. "autoload": {
  9040. "psr-4": {
  9041. "Symfony\\Polyfill\\Util\\": ""
  9042. }
  9043. },
  9044. "notification-url": "https://packagist.org/downloads/",
  9045. "license": [
  9046. "MIT"
  9047. ],
  9048. "authors": [
  9049. {
  9050. "name": "Nicolas Grekas",
  9051. "email": "p@tchwork.com"
  9052. },
  9053. {
  9054. "name": "Symfony Community",
  9055. "homepage": "https://symfony.com/contributors"
  9056. }
  9057. ],
  9058. "description": "Symfony utilities for portability of PHP codes",
  9059. "homepage": "https://symfony.com",
  9060. "keywords": [
  9061. "compat",
  9062. "compatibility",
  9063. "polyfill",
  9064. "shim"
  9065. ],
  9066. "support": {
  9067. "source": "https://github.com/symfony/polyfill-util/tree/master"
  9068. },
  9069. "funding": [
  9070. {
  9071. "url": "https://symfony.com/sponsor",
  9072. "type": "custom"
  9073. },
  9074. {
  9075. "url": "https://github.com/fabpot",
  9076. "type": "github"
  9077. },
  9078. {
  9079. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9080. "type": "tidelift"
  9081. }
  9082. ],
  9083. "time": "2020-05-12T16:14:59+00:00"
  9084. },
  9085. {
  9086. "name": "symfony/process",
  9087. "version": "v3.4.41",
  9088. "source": {
  9089. "type": "git",
  9090. "url": "https://github.com/symfony/process.git",
  9091. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21"
  9092. },
  9093. "dist": {
  9094. "type": "zip",
  9095. "url": "https://api.github.com/repos/symfony/process/zipball/8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  9096. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  9097. "shasum": ""
  9098. },
  9099. "require": {
  9100. "php": "^5.5.9|>=7.0.8"
  9101. },
  9102. "type": "library",
  9103. "extra": {
  9104. "branch-alias": {
  9105. "dev-master": "3.4-dev"
  9106. }
  9107. },
  9108. "autoload": {
  9109. "psr-4": {
  9110. "Symfony\\Component\\Process\\": ""
  9111. },
  9112. "exclude-from-classmap": [
  9113. "/Tests/"
  9114. ]
  9115. },
  9116. "notification-url": "https://packagist.org/downloads/",
  9117. "license": [
  9118. "MIT"
  9119. ],
  9120. "authors": [
  9121. {
  9122. "name": "Fabien Potencier",
  9123. "email": "fabien@symfony.com"
  9124. },
  9125. {
  9126. "name": "Symfony Community",
  9127. "homepage": "https://symfony.com/contributors"
  9128. }
  9129. ],
  9130. "description": "Symfony Process Component",
  9131. "homepage": "https://symfony.com",
  9132. "support": {
  9133. "source": "https://github.com/symfony/process/tree/v3.4.41"
  9134. },
  9135. "funding": [
  9136. {
  9137. "url": "https://symfony.com/sponsor",
  9138. "type": "custom"
  9139. },
  9140. {
  9141. "url": "https://github.com/fabpot",
  9142. "type": "github"
  9143. },
  9144. {
  9145. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9146. "type": "tidelift"
  9147. }
  9148. ],
  9149. "time": "2020-05-23T17:05:51+00:00"
  9150. },
  9151. {
  9152. "name": "symfony/psr-http-message-bridge",
  9153. "version": "v1.1.2",
  9154. "source": {
  9155. "type": "git",
  9156. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9157. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b"
  9158. },
  9159. "dist": {
  9160. "type": "zip",
  9161. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b",
  9162. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b",
  9163. "shasum": ""
  9164. },
  9165. "require": {
  9166. "php": "^5.3.3 || ^7.0",
  9167. "psr/http-message": "^1.0",
  9168. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  9169. },
  9170. "require-dev": {
  9171. "symfony/phpunit-bridge": "^3.4 || ^4.0"
  9172. },
  9173. "suggest": {
  9174. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  9175. },
  9176. "type": "symfony-bridge",
  9177. "extra": {
  9178. "branch-alias": {
  9179. "dev-master": "1.1-dev"
  9180. }
  9181. },
  9182. "autoload": {
  9183. "psr-4": {
  9184. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9185. },
  9186. "exclude-from-classmap": [
  9187. "/Tests/"
  9188. ]
  9189. },
  9190. "notification-url": "https://packagist.org/downloads/",
  9191. "license": [
  9192. "MIT"
  9193. ],
  9194. "authors": [
  9195. {
  9196. "name": "Symfony Community",
  9197. "homepage": "http://symfony.com/contributors"
  9198. },
  9199. {
  9200. "name": "Fabien Potencier",
  9201. "email": "fabien@symfony.com"
  9202. }
  9203. ],
  9204. "description": "PSR HTTP message bridge",
  9205. "homepage": "http://symfony.com",
  9206. "keywords": [
  9207. "http",
  9208. "http-message",
  9209. "psr-17",
  9210. "psr-7"
  9211. ],
  9212. "support": {
  9213. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  9214. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v1.1.2"
  9215. },
  9216. "time": "2019-04-03T17:09:40+00:00"
  9217. },
  9218. {
  9219. "name": "symfony/routing",
  9220. "version": "v3.4.41",
  9221. "source": {
  9222. "type": "git",
  9223. "url": "https://github.com/symfony/routing.git",
  9224. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f"
  9225. },
  9226. "dist": {
  9227. "type": "zip",
  9228. "url": "https://api.github.com/repos/symfony/routing/zipball/e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  9229. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  9230. "shasum": ""
  9231. },
  9232. "require": {
  9233. "php": "^5.5.9|>=7.0.8"
  9234. },
  9235. "conflict": {
  9236. "symfony/config": "<3.3.1",
  9237. "symfony/dependency-injection": "<3.3",
  9238. "symfony/yaml": "<3.4"
  9239. },
  9240. "require-dev": {
  9241. "doctrine/annotations": "~1.0",
  9242. "psr/log": "~1.0",
  9243. "symfony/config": "^3.3.1|~4.0",
  9244. "symfony/dependency-injection": "~3.3|~4.0",
  9245. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9246. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9247. "symfony/yaml": "~3.4|~4.0"
  9248. },
  9249. "suggest": {
  9250. "doctrine/annotations": "For using the annotation loader",
  9251. "symfony/config": "For using the all-in-one router or any loader",
  9252. "symfony/expression-language": "For using expression matching",
  9253. "symfony/http-foundation": "For using a Symfony Request object",
  9254. "symfony/yaml": "For using the YAML loader"
  9255. },
  9256. "type": "library",
  9257. "extra": {
  9258. "branch-alias": {
  9259. "dev-master": "3.4-dev"
  9260. }
  9261. },
  9262. "autoload": {
  9263. "psr-4": {
  9264. "Symfony\\Component\\Routing\\": ""
  9265. },
  9266. "exclude-from-classmap": [
  9267. "/Tests/"
  9268. ]
  9269. },
  9270. "notification-url": "https://packagist.org/downloads/",
  9271. "license": [
  9272. "MIT"
  9273. ],
  9274. "authors": [
  9275. {
  9276. "name": "Fabien Potencier",
  9277. "email": "fabien@symfony.com"
  9278. },
  9279. {
  9280. "name": "Symfony Community",
  9281. "homepage": "https://symfony.com/contributors"
  9282. }
  9283. ],
  9284. "description": "Symfony Routing Component",
  9285. "homepage": "https://symfony.com",
  9286. "keywords": [
  9287. "router",
  9288. "routing",
  9289. "uri",
  9290. "url"
  9291. ],
  9292. "support": {
  9293. "source": "https://github.com/symfony/routing/tree/3.4"
  9294. },
  9295. "funding": [
  9296. {
  9297. "url": "https://symfony.com/sponsor",
  9298. "type": "custom"
  9299. },
  9300. {
  9301. "url": "https://github.com/fabpot",
  9302. "type": "github"
  9303. },
  9304. {
  9305. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9306. "type": "tidelift"
  9307. }
  9308. ],
  9309. "time": "2020-05-30T19:50:06+00:00"
  9310. },
  9311. {
  9312. "name": "symfony/serializer",
  9313. "version": "v3.4.41",
  9314. "source": {
  9315. "type": "git",
  9316. "url": "https://github.com/symfony/serializer.git",
  9317. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f"
  9318. },
  9319. "dist": {
  9320. "type": "zip",
  9321. "url": "https://api.github.com/repos/symfony/serializer/zipball/0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  9322. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  9323. "shasum": ""
  9324. },
  9325. "require": {
  9326. "php": "^5.5.9|>=7.0.8",
  9327. "symfony/polyfill-ctype": "~1.8"
  9328. },
  9329. "conflict": {
  9330. "phpdocumentor/type-resolver": "<0.2.1",
  9331. "symfony/dependency-injection": "<3.2",
  9332. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  9333. "symfony/property-info": "<3.1",
  9334. "symfony/yaml": "<3.4"
  9335. },
  9336. "require-dev": {
  9337. "doctrine/annotations": "~1.0",
  9338. "doctrine/cache": "~1.0",
  9339. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  9340. "symfony/cache": "~3.1|~4.0",
  9341. "symfony/config": "~2.8|~3.0|~4.0",
  9342. "symfony/dependency-injection": "~3.2|~4.0",
  9343. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9344. "symfony/property-access": "~2.8|~3.0|~4.0",
  9345. "symfony/property-info": "^3.4.13|~4.0",
  9346. "symfony/yaml": "~3.4|~4.0"
  9347. },
  9348. "suggest": {
  9349. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9350. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9351. "psr/cache-implementation": "For using the metadata cache.",
  9352. "symfony/config": "For using the XML mapping loader.",
  9353. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  9354. "symfony/property-access": "For using the ObjectNormalizer.",
  9355. "symfony/property-info": "To deserialize relations.",
  9356. "symfony/yaml": "For using the default YAML mapping loader."
  9357. },
  9358. "type": "library",
  9359. "extra": {
  9360. "branch-alias": {
  9361. "dev-master": "3.4-dev"
  9362. }
  9363. },
  9364. "autoload": {
  9365. "psr-4": {
  9366. "Symfony\\Component\\Serializer\\": ""
  9367. },
  9368. "exclude-from-classmap": [
  9369. "/Tests/"
  9370. ]
  9371. },
  9372. "notification-url": "https://packagist.org/downloads/",
  9373. "license": [
  9374. "MIT"
  9375. ],
  9376. "authors": [
  9377. {
  9378. "name": "Fabien Potencier",
  9379. "email": "fabien@symfony.com"
  9380. },
  9381. {
  9382. "name": "Symfony Community",
  9383. "homepage": "https://symfony.com/contributors"
  9384. }
  9385. ],
  9386. "description": "Symfony Serializer Component",
  9387. "homepage": "https://symfony.com",
  9388. "support": {
  9389. "source": "https://github.com/symfony/serializer/tree/v3.4.41"
  9390. },
  9391. "funding": [
  9392. {
  9393. "url": "https://symfony.com/sponsor",
  9394. "type": "custom"
  9395. },
  9396. {
  9397. "url": "https://github.com/fabpot",
  9398. "type": "github"
  9399. },
  9400. {
  9401. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9402. "type": "tidelift"
  9403. }
  9404. ],
  9405. "time": "2020-05-30T18:58:05+00:00"
  9406. },
  9407. {
  9408. "name": "symfony/translation",
  9409. "version": "v3.4.41",
  9410. "source": {
  9411. "type": "git",
  9412. "url": "https://github.com/symfony/translation.git",
  9413. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f"
  9414. },
  9415. "dist": {
  9416. "type": "zip",
  9417. "url": "https://api.github.com/repos/symfony/translation/zipball/b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  9418. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  9419. "shasum": ""
  9420. },
  9421. "require": {
  9422. "php": "^5.5.9|>=7.0.8",
  9423. "symfony/polyfill-mbstring": "~1.0"
  9424. },
  9425. "conflict": {
  9426. "symfony/config": "<2.8",
  9427. "symfony/dependency-injection": "<3.4",
  9428. "symfony/yaml": "<3.4"
  9429. },
  9430. "require-dev": {
  9431. "psr/log": "~1.0",
  9432. "symfony/config": "~2.8|~3.0|~4.0",
  9433. "symfony/dependency-injection": "~3.4|~4.0",
  9434. "symfony/finder": "~2.8|~3.0|~4.0",
  9435. "symfony/http-kernel": "~3.4|~4.0",
  9436. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9437. "symfony/var-dumper": "~3.4|~4.0",
  9438. "symfony/yaml": "~3.4|~4.0"
  9439. },
  9440. "suggest": {
  9441. "psr/log-implementation": "To use logging capability in translator",
  9442. "symfony/config": "",
  9443. "symfony/yaml": ""
  9444. },
  9445. "type": "library",
  9446. "extra": {
  9447. "branch-alias": {
  9448. "dev-master": "3.4-dev"
  9449. }
  9450. },
  9451. "autoload": {
  9452. "psr-4": {
  9453. "Symfony\\Component\\Translation\\": ""
  9454. },
  9455. "exclude-from-classmap": [
  9456. "/Tests/"
  9457. ]
  9458. },
  9459. "notification-url": "https://packagist.org/downloads/",
  9460. "license": [
  9461. "MIT"
  9462. ],
  9463. "authors": [
  9464. {
  9465. "name": "Fabien Potencier",
  9466. "email": "fabien@symfony.com"
  9467. },
  9468. {
  9469. "name": "Symfony Community",
  9470. "homepage": "https://symfony.com/contributors"
  9471. }
  9472. ],
  9473. "description": "Symfony Translation Component",
  9474. "homepage": "https://symfony.com",
  9475. "support": {
  9476. "source": "https://github.com/symfony/translation/tree/3.4"
  9477. },
  9478. "funding": [
  9479. {
  9480. "url": "https://symfony.com/sponsor",
  9481. "type": "custom"
  9482. },
  9483. {
  9484. "url": "https://github.com/fabpot",
  9485. "type": "github"
  9486. },
  9487. {
  9488. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9489. "type": "tidelift"
  9490. }
  9491. ],
  9492. "time": "2020-05-30T18:58:05+00:00"
  9493. },
  9494. {
  9495. "name": "symfony/validator",
  9496. "version": "v3.4.41",
  9497. "source": {
  9498. "type": "git",
  9499. "url": "https://github.com/symfony/validator.git",
  9500. "reference": "5fb88120a11a75e17b602103a893dd8b27804529"
  9501. },
  9502. "dist": {
  9503. "type": "zip",
  9504. "url": "https://api.github.com/repos/symfony/validator/zipball/5fb88120a11a75e17b602103a893dd8b27804529",
  9505. "reference": "5fb88120a11a75e17b602103a893dd8b27804529",
  9506. "shasum": ""
  9507. },
  9508. "require": {
  9509. "php": "^5.5.9|>=7.0.8",
  9510. "symfony/polyfill-ctype": "~1.8",
  9511. "symfony/polyfill-mbstring": "~1.0",
  9512. "symfony/translation": "~2.8|~3.0|~4.0"
  9513. },
  9514. "conflict": {
  9515. "doctrine/lexer": "<1.0.2",
  9516. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9517. "symfony/dependency-injection": "<3.3",
  9518. "symfony/http-kernel": "<3.3.5",
  9519. "symfony/yaml": "<3.4"
  9520. },
  9521. "require-dev": {
  9522. "doctrine/annotations": "~1.7",
  9523. "doctrine/cache": "~1.0",
  9524. "egulias/email-validator": "^2.1.10",
  9525. "symfony/cache": "~3.1|~4.0",
  9526. "symfony/config": "~2.8|~3.0|~4.0",
  9527. "symfony/dependency-injection": "~3.3|~4.0",
  9528. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9529. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9530. "symfony/http-kernel": "^3.3.5|~4.0",
  9531. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9532. "symfony/property-access": "~2.8|~3.0|~4.0",
  9533. "symfony/var-dumper": "~3.3|~4.0",
  9534. "symfony/yaml": "~3.4|~4.0"
  9535. },
  9536. "suggest": {
  9537. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9538. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9539. "egulias/email-validator": "Strict (RFC compliant) email validation",
  9540. "psr/cache-implementation": "For using the metadata cache.",
  9541. "symfony/config": "",
  9542. "symfony/expression-language": "For using the Expression validator",
  9543. "symfony/http-foundation": "",
  9544. "symfony/intl": "",
  9545. "symfony/property-access": "For accessing properties within comparison constraints",
  9546. "symfony/yaml": ""
  9547. },
  9548. "type": "library",
  9549. "extra": {
  9550. "branch-alias": {
  9551. "dev-master": "3.4-dev"
  9552. }
  9553. },
  9554. "autoload": {
  9555. "psr-4": {
  9556. "Symfony\\Component\\Validator\\": ""
  9557. },
  9558. "exclude-from-classmap": [
  9559. "/Tests/"
  9560. ]
  9561. },
  9562. "notification-url": "https://packagist.org/downloads/",
  9563. "license": [
  9564. "MIT"
  9565. ],
  9566. "authors": [
  9567. {
  9568. "name": "Fabien Potencier",
  9569. "email": "fabien@symfony.com"
  9570. },
  9571. {
  9572. "name": "Symfony Community",
  9573. "homepage": "https://symfony.com/contributors"
  9574. }
  9575. ],
  9576. "description": "Symfony Validator Component",
  9577. "homepage": "https://symfony.com",
  9578. "support": {
  9579. "source": "https://github.com/symfony/validator/tree/3.4"
  9580. },
  9581. "funding": [
  9582. {
  9583. "url": "https://symfony.com/sponsor",
  9584. "type": "custom"
  9585. },
  9586. {
  9587. "url": "https://github.com/fabpot",
  9588. "type": "github"
  9589. },
  9590. {
  9591. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9592. "type": "tidelift"
  9593. }
  9594. ],
  9595. "time": "2020-05-30T18:43:38+00:00"
  9596. },
  9597. {
  9598. "name": "symfony/var-dumper",
  9599. "version": "v4.4.47",
  9600. "source": {
  9601. "type": "git",
  9602. "url": "https://github.com/symfony/var-dumper.git",
  9603. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63"
  9604. },
  9605. "dist": {
  9606. "type": "zip",
  9607. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1069c7a3fca74578022fab6f81643248d02f8e63",
  9608. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63",
  9609. "shasum": ""
  9610. },
  9611. "require": {
  9612. "php": ">=7.1.3",
  9613. "symfony/polyfill-mbstring": "~1.0",
  9614. "symfony/polyfill-php72": "~1.5",
  9615. "symfony/polyfill-php80": "^1.16"
  9616. },
  9617. "conflict": {
  9618. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9619. "symfony/console": "<3.4"
  9620. },
  9621. "require-dev": {
  9622. "ext-iconv": "*",
  9623. "symfony/console": "^3.4|^4.0|^5.0",
  9624. "symfony/process": "^4.4|^5.0",
  9625. "twig/twig": "^1.43|^2.13|^3.0.4"
  9626. },
  9627. "suggest": {
  9628. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  9629. "ext-intl": "To show region name in time zone dump",
  9630. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  9631. },
  9632. "bin": [
  9633. "Resources/bin/var-dump-server"
  9634. ],
  9635. "type": "library",
  9636. "autoload": {
  9637. "files": [
  9638. "Resources/functions/dump.php"
  9639. ],
  9640. "psr-4": {
  9641. "Symfony\\Component\\VarDumper\\": ""
  9642. },
  9643. "exclude-from-classmap": [
  9644. "/Tests/"
  9645. ]
  9646. },
  9647. "notification-url": "https://packagist.org/downloads/",
  9648. "license": [
  9649. "MIT"
  9650. ],
  9651. "authors": [
  9652. {
  9653. "name": "Nicolas Grekas",
  9654. "email": "p@tchwork.com"
  9655. },
  9656. {
  9657. "name": "Symfony Community",
  9658. "homepage": "https://symfony.com/contributors"
  9659. }
  9660. ],
  9661. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9662. "homepage": "https://symfony.com",
  9663. "keywords": [
  9664. "debug",
  9665. "dump"
  9666. ],
  9667. "support": {
  9668. "source": "https://github.com/symfony/var-dumper/tree/v4.4.47"
  9669. },
  9670. "funding": [
  9671. {
  9672. "url": "https://symfony.com/sponsor",
  9673. "type": "custom"
  9674. },
  9675. {
  9676. "url": "https://github.com/fabpot",
  9677. "type": "github"
  9678. },
  9679. {
  9680. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9681. "type": "tidelift"
  9682. }
  9683. ],
  9684. "time": "2022-10-03T15:15:11+00:00"
  9685. },
  9686. {
  9687. "name": "symfony/yaml",
  9688. "version": "v3.4.41",
  9689. "source": {
  9690. "type": "git",
  9691. "url": "https://github.com/symfony/yaml.git",
  9692. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb"
  9693. },
  9694. "dist": {
  9695. "type": "zip",
  9696. "url": "https://api.github.com/repos/symfony/yaml/zipball/7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  9697. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  9698. "shasum": ""
  9699. },
  9700. "require": {
  9701. "php": "^5.5.9|>=7.0.8",
  9702. "symfony/polyfill-ctype": "~1.8"
  9703. },
  9704. "conflict": {
  9705. "symfony/console": "<3.4"
  9706. },
  9707. "require-dev": {
  9708. "symfony/console": "~3.4|~4.0"
  9709. },
  9710. "suggest": {
  9711. "symfony/console": "For validating YAML files using the lint command"
  9712. },
  9713. "type": "library",
  9714. "extra": {
  9715. "branch-alias": {
  9716. "dev-master": "3.4-dev"
  9717. }
  9718. },
  9719. "autoload": {
  9720. "psr-4": {
  9721. "Symfony\\Component\\Yaml\\": ""
  9722. },
  9723. "exclude-from-classmap": [
  9724. "/Tests/"
  9725. ]
  9726. },
  9727. "notification-url": "https://packagist.org/downloads/",
  9728. "license": [
  9729. "MIT"
  9730. ],
  9731. "authors": [
  9732. {
  9733. "name": "Fabien Potencier",
  9734. "email": "fabien@symfony.com"
  9735. },
  9736. {
  9737. "name": "Symfony Community",
  9738. "homepage": "https://symfony.com/contributors"
  9739. }
  9740. ],
  9741. "description": "Symfony Yaml Component",
  9742. "homepage": "https://symfony.com",
  9743. "support": {
  9744. "source": "https://github.com/symfony/yaml/tree/v3.4.41"
  9745. },
  9746. "funding": [
  9747. {
  9748. "url": "https://symfony.com/sponsor",
  9749. "type": "custom"
  9750. },
  9751. {
  9752. "url": "https://github.com/fabpot",
  9753. "type": "github"
  9754. },
  9755. {
  9756. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9757. "type": "tidelift"
  9758. }
  9759. ],
  9760. "time": "2020-05-11T07:51:54+00:00"
  9761. },
  9762. {
  9763. "name": "twig/twig",
  9764. "version": "v1.42.5",
  9765. "source": {
  9766. "type": "git",
  9767. "url": "https://github.com/twigphp/Twig.git",
  9768. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e"
  9769. },
  9770. "dist": {
  9771. "type": "zip",
  9772. "url": "https://api.github.com/repos/twigphp/Twig/zipball/87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  9773. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  9774. "shasum": ""
  9775. },
  9776. "require": {
  9777. "php": ">=5.5.0",
  9778. "symfony/polyfill-ctype": "^1.8"
  9779. },
  9780. "require-dev": {
  9781. "psr/container": "^1.0",
  9782. "symfony/phpunit-bridge": "^4.4|^5.0"
  9783. },
  9784. "type": "library",
  9785. "extra": {
  9786. "branch-alias": {
  9787. "dev-master": "1.42-dev"
  9788. }
  9789. },
  9790. "autoload": {
  9791. "psr-0": {
  9792. "Twig_": "lib/"
  9793. },
  9794. "psr-4": {
  9795. "Twig\\": "src/"
  9796. }
  9797. },
  9798. "notification-url": "https://packagist.org/downloads/",
  9799. "license": [
  9800. "BSD-3-Clause"
  9801. ],
  9802. "authors": [
  9803. {
  9804. "name": "Fabien Potencier",
  9805. "email": "fabien@symfony.com",
  9806. "homepage": "http://fabien.potencier.org",
  9807. "role": "Lead Developer"
  9808. },
  9809. {
  9810. "name": "Twig Team",
  9811. "role": "Contributors"
  9812. },
  9813. {
  9814. "name": "Armin Ronacher",
  9815. "email": "armin.ronacher@active-4.com",
  9816. "role": "Project Founder"
  9817. }
  9818. ],
  9819. "description": "Twig, the flexible, fast, and secure template language for PHP",
  9820. "homepage": "https://twig.symfony.com",
  9821. "keywords": [
  9822. "templating"
  9823. ],
  9824. "support": {
  9825. "issues": "https://github.com/twigphp/Twig/issues",
  9826. "source": "https://github.com/twigphp/Twig/tree/1.x"
  9827. },
  9828. "time": "2020-02-11T05:59:23+00:00"
  9829. },
  9830. {
  9831. "name": "typo3/phar-stream-wrapper",
  9832. "version": "v3.1.4",
  9833. "source": {
  9834. "type": "git",
  9835. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  9836. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04"
  9837. },
  9838. "dist": {
  9839. "type": "zip",
  9840. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  9841. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  9842. "shasum": ""
  9843. },
  9844. "require": {
  9845. "ext-json": "*",
  9846. "php": "^7.0"
  9847. },
  9848. "require-dev": {
  9849. "ext-xdebug": "*",
  9850. "phpunit/phpunit": "^6.5"
  9851. },
  9852. "suggest": {
  9853. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  9854. },
  9855. "type": "library",
  9856. "extra": {
  9857. "branch-alias": {
  9858. "dev-master": "v3.x-dev"
  9859. }
  9860. },
  9861. "autoload": {
  9862. "psr-4": {
  9863. "TYPO3\\PharStreamWrapper\\": "src/"
  9864. }
  9865. },
  9866. "notification-url": "https://packagist.org/downloads/",
  9867. "license": [
  9868. "MIT"
  9869. ],
  9870. "description": "Interceptors for PHP's native phar:// stream handling",
  9871. "homepage": "https://typo3.org/",
  9872. "keywords": [
  9873. "phar",
  9874. "php",
  9875. "security",
  9876. "stream-wrapper"
  9877. ],
  9878. "support": {
  9879. "issues": "https://github.com/TYPO3/phar-stream-wrapper/issues",
  9880. "source": "https://github.com/TYPO3/phar-stream-wrapper/tree/master"
  9881. },
  9882. "time": "2019-12-10T11:53:27+00:00"
  9883. },
  9884. {
  9885. "name": "vlucas/phpdotenv",
  9886. "version": "v2.6.4",
  9887. "source": {
  9888. "type": "git",
  9889. "url": "https://github.com/vlucas/phpdotenv.git",
  9890. "reference": "67d472b1794c986381a8950e4958e1adb779d561"
  9891. },
  9892. "dist": {
  9893. "type": "zip",
  9894. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/67d472b1794c986381a8950e4958e1adb779d561",
  9895. "reference": "67d472b1794c986381a8950e4958e1adb779d561",
  9896. "shasum": ""
  9897. },
  9898. "require": {
  9899. "php": "^5.3.9 || ^7.0 || ^8.0",
  9900. "symfony/polyfill-ctype": "^1.9"
  9901. },
  9902. "require-dev": {
  9903. "ext-filter": "*",
  9904. "ext-pcre": "*",
  9905. "phpunit/phpunit": "^4.8.35 || ^5.0"
  9906. },
  9907. "suggest": {
  9908. "ext-filter": "Required to use the boolean validator.",
  9909. "ext-pcre": "Required to use most of the library."
  9910. },
  9911. "type": "library",
  9912. "extra": {
  9913. "branch-alias": {
  9914. "dev-master": "2.6-dev"
  9915. }
  9916. },
  9917. "autoload": {
  9918. "psr-4": {
  9919. "Dotenv\\": "src/"
  9920. }
  9921. },
  9922. "notification-url": "https://packagist.org/downloads/",
  9923. "license": [
  9924. "BSD-3-Clause"
  9925. ],
  9926. "authors": [
  9927. {
  9928. "name": "Graham Campbell",
  9929. "email": "graham@alt-three.com",
  9930. "homepage": "https://gjcampbell.co.uk/"
  9931. },
  9932. {
  9933. "name": "Vance Lucas",
  9934. "email": "vance@vancelucas.com",
  9935. "homepage": "https://vancelucas.com/"
  9936. }
  9937. ],
  9938. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  9939. "keywords": [
  9940. "dotenv",
  9941. "env",
  9942. "environment"
  9943. ],
  9944. "time": "2020-05-02T13:38:00+00:00"
  9945. },
  9946. {
  9947. "name": "webflo/drupal-finder",
  9948. "version": "1.2.0",
  9949. "source": {
  9950. "type": "git",
  9951. "url": "https://github.com/webflo/drupal-finder.git",
  9952. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e"
  9953. },
  9954. "dist": {
  9955. "type": "zip",
  9956. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  9957. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  9958. "shasum": ""
  9959. },
  9960. "require": {
  9961. "ext-json": "*"
  9962. },
  9963. "require-dev": {
  9964. "mikey179/vfsstream": "^1.6",
  9965. "phpunit/phpunit": "^4.8"
  9966. },
  9967. "type": "library",
  9968. "autoload": {
  9969. "classmap": [
  9970. "src/DrupalFinder.php"
  9971. ]
  9972. },
  9973. "notification-url": "https://packagist.org/downloads/",
  9974. "license": [
  9975. "GPL-2.0+"
  9976. ],
  9977. "authors": [
  9978. {
  9979. "name": "Florian Weber",
  9980. "email": "florian@webflo.org"
  9981. }
  9982. ],
  9983. "description": "Helper class to locate a Drupal installation from a given path.",
  9984. "time": "2019-08-02T08:06:18+00:00"
  9985. },
  9986. {
  9987. "name": "webmozart/assert",
  9988. "version": "1.11.0",
  9989. "source": {
  9990. "type": "git",
  9991. "url": "https://github.com/webmozarts/assert.git",
  9992. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  9993. },
  9994. "dist": {
  9995. "type": "zip",
  9996. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9997. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9998. "shasum": ""
  9999. },
  10000. "require": {
  10001. "ext-ctype": "*",
  10002. "php": "^7.2 || ^8.0"
  10003. },
  10004. "conflict": {
  10005. "phpstan/phpstan": "<0.12.20",
  10006. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10007. },
  10008. "require-dev": {
  10009. "phpunit/phpunit": "^8.5.13"
  10010. },
  10011. "type": "library",
  10012. "extra": {
  10013. "branch-alias": {
  10014. "dev-master": "1.10-dev"
  10015. }
  10016. },
  10017. "autoload": {
  10018. "psr-4": {
  10019. "Webmozart\\Assert\\": "src/"
  10020. }
  10021. },
  10022. "notification-url": "https://packagist.org/downloads/",
  10023. "license": [
  10024. "MIT"
  10025. ],
  10026. "authors": [
  10027. {
  10028. "name": "Bernhard Schussek",
  10029. "email": "bschussek@gmail.com"
  10030. }
  10031. ],
  10032. "description": "Assertions to validate method input/output with nice error messages.",
  10033. "keywords": [
  10034. "assert",
  10035. "check",
  10036. "validate"
  10037. ],
  10038. "support": {
  10039. "issues": "https://github.com/webmozarts/assert/issues",
  10040. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  10041. },
  10042. "time": "2022-06-03T18:03:27+00:00"
  10043. },
  10044. {
  10045. "name": "webmozart/path-util",
  10046. "version": "2.3.0",
  10047. "source": {
  10048. "type": "git",
  10049. "url": "https://github.com/webmozart/path-util.git",
  10050. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  10051. },
  10052. "dist": {
  10053. "type": "zip",
  10054. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10055. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10056. "shasum": ""
  10057. },
  10058. "require": {
  10059. "php": ">=5.3.3",
  10060. "webmozart/assert": "~1.0"
  10061. },
  10062. "require-dev": {
  10063. "phpunit/phpunit": "^4.6",
  10064. "sebastian/version": "^1.0.1"
  10065. },
  10066. "type": "library",
  10067. "extra": {
  10068. "branch-alias": {
  10069. "dev-master": "2.3-dev"
  10070. }
  10071. },
  10072. "autoload": {
  10073. "psr-4": {
  10074. "Webmozart\\PathUtil\\": "src/"
  10075. }
  10076. },
  10077. "notification-url": "https://packagist.org/downloads/",
  10078. "license": [
  10079. "MIT"
  10080. ],
  10081. "authors": [
  10082. {
  10083. "name": "Bernhard Schussek",
  10084. "email": "bschussek@gmail.com"
  10085. }
  10086. ],
  10087. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  10088. "time": "2015-12-17T08:42:14+00:00"
  10089. }
  10090. ],
  10091. "packages-dev": [],
  10092. "aliases": [],
  10093. "minimum-stability": "dev",
  10094. "stability-flags": {
  10095. "drupal/better_messages": 15,
  10096. "drupal/bulkdelete": 20,
  10097. "drupal/domain": 15,
  10098. "drupal/entity": 20,
  10099. "drupal/filefield_sources": 15,
  10100. "drupal/filter_perms": 15,
  10101. "drupal/maillog": 10,
  10102. "drupal/path_alias_xt": 20,
  10103. "drupal/synonyms": 15,
  10104. "drupal/toolbar_themes": 20
  10105. },
  10106. "prefer-stable": true,
  10107. "prefer-lowest": false,
  10108. "platform": {
  10109. "php": ">=5.6"
  10110. },
  10111. "platform-dev": [],
  10112. "plugin-api-version": "2.6.0"
  10113. }