composer.lock 401 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926
  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": "f4b3b7b173b5d1f77911f9c9dda6fb5f",
  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.33.1",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  71. "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/5f814e980b6f9cf1ca8c74cc9385c3d81090d388",
  76. "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388",
  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. "conflict": {
  87. "drush/drush": "< 10.3.2"
  88. },
  89. "bin": [
  90. "bin/dcg"
  91. ],
  92. "type": "library",
  93. "extra": {
  94. "branch-alias": {
  95. "dev-master": "1.x-dev"
  96. }
  97. },
  98. "autoload": {
  99. "files": [
  100. "src/bootstrap.php"
  101. ],
  102. "psr-4": {
  103. "DrupalCodeGenerator\\": "src"
  104. }
  105. },
  106. "notification-url": "https://packagist.org/downloads/",
  107. "license": [
  108. "GPL-2.0-or-later"
  109. ],
  110. "description": "Drupal code generator",
  111. "support": {
  112. "issues": "https://github.com/Chi-teck/drupal-code-generator/issues",
  113. "source": "https://github.com/Chi-teck/drupal-code-generator/tree/1.33.1"
  114. },
  115. "time": "2020-12-05T05:59:11+00:00"
  116. },
  117. {
  118. "name": "composer/installers",
  119. "version": "v1.12.0",
  120. "source": {
  121. "type": "git",
  122. "url": "https://github.com/composer/installers.git",
  123. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19"
  124. },
  125. "dist": {
  126. "type": "zip",
  127. "url": "https://api.github.com/repos/composer/installers/zipball/d20a64ed3c94748397ff5973488761b22f6d3f19",
  128. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19",
  129. "shasum": ""
  130. },
  131. "require": {
  132. "composer-plugin-api": "^1.0 || ^2.0"
  133. },
  134. "replace": {
  135. "roundcube/plugin-installer": "*",
  136. "shama/baton": "*"
  137. },
  138. "require-dev": {
  139. "composer/composer": "1.6.* || ^2.0",
  140. "composer/semver": "^1 || ^3",
  141. "phpstan/phpstan": "^0.12.55",
  142. "phpstan/phpstan-phpunit": "^0.12.16",
  143. "symfony/phpunit-bridge": "^4.2 || ^5",
  144. "symfony/process": "^2.3"
  145. },
  146. "type": "composer-plugin",
  147. "extra": {
  148. "class": "Composer\\Installers\\Plugin",
  149. "branch-alias": {
  150. "dev-main": "1.x-dev"
  151. }
  152. },
  153. "autoload": {
  154. "psr-4": {
  155. "Composer\\Installers\\": "src/Composer/Installers"
  156. }
  157. },
  158. "notification-url": "https://packagist.org/downloads/",
  159. "license": [
  160. "MIT"
  161. ],
  162. "authors": [
  163. {
  164. "name": "Kyle Robinson Young",
  165. "email": "kyle@dontkry.com",
  166. "homepage": "https://github.com/shama"
  167. }
  168. ],
  169. "description": "A multi-framework Composer library installer",
  170. "homepage": "https://composer.github.io/installers/",
  171. "keywords": [
  172. "Craft",
  173. "Dolibarr",
  174. "Eliasis",
  175. "Hurad",
  176. "ImageCMS",
  177. "Kanboard",
  178. "Lan Management System",
  179. "MODX Evo",
  180. "MantisBT",
  181. "Mautic",
  182. "Maya",
  183. "OXID",
  184. "Plentymarkets",
  185. "Porto",
  186. "RadPHP",
  187. "SMF",
  188. "Starbug",
  189. "Thelia",
  190. "Whmcs",
  191. "WolfCMS",
  192. "agl",
  193. "aimeos",
  194. "annotatecms",
  195. "attogram",
  196. "bitrix",
  197. "cakephp",
  198. "chef",
  199. "cockpit",
  200. "codeigniter",
  201. "concrete5",
  202. "croogo",
  203. "dokuwiki",
  204. "drupal",
  205. "eZ Platform",
  206. "elgg",
  207. "expressionengine",
  208. "fuelphp",
  209. "grav",
  210. "installer",
  211. "itop",
  212. "joomla",
  213. "known",
  214. "kohana",
  215. "laravel",
  216. "lavalite",
  217. "lithium",
  218. "magento",
  219. "majima",
  220. "mako",
  221. "mediawiki",
  222. "miaoxing",
  223. "modulework",
  224. "modx",
  225. "moodle",
  226. "osclass",
  227. "pantheon",
  228. "phpbb",
  229. "piwik",
  230. "ppi",
  231. "processwire",
  232. "puppet",
  233. "pxcms",
  234. "reindex",
  235. "roundcube",
  236. "shopware",
  237. "silverstripe",
  238. "sydes",
  239. "sylius",
  240. "symfony",
  241. "tastyigniter",
  242. "typo3",
  243. "wordpress",
  244. "yawik",
  245. "zend",
  246. "zikula"
  247. ],
  248. "support": {
  249. "issues": "https://github.com/composer/installers/issues",
  250. "source": "https://github.com/composer/installers/tree/v1.12.0"
  251. },
  252. "funding": [
  253. {
  254. "url": "https://packagist.com",
  255. "type": "custom"
  256. },
  257. {
  258. "url": "https://github.com/composer",
  259. "type": "github"
  260. },
  261. {
  262. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  263. "type": "tidelift"
  264. }
  265. ],
  266. "time": "2021-09-13T08:19:44+00:00"
  267. },
  268. {
  269. "name": "composer/semver",
  270. "version": "3.2.2",
  271. "source": {
  272. "type": "git",
  273. "url": "https://github.com/composer/semver.git",
  274. "reference": "4089fddb67bcf6bf860d91b979e95be303835002"
  275. },
  276. "dist": {
  277. "type": "zip",
  278. "url": "https://api.github.com/repos/composer/semver/zipball/4089fddb67bcf6bf860d91b979e95be303835002",
  279. "reference": "4089fddb67bcf6bf860d91b979e95be303835002",
  280. "shasum": ""
  281. },
  282. "require": {
  283. "php": "^5.3.2 || ^7.0 || ^8.0"
  284. },
  285. "require-dev": {
  286. "phpstan/phpstan": "^0.12.19",
  287. "symfony/phpunit-bridge": "^4.2 || ^5"
  288. },
  289. "type": "library",
  290. "extra": {
  291. "branch-alias": {
  292. "dev-main": "3.x-dev"
  293. }
  294. },
  295. "autoload": {
  296. "psr-4": {
  297. "Composer\\Semver\\": "src"
  298. }
  299. },
  300. "notification-url": "https://packagist.org/downloads/",
  301. "license": [
  302. "MIT"
  303. ],
  304. "authors": [
  305. {
  306. "name": "Nils Adermann",
  307. "email": "naderman@naderman.de",
  308. "homepage": "http://www.naderman.de"
  309. },
  310. {
  311. "name": "Jordi Boggiano",
  312. "email": "j.boggiano@seld.be",
  313. "homepage": "http://seld.be"
  314. },
  315. {
  316. "name": "Rob Bast",
  317. "email": "rob.bast@gmail.com",
  318. "homepage": "http://robbast.nl"
  319. }
  320. ],
  321. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  322. "keywords": [
  323. "semantic",
  324. "semver",
  325. "validation",
  326. "versioning"
  327. ],
  328. "support": {
  329. "irc": "irc://irc.freenode.org/composer",
  330. "issues": "https://github.com/composer/semver/issues",
  331. "source": "https://github.com/composer/semver/tree/3.2.2"
  332. },
  333. "funding": [
  334. {
  335. "url": "https://packagist.com",
  336. "type": "custom"
  337. },
  338. {
  339. "url": "https://github.com/composer",
  340. "type": "github"
  341. },
  342. {
  343. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  344. "type": "tidelift"
  345. }
  346. ],
  347. "time": "2020-10-14T08:51:15+00:00"
  348. },
  349. {
  350. "name": "consolidation/annotated-command",
  351. "version": "2.12.2",
  352. "source": {
  353. "type": "git",
  354. "url": "https://github.com/consolidation/annotated-command.git",
  355. "reference": "2472a23610cba1d86dcb783a81a21259473b059e"
  356. },
  357. "dist": {
  358. "type": "zip",
  359. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/2472a23610cba1d86dcb783a81a21259473b059e",
  360. "reference": "2472a23610cba1d86dcb783a81a21259473b059e",
  361. "shasum": ""
  362. },
  363. "require": {
  364. "consolidation/output-formatters": "^3.5.1",
  365. "php": ">=5.4.5",
  366. "psr/log": "^1",
  367. "symfony/console": "^2.8|^3|^4",
  368. "symfony/event-dispatcher": "^2.5|^3|^4",
  369. "symfony/finder": "^2.5|^3|^4|^5"
  370. },
  371. "require-dev": {
  372. "g1a/composer-test-scenarios": "^3",
  373. "php-coveralls/php-coveralls": "^1",
  374. "phpunit/phpunit": "^6",
  375. "squizlabs/php_codesniffer": "^2.7"
  376. },
  377. "type": "library",
  378. "extra": {
  379. "scenarios": {
  380. "finder5": {
  381. "require": {
  382. "symfony/finder": "^5"
  383. },
  384. "config": {
  385. "platform": {
  386. "php": "7.2.5"
  387. }
  388. }
  389. },
  390. "symfony4": {
  391. "require": {
  392. "symfony/console": "^4.0"
  393. },
  394. "config": {
  395. "platform": {
  396. "php": "7.1.3"
  397. }
  398. }
  399. },
  400. "symfony2": {
  401. "require": {
  402. "symfony/console": "^2.8"
  403. },
  404. "require-dev": {
  405. "phpunit/phpunit": "^4.8.36"
  406. },
  407. "remove": [
  408. "php-coveralls/php-coveralls"
  409. ],
  410. "config": {
  411. "platform": {
  412. "php": "5.4.8"
  413. }
  414. },
  415. "scenario-options": {
  416. "create-lockfile": "false"
  417. }
  418. },
  419. "phpunit4": {
  420. "require-dev": {
  421. "phpunit/phpunit": "^4.8.36"
  422. },
  423. "remove": [
  424. "php-coveralls/php-coveralls"
  425. ],
  426. "config": {
  427. "platform": {
  428. "php": "5.4.8"
  429. }
  430. }
  431. }
  432. },
  433. "branch-alias": {
  434. "dev-master": "2.x-dev"
  435. }
  436. },
  437. "autoload": {
  438. "psr-4": {
  439. "Consolidation\\AnnotatedCommand\\": "src"
  440. }
  441. },
  442. "notification-url": "https://packagist.org/downloads/",
  443. "license": [
  444. "MIT"
  445. ],
  446. "authors": [
  447. {
  448. "name": "Greg Anderson",
  449. "email": "greg.1.anderson@greenknowe.org"
  450. }
  451. ],
  452. "description": "Initialize Symfony Console commands from annotated command class methods.",
  453. "support": {
  454. "issues": "https://github.com/consolidation/annotated-command/issues",
  455. "source": "https://github.com/consolidation/annotated-command/tree/2.12.2"
  456. },
  457. "time": "2022-01-03T00:23:44+00:00"
  458. },
  459. {
  460. "name": "consolidation/config",
  461. "version": "1.2.1",
  462. "source": {
  463. "type": "git",
  464. "url": "https://github.com/consolidation/config.git",
  465. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  466. },
  467. "dist": {
  468. "type": "zip",
  469. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  470. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  471. "shasum": ""
  472. },
  473. "require": {
  474. "dflydev/dot-access-data": "^1.1.0",
  475. "grasmash/expander": "^1",
  476. "php": ">=5.4.0"
  477. },
  478. "require-dev": {
  479. "g1a/composer-test-scenarios": "^3",
  480. "php-coveralls/php-coveralls": "^1",
  481. "phpunit/phpunit": "^5",
  482. "squizlabs/php_codesniffer": "2.*",
  483. "symfony/console": "^2.5|^3|^4",
  484. "symfony/yaml": "^2.8.11|^3|^4"
  485. },
  486. "suggest": {
  487. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  488. },
  489. "type": "library",
  490. "extra": {
  491. "scenarios": {
  492. "symfony4": {
  493. "require-dev": {
  494. "symfony/console": "^4.0"
  495. },
  496. "config": {
  497. "platform": {
  498. "php": "7.1.3"
  499. }
  500. }
  501. },
  502. "symfony2": {
  503. "require-dev": {
  504. "symfony/console": "^2.8",
  505. "symfony/event-dispatcher": "^2.8",
  506. "phpunit/phpunit": "^4.8.36"
  507. },
  508. "remove": [
  509. "php-coveralls/php-coveralls"
  510. ],
  511. "config": {
  512. "platform": {
  513. "php": "5.4.8"
  514. }
  515. }
  516. }
  517. },
  518. "branch-alias": {
  519. "dev-master": "1.x-dev"
  520. }
  521. },
  522. "autoload": {
  523. "psr-4": {
  524. "Consolidation\\Config\\": "src"
  525. }
  526. },
  527. "notification-url": "https://packagist.org/downloads/",
  528. "license": [
  529. "MIT"
  530. ],
  531. "authors": [
  532. {
  533. "name": "Greg Anderson",
  534. "email": "greg.1.anderson@greenknowe.org"
  535. }
  536. ],
  537. "description": "Provide configuration services for a commandline tool.",
  538. "support": {
  539. "issues": "https://github.com/consolidation/config/issues",
  540. "source": "https://github.com/consolidation/config/tree/master"
  541. },
  542. "time": "2019-03-03T19:37:04+00:00"
  543. },
  544. {
  545. "name": "consolidation/filter-via-dot-access-data",
  546. "version": "1.0.0",
  547. "source": {
  548. "type": "git",
  549. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  550. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  551. },
  552. "dist": {
  553. "type": "zip",
  554. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  555. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  556. "shasum": ""
  557. },
  558. "require": {
  559. "dflydev/dot-access-data": "^1.1.0",
  560. "php": ">=5.5.0"
  561. },
  562. "require-dev": {
  563. "consolidation/robo": "^1.2.3",
  564. "g1a/composer-test-scenarios": "^3",
  565. "knplabs/github-api": "^2.7",
  566. "php-coveralls/php-coveralls": "^1",
  567. "php-http/guzzle6-adapter": "^1.1",
  568. "phpunit/phpunit": "^5",
  569. "squizlabs/php_codesniffer": "^2.8",
  570. "symfony/console": "^2.8|^3|^4"
  571. },
  572. "type": "library",
  573. "extra": {
  574. "scenarios": {
  575. "phpunit5": {
  576. "require-dev": {
  577. "phpunit/phpunit": "^5.7.27"
  578. },
  579. "remove": [
  580. "php-coveralls/php-coveralls"
  581. ],
  582. "config": {
  583. "platform": {
  584. "php": "5.6.33"
  585. }
  586. }
  587. }
  588. },
  589. "branch-alias": {
  590. "dev-master": "1.x-dev"
  591. }
  592. },
  593. "autoload": {
  594. "psr-4": {
  595. "Consolidation\\Filter\\": "src"
  596. }
  597. },
  598. "notification-url": "https://packagist.org/downloads/",
  599. "license": [
  600. "MIT"
  601. ],
  602. "authors": [
  603. {
  604. "name": "Greg Anderson",
  605. "email": "greg.1.anderson@greenknowe.org"
  606. }
  607. ],
  608. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  609. "support": {
  610. "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/1.0.0"
  611. },
  612. "time": "2019-01-18T06:05:07+00:00"
  613. },
  614. {
  615. "name": "consolidation/log",
  616. "version": "1.1.1",
  617. "source": {
  618. "type": "git",
  619. "url": "https://github.com/consolidation/log.git",
  620. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a"
  621. },
  622. "dist": {
  623. "type": "zip",
  624. "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  625. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  626. "shasum": ""
  627. },
  628. "require": {
  629. "php": ">=5.4.5",
  630. "psr/log": "^1.0",
  631. "symfony/console": "^2.8|^3|^4"
  632. },
  633. "require-dev": {
  634. "g1a/composer-test-scenarios": "^3",
  635. "php-coveralls/php-coveralls": "^1",
  636. "phpunit/phpunit": "^6",
  637. "squizlabs/php_codesniffer": "^2"
  638. },
  639. "type": "library",
  640. "extra": {
  641. "scenarios": {
  642. "symfony4": {
  643. "require": {
  644. "symfony/console": "^4.0"
  645. },
  646. "config": {
  647. "platform": {
  648. "php": "7.1.3"
  649. }
  650. }
  651. },
  652. "symfony2": {
  653. "require": {
  654. "symfony/console": "^2.8"
  655. },
  656. "require-dev": {
  657. "phpunit/phpunit": "^4.8.36"
  658. },
  659. "remove": [
  660. "php-coveralls/php-coveralls"
  661. ],
  662. "config": {
  663. "platform": {
  664. "php": "5.4.8"
  665. }
  666. }
  667. },
  668. "phpunit4": {
  669. "require-dev": {
  670. "phpunit/phpunit": "^4.8.36"
  671. },
  672. "remove": [
  673. "php-coveralls/php-coveralls"
  674. ],
  675. "config": {
  676. "platform": {
  677. "php": "5.4.8"
  678. }
  679. }
  680. }
  681. },
  682. "branch-alias": {
  683. "dev-master": "1.x-dev"
  684. }
  685. },
  686. "autoload": {
  687. "psr-4": {
  688. "Consolidation\\Log\\": "src"
  689. }
  690. },
  691. "notification-url": "https://packagist.org/downloads/",
  692. "license": [
  693. "MIT"
  694. ],
  695. "authors": [
  696. {
  697. "name": "Greg Anderson",
  698. "email": "greg.1.anderson@greenknowe.org"
  699. }
  700. ],
  701. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  702. "support": {
  703. "issues": "https://github.com/consolidation/log/issues",
  704. "source": "https://github.com/consolidation/log/tree/master"
  705. },
  706. "time": "2019-01-01T17:30:51+00:00"
  707. },
  708. {
  709. "name": "consolidation/output-formatters",
  710. "version": "3.5.1",
  711. "source": {
  712. "type": "git",
  713. "url": "https://github.com/consolidation/output-formatters.git",
  714. "reference": "0d38f13051ef05c223a2bb8e962d668e24785196"
  715. },
  716. "dist": {
  717. "type": "zip",
  718. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/0d38f13051ef05c223a2bb8e962d668e24785196",
  719. "reference": "0d38f13051ef05c223a2bb8e962d668e24785196",
  720. "shasum": ""
  721. },
  722. "require": {
  723. "dflydev/dot-access-data": "^1.1.0",
  724. "php": ">=5.4.0",
  725. "symfony/console": "^2.8|^3|^4",
  726. "symfony/finder": "^2.5|^3|^4|^5"
  727. },
  728. "require-dev": {
  729. "g1a/composer-test-scenarios": "^3",
  730. "php-coveralls/php-coveralls": "^1",
  731. "phpunit/phpunit": "^5.7.27",
  732. "squizlabs/php_codesniffer": "^2.7",
  733. "symfony/var-dumper": "^2.8|^3|^4",
  734. "victorjonsson/markdowndocs": "^1.3"
  735. },
  736. "suggest": {
  737. "symfony/var-dumper": "For using the var_dump formatter"
  738. },
  739. "type": "library",
  740. "extra": {
  741. "scenarios": {
  742. "finder5": {
  743. "require": {
  744. "symfony/finder": "^5"
  745. },
  746. "config": {
  747. "platform": {
  748. "php": "7.2.5"
  749. }
  750. }
  751. },
  752. "symfony4": {
  753. "require": {
  754. "symfony/console": "^4.0"
  755. },
  756. "require-dev": {
  757. "phpunit/phpunit": "^6"
  758. },
  759. "config": {
  760. "platform": {
  761. "php": "7.1.3"
  762. }
  763. }
  764. },
  765. "symfony3": {
  766. "require": {
  767. "symfony/console": "^3.4",
  768. "symfony/finder": "^3.4",
  769. "symfony/var-dumper": "^3.4"
  770. },
  771. "config": {
  772. "platform": {
  773. "php": "5.6.32"
  774. }
  775. }
  776. },
  777. "symfony2": {
  778. "require": {
  779. "symfony/console": "^2.8"
  780. },
  781. "require-dev": {
  782. "phpunit/phpunit": "^4.8.36"
  783. },
  784. "remove": [
  785. "php-coveralls/php-coveralls"
  786. ],
  787. "config": {
  788. "platform": {
  789. "php": "5.4.8"
  790. }
  791. },
  792. "scenario-options": {
  793. "create-lockfile": "false"
  794. }
  795. }
  796. },
  797. "branch-alias": {
  798. "dev-master": "3.x-dev"
  799. }
  800. },
  801. "autoload": {
  802. "psr-4": {
  803. "Consolidation\\OutputFormatters\\": "src"
  804. }
  805. },
  806. "notification-url": "https://packagist.org/downloads/",
  807. "license": [
  808. "MIT"
  809. ],
  810. "authors": [
  811. {
  812. "name": "Greg Anderson",
  813. "email": "greg.1.anderson@greenknowe.org"
  814. }
  815. ],
  816. "description": "Format text by applying transformations provided by plug-in formatters.",
  817. "support": {
  818. "issues": "https://github.com/consolidation/output-formatters/issues",
  819. "source": "https://github.com/consolidation/output-formatters/tree/3.5.1"
  820. },
  821. "time": "2020-10-11T04:15:32+00:00"
  822. },
  823. {
  824. "name": "consolidation/robo",
  825. "version": "1.5.0",
  826. "source": {
  827. "type": "git",
  828. "url": "https://github.com/consolidation/Robo.git",
  829. "reference": "12bf6b608057604a283e9e597edfed36ba071631"
  830. },
  831. "dist": {
  832. "type": "zip",
  833. "url": "https://api.github.com/repos/consolidation/Robo/zipball/12bf6b608057604a283e9e597edfed36ba071631",
  834. "reference": "12bf6b608057604a283e9e597edfed36ba071631",
  835. "shasum": ""
  836. },
  837. "require": {
  838. "consolidation/annotated-command": "^2.12.1 || ^4.1",
  839. "consolidation/config": "^1.2.1",
  840. "consolidation/log": "^1.1.1 || ^2",
  841. "consolidation/output-formatters": "^3.5.1 || ^4.1",
  842. "consolidation/self-update": "^1.1.5 || ^2",
  843. "grasmash/yaml-expander": "^1.4",
  844. "league/container": "^2.4.1",
  845. "php": ">=5.5.0",
  846. "symfony/console": "^2.8 || ^3 || ^4",
  847. "symfony/event-dispatcher": "^2.5 || ^3 || ^4",
  848. "symfony/filesystem": "^2.5 || ^3 || ^4",
  849. "symfony/finder": "^2.5 || ^3 || ^4 || ^5",
  850. "symfony/process": "^2.5 || ^3 || ^4"
  851. },
  852. "replace": {
  853. "codegyre/robo": "< 1.0"
  854. },
  855. "require-dev": {
  856. "g1a/composer-test-scenarios": "^3",
  857. "natxet/cssmin": "3.0.4",
  858. "patchwork/jsqueeze": "^2",
  859. "pear/archive_tar": "^1.4.4",
  860. "php-coveralls/php-coveralls": "^1",
  861. "phpunit/phpunit": "^5.7.27",
  862. "squizlabs/php_codesniffer": "^3"
  863. },
  864. "suggest": {
  865. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  866. "natxet/CssMin": "For minifying CSS files in taskMinify",
  867. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  868. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  869. },
  870. "bin": [
  871. "robo"
  872. ],
  873. "type": "library",
  874. "extra": {
  875. "scenarios": {
  876. "finder5": {
  877. "require": {
  878. "symfony/finder": "^5"
  879. },
  880. "config": {
  881. "platform": {
  882. "php": "7.2.5"
  883. }
  884. }
  885. },
  886. "symfony4": {
  887. "require": {
  888. "symfony/console": "^4"
  889. },
  890. "config": {
  891. "platform": {
  892. "php": "7.1.3"
  893. }
  894. }
  895. },
  896. "symfony2": {
  897. "require": {
  898. "symfony/console": "^2.8"
  899. },
  900. "require-dev": {
  901. "phpunit/phpunit": "^4.8.36"
  902. },
  903. "remove": [
  904. "php-coveralls/php-coveralls"
  905. ],
  906. "config": {
  907. "platform": {
  908. "php": "5.5.9"
  909. }
  910. },
  911. "scenario-options": {
  912. "create-lockfile": "false"
  913. }
  914. }
  915. },
  916. "branch-alias": {
  917. "dev-master": "1.x-dev"
  918. }
  919. },
  920. "autoload": {
  921. "psr-4": {
  922. "Robo\\": "src"
  923. }
  924. },
  925. "notification-url": "https://packagist.org/downloads/",
  926. "license": [
  927. "MIT"
  928. ],
  929. "authors": [
  930. {
  931. "name": "Davert",
  932. "email": "davert.php@resend.cc"
  933. }
  934. ],
  935. "description": "Modern task runner",
  936. "support": {
  937. "issues": "https://github.com/consolidation/Robo/issues",
  938. "source": "https://github.com/consolidation/Robo/tree/1.5.0"
  939. },
  940. "time": "2021-10-08T03:51:31+00:00"
  941. },
  942. {
  943. "name": "consolidation/self-update",
  944. "version": "1.2.0",
  945. "source": {
  946. "type": "git",
  947. "url": "https://github.com/consolidation/self-update.git",
  948. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4"
  949. },
  950. "dist": {
  951. "type": "zip",
  952. "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4",
  953. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4",
  954. "shasum": ""
  955. },
  956. "require": {
  957. "php": ">=5.5.0",
  958. "symfony/console": "^2.8|^3|^4|^5",
  959. "symfony/filesystem": "^2.5|^3|^4|^5"
  960. },
  961. "bin": [
  962. "scripts/release"
  963. ],
  964. "type": "library",
  965. "extra": {
  966. "branch-alias": {
  967. "dev-master": "1.x-dev"
  968. }
  969. },
  970. "autoload": {
  971. "psr-4": {
  972. "SelfUpdate\\": "src"
  973. }
  974. },
  975. "notification-url": "https://packagist.org/downloads/",
  976. "license": [
  977. "MIT"
  978. ],
  979. "authors": [
  980. {
  981. "name": "Alexander Menk",
  982. "email": "menk@mestrona.net"
  983. },
  984. {
  985. "name": "Greg Anderson",
  986. "email": "greg.1.anderson@greenknowe.org"
  987. }
  988. ],
  989. "description": "Provides a self:update command for Symfony Console applications.",
  990. "support": {
  991. "issues": "https://github.com/consolidation/self-update/issues",
  992. "source": "https://github.com/consolidation/self-update/tree/1.2.0"
  993. },
  994. "time": "2020-04-13T02:49:20+00:00"
  995. },
  996. {
  997. "name": "consolidation/site-alias",
  998. "version": "3.1.7",
  999. "source": {
  1000. "type": "git",
  1001. "url": "https://github.com/consolidation/site-alias.git",
  1002. "reference": "3b6519592c7e8557423f935806cd73adf69ed6c7"
  1003. },
  1004. "dist": {
  1005. "type": "zip",
  1006. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/3b6519592c7e8557423f935806cd73adf69ed6c7",
  1007. "reference": "3b6519592c7e8557423f935806cd73adf69ed6c7",
  1008. "shasum": ""
  1009. },
  1010. "require": {
  1011. "consolidation/config": "^1.2.1 || ^2",
  1012. "php": ">=5.5.0",
  1013. "symfony/filesystem": "^4.4 || ^5.4 || ^6",
  1014. "symfony/finder": "~2.3 || ^3 || ^4.4 || ^5 || ^6",
  1015. "webmozart/path-util": "^2.3"
  1016. },
  1017. "require-dev": {
  1018. "php-coveralls/php-coveralls": "^2.4.2",
  1019. "phpunit/phpunit": ">=7",
  1020. "squizlabs/php_codesniffer": "^3",
  1021. "symfony/var-dumper": "^4",
  1022. "yoast/phpunit-polyfills": "^0.2.0"
  1023. },
  1024. "type": "library",
  1025. "extra": {
  1026. "branch-alias": {
  1027. "dev-main": "3.x-dev"
  1028. }
  1029. },
  1030. "autoload": {
  1031. "psr-4": {
  1032. "Consolidation\\SiteAlias\\": "src"
  1033. }
  1034. },
  1035. "notification-url": "https://packagist.org/downloads/",
  1036. "license": [
  1037. "MIT"
  1038. ],
  1039. "authors": [
  1040. {
  1041. "name": "Greg Anderson",
  1042. "email": "greg.1.anderson@greenknowe.org"
  1043. },
  1044. {
  1045. "name": "Moshe Weitzman",
  1046. "email": "weitzman@tejasa.com"
  1047. }
  1048. ],
  1049. "description": "Manage alias records for local and remote sites.",
  1050. "support": {
  1051. "issues": "https://github.com/consolidation/site-alias/issues",
  1052. "source": "https://github.com/consolidation/site-alias/tree/3.1.7"
  1053. },
  1054. "time": "2022-10-15T01:21:09+00:00"
  1055. },
  1056. {
  1057. "name": "consolidation/site-process",
  1058. "version": "4.2.1",
  1059. "source": {
  1060. "type": "git",
  1061. "url": "https://github.com/consolidation/site-process.git",
  1062. "reference": "ee3bf69001694b2117cc2f96c2ef70d8d45f1234"
  1063. },
  1064. "dist": {
  1065. "type": "zip",
  1066. "url": "https://api.github.com/repos/consolidation/site-process/zipball/ee3bf69001694b2117cc2f96c2ef70d8d45f1234",
  1067. "reference": "ee3bf69001694b2117cc2f96c2ef70d8d45f1234",
  1068. "shasum": ""
  1069. },
  1070. "require": {
  1071. "consolidation/config": "^1.2.1 || ^2",
  1072. "consolidation/site-alias": "^3 || ^4",
  1073. "php": ">=7.1.3",
  1074. "symfony/console": "^2.8.52 || ^3 || ^4.4 || ^5",
  1075. "symfony/process": "^4.3.4 || ^5"
  1076. },
  1077. "require-dev": {
  1078. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  1079. "squizlabs/php_codesniffer": "^3",
  1080. "yoast/phpunit-polyfills": "^0.2.0"
  1081. },
  1082. "type": "library",
  1083. "extra": {
  1084. "branch-alias": {
  1085. "dev-main": "4.x-dev"
  1086. }
  1087. },
  1088. "autoload": {
  1089. "psr-4": {
  1090. "Consolidation\\SiteProcess\\": "src"
  1091. }
  1092. },
  1093. "notification-url": "https://packagist.org/downloads/",
  1094. "license": [
  1095. "MIT"
  1096. ],
  1097. "authors": [
  1098. {
  1099. "name": "Greg Anderson",
  1100. "email": "greg.1.anderson@greenknowe.org"
  1101. },
  1102. {
  1103. "name": "Moshe Weitzman",
  1104. "email": "weitzman@tejasa.com"
  1105. }
  1106. ],
  1107. "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.",
  1108. "support": {
  1109. "issues": "https://github.com/consolidation/site-process/issues",
  1110. "source": "https://github.com/consolidation/site-process/tree/4.2.1"
  1111. },
  1112. "time": "2022-10-18T13:19:35+00:00"
  1113. },
  1114. {
  1115. "name": "cweagans/composer-patches",
  1116. "version": "1.7.3",
  1117. "source": {
  1118. "type": "git",
  1119. "url": "https://github.com/cweagans/composer-patches.git",
  1120. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db"
  1121. },
  1122. "dist": {
  1123. "type": "zip",
  1124. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  1125. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  1126. "shasum": ""
  1127. },
  1128. "require": {
  1129. "composer-plugin-api": "^1.0 || ^2.0",
  1130. "php": ">=5.3.0"
  1131. },
  1132. "require-dev": {
  1133. "composer/composer": "~1.0 || ~2.0",
  1134. "phpunit/phpunit": "~4.6"
  1135. },
  1136. "type": "composer-plugin",
  1137. "extra": {
  1138. "class": "cweagans\\Composer\\Patches"
  1139. },
  1140. "autoload": {
  1141. "psr-4": {
  1142. "cweagans\\Composer\\": "src"
  1143. }
  1144. },
  1145. "notification-url": "https://packagist.org/downloads/",
  1146. "license": [
  1147. "BSD-3-Clause"
  1148. ],
  1149. "authors": [
  1150. {
  1151. "name": "Cameron Eagans",
  1152. "email": "me@cweagans.net"
  1153. }
  1154. ],
  1155. "description": "Provides a way to patch Composer packages.",
  1156. "support": {
  1157. "issues": "https://github.com/cweagans/composer-patches/issues",
  1158. "source": "https://github.com/cweagans/composer-patches/tree/1.7.3"
  1159. },
  1160. "time": "2022-12-20T22:53:13+00:00"
  1161. },
  1162. {
  1163. "name": "dflydev/dot-access-data",
  1164. "version": "v1.1.0",
  1165. "source": {
  1166. "type": "git",
  1167. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1168. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1169. },
  1170. "dist": {
  1171. "type": "zip",
  1172. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1173. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1174. "shasum": ""
  1175. },
  1176. "require": {
  1177. "php": ">=5.3.2"
  1178. },
  1179. "type": "library",
  1180. "extra": {
  1181. "branch-alias": {
  1182. "dev-master": "1.0-dev"
  1183. }
  1184. },
  1185. "autoload": {
  1186. "psr-0": {
  1187. "Dflydev\\DotAccessData": "src"
  1188. }
  1189. },
  1190. "notification-url": "https://packagist.org/downloads/",
  1191. "license": [
  1192. "MIT"
  1193. ],
  1194. "authors": [
  1195. {
  1196. "name": "Dragonfly Development Inc.",
  1197. "email": "info@dflydev.com",
  1198. "homepage": "http://dflydev.com"
  1199. },
  1200. {
  1201. "name": "Beau Simensen",
  1202. "email": "beau@dflydev.com",
  1203. "homepage": "http://beausimensen.com"
  1204. },
  1205. {
  1206. "name": "Carlos Frutos",
  1207. "email": "carlos@kiwing.it",
  1208. "homepage": "https://github.com/cfrutos"
  1209. }
  1210. ],
  1211. "description": "Given a deep data structure, access data by dot notation.",
  1212. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1213. "keywords": [
  1214. "access",
  1215. "data",
  1216. "dot",
  1217. "notation"
  1218. ],
  1219. "support": {
  1220. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1221. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/master"
  1222. },
  1223. "time": "2017-01-20T21:14:22+00:00"
  1224. },
  1225. {
  1226. "name": "doctrine/annotations",
  1227. "version": "1.11.1",
  1228. "source": {
  1229. "type": "git",
  1230. "url": "https://github.com/doctrine/annotations.git",
  1231. "reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad"
  1232. },
  1233. "dist": {
  1234. "type": "zip",
  1235. "url": "https://api.github.com/repos/doctrine/annotations/zipball/ce77a7ba1770462cd705a91a151b6c3746f9c6ad",
  1236. "reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad",
  1237. "shasum": ""
  1238. },
  1239. "require": {
  1240. "doctrine/lexer": "1.*",
  1241. "ext-tokenizer": "*",
  1242. "php": "^7.1 || ^8.0"
  1243. },
  1244. "require-dev": {
  1245. "doctrine/cache": "1.*",
  1246. "doctrine/coding-standard": "^6.0 || ^8.1",
  1247. "phpstan/phpstan": "^0.12.20",
  1248. "phpunit/phpunit": "^7.5 || ^9.1.5"
  1249. },
  1250. "type": "library",
  1251. "extra": {
  1252. "branch-alias": {
  1253. "dev-master": "1.11.x-dev"
  1254. }
  1255. },
  1256. "autoload": {
  1257. "psr-4": {
  1258. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1259. }
  1260. },
  1261. "notification-url": "https://packagist.org/downloads/",
  1262. "license": [
  1263. "MIT"
  1264. ],
  1265. "authors": [
  1266. {
  1267. "name": "Guilherme Blanco",
  1268. "email": "guilhermeblanco@gmail.com"
  1269. },
  1270. {
  1271. "name": "Roman Borschel",
  1272. "email": "roman@code-factory.org"
  1273. },
  1274. {
  1275. "name": "Benjamin Eberlei",
  1276. "email": "kontakt@beberlei.de"
  1277. },
  1278. {
  1279. "name": "Jonathan Wage",
  1280. "email": "jonwage@gmail.com"
  1281. },
  1282. {
  1283. "name": "Johannes Schmitt",
  1284. "email": "schmittjoh@gmail.com"
  1285. }
  1286. ],
  1287. "description": "Docblock Annotations Parser",
  1288. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1289. "keywords": [
  1290. "annotations",
  1291. "docblock",
  1292. "parser"
  1293. ],
  1294. "support": {
  1295. "issues": "https://github.com/doctrine/annotations/issues",
  1296. "source": "https://github.com/doctrine/annotations/tree/1.11.1"
  1297. },
  1298. "time": "2020-10-26T10:28:16+00:00"
  1299. },
  1300. {
  1301. "name": "doctrine/cache",
  1302. "version": "1.13.0",
  1303. "source": {
  1304. "type": "git",
  1305. "url": "https://github.com/doctrine/cache.git",
  1306. "reference": "56cd022adb5514472cb144c087393c1821911d09"
  1307. },
  1308. "dist": {
  1309. "type": "zip",
  1310. "url": "https://api.github.com/repos/doctrine/cache/zipball/56cd022adb5514472cb144c087393c1821911d09",
  1311. "reference": "56cd022adb5514472cb144c087393c1821911d09",
  1312. "shasum": ""
  1313. },
  1314. "require": {
  1315. "php": "~7.1 || ^8.0"
  1316. },
  1317. "conflict": {
  1318. "doctrine/common": ">2.2,<2.4"
  1319. },
  1320. "require-dev": {
  1321. "alcaeus/mongo-php-adapter": "^1.1",
  1322. "cache/integration-tests": "dev-master",
  1323. "doctrine/coding-standard": "^9",
  1324. "mongodb/mongodb": "^1.1",
  1325. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1326. "predis/predis": "~1.0",
  1327. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  1328. "symfony/cache": "^4.4 || ^5.4 || ^6",
  1329. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  1330. },
  1331. "suggest": {
  1332. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  1333. },
  1334. "type": "library",
  1335. "autoload": {
  1336. "psr-4": {
  1337. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1338. }
  1339. },
  1340. "notification-url": "https://packagist.org/downloads/",
  1341. "license": [
  1342. "MIT"
  1343. ],
  1344. "authors": [
  1345. {
  1346. "name": "Guilherme Blanco",
  1347. "email": "guilhermeblanco@gmail.com"
  1348. },
  1349. {
  1350. "name": "Roman Borschel",
  1351. "email": "roman@code-factory.org"
  1352. },
  1353. {
  1354. "name": "Benjamin Eberlei",
  1355. "email": "kontakt@beberlei.de"
  1356. },
  1357. {
  1358. "name": "Jonathan Wage",
  1359. "email": "jonwage@gmail.com"
  1360. },
  1361. {
  1362. "name": "Johannes Schmitt",
  1363. "email": "schmittjoh@gmail.com"
  1364. }
  1365. ],
  1366. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  1367. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  1368. "keywords": [
  1369. "abstraction",
  1370. "apcu",
  1371. "cache",
  1372. "caching",
  1373. "couchdb",
  1374. "memcached",
  1375. "php",
  1376. "redis",
  1377. "xcache"
  1378. ],
  1379. "support": {
  1380. "issues": "https://github.com/doctrine/cache/issues",
  1381. "source": "https://github.com/doctrine/cache/tree/1.13.0"
  1382. },
  1383. "funding": [
  1384. {
  1385. "url": "https://www.doctrine-project.org/sponsorship.html",
  1386. "type": "custom"
  1387. },
  1388. {
  1389. "url": "https://www.patreon.com/phpdoctrine",
  1390. "type": "patreon"
  1391. },
  1392. {
  1393. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  1394. "type": "tidelift"
  1395. }
  1396. ],
  1397. "time": "2022-05-20T20:06:54+00:00"
  1398. },
  1399. {
  1400. "name": "doctrine/collections",
  1401. "version": "1.8.0",
  1402. "source": {
  1403. "type": "git",
  1404. "url": "https://github.com/doctrine/collections.git",
  1405. "reference": "2b44dd4cbca8b5744327de78bafef5945c7e7b5e"
  1406. },
  1407. "dist": {
  1408. "type": "zip",
  1409. "url": "https://api.github.com/repos/doctrine/collections/zipball/2b44dd4cbca8b5744327de78bafef5945c7e7b5e",
  1410. "reference": "2b44dd4cbca8b5744327de78bafef5945c7e7b5e",
  1411. "shasum": ""
  1412. },
  1413. "require": {
  1414. "doctrine/deprecations": "^0.5.3 || ^1",
  1415. "php": "^7.1.3 || ^8.0"
  1416. },
  1417. "require-dev": {
  1418. "doctrine/coding-standard": "^9.0 || ^10.0",
  1419. "phpstan/phpstan": "^1.4.8",
  1420. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.1.5",
  1421. "vimeo/psalm": "^4.22"
  1422. },
  1423. "type": "library",
  1424. "autoload": {
  1425. "psr-4": {
  1426. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  1427. }
  1428. },
  1429. "notification-url": "https://packagist.org/downloads/",
  1430. "license": [
  1431. "MIT"
  1432. ],
  1433. "authors": [
  1434. {
  1435. "name": "Guilherme Blanco",
  1436. "email": "guilhermeblanco@gmail.com"
  1437. },
  1438. {
  1439. "name": "Roman Borschel",
  1440. "email": "roman@code-factory.org"
  1441. },
  1442. {
  1443. "name": "Benjamin Eberlei",
  1444. "email": "kontakt@beberlei.de"
  1445. },
  1446. {
  1447. "name": "Jonathan Wage",
  1448. "email": "jonwage@gmail.com"
  1449. },
  1450. {
  1451. "name": "Johannes Schmitt",
  1452. "email": "schmittjoh@gmail.com"
  1453. }
  1454. ],
  1455. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  1456. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  1457. "keywords": [
  1458. "array",
  1459. "collections",
  1460. "iterators",
  1461. "php"
  1462. ],
  1463. "support": {
  1464. "issues": "https://github.com/doctrine/collections/issues",
  1465. "source": "https://github.com/doctrine/collections/tree/1.8.0"
  1466. },
  1467. "time": "2022-09-01T20:12:10+00:00"
  1468. },
  1469. {
  1470. "name": "doctrine/common",
  1471. "version": "2.13.3",
  1472. "source": {
  1473. "type": "git",
  1474. "url": "https://github.com/doctrine/common.git",
  1475. "reference": "f3812c026e557892c34ef37f6ab808a6b567da7f"
  1476. },
  1477. "dist": {
  1478. "type": "zip",
  1479. "url": "https://api.github.com/repos/doctrine/common/zipball/f3812c026e557892c34ef37f6ab808a6b567da7f",
  1480. "reference": "f3812c026e557892c34ef37f6ab808a6b567da7f",
  1481. "shasum": ""
  1482. },
  1483. "require": {
  1484. "doctrine/annotations": "^1.0",
  1485. "doctrine/cache": "^1.0",
  1486. "doctrine/collections": "^1.0",
  1487. "doctrine/event-manager": "^1.0",
  1488. "doctrine/inflector": "^1.0",
  1489. "doctrine/lexer": "^1.0",
  1490. "doctrine/persistence": "^1.3.3",
  1491. "doctrine/reflection": "^1.0",
  1492. "php": "^7.1 || ^8.0"
  1493. },
  1494. "require-dev": {
  1495. "doctrine/coding-standard": "^1.0",
  1496. "phpstan/phpstan": "^0.11",
  1497. "phpstan/phpstan-phpunit": "^0.11",
  1498. "phpunit/phpunit": "^7.0",
  1499. "squizlabs/php_codesniffer": "^3.0",
  1500. "symfony/phpunit-bridge": "^4.0.5"
  1501. },
  1502. "type": "library",
  1503. "extra": {
  1504. "branch-alias": {
  1505. "dev-master": "2.11.x-dev"
  1506. }
  1507. },
  1508. "autoload": {
  1509. "psr-4": {
  1510. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1511. }
  1512. },
  1513. "notification-url": "https://packagist.org/downloads/",
  1514. "license": [
  1515. "MIT"
  1516. ],
  1517. "authors": [
  1518. {
  1519. "name": "Guilherme Blanco",
  1520. "email": "guilhermeblanco@gmail.com"
  1521. },
  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": "Jonathan Wage",
  1532. "email": "jonwage@gmail.com"
  1533. },
  1534. {
  1535. "name": "Johannes Schmitt",
  1536. "email": "schmittjoh@gmail.com"
  1537. },
  1538. {
  1539. "name": "Marco Pivetta",
  1540. "email": "ocramius@gmail.com"
  1541. }
  1542. ],
  1543. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, persistence interfaces, proxies, event system and much more.",
  1544. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1545. "keywords": [
  1546. "common",
  1547. "doctrine",
  1548. "php"
  1549. ],
  1550. "support": {
  1551. "issues": "https://github.com/doctrine/common/issues",
  1552. "source": "https://github.com/doctrine/common/tree/2.13.x"
  1553. },
  1554. "funding": [
  1555. {
  1556. "url": "https://www.doctrine-project.org/sponsorship.html",
  1557. "type": "custom"
  1558. },
  1559. {
  1560. "url": "https://www.patreon.com/phpdoctrine",
  1561. "type": "patreon"
  1562. },
  1563. {
  1564. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1565. "type": "tidelift"
  1566. }
  1567. ],
  1568. "time": "2020-06-05T16:46:05+00:00"
  1569. },
  1570. {
  1571. "name": "doctrine/deprecations",
  1572. "version": "1.1.3",
  1573. "source": {
  1574. "type": "git",
  1575. "url": "https://github.com/doctrine/deprecations.git",
  1576. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  1577. },
  1578. "dist": {
  1579. "type": "zip",
  1580. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  1581. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  1582. "shasum": ""
  1583. },
  1584. "require": {
  1585. "php": "^7.1 || ^8.0"
  1586. },
  1587. "require-dev": {
  1588. "doctrine/coding-standard": "^9",
  1589. "phpstan/phpstan": "1.4.10 || 1.10.15",
  1590. "phpstan/phpstan-phpunit": "^1.0",
  1591. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1592. "psalm/plugin-phpunit": "0.18.4",
  1593. "psr/log": "^1 || ^2 || ^3",
  1594. "vimeo/psalm": "4.30.0 || 5.12.0"
  1595. },
  1596. "suggest": {
  1597. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1598. },
  1599. "type": "library",
  1600. "autoload": {
  1601. "psr-4": {
  1602. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1603. }
  1604. },
  1605. "notification-url": "https://packagist.org/downloads/",
  1606. "license": [
  1607. "MIT"
  1608. ],
  1609. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  1610. "homepage": "https://www.doctrine-project.org/",
  1611. "support": {
  1612. "issues": "https://github.com/doctrine/deprecations/issues",
  1613. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  1614. },
  1615. "time": "2024-01-30T19:34:25+00:00"
  1616. },
  1617. {
  1618. "name": "doctrine/event-manager",
  1619. "version": "1.2.0",
  1620. "source": {
  1621. "type": "git",
  1622. "url": "https://github.com/doctrine/event-manager.git",
  1623. "reference": "95aa4cb529f1e96576f3fda9f5705ada4056a520"
  1624. },
  1625. "dist": {
  1626. "type": "zip",
  1627. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/95aa4cb529f1e96576f3fda9f5705ada4056a520",
  1628. "reference": "95aa4cb529f1e96576f3fda9f5705ada4056a520",
  1629. "shasum": ""
  1630. },
  1631. "require": {
  1632. "doctrine/deprecations": "^0.5.3 || ^1",
  1633. "php": "^7.1 || ^8.0"
  1634. },
  1635. "conflict": {
  1636. "doctrine/common": "<2.9"
  1637. },
  1638. "require-dev": {
  1639. "doctrine/coding-standard": "^9 || ^10",
  1640. "phpstan/phpstan": "~1.4.10 || ^1.8.8",
  1641. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1642. "vimeo/psalm": "^4.24"
  1643. },
  1644. "type": "library",
  1645. "autoload": {
  1646. "psr-4": {
  1647. "Doctrine\\Common\\": "src"
  1648. }
  1649. },
  1650. "notification-url": "https://packagist.org/downloads/",
  1651. "license": [
  1652. "MIT"
  1653. ],
  1654. "authors": [
  1655. {
  1656. "name": "Guilherme Blanco",
  1657. "email": "guilhermeblanco@gmail.com"
  1658. },
  1659. {
  1660. "name": "Roman Borschel",
  1661. "email": "roman@code-factory.org"
  1662. },
  1663. {
  1664. "name": "Benjamin Eberlei",
  1665. "email": "kontakt@beberlei.de"
  1666. },
  1667. {
  1668. "name": "Jonathan Wage",
  1669. "email": "jonwage@gmail.com"
  1670. },
  1671. {
  1672. "name": "Johannes Schmitt",
  1673. "email": "schmittjoh@gmail.com"
  1674. },
  1675. {
  1676. "name": "Marco Pivetta",
  1677. "email": "ocramius@gmail.com"
  1678. }
  1679. ],
  1680. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1681. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1682. "keywords": [
  1683. "event",
  1684. "event dispatcher",
  1685. "event manager",
  1686. "event system",
  1687. "events"
  1688. ],
  1689. "support": {
  1690. "issues": "https://github.com/doctrine/event-manager/issues",
  1691. "source": "https://github.com/doctrine/event-manager/tree/1.2.0"
  1692. },
  1693. "funding": [
  1694. {
  1695. "url": "https://www.doctrine-project.org/sponsorship.html",
  1696. "type": "custom"
  1697. },
  1698. {
  1699. "url": "https://www.patreon.com/phpdoctrine",
  1700. "type": "patreon"
  1701. },
  1702. {
  1703. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1704. "type": "tidelift"
  1705. }
  1706. ],
  1707. "time": "2022-10-12T20:51:15+00:00"
  1708. },
  1709. {
  1710. "name": "doctrine/inflector",
  1711. "version": "1.4.4",
  1712. "source": {
  1713. "type": "git",
  1714. "url": "https://github.com/doctrine/inflector.git",
  1715. "reference": "4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9"
  1716. },
  1717. "dist": {
  1718. "type": "zip",
  1719. "url": "https://api.github.com/repos/doctrine/inflector/zipball/4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9",
  1720. "reference": "4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9",
  1721. "shasum": ""
  1722. },
  1723. "require": {
  1724. "php": "^7.1 || ^8.0"
  1725. },
  1726. "require-dev": {
  1727. "doctrine/coding-standard": "^8.0",
  1728. "phpstan/phpstan": "^0.12",
  1729. "phpstan/phpstan-phpunit": "^0.12",
  1730. "phpstan/phpstan-strict-rules": "^0.12",
  1731. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  1732. },
  1733. "type": "library",
  1734. "extra": {
  1735. "branch-alias": {
  1736. "dev-master": "2.0.x-dev"
  1737. }
  1738. },
  1739. "autoload": {
  1740. "psr-4": {
  1741. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector",
  1742. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1743. }
  1744. },
  1745. "notification-url": "https://packagist.org/downloads/",
  1746. "license": [
  1747. "MIT"
  1748. ],
  1749. "authors": [
  1750. {
  1751. "name": "Guilherme Blanco",
  1752. "email": "guilhermeblanco@gmail.com"
  1753. },
  1754. {
  1755. "name": "Roman Borschel",
  1756. "email": "roman@code-factory.org"
  1757. },
  1758. {
  1759. "name": "Benjamin Eberlei",
  1760. "email": "kontakt@beberlei.de"
  1761. },
  1762. {
  1763. "name": "Jonathan Wage",
  1764. "email": "jonwage@gmail.com"
  1765. },
  1766. {
  1767. "name": "Johannes Schmitt",
  1768. "email": "schmittjoh@gmail.com"
  1769. }
  1770. ],
  1771. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1772. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1773. "keywords": [
  1774. "inflection",
  1775. "inflector",
  1776. "lowercase",
  1777. "manipulation",
  1778. "php",
  1779. "plural",
  1780. "singular",
  1781. "strings",
  1782. "uppercase",
  1783. "words"
  1784. ],
  1785. "support": {
  1786. "issues": "https://github.com/doctrine/inflector/issues",
  1787. "source": "https://github.com/doctrine/inflector/tree/1.4.4"
  1788. },
  1789. "funding": [
  1790. {
  1791. "url": "https://www.doctrine-project.org/sponsorship.html",
  1792. "type": "custom"
  1793. },
  1794. {
  1795. "url": "https://www.patreon.com/phpdoctrine",
  1796. "type": "patreon"
  1797. },
  1798. {
  1799. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1800. "type": "tidelift"
  1801. }
  1802. ],
  1803. "time": "2021-04-16T17:34:40+00:00"
  1804. },
  1805. {
  1806. "name": "doctrine/lexer",
  1807. "version": "1.2.1",
  1808. "source": {
  1809. "type": "git",
  1810. "url": "https://github.com/doctrine/lexer.git",
  1811. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  1812. },
  1813. "dist": {
  1814. "type": "zip",
  1815. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  1816. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  1817. "shasum": ""
  1818. },
  1819. "require": {
  1820. "php": "^7.2 || ^8.0"
  1821. },
  1822. "require-dev": {
  1823. "doctrine/coding-standard": "^6.0",
  1824. "phpstan/phpstan": "^0.11.8",
  1825. "phpunit/phpunit": "^8.2"
  1826. },
  1827. "type": "library",
  1828. "extra": {
  1829. "branch-alias": {
  1830. "dev-master": "1.2.x-dev"
  1831. }
  1832. },
  1833. "autoload": {
  1834. "psr-4": {
  1835. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1836. }
  1837. },
  1838. "notification-url": "https://packagist.org/downloads/",
  1839. "license": [
  1840. "MIT"
  1841. ],
  1842. "authors": [
  1843. {
  1844. "name": "Guilherme Blanco",
  1845. "email": "guilhermeblanco@gmail.com"
  1846. },
  1847. {
  1848. "name": "Roman Borschel",
  1849. "email": "roman@code-factory.org"
  1850. },
  1851. {
  1852. "name": "Johannes Schmitt",
  1853. "email": "schmittjoh@gmail.com"
  1854. }
  1855. ],
  1856. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1857. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1858. "keywords": [
  1859. "annotations",
  1860. "docblock",
  1861. "lexer",
  1862. "parser",
  1863. "php"
  1864. ],
  1865. "support": {
  1866. "issues": "https://github.com/doctrine/lexer/issues",
  1867. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  1868. },
  1869. "funding": [
  1870. {
  1871. "url": "https://www.doctrine-project.org/sponsorship.html",
  1872. "type": "custom"
  1873. },
  1874. {
  1875. "url": "https://www.patreon.com/phpdoctrine",
  1876. "type": "patreon"
  1877. },
  1878. {
  1879. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1880. "type": "tidelift"
  1881. }
  1882. ],
  1883. "time": "2020-05-25T17:44:05+00:00"
  1884. },
  1885. {
  1886. "name": "doctrine/persistence",
  1887. "version": "1.3.8",
  1888. "source": {
  1889. "type": "git",
  1890. "url": "https://github.com/doctrine/persistence.git",
  1891. "reference": "7a6eac9fb6f61bba91328f15aa7547f4806ca288"
  1892. },
  1893. "dist": {
  1894. "type": "zip",
  1895. "url": "https://api.github.com/repos/doctrine/persistence/zipball/7a6eac9fb6f61bba91328f15aa7547f4806ca288",
  1896. "reference": "7a6eac9fb6f61bba91328f15aa7547f4806ca288",
  1897. "shasum": ""
  1898. },
  1899. "require": {
  1900. "doctrine/annotations": "^1.0",
  1901. "doctrine/cache": "^1.0",
  1902. "doctrine/collections": "^1.0",
  1903. "doctrine/event-manager": "^1.0",
  1904. "doctrine/reflection": "^1.2",
  1905. "php": "^7.1 || ^8.0"
  1906. },
  1907. "conflict": {
  1908. "doctrine/common": "<2.10@dev"
  1909. },
  1910. "require-dev": {
  1911. "doctrine/coding-standard": "^6.0",
  1912. "phpstan/phpstan": "^0.11",
  1913. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1914. "vimeo/psalm": "^3.11"
  1915. },
  1916. "type": "library",
  1917. "extra": {
  1918. "branch-alias": {
  1919. "dev-master": "1.3.x-dev"
  1920. }
  1921. },
  1922. "autoload": {
  1923. "psr-4": {
  1924. "Doctrine\\Common\\": "lib/Doctrine/Common",
  1925. "Doctrine\\Persistence\\": "lib/Doctrine/Persistence"
  1926. }
  1927. },
  1928. "notification-url": "https://packagist.org/downloads/",
  1929. "license": [
  1930. "MIT"
  1931. ],
  1932. "authors": [
  1933. {
  1934. "name": "Guilherme Blanco",
  1935. "email": "guilhermeblanco@gmail.com"
  1936. },
  1937. {
  1938. "name": "Roman Borschel",
  1939. "email": "roman@code-factory.org"
  1940. },
  1941. {
  1942. "name": "Benjamin Eberlei",
  1943. "email": "kontakt@beberlei.de"
  1944. },
  1945. {
  1946. "name": "Jonathan Wage",
  1947. "email": "jonwage@gmail.com"
  1948. },
  1949. {
  1950. "name": "Johannes Schmitt",
  1951. "email": "schmittjoh@gmail.com"
  1952. },
  1953. {
  1954. "name": "Marco Pivetta",
  1955. "email": "ocramius@gmail.com"
  1956. }
  1957. ],
  1958. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1959. "homepage": "https://doctrine-project.org/projects/persistence.html",
  1960. "keywords": [
  1961. "mapper",
  1962. "object",
  1963. "odm",
  1964. "orm",
  1965. "persistence"
  1966. ],
  1967. "support": {
  1968. "issues": "https://github.com/doctrine/persistence/issues",
  1969. "source": "https://github.com/doctrine/persistence/tree/1.3.x"
  1970. },
  1971. "funding": [
  1972. {
  1973. "url": "https://www.doctrine-project.org/sponsorship.html",
  1974. "type": "custom"
  1975. },
  1976. {
  1977. "url": "https://www.patreon.com/phpdoctrine",
  1978. "type": "patreon"
  1979. },
  1980. {
  1981. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1982. "type": "tidelift"
  1983. }
  1984. ],
  1985. "time": "2020-06-20T12:56:16+00:00"
  1986. },
  1987. {
  1988. "name": "doctrine/reflection",
  1989. "version": "1.2.2",
  1990. "source": {
  1991. "type": "git",
  1992. "url": "https://github.com/doctrine/reflection.git",
  1993. "reference": "fa587178be682efe90d005e3a322590d6ebb59a5"
  1994. },
  1995. "dist": {
  1996. "type": "zip",
  1997. "url": "https://api.github.com/repos/doctrine/reflection/zipball/fa587178be682efe90d005e3a322590d6ebb59a5",
  1998. "reference": "fa587178be682efe90d005e3a322590d6ebb59a5",
  1999. "shasum": ""
  2000. },
  2001. "require": {
  2002. "doctrine/annotations": "^1.0",
  2003. "ext-tokenizer": "*",
  2004. "php": "^7.1 || ^8.0"
  2005. },
  2006. "conflict": {
  2007. "doctrine/common": "<2.9"
  2008. },
  2009. "require-dev": {
  2010. "doctrine/coding-standard": "^6.0 || ^8.2.0",
  2011. "doctrine/common": "^2.10",
  2012. "phpstan/phpstan": "^0.11.0 || ^0.12.20",
  2013. "phpstan/phpstan-phpunit": "^0.11.0 || ^0.12.16",
  2014. "phpunit/phpunit": "^7.5 || ^9.1.5"
  2015. },
  2016. "type": "library",
  2017. "extra": {
  2018. "branch-alias": {
  2019. "dev-master": "1.2.x-dev"
  2020. }
  2021. },
  2022. "autoload": {
  2023. "psr-4": {
  2024. "Doctrine\\Common\\": "lib/Doctrine/Common"
  2025. }
  2026. },
  2027. "notification-url": "https://packagist.org/downloads/",
  2028. "license": [
  2029. "MIT"
  2030. ],
  2031. "authors": [
  2032. {
  2033. "name": "Guilherme Blanco",
  2034. "email": "guilhermeblanco@gmail.com"
  2035. },
  2036. {
  2037. "name": "Roman Borschel",
  2038. "email": "roman@code-factory.org"
  2039. },
  2040. {
  2041. "name": "Benjamin Eberlei",
  2042. "email": "kontakt@beberlei.de"
  2043. },
  2044. {
  2045. "name": "Jonathan Wage",
  2046. "email": "jonwage@gmail.com"
  2047. },
  2048. {
  2049. "name": "Johannes Schmitt",
  2050. "email": "schmittjoh@gmail.com"
  2051. },
  2052. {
  2053. "name": "Marco Pivetta",
  2054. "email": "ocramius@gmail.com"
  2055. }
  2056. ],
  2057. "description": "The Doctrine Reflection project is a simple library used by the various Doctrine projects which adds some additional functionality on top of the reflection functionality that comes with PHP. It allows you to get the reflection information about classes, methods and properties statically.",
  2058. "homepage": "https://www.doctrine-project.org/projects/reflection.html",
  2059. "keywords": [
  2060. "reflection",
  2061. "static"
  2062. ],
  2063. "support": {
  2064. "issues": "https://github.com/doctrine/reflection/issues",
  2065. "source": "https://github.com/doctrine/reflection/tree/1.2.2"
  2066. },
  2067. "abandoned": "roave/better-reflection",
  2068. "time": "2020-10-27T21:46:55+00:00"
  2069. },
  2070. {
  2071. "name": "drupal/addtoany",
  2072. "version": "1.22.0",
  2073. "source": {
  2074. "type": "git",
  2075. "url": "https://git.drupalcode.org/project/addtoany.git",
  2076. "reference": "8.x-1.22"
  2077. },
  2078. "dist": {
  2079. "type": "zip",
  2080. "url": "https://ftp.drupal.org/files/projects/addtoany-8.x-1.22.zip",
  2081. "reference": "8.x-1.22",
  2082. "shasum": "350bfc33c163d11d137005cb56e6a1f0eaa35f04"
  2083. },
  2084. "require": {
  2085. "drupal/core": "^8 || ^9"
  2086. },
  2087. "type": "drupal-module",
  2088. "extra": {
  2089. "drupal": {
  2090. "version": "8.x-1.22",
  2091. "datestamp": "1698826527",
  2092. "security-coverage": {
  2093. "status": "covered",
  2094. "message": "Covered by Drupal's security advisory policy"
  2095. }
  2096. }
  2097. },
  2098. "notification-url": "https://packages.drupal.org/8/downloads",
  2099. "license": [
  2100. "GPL-2.0-or-later"
  2101. ],
  2102. "authors": [
  2103. {
  2104. "name": "AddToAny",
  2105. "homepage": "https://www.drupal.org/user/2640913"
  2106. },
  2107. {
  2108. "name": "micropat",
  2109. "homepage": "https://www.drupal.org/user/260224"
  2110. }
  2111. ],
  2112. "description": "Share buttons for Drupal including the AddToAny universal share button, Facebook, Mastodon, Pinterest, WhatsApp and many more.",
  2113. "homepage": "https://www.drupal.org/project/addtoany",
  2114. "keywords": [
  2115. "Drupal"
  2116. ],
  2117. "support": {
  2118. "source": "https://git.drupalcode.org/project/addtoany",
  2119. "issues": "https://www.drupal.org/project/issues/addtoany"
  2120. }
  2121. },
  2122. {
  2123. "name": "drupal/admin_toolbar",
  2124. "version": "2.5.0",
  2125. "source": {
  2126. "type": "git",
  2127. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  2128. "reference": "8.x-2.5"
  2129. },
  2130. "dist": {
  2131. "type": "zip",
  2132. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.5.zip",
  2133. "reference": "8.x-2.5",
  2134. "shasum": "c71e58051b8d6818272df96d14cb11407d5e5ceb"
  2135. },
  2136. "require": {
  2137. "drupal/core": "^8.8.0 || ^9.0"
  2138. },
  2139. "type": "drupal-module",
  2140. "extra": {
  2141. "drupal": {
  2142. "version": "8.x-2.5",
  2143. "datestamp": "1629907119",
  2144. "security-coverage": {
  2145. "status": "covered",
  2146. "message": "Covered by Drupal's security advisory policy"
  2147. }
  2148. }
  2149. },
  2150. "notification-url": "https://packages.drupal.org/8/downloads",
  2151. "license": [
  2152. "GPL-2.0-or-later"
  2153. ],
  2154. "authors": [
  2155. {
  2156. "name": "Wilfrid Roze (eme)",
  2157. "homepage": "https://www.drupal.org/u/eme",
  2158. "role": "Maintainer"
  2159. },
  2160. {
  2161. "name": "Romain Jarraud (romainj)",
  2162. "homepage": "https://www.drupal.org/u/romainj",
  2163. "role": "Maintainer"
  2164. },
  2165. {
  2166. "name": "Adrian Cid Almaguer (adriancid)",
  2167. "homepage": "https://www.drupal.org/u/adriancid",
  2168. "email": "adriancid@gmail.com",
  2169. "role": "Maintainer"
  2170. },
  2171. {
  2172. "name": "Mohamed Anis Taktak (matio89)",
  2173. "homepage": "https://www.drupal.org/u/matio89",
  2174. "role": "Maintainer"
  2175. },
  2176. {
  2177. "name": "japerry",
  2178. "homepage": "https://www.drupal.org/user/45640"
  2179. },
  2180. {
  2181. "name": "matio89",
  2182. "homepage": "https://www.drupal.org/user/2320090"
  2183. },
  2184. {
  2185. "name": "musa.thomas",
  2186. "homepage": "https://www.drupal.org/user/1213824"
  2187. },
  2188. {
  2189. "name": "romainj",
  2190. "homepage": "https://www.drupal.org/user/370706"
  2191. }
  2192. ],
  2193. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  2194. "homepage": "http://drupal.org/project/admin_toolbar",
  2195. "keywords": [
  2196. "Drupal",
  2197. "Toolbar"
  2198. ],
  2199. "support": {
  2200. "source": "https://git.drupalcode.org/project/admin_toolbar",
  2201. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  2202. }
  2203. },
  2204. {
  2205. "name": "drupal/adminimal_theme",
  2206. "version": "1.6.0",
  2207. "source": {
  2208. "type": "git",
  2209. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  2210. "reference": "8.x-1.6"
  2211. },
  2212. "dist": {
  2213. "type": "zip",
  2214. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.6.zip",
  2215. "reference": "8.x-1.6",
  2216. "shasum": "89132d0853388afe8dfd11fb83c69a48d8c13413"
  2217. },
  2218. "require": {
  2219. "drupal/core": "^8.8 || ^9"
  2220. },
  2221. "type": "drupal-theme",
  2222. "extra": {
  2223. "drupal": {
  2224. "version": "8.x-1.6",
  2225. "datestamp": "1602006937",
  2226. "security-coverage": {
  2227. "status": "covered",
  2228. "message": "Covered by Drupal's security advisory policy"
  2229. }
  2230. }
  2231. },
  2232. "notification-url": "https://packages.drupal.org/8/downloads",
  2233. "license": [
  2234. "GPL-2.0+"
  2235. ],
  2236. "authors": [
  2237. {
  2238. "name": "ANDiTKO",
  2239. "homepage": "https://www.drupal.org/user/1428124"
  2240. },
  2241. {
  2242. "name": "andrey.troeglazov",
  2243. "homepage": "https://www.drupal.org/user/3145389"
  2244. },
  2245. {
  2246. "name": "realityloop",
  2247. "homepage": "https://www.drupal.org/user/139189"
  2248. },
  2249. {
  2250. "name": "rjjakes",
  2251. "homepage": "https://www.drupal.org/user/3457245"
  2252. }
  2253. ],
  2254. "description": "Drupal administration theme with modern minimalist design.",
  2255. "homepage": "https://www.drupal.org/project/adminimal_theme",
  2256. "support": {
  2257. "source": "https://git.drupalcode.org/project/adminimal_theme",
  2258. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  2259. }
  2260. },
  2261. {
  2262. "name": "drupal/audiofield",
  2263. "version": "1.13.0",
  2264. "source": {
  2265. "type": "git",
  2266. "url": "https://git.drupalcode.org/project/audiofield.git",
  2267. "reference": "8.x-1.13"
  2268. },
  2269. "dist": {
  2270. "type": "zip",
  2271. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  2272. "reference": "8.x-1.13",
  2273. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  2274. },
  2275. "require": {
  2276. "drupal/core": "^8 || ^9 || ^10"
  2277. },
  2278. "type": "drupal-module",
  2279. "extra": {
  2280. "drupal": {
  2281. "version": "8.x-1.13",
  2282. "datestamp": "1681143245",
  2283. "security-coverage": {
  2284. "status": "covered",
  2285. "message": "Covered by Drupal's security advisory policy"
  2286. }
  2287. },
  2288. "drush": {
  2289. "services": {
  2290. "drush.services.yml": "^9"
  2291. }
  2292. }
  2293. },
  2294. "notification-url": "https://packages.drupal.org/8/downloads",
  2295. "license": [
  2296. "GPL-2.0-or-later"
  2297. ],
  2298. "authors": [
  2299. {
  2300. "name": "Daniel Moberly",
  2301. "homepage": "https://www.drupal.org/u/danielmoberly",
  2302. "role": "Maintainer"
  2303. },
  2304. {
  2305. "name": "tamerzg",
  2306. "homepage": "https://www.drupal.org/user/464564"
  2307. }
  2308. ],
  2309. "description": "AudioField Module",
  2310. "homepage": "https://www.drupal.org/project/audiofield",
  2311. "support": {
  2312. "source": "https://git.drupalcode.org/project/audiofield",
  2313. "issues": "https://www.drupal.org/project/issues/audiofield"
  2314. }
  2315. },
  2316. {
  2317. "name": "drupal/autologout",
  2318. "version": "1.3.0",
  2319. "source": {
  2320. "type": "git",
  2321. "url": "https://git.drupalcode.org/project/autologout.git",
  2322. "reference": "8.x-1.3"
  2323. },
  2324. "dist": {
  2325. "type": "zip",
  2326. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.3.zip",
  2327. "reference": "8.x-1.3",
  2328. "shasum": "87733b2042d9dcdee0d8f33d206872208a8c97ea"
  2329. },
  2330. "require": {
  2331. "drupal/core": "^8 || ^9"
  2332. },
  2333. "type": "drupal-module",
  2334. "extra": {
  2335. "drupal": {
  2336. "version": "8.x-1.3",
  2337. "datestamp": "1587193798",
  2338. "security-coverage": {
  2339. "status": "covered",
  2340. "message": "Covered by Drupal's security advisory policy"
  2341. }
  2342. }
  2343. },
  2344. "notification-url": "https://packages.drupal.org/8/downloads",
  2345. "license": [
  2346. "GPL-2.0+"
  2347. ],
  2348. "authors": [
  2349. {
  2350. "name": "ajits",
  2351. "homepage": "https://www.drupal.org/user/981944"
  2352. },
  2353. {
  2354. "name": "AjK",
  2355. "homepage": "https://www.drupal.org/user/39030"
  2356. },
  2357. {
  2358. "name": "boshtian",
  2359. "homepage": "https://www.drupal.org/user/1773456"
  2360. },
  2361. {
  2362. "name": "dandrews",
  2363. "homepage": "https://www.drupal.org/user/2014490"
  2364. },
  2365. {
  2366. "name": "darksnow",
  2367. "homepage": "https://www.drupal.org/user/391915"
  2368. },
  2369. {
  2370. "name": "japerry",
  2371. "homepage": "https://www.drupal.org/user/45640"
  2372. },
  2373. {
  2374. "name": "johnennew",
  2375. "homepage": "https://www.drupal.org/user/1150042"
  2376. },
  2377. {
  2378. "name": "jrglasgow",
  2379. "homepage": "https://www.drupal.org/user/36590"
  2380. },
  2381. {
  2382. "name": "kmasood",
  2383. "homepage": "https://www.drupal.org/user/1262860"
  2384. },
  2385. {
  2386. "name": "levelos",
  2387. "homepage": "https://www.drupal.org/user/54135"
  2388. },
  2389. {
  2390. "name": "prabeen.giri",
  2391. "homepage": "https://www.drupal.org/user/913078"
  2392. },
  2393. {
  2394. "name": "scott_earnest",
  2395. "homepage": "https://www.drupal.org/user/416158"
  2396. },
  2397. {
  2398. "name": "str8",
  2399. "homepage": "https://www.drupal.org/user/2865063"
  2400. }
  2401. ],
  2402. "description": "Adds automated timed logout.",
  2403. "homepage": "http://drupal.org/project/autologout",
  2404. "support": {
  2405. "source": "https://git.drupalcode.org/project/autologout"
  2406. }
  2407. },
  2408. {
  2409. "name": "drupal/basic",
  2410. "version": "2.1.0",
  2411. "source": {
  2412. "type": "git",
  2413. "url": "https://git.drupalcode.org/project/basic.git",
  2414. "reference": "8.x-2.1"
  2415. },
  2416. "dist": {
  2417. "type": "zip",
  2418. "url": "https://ftp.drupal.org/files/projects/basic-8.x-2.1.zip",
  2419. "reference": "8.x-2.1",
  2420. "shasum": "2497b30bd419e6f49a72a1f80ab40b47582df4f5"
  2421. },
  2422. "require": {
  2423. "drupal/core": "^8.8 || ^9"
  2424. },
  2425. "type": "drupal-theme",
  2426. "extra": {
  2427. "drupal": {
  2428. "version": "8.x-2.1",
  2429. "datestamp": "1612916291",
  2430. "security-coverage": {
  2431. "status": "covered",
  2432. "message": "Covered by Drupal's security advisory policy"
  2433. }
  2434. }
  2435. },
  2436. "notification-url": "https://packages.drupal.org/8/downloads",
  2437. "license": [
  2438. "GPL-2.0+"
  2439. ],
  2440. "authors": [
  2441. {
  2442. "name": "Steve Krueger",
  2443. "homepage": "http://thejibe.com",
  2444. "email": "steve@thejibe.com",
  2445. "role": "Maintainer"
  2446. },
  2447. {
  2448. "name": "Joël Pittet",
  2449. "homepage": "https://www.drupal.org/u/joelpittet",
  2450. "email": "joel@pittet.ca",
  2451. "role": "Maintainer"
  2452. },
  2453. {
  2454. "name": "Leah Wagner",
  2455. "homepage": "http://thejibe.com",
  2456. "email": "leah@thejibe.com",
  2457. "role": "Maintainer"
  2458. },
  2459. {
  2460. "name": "Catherine Winters",
  2461. "homepage": "http://www.catherinewinters.com",
  2462. "email": "catherine@catherinewinters.com",
  2463. "role": "Maintainer"
  2464. },
  2465. {
  2466. "name": "Johannes Schmidt",
  2467. "homepage": "http://2tabs.com",
  2468. "email": "mail@2tabs.com",
  2469. "role": "Maintainer"
  2470. },
  2471. {
  2472. "name": "Chuck Kosman",
  2473. "homepage": "http://thejibe.com",
  2474. "email": "chuck@thejibe.com",
  2475. "role": "Maintainer"
  2476. },
  2477. {
  2478. "name": "SteveK",
  2479. "homepage": "https://www.drupal.org/user/111656"
  2480. }
  2481. ],
  2482. "description": "HTML5, SASS, Responsive grid starter theme.",
  2483. "homepage": "http://drupal.org/project/basic",
  2484. "support": {
  2485. "source": "http://cgit.drupalcode.org/basic",
  2486. "issues": "https://www.drupal.org/project/issues/basic",
  2487. "irc": "irc://irc.freenode.org/drupal-contribute"
  2488. }
  2489. },
  2490. {
  2491. "name": "drupal/better_messages",
  2492. "version": "2.0.0-alpha2",
  2493. "source": {
  2494. "type": "git",
  2495. "url": "https://git.drupalcode.org/project/better_messages.git",
  2496. "reference": "2.0.0-alpha2"
  2497. },
  2498. "dist": {
  2499. "type": "zip",
  2500. "url": "https://ftp.drupal.org/files/projects/better_messages-2.0.0-alpha2.zip",
  2501. "reference": "2.0.0-alpha2",
  2502. "shasum": "e93618447a97e90d95b7242cc6398be4346b59b4"
  2503. },
  2504. "require": {
  2505. "drupal/core": "^8 || ^9"
  2506. },
  2507. "type": "drupal-module",
  2508. "extra": {
  2509. "drupal": {
  2510. "version": "2.0.0-alpha2",
  2511. "datestamp": "1644241962",
  2512. "security-coverage": {
  2513. "status": "not-covered",
  2514. "message": "Alpha releases are not covered by Drupal security advisories."
  2515. }
  2516. }
  2517. },
  2518. "notification-url": "https://packages.drupal.org/8/downloads",
  2519. "license": [
  2520. "GPL-2.0-or-later"
  2521. ],
  2522. "authors": [
  2523. {
  2524. "name": "bucefal91",
  2525. "homepage": "https://www.drupal.org/user/504128"
  2526. },
  2527. {
  2528. "name": "le72",
  2529. "homepage": "https://www.drupal.org/user/1866896"
  2530. },
  2531. {
  2532. "name": "mohammed j. razem",
  2533. "homepage": "https://www.drupal.org/user/255384"
  2534. },
  2535. {
  2536. "name": "usingsession",
  2537. "homepage": "https://www.drupal.org/user/3582050"
  2538. }
  2539. ],
  2540. "description": "This module adds simple functions to make Drupal messages look and act better.",
  2541. "homepage": "https://www.drupal.org/project/better_messages",
  2542. "support": {
  2543. "source": "https://git.drupalcode.org/project/better_messages"
  2544. }
  2545. },
  2546. {
  2547. "name": "drupal/bulkdelete",
  2548. "version": "dev-1.x",
  2549. "source": {
  2550. "type": "git",
  2551. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2552. "reference": "95a7ff49f152021be88ba562c247347ff36392c7"
  2553. },
  2554. "require": {
  2555. "drupal/core": "^8.7.7 || ^9 || ^10"
  2556. },
  2557. "type": "drupal-module",
  2558. "extra": {
  2559. "branch-alias": {
  2560. "dev-1.x": "1.x-dev"
  2561. },
  2562. "drupal": {
  2563. "version": "8.x-1.x-dev",
  2564. "datestamp": "1655322426",
  2565. "security-coverage": {
  2566. "status": "not-covered",
  2567. "message": "Dev releases are not covered by Drupal security advisories."
  2568. }
  2569. }
  2570. },
  2571. "notification-url": "https://packages.drupal.org/8/downloads",
  2572. "license": [
  2573. "GPL-2.0-or-later"
  2574. ],
  2575. "authors": [
  2576. {
  2577. "name": "Kars-T",
  2578. "homepage": "https://www.drupal.org/user/224499"
  2579. },
  2580. {
  2581. "name": "Rahul Seth",
  2582. "homepage": "https://www.drupal.org/user/2694359"
  2583. },
  2584. {
  2585. "name": "adriancid",
  2586. "homepage": "https://www.drupal.org/user/1962106"
  2587. },
  2588. {
  2589. "name": "robertDouglass",
  2590. "homepage": "https://www.drupal.org/user/5449"
  2591. }
  2592. ],
  2593. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2594. "homepage": "https://www.drupal.org/project/bulkdelete",
  2595. "support": {
  2596. "source": "https://git.drupalcode.org/project/bulkdelete"
  2597. }
  2598. },
  2599. {
  2600. "name": "drupal/color_field",
  2601. "version": "2.5.0",
  2602. "source": {
  2603. "type": "git",
  2604. "url": "https://git.drupalcode.org/project/color_field.git",
  2605. "reference": "8.x-2.5"
  2606. },
  2607. "dist": {
  2608. "type": "zip",
  2609. "url": "https://ftp.drupal.org/files/projects/color_field-8.x-2.5.zip",
  2610. "reference": "8.x-2.5",
  2611. "shasum": "9b0d299cb24d3cb21c7fb6a6a08d32ae5aed8652"
  2612. },
  2613. "require": {
  2614. "drupal/core": "^8 || ^9"
  2615. },
  2616. "require-dev": {
  2617. "drupal/core-recommended": "*",
  2618. "drupal/token": "~1.3"
  2619. },
  2620. "suggest": {
  2621. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  2622. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  2623. },
  2624. "type": "drupal-module",
  2625. "extra": {
  2626. "drupal": {
  2627. "version": "8.x-2.5",
  2628. "datestamp": "1632938098",
  2629. "security-coverage": {
  2630. "status": "covered",
  2631. "message": "Covered by Drupal's security advisory policy"
  2632. }
  2633. }
  2634. },
  2635. "notification-url": "https://packages.drupal.org/8/downloads",
  2636. "license": [
  2637. "GPL-2.0-or-later"
  2638. ],
  2639. "authors": [
  2640. {
  2641. "name": "targoo",
  2642. "homepage": "https://www.drupal.org/user/431910",
  2643. "role": "Maintainer"
  2644. },
  2645. {
  2646. "name": "Nick Wilde",
  2647. "homepage": "https://www.drupal.org/user/nickwilde",
  2648. "role": "Maintainer"
  2649. },
  2650. {
  2651. "name": "targoo",
  2652. "homepage": "https://www.drupal.org/user/431910"
  2653. }
  2654. ],
  2655. "description": "Provides a color field type to store the color value and opacity",
  2656. "homepage": "https://www.drupal.org/project/color_field",
  2657. "support": {
  2658. "source": "https://git.drupalcode.org/project/color_field",
  2659. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2660. }
  2661. },
  2662. {
  2663. "name": "drupal/config_devel",
  2664. "version": "1.8.0",
  2665. "source": {
  2666. "type": "git",
  2667. "url": "https://git.drupalcode.org/project/config_devel.git",
  2668. "reference": "8.x-1.8"
  2669. },
  2670. "dist": {
  2671. "type": "zip",
  2672. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.8.zip",
  2673. "reference": "8.x-1.8",
  2674. "shasum": "325caa6c6d0ee39e938807892f9ec509e71b5fb7"
  2675. },
  2676. "require": {
  2677. "drupal/core": "^8 || ^9"
  2678. },
  2679. "type": "drupal-module",
  2680. "extra": {
  2681. "drupal": {
  2682. "version": "8.x-1.8",
  2683. "datestamp": "1609324318",
  2684. "security-coverage": {
  2685. "status": "covered",
  2686. "message": "Covered by Drupal's security advisory policy"
  2687. }
  2688. }
  2689. },
  2690. "notification-url": "https://packages.drupal.org/8/downloads",
  2691. "license": [
  2692. "GPL-2.0+"
  2693. ],
  2694. "authors": [
  2695. {
  2696. "name": "alexpott",
  2697. "homepage": "https://www.drupal.org/user/157725"
  2698. },
  2699. {
  2700. "name": "benjy",
  2701. "homepage": "https://www.drupal.org/user/1852732"
  2702. },
  2703. {
  2704. "name": "chx",
  2705. "homepage": "https://www.drupal.org/user/9446"
  2706. },
  2707. {
  2708. "name": "joachim",
  2709. "homepage": "https://www.drupal.org/user/107701"
  2710. },
  2711. {
  2712. "name": "vijaycs85",
  2713. "homepage": "https://www.drupal.org/user/93488"
  2714. }
  2715. ],
  2716. "description": "Helps developers work with configuration.",
  2717. "homepage": "https://www.drupal.org/project/config_devel",
  2718. "support": {
  2719. "source": "https://git.drupalcode.org/project/config_devel"
  2720. }
  2721. },
  2722. {
  2723. "name": "drupal/config_filter",
  2724. "version": "1.12.0",
  2725. "source": {
  2726. "type": "git",
  2727. "url": "https://git.drupalcode.org/project/config_filter.git",
  2728. "reference": "8.x-1.12"
  2729. },
  2730. "dist": {
  2731. "type": "zip",
  2732. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.12.zip",
  2733. "reference": "8.x-1.12",
  2734. "shasum": "364581700ca3a298f62950ff37dd309d0bfb8381"
  2735. },
  2736. "require": {
  2737. "drupal/core": "^8.8 || ^9 || ^10"
  2738. },
  2739. "suggest": {
  2740. "drupal/config_split": "Split site configuration for different environments."
  2741. },
  2742. "type": "drupal-module",
  2743. "extra": {
  2744. "drupal": {
  2745. "version": "8.x-1.12",
  2746. "datestamp": "1698308496",
  2747. "security-coverage": {
  2748. "status": "covered",
  2749. "message": "Covered by Drupal's security advisory policy"
  2750. }
  2751. }
  2752. },
  2753. "notification-url": "https://packages.drupal.org/8/downloads",
  2754. "license": [
  2755. "GPL-2.0-or-later"
  2756. ],
  2757. "authors": [
  2758. {
  2759. "name": "Fabian Bircher",
  2760. "homepage": "https://www.drupal.org/u/bircher",
  2761. "email": "opensource@fabianbircher.com",
  2762. "role": "Maintainer"
  2763. },
  2764. {
  2765. "name": "Nuvole Web",
  2766. "homepage": "http://nuvole.org",
  2767. "email": "info@nuvole.org",
  2768. "role": "Maintainer"
  2769. },
  2770. {
  2771. "name": "pescetti",
  2772. "homepage": "https://www.drupal.org/user/436244"
  2773. }
  2774. ],
  2775. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2776. "homepage": "https://www.drupal.org/project/config_filter",
  2777. "keywords": [
  2778. "Drupal",
  2779. "configuration",
  2780. "configuration management"
  2781. ],
  2782. "support": {
  2783. "source": "https://git.drupalcode.org/project/config_filter",
  2784. "issues": "https://www.drupal.org/project/issues/config_filter",
  2785. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2786. }
  2787. },
  2788. {
  2789. "name": "drupal/config_ignore",
  2790. "version": "3.3.0",
  2791. "source": {
  2792. "type": "git",
  2793. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2794. "reference": "8.x-3.3"
  2795. },
  2796. "dist": {
  2797. "type": "zip",
  2798. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-3.3.zip",
  2799. "reference": "8.x-3.3",
  2800. "shasum": "4446811ecb023820a57c227d35c034e0d4363a70"
  2801. },
  2802. "require": {
  2803. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2804. },
  2805. "require-dev": {
  2806. "drupal/config_filter": "^1.8||^2.2",
  2807. "drush/drush": "^10 || ^11 || ^12"
  2808. },
  2809. "type": "drupal-module",
  2810. "extra": {
  2811. "drupal": {
  2812. "version": "8.x-3.3",
  2813. "datestamp": "1713299496",
  2814. "security-coverage": {
  2815. "status": "covered",
  2816. "message": "Covered by Drupal's security advisory policy"
  2817. }
  2818. }
  2819. },
  2820. "notification-url": "https://packages.drupal.org/8/downloads",
  2821. "license": [
  2822. "GPL-2.0-or-later"
  2823. ],
  2824. "authors": [
  2825. {
  2826. "name": "Tommy Lynge Jørgensen",
  2827. "homepage": "https://www.drupal.org/u/tlyngej",
  2828. "email": "tlyngej@gmail.com",
  2829. "role": "Maintainer"
  2830. },
  2831. {
  2832. "name": "Fabian Bircher",
  2833. "homepage": "https://www.drupal.org/u/bircher",
  2834. "role": "Maintainer"
  2835. },
  2836. {
  2837. "name": "tlyngej",
  2838. "homepage": "https://www.drupal.org/user/413139"
  2839. }
  2840. ],
  2841. "description": "Ignore certain configuration during import and export.",
  2842. "homepage": "http://drupal.org/project/config_ignore",
  2843. "support": {
  2844. "source": "https://git.drupalcode.org/project/config_ignore",
  2845. "issues": "http://drupal.org/project/config_ignore"
  2846. }
  2847. },
  2848. {
  2849. "name": "drupal/config_update",
  2850. "version": "1.7.0",
  2851. "source": {
  2852. "type": "git",
  2853. "url": "https://git.drupalcode.org/project/config_update.git",
  2854. "reference": "8.x-1.7"
  2855. },
  2856. "dist": {
  2857. "type": "zip",
  2858. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.7.zip",
  2859. "reference": "8.x-1.7",
  2860. "shasum": "8f079abf7c2ea826a27fa5224b0770a26404c968"
  2861. },
  2862. "require": {
  2863. "drupal/core": "^8 || ^9"
  2864. },
  2865. "type": "drupal-module",
  2866. "extra": {
  2867. "drupal": {
  2868. "version": "8.x-1.7",
  2869. "datestamp": "1586355587",
  2870. "security-coverage": {
  2871. "status": "covered",
  2872. "message": "Covered by Drupal's security advisory policy"
  2873. }
  2874. }
  2875. },
  2876. "notification-url": "https://packages.drupal.org/8/downloads",
  2877. "license": [
  2878. "GPL-2.0-or-later"
  2879. ],
  2880. "authors": [
  2881. {
  2882. "name": "codebymikey",
  2883. "homepage": "https://www.drupal.org/user/3573206"
  2884. },
  2885. {
  2886. "name": "pasqualle",
  2887. "homepage": "https://www.drupal.org/user/80733"
  2888. },
  2889. {
  2890. "name": "vishalkhode",
  2891. "homepage": "https://www.drupal.org/user/2439156"
  2892. }
  2893. ],
  2894. "description": "Provides basic revert and update functionality for other modules",
  2895. "homepage": "https://www.drupal.org/project/config_update",
  2896. "support": {
  2897. "source": "https://git.drupalcode.org/project/config_update"
  2898. }
  2899. },
  2900. {
  2901. "name": "drupal/context",
  2902. "version": "4.1.0",
  2903. "source": {
  2904. "type": "git",
  2905. "url": "https://git.drupalcode.org/project/context.git",
  2906. "reference": "8.x-4.1"
  2907. },
  2908. "dist": {
  2909. "type": "zip",
  2910. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.1.zip",
  2911. "reference": "8.x-4.1",
  2912. "shasum": "5cfee680f7299d82b584502479c85566bb4285c1"
  2913. },
  2914. "require": {
  2915. "drupal/core": "^8.8 || ^9"
  2916. },
  2917. "type": "drupal-module",
  2918. "extra": {
  2919. "drupal": {
  2920. "version": "8.x-4.1",
  2921. "datestamp": "1628187190",
  2922. "security-coverage": {
  2923. "status": "covered",
  2924. "message": "Covered by Drupal's security advisory policy"
  2925. }
  2926. }
  2927. },
  2928. "notification-url": "https://packages.drupal.org/8/downloads",
  2929. "license": [
  2930. "MIT"
  2931. ],
  2932. "authors": [
  2933. {
  2934. "name": "Christoffer Palm",
  2935. "homepage": "http://www.oddhill.se/",
  2936. "email": "christoffer.palm@oddhill.se",
  2937. "role": "Developer"
  2938. },
  2939. {
  2940. "name": "boshtian",
  2941. "homepage": "https://www.drupal.org/user/1773456"
  2942. },
  2943. {
  2944. "name": "colan",
  2945. "homepage": "https://www.drupal.org/user/58704"
  2946. },
  2947. {
  2948. "name": "emanaton",
  2949. "homepage": "https://www.drupal.org/user/120853"
  2950. },
  2951. {
  2952. "name": "febbraro",
  2953. "homepage": "https://www.drupal.org/user/43670"
  2954. },
  2955. {
  2956. "name": "fizk",
  2957. "homepage": "https://www.drupal.org/user/473174"
  2958. },
  2959. {
  2960. "name": "hass",
  2961. "homepage": "https://www.drupal.org/user/85918"
  2962. },
  2963. {
  2964. "name": "hefox",
  2965. "homepage": "https://www.drupal.org/user/426416"
  2966. },
  2967. {
  2968. "name": "jmiccolis",
  2969. "homepage": "https://www.drupal.org/user/31731"
  2970. },
  2971. {
  2972. "name": "Kristen Pol",
  2973. "homepage": "https://www.drupal.org/user/8389"
  2974. },
  2975. {
  2976. "name": "nedjo",
  2977. "homepage": "https://www.drupal.org/user/4481"
  2978. },
  2979. {
  2980. "name": "NormySan",
  2981. "homepage": "https://www.drupal.org/user/112352"
  2982. },
  2983. {
  2984. "name": "patricksettle",
  2985. "homepage": "https://www.drupal.org/user/26618"
  2986. },
  2987. {
  2988. "name": "paulocs",
  2989. "homepage": "https://www.drupal.org/user/3640109"
  2990. },
  2991. {
  2992. "name": "Steven Jones",
  2993. "homepage": "https://www.drupal.org/user/99644"
  2994. },
  2995. {
  2996. "name": "tekante",
  2997. "homepage": "https://www.drupal.org/user/640024"
  2998. },
  2999. {
  3000. "name": "yhahn",
  3001. "homepage": "https://www.drupal.org/user/264833"
  3002. }
  3003. ],
  3004. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3005. "homepage": "https://github.com/oddhill/context",
  3006. "keywords": [
  3007. "Drupal",
  3008. "block",
  3009. "conditions",
  3010. "context",
  3011. "visibility"
  3012. ],
  3013. "support": {
  3014. "source": "https://github.com/oddhill/context",
  3015. "issues": "https://github.com/oddhill/context/issues",
  3016. "docs": "https://github.com/oddhill/context"
  3017. }
  3018. },
  3019. {
  3020. "name": "drupal/core",
  3021. "version": "9.1.0",
  3022. "source": {
  3023. "type": "git",
  3024. "url": "https://github.com/drupal/core.git",
  3025. "reference": "de8c1769ea3d8b640e1a35c9228880d0b74ca4cc"
  3026. },
  3027. "dist": {
  3028. "type": "zip",
  3029. "url": "https://api.github.com/repos/drupal/core/zipball/de8c1769ea3d8b640e1a35c9228880d0b74ca4cc",
  3030. "reference": "de8c1769ea3d8b640e1a35c9228880d0b74ca4cc",
  3031. "shasum": ""
  3032. },
  3033. "require": {
  3034. "asm89/stack-cors": "^1.1",
  3035. "composer/semver": "^3.0",
  3036. "doctrine/annotations": "^1.4",
  3037. "doctrine/reflection": "^1.1",
  3038. "egulias/email-validator": "^2.0",
  3039. "ext-date": "*",
  3040. "ext-dom": "*",
  3041. "ext-filter": "*",
  3042. "ext-gd": "*",
  3043. "ext-hash": "*",
  3044. "ext-json": "*",
  3045. "ext-pcre": "*",
  3046. "ext-pdo": "*",
  3047. "ext-session": "*",
  3048. "ext-simplexml": "*",
  3049. "ext-spl": "*",
  3050. "ext-tokenizer": "*",
  3051. "ext-xml": "*",
  3052. "guzzlehttp/guzzle": "^6.5.2",
  3053. "laminas/laminas-diactoros": "^2.1",
  3054. "laminas/laminas-feed": "^2.12",
  3055. "masterminds/html5": "^2.1",
  3056. "pear/archive_tar": "^1.4.11",
  3057. "php": ">=7.3.0",
  3058. "psr/log": "^1.0",
  3059. "stack/builder": "^1.0",
  3060. "symfony-cmf/routing": "^2.1",
  3061. "symfony/console": "^4.4",
  3062. "symfony/dependency-injection": "^4.4",
  3063. "symfony/event-dispatcher": "^4.4",
  3064. "symfony/http-foundation": "^4.4.7",
  3065. "symfony/http-kernel": "^4.4",
  3066. "symfony/polyfill-iconv": "^1.0",
  3067. "symfony/process": "^4.4",
  3068. "symfony/psr-http-message-bridge": "^2.0",
  3069. "symfony/routing": "^4.4",
  3070. "symfony/serializer": "^4.4",
  3071. "symfony/translation": "^4.4",
  3072. "symfony/validator": "^4.4",
  3073. "symfony/yaml": "^4.4",
  3074. "twig/twig": "^2.12.0",
  3075. "typo3/phar-stream-wrapper": "^3.1.3"
  3076. },
  3077. "conflict": {
  3078. "drush/drush": "<8.1.10"
  3079. },
  3080. "replace": {
  3081. "drupal/action": "self.version",
  3082. "drupal/aggregator": "self.version",
  3083. "drupal/automated_cron": "self.version",
  3084. "drupal/ban": "self.version",
  3085. "drupal/bartik": "self.version",
  3086. "drupal/basic_auth": "self.version",
  3087. "drupal/big_pipe": "self.version",
  3088. "drupal/block": "self.version",
  3089. "drupal/block_content": "self.version",
  3090. "drupal/book": "self.version",
  3091. "drupal/breakpoint": "self.version",
  3092. "drupal/ckeditor": "self.version",
  3093. "drupal/claro": "self.version",
  3094. "drupal/classy": "self.version",
  3095. "drupal/color": "self.version",
  3096. "drupal/comment": "self.version",
  3097. "drupal/config": "self.version",
  3098. "drupal/config_translation": "self.version",
  3099. "drupal/contact": "self.version",
  3100. "drupal/content_moderation": "self.version",
  3101. "drupal/content_translation": "self.version",
  3102. "drupal/contextual": "self.version",
  3103. "drupal/core-annotation": "self.version",
  3104. "drupal/core-assertion": "self.version",
  3105. "drupal/core-bridge": "self.version",
  3106. "drupal/core-class-finder": "self.version",
  3107. "drupal/core-datetime": "self.version",
  3108. "drupal/core-dependency-injection": "self.version",
  3109. "drupal/core-diff": "self.version",
  3110. "drupal/core-discovery": "self.version",
  3111. "drupal/core-event-dispatcher": "self.version",
  3112. "drupal/core-file-cache": "self.version",
  3113. "drupal/core-file-security": "self.version",
  3114. "drupal/core-filesystem": "self.version",
  3115. "drupal/core-front-matter": "self.version",
  3116. "drupal/core-gettext": "self.version",
  3117. "drupal/core-graph": "self.version",
  3118. "drupal/core-http-foundation": "self.version",
  3119. "drupal/core-php-storage": "self.version",
  3120. "drupal/core-plugin": "self.version",
  3121. "drupal/core-proxy-builder": "self.version",
  3122. "drupal/core-render": "self.version",
  3123. "drupal/core-serialization": "self.version",
  3124. "drupal/core-transliteration": "self.version",
  3125. "drupal/core-utility": "self.version",
  3126. "drupal/core-uuid": "self.version",
  3127. "drupal/core-version": "self.version",
  3128. "drupal/datetime": "self.version",
  3129. "drupal/datetime_range": "self.version",
  3130. "drupal/dblog": "self.version",
  3131. "drupal/dynamic_page_cache": "self.version",
  3132. "drupal/editor": "self.version",
  3133. "drupal/entity_reference": "self.version",
  3134. "drupal/field": "self.version",
  3135. "drupal/field_layout": "self.version",
  3136. "drupal/field_ui": "self.version",
  3137. "drupal/file": "self.version",
  3138. "drupal/filter": "self.version",
  3139. "drupal/forum": "self.version",
  3140. "drupal/hal": "self.version",
  3141. "drupal/help": "self.version",
  3142. "drupal/help_topics": "self.version",
  3143. "drupal/history": "self.version",
  3144. "drupal/image": "self.version",
  3145. "drupal/inline_form_errors": "self.version",
  3146. "drupal/jsonapi": "self.version",
  3147. "drupal/language": "self.version",
  3148. "drupal/layout_builder": "self.version",
  3149. "drupal/layout_discovery": "self.version",
  3150. "drupal/link": "self.version",
  3151. "drupal/locale": "self.version",
  3152. "drupal/media": "self.version",
  3153. "drupal/media_library": "self.version",
  3154. "drupal/menu_link_content": "self.version",
  3155. "drupal/menu_ui": "self.version",
  3156. "drupal/migrate": "self.version",
  3157. "drupal/migrate_drupal": "self.version",
  3158. "drupal/migrate_drupal_multilingual": "self.version",
  3159. "drupal/migrate_drupal_ui": "self.version",
  3160. "drupal/minimal": "self.version",
  3161. "drupal/node": "self.version",
  3162. "drupal/olivero": "self.version",
  3163. "drupal/options": "self.version",
  3164. "drupal/page_cache": "self.version",
  3165. "drupal/path": "self.version",
  3166. "drupal/path_alias": "self.version",
  3167. "drupal/quickedit": "self.version",
  3168. "drupal/rdf": "self.version",
  3169. "drupal/responsive_image": "self.version",
  3170. "drupal/rest": "self.version",
  3171. "drupal/search": "self.version",
  3172. "drupal/serialization": "self.version",
  3173. "drupal/settings_tray": "self.version",
  3174. "drupal/seven": "self.version",
  3175. "drupal/shortcut": "self.version",
  3176. "drupal/standard": "self.version",
  3177. "drupal/stark": "self.version",
  3178. "drupal/statistics": "self.version",
  3179. "drupal/syslog": "self.version",
  3180. "drupal/system": "self.version",
  3181. "drupal/taxonomy": "self.version",
  3182. "drupal/telephone": "self.version",
  3183. "drupal/text": "self.version",
  3184. "drupal/toolbar": "self.version",
  3185. "drupal/tour": "self.version",
  3186. "drupal/tracker": "self.version",
  3187. "drupal/update": "self.version",
  3188. "drupal/user": "self.version",
  3189. "drupal/views": "self.version",
  3190. "drupal/views_ui": "self.version",
  3191. "drupal/workflows": "self.version",
  3192. "drupal/workspaces": "self.version"
  3193. },
  3194. "type": "drupal-core",
  3195. "extra": {
  3196. "drupal-scaffold": {
  3197. "file-mapping": {
  3198. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  3199. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  3200. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  3201. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  3202. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  3203. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  3204. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  3205. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  3206. "[web-root]/index.php": "assets/scaffold/files/index.php",
  3207. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  3208. "[web-root]/README.txt": "assets/scaffold/files/drupal.README.txt",
  3209. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  3210. "[web-root]/update.php": "assets/scaffold/files/update.php",
  3211. "[web-root]/web.config": "assets/scaffold/files/web.config",
  3212. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  3213. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  3214. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  3215. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  3216. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  3217. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  3218. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  3219. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  3220. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  3221. }
  3222. }
  3223. },
  3224. "autoload": {
  3225. "files": [
  3226. "includes/bootstrap.inc"
  3227. ],
  3228. "psr-4": {
  3229. "Drupal\\Core\\": "lib/Drupal/Core",
  3230. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver",
  3231. "Drupal\\Component\\": "lib/Drupal/Component"
  3232. },
  3233. "classmap": [
  3234. "lib/Drupal.php",
  3235. "lib/Drupal/Component/DependencyInjection/Container.php",
  3236. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  3237. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  3238. "lib/Drupal/Component/Utility/Timer.php",
  3239. "lib/Drupal/Component/Utility/Unicode.php",
  3240. "lib/Drupal/Core/Cache/Cache.php",
  3241. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  3242. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  3243. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  3244. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  3245. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  3246. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  3247. "lib/Drupal/Core/Database/Connection.php",
  3248. "lib/Drupal/Core/Database/Database.php",
  3249. "lib/Drupal/Core/Database/Driver/mysql/Connection.php",
  3250. "lib/Drupal/Core/Database/Driver/pgsql/Connection.php",
  3251. "lib/Drupal/Core/Database/Driver/sqlite/Connection.php",
  3252. "lib/Drupal/Core/Database/Statement.php",
  3253. "lib/Drupal/Core/Database/StatementInterface.php",
  3254. "lib/Drupal/Core/DependencyInjection/Container.php",
  3255. "lib/Drupal/Core/DrupalKernel.php",
  3256. "lib/Drupal/Core/DrupalKernelInterface.php",
  3257. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  3258. "lib/Drupal/Core/Site/Settings.php"
  3259. ]
  3260. },
  3261. "notification-url": "https://packagist.org/downloads/",
  3262. "license": [
  3263. "GPL-2.0-or-later"
  3264. ],
  3265. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3266. "support": {
  3267. "source": "https://github.com/drupal/core/tree/9.1.0"
  3268. },
  3269. "time": "2020-12-02T18:11:58+00:00"
  3270. },
  3271. {
  3272. "name": "drupal/core-composer-scaffold",
  3273. "version": "9.1.0",
  3274. "source": {
  3275. "type": "git",
  3276. "url": "https://github.com/drupal/core-composer-scaffold.git",
  3277. "reference": "7b125516d6568b888945ee03ac2636dcced76e8d"
  3278. },
  3279. "dist": {
  3280. "type": "zip",
  3281. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/7b125516d6568b888945ee03ac2636dcced76e8d",
  3282. "reference": "7b125516d6568b888945ee03ac2636dcced76e8d",
  3283. "shasum": ""
  3284. },
  3285. "require": {
  3286. "composer-plugin-api": "^1 || ^2",
  3287. "php": ">=7.3.0"
  3288. },
  3289. "conflict": {
  3290. "drupal-composer/drupal-scaffold": "*"
  3291. },
  3292. "require-dev": {
  3293. "composer/composer": "^1.8@stable"
  3294. },
  3295. "type": "composer-plugin",
  3296. "extra": {
  3297. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  3298. "branch-alias": {
  3299. "dev-master": "1.0.x-dev"
  3300. }
  3301. },
  3302. "autoload": {
  3303. "psr-4": {
  3304. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  3305. }
  3306. },
  3307. "notification-url": "https://packagist.org/downloads/",
  3308. "license": [
  3309. "GPL-2.0-or-later"
  3310. ],
  3311. "description": "A flexible Composer project scaffold builder.",
  3312. "homepage": "https://www.drupal.org/project/drupal",
  3313. "keywords": [
  3314. "drupal"
  3315. ],
  3316. "support": {
  3317. "source": "https://github.com/drupal/core-composer-scaffold/tree/9.1.0"
  3318. },
  3319. "time": "2020-08-07T22:30:13+00:00"
  3320. },
  3321. {
  3322. "name": "drupal/core-project-message",
  3323. "version": "9.1.0",
  3324. "source": {
  3325. "type": "git",
  3326. "url": "https://github.com/drupal/core-project-message.git",
  3327. "reference": "812d6da43dd49cc210af62e80fa92189e68e565a"
  3328. },
  3329. "dist": {
  3330. "type": "zip",
  3331. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/812d6da43dd49cc210af62e80fa92189e68e565a",
  3332. "reference": "812d6da43dd49cc210af62e80fa92189e68e565a",
  3333. "shasum": ""
  3334. },
  3335. "require": {
  3336. "composer-plugin-api": "^1.1 || ^2",
  3337. "php": ">=7.3.0"
  3338. },
  3339. "type": "composer-plugin",
  3340. "extra": {
  3341. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  3342. },
  3343. "autoload": {
  3344. "psr-4": {
  3345. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  3346. }
  3347. },
  3348. "notification-url": "https://packagist.org/downloads/",
  3349. "license": [
  3350. "GPL-2.0-or-later"
  3351. ],
  3352. "description": "Adds a message after Composer installation.",
  3353. "homepage": "https://www.drupal.org/project/drupal",
  3354. "keywords": [
  3355. "drupal"
  3356. ],
  3357. "support": {
  3358. "source": "https://github.com/drupal/core-project-message/tree/9.1.0"
  3359. },
  3360. "time": "2020-09-14T13:40:36+00:00"
  3361. },
  3362. {
  3363. "name": "drupal/core-recommended",
  3364. "version": "9.1.0",
  3365. "source": {
  3366. "type": "git",
  3367. "url": "https://github.com/drupal/core-recommended.git",
  3368. "reference": "0e9d5f06c35fc4365864a6395812e6422ecdd62d"
  3369. },
  3370. "dist": {
  3371. "type": "zip",
  3372. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/0e9d5f06c35fc4365864a6395812e6422ecdd62d",
  3373. "reference": "0e9d5f06c35fc4365864a6395812e6422ecdd62d",
  3374. "shasum": ""
  3375. },
  3376. "require": {
  3377. "asm89/stack-cors": "1.3.0",
  3378. "composer/semver": "3.2.2",
  3379. "doctrine/annotations": "1.11.1",
  3380. "doctrine/lexer": "1.2.1",
  3381. "doctrine/reflection": "1.2.2",
  3382. "drupal/core": "9.1.0",
  3383. "egulias/email-validator": "2.1.22",
  3384. "guzzlehttp/guzzle": "6.5.5",
  3385. "guzzlehttp/promises": "1.4.0",
  3386. "guzzlehttp/psr7": "1.7.0",
  3387. "laminas/laminas-diactoros": "2.5.0",
  3388. "laminas/laminas-escaper": "2.7.0",
  3389. "laminas/laminas-feed": "2.13.0",
  3390. "laminas/laminas-stdlib": "3.3.0",
  3391. "laminas/laminas-zendframework-bridge": "1.1.1",
  3392. "masterminds/html5": "2.7.4",
  3393. "pear/archive_tar": "1.4.11",
  3394. "pear/console_getopt": "v1.4.3",
  3395. "pear/pear-core-minimal": "v1.10.10",
  3396. "pear/pear_exception": "v1.0.1",
  3397. "psr/container": "1.0.0",
  3398. "psr/http-factory": "1.0.1",
  3399. "psr/http-message": "1.0.1",
  3400. "psr/log": "1.1.3",
  3401. "ralouphie/getallheaders": "3.0.3",
  3402. "stack/builder": "v1.0.6",
  3403. "symfony-cmf/routing": "2.3.3",
  3404. "symfony/console": "v4.4.16",
  3405. "symfony/debug": "v4.4.16",
  3406. "symfony/dependency-injection": "v4.4.16",
  3407. "symfony/error-handler": "v4.4.16",
  3408. "symfony/event-dispatcher": "v4.4.16",
  3409. "symfony/event-dispatcher-contracts": "v1.1.9",
  3410. "symfony/http-client-contracts": "v2.3.1",
  3411. "symfony/http-foundation": "v4.4.16",
  3412. "symfony/http-kernel": "v4.4.16",
  3413. "symfony/mime": "v5.1.8",
  3414. "symfony/polyfill-ctype": "v1.20.0",
  3415. "symfony/polyfill-iconv": "v1.20.0",
  3416. "symfony/polyfill-intl-idn": "v1.20.0",
  3417. "symfony/polyfill-intl-normalizer": "v1.20.0",
  3418. "symfony/polyfill-mbstring": "v1.20.0",
  3419. "symfony/polyfill-php80": "v1.20.0",
  3420. "symfony/process": "v4.4.16",
  3421. "symfony/psr-http-message-bridge": "v2.0.2",
  3422. "symfony/routing": "v4.4.16",
  3423. "symfony/serializer": "v4.4.16",
  3424. "symfony/service-contracts": "v2.2.0",
  3425. "symfony/translation": "v4.4.16",
  3426. "symfony/translation-contracts": "v2.3.0",
  3427. "symfony/validator": "v4.4.16",
  3428. "symfony/var-dumper": "v5.1.8",
  3429. "symfony/yaml": "v4.4.16",
  3430. "twig/twig": "v2.14.1",
  3431. "typo3/phar-stream-wrapper": "v3.1.6"
  3432. },
  3433. "conflict": {
  3434. "webflo/drupal-core-strict": "*"
  3435. },
  3436. "type": "metapackage",
  3437. "notification-url": "https://packagist.org/downloads/",
  3438. "license": [
  3439. "GPL-2.0-or-later"
  3440. ],
  3441. "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.",
  3442. "support": {
  3443. "source": "https://github.com/drupal/core-recommended/tree/9.1.0"
  3444. },
  3445. "time": "2020-12-02T18:11:58+00:00"
  3446. },
  3447. {
  3448. "name": "drupal/ctools",
  3449. "version": "3.9.0",
  3450. "source": {
  3451. "type": "git",
  3452. "url": "https://git.drupalcode.org/project/ctools.git",
  3453. "reference": "8.x-3.9"
  3454. },
  3455. "dist": {
  3456. "type": "zip",
  3457. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.9.zip",
  3458. "reference": "8.x-3.9",
  3459. "shasum": "227ba06f5f98bded0658b83322949c33d1b3183e"
  3460. },
  3461. "require": {
  3462. "drupal/core": "^8.8 || ^9"
  3463. },
  3464. "type": "drupal-module",
  3465. "extra": {
  3466. "drupal": {
  3467. "version": "8.x-3.9",
  3468. "datestamp": "1658864511",
  3469. "security-coverage": {
  3470. "status": "covered",
  3471. "message": "Covered by Drupal's security advisory policy"
  3472. }
  3473. },
  3474. "branch-alias": {
  3475. "dev-8.x-3.x": "3.x-dev"
  3476. }
  3477. },
  3478. "notification-url": "https://packages.drupal.org/8/downloads",
  3479. "license": [
  3480. "GPL-2.0-or-later"
  3481. ],
  3482. "authors": [
  3483. {
  3484. "name": "Kris Vanderwater (EclipseGc)",
  3485. "homepage": "https://www.drupal.org/u/eclipsegc",
  3486. "role": "Maintainer"
  3487. },
  3488. {
  3489. "name": "Jakob Perry (japerry)",
  3490. "homepage": "https://www.drupal.org/u/japerry",
  3491. "role": "Maintainer"
  3492. },
  3493. {
  3494. "name": "Tim Plunkett (tim.plunkett)",
  3495. "homepage": "https://www.drupal.org/u/timplunkett",
  3496. "role": "Maintainer"
  3497. },
  3498. {
  3499. "name": "James Gilliland (neclimdul)",
  3500. "homepage": "https://www.drupal.org/u/neclimdul",
  3501. "role": "Maintainer"
  3502. },
  3503. {
  3504. "name": "Daniel Wehner (dawehner)",
  3505. "homepage": "https://www.drupal.org/u/dawehner",
  3506. "role": "Maintainer"
  3507. },
  3508. {
  3509. "name": "joelpittet",
  3510. "homepage": "https://www.drupal.org/user/160302"
  3511. },
  3512. {
  3513. "name": "merlinofchaos",
  3514. "homepage": "https://www.drupal.org/user/26979"
  3515. },
  3516. {
  3517. "name": "neclimdul",
  3518. "homepage": "https://www.drupal.org/user/48673"
  3519. },
  3520. {
  3521. "name": "sdboyer",
  3522. "homepage": "https://www.drupal.org/user/146719"
  3523. },
  3524. {
  3525. "name": "sun",
  3526. "homepage": "https://www.drupal.org/user/54136"
  3527. },
  3528. {
  3529. "name": "tim.plunkett",
  3530. "homepage": "https://www.drupal.org/user/241634"
  3531. }
  3532. ],
  3533. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3534. "homepage": "https://www.drupal.org/project/ctools",
  3535. "support": {
  3536. "source": "https://git.drupalcode.org/project/ctools",
  3537. "issues": "https://www.drupal.org/project/issues/ctools"
  3538. }
  3539. },
  3540. {
  3541. "name": "drupal/date_range_formatter",
  3542. "version": "4.0.2",
  3543. "source": {
  3544. "type": "git",
  3545. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3546. "reference": "4.0.2"
  3547. },
  3548. "dist": {
  3549. "type": "zip",
  3550. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-4.0.2.zip",
  3551. "reference": "4.0.2",
  3552. "shasum": "0d953912148e384aed6a6cee64115faf170319c0"
  3553. },
  3554. "require": {
  3555. "drupal/core": "^8 || ^9 || ^10"
  3556. },
  3557. "type": "drupal-module",
  3558. "extra": {
  3559. "drupal": {
  3560. "version": "4.0.2",
  3561. "datestamp": "1703156621",
  3562. "security-coverage": {
  3563. "status": "covered",
  3564. "message": "Covered by Drupal's security advisory policy"
  3565. }
  3566. }
  3567. },
  3568. "notification-url": "https://packages.drupal.org/8/downloads",
  3569. "license": [
  3570. "GPL-2.0-or-later"
  3571. ],
  3572. "authors": [
  3573. {
  3574. "name": "maximpodorov",
  3575. "homepage": "https://www.drupal.org/user/515310"
  3576. },
  3577. {
  3578. "name": "sudishth",
  3579. "homepage": "https://www.drupal.org/user/1440562"
  3580. }
  3581. ],
  3582. "description": "Formats date ranges.",
  3583. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3584. "support": {
  3585. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3586. }
  3587. },
  3588. {
  3589. "name": "drupal/devel",
  3590. "version": "4.2.1",
  3591. "source": {
  3592. "type": "git",
  3593. "url": "https://git.drupalcode.org/project/devel.git",
  3594. "reference": "4.2.1"
  3595. },
  3596. "dist": {
  3597. "type": "zip",
  3598. "url": "https://ftp.drupal.org/files/projects/devel-4.2.1.zip",
  3599. "reference": "4.2.1",
  3600. "shasum": "aa08379bad81cb2e604ee9a0b9e2aabd86fae13f"
  3601. },
  3602. "require": {
  3603. "doctrine/common": "^2.7",
  3604. "drupal/core": "^8.8 || ^9",
  3605. "symfony/var-dumper": "^4 || ^5"
  3606. },
  3607. "conflict": {
  3608. "kint-php/kint": "<3"
  3609. },
  3610. "require-dev": {
  3611. "drush/drush": "^10"
  3612. },
  3613. "suggest": {
  3614. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3615. },
  3616. "type": "drupal-module",
  3617. "extra": {
  3618. "drupal": {
  3619. "version": "4.2.1",
  3620. "datestamp": "1664317444",
  3621. "security-coverage": {
  3622. "status": "covered",
  3623. "message": "Covered by Drupal's security advisory policy"
  3624. }
  3625. },
  3626. "drush": {
  3627. "services": {
  3628. "drush.services.yml": "^9 || ^10"
  3629. }
  3630. }
  3631. },
  3632. "notification-url": "https://packages.drupal.org/8/downloads",
  3633. "license": [
  3634. "GPL-2.0-or-later"
  3635. ],
  3636. "authors": [
  3637. {
  3638. "name": "moshe weitzman",
  3639. "homepage": "https://www.drupal.org/user/23"
  3640. }
  3641. ],
  3642. "description": "Various blocks, pages, and functions for developers.",
  3643. "homepage": "https://www.drupal.org/project/devel",
  3644. "support": {
  3645. "source": "https://gitlab.com/drupalspoons/devel",
  3646. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3647. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3648. }
  3649. },
  3650. {
  3651. "name": "drupal/domain",
  3652. "version": "1.0.0-beta8",
  3653. "source": {
  3654. "type": "git",
  3655. "url": "https://git.drupalcode.org/project/domain.git",
  3656. "reference": "8.x-1.0-beta8"
  3657. },
  3658. "dist": {
  3659. "type": "zip",
  3660. "url": "https://ftp.drupal.org/files/projects/domain-8.x-1.0-beta8.zip",
  3661. "reference": "8.x-1.0-beta8",
  3662. "shasum": "24deb7c239b3d0f9cd177a9e0893a9ecb5cf81d3"
  3663. },
  3664. "require": {
  3665. "drupal/core": "^8 || ^9"
  3666. },
  3667. "require-dev": {
  3668. "drupal/domain_access": "*",
  3669. "drupal/domain_config": "*"
  3670. },
  3671. "type": "drupal-module",
  3672. "extra": {
  3673. "drupal": {
  3674. "version": "8.x-1.0-beta8",
  3675. "datestamp": "1677511311",
  3676. "security-coverage": {
  3677. "status": "not-covered",
  3678. "message": "Beta releases are not covered by Drupal security advisories."
  3679. }
  3680. }
  3681. },
  3682. "notification-url": "https://packages.drupal.org/8/downloads",
  3683. "license": [
  3684. "GPL-2.0-or-later"
  3685. ],
  3686. "authors": [
  3687. {
  3688. "name": "agentrickard",
  3689. "homepage": "https://www.drupal.org/user/20975"
  3690. },
  3691. {
  3692. "name": "nonsie",
  3693. "homepage": "https://www.drupal.org/user/29899"
  3694. },
  3695. {
  3696. "name": "webflo",
  3697. "homepage": "https://www.drupal.org/user/254778"
  3698. }
  3699. ],
  3700. "description": "Creates domain records within a Drupal installation.",
  3701. "homepage": "https://www.drupal.org/project/domain",
  3702. "support": {
  3703. "source": "https://git.drupalcode.org/project/domain"
  3704. }
  3705. },
  3706. {
  3707. "name": "drupal/domain_config",
  3708. "version": "1.0.0-beta8",
  3709. "require": {
  3710. "drupal/core": "^8 || ^9",
  3711. "drupal/domain": "*"
  3712. },
  3713. "type": "metapackage",
  3714. "extra": {
  3715. "drupal": {
  3716. "version": "8.x-1.0-beta8",
  3717. "datestamp": "1677511311",
  3718. "security-coverage": {
  3719. "status": "not-covered",
  3720. "message": "Beta releases are not covered by Drupal security advisories."
  3721. }
  3722. }
  3723. },
  3724. "notification-url": "https://packages.drupal.org/8/downloads",
  3725. "license": [
  3726. "GPL-2.0-or-later"
  3727. ],
  3728. "authors": [
  3729. {
  3730. "name": "agentrickard",
  3731. "homepage": "https://www.drupal.org/user/20975"
  3732. },
  3733. {
  3734. "name": "nonsie",
  3735. "homepage": "https://www.drupal.org/user/29899"
  3736. },
  3737. {
  3738. "name": "webflo",
  3739. "homepage": "https://www.drupal.org/user/254778"
  3740. }
  3741. ],
  3742. "description": "Allows domain specific configuration.",
  3743. "homepage": "https://www.drupal.org/project/domain",
  3744. "support": {
  3745. "source": "https://git.drupalcode.org/project/domain"
  3746. }
  3747. },
  3748. {
  3749. "name": "drupal/domain_site_settings",
  3750. "version": "1.6.0",
  3751. "source": {
  3752. "type": "git",
  3753. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  3754. "reference": "8.x-1.6"
  3755. },
  3756. "dist": {
  3757. "type": "zip",
  3758. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.6.zip",
  3759. "reference": "8.x-1.6",
  3760. "shasum": "d0f89411c5dd934a63a1a5991fbc0f76c1515cb2"
  3761. },
  3762. "require": {
  3763. "drupal/core": "^8.8 || ^9 || ^10 || ^11",
  3764. "drupal/domain": "^1.0 || ^2.0",
  3765. "drupal/domain_config": "*"
  3766. },
  3767. "type": "drupal-module",
  3768. "extra": {
  3769. "drupal": {
  3770. "version": "8.x-1.6",
  3771. "datestamp": "1726238712",
  3772. "security-coverage": {
  3773. "status": "covered",
  3774. "message": "Covered by Drupal's security advisory policy"
  3775. }
  3776. }
  3777. },
  3778. "notification-url": "https://packages.drupal.org/8/downloads",
  3779. "license": [
  3780. "GPL-2.0+"
  3781. ],
  3782. "authors": [
  3783. {
  3784. "name": "aloknarwaria",
  3785. "homepage": "https://www.drupal.org/user/906640"
  3786. },
  3787. {
  3788. "name": "jeroent",
  3789. "homepage": "https://www.drupal.org/user/2228934"
  3790. },
  3791. {
  3792. "name": "malaynayak",
  3793. "homepage": "https://www.drupal.org/user/3529755"
  3794. }
  3795. ],
  3796. "description": "Basic Site Setting for Domains.",
  3797. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3798. "keywords": [
  3799. "Drupal"
  3800. ],
  3801. "support": {
  3802. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3803. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3804. }
  3805. },
  3806. {
  3807. "name": "drupal/email_registration",
  3808. "version": "1.1.0",
  3809. "source": {
  3810. "type": "git",
  3811. "url": "https://git.drupalcode.org/project/email_registration.git",
  3812. "reference": "8.x-1.1"
  3813. },
  3814. "dist": {
  3815. "type": "zip",
  3816. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.1.zip",
  3817. "reference": "8.x-1.1",
  3818. "shasum": "cc0eef597216a6d025d9017df104f2693b029f96"
  3819. },
  3820. "require": {
  3821. "drupal/core": "^8.7.7 || ^9"
  3822. },
  3823. "conflict": {
  3824. "drupal/commerce": "<2.12"
  3825. },
  3826. "require-dev": {
  3827. "drupal/commerce": "^2.0"
  3828. },
  3829. "type": "drupal-module",
  3830. "extra": {
  3831. "drupal": {
  3832. "version": "8.x-1.1",
  3833. "datestamp": "1592317072",
  3834. "security-coverage": {
  3835. "status": "covered",
  3836. "message": "Covered by Drupal's security advisory policy"
  3837. }
  3838. }
  3839. },
  3840. "notification-url": "https://packages.drupal.org/8/downloads",
  3841. "license": [
  3842. "GPL-2.0-or-later"
  3843. ],
  3844. "authors": [
  3845. {
  3846. "name": "Greg Knaddison (greggles)",
  3847. "homepage": "https://www.drupal.org/u/greggles",
  3848. "role": "Maintainer"
  3849. },
  3850. {
  3851. "name": "Andrey Postnikov (andypost)",
  3852. "homepage": "https://www.drupal.org/u/andypost",
  3853. "role": "Maintainer"
  3854. },
  3855. {
  3856. "name": "Chris Herberte",
  3857. "homepage": "https://www.drupal.org/u/chris-herberte",
  3858. "role": "Maintainer"
  3859. },
  3860. {
  3861. "name": "Moshe Weitzman (moshe weitzman)",
  3862. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3863. "role": "Maintainer"
  3864. },
  3865. {
  3866. "name": "Grevil",
  3867. "homepage": "https://www.drupal.org/user/3668491"
  3868. },
  3869. {
  3870. "name": "moshe weitzman",
  3871. "homepage": "https://www.drupal.org/user/23"
  3872. }
  3873. ],
  3874. "description": "Allows users to register with an email address as their username.",
  3875. "homepage": "https://www.drupal.org/project/email_registration",
  3876. "support": {
  3877. "source": "https://git.drupalcode.org/project/email_registration",
  3878. "issues": "http://drupal.org/project/issues/email_registration"
  3879. }
  3880. },
  3881. {
  3882. "name": "drupal/entity",
  3883. "version": "1.3.0",
  3884. "source": {
  3885. "type": "git",
  3886. "url": "https://git.drupalcode.org/project/entity.git",
  3887. "reference": "8.x-1.3"
  3888. },
  3889. "dist": {
  3890. "type": "zip",
  3891. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.3.zip",
  3892. "reference": "8.x-1.3",
  3893. "shasum": "9515e28a70448d369adf4199d08a01a5ab75792d"
  3894. },
  3895. "require": {
  3896. "drupal/core": "^8.8.2 || ^9"
  3897. },
  3898. "type": "drupal-module",
  3899. "extra": {
  3900. "drupal": {
  3901. "version": "8.x-1.3",
  3902. "datestamp": "1646324539",
  3903. "security-coverage": {
  3904. "status": "covered",
  3905. "message": "Covered by Drupal's security advisory policy"
  3906. }
  3907. }
  3908. },
  3909. "notification-url": "https://packages.drupal.org/8/downloads",
  3910. "license": [
  3911. "GPL-2.0-or-later"
  3912. ],
  3913. "authors": [
  3914. {
  3915. "name": "berdir",
  3916. "homepage": "https://www.drupal.org/user/214652"
  3917. },
  3918. {
  3919. "name": "bojanz",
  3920. "homepage": "https://www.drupal.org/user/86106"
  3921. },
  3922. {
  3923. "name": "dawehner",
  3924. "homepage": "https://www.drupal.org/user/99340"
  3925. },
  3926. {
  3927. "name": "dixon_",
  3928. "homepage": "https://www.drupal.org/user/239911"
  3929. },
  3930. {
  3931. "name": "fago",
  3932. "homepage": "https://www.drupal.org/user/16747"
  3933. },
  3934. {
  3935. "name": "mglaman",
  3936. "homepage": "https://www.drupal.org/user/2416470"
  3937. },
  3938. {
  3939. "name": "TR",
  3940. "homepage": "https://www.drupal.org/user/202830"
  3941. }
  3942. ],
  3943. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3944. "homepage": "https://www.drupal.org/project/entity",
  3945. "support": {
  3946. "source": "https://git.drupalcode.org/project/entity",
  3947. "issues": "https://www.drupal.org/project/issues/entity"
  3948. }
  3949. },
  3950. {
  3951. "name": "drupal/features",
  3952. "version": "3.12.0",
  3953. "source": {
  3954. "type": "git",
  3955. "url": "https://git.drupalcode.org/project/features.git",
  3956. "reference": "8.x-3.12"
  3957. },
  3958. "dist": {
  3959. "type": "zip",
  3960. "url": "https://ftp.drupal.org/files/projects/features-8.x-3.12.zip",
  3961. "reference": "8.x-3.12",
  3962. "shasum": "f28d6e7d3340e32666a3e8ae515ed746dbe86b98"
  3963. },
  3964. "require": {
  3965. "drupal/config_update": "^1.4",
  3966. "drupal/core": "^8.8 || ^9"
  3967. },
  3968. "type": "drupal-module",
  3969. "extra": {
  3970. "drupal": {
  3971. "version": "8.x-3.12",
  3972. "datestamp": "1612830531",
  3973. "security-coverage": {
  3974. "status": "covered",
  3975. "message": "Covered by Drupal's security advisory policy"
  3976. }
  3977. },
  3978. "drush": {
  3979. "services": {
  3980. "drush.services.yml": "^9 || ^10"
  3981. }
  3982. }
  3983. },
  3984. "notification-url": "https://packages.drupal.org/8/downloads",
  3985. "license": [
  3986. "GPL-2.0-or-later"
  3987. ],
  3988. "authors": [
  3989. {
  3990. "name": "Dave Reid",
  3991. "homepage": "https://www.drupal.org/user/53892"
  3992. },
  3993. {
  3994. "name": "dawehner",
  3995. "homepage": "https://www.drupal.org/user/99340"
  3996. },
  3997. {
  3998. "name": "donquixote",
  3999. "homepage": "https://www.drupal.org/user/459338"
  4000. },
  4001. {
  4002. "name": "e2thex",
  4003. "homepage": "https://www.drupal.org/user/189123"
  4004. },
  4005. {
  4006. "name": "febbraro",
  4007. "homepage": "https://www.drupal.org/user/43670"
  4008. },
  4009. {
  4010. "name": "flocondetoile",
  4011. "homepage": "https://www.drupal.org/user/2006064"
  4012. },
  4013. {
  4014. "name": "jmiccolis",
  4015. "homepage": "https://www.drupal.org/user/31731"
  4016. },
  4017. {
  4018. "name": "joseph.olstad",
  4019. "homepage": "https://www.drupal.org/user/1321830"
  4020. },
  4021. {
  4022. "name": "matthand",
  4023. "homepage": "https://www.drupal.org/user/171527"
  4024. },
  4025. {
  4026. "name": "mpotter",
  4027. "homepage": "https://www.drupal.org/user/616192"
  4028. }
  4029. ],
  4030. "description": "Enables administrators to package configuration into modules",
  4031. "homepage": "https://www.drupal.org/project/features",
  4032. "support": {
  4033. "source": "https://git.drupalcode.org/project/features"
  4034. }
  4035. },
  4036. {
  4037. "name": "drupal/field_group",
  4038. "version": "3.3.0",
  4039. "source": {
  4040. "type": "git",
  4041. "url": "https://git.drupalcode.org/project/field_group.git",
  4042. "reference": "8.x-3.3"
  4043. },
  4044. "dist": {
  4045. "type": "zip",
  4046. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.3.zip",
  4047. "reference": "8.x-3.3",
  4048. "shasum": "c7a423b1d7643ee40dd1543d72fa04e8ac1756e4"
  4049. },
  4050. "require": {
  4051. "drupal/core": "^8.8 || ^9"
  4052. },
  4053. "require-dev": {
  4054. "drupal/jquery_ui_accordion": "^1.0"
  4055. },
  4056. "type": "drupal-module",
  4057. "extra": {
  4058. "drupal": {
  4059. "version": "8.x-3.3",
  4060. "datestamp": "1663516404",
  4061. "security-coverage": {
  4062. "status": "covered",
  4063. "message": "Covered by Drupal's security advisory policy"
  4064. }
  4065. }
  4066. },
  4067. "notification-url": "https://packages.drupal.org/8/downloads",
  4068. "license": [
  4069. "GPL-2.0-or-later"
  4070. ],
  4071. "authors": [
  4072. {
  4073. "name": "anybody",
  4074. "homepage": "https://www.drupal.org/user/291091"
  4075. },
  4076. {
  4077. "name": "grevil",
  4078. "homepage": "https://www.drupal.org/user/3668491"
  4079. },
  4080. {
  4081. "name": "hydra",
  4082. "homepage": "https://www.drupal.org/user/647364"
  4083. },
  4084. {
  4085. "name": "joevagyok",
  4086. "homepage": "https://www.drupal.org/user/2876343"
  4087. },
  4088. {
  4089. "name": "jyve",
  4090. "homepage": "https://www.drupal.org/user/591438"
  4091. },
  4092. {
  4093. "name": "nils.destoop",
  4094. "homepage": "https://www.drupal.org/user/361625"
  4095. },
  4096. {
  4097. "name": "Stalski",
  4098. "homepage": "https://www.drupal.org/user/322618"
  4099. },
  4100. {
  4101. "name": "swentel",
  4102. "homepage": "https://www.drupal.org/user/107403"
  4103. }
  4104. ],
  4105. "description": "Provides the field_group module.",
  4106. "homepage": "https://www.drupal.org/project/field_group",
  4107. "support": {
  4108. "source": "https://git.drupalcode.org/project/field_group",
  4109. "issues": "https://www.drupal.org/project/issues/field_group"
  4110. }
  4111. },
  4112. {
  4113. "name": "drupal/filefield_sources",
  4114. "version": "1.0.0-alpha5",
  4115. "source": {
  4116. "type": "git",
  4117. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  4118. "reference": "8.x-1.0-alpha5"
  4119. },
  4120. "dist": {
  4121. "type": "zip",
  4122. "url": "https://ftp.drupal.org/files/projects/filefield_sources-8.x-1.0-alpha5.zip",
  4123. "reference": "8.x-1.0-alpha5",
  4124. "shasum": "e2438610bf829a82c6415f88f708b2dc73d91c49"
  4125. },
  4126. "require": {
  4127. "drupal/core": "^8 || ^9"
  4128. },
  4129. "require-dev": {
  4130. "drupal/imce": "^2.3"
  4131. },
  4132. "type": "drupal-module",
  4133. "extra": {
  4134. "drupal": {
  4135. "version": "8.x-1.0-alpha5",
  4136. "datestamp": "1642555269",
  4137. "security-coverage": {
  4138. "status": "not-covered",
  4139. "message": "Alpha releases are not covered by Drupal security advisories."
  4140. }
  4141. }
  4142. },
  4143. "notification-url": "https://packages.drupal.org/8/downloads",
  4144. "license": [
  4145. "GPL-2.0-or-later"
  4146. ],
  4147. "authors": [
  4148. {
  4149. "name": "Nate Lampton (quicksketch)",
  4150. "homepage": "https://www.drupal.org/u/quicksketch",
  4151. "role": "Maintainer"
  4152. },
  4153. {
  4154. "name": "Andrey Khromyshev (profak)",
  4155. "homepage": "https://www.drupal.org/u/profak",
  4156. "role": "Maintainer"
  4157. },
  4158. {
  4159. "name": "David Valdez (gnuget)",
  4160. "homepage": "https://www.drupal.org/u/gnuget",
  4161. "role": "Maintainer"
  4162. },
  4163. {
  4164. "name": "quicksketch",
  4165. "homepage": "https://www.drupal.org/user/35821"
  4166. }
  4167. ],
  4168. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  4169. "homepage": "https://www.drupal.org/project/filefield_sources",
  4170. "support": {
  4171. "source": "https://git.drupalcode.org/project/filefield_sources",
  4172. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  4173. "irc": "irc://irc.freenode.org/drupal-contribute"
  4174. }
  4175. },
  4176. {
  4177. "name": "drupal/filter_perms",
  4178. "version": "1.0.0-alpha1",
  4179. "source": {
  4180. "type": "git",
  4181. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4182. "reference": "8.x-1.0-alpha1"
  4183. },
  4184. "dist": {
  4185. "type": "zip",
  4186. "url": "https://ftp.drupal.org/files/projects/filter_perms-8.x-1.0-alpha1.zip",
  4187. "reference": "8.x-1.0-alpha1",
  4188. "shasum": "5a4bf4332f97b238864191042198f9f9a85cab26"
  4189. },
  4190. "require": {
  4191. "drupal/core": "^8 || ^9"
  4192. },
  4193. "type": "drupal-module",
  4194. "extra": {
  4195. "drupal": {
  4196. "version": "8.x-1.0-alpha1",
  4197. "datestamp": "1595202904",
  4198. "security-coverage": {
  4199. "status": "not-covered",
  4200. "message": "Alpha releases are not covered by Drupal security advisories."
  4201. }
  4202. }
  4203. },
  4204. "notification-url": "https://packages.drupal.org/8/downloads",
  4205. "license": [
  4206. "GPL-2.0-or-later"
  4207. ],
  4208. "authors": [
  4209. {
  4210. "name": "cYu",
  4211. "homepage": "https://www.drupal.org/user/202205"
  4212. },
  4213. {
  4214. "name": "deekayen",
  4215. "homepage": "https://www.drupal.org/user/972"
  4216. },
  4217. {
  4218. "name": "ivavictoria",
  4219. "homepage": "https://www.drupal.org/user/3061533"
  4220. },
  4221. {
  4222. "name": "justcaldwell",
  4223. "homepage": "https://www.drupal.org/user/290069"
  4224. },
  4225. {
  4226. "name": "mgbellaire",
  4227. "homepage": "https://www.drupal.org/user/1831932"
  4228. },
  4229. {
  4230. "name": "willzyx",
  4231. "homepage": "https://www.drupal.org/user/1043862"
  4232. }
  4233. ],
  4234. "description": "Provides role and module filters to simplify the user permissions page.",
  4235. "homepage": "https://www.drupal.org/project/filter_perms",
  4236. "support": {
  4237. "source": "https://git.drupalcode.org/project/filter_perms"
  4238. }
  4239. },
  4240. {
  4241. "name": "drupal/honeypot",
  4242. "version": "2.0.2",
  4243. "source": {
  4244. "type": "git",
  4245. "url": "https://git.drupalcode.org/project/honeypot.git",
  4246. "reference": "2.0.2"
  4247. },
  4248. "dist": {
  4249. "type": "zip",
  4250. "url": "https://ftp.drupal.org/files/projects/honeypot-2.0.2.zip",
  4251. "reference": "2.0.2",
  4252. "shasum": "8a3e15509f649c39e88c4f22105f12fb6445fc62"
  4253. },
  4254. "require": {
  4255. "drupal/core": "^8.8.2 || ^9"
  4256. },
  4257. "type": "drupal-module",
  4258. "extra": {
  4259. "drupal": {
  4260. "version": "2.0.2",
  4261. "datestamp": "1651895165",
  4262. "security-coverage": {
  4263. "status": "covered",
  4264. "message": "Covered by Drupal's security advisory policy"
  4265. }
  4266. }
  4267. },
  4268. "notification-url": "https://packages.drupal.org/8/downloads",
  4269. "license": [
  4270. "GPL-2.0-or-later"
  4271. ],
  4272. "authors": [
  4273. {
  4274. "name": "Jeff Geerling",
  4275. "homepage": "https://www.drupal.org/user/389011",
  4276. "email": "geerlingguy@mac.com"
  4277. },
  4278. {
  4279. "name": "Manuel Garcia",
  4280. "homepage": "https://www.drupal.org/user/213194"
  4281. },
  4282. {
  4283. "name": "tr",
  4284. "homepage": "https://www.drupal.org/user/202830"
  4285. },
  4286. {
  4287. "name": "vijaycs85",
  4288. "homepage": "https://www.drupal.org/user/93488"
  4289. }
  4290. ],
  4291. "description": "Mitigates spam form submissions using the honeypot method.",
  4292. "homepage": "https://www.drupal.org/project/honeypot",
  4293. "keywords": [
  4294. "deterrent",
  4295. "form",
  4296. "honeypot",
  4297. "honeytrap",
  4298. "php",
  4299. "spam"
  4300. ],
  4301. "support": {
  4302. "source": "https://git.drupalcode.org/project/honeypot",
  4303. "issues": "https://www.drupal.org/project/issues/honeypot"
  4304. }
  4305. },
  4306. {
  4307. "name": "drupal/jquery_ui",
  4308. "version": "1.4.0",
  4309. "source": {
  4310. "type": "git",
  4311. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  4312. "reference": "8.x-1.4"
  4313. },
  4314. "dist": {
  4315. "type": "zip",
  4316. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.4.zip",
  4317. "reference": "8.x-1.4",
  4318. "shasum": "64c19ecc8902e2b4b1ab0cc5f5fe28dbc83bfebe"
  4319. },
  4320. "require": {
  4321. "drupal/core": "^8 || ^9"
  4322. },
  4323. "type": "drupal-module",
  4324. "extra": {
  4325. "drupal": {
  4326. "version": "8.x-1.4",
  4327. "datestamp": "1582149957",
  4328. "security-coverage": {
  4329. "status": "covered",
  4330. "message": "Covered by Drupal's security advisory policy"
  4331. }
  4332. }
  4333. },
  4334. "notification-url": "https://packages.drupal.org/8/downloads",
  4335. "license": [
  4336. "GPL-2.0-or-later"
  4337. ],
  4338. "authors": [
  4339. {
  4340. "name": "bnjmnm",
  4341. "homepage": "https://www.drupal.org/user/2369194"
  4342. },
  4343. {
  4344. "name": "jjeff",
  4345. "homepage": "https://www.drupal.org/user/17190"
  4346. },
  4347. {
  4348. "name": "lauriii",
  4349. "homepage": "https://www.drupal.org/user/1078742"
  4350. },
  4351. {
  4352. "name": "litwol",
  4353. "homepage": "https://www.drupal.org/user/78134"
  4354. },
  4355. {
  4356. "name": "mfb",
  4357. "homepage": "https://www.drupal.org/user/12302"
  4358. },
  4359. {
  4360. "name": "mfer",
  4361. "homepage": "https://www.drupal.org/user/25701"
  4362. },
  4363. {
  4364. "name": "mikelutz",
  4365. "homepage": "https://www.drupal.org/user/2972409"
  4366. },
  4367. {
  4368. "name": "nod_",
  4369. "homepage": "https://www.drupal.org/user/598310"
  4370. },
  4371. {
  4372. "name": "phenaproxima",
  4373. "homepage": "https://www.drupal.org/user/205645"
  4374. },
  4375. {
  4376. "name": "RobLoach",
  4377. "homepage": "https://www.drupal.org/user/61114"
  4378. },
  4379. {
  4380. "name": "sun",
  4381. "homepage": "https://www.drupal.org/user/54136"
  4382. },
  4383. {
  4384. "name": "webchick",
  4385. "homepage": "https://www.drupal.org/user/24967"
  4386. },
  4387. {
  4388. "name": "Wim Leers",
  4389. "homepage": "https://www.drupal.org/user/99777"
  4390. },
  4391. {
  4392. "name": "zrpnr",
  4393. "homepage": "https://www.drupal.org/user/1448368"
  4394. }
  4395. ],
  4396. "description": "Provides jQuery UI library.",
  4397. "homepage": "https://www.drupal.org/project/jquery_ui",
  4398. "support": {
  4399. "source": "https://git.drupalcode.org/project/jquery_ui"
  4400. }
  4401. },
  4402. {
  4403. "name": "drupal/jquery_ui_draggable",
  4404. "version": "1.2.0",
  4405. "source": {
  4406. "type": "git",
  4407. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  4408. "reference": "8.x-1.2"
  4409. },
  4410. "dist": {
  4411. "type": "zip",
  4412. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-8.x-1.2.zip",
  4413. "reference": "8.x-1.2",
  4414. "shasum": "09e17046e38aebf84ed573822b0d5be6de3f0c94"
  4415. },
  4416. "require": {
  4417. "drupal/core": "^8 || ^9",
  4418. "drupal/jquery_ui": "*"
  4419. },
  4420. "type": "drupal-module",
  4421. "extra": {
  4422. "drupal": {
  4423. "version": "8.x-1.2",
  4424. "datestamp": "1582150027",
  4425. "security-coverage": {
  4426. "status": "covered",
  4427. "message": "Covered by Drupal's security advisory policy"
  4428. }
  4429. }
  4430. },
  4431. "notification-url": "https://packages.drupal.org/8/downloads",
  4432. "license": [
  4433. "GPL-2.0-or-later"
  4434. ],
  4435. "authors": [
  4436. {
  4437. "name": "bnjmnm",
  4438. "homepage": "https://www.drupal.org/user/2369194"
  4439. },
  4440. {
  4441. "name": "lauriii",
  4442. "homepage": "https://www.drupal.org/user/1078742"
  4443. },
  4444. {
  4445. "name": "zrpnr",
  4446. "homepage": "https://www.drupal.org/user/1448368"
  4447. }
  4448. ],
  4449. "description": "Provides jQuery UI Draggable library.",
  4450. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  4451. "support": {
  4452. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  4453. }
  4454. },
  4455. {
  4456. "name": "drupal/jquery_ui_droppable",
  4457. "version": "1.2.0",
  4458. "source": {
  4459. "type": "git",
  4460. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  4461. "reference": "8.x-1.2"
  4462. },
  4463. "dist": {
  4464. "type": "zip",
  4465. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-8.x-1.2.zip",
  4466. "reference": "8.x-1.2",
  4467. "shasum": "6e53043f2d3215f211721eea4d4c6ab5d1672b14"
  4468. },
  4469. "require": {
  4470. "drupal/core": "^8 || ^9",
  4471. "drupal/jquery_ui": "*",
  4472. "drupal/jquery_ui_draggable": "*"
  4473. },
  4474. "type": "drupal-module",
  4475. "extra": {
  4476. "drupal": {
  4477. "version": "8.x-1.2",
  4478. "datestamp": "1582150071",
  4479. "security-coverage": {
  4480. "status": "covered",
  4481. "message": "Covered by Drupal's security advisory policy"
  4482. }
  4483. }
  4484. },
  4485. "notification-url": "https://packages.drupal.org/8/downloads",
  4486. "license": [
  4487. "GPL-2.0-or-later"
  4488. ],
  4489. "authors": [
  4490. {
  4491. "name": "bnjmnm",
  4492. "homepage": "https://www.drupal.org/user/2369194"
  4493. },
  4494. {
  4495. "name": "lauriii",
  4496. "homepage": "https://www.drupal.org/user/1078742"
  4497. },
  4498. {
  4499. "name": "zrpnr",
  4500. "homepage": "https://www.drupal.org/user/1448368"
  4501. }
  4502. ],
  4503. "description": "Provides jQuery UI Droppable library.",
  4504. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  4505. "support": {
  4506. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  4507. }
  4508. },
  4509. {
  4510. "name": "drupal/jquery_ui_sortable",
  4511. "version": "1.1.0",
  4512. "source": {
  4513. "type": "git",
  4514. "url": "https://git.drupalcode.org/project/jquery_ui_sortable.git",
  4515. "reference": "8.x-1.1"
  4516. },
  4517. "dist": {
  4518. "type": "zip",
  4519. "url": "https://ftp.drupal.org/files/projects/jquery_ui_sortable-8.x-1.1.zip",
  4520. "reference": "8.x-1.1",
  4521. "shasum": "dbb64f4e8f57b08a3e0ddd2e5cc3ba8d27d2722f"
  4522. },
  4523. "require": {
  4524. "drupal/core": "^8 || ^9",
  4525. "drupal/jquery_ui": "*"
  4526. },
  4527. "type": "drupal-module",
  4528. "extra": {
  4529. "drupal": {
  4530. "version": "8.x-1.1",
  4531. "datestamp": "1583174744",
  4532. "security-coverage": {
  4533. "status": "covered",
  4534. "message": "Covered by Drupal's security advisory policy"
  4535. }
  4536. }
  4537. },
  4538. "notification-url": "https://packages.drupal.org/8/downloads",
  4539. "license": [
  4540. "GPL-2.0-or-later"
  4541. ],
  4542. "authors": [
  4543. {
  4544. "name": "bnjmnm",
  4545. "homepage": "https://www.drupal.org/user/2369194"
  4546. },
  4547. {
  4548. "name": "lauriii",
  4549. "homepage": "https://www.drupal.org/user/1078742"
  4550. },
  4551. {
  4552. "name": "zrpnr",
  4553. "homepage": "https://www.drupal.org/user/1448368"
  4554. }
  4555. ],
  4556. "description": "Provides jQuery UI Sortable library.",
  4557. "homepage": "https://www.drupal.org/project/jquery_ui_sortable",
  4558. "support": {
  4559. "source": "https://git.drupalcode.org/project/jquery_ui_sortable"
  4560. }
  4561. },
  4562. {
  4563. "name": "drupal/linkit",
  4564. "version": "6.0.0-beta3",
  4565. "source": {
  4566. "type": "git",
  4567. "url": "https://git.drupalcode.org/project/linkit.git",
  4568. "reference": "6.0.0-beta3"
  4569. },
  4570. "dist": {
  4571. "type": "zip",
  4572. "url": "https://ftp.drupal.org/files/projects/linkit-6.0.0-beta3.zip",
  4573. "reference": "6.0.0-beta3",
  4574. "shasum": "39a5bf54cbc88324d788a573df7b3fecf7622065"
  4575. },
  4576. "require": {
  4577. "drupal/core": "^8.7.7 || ^9"
  4578. },
  4579. "require-dev": {
  4580. "drupal/imce": "*"
  4581. },
  4582. "type": "drupal-module",
  4583. "extra": {
  4584. "drupal": {
  4585. "version": "6.0.0-beta3",
  4586. "datestamp": "1632946984",
  4587. "security-coverage": {
  4588. "status": "not-covered",
  4589. "message": "Beta releases are not covered by Drupal security advisories."
  4590. }
  4591. }
  4592. },
  4593. "notification-url": "https://packages.drupal.org/8/downloads",
  4594. "license": [
  4595. "GPL-2.0-or-later"
  4596. ],
  4597. "authors": [
  4598. {
  4599. "name": "Emil Stjerneman",
  4600. "homepage": "https://stjerneman.com",
  4601. "email": "emil@stjerneman.com",
  4602. "role": "Maintainer"
  4603. },
  4604. {
  4605. "name": "johnwebdev",
  4606. "homepage": "https://www.drupal.org/user/3331569"
  4607. },
  4608. {
  4609. "name": "mark_fullmer",
  4610. "homepage": "https://www.drupal.org/user/2612816"
  4611. }
  4612. ],
  4613. "description": "Linkit - Enriched linking experience",
  4614. "homepage": "http://drupal.org/project/linkit",
  4615. "support": {
  4616. "source": "http://cgit.drupalcode.org/linkit",
  4617. "issues": "http://drupal.org/project/linkit"
  4618. }
  4619. },
  4620. {
  4621. "name": "drupal/login_emailusername",
  4622. "version": "2.1.0",
  4623. "source": {
  4624. "type": "git",
  4625. "url": "https://git.drupalcode.org/project/login_emailusername.git",
  4626. "reference": "2.1.0"
  4627. },
  4628. "dist": {
  4629. "type": "zip",
  4630. "url": "https://ftp.drupal.org/files/projects/login_emailusername-2.1.0.zip",
  4631. "reference": "2.1.0",
  4632. "shasum": "5a3858d06e7d67110a6cd8eda38cbfeb350f115c"
  4633. },
  4634. "require": {
  4635. "drupal/core": "^8.8 || ^9 || ^10"
  4636. },
  4637. "type": "drupal-module",
  4638. "extra": {
  4639. "drupal": {
  4640. "version": "2.1.0",
  4641. "datestamp": "1677072401",
  4642. "security-coverage": {
  4643. "status": "covered",
  4644. "message": "Covered by Drupal's security advisory policy"
  4645. }
  4646. },
  4647. "branch-alias": {
  4648. "dev-8.x-1.x": "8.1.x-dev"
  4649. }
  4650. },
  4651. "notification-url": "https://packages.drupal.org/8/downloads",
  4652. "license": [
  4653. "GPL-2.0-or-later"
  4654. ],
  4655. "authors": [
  4656. {
  4657. "name": "See contributors",
  4658. "homepage": "https://www.drupal.org/node/2820429/committers",
  4659. "role": "contributor"
  4660. },
  4661. {
  4662. "name": "rjjakes",
  4663. "homepage": "https://www.drupal.org/user/3457245"
  4664. },
  4665. {
  4666. "name": "VladimirAus",
  4667. "homepage": "https://www.drupal.org/user/673120"
  4668. }
  4669. ],
  4670. "description": "Login with the email as username.",
  4671. "homepage": "https://drupal.org/project/login_emailusername",
  4672. "support": {
  4673. "source": "https://git.drupalcode.org/project/login_emailusername",
  4674. "issues": "https://drupal.org/project/issues/login_emailusername"
  4675. }
  4676. },
  4677. {
  4678. "name": "drupal/maillog",
  4679. "version": "1.0.0-beta1",
  4680. "source": {
  4681. "type": "git",
  4682. "url": "https://git.drupalcode.org/project/maillog.git",
  4683. "reference": "8.x-1.0-beta1"
  4684. },
  4685. "dist": {
  4686. "type": "zip",
  4687. "url": "https://ftp.drupal.org/files/projects/maillog-8.x-1.0-beta1.zip",
  4688. "reference": "8.x-1.0-beta1",
  4689. "shasum": "0af5fe6fcdc8053bd0a61561a2c69e69c2b1faf2"
  4690. },
  4691. "require": {
  4692. "drupal/core": "^8 || ^9"
  4693. },
  4694. "type": "drupal-module",
  4695. "extra": {
  4696. "drupal": {
  4697. "version": "8.x-1.0-beta1",
  4698. "datestamp": "1600800168",
  4699. "security-coverage": {
  4700. "status": "not-covered",
  4701. "message": "Beta releases are not covered by Drupal security advisories."
  4702. }
  4703. }
  4704. },
  4705. "notification-url": "https://packages.drupal.org/8/downloads",
  4706. "license": [
  4707. "GPL-2.0-or-later"
  4708. ],
  4709. "authors": [
  4710. {
  4711. "name": "berdir",
  4712. "homepage": "https://www.drupal.org/user/214652"
  4713. },
  4714. {
  4715. "name": "damienmckenna",
  4716. "homepage": "https://www.drupal.org/user/108450"
  4717. },
  4718. {
  4719. "name": "miro_dietiker",
  4720. "homepage": "https://www.drupal.org/user/227761"
  4721. },
  4722. {
  4723. "name": "pluess",
  4724. "homepage": "https://www.drupal.org/user/84659"
  4725. }
  4726. ],
  4727. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4728. "homepage": "https://www.drupal.org/project/maillog",
  4729. "support": {
  4730. "source": "https://git.drupalcode.org/project/maillog"
  4731. }
  4732. },
  4733. {
  4734. "name": "drupal/menu_admin_per_menu",
  4735. "version": "1.1.0",
  4736. "source": {
  4737. "type": "git",
  4738. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4739. "reference": "8.x-1.1"
  4740. },
  4741. "dist": {
  4742. "type": "zip",
  4743. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.1.zip",
  4744. "reference": "8.x-1.1",
  4745. "shasum": "a9522b06654faa2d9bd23f704c93e1093f3ff6ec"
  4746. },
  4747. "require": {
  4748. "drupal/core": "^8 || ^9"
  4749. },
  4750. "type": "drupal-module",
  4751. "extra": {
  4752. "drupal": {
  4753. "version": "8.x-1.1",
  4754. "datestamp": "1591098397",
  4755. "security-coverage": {
  4756. "status": "covered",
  4757. "message": "Covered by Drupal's security advisory policy"
  4758. }
  4759. }
  4760. },
  4761. "notification-url": "https://packages.drupal.org/8/downloads",
  4762. "license": [
  4763. "GPL-2.0-or-later"
  4764. ],
  4765. "authors": [
  4766. {
  4767. "name": "anrikun",
  4768. "homepage": "https://www.drupal.org/user/410199"
  4769. },
  4770. {
  4771. "name": "jeroent",
  4772. "homepage": "https://www.drupal.org/user/2228934"
  4773. },
  4774. {
  4775. "name": "jonas139",
  4776. "homepage": "https://www.drupal.org/user/2873401"
  4777. },
  4778. {
  4779. "name": "mkdok",
  4780. "homepage": "https://www.drupal.org/user/3308753"
  4781. }
  4782. ],
  4783. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4784. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4785. "support": {
  4786. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  4787. }
  4788. },
  4789. {
  4790. "name": "drupal/metatag",
  4791. "version": "1.16.0",
  4792. "source": {
  4793. "type": "git",
  4794. "url": "https://git.drupalcode.org/project/metatag.git",
  4795. "reference": "8.x-1.16"
  4796. },
  4797. "dist": {
  4798. "type": "zip",
  4799. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.16.zip",
  4800. "reference": "8.x-1.16",
  4801. "shasum": "1c0028f4ff4583dc6601035657dd631c351b290c"
  4802. },
  4803. "require": {
  4804. "drupal/core": "^8 || ^9",
  4805. "drupal/token": "^1.0"
  4806. },
  4807. "require-dev": {
  4808. "drupal/devel": "^4.0",
  4809. "drupal/metatag_dc": "*",
  4810. "drupal/metatag_open_graph": "*",
  4811. "drupal/page_manager": "4.x-dev",
  4812. "drupal/panelizer": "4.x-dev",
  4813. "drupal/redirect": "1.x-dev"
  4814. },
  4815. "type": "drupal-module",
  4816. "extra": {
  4817. "drupal": {
  4818. "version": "8.x-1.16",
  4819. "datestamp": "1615820867",
  4820. "security-coverage": {
  4821. "status": "covered",
  4822. "message": "Covered by Drupal's security advisory policy"
  4823. }
  4824. }
  4825. },
  4826. "notification-url": "https://packages.drupal.org/8/downloads",
  4827. "license": [
  4828. "GPL-2.0-or-later"
  4829. ],
  4830. "authors": [
  4831. {
  4832. "name": "See contributors",
  4833. "homepage": "https://www.drupal.org/node/640498/committers",
  4834. "role": "Developer"
  4835. },
  4836. {
  4837. "name": "dave reid",
  4838. "homepage": "https://www.drupal.org/user/53892"
  4839. }
  4840. ],
  4841. "description": "Manage meta tags for all entities.",
  4842. "homepage": "https://www.drupal.org/project/metatag",
  4843. "keywords": [
  4844. "Drupal",
  4845. "seo"
  4846. ],
  4847. "support": {
  4848. "source": "https://git.drupalcode.org/project/metatag",
  4849. "issues": "https://www.drupal.org/project/issues/metatag",
  4850. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  4851. }
  4852. },
  4853. {
  4854. "name": "drupal/pathauto",
  4855. "version": "1.10.0",
  4856. "source": {
  4857. "type": "git",
  4858. "url": "https://git.drupalcode.org/project/pathauto.git",
  4859. "reference": "8.x-1.10"
  4860. },
  4861. "dist": {
  4862. "type": "zip",
  4863. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.10.zip",
  4864. "reference": "8.x-1.10",
  4865. "shasum": "f49d5fbcd7a2c1b4de1da07194fe01d9012237ec"
  4866. },
  4867. "require": {
  4868. "drupal/core": "^8.8 || ^9",
  4869. "drupal/ctools": "*",
  4870. "drupal/token": "*"
  4871. },
  4872. "suggest": {
  4873. "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."
  4874. },
  4875. "type": "drupal-module",
  4876. "extra": {
  4877. "drupal": {
  4878. "version": "8.x-1.10",
  4879. "datestamp": "1650806739",
  4880. "security-coverage": {
  4881. "status": "covered",
  4882. "message": "Covered by Drupal's security advisory policy"
  4883. }
  4884. },
  4885. "drush": {
  4886. "services": {
  4887. "drush.services.yml": "^9 || ^10"
  4888. }
  4889. }
  4890. },
  4891. "notification-url": "https://packages.drupal.org/8/downloads",
  4892. "license": [
  4893. "GPL-2.0-or-later"
  4894. ],
  4895. "authors": [
  4896. {
  4897. "name": "Berdir",
  4898. "homepage": "https://www.drupal.org/user/214652"
  4899. },
  4900. {
  4901. "name": "Dave Reid",
  4902. "homepage": "https://www.drupal.org/user/53892"
  4903. },
  4904. {
  4905. "name": "Freso",
  4906. "homepage": "https://www.drupal.org/user/27504"
  4907. },
  4908. {
  4909. "name": "greggles",
  4910. "homepage": "https://www.drupal.org/user/36762"
  4911. }
  4912. ],
  4913. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4914. "homepage": "https://www.drupal.org/project/pathauto",
  4915. "support": {
  4916. "source": "https://cgit.drupalcode.org/pathauto",
  4917. "issues": "https://www.drupal.org/project/issues/pathauto",
  4918. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  4919. }
  4920. },
  4921. {
  4922. "name": "drupal/profile",
  4923. "version": "1.4.0",
  4924. "source": {
  4925. "type": "git",
  4926. "url": "https://git.drupalcode.org/project/profile.git",
  4927. "reference": "8.x-1.4"
  4928. },
  4929. "dist": {
  4930. "type": "zip",
  4931. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.4.zip",
  4932. "reference": "8.x-1.4",
  4933. "shasum": "253fd577c3b791c93747bb910ad2ae8e67d71eed"
  4934. },
  4935. "require": {
  4936. "drupal/core": "^8.9 || ^9 || ^10",
  4937. "drupal/entity": "^1.0-rc2"
  4938. },
  4939. "require-dev": {
  4940. "drupal/token": "^1.7"
  4941. },
  4942. "type": "drupal-module",
  4943. "extra": {
  4944. "drupal": {
  4945. "version": "8.x-1.4",
  4946. "datestamp": "1652430373",
  4947. "security-coverage": {
  4948. "status": "covered",
  4949. "message": "Covered by Drupal's security advisory policy"
  4950. }
  4951. }
  4952. },
  4953. "notification-url": "https://packages.drupal.org/8/downloads",
  4954. "license": [
  4955. "GPL-2.0-or-later"
  4956. ],
  4957. "authors": [
  4958. {
  4959. "name": "bojanz",
  4960. "homepage": "https://www.drupal.org/user/86106"
  4961. },
  4962. {
  4963. "name": "daggerhart",
  4964. "homepage": "https://www.drupal.org/user/167806"
  4965. },
  4966. {
  4967. "name": "fago",
  4968. "homepage": "https://www.drupal.org/user/16747"
  4969. },
  4970. {
  4971. "name": "jsacksick",
  4972. "homepage": "https://www.drupal.org/user/972218"
  4973. },
  4974. {
  4975. "name": "mglaman",
  4976. "homepage": "https://www.drupal.org/user/2416470"
  4977. },
  4978. {
  4979. "name": "pcambra",
  4980. "homepage": "https://www.drupal.org/user/122101"
  4981. }
  4982. ],
  4983. "description": "Provides configurable user profiles.",
  4984. "homepage": "http://drupal.org/project/profile",
  4985. "support": {
  4986. "source": "https://git.drupalcode.org/project/profile"
  4987. }
  4988. },
  4989. {
  4990. "name": "drupal/redirect",
  4991. "version": "1.7.0",
  4992. "source": {
  4993. "type": "git",
  4994. "url": "https://git.drupalcode.org/project/redirect.git",
  4995. "reference": "8.x-1.7"
  4996. },
  4997. "dist": {
  4998. "type": "zip",
  4999. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.7.zip",
  5000. "reference": "8.x-1.7",
  5001. "shasum": "013b2541a5ef0cf423a3caa1ae89cc5866504877"
  5002. },
  5003. "require": {
  5004. "drupal/core": "^8.8 || ^9"
  5005. },
  5006. "type": "drupal-module",
  5007. "extra": {
  5008. "drupal": {
  5009. "version": "8.x-1.7",
  5010. "datestamp": "1639380488",
  5011. "security-coverage": {
  5012. "status": "covered",
  5013. "message": "Covered by Drupal's security advisory policy"
  5014. }
  5015. }
  5016. },
  5017. "notification-url": "https://packages.drupal.org/8/downloads",
  5018. "license": [
  5019. "GPL-2.0-or-later"
  5020. ],
  5021. "authors": [
  5022. {
  5023. "name": "Berdir",
  5024. "homepage": "https://www.drupal.org/user/214652"
  5025. },
  5026. {
  5027. "name": "dave reid",
  5028. "homepage": "https://www.drupal.org/user/53892"
  5029. },
  5030. {
  5031. "name": "Kristen Pol",
  5032. "homepage": "https://www.drupal.org/user/8389"
  5033. },
  5034. {
  5035. "name": "pifagor",
  5036. "homepage": "https://www.drupal.org/user/2375692"
  5037. }
  5038. ],
  5039. "description": "Allows users to redirect from old URLs to new URLs.",
  5040. "homepage": "https://www.drupal.org/project/redirect",
  5041. "support": {
  5042. "source": "https://git.drupalcode.org/project/redirect"
  5043. }
  5044. },
  5045. {
  5046. "name": "drupal/redis",
  5047. "version": "1.5.0",
  5048. "source": {
  5049. "type": "git",
  5050. "url": "https://git.drupalcode.org/project/redis.git",
  5051. "reference": "8.x-1.5"
  5052. },
  5053. "dist": {
  5054. "type": "zip",
  5055. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.5.zip",
  5056. "reference": "8.x-1.5",
  5057. "shasum": "4283333dc2bf405045765b83ca662acc409a6543"
  5058. },
  5059. "require": {
  5060. "drupal/core": "^8.8 || ^9"
  5061. },
  5062. "suggest": {
  5063. "predis/predis": "^1.1.1"
  5064. },
  5065. "type": "drupal-module",
  5066. "extra": {
  5067. "drupal": {
  5068. "version": "8.x-1.5",
  5069. "datestamp": "1609972488",
  5070. "security-coverage": {
  5071. "status": "covered",
  5072. "message": "Covered by Drupal's security advisory policy"
  5073. }
  5074. }
  5075. },
  5076. "autoload": {
  5077. "psr-4": {
  5078. "Drupal\\redis\\": "src"
  5079. }
  5080. },
  5081. "notification-url": "https://packages.drupal.org/8/downloads",
  5082. "license": [
  5083. "GPL-2.0-or-later"
  5084. ],
  5085. "authors": [
  5086. {
  5087. "name": "berdir",
  5088. "homepage": "https://www.drupal.org/user/214652"
  5089. },
  5090. {
  5091. "name": "greg.1.anderson",
  5092. "homepage": "https://www.drupal.org/user/438598"
  5093. },
  5094. {
  5095. "name": "kporras07",
  5096. "homepage": "https://www.drupal.org/user/1349780"
  5097. },
  5098. {
  5099. "name": "pounard",
  5100. "homepage": "https://www.drupal.org/user/240164"
  5101. }
  5102. ],
  5103. "description": "Integration of Drupal with the Redis key-value store.",
  5104. "homepage": "https://www.drupal.org/project/redis",
  5105. "support": {
  5106. "source": "https://git.drupalcode.org/project/redis"
  5107. }
  5108. },
  5109. {
  5110. "name": "drupal/restui",
  5111. "version": "1.21.0",
  5112. "source": {
  5113. "type": "git",
  5114. "url": "https://git.drupalcode.org/project/restui.git",
  5115. "reference": "8.x-1.21"
  5116. },
  5117. "dist": {
  5118. "type": "zip",
  5119. "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.21.zip",
  5120. "reference": "8.x-1.21",
  5121. "shasum": "2a67dc2c1953dced0bddaff25e5c60784ee0178c"
  5122. },
  5123. "require": {
  5124. "drupal/core": "^8.7.7 || ^9 || ^10"
  5125. },
  5126. "type": "drupal-module",
  5127. "extra": {
  5128. "drupal": {
  5129. "version": "8.x-1.21",
  5130. "datestamp": "1659086914",
  5131. "security-coverage": {
  5132. "status": "covered",
  5133. "message": "Covered by Drupal's security advisory policy"
  5134. }
  5135. }
  5136. },
  5137. "notification-url": "https://packages.drupal.org/8/downloads",
  5138. "license": [
  5139. "GPL-2.0-or-later"
  5140. ],
  5141. "authors": [
  5142. {
  5143. "name": "-enzo-",
  5144. "homepage": "https://www.drupal.org/user/294937"
  5145. },
  5146. {
  5147. "name": "clemens.tolboom",
  5148. "homepage": "https://www.drupal.org/user/125814"
  5149. },
  5150. {
  5151. "name": "juampynr",
  5152. "homepage": "https://www.drupal.org/user/682736"
  5153. },
  5154. {
  5155. "name": "kamkejj",
  5156. "homepage": "https://www.drupal.org/user/81043"
  5157. },
  5158. {
  5159. "name": "vipin.mittal18",
  5160. "homepage": "https://www.drupal.org/user/319716"
  5161. }
  5162. ],
  5163. "description": "Provides a user interface to manage REST resources.",
  5164. "homepage": "https://www.drupal.org/project/restui",
  5165. "support": {
  5166. "source": "https://git.drupalcode.org/project/restui"
  5167. }
  5168. },
  5169. {
  5170. "name": "drupal/search_api",
  5171. "version": "1.23.0",
  5172. "source": {
  5173. "type": "git",
  5174. "url": "https://git.drupalcode.org/project/search_api.git",
  5175. "reference": "8.x-1.23"
  5176. },
  5177. "dist": {
  5178. "type": "zip",
  5179. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.23.zip",
  5180. "reference": "8.x-1.23",
  5181. "shasum": "7de5425bba5b8daa37e98d47b677459dfb1abbe7"
  5182. },
  5183. "require": {
  5184. "drupal/core": "^8.8 || ^9"
  5185. },
  5186. "conflict": {
  5187. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  5188. },
  5189. "require-dev": {
  5190. "drupal/language_fallback_fix": "@dev",
  5191. "drupal/search_api_autocomplete": "@dev",
  5192. "drupal/search_api_db": "*"
  5193. },
  5194. "suggest": {
  5195. "drupal/facets": "Adds the ability to create faceted searches.",
  5196. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  5197. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  5198. },
  5199. "type": "drupal-module",
  5200. "extra": {
  5201. "drupal": {
  5202. "version": "8.x-1.23",
  5203. "datestamp": "1642935837",
  5204. "security-coverage": {
  5205. "status": "covered",
  5206. "message": "Covered by Drupal's security advisory policy"
  5207. }
  5208. },
  5209. "drush": {
  5210. "services": {
  5211. "drush.services.yml": "^9 || ^10"
  5212. }
  5213. }
  5214. },
  5215. "notification-url": "https://packages.drupal.org/8/downloads",
  5216. "license": [
  5217. "GPL-2.0-or-later"
  5218. ],
  5219. "authors": [
  5220. {
  5221. "name": "Thomas Seidl",
  5222. "homepage": "https://www.drupal.org/u/drunken-monkey"
  5223. },
  5224. {
  5225. "name": "Nick Veenhof",
  5226. "homepage": "https://www.drupal.org/u/nick_vh"
  5227. },
  5228. {
  5229. "name": "See other contributors",
  5230. "homepage": "https://www.drupal.org/node/790418/committers"
  5231. }
  5232. ],
  5233. "description": "Provides a generic framework for modules offering search capabilities.",
  5234. "homepage": "https://www.drupal.org/project/search_api",
  5235. "support": {
  5236. "source": "https://git.drupalcode.org/project/search_api",
  5237. "issues": "https://www.drupal.org/project/issues/search_api",
  5238. "irc": "irc://irc.freenode.org/drupal-search-api"
  5239. }
  5240. },
  5241. {
  5242. "name": "drupal/simple_sitemap",
  5243. "version": "3.11.0",
  5244. "source": {
  5245. "type": "git",
  5246. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  5247. "reference": "8.x-3.11"
  5248. },
  5249. "dist": {
  5250. "type": "zip",
  5251. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-8.x-3.11.zip",
  5252. "reference": "8.x-3.11",
  5253. "shasum": "5fdd4ed5af5e37e3c707e401d094a179f52e7711"
  5254. },
  5255. "require": {
  5256. "drupal/core": "^8 || ^9",
  5257. "ext-xmlwriter": "*"
  5258. },
  5259. "type": "drupal-module",
  5260. "extra": {
  5261. "drupal": {
  5262. "version": "8.x-3.11",
  5263. "datestamp": "1658781789",
  5264. "security-coverage": {
  5265. "status": "covered",
  5266. "message": "Covered by Drupal's security advisory policy"
  5267. }
  5268. },
  5269. "drush": {
  5270. "services": {
  5271. "drush.services.yml": "^9 || ^10"
  5272. }
  5273. }
  5274. },
  5275. "notification-url": "https://packages.drupal.org/8/downloads",
  5276. "license": [
  5277. "GPL-2.0-or-later"
  5278. ],
  5279. "authors": [
  5280. {
  5281. "name": "Pawel Ginalski (gbyte)",
  5282. "homepage": "https://www.drupal.org/u/gbyte",
  5283. "email": "contact@gbyte.dev",
  5284. "role": "Maintainer"
  5285. },
  5286. {
  5287. "name": "walkingdexter",
  5288. "homepage": "https://www.drupal.org/user/3251330"
  5289. }
  5290. ],
  5291. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  5292. "homepage": "https://drupal.org/project/simple_sitemap",
  5293. "support": {
  5294. "source": "https://cgit.drupalcode.org/simple_sitemap",
  5295. "issues": "https://drupal.org/project/issues/simple_sitemap",
  5296. "irc": "irc://irc.freenode.org/drupal-contribute"
  5297. }
  5298. },
  5299. {
  5300. "name": "drupal/synonyms",
  5301. "version": "1.0.0-alpha3",
  5302. "source": {
  5303. "type": "git",
  5304. "url": "https://git.drupalcode.org/project/synonyms.git",
  5305. "reference": "8.x-1.0-alpha3"
  5306. },
  5307. "dist": {
  5308. "type": "zip",
  5309. "url": "https://ftp.drupal.org/files/projects/synonyms-8.x-1.0-alpha3.zip",
  5310. "reference": "8.x-1.0-alpha3",
  5311. "shasum": "0306a9dfb279c0594246b49658309c1686e984a9"
  5312. },
  5313. "require": {
  5314. "drupal/core": "^8 || ^9"
  5315. },
  5316. "type": "drupal-module",
  5317. "extra": {
  5318. "drupal": {
  5319. "version": "8.x-1.0-alpha3",
  5320. "datestamp": "1609623594",
  5321. "security-coverage": {
  5322. "status": "not-covered",
  5323. "message": "Alpha releases are not covered by Drupal security advisories."
  5324. }
  5325. }
  5326. },
  5327. "notification-url": "https://packages.drupal.org/8/downloads",
  5328. "license": [
  5329. "GPL-2.0-or-later"
  5330. ],
  5331. "authors": [
  5332. {
  5333. "name": "bojanz",
  5334. "homepage": "https://www.drupal.org/user/86106"
  5335. },
  5336. {
  5337. "name": "bucefal91",
  5338. "homepage": "https://www.drupal.org/user/504128"
  5339. },
  5340. {
  5341. "name": "devad",
  5342. "homepage": "https://www.drupal.org/user/2268520"
  5343. },
  5344. {
  5345. "name": "Zen",
  5346. "homepage": "https://www.drupal.org/user/21209"
  5347. }
  5348. ],
  5349. "description": "Provides synonyms feature for content entities.",
  5350. "homepage": "https://www.drupal.org/project/synonyms",
  5351. "support": {
  5352. "source": "https://git.drupalcode.org/project/synonyms"
  5353. }
  5354. },
  5355. {
  5356. "name": "drupal/token",
  5357. "version": "1.10.0",
  5358. "source": {
  5359. "type": "git",
  5360. "url": "https://git.drupalcode.org/project/token.git",
  5361. "reference": "8.x-1.10"
  5362. },
  5363. "dist": {
  5364. "type": "zip",
  5365. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.10.zip",
  5366. "reference": "8.x-1.10",
  5367. "shasum": "8b81224ab0420221b292e8d3b66d0da726317400"
  5368. },
  5369. "require": {
  5370. "drupal/core": "^8.8 || ^9"
  5371. },
  5372. "type": "drupal-module",
  5373. "extra": {
  5374. "drupal": {
  5375. "version": "8.x-1.10",
  5376. "datestamp": "1638619775",
  5377. "security-coverage": {
  5378. "status": "covered",
  5379. "message": "Covered by Drupal's security advisory policy"
  5380. }
  5381. },
  5382. "drush": {
  5383. "services": {
  5384. "drush.services.yml": "^9 || ^10"
  5385. }
  5386. }
  5387. },
  5388. "notification-url": "https://packages.drupal.org/8/downloads",
  5389. "license": [
  5390. "GPL-2.0-or-later"
  5391. ],
  5392. "authors": [
  5393. {
  5394. "name": "Berdir",
  5395. "homepage": "https://www.drupal.org/user/214652"
  5396. },
  5397. {
  5398. "name": "Dave Reid",
  5399. "homepage": "https://www.drupal.org/user/53892"
  5400. },
  5401. {
  5402. "name": "eaton",
  5403. "homepage": "https://www.drupal.org/user/16496"
  5404. },
  5405. {
  5406. "name": "fago",
  5407. "homepage": "https://www.drupal.org/user/16747"
  5408. },
  5409. {
  5410. "name": "greggles",
  5411. "homepage": "https://www.drupal.org/user/36762"
  5412. },
  5413. {
  5414. "name": "mikeryan",
  5415. "homepage": "https://www.drupal.org/user/4420"
  5416. }
  5417. ],
  5418. "description": "Provides a user interface for the Token API, some missing core tokens.",
  5419. "homepage": "https://www.drupal.org/project/token",
  5420. "support": {
  5421. "source": "https://git.drupalcode.org/project/token"
  5422. }
  5423. },
  5424. {
  5425. "name": "drupal/translation_views",
  5426. "version": "1.0.0-alpha11",
  5427. "source": {
  5428. "type": "git",
  5429. "url": "https://git.drupalcode.org/project/translation_views.git",
  5430. "reference": "8.x-1.0-alpha11"
  5431. },
  5432. "dist": {
  5433. "type": "zip",
  5434. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  5435. "reference": "8.x-1.0-alpha11",
  5436. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  5437. },
  5438. "require": {
  5439. "drupal/core": "^8.8 || ^9 || ^10"
  5440. },
  5441. "require-dev": {
  5442. "drupal/translators_content": "^1.0@alpha"
  5443. },
  5444. "type": "drupal-module",
  5445. "extra": {
  5446. "drupal": {
  5447. "version": "8.x-1.0-alpha11",
  5448. "datestamp": "1679660668",
  5449. "security-coverage": {
  5450. "status": "not-covered",
  5451. "message": "Project has not opted into security advisory coverage!"
  5452. }
  5453. }
  5454. },
  5455. "notification-url": "https://packages.drupal.org/8/downloads",
  5456. "license": [
  5457. "GPL-2.0-or-later"
  5458. ],
  5459. "authors": [
  5460. {
  5461. "name": "matsbla",
  5462. "homepage": "https://www.drupal.org/user/2325394"
  5463. },
  5464. {
  5465. "name": "vlad.dancer",
  5466. "homepage": "https://www.drupal.org/user/903844"
  5467. }
  5468. ],
  5469. "description": "Create customized lists and queries of translations from your database.",
  5470. "homepage": "https://www.drupal.org/project/translation_views",
  5471. "support": {
  5472. "source": "https://git.drupalcode.org/project/translation_views"
  5473. }
  5474. },
  5475. {
  5476. "name": "drupal/upgrade_status",
  5477. "version": "3.19.0",
  5478. "source": {
  5479. "type": "git",
  5480. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  5481. "reference": "8.x-3.19"
  5482. },
  5483. "dist": {
  5484. "type": "zip",
  5485. "url": "https://ftp.drupal.org/files/projects/upgrade_status-8.x-3.19.zip",
  5486. "reference": "8.x-3.19",
  5487. "shasum": "e155b34b80f2782778b841d72639bd0ac8b923f9"
  5488. },
  5489. "require": {
  5490. "drupal/core": "^8 || ^9",
  5491. "mathieuviossat/arraytotexttable": "~1.0.0",
  5492. "mglaman/phpstan-drupal": "^1.0.0",
  5493. "nikic/php-parser": "^4.0.0",
  5494. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  5495. "symfony/process": "^3.4|^4.0|^5.0|^6.0",
  5496. "webflo/drupal-finder": "^1.2"
  5497. },
  5498. "type": "drupal-module",
  5499. "extra": {
  5500. "drupal": {
  5501. "version": "8.x-3.19",
  5502. "datestamp": "1678815320",
  5503. "security-coverage": {
  5504. "status": "covered",
  5505. "message": "Covered by Drupal's security advisory policy"
  5506. }
  5507. },
  5508. "drush": {
  5509. "services": {
  5510. "drush.services.yml": "^9 || ^10"
  5511. }
  5512. }
  5513. },
  5514. "notification-url": "https://packages.drupal.org/8/downloads",
  5515. "license": [
  5516. "GPL-2.0-or-later"
  5517. ],
  5518. "authors": [
  5519. {
  5520. "name": "Gábor Hojtsy",
  5521. "homepage": "https://www.drupal.org/user/4166"
  5522. }
  5523. ],
  5524. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  5525. "homepage": "http://drupal.org/project/upgrade_status",
  5526. "support": {
  5527. "source": "https://git.drupalcode.org/project/upgrade_status"
  5528. }
  5529. },
  5530. {
  5531. "name": "drupal/url_to_video_filter",
  5532. "version": "2.0.0",
  5533. "source": {
  5534. "type": "git",
  5535. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  5536. "reference": "2.0.0"
  5537. },
  5538. "dist": {
  5539. "type": "zip",
  5540. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-2.0.0.zip",
  5541. "reference": "2.0.0",
  5542. "shasum": "ac728919cc220846d8ef2ce61dbe1b94fbbf479b"
  5543. },
  5544. "require": {
  5545. "drupal/core": "^8 || ^9"
  5546. },
  5547. "type": "drupal-module",
  5548. "extra": {
  5549. "drupal": {
  5550. "version": "2.0.0",
  5551. "datestamp": "1607298389",
  5552. "security-coverage": {
  5553. "status": "covered",
  5554. "message": "Covered by Drupal's security advisory policy"
  5555. }
  5556. }
  5557. },
  5558. "notification-url": "https://packages.drupal.org/8/downloads",
  5559. "license": [
  5560. "GPL-2.0-or-later"
  5561. ],
  5562. "authors": [
  5563. {
  5564. "name": "Jaypan",
  5565. "homepage": "https://www.drupal.org/user/324696"
  5566. }
  5567. ],
  5568. "description": "Text filter to convert URLs to embedded videos",
  5569. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  5570. "support": {
  5571. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  5572. }
  5573. },
  5574. {
  5575. "name": "drupal/views_bulk_edit",
  5576. "version": "2.7.0",
  5577. "source": {
  5578. "type": "git",
  5579. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5580. "reference": "8.x-2.7"
  5581. },
  5582. "dist": {
  5583. "type": "zip",
  5584. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.7.zip",
  5585. "reference": "8.x-2.7",
  5586. "shasum": "148457820e7ecd78942326c9c799147ed440f2a6"
  5587. },
  5588. "require": {
  5589. "drupal/core": "^8 || ^9"
  5590. },
  5591. "require-dev": {
  5592. "drupal/views_bulk_operations": "~3.0"
  5593. },
  5594. "suggest": {
  5595. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  5596. },
  5597. "type": "drupal-module",
  5598. "extra": {
  5599. "drupal": {
  5600. "version": "8.x-2.7",
  5601. "datestamp": "1664355764",
  5602. "security-coverage": {
  5603. "status": "covered",
  5604. "message": "Covered by Drupal's security advisory policy"
  5605. }
  5606. }
  5607. },
  5608. "notification-url": "https://packages.drupal.org/8/downloads",
  5609. "license": [
  5610. "GPL-2.0+"
  5611. ],
  5612. "authors": [
  5613. {
  5614. "name": "Marcin Grabias",
  5615. "homepage": "https://www.drupal.org/u/graber"
  5616. },
  5617. {
  5618. "name": "benjy",
  5619. "homepage": "https://www.drupal.org/user/1852732"
  5620. },
  5621. {
  5622. "name": "graber",
  5623. "homepage": "https://www.drupal.org/user/1599440"
  5624. },
  5625. {
  5626. "name": "grevil",
  5627. "homepage": "https://www.drupal.org/user/3668491"
  5628. },
  5629. {
  5630. "name": "joseph.olstad",
  5631. "homepage": "https://www.drupal.org/user/1321830"
  5632. }
  5633. ],
  5634. "description": "Allows bulk edition of entity field values.",
  5635. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5636. "support": {
  5637. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5638. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5639. }
  5640. },
  5641. {
  5642. "name": "drupal/views_bulk_operations",
  5643. "version": "3.13.0",
  5644. "source": {
  5645. "type": "git",
  5646. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5647. "reference": "8.x-3.13"
  5648. },
  5649. "dist": {
  5650. "type": "zip",
  5651. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.13.zip",
  5652. "reference": "8.x-3.13",
  5653. "shasum": "70583d08b91be3b5e008f571589425c2176eb73b"
  5654. },
  5655. "require": {
  5656. "drupal/core": "^8.8 || ^9"
  5657. },
  5658. "require-dev": {
  5659. "drush/drush": "^10"
  5660. },
  5661. "suggest": {
  5662. "drush/drush": "^9 || ^10"
  5663. },
  5664. "type": "drupal-module",
  5665. "extra": {
  5666. "drupal": {
  5667. "version": "8.x-3.13",
  5668. "datestamp": "1619697066",
  5669. "security-coverage": {
  5670. "status": "covered",
  5671. "message": "Covered by Drupal's security advisory policy"
  5672. }
  5673. },
  5674. "drush": {
  5675. "services": {
  5676. "drush.services.yml": "^9 || ^10"
  5677. }
  5678. }
  5679. },
  5680. "notification-url": "https://packages.drupal.org/8/downloads",
  5681. "license": [
  5682. "GPL-2.0-or-later"
  5683. ],
  5684. "authors": [
  5685. {
  5686. "name": "Marcin Grabias",
  5687. "homepage": "https://www.drupal.org/u/graber"
  5688. },
  5689. {
  5690. "name": "Graber",
  5691. "homepage": "https://www.drupal.org/user/1599440"
  5692. },
  5693. {
  5694. "name": "joelpittet",
  5695. "homepage": "https://www.drupal.org/user/160302"
  5696. }
  5697. ],
  5698. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5699. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5700. "support": {
  5701. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  5702. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5703. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5704. }
  5705. },
  5706. {
  5707. "name": "drupal/workflow",
  5708. "version": "1.6.0",
  5709. "source": {
  5710. "type": "git",
  5711. "url": "https://git.drupalcode.org/project/workflow.git",
  5712. "reference": "8.x-1.6"
  5713. },
  5714. "dist": {
  5715. "type": "zip",
  5716. "url": "https://ftp.drupal.org/files/projects/workflow-8.x-1.6.zip",
  5717. "reference": "8.x-1.6",
  5718. "shasum": "a798b9e85cd267d7e9a7d44b9e883ecbcdad1406"
  5719. },
  5720. "require": {
  5721. "drupal/core": "^8.8 || ^9"
  5722. },
  5723. "type": "drupal-module",
  5724. "extra": {
  5725. "drupal": {
  5726. "version": "8.x-1.6",
  5727. "datestamp": "1671818949",
  5728. "security-coverage": {
  5729. "status": "covered",
  5730. "message": "Covered by Drupal's security advisory policy"
  5731. }
  5732. }
  5733. },
  5734. "notification-url": "https://packages.drupal.org/8/downloads",
  5735. "license": [
  5736. "GPL-2.0-or-later"
  5737. ],
  5738. "authors": [
  5739. {
  5740. "name": "Bastlynn",
  5741. "homepage": "https://www.drupal.org/user/275249"
  5742. },
  5743. {
  5744. "name": "eaton",
  5745. "homepage": "https://www.drupal.org/user/16496"
  5746. },
  5747. {
  5748. "name": "Heine",
  5749. "homepage": "https://www.drupal.org/user/17943"
  5750. },
  5751. {
  5752. "name": "JacobSingh",
  5753. "homepage": "https://www.drupal.org/user/68912"
  5754. },
  5755. {
  5756. "name": "johnv",
  5757. "homepage": "https://www.drupal.org/user/591042"
  5758. },
  5759. {
  5760. "name": "jvandyk",
  5761. "homepage": "https://www.drupal.org/user/2375"
  5762. },
  5763. {
  5764. "name": "mfredrickson",
  5765. "homepage": "https://www.drupal.org/user/31994"
  5766. },
  5767. {
  5768. "name": "NancyDru",
  5769. "homepage": "https://www.drupal.org/user/101412"
  5770. },
  5771. {
  5772. "name": "q0rban",
  5773. "homepage": "https://www.drupal.org/user/31022"
  5774. }
  5775. ],
  5776. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5777. "homepage": "https://www.drupal.org/project/workflow",
  5778. "support": {
  5779. "source": "https://git.drupalcode.org/project/workflow"
  5780. }
  5781. },
  5782. {
  5783. "name": "drush/drush",
  5784. "version": "10.6.2",
  5785. "source": {
  5786. "type": "git",
  5787. "url": "https://github.com/drush-ops/drush.git",
  5788. "reference": "0a570a16ec63259eb71195aba5feab532318b337"
  5789. },
  5790. "dist": {
  5791. "type": "zip",
  5792. "url": "https://api.github.com/repos/drush-ops/drush/zipball/0a570a16ec63259eb71195aba5feab532318b337",
  5793. "reference": "0a570a16ec63259eb71195aba5feab532318b337",
  5794. "shasum": ""
  5795. },
  5796. "require": {
  5797. "chi-teck/drupal-code-generator": "^1.32.1",
  5798. "composer/semver": "^1.4 || ^3",
  5799. "consolidation/config": "^1.2",
  5800. "consolidation/filter-via-dot-access-data": "^1",
  5801. "consolidation/robo": "^1.4.11 || ^2 || ^3",
  5802. "consolidation/site-alias": "^3.0.0@stable",
  5803. "consolidation/site-process": "^2.1 || ^4",
  5804. "enlightn/security-checker": "^1",
  5805. "ext-dom": "*",
  5806. "grasmash/yaml-expander": "^1.1.1",
  5807. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  5808. "league/container": "^2.5 || ^3.4",
  5809. "php": ">=7.1.3",
  5810. "psr/log": "~1.0",
  5811. "psy/psysh": ">=0.6 <0.11",
  5812. "symfony/event-dispatcher": "^3.4 || ^4.0",
  5813. "symfony/finder": "^3.4 || ^4.0 || ^5",
  5814. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0",
  5815. "symfony/yaml": "^3.4 || ^4.0",
  5816. "webflo/drupal-finder": "^1.2",
  5817. "webmozart/path-util": "^2.1.0"
  5818. },
  5819. "conflict": {
  5820. "drupal/migrate_run": "*",
  5821. "drupal/migrate_tools": "<= 5"
  5822. },
  5823. "require-dev": {
  5824. "composer/installers": "^1.7",
  5825. "cweagans/composer-patches": "~1.0",
  5826. "david-garcia/phpwhois": "4.3.0",
  5827. "drupal/alinks": "1.0.0",
  5828. "drupal/core-recommended": "^8.8",
  5829. "phpunit/phpunit": ">=7.5.20",
  5830. "squizlabs/php_codesniffer": "^2.7 || ^3",
  5831. "vlucas/phpdotenv": "^2.4",
  5832. "yoast/phpunit-polyfills": "^0.2.0"
  5833. },
  5834. "bin": [
  5835. "drush"
  5836. ],
  5837. "type": "library",
  5838. "extra": {
  5839. "installer-paths": {
  5840. "sut/core": [
  5841. "type:drupal-core"
  5842. ],
  5843. "sut/libraries/{$name}": [
  5844. "type:drupal-library"
  5845. ],
  5846. "sut/modules/unish/{$name}": [
  5847. "drupal/devel"
  5848. ],
  5849. "sut/themes/unish/{$name}": [
  5850. "drupal/empty_theme"
  5851. ],
  5852. "sut/modules/contrib/{$name}": [
  5853. "type:drupal-module"
  5854. ],
  5855. "sut/profiles/contrib/{$name}": [
  5856. "type:drupal-profile"
  5857. ],
  5858. "sut/themes/contrib/{$name}": [
  5859. "type:drupal-theme"
  5860. ],
  5861. "sut/drush/contrib/{$name}": [
  5862. "type:drupal-drush"
  5863. ]
  5864. }
  5865. },
  5866. "autoload": {
  5867. "psr-4": {
  5868. "Drush\\": "src/",
  5869. "Drush\\Internal\\": "src/internal-forks"
  5870. }
  5871. },
  5872. "notification-url": "https://packagist.org/downloads/",
  5873. "license": [
  5874. "GPL-2.0-or-later"
  5875. ],
  5876. "authors": [
  5877. {
  5878. "name": "Moshe Weitzman",
  5879. "email": "weitzman@tejasa.com"
  5880. },
  5881. {
  5882. "name": "Owen Barton",
  5883. "email": "drupal@owenbarton.com"
  5884. },
  5885. {
  5886. "name": "Greg Anderson",
  5887. "email": "greg.1.anderson@greenknowe.org"
  5888. },
  5889. {
  5890. "name": "Jonathan Araña Cruz",
  5891. "email": "jonhattan@faita.net"
  5892. },
  5893. {
  5894. "name": "Jonathan Hedstrom",
  5895. "email": "jhedstrom@gmail.com"
  5896. },
  5897. {
  5898. "name": "Christopher Gervais",
  5899. "email": "chris@ergonlogic.com"
  5900. },
  5901. {
  5902. "name": "Dave Reid",
  5903. "email": "dave@davereid.net"
  5904. },
  5905. {
  5906. "name": "Damian Lee",
  5907. "email": "damiankloip@googlemail.com"
  5908. }
  5909. ],
  5910. "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.",
  5911. "homepage": "http://www.drush.org",
  5912. "support": {
  5913. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  5914. "irc": "irc://irc.freenode.org/drush",
  5915. "issues": "https://github.com/drush-ops/drush/issues",
  5916. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  5917. "source": "https://github.com/drush-ops/drush/tree/10.6.2"
  5918. },
  5919. "funding": [
  5920. {
  5921. "url": "https://github.com/weitzman",
  5922. "type": "github"
  5923. }
  5924. ],
  5925. "time": "2021-12-15T17:09:54+00:00"
  5926. },
  5927. {
  5928. "name": "egulias/email-validator",
  5929. "version": "2.1.22",
  5930. "source": {
  5931. "type": "git",
  5932. "url": "https://github.com/egulias/EmailValidator.git",
  5933. "reference": "68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5"
  5934. },
  5935. "dist": {
  5936. "type": "zip",
  5937. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5",
  5938. "reference": "68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5",
  5939. "shasum": ""
  5940. },
  5941. "require": {
  5942. "doctrine/lexer": "^1.0.1",
  5943. "php": ">=5.5",
  5944. "symfony/polyfill-intl-idn": "^1.10"
  5945. },
  5946. "require-dev": {
  5947. "dominicsayers/isemail": "^3.0.7",
  5948. "phpunit/phpunit": "^4.8.36|^7.5.15",
  5949. "satooshi/php-coveralls": "^1.0.1"
  5950. },
  5951. "suggest": {
  5952. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  5953. },
  5954. "type": "library",
  5955. "extra": {
  5956. "branch-alias": {
  5957. "dev-master": "2.1.x-dev"
  5958. }
  5959. },
  5960. "autoload": {
  5961. "psr-4": {
  5962. "Egulias\\EmailValidator\\": "src"
  5963. }
  5964. },
  5965. "notification-url": "https://packagist.org/downloads/",
  5966. "license": [
  5967. "MIT"
  5968. ],
  5969. "authors": [
  5970. {
  5971. "name": "Eduardo Gulias Davis"
  5972. }
  5973. ],
  5974. "description": "A library for validating emails against several RFCs",
  5975. "homepage": "https://github.com/egulias/EmailValidator",
  5976. "keywords": [
  5977. "email",
  5978. "emailvalidation",
  5979. "emailvalidator",
  5980. "validation",
  5981. "validator"
  5982. ],
  5983. "support": {
  5984. "issues": "https://github.com/egulias/EmailValidator/issues",
  5985. "source": "https://github.com/egulias/EmailValidator/tree/2.1.22"
  5986. },
  5987. "time": "2020-09-26T15:48:38+00:00"
  5988. },
  5989. {
  5990. "name": "enlightn/security-checker",
  5991. "version": "v1.11.0",
  5992. "source": {
  5993. "type": "git",
  5994. "url": "https://github.com/enlightn/security-checker.git",
  5995. "reference": "68df5c7256c84b428bf8fcff0d249de06ce362d2"
  5996. },
  5997. "dist": {
  5998. "type": "zip",
  5999. "url": "https://api.github.com/repos/enlightn/security-checker/zipball/68df5c7256c84b428bf8fcff0d249de06ce362d2",
  6000. "reference": "68df5c7256c84b428bf8fcff0d249de06ce362d2",
  6001. "shasum": ""
  6002. },
  6003. "require": {
  6004. "ext-json": "*",
  6005. "guzzlehttp/guzzle": "^6.3|^7.0",
  6006. "php": ">=5.6",
  6007. "symfony/console": "^3.4|^4|^5|^6|^7",
  6008. "symfony/finder": "^3|^4|^5|^6|^7",
  6009. "symfony/process": "^3.4|^4|^5|^6|^7",
  6010. "symfony/yaml": "^3.4|^4|^5|^6|^7"
  6011. },
  6012. "require-dev": {
  6013. "ext-zip": "*",
  6014. "friendsofphp/php-cs-fixer": "^2.18|^3.0",
  6015. "phpunit/phpunit": "^5.5|^6|^7|^8|^9"
  6016. },
  6017. "bin": [
  6018. "security-checker"
  6019. ],
  6020. "type": "library",
  6021. "autoload": {
  6022. "psr-4": {
  6023. "Enlightn\\SecurityChecker\\": "src"
  6024. }
  6025. },
  6026. "notification-url": "https://packagist.org/downloads/",
  6027. "license": [
  6028. "MIT"
  6029. ],
  6030. "authors": [
  6031. {
  6032. "name": "Paras Malhotra",
  6033. "email": "paras@laravel-enlightn.com"
  6034. },
  6035. {
  6036. "name": "Miguel Piedrafita",
  6037. "email": "soy@miguelpiedrafita.com"
  6038. }
  6039. ],
  6040. "description": "A PHP dependency vulnerabilities scanner based on the Security Advisories Database.",
  6041. "keywords": [
  6042. "package",
  6043. "php",
  6044. "scanner",
  6045. "security",
  6046. "security advisories",
  6047. "vulnerability scanner"
  6048. ],
  6049. "support": {
  6050. "issues": "https://github.com/enlightn/security-checker/issues",
  6051. "source": "https://github.com/enlightn/security-checker/tree/v1.11.0"
  6052. },
  6053. "time": "2023-11-17T07:53:29+00:00"
  6054. },
  6055. {
  6056. "name": "grasmash/expander",
  6057. "version": "1.0.0",
  6058. "source": {
  6059. "type": "git",
  6060. "url": "https://github.com/grasmash/expander.git",
  6061. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  6062. },
  6063. "dist": {
  6064. "type": "zip",
  6065. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  6066. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  6067. "shasum": ""
  6068. },
  6069. "require": {
  6070. "dflydev/dot-access-data": "^1.1.0",
  6071. "php": ">=5.4"
  6072. },
  6073. "require-dev": {
  6074. "greg-1-anderson/composer-test-scenarios": "^1",
  6075. "phpunit/phpunit": "^4|^5.5.4",
  6076. "satooshi/php-coveralls": "^1.0.2|dev-master",
  6077. "squizlabs/php_codesniffer": "^2.7"
  6078. },
  6079. "type": "library",
  6080. "extra": {
  6081. "branch-alias": {
  6082. "dev-master": "1.x-dev"
  6083. }
  6084. },
  6085. "autoload": {
  6086. "psr-4": {
  6087. "Grasmash\\Expander\\": "src/"
  6088. }
  6089. },
  6090. "notification-url": "https://packagist.org/downloads/",
  6091. "license": [
  6092. "MIT"
  6093. ],
  6094. "authors": [
  6095. {
  6096. "name": "Matthew Grasmick"
  6097. }
  6098. ],
  6099. "description": "Expands internal property references in PHP arrays file.",
  6100. "support": {
  6101. "issues": "https://github.com/grasmash/expander/issues",
  6102. "source": "https://github.com/grasmash/expander/tree/master"
  6103. },
  6104. "time": "2017-12-21T22:14:55+00:00"
  6105. },
  6106. {
  6107. "name": "grasmash/yaml-expander",
  6108. "version": "1.4.0",
  6109. "source": {
  6110. "type": "git",
  6111. "url": "https://github.com/grasmash/yaml-expander.git",
  6112. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  6113. },
  6114. "dist": {
  6115. "type": "zip",
  6116. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  6117. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  6118. "shasum": ""
  6119. },
  6120. "require": {
  6121. "dflydev/dot-access-data": "^1.1.0",
  6122. "php": ">=5.4",
  6123. "symfony/yaml": "^2.8.11|^3|^4"
  6124. },
  6125. "require-dev": {
  6126. "greg-1-anderson/composer-test-scenarios": "^1",
  6127. "phpunit/phpunit": "^4.8|^5.5.4",
  6128. "satooshi/php-coveralls": "^1.0.2|dev-master",
  6129. "squizlabs/php_codesniffer": "^2.7"
  6130. },
  6131. "type": "library",
  6132. "extra": {
  6133. "branch-alias": {
  6134. "dev-master": "1.x-dev"
  6135. }
  6136. },
  6137. "autoload": {
  6138. "psr-4": {
  6139. "Grasmash\\YamlExpander\\": "src/"
  6140. }
  6141. },
  6142. "notification-url": "https://packagist.org/downloads/",
  6143. "license": [
  6144. "MIT"
  6145. ],
  6146. "authors": [
  6147. {
  6148. "name": "Matthew Grasmick"
  6149. }
  6150. ],
  6151. "description": "Expands internal property references in a yaml file.",
  6152. "support": {
  6153. "issues": "https://github.com/grasmash/yaml-expander/issues",
  6154. "source": "https://github.com/grasmash/yaml-expander/tree/master"
  6155. },
  6156. "time": "2017-12-16T16:06:03+00:00"
  6157. },
  6158. {
  6159. "name": "guzzlehttp/guzzle",
  6160. "version": "6.5.5",
  6161. "source": {
  6162. "type": "git",
  6163. "url": "https://github.com/guzzle/guzzle.git",
  6164. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  6165. },
  6166. "dist": {
  6167. "type": "zip",
  6168. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  6169. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  6170. "shasum": ""
  6171. },
  6172. "require": {
  6173. "ext-json": "*",
  6174. "guzzlehttp/promises": "^1.0",
  6175. "guzzlehttp/psr7": "^1.6.1",
  6176. "php": ">=5.5",
  6177. "symfony/polyfill-intl-idn": "^1.17.0"
  6178. },
  6179. "require-dev": {
  6180. "ext-curl": "*",
  6181. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  6182. "psr/log": "^1.1"
  6183. },
  6184. "suggest": {
  6185. "psr/log": "Required for using the Log middleware"
  6186. },
  6187. "type": "library",
  6188. "extra": {
  6189. "branch-alias": {
  6190. "dev-master": "6.5-dev"
  6191. }
  6192. },
  6193. "autoload": {
  6194. "files": [
  6195. "src/functions_include.php"
  6196. ],
  6197. "psr-4": {
  6198. "GuzzleHttp\\": "src/"
  6199. }
  6200. },
  6201. "notification-url": "https://packagist.org/downloads/",
  6202. "license": [
  6203. "MIT"
  6204. ],
  6205. "authors": [
  6206. {
  6207. "name": "Michael Dowling",
  6208. "email": "mtdowling@gmail.com",
  6209. "homepage": "https://github.com/mtdowling"
  6210. }
  6211. ],
  6212. "description": "Guzzle is a PHP HTTP client library",
  6213. "homepage": "http://guzzlephp.org/",
  6214. "keywords": [
  6215. "client",
  6216. "curl",
  6217. "framework",
  6218. "http",
  6219. "http client",
  6220. "rest",
  6221. "web service"
  6222. ],
  6223. "support": {
  6224. "issues": "https://github.com/guzzle/guzzle/issues",
  6225. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  6226. },
  6227. "time": "2020-06-16T21:01:06+00:00"
  6228. },
  6229. {
  6230. "name": "guzzlehttp/promises",
  6231. "version": "1.4.0",
  6232. "source": {
  6233. "type": "git",
  6234. "url": "https://github.com/guzzle/promises.git",
  6235. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  6236. },
  6237. "dist": {
  6238. "type": "zip",
  6239. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  6240. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  6241. "shasum": ""
  6242. },
  6243. "require": {
  6244. "php": ">=5.5"
  6245. },
  6246. "require-dev": {
  6247. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  6248. },
  6249. "type": "library",
  6250. "extra": {
  6251. "branch-alias": {
  6252. "dev-master": "1.4-dev"
  6253. }
  6254. },
  6255. "autoload": {
  6256. "files": [
  6257. "src/functions_include.php"
  6258. ],
  6259. "psr-4": {
  6260. "GuzzleHttp\\Promise\\": "src/"
  6261. }
  6262. },
  6263. "notification-url": "https://packagist.org/downloads/",
  6264. "license": [
  6265. "MIT"
  6266. ],
  6267. "authors": [
  6268. {
  6269. "name": "Michael Dowling",
  6270. "email": "mtdowling@gmail.com",
  6271. "homepage": "https://github.com/mtdowling"
  6272. }
  6273. ],
  6274. "description": "Guzzle promises library",
  6275. "keywords": [
  6276. "promise"
  6277. ],
  6278. "support": {
  6279. "issues": "https://github.com/guzzle/promises/issues",
  6280. "source": "https://github.com/guzzle/promises/tree/1.4.0"
  6281. },
  6282. "time": "2020-09-30T07:37:28+00:00"
  6283. },
  6284. {
  6285. "name": "guzzlehttp/psr7",
  6286. "version": "1.7.0",
  6287. "source": {
  6288. "type": "git",
  6289. "url": "https://github.com/guzzle/psr7.git",
  6290. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  6291. },
  6292. "dist": {
  6293. "type": "zip",
  6294. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  6295. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  6296. "shasum": ""
  6297. },
  6298. "require": {
  6299. "php": ">=5.4.0",
  6300. "psr/http-message": "~1.0",
  6301. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  6302. },
  6303. "provide": {
  6304. "psr/http-message-implementation": "1.0"
  6305. },
  6306. "require-dev": {
  6307. "ext-zlib": "*",
  6308. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  6309. },
  6310. "suggest": {
  6311. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  6312. },
  6313. "type": "library",
  6314. "extra": {
  6315. "branch-alias": {
  6316. "dev-master": "1.7-dev"
  6317. }
  6318. },
  6319. "autoload": {
  6320. "files": [
  6321. "src/functions_include.php"
  6322. ],
  6323. "psr-4": {
  6324. "GuzzleHttp\\Psr7\\": "src/"
  6325. }
  6326. },
  6327. "notification-url": "https://packagist.org/downloads/",
  6328. "license": [
  6329. "MIT"
  6330. ],
  6331. "authors": [
  6332. {
  6333. "name": "Michael Dowling",
  6334. "email": "mtdowling@gmail.com",
  6335. "homepage": "https://github.com/mtdowling"
  6336. },
  6337. {
  6338. "name": "Tobias Schultze",
  6339. "homepage": "https://github.com/Tobion"
  6340. }
  6341. ],
  6342. "description": "PSR-7 message implementation that also provides common utility methods",
  6343. "keywords": [
  6344. "http",
  6345. "message",
  6346. "psr-7",
  6347. "request",
  6348. "response",
  6349. "stream",
  6350. "uri",
  6351. "url"
  6352. ],
  6353. "support": {
  6354. "issues": "https://github.com/guzzle/psr7/issues",
  6355. "source": "https://github.com/guzzle/psr7/tree/1.7.0"
  6356. },
  6357. "time": "2020-09-30T07:37:11+00:00"
  6358. },
  6359. {
  6360. "name": "kint-php/kint",
  6361. "version": "5.1.1",
  6362. "source": {
  6363. "type": "git",
  6364. "url": "https://github.com/kint-php/kint.git",
  6365. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b"
  6366. },
  6367. "dist": {
  6368. "type": "zip",
  6369. "url": "https://api.github.com/repos/kint-php/kint/zipball/8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  6370. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  6371. "shasum": ""
  6372. },
  6373. "require": {
  6374. "php": ">=7.1"
  6375. },
  6376. "require-dev": {
  6377. "friendsofphp/php-cs-fixer": "^3",
  6378. "phpspec/prophecy-phpunit": "^2",
  6379. "phpunit/phpunit": "^9",
  6380. "seld/phar-utils": "^1",
  6381. "symfony/finder": ">=4.0",
  6382. "vimeo/psalm": "^5"
  6383. },
  6384. "suggest": {
  6385. "kint-php/kint-helpers": "Provides extra helper functions",
  6386. "kint-php/kint-twig": "Provides d() and s() functions in twig templates"
  6387. },
  6388. "type": "library",
  6389. "autoload": {
  6390. "files": [
  6391. "init.php"
  6392. ],
  6393. "psr-4": {
  6394. "Kint\\": "src/"
  6395. }
  6396. },
  6397. "notification-url": "https://packagist.org/downloads/",
  6398. "license": [
  6399. "MIT"
  6400. ],
  6401. "authors": [
  6402. {
  6403. "name": "Jonathan Vollebregt",
  6404. "homepage": "https://github.com/jnvsor"
  6405. },
  6406. {
  6407. "name": "Contributors",
  6408. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  6409. }
  6410. ],
  6411. "description": "Kint - debugging tool for PHP developers",
  6412. "homepage": "https://kint-php.github.io/kint/",
  6413. "keywords": [
  6414. "debug",
  6415. "kint",
  6416. "php"
  6417. ],
  6418. "support": {
  6419. "issues": "https://github.com/kint-php/kint/issues",
  6420. "source": "https://github.com/kint-php/kint/tree/5.1.1"
  6421. },
  6422. "time": "2024-04-26T14:20:09+00:00"
  6423. },
  6424. {
  6425. "name": "laminas/laminas-diactoros",
  6426. "version": "2.5.0",
  6427. "source": {
  6428. "type": "git",
  6429. "url": "https://github.com/laminas/laminas-diactoros.git",
  6430. "reference": "4ff7400c1c12e404144992ef43c8b733fd9ad516"
  6431. },
  6432. "dist": {
  6433. "type": "zip",
  6434. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/4ff7400c1c12e404144992ef43c8b733fd9ad516",
  6435. "reference": "4ff7400c1c12e404144992ef43c8b733fd9ad516",
  6436. "shasum": ""
  6437. },
  6438. "require": {
  6439. "laminas/laminas-zendframework-bridge": "^1.0",
  6440. "php": "^7.3 || ~8.0.0",
  6441. "psr/http-factory": "^1.0",
  6442. "psr/http-message": "^1.0"
  6443. },
  6444. "conflict": {
  6445. "phpspec/prophecy": "<1.9.0"
  6446. },
  6447. "provide": {
  6448. "psr/http-factory-implementation": "1.0",
  6449. "psr/http-message-implementation": "1.0"
  6450. },
  6451. "replace": {
  6452. "zendframework/zend-diactoros": "^2.2.1"
  6453. },
  6454. "require-dev": {
  6455. "ext-curl": "*",
  6456. "ext-dom": "*",
  6457. "ext-gd": "*",
  6458. "ext-libxml": "*",
  6459. "http-interop/http-factory-tests": "^0.8.0",
  6460. "laminas/laminas-coding-standard": "~1.0.0",
  6461. "php-http/psr7-integration-tests": "^1.1",
  6462. "phpspec/prophecy-phpunit": "^2.0",
  6463. "phpunit/phpunit": "^9.1"
  6464. },
  6465. "type": "library",
  6466. "extra": {
  6467. "laminas": {
  6468. "config-provider": "Laminas\\Diactoros\\ConfigProvider",
  6469. "module": "Laminas\\Diactoros"
  6470. }
  6471. },
  6472. "autoload": {
  6473. "files": [
  6474. "src/functions/create_uploaded_file.php",
  6475. "src/functions/marshal_headers_from_sapi.php",
  6476. "src/functions/marshal_method_from_sapi.php",
  6477. "src/functions/marshal_protocol_version_from_sapi.php",
  6478. "src/functions/marshal_uri_from_sapi.php",
  6479. "src/functions/normalize_server.php",
  6480. "src/functions/normalize_uploaded_files.php",
  6481. "src/functions/parse_cookie_header.php",
  6482. "src/functions/create_uploaded_file.legacy.php",
  6483. "src/functions/marshal_headers_from_sapi.legacy.php",
  6484. "src/functions/marshal_method_from_sapi.legacy.php",
  6485. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  6486. "src/functions/marshal_uri_from_sapi.legacy.php",
  6487. "src/functions/normalize_server.legacy.php",
  6488. "src/functions/normalize_uploaded_files.legacy.php",
  6489. "src/functions/parse_cookie_header.legacy.php"
  6490. ],
  6491. "psr-4": {
  6492. "Laminas\\Diactoros\\": "src/"
  6493. }
  6494. },
  6495. "notification-url": "https://packagist.org/downloads/",
  6496. "license": [
  6497. "BSD-3-Clause"
  6498. ],
  6499. "description": "PSR HTTP Message implementations",
  6500. "homepage": "https://laminas.dev",
  6501. "keywords": [
  6502. "http",
  6503. "laminas",
  6504. "psr",
  6505. "psr-17",
  6506. "psr-7"
  6507. ],
  6508. "support": {
  6509. "chat": "https://laminas.dev/chat",
  6510. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  6511. "forum": "https://discourse.laminas.dev",
  6512. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  6513. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  6514. "source": "https://github.com/laminas/laminas-diactoros"
  6515. },
  6516. "funding": [
  6517. {
  6518. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6519. "type": "community_bridge"
  6520. }
  6521. ],
  6522. "time": "2020-11-18T18:39:28+00:00"
  6523. },
  6524. {
  6525. "name": "laminas/laminas-escaper",
  6526. "version": "2.7.0",
  6527. "source": {
  6528. "type": "git",
  6529. "url": "https://github.com/laminas/laminas-escaper.git",
  6530. "reference": "5e04bc5ae5990b17159d79d331055e2c645e5cc5"
  6531. },
  6532. "dist": {
  6533. "type": "zip",
  6534. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/5e04bc5ae5990b17159d79d331055e2c645e5cc5",
  6535. "reference": "5e04bc5ae5990b17159d79d331055e2c645e5cc5",
  6536. "shasum": ""
  6537. },
  6538. "require": {
  6539. "laminas/laminas-zendframework-bridge": "^1.0",
  6540. "php": "^7.3 || ~8.0.0"
  6541. },
  6542. "replace": {
  6543. "zendframework/zend-escaper": "^2.6.1"
  6544. },
  6545. "require-dev": {
  6546. "laminas/laminas-coding-standard": "~1.0.0",
  6547. "phpunit/phpunit": "^9.3",
  6548. "psalm/plugin-phpunit": "^0.12.2",
  6549. "vimeo/psalm": "^3.16"
  6550. },
  6551. "suggest": {
  6552. "ext-iconv": "*",
  6553. "ext-mbstring": "*"
  6554. },
  6555. "type": "library",
  6556. "autoload": {
  6557. "psr-4": {
  6558. "Laminas\\Escaper\\": "src/"
  6559. }
  6560. },
  6561. "notification-url": "https://packagist.org/downloads/",
  6562. "license": [
  6563. "BSD-3-Clause"
  6564. ],
  6565. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  6566. "homepage": "https://laminas.dev",
  6567. "keywords": [
  6568. "escaper",
  6569. "laminas"
  6570. ],
  6571. "support": {
  6572. "chat": "https://laminas.dev/chat",
  6573. "docs": "https://docs.laminas.dev/laminas-escaper/",
  6574. "forum": "https://discourse.laminas.dev",
  6575. "issues": "https://github.com/laminas/laminas-escaper/issues",
  6576. "rss": "https://github.com/laminas/laminas-escaper/releases.atom",
  6577. "source": "https://github.com/laminas/laminas-escaper"
  6578. },
  6579. "funding": [
  6580. {
  6581. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6582. "type": "community_bridge"
  6583. }
  6584. ],
  6585. "time": "2020-11-17T21:26:43+00:00"
  6586. },
  6587. {
  6588. "name": "laminas/laminas-feed",
  6589. "version": "2.13.0",
  6590. "source": {
  6591. "type": "git",
  6592. "url": "https://github.com/laminas/laminas-feed.git",
  6593. "reference": "fb89aac1984222227f37792dd193d34829a0762f"
  6594. },
  6595. "dist": {
  6596. "type": "zip",
  6597. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/fb89aac1984222227f37792dd193d34829a0762f",
  6598. "reference": "fb89aac1984222227f37792dd193d34829a0762f",
  6599. "shasum": ""
  6600. },
  6601. "require": {
  6602. "ext-dom": "*",
  6603. "ext-libxml": "*",
  6604. "laminas/laminas-escaper": "^2.5.2",
  6605. "laminas/laminas-stdlib": "^3.2.1",
  6606. "laminas/laminas-zendframework-bridge": "^1.0",
  6607. "php": "^7.3 || ~8.0.0"
  6608. },
  6609. "conflict": {
  6610. "laminas/laminas-servicemanager": "<3.3"
  6611. },
  6612. "replace": {
  6613. "zendframework/zend-feed": "^2.12.0"
  6614. },
  6615. "require-dev": {
  6616. "laminas/laminas-cache": "^2.7.2",
  6617. "laminas/laminas-coding-standard": "~1.0.0",
  6618. "laminas/laminas-db": "^2.8.2",
  6619. "laminas/laminas-http": "^2.7",
  6620. "laminas/laminas-servicemanager": "^3.3",
  6621. "laminas/laminas-validator": "^2.10.1",
  6622. "phpunit/phpunit": "^9.3",
  6623. "psalm/plugin-phpunit": "^0.13.0",
  6624. "psr/http-message": "^1.0.1",
  6625. "vimeo/psalm": "^4.1"
  6626. },
  6627. "suggest": {
  6628. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  6629. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  6630. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  6631. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  6632. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  6633. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  6634. },
  6635. "type": "library",
  6636. "autoload": {
  6637. "psr-4": {
  6638. "Laminas\\Feed\\": "src/"
  6639. }
  6640. },
  6641. "notification-url": "https://packagist.org/downloads/",
  6642. "license": [
  6643. "BSD-3-Clause"
  6644. ],
  6645. "description": "provides functionality for consuming RSS and Atom feeds",
  6646. "homepage": "https://laminas.dev",
  6647. "keywords": [
  6648. "feed",
  6649. "laminas"
  6650. ],
  6651. "support": {
  6652. "chat": "https://laminas.dev/chat",
  6653. "docs": "https://docs.laminas.dev/laminas-feed/",
  6654. "forum": "https://discourse.laminas.dev",
  6655. "issues": "https://github.com/laminas/laminas-feed/issues",
  6656. "rss": "https://github.com/laminas/laminas-feed/releases.atom",
  6657. "source": "https://github.com/laminas/laminas-feed"
  6658. },
  6659. "funding": [
  6660. {
  6661. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6662. "type": "community_bridge"
  6663. }
  6664. ],
  6665. "time": "2020-11-18T21:02:52+00:00"
  6666. },
  6667. {
  6668. "name": "laminas/laminas-servicemanager",
  6669. "version": "3.17.0",
  6670. "source": {
  6671. "type": "git",
  6672. "url": "https://github.com/laminas/laminas-servicemanager.git",
  6673. "reference": "360be5f16955dd1edbcce1cfaa98ed82a17f02ec"
  6674. },
  6675. "dist": {
  6676. "type": "zip",
  6677. "url": "https://api.github.com/repos/laminas/laminas-servicemanager/zipball/360be5f16955dd1edbcce1cfaa98ed82a17f02ec",
  6678. "reference": "360be5f16955dd1edbcce1cfaa98ed82a17f02ec",
  6679. "shasum": ""
  6680. },
  6681. "require": {
  6682. "laminas/laminas-stdlib": "^3.2.1",
  6683. "php": "~7.4.0 || ~8.0.0 || ~8.1.0",
  6684. "psr/container": "^1.0"
  6685. },
  6686. "conflict": {
  6687. "ext-psr": "*",
  6688. "laminas/laminas-code": "<3.3.1",
  6689. "zendframework/zend-code": "<3.3.1",
  6690. "zendframework/zend-servicemanager": "*"
  6691. },
  6692. "provide": {
  6693. "psr/container-implementation": "^1.0"
  6694. },
  6695. "replace": {
  6696. "container-interop/container-interop": "^1.2.0"
  6697. },
  6698. "require-dev": {
  6699. "composer/package-versions-deprecated": "^1.0",
  6700. "laminas/laminas-coding-standard": "~2.4.0",
  6701. "laminas/laminas-container-config-test": "^0.7",
  6702. "laminas/laminas-dependency-plugin": "^2.1.2",
  6703. "mikey179/vfsstream": "^1.6.10@alpha",
  6704. "ocramius/proxy-manager": "^2.11",
  6705. "phpbench/phpbench": "^1.1",
  6706. "phpspec/prophecy-phpunit": "^2.0",
  6707. "phpunit/phpunit": "^9.5.5",
  6708. "psalm/plugin-phpunit": "^0.17.0",
  6709. "vimeo/psalm": "^4.8"
  6710. },
  6711. "suggest": {
  6712. "ocramius/proxy-manager": "ProxyManager ^2.1.1 to handle lazy initialization of services"
  6713. },
  6714. "bin": [
  6715. "bin/generate-deps-for-config-factory",
  6716. "bin/generate-factory-for-class"
  6717. ],
  6718. "type": "library",
  6719. "autoload": {
  6720. "files": [
  6721. "src/autoload.php"
  6722. ],
  6723. "psr-4": {
  6724. "Laminas\\ServiceManager\\": "src/"
  6725. }
  6726. },
  6727. "notification-url": "https://packagist.org/downloads/",
  6728. "license": [
  6729. "BSD-3-Clause"
  6730. ],
  6731. "description": "Factory-Driven Dependency Injection Container",
  6732. "homepage": "https://laminas.dev",
  6733. "keywords": [
  6734. "PSR-11",
  6735. "dependency-injection",
  6736. "di",
  6737. "dic",
  6738. "laminas",
  6739. "service-manager",
  6740. "servicemanager"
  6741. ],
  6742. "support": {
  6743. "chat": "https://laminas.dev/chat",
  6744. "docs": "https://docs.laminas.dev/laminas-servicemanager/",
  6745. "forum": "https://discourse.laminas.dev",
  6746. "issues": "https://github.com/laminas/laminas-servicemanager/issues",
  6747. "rss": "https://github.com/laminas/laminas-servicemanager/releases.atom",
  6748. "source": "https://github.com/laminas/laminas-servicemanager"
  6749. },
  6750. "funding": [
  6751. {
  6752. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6753. "type": "community_bridge"
  6754. }
  6755. ],
  6756. "time": "2022-09-22T11:33:46+00:00"
  6757. },
  6758. {
  6759. "name": "laminas/laminas-stdlib",
  6760. "version": "3.3.0",
  6761. "source": {
  6762. "type": "git",
  6763. "url": "https://github.com/laminas/laminas-stdlib.git",
  6764. "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6"
  6765. },
  6766. "dist": {
  6767. "type": "zip",
  6768. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/b9d84eaa39fde733356ea948cdef36c631f202b6",
  6769. "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6",
  6770. "shasum": ""
  6771. },
  6772. "require": {
  6773. "laminas/laminas-zendframework-bridge": "^1.0",
  6774. "php": "^7.3 || ^8.0"
  6775. },
  6776. "replace": {
  6777. "zendframework/zend-stdlib": "^3.2.1"
  6778. },
  6779. "require-dev": {
  6780. "laminas/laminas-coding-standard": "~1.0.0",
  6781. "phpbench/phpbench": "^0.17.1",
  6782. "phpunit/phpunit": "^9.3.7"
  6783. },
  6784. "type": "library",
  6785. "extra": {
  6786. "branch-alias": {
  6787. "dev-master": "3.3.x-dev",
  6788. "dev-develop": "3.4.x-dev"
  6789. }
  6790. },
  6791. "autoload": {
  6792. "psr-4": {
  6793. "Laminas\\Stdlib\\": "src/"
  6794. }
  6795. },
  6796. "notification-url": "https://packagist.org/downloads/",
  6797. "license": [
  6798. "BSD-3-Clause"
  6799. ],
  6800. "description": "SPL extensions, array utilities, error handlers, and more",
  6801. "homepage": "https://laminas.dev",
  6802. "keywords": [
  6803. "laminas",
  6804. "stdlib"
  6805. ],
  6806. "support": {
  6807. "chat": "https://laminas.dev/chat",
  6808. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  6809. "forum": "https://discourse.laminas.dev",
  6810. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  6811. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  6812. "source": "https://github.com/laminas/laminas-stdlib"
  6813. },
  6814. "funding": [
  6815. {
  6816. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6817. "type": "community_bridge"
  6818. }
  6819. ],
  6820. "time": "2020-08-25T09:08:16+00:00"
  6821. },
  6822. {
  6823. "name": "laminas/laminas-text",
  6824. "version": "2.8.1",
  6825. "source": {
  6826. "type": "git",
  6827. "url": "https://github.com/laminas/laminas-text.git",
  6828. "reference": "d696fa1fb3880b9b8f02c08be58685013b421608"
  6829. },
  6830. "dist": {
  6831. "type": "zip",
  6832. "url": "https://api.github.com/repos/laminas/laminas-text/zipball/d696fa1fb3880b9b8f02c08be58685013b421608",
  6833. "reference": "d696fa1fb3880b9b8f02c08be58685013b421608",
  6834. "shasum": ""
  6835. },
  6836. "require": {
  6837. "laminas/laminas-servicemanager": "^3.4",
  6838. "laminas/laminas-stdlib": "^3.1",
  6839. "laminas/laminas-zendframework-bridge": "^1.0",
  6840. "php": "^7.3 || ~8.0.0"
  6841. },
  6842. "replace": {
  6843. "zendframework/zend-text": "^2.7.1"
  6844. },
  6845. "require-dev": {
  6846. "laminas/laminas-coding-standard": "~1.0.0",
  6847. "laminas/laminas-config": "^3.4",
  6848. "phpunit/phpunit": "^9.3"
  6849. },
  6850. "type": "library",
  6851. "autoload": {
  6852. "psr-4": {
  6853. "Laminas\\Text\\": "src/"
  6854. }
  6855. },
  6856. "notification-url": "https://packagist.org/downloads/",
  6857. "license": [
  6858. "BSD-3-Clause"
  6859. ],
  6860. "description": "Create FIGlets and text-based tables",
  6861. "homepage": "https://laminas.dev",
  6862. "keywords": [
  6863. "laminas",
  6864. "text"
  6865. ],
  6866. "support": {
  6867. "chat": "https://laminas.dev/chat",
  6868. "docs": "https://docs.laminas.dev/laminas-text/",
  6869. "forum": "https://discourse.laminas.dev",
  6870. "issues": "https://github.com/laminas/laminas-text/issues",
  6871. "rss": "https://github.com/laminas/laminas-text/releases.atom",
  6872. "source": "https://github.com/laminas/laminas-text"
  6873. },
  6874. "funding": [
  6875. {
  6876. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6877. "type": "community_bridge"
  6878. }
  6879. ],
  6880. "time": "2021-02-17T21:24:58+00:00"
  6881. },
  6882. {
  6883. "name": "laminas/laminas-zendframework-bridge",
  6884. "version": "1.1.1",
  6885. "source": {
  6886. "type": "git",
  6887. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  6888. "reference": "6ede70583e101030bcace4dcddd648f760ddf642"
  6889. },
  6890. "dist": {
  6891. "type": "zip",
  6892. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/6ede70583e101030bcace4dcddd648f760ddf642",
  6893. "reference": "6ede70583e101030bcace4dcddd648f760ddf642",
  6894. "shasum": ""
  6895. },
  6896. "require": {
  6897. "php": "^5.6 || ^7.0 || ^8.0"
  6898. },
  6899. "require-dev": {
  6900. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1 || ^9.3",
  6901. "squizlabs/php_codesniffer": "^3.5"
  6902. },
  6903. "type": "library",
  6904. "extra": {
  6905. "laminas": {
  6906. "module": "Laminas\\ZendFrameworkBridge"
  6907. }
  6908. },
  6909. "autoload": {
  6910. "files": [
  6911. "src/autoload.php"
  6912. ],
  6913. "psr-4": {
  6914. "Laminas\\ZendFrameworkBridge\\": "src//"
  6915. }
  6916. },
  6917. "notification-url": "https://packagist.org/downloads/",
  6918. "license": [
  6919. "BSD-3-Clause"
  6920. ],
  6921. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  6922. "keywords": [
  6923. "ZendFramework",
  6924. "autoloading",
  6925. "laminas",
  6926. "zf"
  6927. ],
  6928. "support": {
  6929. "forum": "https://discourse.laminas.dev/",
  6930. "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues",
  6931. "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom",
  6932. "source": "https://github.com/laminas/laminas-zendframework-bridge"
  6933. },
  6934. "funding": [
  6935. {
  6936. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6937. "type": "community_bridge"
  6938. }
  6939. ],
  6940. "abandoned": true,
  6941. "time": "2020-09-14T14:23:00+00:00"
  6942. },
  6943. {
  6944. "name": "league/container",
  6945. "version": "2.5.0",
  6946. "source": {
  6947. "type": "git",
  6948. "url": "https://github.com/thephpleague/container.git",
  6949. "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3"
  6950. },
  6951. "dist": {
  6952. "type": "zip",
  6953. "url": "https://api.github.com/repos/thephpleague/container/zipball/8438dc47a0674e3378bcce893a0a04d79a2c22b3",
  6954. "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3",
  6955. "shasum": ""
  6956. },
  6957. "require": {
  6958. "container-interop/container-interop": "^1.2",
  6959. "php": "^5.4 || ^7.0 || ^8.0"
  6960. },
  6961. "provide": {
  6962. "container-interop/container-interop-implementation": "^1.2",
  6963. "psr/container-implementation": "^1.0"
  6964. },
  6965. "replace": {
  6966. "orno/di": "~2.0"
  6967. },
  6968. "require-dev": {
  6969. "phpunit/phpunit": "^4.8.36",
  6970. "scrutinizer/ocular": "^1.3",
  6971. "squizlabs/php_codesniffer": "^3.5"
  6972. },
  6973. "type": "library",
  6974. "extra": {
  6975. "branch-alias": {
  6976. "dev-2.x": "2.x-dev",
  6977. "dev-1.x": "1.x-dev"
  6978. }
  6979. },
  6980. "autoload": {
  6981. "psr-4": {
  6982. "League\\Container\\": "src"
  6983. }
  6984. },
  6985. "notification-url": "https://packagist.org/downloads/",
  6986. "license": [
  6987. "MIT"
  6988. ],
  6989. "authors": [
  6990. {
  6991. "name": "Phil Bennett",
  6992. "email": "philipobenito@gmail.com",
  6993. "homepage": "http://www.philipobenito.com",
  6994. "role": "Developer"
  6995. }
  6996. ],
  6997. "description": "A fast and intuitive dependency injection container.",
  6998. "homepage": "https://github.com/thephpleague/container",
  6999. "keywords": [
  7000. "container",
  7001. "dependency",
  7002. "di",
  7003. "injection",
  7004. "league",
  7005. "provider",
  7006. "service"
  7007. ],
  7008. "support": {
  7009. "issues": "https://github.com/thephpleague/container/issues",
  7010. "source": "https://github.com/thephpleague/container/tree/2.5.0"
  7011. },
  7012. "funding": [
  7013. {
  7014. "url": "https://github.com/philipobenito",
  7015. "type": "github"
  7016. }
  7017. ],
  7018. "time": "2021-02-22T09:20:06+00:00"
  7019. },
  7020. {
  7021. "name": "masterminds/html5",
  7022. "version": "2.7.4",
  7023. "source": {
  7024. "type": "git",
  7025. "url": "https://github.com/Masterminds/html5-php.git",
  7026. "reference": "9227822783c75406cfe400984b2f095cdf03d417"
  7027. },
  7028. "dist": {
  7029. "type": "zip",
  7030. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/9227822783c75406cfe400984b2f095cdf03d417",
  7031. "reference": "9227822783c75406cfe400984b2f095cdf03d417",
  7032. "shasum": ""
  7033. },
  7034. "require": {
  7035. "ext-ctype": "*",
  7036. "ext-dom": "*",
  7037. "ext-libxml": "*",
  7038. "php": ">=5.3.0"
  7039. },
  7040. "require-dev": {
  7041. "phpunit/phpunit": "^4.8.35"
  7042. },
  7043. "type": "library",
  7044. "extra": {
  7045. "branch-alias": {
  7046. "dev-master": "2.7-dev"
  7047. }
  7048. },
  7049. "autoload": {
  7050. "psr-4": {
  7051. "Masterminds\\": "src"
  7052. }
  7053. },
  7054. "notification-url": "https://packagist.org/downloads/",
  7055. "license": [
  7056. "MIT"
  7057. ],
  7058. "authors": [
  7059. {
  7060. "name": "Matt Butcher",
  7061. "email": "technosophos@gmail.com"
  7062. },
  7063. {
  7064. "name": "Matt Farina",
  7065. "email": "matt@mattfarina.com"
  7066. },
  7067. {
  7068. "name": "Asmir Mustafic",
  7069. "email": "goetas@gmail.com"
  7070. }
  7071. ],
  7072. "description": "An HTML5 parser and serializer.",
  7073. "homepage": "http://masterminds.github.io/html5-php",
  7074. "keywords": [
  7075. "HTML5",
  7076. "dom",
  7077. "html",
  7078. "parser",
  7079. "querypath",
  7080. "serializer",
  7081. "xml"
  7082. ],
  7083. "support": {
  7084. "issues": "https://github.com/Masterminds/html5-php/issues",
  7085. "source": "https://github.com/Masterminds/html5-php/tree/2.7.4"
  7086. },
  7087. "time": "2020-10-01T13:52:52+00:00"
  7088. },
  7089. {
  7090. "name": "mathieuviossat/arraytotexttable",
  7091. "version": "v1.0.8",
  7092. "source": {
  7093. "type": "git",
  7094. "url": "https://github.com/viossat/arraytotexttable.git",
  7095. "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4"
  7096. },
  7097. "dist": {
  7098. "type": "zip",
  7099. "url": "https://api.github.com/repos/viossat/arraytotexttable/zipball/6b1af924478cb9c3a903269e304fff006fe0dbf4",
  7100. "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4",
  7101. "shasum": ""
  7102. },
  7103. "require": {
  7104. "laminas/laminas-text": "^2.7",
  7105. "php": ">=5.3.0"
  7106. },
  7107. "type": "library",
  7108. "autoload": {
  7109. "psr-4": {
  7110. "MathieuViossat\\Util\\": "src/"
  7111. }
  7112. },
  7113. "notification-url": "https://packagist.org/downloads/",
  7114. "license": [
  7115. "MIT"
  7116. ],
  7117. "authors": [
  7118. {
  7119. "name": "Mathieu Viossat",
  7120. "email": "mathieu@viossat.fr",
  7121. "homepage": "https://viossat.fr"
  7122. }
  7123. ],
  7124. "description": "Display arrays in terminal",
  7125. "homepage": "https://github.com/viossat/arraytotexttable",
  7126. "keywords": [
  7127. "array",
  7128. "ascii",
  7129. "table",
  7130. "terminal",
  7131. "text",
  7132. "unicode"
  7133. ],
  7134. "support": {
  7135. "issues": "https://github.com/viossat/arraytotexttable/issues",
  7136. "source": "https://github.com/viossat/arraytotexttable/tree/v1.0.8"
  7137. },
  7138. "time": "2020-06-23T17:14:22+00:00"
  7139. },
  7140. {
  7141. "name": "mglaman/phpstan-drupal",
  7142. "version": "1.2.1",
  7143. "source": {
  7144. "type": "git",
  7145. "url": "https://github.com/mglaman/phpstan-drupal.git",
  7146. "reference": "920c6b972a832046327f66dc6ff7448e3b5d6e4c"
  7147. },
  7148. "dist": {
  7149. "type": "zip",
  7150. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/920c6b972a832046327f66dc6ff7448e3b5d6e4c",
  7151. "reference": "920c6b972a832046327f66dc6ff7448e3b5d6e4c",
  7152. "shasum": ""
  7153. },
  7154. "require": {
  7155. "php": "^7.4 || ^8.0",
  7156. "phpstan/phpstan": "^1.10.1",
  7157. "phpstan/phpstan-deprecation-rules": "^1.1.4",
  7158. "symfony/finder": "~3.4.5 ||^4.2 || ^5.0 || ^6.0",
  7159. "symfony/yaml": "~3.4.5 || ^4.2|| ^5.0 || ^6.0",
  7160. "webflo/drupal-finder": "^1.2"
  7161. },
  7162. "require-dev": {
  7163. "behat/mink": "^1.8",
  7164. "composer/installers": "^1.9",
  7165. "drupal/core-recommended": "^8.8@alpha || ^9.0",
  7166. "drush/drush": "^9.6 || ^10.0 || ^11",
  7167. "phpstan/extension-installer": "^1.1",
  7168. "phpstan/phpstan-strict-rules": "^1.0",
  7169. "phpunit/phpunit": "^6.5 || ^7.5 || ^8.0 || ^9",
  7170. "slevomat/coding-standard": "^7.1",
  7171. "squizlabs/php_codesniffer": "^3.3",
  7172. "symfony/phpunit-bridge": "^3.4.3 || ^4.4 || ^5.4 || ^6.0"
  7173. },
  7174. "suggest": {
  7175. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  7176. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  7177. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  7178. },
  7179. "type": "phpstan-extension",
  7180. "extra": {
  7181. "branch-alias": {
  7182. "dev-main": "1.0-dev"
  7183. },
  7184. "installer-paths": {
  7185. "tests/fixtures/drupal/core": [
  7186. "type:drupal-core"
  7187. ],
  7188. "tests/fixtures/drupal/libraries/{$name}": [
  7189. "type:drupal-library"
  7190. ],
  7191. "tests/fixtures/drupal/modules/contrib/{$name}": [
  7192. "type:drupal-module"
  7193. ],
  7194. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  7195. "type:drupal-profile"
  7196. ],
  7197. "tests/fixtures/drupal/themes/contrib/{$name}": [
  7198. "type:drupal-theme"
  7199. ]
  7200. },
  7201. "phpstan": {
  7202. "includes": [
  7203. "extension.neon",
  7204. "rules.neon"
  7205. ]
  7206. }
  7207. },
  7208. "autoload": {
  7209. "psr-4": {
  7210. "mglaman\\PHPStanDrupal\\": "src/"
  7211. }
  7212. },
  7213. "notification-url": "https://packagist.org/downloads/",
  7214. "license": [
  7215. "MIT"
  7216. ],
  7217. "authors": [
  7218. {
  7219. "name": "Matt Glaman",
  7220. "email": "nmd.matt@gmail.com"
  7221. }
  7222. ],
  7223. "description": "Drupal extension and rules for PHPStan",
  7224. "support": {
  7225. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  7226. "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.1"
  7227. },
  7228. "funding": [
  7229. {
  7230. "url": "https://github.com/mglaman",
  7231. "type": "github"
  7232. },
  7233. {
  7234. "url": "https://opencollective.com/phpstan-drupal",
  7235. "type": "open_collective"
  7236. },
  7237. {
  7238. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  7239. "type": "tidelift"
  7240. }
  7241. ],
  7242. "time": "2023-11-03T13:17:28+00:00"
  7243. },
  7244. {
  7245. "name": "nikic/php-parser",
  7246. "version": "v4.19.1",
  7247. "source": {
  7248. "type": "git",
  7249. "url": "https://github.com/nikic/PHP-Parser.git",
  7250. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b"
  7251. },
  7252. "dist": {
  7253. "type": "zip",
  7254. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4e1b88d21c69391150ace211e9eaf05810858d0b",
  7255. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b",
  7256. "shasum": ""
  7257. },
  7258. "require": {
  7259. "ext-tokenizer": "*",
  7260. "php": ">=7.1"
  7261. },
  7262. "require-dev": {
  7263. "ircmaxell/php-yacc": "^0.0.7",
  7264. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  7265. },
  7266. "bin": [
  7267. "bin/php-parse"
  7268. ],
  7269. "type": "library",
  7270. "extra": {
  7271. "branch-alias": {
  7272. "dev-master": "4.9-dev"
  7273. }
  7274. },
  7275. "autoload": {
  7276. "psr-4": {
  7277. "PhpParser\\": "lib/PhpParser"
  7278. }
  7279. },
  7280. "notification-url": "https://packagist.org/downloads/",
  7281. "license": [
  7282. "BSD-3-Clause"
  7283. ],
  7284. "authors": [
  7285. {
  7286. "name": "Nikita Popov"
  7287. }
  7288. ],
  7289. "description": "A PHP parser written in PHP",
  7290. "keywords": [
  7291. "parser",
  7292. "php"
  7293. ],
  7294. "support": {
  7295. "issues": "https://github.com/nikic/PHP-Parser/issues",
  7296. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.1"
  7297. },
  7298. "time": "2024-03-17T08:10:35+00:00"
  7299. },
  7300. {
  7301. "name": "pear/archive_tar",
  7302. "version": "1.4.11",
  7303. "source": {
  7304. "type": "git",
  7305. "url": "https://github.com/pear/Archive_Tar.git",
  7306. "reference": "17d355cb7d3c4ff08e5729f29cd7660145208d9d"
  7307. },
  7308. "dist": {
  7309. "type": "zip",
  7310. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/17d355cb7d3c4ff08e5729f29cd7660145208d9d",
  7311. "reference": "17d355cb7d3c4ff08e5729f29cd7660145208d9d",
  7312. "shasum": ""
  7313. },
  7314. "require": {
  7315. "pear/pear-core-minimal": "^1.10.0alpha2",
  7316. "php": ">=5.2.0"
  7317. },
  7318. "require-dev": {
  7319. "phpunit/phpunit": "*"
  7320. },
  7321. "suggest": {
  7322. "ext-bz2": "Bz2 compression support.",
  7323. "ext-xz": "Lzma2 compression support.",
  7324. "ext-zlib": "Gzip compression support."
  7325. },
  7326. "type": "library",
  7327. "extra": {
  7328. "branch-alias": {
  7329. "dev-master": "1.4.x-dev"
  7330. }
  7331. },
  7332. "autoload": {
  7333. "psr-0": {
  7334. "Archive_Tar": ""
  7335. }
  7336. },
  7337. "notification-url": "https://packagist.org/downloads/",
  7338. "include-path": [
  7339. "./"
  7340. ],
  7341. "license": [
  7342. "BSD-3-Clause"
  7343. ],
  7344. "authors": [
  7345. {
  7346. "name": "Vincent Blavet",
  7347. "email": "vincent@phpconcept.net"
  7348. },
  7349. {
  7350. "name": "Greg Beaver",
  7351. "email": "greg@chiaraquartet.net"
  7352. },
  7353. {
  7354. "name": "Michiel Rook",
  7355. "email": "mrook@php.net"
  7356. }
  7357. ],
  7358. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  7359. "homepage": "https://github.com/pear/Archive_Tar",
  7360. "keywords": [
  7361. "archive",
  7362. "tar"
  7363. ],
  7364. "support": {
  7365. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  7366. "source": "https://github.com/pear/Archive_Tar"
  7367. },
  7368. "time": "2020-11-19T22:10:24+00:00"
  7369. },
  7370. {
  7371. "name": "pear/console_getopt",
  7372. "version": "v1.4.3",
  7373. "source": {
  7374. "type": "git",
  7375. "url": "https://github.com/pear/Console_Getopt.git",
  7376. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  7377. },
  7378. "dist": {
  7379. "type": "zip",
  7380. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7381. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7382. "shasum": ""
  7383. },
  7384. "type": "library",
  7385. "autoload": {
  7386. "psr-0": {
  7387. "Console": "./"
  7388. }
  7389. },
  7390. "notification-url": "https://packagist.org/downloads/",
  7391. "include-path": [
  7392. "./"
  7393. ],
  7394. "license": [
  7395. "BSD-2-Clause"
  7396. ],
  7397. "authors": [
  7398. {
  7399. "name": "Andrei Zmievski",
  7400. "email": "andrei@php.net",
  7401. "role": "Lead"
  7402. },
  7403. {
  7404. "name": "Stig Bakken",
  7405. "email": "stig@php.net",
  7406. "role": "Developer"
  7407. },
  7408. {
  7409. "name": "Greg Beaver",
  7410. "email": "cellog@php.net",
  7411. "role": "Helper"
  7412. }
  7413. ],
  7414. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  7415. "support": {
  7416. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  7417. "source": "https://github.com/pear/Console_Getopt"
  7418. },
  7419. "time": "2019-11-20T18:27:48+00:00"
  7420. },
  7421. {
  7422. "name": "pear/pear-core-minimal",
  7423. "version": "v1.10.10",
  7424. "source": {
  7425. "type": "git",
  7426. "url": "https://github.com/pear/pear-core-minimal.git",
  7427. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  7428. },
  7429. "dist": {
  7430. "type": "zip",
  7431. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  7432. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  7433. "shasum": ""
  7434. },
  7435. "require": {
  7436. "pear/console_getopt": "~1.4",
  7437. "pear/pear_exception": "~1.0"
  7438. },
  7439. "replace": {
  7440. "rsky/pear-core-min": "self.version"
  7441. },
  7442. "type": "library",
  7443. "autoload": {
  7444. "psr-0": {
  7445. "": "src/"
  7446. }
  7447. },
  7448. "notification-url": "https://packagist.org/downloads/",
  7449. "include-path": [
  7450. "src/"
  7451. ],
  7452. "license": [
  7453. "BSD-3-Clause"
  7454. ],
  7455. "authors": [
  7456. {
  7457. "name": "Christian Weiske",
  7458. "email": "cweiske@php.net",
  7459. "role": "Lead"
  7460. }
  7461. ],
  7462. "description": "Minimal set of PEAR core files to be used as composer dependency",
  7463. "support": {
  7464. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  7465. "source": "https://github.com/pear/pear-core-minimal"
  7466. },
  7467. "time": "2019-11-19T19:00:24+00:00"
  7468. },
  7469. {
  7470. "name": "pear/pear_exception",
  7471. "version": "v1.0.1",
  7472. "source": {
  7473. "type": "git",
  7474. "url": "https://github.com/pear/PEAR_Exception.git",
  7475. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7"
  7476. },
  7477. "dist": {
  7478. "type": "zip",
  7479. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  7480. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  7481. "shasum": ""
  7482. },
  7483. "require": {
  7484. "php": ">=4.4.0"
  7485. },
  7486. "require-dev": {
  7487. "phpunit/phpunit": "*"
  7488. },
  7489. "type": "class",
  7490. "extra": {
  7491. "branch-alias": {
  7492. "dev-master": "1.0.x-dev"
  7493. }
  7494. },
  7495. "autoload": {
  7496. "classmap": [
  7497. "PEAR/"
  7498. ]
  7499. },
  7500. "notification-url": "https://packagist.org/downloads/",
  7501. "include-path": [
  7502. "."
  7503. ],
  7504. "license": [
  7505. "BSD-2-Clause"
  7506. ],
  7507. "authors": [
  7508. {
  7509. "name": "Helgi Thormar",
  7510. "email": "dufuz@php.net"
  7511. },
  7512. {
  7513. "name": "Greg Beaver",
  7514. "email": "cellog@php.net"
  7515. }
  7516. ],
  7517. "description": "The PEAR Exception base class.",
  7518. "homepage": "https://github.com/pear/PEAR_Exception",
  7519. "keywords": [
  7520. "exception"
  7521. ],
  7522. "support": {
  7523. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  7524. "source": "https://github.com/pear/PEAR_Exception"
  7525. },
  7526. "time": "2019-12-10T10:24:42+00:00"
  7527. },
  7528. {
  7529. "name": "phpstan/phpstan",
  7530. "version": "1.12.3",
  7531. "source": {
  7532. "type": "git",
  7533. "url": "https://github.com/phpstan/phpstan.git",
  7534. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009"
  7535. },
  7536. "dist": {
  7537. "type": "zip",
  7538. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0fcbf194ab63d8159bb70d9aa3e1350051632009",
  7539. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009",
  7540. "shasum": ""
  7541. },
  7542. "require": {
  7543. "php": "^7.2|^8.0"
  7544. },
  7545. "conflict": {
  7546. "phpstan/phpstan-shim": "*"
  7547. },
  7548. "bin": [
  7549. "phpstan",
  7550. "phpstan.phar"
  7551. ],
  7552. "type": "library",
  7553. "autoload": {
  7554. "files": [
  7555. "bootstrap.php"
  7556. ]
  7557. },
  7558. "notification-url": "https://packagist.org/downloads/",
  7559. "license": [
  7560. "MIT"
  7561. ],
  7562. "description": "PHPStan - PHP Static Analysis Tool",
  7563. "keywords": [
  7564. "dev",
  7565. "static analysis"
  7566. ],
  7567. "support": {
  7568. "docs": "https://phpstan.org/user-guide/getting-started",
  7569. "forum": "https://github.com/phpstan/phpstan/discussions",
  7570. "issues": "https://github.com/phpstan/phpstan/issues",
  7571. "security": "https://github.com/phpstan/phpstan/security/policy",
  7572. "source": "https://github.com/phpstan/phpstan-src"
  7573. },
  7574. "funding": [
  7575. {
  7576. "url": "https://github.com/ondrejmirtes",
  7577. "type": "github"
  7578. },
  7579. {
  7580. "url": "https://github.com/phpstan",
  7581. "type": "github"
  7582. }
  7583. ],
  7584. "time": "2024-09-09T08:10:35+00:00"
  7585. },
  7586. {
  7587. "name": "phpstan/phpstan-deprecation-rules",
  7588. "version": "1.2.1",
  7589. "source": {
  7590. "type": "git",
  7591. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  7592. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82"
  7593. },
  7594. "dist": {
  7595. "type": "zip",
  7596. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7597. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7598. "shasum": ""
  7599. },
  7600. "require": {
  7601. "php": "^7.2 || ^8.0",
  7602. "phpstan/phpstan": "^1.12"
  7603. },
  7604. "require-dev": {
  7605. "php-parallel-lint/php-parallel-lint": "^1.2",
  7606. "phpstan/phpstan-phpunit": "^1.0",
  7607. "phpunit/phpunit": "^9.5"
  7608. },
  7609. "type": "phpstan-extension",
  7610. "extra": {
  7611. "phpstan": {
  7612. "includes": [
  7613. "rules.neon"
  7614. ]
  7615. }
  7616. },
  7617. "autoload": {
  7618. "psr-4": {
  7619. "PHPStan\\": "src/"
  7620. }
  7621. },
  7622. "notification-url": "https://packagist.org/downloads/",
  7623. "license": [
  7624. "MIT"
  7625. ],
  7626. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  7627. "support": {
  7628. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  7629. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.2.1"
  7630. },
  7631. "time": "2024-09-11T15:52:35+00:00"
  7632. },
  7633. {
  7634. "name": "psr/container",
  7635. "version": "1.0.0",
  7636. "source": {
  7637. "type": "git",
  7638. "url": "https://github.com/php-fig/container.git",
  7639. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  7640. },
  7641. "dist": {
  7642. "type": "zip",
  7643. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7644. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7645. "shasum": ""
  7646. },
  7647. "require": {
  7648. "php": ">=5.3.0"
  7649. },
  7650. "type": "library",
  7651. "extra": {
  7652. "branch-alias": {
  7653. "dev-master": "1.0.x-dev"
  7654. }
  7655. },
  7656. "autoload": {
  7657. "psr-4": {
  7658. "Psr\\Container\\": "src/"
  7659. }
  7660. },
  7661. "notification-url": "https://packagist.org/downloads/",
  7662. "license": [
  7663. "MIT"
  7664. ],
  7665. "authors": [
  7666. {
  7667. "name": "PHP-FIG",
  7668. "homepage": "http://www.php-fig.org/"
  7669. }
  7670. ],
  7671. "description": "Common Container Interface (PHP FIG PSR-11)",
  7672. "homepage": "https://github.com/php-fig/container",
  7673. "keywords": [
  7674. "PSR-11",
  7675. "container",
  7676. "container-interface",
  7677. "container-interop",
  7678. "psr"
  7679. ],
  7680. "support": {
  7681. "issues": "https://github.com/php-fig/container/issues",
  7682. "source": "https://github.com/php-fig/container/tree/master"
  7683. },
  7684. "time": "2017-02-14T16:28:37+00:00"
  7685. },
  7686. {
  7687. "name": "psr/http-factory",
  7688. "version": "1.0.1",
  7689. "source": {
  7690. "type": "git",
  7691. "url": "https://github.com/php-fig/http-factory.git",
  7692. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  7693. },
  7694. "dist": {
  7695. "type": "zip",
  7696. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  7697. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  7698. "shasum": ""
  7699. },
  7700. "require": {
  7701. "php": ">=7.0.0",
  7702. "psr/http-message": "^1.0"
  7703. },
  7704. "type": "library",
  7705. "extra": {
  7706. "branch-alias": {
  7707. "dev-master": "1.0.x-dev"
  7708. }
  7709. },
  7710. "autoload": {
  7711. "psr-4": {
  7712. "Psr\\Http\\Message\\": "src/"
  7713. }
  7714. },
  7715. "notification-url": "https://packagist.org/downloads/",
  7716. "license": [
  7717. "MIT"
  7718. ],
  7719. "authors": [
  7720. {
  7721. "name": "PHP-FIG",
  7722. "homepage": "http://www.php-fig.org/"
  7723. }
  7724. ],
  7725. "description": "Common interfaces for PSR-7 HTTP message factories",
  7726. "keywords": [
  7727. "factory",
  7728. "http",
  7729. "message",
  7730. "psr",
  7731. "psr-17",
  7732. "psr-7",
  7733. "request",
  7734. "response"
  7735. ],
  7736. "support": {
  7737. "source": "https://github.com/php-fig/http-factory/tree/master"
  7738. },
  7739. "time": "2019-04-30T12:38:16+00:00"
  7740. },
  7741. {
  7742. "name": "psr/http-message",
  7743. "version": "1.0.1",
  7744. "source": {
  7745. "type": "git",
  7746. "url": "https://github.com/php-fig/http-message.git",
  7747. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  7748. },
  7749. "dist": {
  7750. "type": "zip",
  7751. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  7752. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  7753. "shasum": ""
  7754. },
  7755. "require": {
  7756. "php": ">=5.3.0"
  7757. },
  7758. "type": "library",
  7759. "extra": {
  7760. "branch-alias": {
  7761. "dev-master": "1.0.x-dev"
  7762. }
  7763. },
  7764. "autoload": {
  7765. "psr-4": {
  7766. "Psr\\Http\\Message\\": "src/"
  7767. }
  7768. },
  7769. "notification-url": "https://packagist.org/downloads/",
  7770. "license": [
  7771. "MIT"
  7772. ],
  7773. "authors": [
  7774. {
  7775. "name": "PHP-FIG",
  7776. "homepage": "http://www.php-fig.org/"
  7777. }
  7778. ],
  7779. "description": "Common interface for HTTP messages",
  7780. "homepage": "https://github.com/php-fig/http-message",
  7781. "keywords": [
  7782. "http",
  7783. "http-message",
  7784. "psr",
  7785. "psr-7",
  7786. "request",
  7787. "response"
  7788. ],
  7789. "support": {
  7790. "source": "https://github.com/php-fig/http-message/tree/master"
  7791. },
  7792. "time": "2016-08-06T14:39:51+00:00"
  7793. },
  7794. {
  7795. "name": "psr/log",
  7796. "version": "1.1.3",
  7797. "source": {
  7798. "type": "git",
  7799. "url": "https://github.com/php-fig/log.git",
  7800. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  7801. },
  7802. "dist": {
  7803. "type": "zip",
  7804. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  7805. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  7806. "shasum": ""
  7807. },
  7808. "require": {
  7809. "php": ">=5.3.0"
  7810. },
  7811. "type": "library",
  7812. "extra": {
  7813. "branch-alias": {
  7814. "dev-master": "1.1.x-dev"
  7815. }
  7816. },
  7817. "autoload": {
  7818. "psr-4": {
  7819. "Psr\\Log\\": "Psr/Log/"
  7820. }
  7821. },
  7822. "notification-url": "https://packagist.org/downloads/",
  7823. "license": [
  7824. "MIT"
  7825. ],
  7826. "authors": [
  7827. {
  7828. "name": "PHP-FIG",
  7829. "homepage": "http://www.php-fig.org/"
  7830. }
  7831. ],
  7832. "description": "Common interface for logging libraries",
  7833. "homepage": "https://github.com/php-fig/log",
  7834. "keywords": [
  7835. "log",
  7836. "psr",
  7837. "psr-3"
  7838. ],
  7839. "support": {
  7840. "source": "https://github.com/php-fig/log/tree/1.1.3"
  7841. },
  7842. "time": "2020-03-23T09:12:05+00:00"
  7843. },
  7844. {
  7845. "name": "psy/psysh",
  7846. "version": "v0.10.12",
  7847. "source": {
  7848. "type": "git",
  7849. "url": "https://github.com/bobthecow/psysh.git",
  7850. "reference": "a0d9981aa07ecfcbea28e4bfa868031cca121e7d"
  7851. },
  7852. "dist": {
  7853. "type": "zip",
  7854. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a0d9981aa07ecfcbea28e4bfa868031cca121e7d",
  7855. "reference": "a0d9981aa07ecfcbea28e4bfa868031cca121e7d",
  7856. "shasum": ""
  7857. },
  7858. "require": {
  7859. "ext-json": "*",
  7860. "ext-tokenizer": "*",
  7861. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  7862. "php": "^8.0 || ^7.0 || ^5.5.9",
  7863. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  7864. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  7865. },
  7866. "require-dev": {
  7867. "bamarni/composer-bin-plugin": "^1.2",
  7868. "hoa/console": "3.17.*"
  7869. },
  7870. "suggest": {
  7871. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7872. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  7873. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  7874. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  7875. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  7876. },
  7877. "bin": [
  7878. "bin/psysh"
  7879. ],
  7880. "type": "library",
  7881. "extra": {
  7882. "branch-alias": {
  7883. "dev-main": "0.10.x-dev"
  7884. }
  7885. },
  7886. "autoload": {
  7887. "files": [
  7888. "src/functions.php"
  7889. ],
  7890. "psr-4": {
  7891. "Psy\\": "src/"
  7892. }
  7893. },
  7894. "notification-url": "https://packagist.org/downloads/",
  7895. "license": [
  7896. "MIT"
  7897. ],
  7898. "authors": [
  7899. {
  7900. "name": "Justin Hileman",
  7901. "email": "justin@justinhileman.info",
  7902. "homepage": "http://justinhileman.com"
  7903. }
  7904. ],
  7905. "description": "An interactive shell for modern PHP.",
  7906. "homepage": "http://psysh.org",
  7907. "keywords": [
  7908. "REPL",
  7909. "console",
  7910. "interactive",
  7911. "shell"
  7912. ],
  7913. "support": {
  7914. "issues": "https://github.com/bobthecow/psysh/issues",
  7915. "source": "https://github.com/bobthecow/psysh/tree/v0.10.12"
  7916. },
  7917. "time": "2021-11-30T14:05:36+00:00"
  7918. },
  7919. {
  7920. "name": "ralouphie/getallheaders",
  7921. "version": "3.0.3",
  7922. "source": {
  7923. "type": "git",
  7924. "url": "https://github.com/ralouphie/getallheaders.git",
  7925. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7926. },
  7927. "dist": {
  7928. "type": "zip",
  7929. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7930. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7931. "shasum": ""
  7932. },
  7933. "require": {
  7934. "php": ">=5.6"
  7935. },
  7936. "require-dev": {
  7937. "php-coveralls/php-coveralls": "^2.1",
  7938. "phpunit/phpunit": "^5 || ^6.5"
  7939. },
  7940. "type": "library",
  7941. "autoload": {
  7942. "files": [
  7943. "src/getallheaders.php"
  7944. ]
  7945. },
  7946. "notification-url": "https://packagist.org/downloads/",
  7947. "license": [
  7948. "MIT"
  7949. ],
  7950. "authors": [
  7951. {
  7952. "name": "Ralph Khattar",
  7953. "email": "ralph.khattar@gmail.com"
  7954. }
  7955. ],
  7956. "description": "A polyfill for getallheaders.",
  7957. "support": {
  7958. "issues": "https://github.com/ralouphie/getallheaders/issues",
  7959. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  7960. },
  7961. "time": "2019-03-08T08:55:37+00:00"
  7962. },
  7963. {
  7964. "name": "stack/builder",
  7965. "version": "v1.0.6",
  7966. "source": {
  7967. "type": "git",
  7968. "url": "https://github.com/stackphp/builder.git",
  7969. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c"
  7970. },
  7971. "dist": {
  7972. "type": "zip",
  7973. "url": "https://api.github.com/repos/stackphp/builder/zipball/a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  7974. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  7975. "shasum": ""
  7976. },
  7977. "require": {
  7978. "php": ">=7.2.0",
  7979. "symfony/http-foundation": "~2.1|~3.0|~4.0|~5.0",
  7980. "symfony/http-kernel": "~2.1|~3.0|~4.0|~5.0"
  7981. },
  7982. "require-dev": {
  7983. "phpunit/phpunit": "~8.0",
  7984. "symfony/routing": "^5.0"
  7985. },
  7986. "type": "library",
  7987. "extra": {
  7988. "branch-alias": {
  7989. "dev-master": "1.0-dev"
  7990. }
  7991. },
  7992. "autoload": {
  7993. "psr-0": {
  7994. "Stack": "src"
  7995. }
  7996. },
  7997. "notification-url": "https://packagist.org/downloads/",
  7998. "license": [
  7999. "MIT"
  8000. ],
  8001. "authors": [
  8002. {
  8003. "name": "Igor Wiedler",
  8004. "email": "igor@wiedler.ch"
  8005. }
  8006. ],
  8007. "description": "Builder for stack middleware based on HttpKernelInterface.",
  8008. "keywords": [
  8009. "stack"
  8010. ],
  8011. "support": {
  8012. "issues": "https://github.com/stackphp/builder/issues",
  8013. "source": "https://github.com/stackphp/builder/tree/v1.0.6"
  8014. },
  8015. "abandoned": true,
  8016. "time": "2020-01-30T12:17:27+00:00"
  8017. },
  8018. {
  8019. "name": "symfony-cmf/routing",
  8020. "version": "2.3.3",
  8021. "source": {
  8022. "type": "git",
  8023. "url": "https://github.com/symfony-cmf/Routing.git",
  8024. "reference": "3c97e7b7709b313cecfb76d691ad4cc22acbf3f5"
  8025. },
  8026. "dist": {
  8027. "type": "zip",
  8028. "url": "https://api.github.com/repos/symfony-cmf/Routing/zipball/3c97e7b7709b313cecfb76d691ad4cc22acbf3f5",
  8029. "reference": "3c97e7b7709b313cecfb76d691ad4cc22acbf3f5",
  8030. "shasum": ""
  8031. },
  8032. "require": {
  8033. "php": "^7.2 || ^8.0",
  8034. "psr/log": "^1.0",
  8035. "symfony/http-kernel": "^4.4 || ^5.0",
  8036. "symfony/routing": "^4.4 || ^5.0"
  8037. },
  8038. "require-dev": {
  8039. "symfony-cmf/testing": "^3@dev",
  8040. "symfony/config": "^4.4 || ^5.0",
  8041. "symfony/dependency-injection": "^4.4 || ^5.0",
  8042. "symfony/event-dispatcher": "^4.4 || ^5.0",
  8043. "symfony/phpunit-bridge": "^5.0"
  8044. },
  8045. "suggest": {
  8046. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (^4.4 || ^5.0)"
  8047. },
  8048. "type": "library",
  8049. "extra": {
  8050. "branch-alias": {
  8051. "dev-master": "2.x-dev"
  8052. }
  8053. },
  8054. "autoload": {
  8055. "psr-4": {
  8056. "Symfony\\Cmf\\Component\\Routing\\": "src/"
  8057. }
  8058. },
  8059. "notification-url": "https://packagist.org/downloads/",
  8060. "license": [
  8061. "MIT"
  8062. ],
  8063. "authors": [
  8064. {
  8065. "name": "Symfony CMF Community",
  8066. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  8067. }
  8068. ],
  8069. "description": "Extends the Symfony routing component for dynamic routes and chaining several routers",
  8070. "homepage": "http://cmf.symfony.com",
  8071. "keywords": [
  8072. "database",
  8073. "routing"
  8074. ],
  8075. "support": {
  8076. "issues": "https://github.com/symfony-cmf/Routing/issues",
  8077. "source": "https://github.com/symfony-cmf/Routing/tree/2.3.3"
  8078. },
  8079. "time": "2020-10-06T10:15:37+00:00"
  8080. },
  8081. {
  8082. "name": "symfony/console",
  8083. "version": "v4.4.16",
  8084. "source": {
  8085. "type": "git",
  8086. "url": "https://github.com/symfony/console.git",
  8087. "reference": "20f73dd143a5815d475e0838ff867bce1eebd9d5"
  8088. },
  8089. "dist": {
  8090. "type": "zip",
  8091. "url": "https://api.github.com/repos/symfony/console/zipball/20f73dd143a5815d475e0838ff867bce1eebd9d5",
  8092. "reference": "20f73dd143a5815d475e0838ff867bce1eebd9d5",
  8093. "shasum": ""
  8094. },
  8095. "require": {
  8096. "php": ">=7.1.3",
  8097. "symfony/polyfill-mbstring": "~1.0",
  8098. "symfony/polyfill-php73": "^1.8",
  8099. "symfony/polyfill-php80": "^1.15",
  8100. "symfony/service-contracts": "^1.1|^2"
  8101. },
  8102. "conflict": {
  8103. "symfony/dependency-injection": "<3.4",
  8104. "symfony/event-dispatcher": "<4.3|>=5",
  8105. "symfony/lock": "<4.4",
  8106. "symfony/process": "<3.3"
  8107. },
  8108. "provide": {
  8109. "psr/log-implementation": "1.0"
  8110. },
  8111. "require-dev": {
  8112. "psr/log": "~1.0",
  8113. "symfony/config": "^3.4|^4.0|^5.0",
  8114. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  8115. "symfony/event-dispatcher": "^4.3",
  8116. "symfony/lock": "^4.4|^5.0",
  8117. "symfony/process": "^3.4|^4.0|^5.0",
  8118. "symfony/var-dumper": "^4.3|^5.0"
  8119. },
  8120. "suggest": {
  8121. "psr/log": "For using the console logger",
  8122. "symfony/event-dispatcher": "",
  8123. "symfony/lock": "",
  8124. "symfony/process": ""
  8125. },
  8126. "type": "library",
  8127. "autoload": {
  8128. "psr-4": {
  8129. "Symfony\\Component\\Console\\": ""
  8130. },
  8131. "exclude-from-classmap": [
  8132. "/Tests/"
  8133. ]
  8134. },
  8135. "notification-url": "https://packagist.org/downloads/",
  8136. "license": [
  8137. "MIT"
  8138. ],
  8139. "authors": [
  8140. {
  8141. "name": "Fabien Potencier",
  8142. "email": "fabien@symfony.com"
  8143. },
  8144. {
  8145. "name": "Symfony Community",
  8146. "homepage": "https://symfony.com/contributors"
  8147. }
  8148. ],
  8149. "description": "Symfony Console Component",
  8150. "homepage": "https://symfony.com",
  8151. "support": {
  8152. "source": "https://github.com/symfony/console/tree/v4.4.16"
  8153. },
  8154. "funding": [
  8155. {
  8156. "url": "https://symfony.com/sponsor",
  8157. "type": "custom"
  8158. },
  8159. {
  8160. "url": "https://github.com/fabpot",
  8161. "type": "github"
  8162. },
  8163. {
  8164. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8165. "type": "tidelift"
  8166. }
  8167. ],
  8168. "time": "2020-10-24T11:50:19+00:00"
  8169. },
  8170. {
  8171. "name": "symfony/debug",
  8172. "version": "v4.4.16",
  8173. "source": {
  8174. "type": "git",
  8175. "url": "https://github.com/symfony/debug.git",
  8176. "reference": "c87adf3fc1cd0bf4758316a3a150d50a8f957ef4"
  8177. },
  8178. "dist": {
  8179. "type": "zip",
  8180. "url": "https://api.github.com/repos/symfony/debug/zipball/c87adf3fc1cd0bf4758316a3a150d50a8f957ef4",
  8181. "reference": "c87adf3fc1cd0bf4758316a3a150d50a8f957ef4",
  8182. "shasum": ""
  8183. },
  8184. "require": {
  8185. "php": ">=7.1.3",
  8186. "psr/log": "~1.0",
  8187. "symfony/polyfill-php80": "^1.15"
  8188. },
  8189. "conflict": {
  8190. "symfony/http-kernel": "<3.4"
  8191. },
  8192. "require-dev": {
  8193. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  8194. },
  8195. "type": "library",
  8196. "autoload": {
  8197. "psr-4": {
  8198. "Symfony\\Component\\Debug\\": ""
  8199. },
  8200. "exclude-from-classmap": [
  8201. "/Tests/"
  8202. ]
  8203. },
  8204. "notification-url": "https://packagist.org/downloads/",
  8205. "license": [
  8206. "MIT"
  8207. ],
  8208. "authors": [
  8209. {
  8210. "name": "Fabien Potencier",
  8211. "email": "fabien@symfony.com"
  8212. },
  8213. {
  8214. "name": "Symfony Community",
  8215. "homepage": "https://symfony.com/contributors"
  8216. }
  8217. ],
  8218. "description": "Symfony Debug Component",
  8219. "homepage": "https://symfony.com",
  8220. "support": {
  8221. "source": "https://github.com/symfony/debug/tree/v4.4.16"
  8222. },
  8223. "funding": [
  8224. {
  8225. "url": "https://symfony.com/sponsor",
  8226. "type": "custom"
  8227. },
  8228. {
  8229. "url": "https://github.com/fabpot",
  8230. "type": "github"
  8231. },
  8232. {
  8233. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8234. "type": "tidelift"
  8235. }
  8236. ],
  8237. "abandoned": "symfony/error-handler",
  8238. "time": "2020-10-24T11:50:19+00:00"
  8239. },
  8240. {
  8241. "name": "symfony/dependency-injection",
  8242. "version": "v4.4.16",
  8243. "source": {
  8244. "type": "git",
  8245. "url": "https://github.com/symfony/dependency-injection.git",
  8246. "reference": "4c41ad68924fd8f9e55e1cd77fd6bc28daa3fe89"
  8247. },
  8248. "dist": {
  8249. "type": "zip",
  8250. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/4c41ad68924fd8f9e55e1cd77fd6bc28daa3fe89",
  8251. "reference": "4c41ad68924fd8f9e55e1cd77fd6bc28daa3fe89",
  8252. "shasum": ""
  8253. },
  8254. "require": {
  8255. "php": ">=7.1.3",
  8256. "psr/container": "^1.0",
  8257. "symfony/service-contracts": "^1.1.6|^2"
  8258. },
  8259. "conflict": {
  8260. "symfony/config": "<4.3|>=5.0",
  8261. "symfony/finder": "<3.4",
  8262. "symfony/proxy-manager-bridge": "<3.4",
  8263. "symfony/yaml": "<3.4"
  8264. },
  8265. "provide": {
  8266. "psr/container-implementation": "1.0",
  8267. "symfony/service-implementation": "1.0"
  8268. },
  8269. "require-dev": {
  8270. "symfony/config": "^4.3",
  8271. "symfony/expression-language": "^3.4|^4.0|^5.0",
  8272. "symfony/yaml": "^3.4|^4.0|^5.0"
  8273. },
  8274. "suggest": {
  8275. "symfony/config": "",
  8276. "symfony/expression-language": "For using expressions in service container configuration",
  8277. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  8278. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  8279. "symfony/yaml": ""
  8280. },
  8281. "type": "library",
  8282. "autoload": {
  8283. "psr-4": {
  8284. "Symfony\\Component\\DependencyInjection\\": ""
  8285. },
  8286. "exclude-from-classmap": [
  8287. "/Tests/"
  8288. ]
  8289. },
  8290. "notification-url": "https://packagist.org/downloads/",
  8291. "license": [
  8292. "MIT"
  8293. ],
  8294. "authors": [
  8295. {
  8296. "name": "Fabien Potencier",
  8297. "email": "fabien@symfony.com"
  8298. },
  8299. {
  8300. "name": "Symfony Community",
  8301. "homepage": "https://symfony.com/contributors"
  8302. }
  8303. ],
  8304. "description": "Symfony DependencyInjection Component",
  8305. "homepage": "https://symfony.com",
  8306. "support": {
  8307. "source": "https://github.com/symfony/dependency-injection/tree/v4.4.16"
  8308. },
  8309. "funding": [
  8310. {
  8311. "url": "https://symfony.com/sponsor",
  8312. "type": "custom"
  8313. },
  8314. {
  8315. "url": "https://github.com/fabpot",
  8316. "type": "github"
  8317. },
  8318. {
  8319. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8320. "type": "tidelift"
  8321. }
  8322. ],
  8323. "time": "2020-10-27T10:05:40+00:00"
  8324. },
  8325. {
  8326. "name": "symfony/deprecation-contracts",
  8327. "version": "v2.5.3",
  8328. "source": {
  8329. "type": "git",
  8330. "url": "https://github.com/symfony/deprecation-contracts.git",
  8331. "reference": "80d075412b557d41002320b96a096ca65aa2c98d"
  8332. },
  8333. "dist": {
  8334. "type": "zip",
  8335. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/80d075412b557d41002320b96a096ca65aa2c98d",
  8336. "reference": "80d075412b557d41002320b96a096ca65aa2c98d",
  8337. "shasum": ""
  8338. },
  8339. "require": {
  8340. "php": ">=7.1"
  8341. },
  8342. "type": "library",
  8343. "extra": {
  8344. "branch-alias": {
  8345. "dev-main": "2.5-dev"
  8346. },
  8347. "thanks": {
  8348. "name": "symfony/contracts",
  8349. "url": "https://github.com/symfony/contracts"
  8350. }
  8351. },
  8352. "autoload": {
  8353. "files": [
  8354. "function.php"
  8355. ]
  8356. },
  8357. "notification-url": "https://packagist.org/downloads/",
  8358. "license": [
  8359. "MIT"
  8360. ],
  8361. "authors": [
  8362. {
  8363. "name": "Nicolas Grekas",
  8364. "email": "p@tchwork.com"
  8365. },
  8366. {
  8367. "name": "Symfony Community",
  8368. "homepage": "https://symfony.com/contributors"
  8369. }
  8370. ],
  8371. "description": "A generic function and convention to trigger deprecation notices",
  8372. "homepage": "https://symfony.com",
  8373. "support": {
  8374. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.3"
  8375. },
  8376. "funding": [
  8377. {
  8378. "url": "https://symfony.com/sponsor",
  8379. "type": "custom"
  8380. },
  8381. {
  8382. "url": "https://github.com/fabpot",
  8383. "type": "github"
  8384. },
  8385. {
  8386. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8387. "type": "tidelift"
  8388. }
  8389. ],
  8390. "time": "2023-01-24T14:02:46+00:00"
  8391. },
  8392. {
  8393. "name": "symfony/error-handler",
  8394. "version": "v4.4.16",
  8395. "source": {
  8396. "type": "git",
  8397. "url": "https://github.com/symfony/error-handler.git",
  8398. "reference": "363cca01cabf98e4f1c447b14d0a68617f003613"
  8399. },
  8400. "dist": {
  8401. "type": "zip",
  8402. "url": "https://api.github.com/repos/symfony/error-handler/zipball/363cca01cabf98e4f1c447b14d0a68617f003613",
  8403. "reference": "363cca01cabf98e4f1c447b14d0a68617f003613",
  8404. "shasum": ""
  8405. },
  8406. "require": {
  8407. "php": ">=7.1.3",
  8408. "psr/log": "~1.0",
  8409. "symfony/debug": "^4.4.5",
  8410. "symfony/polyfill-php80": "^1.15",
  8411. "symfony/var-dumper": "^4.4|^5.0"
  8412. },
  8413. "require-dev": {
  8414. "symfony/http-kernel": "^4.4|^5.0",
  8415. "symfony/serializer": "^4.4|^5.0"
  8416. },
  8417. "type": "library",
  8418. "autoload": {
  8419. "psr-4": {
  8420. "Symfony\\Component\\ErrorHandler\\": ""
  8421. },
  8422. "exclude-from-classmap": [
  8423. "/Tests/"
  8424. ]
  8425. },
  8426. "notification-url": "https://packagist.org/downloads/",
  8427. "license": [
  8428. "MIT"
  8429. ],
  8430. "authors": [
  8431. {
  8432. "name": "Fabien Potencier",
  8433. "email": "fabien@symfony.com"
  8434. },
  8435. {
  8436. "name": "Symfony Community",
  8437. "homepage": "https://symfony.com/contributors"
  8438. }
  8439. ],
  8440. "description": "Symfony ErrorHandler Component",
  8441. "homepage": "https://symfony.com",
  8442. "support": {
  8443. "source": "https://github.com/symfony/error-handler/tree/v4.4.16"
  8444. },
  8445. "funding": [
  8446. {
  8447. "url": "https://symfony.com/sponsor",
  8448. "type": "custom"
  8449. },
  8450. {
  8451. "url": "https://github.com/fabpot",
  8452. "type": "github"
  8453. },
  8454. {
  8455. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8456. "type": "tidelift"
  8457. }
  8458. ],
  8459. "time": "2020-10-24T11:50:19+00:00"
  8460. },
  8461. {
  8462. "name": "symfony/event-dispatcher",
  8463. "version": "v4.4.16",
  8464. "source": {
  8465. "type": "git",
  8466. "url": "https://github.com/symfony/event-dispatcher.git",
  8467. "reference": "4204f13d2d0b7ad09454f221bb2195fccdf1fe98"
  8468. },
  8469. "dist": {
  8470. "type": "zip",
  8471. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/4204f13d2d0b7ad09454f221bb2195fccdf1fe98",
  8472. "reference": "4204f13d2d0b7ad09454f221bb2195fccdf1fe98",
  8473. "shasum": ""
  8474. },
  8475. "require": {
  8476. "php": ">=7.1.3",
  8477. "symfony/event-dispatcher-contracts": "^1.1"
  8478. },
  8479. "conflict": {
  8480. "symfony/dependency-injection": "<3.4"
  8481. },
  8482. "provide": {
  8483. "psr/event-dispatcher-implementation": "1.0",
  8484. "symfony/event-dispatcher-implementation": "1.1"
  8485. },
  8486. "require-dev": {
  8487. "psr/log": "~1.0",
  8488. "symfony/config": "^3.4|^4.0|^5.0",
  8489. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  8490. "symfony/error-handler": "~3.4|~4.4",
  8491. "symfony/expression-language": "^3.4|^4.0|^5.0",
  8492. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  8493. "symfony/service-contracts": "^1.1|^2",
  8494. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  8495. },
  8496. "suggest": {
  8497. "symfony/dependency-injection": "",
  8498. "symfony/http-kernel": ""
  8499. },
  8500. "type": "library",
  8501. "autoload": {
  8502. "psr-4": {
  8503. "Symfony\\Component\\EventDispatcher\\": ""
  8504. },
  8505. "exclude-from-classmap": [
  8506. "/Tests/"
  8507. ]
  8508. },
  8509. "notification-url": "https://packagist.org/downloads/",
  8510. "license": [
  8511. "MIT"
  8512. ],
  8513. "authors": [
  8514. {
  8515. "name": "Fabien Potencier",
  8516. "email": "fabien@symfony.com"
  8517. },
  8518. {
  8519. "name": "Symfony Community",
  8520. "homepage": "https://symfony.com/contributors"
  8521. }
  8522. ],
  8523. "description": "Symfony EventDispatcher Component",
  8524. "homepage": "https://symfony.com",
  8525. "support": {
  8526. "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.16"
  8527. },
  8528. "funding": [
  8529. {
  8530. "url": "https://symfony.com/sponsor",
  8531. "type": "custom"
  8532. },
  8533. {
  8534. "url": "https://github.com/fabpot",
  8535. "type": "github"
  8536. },
  8537. {
  8538. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8539. "type": "tidelift"
  8540. }
  8541. ],
  8542. "time": "2020-10-24T11:50:19+00:00"
  8543. },
  8544. {
  8545. "name": "symfony/event-dispatcher-contracts",
  8546. "version": "v1.1.9",
  8547. "source": {
  8548. "type": "git",
  8549. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  8550. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7"
  8551. },
  8552. "dist": {
  8553. "type": "zip",
  8554. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  8555. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  8556. "shasum": ""
  8557. },
  8558. "require": {
  8559. "php": ">=7.1.3"
  8560. },
  8561. "suggest": {
  8562. "psr/event-dispatcher": "",
  8563. "symfony/event-dispatcher-implementation": ""
  8564. },
  8565. "type": "library",
  8566. "extra": {
  8567. "branch-alias": {
  8568. "dev-master": "1.1-dev"
  8569. },
  8570. "thanks": {
  8571. "name": "symfony/contracts",
  8572. "url": "https://github.com/symfony/contracts"
  8573. }
  8574. },
  8575. "autoload": {
  8576. "psr-4": {
  8577. "Symfony\\Contracts\\EventDispatcher\\": ""
  8578. }
  8579. },
  8580. "notification-url": "https://packagist.org/downloads/",
  8581. "license": [
  8582. "MIT"
  8583. ],
  8584. "authors": [
  8585. {
  8586. "name": "Nicolas Grekas",
  8587. "email": "p@tchwork.com"
  8588. },
  8589. {
  8590. "name": "Symfony Community",
  8591. "homepage": "https://symfony.com/contributors"
  8592. }
  8593. ],
  8594. "description": "Generic abstractions related to dispatching event",
  8595. "homepage": "https://symfony.com",
  8596. "keywords": [
  8597. "abstractions",
  8598. "contracts",
  8599. "decoupling",
  8600. "interfaces",
  8601. "interoperability",
  8602. "standards"
  8603. ],
  8604. "support": {
  8605. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.9"
  8606. },
  8607. "funding": [
  8608. {
  8609. "url": "https://symfony.com/sponsor",
  8610. "type": "custom"
  8611. },
  8612. {
  8613. "url": "https://github.com/fabpot",
  8614. "type": "github"
  8615. },
  8616. {
  8617. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8618. "type": "tidelift"
  8619. }
  8620. ],
  8621. "time": "2020-07-06T13:19:58+00:00"
  8622. },
  8623. {
  8624. "name": "symfony/filesystem",
  8625. "version": "v4.4.42",
  8626. "source": {
  8627. "type": "git",
  8628. "url": "https://github.com/symfony/filesystem.git",
  8629. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5"
  8630. },
  8631. "dist": {
  8632. "type": "zip",
  8633. "url": "https://api.github.com/repos/symfony/filesystem/zipball/815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  8634. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  8635. "shasum": ""
  8636. },
  8637. "require": {
  8638. "php": ">=7.1.3",
  8639. "symfony/polyfill-ctype": "~1.8",
  8640. "symfony/polyfill-php80": "^1.16"
  8641. },
  8642. "type": "library",
  8643. "autoload": {
  8644. "psr-4": {
  8645. "Symfony\\Component\\Filesystem\\": ""
  8646. },
  8647. "exclude-from-classmap": [
  8648. "/Tests/"
  8649. ]
  8650. },
  8651. "notification-url": "https://packagist.org/downloads/",
  8652. "license": [
  8653. "MIT"
  8654. ],
  8655. "authors": [
  8656. {
  8657. "name": "Fabien Potencier",
  8658. "email": "fabien@symfony.com"
  8659. },
  8660. {
  8661. "name": "Symfony Community",
  8662. "homepage": "https://symfony.com/contributors"
  8663. }
  8664. ],
  8665. "description": "Provides basic utilities for the filesystem",
  8666. "homepage": "https://symfony.com",
  8667. "support": {
  8668. "source": "https://github.com/symfony/filesystem/tree/v4.4.42"
  8669. },
  8670. "funding": [
  8671. {
  8672. "url": "https://symfony.com/sponsor",
  8673. "type": "custom"
  8674. },
  8675. {
  8676. "url": "https://github.com/fabpot",
  8677. "type": "github"
  8678. },
  8679. {
  8680. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8681. "type": "tidelift"
  8682. }
  8683. ],
  8684. "time": "2022-05-20T08:49:14+00:00"
  8685. },
  8686. {
  8687. "name": "symfony/finder",
  8688. "version": "v5.4.43",
  8689. "source": {
  8690. "type": "git",
  8691. "url": "https://github.com/symfony/finder.git",
  8692. "reference": "ae25a9145a900764158d439653d5630191155ca0"
  8693. },
  8694. "dist": {
  8695. "type": "zip",
  8696. "url": "https://api.github.com/repos/symfony/finder/zipball/ae25a9145a900764158d439653d5630191155ca0",
  8697. "reference": "ae25a9145a900764158d439653d5630191155ca0",
  8698. "shasum": ""
  8699. },
  8700. "require": {
  8701. "php": ">=7.2.5",
  8702. "symfony/deprecation-contracts": "^2.1|^3",
  8703. "symfony/polyfill-php80": "^1.16"
  8704. },
  8705. "type": "library",
  8706. "autoload": {
  8707. "psr-4": {
  8708. "Symfony\\Component\\Finder\\": ""
  8709. },
  8710. "exclude-from-classmap": [
  8711. "/Tests/"
  8712. ]
  8713. },
  8714. "notification-url": "https://packagist.org/downloads/",
  8715. "license": [
  8716. "MIT"
  8717. ],
  8718. "authors": [
  8719. {
  8720. "name": "Fabien Potencier",
  8721. "email": "fabien@symfony.com"
  8722. },
  8723. {
  8724. "name": "Symfony Community",
  8725. "homepage": "https://symfony.com/contributors"
  8726. }
  8727. ],
  8728. "description": "Finds files and directories via an intuitive fluent interface",
  8729. "homepage": "https://symfony.com",
  8730. "support": {
  8731. "source": "https://github.com/symfony/finder/tree/v5.4.43"
  8732. },
  8733. "funding": [
  8734. {
  8735. "url": "https://symfony.com/sponsor",
  8736. "type": "custom"
  8737. },
  8738. {
  8739. "url": "https://github.com/fabpot",
  8740. "type": "github"
  8741. },
  8742. {
  8743. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8744. "type": "tidelift"
  8745. }
  8746. ],
  8747. "time": "2024-08-13T14:03:51+00:00"
  8748. },
  8749. {
  8750. "name": "symfony/http-client-contracts",
  8751. "version": "v2.3.1",
  8752. "source": {
  8753. "type": "git",
  8754. "url": "https://github.com/symfony/http-client-contracts.git",
  8755. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  8756. },
  8757. "dist": {
  8758. "type": "zip",
  8759. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  8760. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  8761. "shasum": ""
  8762. },
  8763. "require": {
  8764. "php": ">=7.2.5"
  8765. },
  8766. "suggest": {
  8767. "symfony/http-client-implementation": ""
  8768. },
  8769. "type": "library",
  8770. "extra": {
  8771. "branch-version": "2.3",
  8772. "branch-alias": {
  8773. "dev-main": "2.3-dev"
  8774. },
  8775. "thanks": {
  8776. "name": "symfony/contracts",
  8777. "url": "https://github.com/symfony/contracts"
  8778. }
  8779. },
  8780. "autoload": {
  8781. "psr-4": {
  8782. "Symfony\\Contracts\\HttpClient\\": ""
  8783. }
  8784. },
  8785. "notification-url": "https://packagist.org/downloads/",
  8786. "license": [
  8787. "MIT"
  8788. ],
  8789. "authors": [
  8790. {
  8791. "name": "Nicolas Grekas",
  8792. "email": "p@tchwork.com"
  8793. },
  8794. {
  8795. "name": "Symfony Community",
  8796. "homepage": "https://symfony.com/contributors"
  8797. }
  8798. ],
  8799. "description": "Generic abstractions related to HTTP clients",
  8800. "homepage": "https://symfony.com",
  8801. "keywords": [
  8802. "abstractions",
  8803. "contracts",
  8804. "decoupling",
  8805. "interfaces",
  8806. "interoperability",
  8807. "standards"
  8808. ],
  8809. "support": {
  8810. "source": "https://github.com/symfony/http-client-contracts/tree/v2.3.1"
  8811. },
  8812. "funding": [
  8813. {
  8814. "url": "https://symfony.com/sponsor",
  8815. "type": "custom"
  8816. },
  8817. {
  8818. "url": "https://github.com/fabpot",
  8819. "type": "github"
  8820. },
  8821. {
  8822. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8823. "type": "tidelift"
  8824. }
  8825. ],
  8826. "time": "2020-10-14T17:08:19+00:00"
  8827. },
  8828. {
  8829. "name": "symfony/http-foundation",
  8830. "version": "v4.4.16",
  8831. "source": {
  8832. "type": "git",
  8833. "url": "https://github.com/symfony/http-foundation.git",
  8834. "reference": "827a00811ef699e809a201ceafac0b2b246bf38a"
  8835. },
  8836. "dist": {
  8837. "type": "zip",
  8838. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/827a00811ef699e809a201ceafac0b2b246bf38a",
  8839. "reference": "827a00811ef699e809a201ceafac0b2b246bf38a",
  8840. "shasum": ""
  8841. },
  8842. "require": {
  8843. "php": ">=7.1.3",
  8844. "symfony/mime": "^4.3|^5.0",
  8845. "symfony/polyfill-mbstring": "~1.1"
  8846. },
  8847. "require-dev": {
  8848. "predis/predis": "~1.0",
  8849. "symfony/expression-language": "^3.4|^4.0|^5.0"
  8850. },
  8851. "type": "library",
  8852. "autoload": {
  8853. "psr-4": {
  8854. "Symfony\\Component\\HttpFoundation\\": ""
  8855. },
  8856. "exclude-from-classmap": [
  8857. "/Tests/"
  8858. ]
  8859. },
  8860. "notification-url": "https://packagist.org/downloads/",
  8861. "license": [
  8862. "MIT"
  8863. ],
  8864. "authors": [
  8865. {
  8866. "name": "Fabien Potencier",
  8867. "email": "fabien@symfony.com"
  8868. },
  8869. {
  8870. "name": "Symfony Community",
  8871. "homepage": "https://symfony.com/contributors"
  8872. }
  8873. ],
  8874. "description": "Symfony HttpFoundation Component",
  8875. "homepage": "https://symfony.com",
  8876. "support": {
  8877. "source": "https://github.com/symfony/http-foundation/tree/v4.4.16"
  8878. },
  8879. "funding": [
  8880. {
  8881. "url": "https://symfony.com/sponsor",
  8882. "type": "custom"
  8883. },
  8884. {
  8885. "url": "https://github.com/fabpot",
  8886. "type": "github"
  8887. },
  8888. {
  8889. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8890. "type": "tidelift"
  8891. }
  8892. ],
  8893. "time": "2020-10-24T11:50:19+00:00"
  8894. },
  8895. {
  8896. "name": "symfony/http-kernel",
  8897. "version": "v4.4.16",
  8898. "source": {
  8899. "type": "git",
  8900. "url": "https://github.com/symfony/http-kernel.git",
  8901. "reference": "109b2a46e470a487ec8b0ffea4b0bb993aaf42ed"
  8902. },
  8903. "dist": {
  8904. "type": "zip",
  8905. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/109b2a46e470a487ec8b0ffea4b0bb993aaf42ed",
  8906. "reference": "109b2a46e470a487ec8b0ffea4b0bb993aaf42ed",
  8907. "shasum": ""
  8908. },
  8909. "require": {
  8910. "php": ">=7.1.3",
  8911. "psr/log": "~1.0",
  8912. "symfony/error-handler": "^4.4",
  8913. "symfony/event-dispatcher": "^4.4",
  8914. "symfony/http-client-contracts": "^1.1|^2",
  8915. "symfony/http-foundation": "^4.4|^5.0",
  8916. "symfony/polyfill-ctype": "^1.8",
  8917. "symfony/polyfill-php73": "^1.9",
  8918. "symfony/polyfill-php80": "^1.15"
  8919. },
  8920. "conflict": {
  8921. "symfony/browser-kit": "<4.3",
  8922. "symfony/config": "<3.4",
  8923. "symfony/console": ">=5",
  8924. "symfony/dependency-injection": "<4.3",
  8925. "symfony/translation": "<4.2",
  8926. "twig/twig": "<1.34|<2.4,>=2"
  8927. },
  8928. "provide": {
  8929. "psr/log-implementation": "1.0"
  8930. },
  8931. "require-dev": {
  8932. "psr/cache": "~1.0",
  8933. "symfony/browser-kit": "^4.3|^5.0",
  8934. "symfony/config": "^3.4|^4.0|^5.0",
  8935. "symfony/console": "^3.4|^4.0",
  8936. "symfony/css-selector": "^3.4|^4.0|^5.0",
  8937. "symfony/dependency-injection": "^4.3|^5.0",
  8938. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  8939. "symfony/expression-language": "^3.4|^4.0|^5.0",
  8940. "symfony/finder": "^3.4|^4.0|^5.0",
  8941. "symfony/process": "^3.4|^4.0|^5.0",
  8942. "symfony/routing": "^3.4|^4.0|^5.0",
  8943. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  8944. "symfony/templating": "^3.4|^4.0|^5.0",
  8945. "symfony/translation": "^4.2|^5.0",
  8946. "symfony/translation-contracts": "^1.1|^2",
  8947. "twig/twig": "^1.34|^2.4|^3.0"
  8948. },
  8949. "suggest": {
  8950. "symfony/browser-kit": "",
  8951. "symfony/config": "",
  8952. "symfony/console": "",
  8953. "symfony/dependency-injection": ""
  8954. },
  8955. "type": "library",
  8956. "autoload": {
  8957. "psr-4": {
  8958. "Symfony\\Component\\HttpKernel\\": ""
  8959. },
  8960. "exclude-from-classmap": [
  8961. "/Tests/"
  8962. ]
  8963. },
  8964. "notification-url": "https://packagist.org/downloads/",
  8965. "license": [
  8966. "MIT"
  8967. ],
  8968. "authors": [
  8969. {
  8970. "name": "Fabien Potencier",
  8971. "email": "fabien@symfony.com"
  8972. },
  8973. {
  8974. "name": "Symfony Community",
  8975. "homepage": "https://symfony.com/contributors"
  8976. }
  8977. ],
  8978. "description": "Symfony HttpKernel Component",
  8979. "homepage": "https://symfony.com",
  8980. "support": {
  8981. "source": "https://github.com/symfony/http-kernel/tree/v4.4.16"
  8982. },
  8983. "funding": [
  8984. {
  8985. "url": "https://symfony.com/sponsor",
  8986. "type": "custom"
  8987. },
  8988. {
  8989. "url": "https://github.com/fabpot",
  8990. "type": "github"
  8991. },
  8992. {
  8993. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8994. "type": "tidelift"
  8995. }
  8996. ],
  8997. "time": "2020-10-28T05:50:56+00:00"
  8998. },
  8999. {
  9000. "name": "symfony/mime",
  9001. "version": "v5.1.8",
  9002. "source": {
  9003. "type": "git",
  9004. "url": "https://github.com/symfony/mime.git",
  9005. "reference": "f5485a92c24d4bcfc2f3fc648744fb398482ff1b"
  9006. },
  9007. "dist": {
  9008. "type": "zip",
  9009. "url": "https://api.github.com/repos/symfony/mime/zipball/f5485a92c24d4bcfc2f3fc648744fb398482ff1b",
  9010. "reference": "f5485a92c24d4bcfc2f3fc648744fb398482ff1b",
  9011. "shasum": ""
  9012. },
  9013. "require": {
  9014. "php": ">=7.2.5",
  9015. "symfony/polyfill-intl-idn": "^1.10",
  9016. "symfony/polyfill-mbstring": "^1.0",
  9017. "symfony/polyfill-php80": "^1.15"
  9018. },
  9019. "conflict": {
  9020. "symfony/mailer": "<4.4"
  9021. },
  9022. "require-dev": {
  9023. "egulias/email-validator": "^2.1.10",
  9024. "symfony/dependency-injection": "^4.4|^5.0"
  9025. },
  9026. "type": "library",
  9027. "autoload": {
  9028. "psr-4": {
  9029. "Symfony\\Component\\Mime\\": ""
  9030. },
  9031. "exclude-from-classmap": [
  9032. "/Tests/"
  9033. ]
  9034. },
  9035. "notification-url": "https://packagist.org/downloads/",
  9036. "license": [
  9037. "MIT"
  9038. ],
  9039. "authors": [
  9040. {
  9041. "name": "Fabien Potencier",
  9042. "email": "fabien@symfony.com"
  9043. },
  9044. {
  9045. "name": "Symfony Community",
  9046. "homepage": "https://symfony.com/contributors"
  9047. }
  9048. ],
  9049. "description": "A library to manipulate MIME messages",
  9050. "homepage": "https://symfony.com",
  9051. "keywords": [
  9052. "mime",
  9053. "mime-type"
  9054. ],
  9055. "support": {
  9056. "source": "https://github.com/symfony/mime/tree/v5.1.8"
  9057. },
  9058. "funding": [
  9059. {
  9060. "url": "https://symfony.com/sponsor",
  9061. "type": "custom"
  9062. },
  9063. {
  9064. "url": "https://github.com/fabpot",
  9065. "type": "github"
  9066. },
  9067. {
  9068. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9069. "type": "tidelift"
  9070. }
  9071. ],
  9072. "time": "2020-10-24T12:01:57+00:00"
  9073. },
  9074. {
  9075. "name": "symfony/polyfill-ctype",
  9076. "version": "v1.20.0",
  9077. "source": {
  9078. "type": "git",
  9079. "url": "https://github.com/symfony/polyfill-ctype.git",
  9080. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
  9081. },
  9082. "dist": {
  9083. "type": "zip",
  9084. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  9085. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  9086. "shasum": ""
  9087. },
  9088. "require": {
  9089. "php": ">=7.1"
  9090. },
  9091. "suggest": {
  9092. "ext-ctype": "For best performance"
  9093. },
  9094. "type": "library",
  9095. "extra": {
  9096. "branch-alias": {
  9097. "dev-main": "1.20-dev"
  9098. },
  9099. "thanks": {
  9100. "name": "symfony/polyfill",
  9101. "url": "https://github.com/symfony/polyfill"
  9102. }
  9103. },
  9104. "autoload": {
  9105. "files": [
  9106. "bootstrap.php"
  9107. ],
  9108. "psr-4": {
  9109. "Symfony\\Polyfill\\Ctype\\": ""
  9110. }
  9111. },
  9112. "notification-url": "https://packagist.org/downloads/",
  9113. "license": [
  9114. "MIT"
  9115. ],
  9116. "authors": [
  9117. {
  9118. "name": "Gert de Pagter",
  9119. "email": "BackEndTea@gmail.com"
  9120. },
  9121. {
  9122. "name": "Symfony Community",
  9123. "homepage": "https://symfony.com/contributors"
  9124. }
  9125. ],
  9126. "description": "Symfony polyfill for ctype functions",
  9127. "homepage": "https://symfony.com",
  9128. "keywords": [
  9129. "compatibility",
  9130. "ctype",
  9131. "polyfill",
  9132. "portable"
  9133. ],
  9134. "support": {
  9135. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.20.0"
  9136. },
  9137. "funding": [
  9138. {
  9139. "url": "https://symfony.com/sponsor",
  9140. "type": "custom"
  9141. },
  9142. {
  9143. "url": "https://github.com/fabpot",
  9144. "type": "github"
  9145. },
  9146. {
  9147. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9148. "type": "tidelift"
  9149. }
  9150. ],
  9151. "time": "2020-10-23T14:02:19+00:00"
  9152. },
  9153. {
  9154. "name": "symfony/polyfill-iconv",
  9155. "version": "v1.20.0",
  9156. "source": {
  9157. "type": "git",
  9158. "url": "https://github.com/symfony/polyfill-iconv.git",
  9159. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024"
  9160. },
  9161. "dist": {
  9162. "type": "zip",
  9163. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c536646fdb4f29104dd26effc2fdcb9a5b085024",
  9164. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024",
  9165. "shasum": ""
  9166. },
  9167. "require": {
  9168. "php": ">=7.1"
  9169. },
  9170. "suggest": {
  9171. "ext-iconv": "For best performance"
  9172. },
  9173. "type": "library",
  9174. "extra": {
  9175. "branch-alias": {
  9176. "dev-main": "1.20-dev"
  9177. },
  9178. "thanks": {
  9179. "name": "symfony/polyfill",
  9180. "url": "https://github.com/symfony/polyfill"
  9181. }
  9182. },
  9183. "autoload": {
  9184. "files": [
  9185. "bootstrap.php"
  9186. ],
  9187. "psr-4": {
  9188. "Symfony\\Polyfill\\Iconv\\": ""
  9189. }
  9190. },
  9191. "notification-url": "https://packagist.org/downloads/",
  9192. "license": [
  9193. "MIT"
  9194. ],
  9195. "authors": [
  9196. {
  9197. "name": "Nicolas Grekas",
  9198. "email": "p@tchwork.com"
  9199. },
  9200. {
  9201. "name": "Symfony Community",
  9202. "homepage": "https://symfony.com/contributors"
  9203. }
  9204. ],
  9205. "description": "Symfony polyfill for the Iconv extension",
  9206. "homepage": "https://symfony.com",
  9207. "keywords": [
  9208. "compatibility",
  9209. "iconv",
  9210. "polyfill",
  9211. "portable",
  9212. "shim"
  9213. ],
  9214. "support": {
  9215. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.20.0"
  9216. },
  9217. "funding": [
  9218. {
  9219. "url": "https://symfony.com/sponsor",
  9220. "type": "custom"
  9221. },
  9222. {
  9223. "url": "https://github.com/fabpot",
  9224. "type": "github"
  9225. },
  9226. {
  9227. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9228. "type": "tidelift"
  9229. }
  9230. ],
  9231. "time": "2020-10-23T14:02:19+00:00"
  9232. },
  9233. {
  9234. "name": "symfony/polyfill-intl-idn",
  9235. "version": "v1.20.0",
  9236. "source": {
  9237. "type": "git",
  9238. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  9239. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117"
  9240. },
  9241. "dist": {
  9242. "type": "zip",
  9243. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117",
  9244. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117",
  9245. "shasum": ""
  9246. },
  9247. "require": {
  9248. "php": ">=7.1",
  9249. "symfony/polyfill-intl-normalizer": "^1.10",
  9250. "symfony/polyfill-php72": "^1.10"
  9251. },
  9252. "suggest": {
  9253. "ext-intl": "For best performance"
  9254. },
  9255. "type": "library",
  9256. "extra": {
  9257. "branch-alias": {
  9258. "dev-main": "1.20-dev"
  9259. },
  9260. "thanks": {
  9261. "name": "symfony/polyfill",
  9262. "url": "https://github.com/symfony/polyfill"
  9263. }
  9264. },
  9265. "autoload": {
  9266. "files": [
  9267. "bootstrap.php"
  9268. ],
  9269. "psr-4": {
  9270. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  9271. }
  9272. },
  9273. "notification-url": "https://packagist.org/downloads/",
  9274. "license": [
  9275. "MIT"
  9276. ],
  9277. "authors": [
  9278. {
  9279. "name": "Laurent Bassin",
  9280. "email": "laurent@bassin.info"
  9281. },
  9282. {
  9283. "name": "Trevor Rowbotham",
  9284. "email": "trevor.rowbotham@pm.me"
  9285. },
  9286. {
  9287. "name": "Symfony Community",
  9288. "homepage": "https://symfony.com/contributors"
  9289. }
  9290. ],
  9291. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  9292. "homepage": "https://symfony.com",
  9293. "keywords": [
  9294. "compatibility",
  9295. "idn",
  9296. "intl",
  9297. "polyfill",
  9298. "portable",
  9299. "shim"
  9300. ],
  9301. "support": {
  9302. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.20.0"
  9303. },
  9304. "funding": [
  9305. {
  9306. "url": "https://symfony.com/sponsor",
  9307. "type": "custom"
  9308. },
  9309. {
  9310. "url": "https://github.com/fabpot",
  9311. "type": "github"
  9312. },
  9313. {
  9314. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9315. "type": "tidelift"
  9316. }
  9317. ],
  9318. "time": "2020-10-23T14:02:19+00:00"
  9319. },
  9320. {
  9321. "name": "symfony/polyfill-intl-normalizer",
  9322. "version": "v1.20.0",
  9323. "source": {
  9324. "type": "git",
  9325. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  9326. "reference": "727d1096295d807c309fb01a851577302394c897"
  9327. },
  9328. "dist": {
  9329. "type": "zip",
  9330. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897",
  9331. "reference": "727d1096295d807c309fb01a851577302394c897",
  9332. "shasum": ""
  9333. },
  9334. "require": {
  9335. "php": ">=7.1"
  9336. },
  9337. "suggest": {
  9338. "ext-intl": "For best performance"
  9339. },
  9340. "type": "library",
  9341. "extra": {
  9342. "branch-alias": {
  9343. "dev-main": "1.20-dev"
  9344. },
  9345. "thanks": {
  9346. "name": "symfony/polyfill",
  9347. "url": "https://github.com/symfony/polyfill"
  9348. }
  9349. },
  9350. "autoload": {
  9351. "files": [
  9352. "bootstrap.php"
  9353. ],
  9354. "psr-4": {
  9355. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  9356. },
  9357. "classmap": [
  9358. "Resources/stubs"
  9359. ]
  9360. },
  9361. "notification-url": "https://packagist.org/downloads/",
  9362. "license": [
  9363. "MIT"
  9364. ],
  9365. "authors": [
  9366. {
  9367. "name": "Nicolas Grekas",
  9368. "email": "p@tchwork.com"
  9369. },
  9370. {
  9371. "name": "Symfony Community",
  9372. "homepage": "https://symfony.com/contributors"
  9373. }
  9374. ],
  9375. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  9376. "homepage": "https://symfony.com",
  9377. "keywords": [
  9378. "compatibility",
  9379. "intl",
  9380. "normalizer",
  9381. "polyfill",
  9382. "portable",
  9383. "shim"
  9384. ],
  9385. "support": {
  9386. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.20.0"
  9387. },
  9388. "funding": [
  9389. {
  9390. "url": "https://symfony.com/sponsor",
  9391. "type": "custom"
  9392. },
  9393. {
  9394. "url": "https://github.com/fabpot",
  9395. "type": "github"
  9396. },
  9397. {
  9398. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9399. "type": "tidelift"
  9400. }
  9401. ],
  9402. "time": "2020-10-23T14:02:19+00:00"
  9403. },
  9404. {
  9405. "name": "symfony/polyfill-mbstring",
  9406. "version": "v1.20.0",
  9407. "source": {
  9408. "type": "git",
  9409. "url": "https://github.com/symfony/polyfill-mbstring.git",
  9410. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
  9411. },
  9412. "dist": {
  9413. "type": "zip",
  9414. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
  9415. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
  9416. "shasum": ""
  9417. },
  9418. "require": {
  9419. "php": ">=7.1"
  9420. },
  9421. "suggest": {
  9422. "ext-mbstring": "For best performance"
  9423. },
  9424. "type": "library",
  9425. "extra": {
  9426. "branch-alias": {
  9427. "dev-main": "1.20-dev"
  9428. },
  9429. "thanks": {
  9430. "name": "symfony/polyfill",
  9431. "url": "https://github.com/symfony/polyfill"
  9432. }
  9433. },
  9434. "autoload": {
  9435. "files": [
  9436. "bootstrap.php"
  9437. ],
  9438. "psr-4": {
  9439. "Symfony\\Polyfill\\Mbstring\\": ""
  9440. }
  9441. },
  9442. "notification-url": "https://packagist.org/downloads/",
  9443. "license": [
  9444. "MIT"
  9445. ],
  9446. "authors": [
  9447. {
  9448. "name": "Nicolas Grekas",
  9449. "email": "p@tchwork.com"
  9450. },
  9451. {
  9452. "name": "Symfony Community",
  9453. "homepage": "https://symfony.com/contributors"
  9454. }
  9455. ],
  9456. "description": "Symfony polyfill for the Mbstring extension",
  9457. "homepage": "https://symfony.com",
  9458. "keywords": [
  9459. "compatibility",
  9460. "mbstring",
  9461. "polyfill",
  9462. "portable",
  9463. "shim"
  9464. ],
  9465. "support": {
  9466. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.20.0"
  9467. },
  9468. "funding": [
  9469. {
  9470. "url": "https://symfony.com/sponsor",
  9471. "type": "custom"
  9472. },
  9473. {
  9474. "url": "https://github.com/fabpot",
  9475. "type": "github"
  9476. },
  9477. {
  9478. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9479. "type": "tidelift"
  9480. }
  9481. ],
  9482. "time": "2020-10-23T14:02:19+00:00"
  9483. },
  9484. {
  9485. "name": "symfony/polyfill-php72",
  9486. "version": "v1.31.0",
  9487. "source": {
  9488. "type": "git",
  9489. "url": "https://github.com/symfony/polyfill-php72.git",
  9490. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce"
  9491. },
  9492. "dist": {
  9493. "type": "zip",
  9494. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  9495. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  9496. "shasum": ""
  9497. },
  9498. "require": {
  9499. "php": ">=7.2"
  9500. },
  9501. "type": "metapackage",
  9502. "extra": {
  9503. "thanks": {
  9504. "name": "symfony/polyfill",
  9505. "url": "https://github.com/symfony/polyfill"
  9506. }
  9507. },
  9508. "notification-url": "https://packagist.org/downloads/",
  9509. "license": [
  9510. "MIT"
  9511. ],
  9512. "authors": [
  9513. {
  9514. "name": "Nicolas Grekas",
  9515. "email": "p@tchwork.com"
  9516. },
  9517. {
  9518. "name": "Symfony Community",
  9519. "homepage": "https://symfony.com/contributors"
  9520. }
  9521. ],
  9522. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  9523. "homepage": "https://symfony.com",
  9524. "keywords": [
  9525. "compatibility",
  9526. "polyfill",
  9527. "portable",
  9528. "shim"
  9529. ],
  9530. "support": {
  9531. "source": "https://github.com/symfony/polyfill-php72/tree/v1.31.0"
  9532. },
  9533. "funding": [
  9534. {
  9535. "url": "https://symfony.com/sponsor",
  9536. "type": "custom"
  9537. },
  9538. {
  9539. "url": "https://github.com/fabpot",
  9540. "type": "github"
  9541. },
  9542. {
  9543. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9544. "type": "tidelift"
  9545. }
  9546. ],
  9547. "time": "2024-09-09T11:45:10+00:00"
  9548. },
  9549. {
  9550. "name": "symfony/polyfill-php73",
  9551. "version": "v1.31.0",
  9552. "source": {
  9553. "type": "git",
  9554. "url": "https://github.com/symfony/polyfill-php73.git",
  9555. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb"
  9556. },
  9557. "dist": {
  9558. "type": "zip",
  9559. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  9560. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  9561. "shasum": ""
  9562. },
  9563. "require": {
  9564. "php": ">=7.2"
  9565. },
  9566. "type": "library",
  9567. "extra": {
  9568. "thanks": {
  9569. "name": "symfony/polyfill",
  9570. "url": "https://github.com/symfony/polyfill"
  9571. }
  9572. },
  9573. "autoload": {
  9574. "files": [
  9575. "bootstrap.php"
  9576. ],
  9577. "psr-4": {
  9578. "Symfony\\Polyfill\\Php73\\": ""
  9579. },
  9580. "classmap": [
  9581. "Resources/stubs"
  9582. ]
  9583. },
  9584. "notification-url": "https://packagist.org/downloads/",
  9585. "license": [
  9586. "MIT"
  9587. ],
  9588. "authors": [
  9589. {
  9590. "name": "Nicolas Grekas",
  9591. "email": "p@tchwork.com"
  9592. },
  9593. {
  9594. "name": "Symfony Community",
  9595. "homepage": "https://symfony.com/contributors"
  9596. }
  9597. ],
  9598. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  9599. "homepage": "https://symfony.com",
  9600. "keywords": [
  9601. "compatibility",
  9602. "polyfill",
  9603. "portable",
  9604. "shim"
  9605. ],
  9606. "support": {
  9607. "source": "https://github.com/symfony/polyfill-php73/tree/v1.31.0"
  9608. },
  9609. "funding": [
  9610. {
  9611. "url": "https://symfony.com/sponsor",
  9612. "type": "custom"
  9613. },
  9614. {
  9615. "url": "https://github.com/fabpot",
  9616. "type": "github"
  9617. },
  9618. {
  9619. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9620. "type": "tidelift"
  9621. }
  9622. ],
  9623. "time": "2024-09-09T11:45:10+00:00"
  9624. },
  9625. {
  9626. "name": "symfony/polyfill-php80",
  9627. "version": "v1.20.0",
  9628. "source": {
  9629. "type": "git",
  9630. "url": "https://github.com/symfony/polyfill-php80.git",
  9631. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de"
  9632. },
  9633. "dist": {
  9634. "type": "zip",
  9635. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  9636. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  9637. "shasum": ""
  9638. },
  9639. "require": {
  9640. "php": ">=7.1"
  9641. },
  9642. "type": "library",
  9643. "extra": {
  9644. "branch-alias": {
  9645. "dev-main": "1.20-dev"
  9646. },
  9647. "thanks": {
  9648. "name": "symfony/polyfill",
  9649. "url": "https://github.com/symfony/polyfill"
  9650. }
  9651. },
  9652. "autoload": {
  9653. "files": [
  9654. "bootstrap.php"
  9655. ],
  9656. "psr-4": {
  9657. "Symfony\\Polyfill\\Php80\\": ""
  9658. },
  9659. "classmap": [
  9660. "Resources/stubs"
  9661. ]
  9662. },
  9663. "notification-url": "https://packagist.org/downloads/",
  9664. "license": [
  9665. "MIT"
  9666. ],
  9667. "authors": [
  9668. {
  9669. "name": "Ion Bazan",
  9670. "email": "ion.bazan@gmail.com"
  9671. },
  9672. {
  9673. "name": "Nicolas Grekas",
  9674. "email": "p@tchwork.com"
  9675. },
  9676. {
  9677. "name": "Symfony Community",
  9678. "homepage": "https://symfony.com/contributors"
  9679. }
  9680. ],
  9681. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  9682. "homepage": "https://symfony.com",
  9683. "keywords": [
  9684. "compatibility",
  9685. "polyfill",
  9686. "portable",
  9687. "shim"
  9688. ],
  9689. "support": {
  9690. "source": "https://github.com/symfony/polyfill-php80/tree/v1.20.0"
  9691. },
  9692. "funding": [
  9693. {
  9694. "url": "https://symfony.com/sponsor",
  9695. "type": "custom"
  9696. },
  9697. {
  9698. "url": "https://github.com/fabpot",
  9699. "type": "github"
  9700. },
  9701. {
  9702. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9703. "type": "tidelift"
  9704. }
  9705. ],
  9706. "time": "2020-10-23T14:02:19+00:00"
  9707. },
  9708. {
  9709. "name": "symfony/process",
  9710. "version": "v4.4.16",
  9711. "source": {
  9712. "type": "git",
  9713. "url": "https://github.com/symfony/process.git",
  9714. "reference": "2f4b049fb80ca5e9874615a2a85dc2a502090f05"
  9715. },
  9716. "dist": {
  9717. "type": "zip",
  9718. "url": "https://api.github.com/repos/symfony/process/zipball/2f4b049fb80ca5e9874615a2a85dc2a502090f05",
  9719. "reference": "2f4b049fb80ca5e9874615a2a85dc2a502090f05",
  9720. "shasum": ""
  9721. },
  9722. "require": {
  9723. "php": ">=7.1.3"
  9724. },
  9725. "type": "library",
  9726. "autoload": {
  9727. "psr-4": {
  9728. "Symfony\\Component\\Process\\": ""
  9729. },
  9730. "exclude-from-classmap": [
  9731. "/Tests/"
  9732. ]
  9733. },
  9734. "notification-url": "https://packagist.org/downloads/",
  9735. "license": [
  9736. "MIT"
  9737. ],
  9738. "authors": [
  9739. {
  9740. "name": "Fabien Potencier",
  9741. "email": "fabien@symfony.com"
  9742. },
  9743. {
  9744. "name": "Symfony Community",
  9745. "homepage": "https://symfony.com/contributors"
  9746. }
  9747. ],
  9748. "description": "Symfony Process Component",
  9749. "homepage": "https://symfony.com",
  9750. "support": {
  9751. "source": "https://github.com/symfony/process/tree/v4.4.16"
  9752. },
  9753. "funding": [
  9754. {
  9755. "url": "https://symfony.com/sponsor",
  9756. "type": "custom"
  9757. },
  9758. {
  9759. "url": "https://github.com/fabpot",
  9760. "type": "github"
  9761. },
  9762. {
  9763. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9764. "type": "tidelift"
  9765. }
  9766. ],
  9767. "time": "2020-10-24T11:50:19+00:00"
  9768. },
  9769. {
  9770. "name": "symfony/psr-http-message-bridge",
  9771. "version": "v2.0.2",
  9772. "source": {
  9773. "type": "git",
  9774. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9775. "reference": "51a21cb3ba3927d4b4bf8f25cc55763351af5f2e"
  9776. },
  9777. "dist": {
  9778. "type": "zip",
  9779. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/51a21cb3ba3927d4b4bf8f25cc55763351af5f2e",
  9780. "reference": "51a21cb3ba3927d4b4bf8f25cc55763351af5f2e",
  9781. "shasum": ""
  9782. },
  9783. "require": {
  9784. "php": ">=7.1",
  9785. "psr/http-message": "^1.0",
  9786. "symfony/http-foundation": "^4.4 || ^5.0"
  9787. },
  9788. "require-dev": {
  9789. "nyholm/psr7": "^1.1",
  9790. "symfony/phpunit-bridge": "^4.4 || ^5.0"
  9791. },
  9792. "suggest": {
  9793. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  9794. },
  9795. "type": "symfony-bridge",
  9796. "extra": {
  9797. "branch-alias": {
  9798. "dev-master": "2.0-dev"
  9799. }
  9800. },
  9801. "autoload": {
  9802. "psr-4": {
  9803. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9804. },
  9805. "exclude-from-classmap": [
  9806. "/Tests/"
  9807. ]
  9808. },
  9809. "notification-url": "https://packagist.org/downloads/",
  9810. "license": [
  9811. "MIT"
  9812. ],
  9813. "authors": [
  9814. {
  9815. "name": "Fabien Potencier",
  9816. "email": "fabien@symfony.com"
  9817. },
  9818. {
  9819. "name": "Symfony Community",
  9820. "homepage": "http://symfony.com/contributors"
  9821. }
  9822. ],
  9823. "description": "PSR HTTP message bridge",
  9824. "homepage": "http://symfony.com",
  9825. "keywords": [
  9826. "http",
  9827. "http-message",
  9828. "psr-17",
  9829. "psr-7"
  9830. ],
  9831. "support": {
  9832. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  9833. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.0.2"
  9834. },
  9835. "funding": [
  9836. {
  9837. "url": "https://symfony.com/sponsor",
  9838. "type": "custom"
  9839. },
  9840. {
  9841. "url": "https://github.com/fabpot",
  9842. "type": "github"
  9843. },
  9844. {
  9845. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9846. "type": "tidelift"
  9847. }
  9848. ],
  9849. "time": "2020-09-29T08:17:46+00:00"
  9850. },
  9851. {
  9852. "name": "symfony/routing",
  9853. "version": "v4.4.16",
  9854. "source": {
  9855. "type": "git",
  9856. "url": "https://github.com/symfony/routing.git",
  9857. "reference": "826794f2e9305fe73cba859c60d2a336851bd202"
  9858. },
  9859. "dist": {
  9860. "type": "zip",
  9861. "url": "https://api.github.com/repos/symfony/routing/zipball/826794f2e9305fe73cba859c60d2a336851bd202",
  9862. "reference": "826794f2e9305fe73cba859c60d2a336851bd202",
  9863. "shasum": ""
  9864. },
  9865. "require": {
  9866. "php": ">=7.1.3"
  9867. },
  9868. "conflict": {
  9869. "symfony/config": "<4.2",
  9870. "symfony/dependency-injection": "<3.4",
  9871. "symfony/yaml": "<3.4"
  9872. },
  9873. "require-dev": {
  9874. "doctrine/annotations": "~1.2",
  9875. "psr/log": "~1.0",
  9876. "symfony/config": "^4.2|^5.0",
  9877. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  9878. "symfony/expression-language": "^3.4|^4.0|^5.0",
  9879. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  9880. "symfony/yaml": "^3.4|^4.0|^5.0"
  9881. },
  9882. "suggest": {
  9883. "doctrine/annotations": "For using the annotation loader",
  9884. "symfony/config": "For using the all-in-one router or any loader",
  9885. "symfony/expression-language": "For using expression matching",
  9886. "symfony/http-foundation": "For using a Symfony Request object",
  9887. "symfony/yaml": "For using the YAML loader"
  9888. },
  9889. "type": "library",
  9890. "autoload": {
  9891. "psr-4": {
  9892. "Symfony\\Component\\Routing\\": ""
  9893. },
  9894. "exclude-from-classmap": [
  9895. "/Tests/"
  9896. ]
  9897. },
  9898. "notification-url": "https://packagist.org/downloads/",
  9899. "license": [
  9900. "MIT"
  9901. ],
  9902. "authors": [
  9903. {
  9904. "name": "Fabien Potencier",
  9905. "email": "fabien@symfony.com"
  9906. },
  9907. {
  9908. "name": "Symfony Community",
  9909. "homepage": "https://symfony.com/contributors"
  9910. }
  9911. ],
  9912. "description": "Symfony Routing Component",
  9913. "homepage": "https://symfony.com",
  9914. "keywords": [
  9915. "router",
  9916. "routing",
  9917. "uri",
  9918. "url"
  9919. ],
  9920. "support": {
  9921. "source": "https://github.com/symfony/routing/tree/v4.4.16"
  9922. },
  9923. "funding": [
  9924. {
  9925. "url": "https://symfony.com/sponsor",
  9926. "type": "custom"
  9927. },
  9928. {
  9929. "url": "https://github.com/fabpot",
  9930. "type": "github"
  9931. },
  9932. {
  9933. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9934. "type": "tidelift"
  9935. }
  9936. ],
  9937. "time": "2020-10-24T11:50:19+00:00"
  9938. },
  9939. {
  9940. "name": "symfony/serializer",
  9941. "version": "v4.4.16",
  9942. "source": {
  9943. "type": "git",
  9944. "url": "https://github.com/symfony/serializer.git",
  9945. "reference": "2af7e86db04ee65fdf1991b17ee0b3e955c93de9"
  9946. },
  9947. "dist": {
  9948. "type": "zip",
  9949. "url": "https://api.github.com/repos/symfony/serializer/zipball/2af7e86db04ee65fdf1991b17ee0b3e955c93de9",
  9950. "reference": "2af7e86db04ee65fdf1991b17ee0b3e955c93de9",
  9951. "shasum": ""
  9952. },
  9953. "require": {
  9954. "php": ">=7.1.3",
  9955. "symfony/polyfill-ctype": "~1.8"
  9956. },
  9957. "conflict": {
  9958. "phpdocumentor/type-resolver": "<0.2.1",
  9959. "symfony/dependency-injection": "<3.4",
  9960. "symfony/property-access": "<3.4",
  9961. "symfony/property-info": "<3.4",
  9962. "symfony/yaml": "<3.4"
  9963. },
  9964. "require-dev": {
  9965. "doctrine/annotations": "~1.0",
  9966. "doctrine/cache": "~1.0",
  9967. "phpdocumentor/reflection-docblock": "^3.2|^4.0",
  9968. "symfony/cache": "^3.4|^4.0|^5.0",
  9969. "symfony/config": "^3.4|^4.0|^5.0",
  9970. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  9971. "symfony/error-handler": "^4.4|^5.0",
  9972. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  9973. "symfony/mime": "^4.4|^5.0",
  9974. "symfony/property-access": "^3.4|^4.0|^5.0",
  9975. "symfony/property-info": "^3.4.13|~4.0|^5.0",
  9976. "symfony/validator": "^3.4|^4.0|^5.0",
  9977. "symfony/yaml": "^3.4|^4.0|^5.0"
  9978. },
  9979. "suggest": {
  9980. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9981. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9982. "psr/cache-implementation": "For using the metadata cache.",
  9983. "symfony/config": "For using the XML mapping loader.",
  9984. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  9985. "symfony/property-access": "For using the ObjectNormalizer.",
  9986. "symfony/property-info": "To deserialize relations.",
  9987. "symfony/yaml": "For using the default YAML mapping loader."
  9988. },
  9989. "type": "library",
  9990. "autoload": {
  9991. "psr-4": {
  9992. "Symfony\\Component\\Serializer\\": ""
  9993. },
  9994. "exclude-from-classmap": [
  9995. "/Tests/"
  9996. ]
  9997. },
  9998. "notification-url": "https://packagist.org/downloads/",
  9999. "license": [
  10000. "MIT"
  10001. ],
  10002. "authors": [
  10003. {
  10004. "name": "Fabien Potencier",
  10005. "email": "fabien@symfony.com"
  10006. },
  10007. {
  10008. "name": "Symfony Community",
  10009. "homepage": "https://symfony.com/contributors"
  10010. }
  10011. ],
  10012. "description": "Symfony Serializer Component",
  10013. "homepage": "https://symfony.com",
  10014. "support": {
  10015. "source": "https://github.com/symfony/serializer/tree/v4.4.16"
  10016. },
  10017. "funding": [
  10018. {
  10019. "url": "https://symfony.com/sponsor",
  10020. "type": "custom"
  10021. },
  10022. {
  10023. "url": "https://github.com/fabpot",
  10024. "type": "github"
  10025. },
  10026. {
  10027. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10028. "type": "tidelift"
  10029. }
  10030. ],
  10031. "time": "2020-10-24T11:50:19+00:00"
  10032. },
  10033. {
  10034. "name": "symfony/service-contracts",
  10035. "version": "v2.2.0",
  10036. "source": {
  10037. "type": "git",
  10038. "url": "https://github.com/symfony/service-contracts.git",
  10039. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  10040. },
  10041. "dist": {
  10042. "type": "zip",
  10043. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  10044. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  10045. "shasum": ""
  10046. },
  10047. "require": {
  10048. "php": ">=7.2.5",
  10049. "psr/container": "^1.0"
  10050. },
  10051. "suggest": {
  10052. "symfony/service-implementation": ""
  10053. },
  10054. "type": "library",
  10055. "extra": {
  10056. "branch-alias": {
  10057. "dev-master": "2.2-dev"
  10058. },
  10059. "thanks": {
  10060. "name": "symfony/contracts",
  10061. "url": "https://github.com/symfony/contracts"
  10062. }
  10063. },
  10064. "autoload": {
  10065. "psr-4": {
  10066. "Symfony\\Contracts\\Service\\": ""
  10067. }
  10068. },
  10069. "notification-url": "https://packagist.org/downloads/",
  10070. "license": [
  10071. "MIT"
  10072. ],
  10073. "authors": [
  10074. {
  10075. "name": "Nicolas Grekas",
  10076. "email": "p@tchwork.com"
  10077. },
  10078. {
  10079. "name": "Symfony Community",
  10080. "homepage": "https://symfony.com/contributors"
  10081. }
  10082. ],
  10083. "description": "Generic abstractions related to writing services",
  10084. "homepage": "https://symfony.com",
  10085. "keywords": [
  10086. "abstractions",
  10087. "contracts",
  10088. "decoupling",
  10089. "interfaces",
  10090. "interoperability",
  10091. "standards"
  10092. ],
  10093. "support": {
  10094. "source": "https://github.com/symfony/service-contracts/tree/master"
  10095. },
  10096. "funding": [
  10097. {
  10098. "url": "https://symfony.com/sponsor",
  10099. "type": "custom"
  10100. },
  10101. {
  10102. "url": "https://github.com/fabpot",
  10103. "type": "github"
  10104. },
  10105. {
  10106. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10107. "type": "tidelift"
  10108. }
  10109. ],
  10110. "time": "2020-09-07T11:33:47+00:00"
  10111. },
  10112. {
  10113. "name": "symfony/translation",
  10114. "version": "v4.4.16",
  10115. "source": {
  10116. "type": "git",
  10117. "url": "https://github.com/symfony/translation.git",
  10118. "reference": "73095716af79f610f3b6338b911357393fdd10ab"
  10119. },
  10120. "dist": {
  10121. "type": "zip",
  10122. "url": "https://api.github.com/repos/symfony/translation/zipball/73095716af79f610f3b6338b911357393fdd10ab",
  10123. "reference": "73095716af79f610f3b6338b911357393fdd10ab",
  10124. "shasum": ""
  10125. },
  10126. "require": {
  10127. "php": ">=7.1.3",
  10128. "symfony/polyfill-mbstring": "~1.0",
  10129. "symfony/translation-contracts": "^1.1.6|^2"
  10130. },
  10131. "conflict": {
  10132. "symfony/config": "<3.4",
  10133. "symfony/dependency-injection": "<3.4",
  10134. "symfony/http-kernel": "<4.4",
  10135. "symfony/yaml": "<3.4"
  10136. },
  10137. "provide": {
  10138. "symfony/translation-implementation": "1.0"
  10139. },
  10140. "require-dev": {
  10141. "psr/log": "~1.0",
  10142. "symfony/config": "^3.4|^4.0|^5.0",
  10143. "symfony/console": "^3.4|^4.0|^5.0",
  10144. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  10145. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  10146. "symfony/http-kernel": "^4.4",
  10147. "symfony/intl": "^3.4|^4.0|^5.0",
  10148. "symfony/service-contracts": "^1.1.2|^2",
  10149. "symfony/yaml": "^3.4|^4.0|^5.0"
  10150. },
  10151. "suggest": {
  10152. "psr/log-implementation": "To use logging capability in translator",
  10153. "symfony/config": "",
  10154. "symfony/yaml": ""
  10155. },
  10156. "type": "library",
  10157. "autoload": {
  10158. "psr-4": {
  10159. "Symfony\\Component\\Translation\\": ""
  10160. },
  10161. "exclude-from-classmap": [
  10162. "/Tests/"
  10163. ]
  10164. },
  10165. "notification-url": "https://packagist.org/downloads/",
  10166. "license": [
  10167. "MIT"
  10168. ],
  10169. "authors": [
  10170. {
  10171. "name": "Fabien Potencier",
  10172. "email": "fabien@symfony.com"
  10173. },
  10174. {
  10175. "name": "Symfony Community",
  10176. "homepage": "https://symfony.com/contributors"
  10177. }
  10178. ],
  10179. "description": "Symfony Translation Component",
  10180. "homepage": "https://symfony.com",
  10181. "support": {
  10182. "source": "https://github.com/symfony/translation/tree/v4.4.16"
  10183. },
  10184. "funding": [
  10185. {
  10186. "url": "https://symfony.com/sponsor",
  10187. "type": "custom"
  10188. },
  10189. {
  10190. "url": "https://github.com/fabpot",
  10191. "type": "github"
  10192. },
  10193. {
  10194. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10195. "type": "tidelift"
  10196. }
  10197. ],
  10198. "time": "2020-10-24T11:50:19+00:00"
  10199. },
  10200. {
  10201. "name": "symfony/translation-contracts",
  10202. "version": "v2.3.0",
  10203. "source": {
  10204. "type": "git",
  10205. "url": "https://github.com/symfony/translation-contracts.git",
  10206. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  10207. },
  10208. "dist": {
  10209. "type": "zip",
  10210. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  10211. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  10212. "shasum": ""
  10213. },
  10214. "require": {
  10215. "php": ">=7.2.5"
  10216. },
  10217. "suggest": {
  10218. "symfony/translation-implementation": ""
  10219. },
  10220. "type": "library",
  10221. "extra": {
  10222. "branch-alias": {
  10223. "dev-master": "2.3-dev"
  10224. },
  10225. "thanks": {
  10226. "name": "symfony/contracts",
  10227. "url": "https://github.com/symfony/contracts"
  10228. }
  10229. },
  10230. "autoload": {
  10231. "psr-4": {
  10232. "Symfony\\Contracts\\Translation\\": ""
  10233. }
  10234. },
  10235. "notification-url": "https://packagist.org/downloads/",
  10236. "license": [
  10237. "MIT"
  10238. ],
  10239. "authors": [
  10240. {
  10241. "name": "Nicolas Grekas",
  10242. "email": "p@tchwork.com"
  10243. },
  10244. {
  10245. "name": "Symfony Community",
  10246. "homepage": "https://symfony.com/contributors"
  10247. }
  10248. ],
  10249. "description": "Generic abstractions related to translation",
  10250. "homepage": "https://symfony.com",
  10251. "keywords": [
  10252. "abstractions",
  10253. "contracts",
  10254. "decoupling",
  10255. "interfaces",
  10256. "interoperability",
  10257. "standards"
  10258. ],
  10259. "support": {
  10260. "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0"
  10261. },
  10262. "funding": [
  10263. {
  10264. "url": "https://symfony.com/sponsor",
  10265. "type": "custom"
  10266. },
  10267. {
  10268. "url": "https://github.com/fabpot",
  10269. "type": "github"
  10270. },
  10271. {
  10272. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10273. "type": "tidelift"
  10274. }
  10275. ],
  10276. "time": "2020-09-28T13:05:58+00:00"
  10277. },
  10278. {
  10279. "name": "symfony/validator",
  10280. "version": "v4.4.16",
  10281. "source": {
  10282. "type": "git",
  10283. "url": "https://github.com/symfony/validator.git",
  10284. "reference": "1d214a3aaa0753b19f94cf0479d8c315d957a10d"
  10285. },
  10286. "dist": {
  10287. "type": "zip",
  10288. "url": "https://api.github.com/repos/symfony/validator/zipball/1d214a3aaa0753b19f94cf0479d8c315d957a10d",
  10289. "reference": "1d214a3aaa0753b19f94cf0479d8c315d957a10d",
  10290. "shasum": ""
  10291. },
  10292. "require": {
  10293. "php": ">=7.1.3",
  10294. "symfony/polyfill-ctype": "~1.8",
  10295. "symfony/polyfill-mbstring": "~1.0",
  10296. "symfony/translation-contracts": "^1.1|^2"
  10297. },
  10298. "conflict": {
  10299. "doctrine/lexer": "<1.0.2",
  10300. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  10301. "symfony/dependency-injection": "<3.4",
  10302. "symfony/http-kernel": "<4.4",
  10303. "symfony/intl": "<4.3",
  10304. "symfony/translation": ">=5.0",
  10305. "symfony/yaml": "<3.4"
  10306. },
  10307. "require-dev": {
  10308. "doctrine/annotations": "~1.7",
  10309. "doctrine/cache": "~1.0",
  10310. "egulias/email-validator": "^2.1.10",
  10311. "symfony/cache": "^3.4|^4.0|^5.0",
  10312. "symfony/config": "^3.4|^4.0|^5.0",
  10313. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  10314. "symfony/expression-language": "^3.4|^4.0|^5.0",
  10315. "symfony/http-client": "^4.3|^5.0",
  10316. "symfony/http-foundation": "^4.1|^5.0",
  10317. "symfony/http-kernel": "^4.4",
  10318. "symfony/intl": "^4.3|^5.0",
  10319. "symfony/mime": "^4.4|^5.0",
  10320. "symfony/property-access": "^3.4|^4.0|^5.0",
  10321. "symfony/property-info": "^3.4|^4.0|^5.0",
  10322. "symfony/translation": "^4.2",
  10323. "symfony/yaml": "^3.4|^4.0|^5.0"
  10324. },
  10325. "suggest": {
  10326. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  10327. "doctrine/cache": "For using the default cached annotation reader.",
  10328. "egulias/email-validator": "Strict (RFC compliant) email validation",
  10329. "psr/cache-implementation": "For using the mapping cache.",
  10330. "symfony/config": "",
  10331. "symfony/expression-language": "For using the Expression validator",
  10332. "symfony/http-foundation": "",
  10333. "symfony/intl": "",
  10334. "symfony/property-access": "For accessing properties within comparison constraints",
  10335. "symfony/property-info": "To automatically add NotNull and Type constraints",
  10336. "symfony/translation": "For translating validation errors.",
  10337. "symfony/yaml": ""
  10338. },
  10339. "type": "library",
  10340. "autoload": {
  10341. "psr-4": {
  10342. "Symfony\\Component\\Validator\\": ""
  10343. },
  10344. "exclude-from-classmap": [
  10345. "/Tests/"
  10346. ]
  10347. },
  10348. "notification-url": "https://packagist.org/downloads/",
  10349. "license": [
  10350. "MIT"
  10351. ],
  10352. "authors": [
  10353. {
  10354. "name": "Fabien Potencier",
  10355. "email": "fabien@symfony.com"
  10356. },
  10357. {
  10358. "name": "Symfony Community",
  10359. "homepage": "https://symfony.com/contributors"
  10360. }
  10361. ],
  10362. "description": "Symfony Validator Component",
  10363. "homepage": "https://symfony.com",
  10364. "support": {
  10365. "source": "https://github.com/symfony/validator/tree/v4.4.16"
  10366. },
  10367. "funding": [
  10368. {
  10369. "url": "https://symfony.com/sponsor",
  10370. "type": "custom"
  10371. },
  10372. {
  10373. "url": "https://github.com/fabpot",
  10374. "type": "github"
  10375. },
  10376. {
  10377. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10378. "type": "tidelift"
  10379. }
  10380. ],
  10381. "time": "2020-10-28T05:25:24+00:00"
  10382. },
  10383. {
  10384. "name": "symfony/var-dumper",
  10385. "version": "v5.1.8",
  10386. "source": {
  10387. "type": "git",
  10388. "url": "https://github.com/symfony/var-dumper.git",
  10389. "reference": "4e13f3fcefb1fcaaa5efb5403581406f4e840b9a"
  10390. },
  10391. "dist": {
  10392. "type": "zip",
  10393. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/4e13f3fcefb1fcaaa5efb5403581406f4e840b9a",
  10394. "reference": "4e13f3fcefb1fcaaa5efb5403581406f4e840b9a",
  10395. "shasum": ""
  10396. },
  10397. "require": {
  10398. "php": ">=7.2.5",
  10399. "symfony/polyfill-mbstring": "~1.0",
  10400. "symfony/polyfill-php80": "^1.15"
  10401. },
  10402. "conflict": {
  10403. "phpunit/phpunit": "<5.4.3",
  10404. "symfony/console": "<4.4"
  10405. },
  10406. "require-dev": {
  10407. "ext-iconv": "*",
  10408. "symfony/console": "^4.4|^5.0",
  10409. "symfony/process": "^4.4|^5.0",
  10410. "twig/twig": "^2.4|^3.0"
  10411. },
  10412. "suggest": {
  10413. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  10414. "ext-intl": "To show region name in time zone dump",
  10415. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  10416. },
  10417. "bin": [
  10418. "Resources/bin/var-dump-server"
  10419. ],
  10420. "type": "library",
  10421. "autoload": {
  10422. "files": [
  10423. "Resources/functions/dump.php"
  10424. ],
  10425. "psr-4": {
  10426. "Symfony\\Component\\VarDumper\\": ""
  10427. },
  10428. "exclude-from-classmap": [
  10429. "/Tests/"
  10430. ]
  10431. },
  10432. "notification-url": "https://packagist.org/downloads/",
  10433. "license": [
  10434. "MIT"
  10435. ],
  10436. "authors": [
  10437. {
  10438. "name": "Nicolas Grekas",
  10439. "email": "p@tchwork.com"
  10440. },
  10441. {
  10442. "name": "Symfony Community",
  10443. "homepage": "https://symfony.com/contributors"
  10444. }
  10445. ],
  10446. "description": "Symfony mechanism for exploring and dumping PHP variables",
  10447. "homepage": "https://symfony.com",
  10448. "keywords": [
  10449. "debug",
  10450. "dump"
  10451. ],
  10452. "support": {
  10453. "source": "https://github.com/symfony/var-dumper/tree/v5.1.8"
  10454. },
  10455. "funding": [
  10456. {
  10457. "url": "https://symfony.com/sponsor",
  10458. "type": "custom"
  10459. },
  10460. {
  10461. "url": "https://github.com/fabpot",
  10462. "type": "github"
  10463. },
  10464. {
  10465. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10466. "type": "tidelift"
  10467. }
  10468. ],
  10469. "time": "2020-10-27T10:11:13+00:00"
  10470. },
  10471. {
  10472. "name": "symfony/yaml",
  10473. "version": "v4.4.16",
  10474. "source": {
  10475. "type": "git",
  10476. "url": "https://github.com/symfony/yaml.git",
  10477. "reference": "543cb4dbd45ed803f08a9a65f27fb149b5dd20c2"
  10478. },
  10479. "dist": {
  10480. "type": "zip",
  10481. "url": "https://api.github.com/repos/symfony/yaml/zipball/543cb4dbd45ed803f08a9a65f27fb149b5dd20c2",
  10482. "reference": "543cb4dbd45ed803f08a9a65f27fb149b5dd20c2",
  10483. "shasum": ""
  10484. },
  10485. "require": {
  10486. "php": ">=7.1.3",
  10487. "symfony/polyfill-ctype": "~1.8"
  10488. },
  10489. "conflict": {
  10490. "symfony/console": "<3.4"
  10491. },
  10492. "require-dev": {
  10493. "symfony/console": "^3.4|^4.0|^5.0"
  10494. },
  10495. "suggest": {
  10496. "symfony/console": "For validating YAML files using the lint command"
  10497. },
  10498. "type": "library",
  10499. "autoload": {
  10500. "psr-4": {
  10501. "Symfony\\Component\\Yaml\\": ""
  10502. },
  10503. "exclude-from-classmap": [
  10504. "/Tests/"
  10505. ]
  10506. },
  10507. "notification-url": "https://packagist.org/downloads/",
  10508. "license": [
  10509. "MIT"
  10510. ],
  10511. "authors": [
  10512. {
  10513. "name": "Fabien Potencier",
  10514. "email": "fabien@symfony.com"
  10515. },
  10516. {
  10517. "name": "Symfony Community",
  10518. "homepage": "https://symfony.com/contributors"
  10519. }
  10520. ],
  10521. "description": "Symfony Yaml Component",
  10522. "homepage": "https://symfony.com",
  10523. "support": {
  10524. "source": "https://github.com/symfony/yaml/tree/v4.4.16"
  10525. },
  10526. "funding": [
  10527. {
  10528. "url": "https://symfony.com/sponsor",
  10529. "type": "custom"
  10530. },
  10531. {
  10532. "url": "https://github.com/fabpot",
  10533. "type": "github"
  10534. },
  10535. {
  10536. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10537. "type": "tidelift"
  10538. }
  10539. ],
  10540. "time": "2020-10-24T11:50:19+00:00"
  10541. },
  10542. {
  10543. "name": "twig/twig",
  10544. "version": "v2.14.1",
  10545. "source": {
  10546. "type": "git",
  10547. "url": "https://github.com/twigphp/Twig.git",
  10548. "reference": "5eb9ac5dfdd20c3f59495c22841adc5da980d312"
  10549. },
  10550. "dist": {
  10551. "type": "zip",
  10552. "url": "https://api.github.com/repos/twigphp/Twig/zipball/5eb9ac5dfdd20c3f59495c22841adc5da980d312",
  10553. "reference": "5eb9ac5dfdd20c3f59495c22841adc5da980d312",
  10554. "shasum": ""
  10555. },
  10556. "require": {
  10557. "php": ">=7.2.5",
  10558. "symfony/polyfill-ctype": "^1.8",
  10559. "symfony/polyfill-mbstring": "^1.3"
  10560. },
  10561. "require-dev": {
  10562. "psr/container": "^1.0",
  10563. "symfony/phpunit-bridge": "^4.4.9|^5.0.9"
  10564. },
  10565. "type": "library",
  10566. "extra": {
  10567. "branch-alias": {
  10568. "dev-master": "2.14-dev"
  10569. }
  10570. },
  10571. "autoload": {
  10572. "psr-0": {
  10573. "Twig_": "lib/"
  10574. },
  10575. "psr-4": {
  10576. "Twig\\": "src/"
  10577. }
  10578. },
  10579. "notification-url": "https://packagist.org/downloads/",
  10580. "license": [
  10581. "BSD-3-Clause"
  10582. ],
  10583. "authors": [
  10584. {
  10585. "name": "Fabien Potencier",
  10586. "email": "fabien@symfony.com",
  10587. "homepage": "http://fabien.potencier.org",
  10588. "role": "Lead Developer"
  10589. },
  10590. {
  10591. "name": "Twig Team",
  10592. "role": "Contributors"
  10593. },
  10594. {
  10595. "name": "Armin Ronacher",
  10596. "email": "armin.ronacher@active-4.com",
  10597. "role": "Project Founder"
  10598. }
  10599. ],
  10600. "description": "Twig, the flexible, fast, and secure template language for PHP",
  10601. "homepage": "https://twig.symfony.com",
  10602. "keywords": [
  10603. "templating"
  10604. ],
  10605. "support": {
  10606. "issues": "https://github.com/twigphp/Twig/issues",
  10607. "source": "https://github.com/twigphp/Twig/tree/v2.14.1"
  10608. },
  10609. "funding": [
  10610. {
  10611. "url": "https://github.com/fabpot",
  10612. "type": "github"
  10613. },
  10614. {
  10615. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  10616. "type": "tidelift"
  10617. }
  10618. ],
  10619. "time": "2020-10-27T19:25:29+00:00"
  10620. },
  10621. {
  10622. "name": "typo3/phar-stream-wrapper",
  10623. "version": "v3.1.6",
  10624. "source": {
  10625. "type": "git",
  10626. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  10627. "reference": "60131cb573a1e478cfecd34e4ea38e3b31505f75"
  10628. },
  10629. "dist": {
  10630. "type": "zip",
  10631. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/60131cb573a1e478cfecd34e4ea38e3b31505f75",
  10632. "reference": "60131cb573a1e478cfecd34e4ea38e3b31505f75",
  10633. "shasum": ""
  10634. },
  10635. "require": {
  10636. "ext-json": "*",
  10637. "php": "^7.0 || ^8.0"
  10638. },
  10639. "require-dev": {
  10640. "ext-xdebug": "*",
  10641. "phpspec/prophecy": "^1.10",
  10642. "symfony/phpunit-bridge": "^5.1"
  10643. },
  10644. "suggest": {
  10645. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  10646. },
  10647. "type": "library",
  10648. "extra": {
  10649. "branch-alias": {
  10650. "dev-master": "v3.x-dev"
  10651. }
  10652. },
  10653. "autoload": {
  10654. "psr-4": {
  10655. "TYPO3\\PharStreamWrapper\\": "src/"
  10656. }
  10657. },
  10658. "notification-url": "https://packagist.org/downloads/",
  10659. "license": [
  10660. "MIT"
  10661. ],
  10662. "description": "Interceptors for PHP's native phar:// stream handling",
  10663. "homepage": "https://typo3.org/",
  10664. "keywords": [
  10665. "phar",
  10666. "php",
  10667. "security",
  10668. "stream-wrapper"
  10669. ],
  10670. "support": {
  10671. "issues": "https://github.com/TYPO3/phar-stream-wrapper/issues",
  10672. "source": "https://github.com/TYPO3/phar-stream-wrapper/tree/v3.1.6"
  10673. },
  10674. "time": "2020-11-07T09:06:16+00:00"
  10675. },
  10676. {
  10677. "name": "vlucas/phpdotenv",
  10678. "version": "v2.6.9",
  10679. "source": {
  10680. "type": "git",
  10681. "url": "https://github.com/vlucas/phpdotenv.git",
  10682. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141"
  10683. },
  10684. "dist": {
  10685. "type": "zip",
  10686. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  10687. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  10688. "shasum": ""
  10689. },
  10690. "require": {
  10691. "php": "^5.3.9 || ^7.0 || ^8.0",
  10692. "symfony/polyfill-ctype": "^1.17"
  10693. },
  10694. "require-dev": {
  10695. "ext-filter": "*",
  10696. "ext-pcre": "*",
  10697. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21"
  10698. },
  10699. "suggest": {
  10700. "ext-filter": "Required to use the boolean validator.",
  10701. "ext-pcre": "Required to use most of the library."
  10702. },
  10703. "type": "library",
  10704. "extra": {
  10705. "branch-alias": {
  10706. "dev-master": "2.6-dev"
  10707. }
  10708. },
  10709. "autoload": {
  10710. "psr-4": {
  10711. "Dotenv\\": "src/"
  10712. }
  10713. },
  10714. "notification-url": "https://packagist.org/downloads/",
  10715. "license": [
  10716. "BSD-3-Clause"
  10717. ],
  10718. "authors": [
  10719. {
  10720. "name": "Graham Campbell",
  10721. "email": "hello@gjcampbell.co.uk",
  10722. "homepage": "https://github.com/GrahamCampbell"
  10723. },
  10724. {
  10725. "name": "Vance Lucas",
  10726. "email": "vance@vancelucas.com",
  10727. "homepage": "https://github.com/vlucas"
  10728. }
  10729. ],
  10730. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10731. "keywords": [
  10732. "dotenv",
  10733. "env",
  10734. "environment"
  10735. ],
  10736. "support": {
  10737. "issues": "https://github.com/vlucas/phpdotenv/issues",
  10738. "source": "https://github.com/vlucas/phpdotenv/tree/v2.6.9"
  10739. },
  10740. "funding": [
  10741. {
  10742. "url": "https://github.com/GrahamCampbell",
  10743. "type": "github"
  10744. },
  10745. {
  10746. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  10747. "type": "tidelift"
  10748. }
  10749. ],
  10750. "time": "2021-12-12T22:59:22+00:00"
  10751. },
  10752. {
  10753. "name": "webflo/drupal-finder",
  10754. "version": "1.2.2",
  10755. "source": {
  10756. "type": "git",
  10757. "url": "https://github.com/webflo/drupal-finder.git",
  10758. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  10759. },
  10760. "dist": {
  10761. "type": "zip",
  10762. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  10763. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  10764. "shasum": ""
  10765. },
  10766. "require": {
  10767. "ext-json": "*"
  10768. },
  10769. "require-dev": {
  10770. "mikey179/vfsstream": "^1.6",
  10771. "phpunit/phpunit": "^4.8"
  10772. },
  10773. "type": "library",
  10774. "autoload": {
  10775. "classmap": [
  10776. "src/DrupalFinder.php"
  10777. ]
  10778. },
  10779. "notification-url": "https://packagist.org/downloads/",
  10780. "license": [
  10781. "GPL-2.0-or-later"
  10782. ],
  10783. "authors": [
  10784. {
  10785. "name": "Florian Weber",
  10786. "email": "florian@webflo.org"
  10787. }
  10788. ],
  10789. "description": "Helper class to locate a Drupal installation from a given path.",
  10790. "support": {
  10791. "issues": "https://github.com/webflo/drupal-finder/issues",
  10792. "source": "https://github.com/webflo/drupal-finder/tree/1.2.2"
  10793. },
  10794. "time": "2020-10-27T09:42:17+00:00"
  10795. },
  10796. {
  10797. "name": "webmozart/assert",
  10798. "version": "1.11.0",
  10799. "source": {
  10800. "type": "git",
  10801. "url": "https://github.com/webmozarts/assert.git",
  10802. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  10803. },
  10804. "dist": {
  10805. "type": "zip",
  10806. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10807. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10808. "shasum": ""
  10809. },
  10810. "require": {
  10811. "ext-ctype": "*",
  10812. "php": "^7.2 || ^8.0"
  10813. },
  10814. "conflict": {
  10815. "phpstan/phpstan": "<0.12.20",
  10816. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10817. },
  10818. "require-dev": {
  10819. "phpunit/phpunit": "^8.5.13"
  10820. },
  10821. "type": "library",
  10822. "extra": {
  10823. "branch-alias": {
  10824. "dev-master": "1.10-dev"
  10825. }
  10826. },
  10827. "autoload": {
  10828. "psr-4": {
  10829. "Webmozart\\Assert\\": "src/"
  10830. }
  10831. },
  10832. "notification-url": "https://packagist.org/downloads/",
  10833. "license": [
  10834. "MIT"
  10835. ],
  10836. "authors": [
  10837. {
  10838. "name": "Bernhard Schussek",
  10839. "email": "bschussek@gmail.com"
  10840. }
  10841. ],
  10842. "description": "Assertions to validate method input/output with nice error messages.",
  10843. "keywords": [
  10844. "assert",
  10845. "check",
  10846. "validate"
  10847. ],
  10848. "support": {
  10849. "issues": "https://github.com/webmozarts/assert/issues",
  10850. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  10851. },
  10852. "time": "2022-06-03T18:03:27+00:00"
  10853. },
  10854. {
  10855. "name": "webmozart/path-util",
  10856. "version": "2.3.0",
  10857. "source": {
  10858. "type": "git",
  10859. "url": "https://github.com/webmozart/path-util.git",
  10860. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  10861. },
  10862. "dist": {
  10863. "type": "zip",
  10864. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10865. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10866. "shasum": ""
  10867. },
  10868. "require": {
  10869. "php": ">=5.3.3",
  10870. "webmozart/assert": "~1.0"
  10871. },
  10872. "require-dev": {
  10873. "phpunit/phpunit": "^4.6",
  10874. "sebastian/version": "^1.0.1"
  10875. },
  10876. "type": "library",
  10877. "extra": {
  10878. "branch-alias": {
  10879. "dev-master": "2.3-dev"
  10880. }
  10881. },
  10882. "autoload": {
  10883. "psr-4": {
  10884. "Webmozart\\PathUtil\\": "src/"
  10885. }
  10886. },
  10887. "notification-url": "https://packagist.org/downloads/",
  10888. "license": [
  10889. "MIT"
  10890. ],
  10891. "authors": [
  10892. {
  10893. "name": "Bernhard Schussek",
  10894. "email": "bschussek@gmail.com"
  10895. }
  10896. ],
  10897. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  10898. "support": {
  10899. "issues": "https://github.com/webmozart/path-util/issues",
  10900. "source": "https://github.com/webmozart/path-util/tree/2.3.0"
  10901. },
  10902. "abandoned": "symfony/filesystem",
  10903. "time": "2015-12-17T08:42:14+00:00"
  10904. }
  10905. ],
  10906. "packages-dev": [],
  10907. "aliases": [],
  10908. "minimum-stability": "dev",
  10909. "stability-flags": {
  10910. "drupal/better_messages": 15,
  10911. "drupal/bulkdelete": 20,
  10912. "drupal/domain": 15,
  10913. "drupal/filefield_sources": 15,
  10914. "drupal/filter_perms": 15,
  10915. "drupal/linkit": 10,
  10916. "drupal/maillog": 10,
  10917. "drupal/synonyms": 15
  10918. },
  10919. "prefer-stable": true,
  10920. "prefer-lowest": false,
  10921. "platform": {
  10922. "php": ">=5.6"
  10923. },
  10924. "platform-dev": [],
  10925. "plugin-api-version": "2.6.0"
  10926. }