composer.lock 404 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013
  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": "2237975f41ed2ca7f27f15bca7d7569c",
  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.3.2",
  271. "source": {
  272. "type": "git",
  273. "url": "https://github.com/composer/semver.git",
  274. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9"
  275. },
  276. "dist": {
  277. "type": "zip",
  278. "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9",
  279. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9",
  280. "shasum": ""
  281. },
  282. "require": {
  283. "php": "^5.3.2 || ^7.0 || ^8.0"
  284. },
  285. "require-dev": {
  286. "phpstan/phpstan": "^1.4",
  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.3.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": "2022-04-01T19:23:25+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.13.3",
  1228. "source": {
  1229. "type": "git",
  1230. "url": "https://github.com/doctrine/annotations.git",
  1231. "reference": "648b0343343565c4a056bfc8392201385e8d89f0"
  1232. },
  1233. "dist": {
  1234. "type": "zip",
  1235. "url": "https://api.github.com/repos/doctrine/annotations/zipball/648b0343343565c4a056bfc8392201385e8d89f0",
  1236. "reference": "648b0343343565c4a056bfc8392201385e8d89f0",
  1237. "shasum": ""
  1238. },
  1239. "require": {
  1240. "doctrine/lexer": "1.*",
  1241. "ext-tokenizer": "*",
  1242. "php": "^7.1 || ^8.0",
  1243. "psr/cache": "^1 || ^2 || ^3"
  1244. },
  1245. "require-dev": {
  1246. "doctrine/cache": "^1.11 || ^2.0",
  1247. "doctrine/coding-standard": "^6.0 || ^8.1",
  1248. "phpstan/phpstan": "^1.4.10 || ^1.8.0",
  1249. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
  1250. "symfony/cache": "^4.4 || ^5.2",
  1251. "vimeo/psalm": "^4.10"
  1252. },
  1253. "type": "library",
  1254. "autoload": {
  1255. "psr-4": {
  1256. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1257. }
  1258. },
  1259. "notification-url": "https://packagist.org/downloads/",
  1260. "license": [
  1261. "MIT"
  1262. ],
  1263. "authors": [
  1264. {
  1265. "name": "Guilherme Blanco",
  1266. "email": "guilhermeblanco@gmail.com"
  1267. },
  1268. {
  1269. "name": "Roman Borschel",
  1270. "email": "roman@code-factory.org"
  1271. },
  1272. {
  1273. "name": "Benjamin Eberlei",
  1274. "email": "kontakt@beberlei.de"
  1275. },
  1276. {
  1277. "name": "Jonathan Wage",
  1278. "email": "jonwage@gmail.com"
  1279. },
  1280. {
  1281. "name": "Johannes Schmitt",
  1282. "email": "schmittjoh@gmail.com"
  1283. }
  1284. ],
  1285. "description": "Docblock Annotations Parser",
  1286. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1287. "keywords": [
  1288. "annotations",
  1289. "docblock",
  1290. "parser"
  1291. ],
  1292. "support": {
  1293. "issues": "https://github.com/doctrine/annotations/issues",
  1294. "source": "https://github.com/doctrine/annotations/tree/1.13.3"
  1295. },
  1296. "time": "2022-07-02T10:48:51+00:00"
  1297. },
  1298. {
  1299. "name": "doctrine/cache",
  1300. "version": "1.13.0",
  1301. "source": {
  1302. "type": "git",
  1303. "url": "https://github.com/doctrine/cache.git",
  1304. "reference": "56cd022adb5514472cb144c087393c1821911d09"
  1305. },
  1306. "dist": {
  1307. "type": "zip",
  1308. "url": "https://api.github.com/repos/doctrine/cache/zipball/56cd022adb5514472cb144c087393c1821911d09",
  1309. "reference": "56cd022adb5514472cb144c087393c1821911d09",
  1310. "shasum": ""
  1311. },
  1312. "require": {
  1313. "php": "~7.1 || ^8.0"
  1314. },
  1315. "conflict": {
  1316. "doctrine/common": ">2.2,<2.4"
  1317. },
  1318. "require-dev": {
  1319. "alcaeus/mongo-php-adapter": "^1.1",
  1320. "cache/integration-tests": "dev-master",
  1321. "doctrine/coding-standard": "^9",
  1322. "mongodb/mongodb": "^1.1",
  1323. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1324. "predis/predis": "~1.0",
  1325. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  1326. "symfony/cache": "^4.4 || ^5.4 || ^6",
  1327. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  1328. },
  1329. "suggest": {
  1330. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  1331. },
  1332. "type": "library",
  1333. "autoload": {
  1334. "psr-4": {
  1335. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1336. }
  1337. },
  1338. "notification-url": "https://packagist.org/downloads/",
  1339. "license": [
  1340. "MIT"
  1341. ],
  1342. "authors": [
  1343. {
  1344. "name": "Guilherme Blanco",
  1345. "email": "guilhermeblanco@gmail.com"
  1346. },
  1347. {
  1348. "name": "Roman Borschel",
  1349. "email": "roman@code-factory.org"
  1350. },
  1351. {
  1352. "name": "Benjamin Eberlei",
  1353. "email": "kontakt@beberlei.de"
  1354. },
  1355. {
  1356. "name": "Jonathan Wage",
  1357. "email": "jonwage@gmail.com"
  1358. },
  1359. {
  1360. "name": "Johannes Schmitt",
  1361. "email": "schmittjoh@gmail.com"
  1362. }
  1363. ],
  1364. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  1365. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  1366. "keywords": [
  1367. "abstraction",
  1368. "apcu",
  1369. "cache",
  1370. "caching",
  1371. "couchdb",
  1372. "memcached",
  1373. "php",
  1374. "redis",
  1375. "xcache"
  1376. ],
  1377. "support": {
  1378. "issues": "https://github.com/doctrine/cache/issues",
  1379. "source": "https://github.com/doctrine/cache/tree/1.13.0"
  1380. },
  1381. "funding": [
  1382. {
  1383. "url": "https://www.doctrine-project.org/sponsorship.html",
  1384. "type": "custom"
  1385. },
  1386. {
  1387. "url": "https://www.patreon.com/phpdoctrine",
  1388. "type": "patreon"
  1389. },
  1390. {
  1391. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  1392. "type": "tidelift"
  1393. }
  1394. ],
  1395. "time": "2022-05-20T20:06:54+00:00"
  1396. },
  1397. {
  1398. "name": "doctrine/collections",
  1399. "version": "1.8.0",
  1400. "source": {
  1401. "type": "git",
  1402. "url": "https://github.com/doctrine/collections.git",
  1403. "reference": "2b44dd4cbca8b5744327de78bafef5945c7e7b5e"
  1404. },
  1405. "dist": {
  1406. "type": "zip",
  1407. "url": "https://api.github.com/repos/doctrine/collections/zipball/2b44dd4cbca8b5744327de78bafef5945c7e7b5e",
  1408. "reference": "2b44dd4cbca8b5744327de78bafef5945c7e7b5e",
  1409. "shasum": ""
  1410. },
  1411. "require": {
  1412. "doctrine/deprecations": "^0.5.3 || ^1",
  1413. "php": "^7.1.3 || ^8.0"
  1414. },
  1415. "require-dev": {
  1416. "doctrine/coding-standard": "^9.0 || ^10.0",
  1417. "phpstan/phpstan": "^1.4.8",
  1418. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.1.5",
  1419. "vimeo/psalm": "^4.22"
  1420. },
  1421. "type": "library",
  1422. "autoload": {
  1423. "psr-4": {
  1424. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  1425. }
  1426. },
  1427. "notification-url": "https://packagist.org/downloads/",
  1428. "license": [
  1429. "MIT"
  1430. ],
  1431. "authors": [
  1432. {
  1433. "name": "Guilherme Blanco",
  1434. "email": "guilhermeblanco@gmail.com"
  1435. },
  1436. {
  1437. "name": "Roman Borschel",
  1438. "email": "roman@code-factory.org"
  1439. },
  1440. {
  1441. "name": "Benjamin Eberlei",
  1442. "email": "kontakt@beberlei.de"
  1443. },
  1444. {
  1445. "name": "Jonathan Wage",
  1446. "email": "jonwage@gmail.com"
  1447. },
  1448. {
  1449. "name": "Johannes Schmitt",
  1450. "email": "schmittjoh@gmail.com"
  1451. }
  1452. ],
  1453. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  1454. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  1455. "keywords": [
  1456. "array",
  1457. "collections",
  1458. "iterators",
  1459. "php"
  1460. ],
  1461. "support": {
  1462. "issues": "https://github.com/doctrine/collections/issues",
  1463. "source": "https://github.com/doctrine/collections/tree/1.8.0"
  1464. },
  1465. "time": "2022-09-01T20:12:10+00:00"
  1466. },
  1467. {
  1468. "name": "doctrine/common",
  1469. "version": "2.13.3",
  1470. "source": {
  1471. "type": "git",
  1472. "url": "https://github.com/doctrine/common.git",
  1473. "reference": "f3812c026e557892c34ef37f6ab808a6b567da7f"
  1474. },
  1475. "dist": {
  1476. "type": "zip",
  1477. "url": "https://api.github.com/repos/doctrine/common/zipball/f3812c026e557892c34ef37f6ab808a6b567da7f",
  1478. "reference": "f3812c026e557892c34ef37f6ab808a6b567da7f",
  1479. "shasum": ""
  1480. },
  1481. "require": {
  1482. "doctrine/annotations": "^1.0",
  1483. "doctrine/cache": "^1.0",
  1484. "doctrine/collections": "^1.0",
  1485. "doctrine/event-manager": "^1.0",
  1486. "doctrine/inflector": "^1.0",
  1487. "doctrine/lexer": "^1.0",
  1488. "doctrine/persistence": "^1.3.3",
  1489. "doctrine/reflection": "^1.0",
  1490. "php": "^7.1 || ^8.0"
  1491. },
  1492. "require-dev": {
  1493. "doctrine/coding-standard": "^1.0",
  1494. "phpstan/phpstan": "^0.11",
  1495. "phpstan/phpstan-phpunit": "^0.11",
  1496. "phpunit/phpunit": "^7.0",
  1497. "squizlabs/php_codesniffer": "^3.0",
  1498. "symfony/phpunit-bridge": "^4.0.5"
  1499. },
  1500. "type": "library",
  1501. "extra": {
  1502. "branch-alias": {
  1503. "dev-master": "2.11.x-dev"
  1504. }
  1505. },
  1506. "autoload": {
  1507. "psr-4": {
  1508. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1509. }
  1510. },
  1511. "notification-url": "https://packagist.org/downloads/",
  1512. "license": [
  1513. "MIT"
  1514. ],
  1515. "authors": [
  1516. {
  1517. "name": "Guilherme Blanco",
  1518. "email": "guilhermeblanco@gmail.com"
  1519. },
  1520. {
  1521. "name": "Roman Borschel",
  1522. "email": "roman@code-factory.org"
  1523. },
  1524. {
  1525. "name": "Benjamin Eberlei",
  1526. "email": "kontakt@beberlei.de"
  1527. },
  1528. {
  1529. "name": "Jonathan Wage",
  1530. "email": "jonwage@gmail.com"
  1531. },
  1532. {
  1533. "name": "Johannes Schmitt",
  1534. "email": "schmittjoh@gmail.com"
  1535. },
  1536. {
  1537. "name": "Marco Pivetta",
  1538. "email": "ocramius@gmail.com"
  1539. }
  1540. ],
  1541. "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.",
  1542. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1543. "keywords": [
  1544. "common",
  1545. "doctrine",
  1546. "php"
  1547. ],
  1548. "support": {
  1549. "issues": "https://github.com/doctrine/common/issues",
  1550. "source": "https://github.com/doctrine/common/tree/2.13.x"
  1551. },
  1552. "funding": [
  1553. {
  1554. "url": "https://www.doctrine-project.org/sponsorship.html",
  1555. "type": "custom"
  1556. },
  1557. {
  1558. "url": "https://www.patreon.com/phpdoctrine",
  1559. "type": "patreon"
  1560. },
  1561. {
  1562. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1563. "type": "tidelift"
  1564. }
  1565. ],
  1566. "time": "2020-06-05T16:46:05+00:00"
  1567. },
  1568. {
  1569. "name": "doctrine/deprecations",
  1570. "version": "1.1.3",
  1571. "source": {
  1572. "type": "git",
  1573. "url": "https://github.com/doctrine/deprecations.git",
  1574. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  1575. },
  1576. "dist": {
  1577. "type": "zip",
  1578. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  1579. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  1580. "shasum": ""
  1581. },
  1582. "require": {
  1583. "php": "^7.1 || ^8.0"
  1584. },
  1585. "require-dev": {
  1586. "doctrine/coding-standard": "^9",
  1587. "phpstan/phpstan": "1.4.10 || 1.10.15",
  1588. "phpstan/phpstan-phpunit": "^1.0",
  1589. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1590. "psalm/plugin-phpunit": "0.18.4",
  1591. "psr/log": "^1 || ^2 || ^3",
  1592. "vimeo/psalm": "4.30.0 || 5.12.0"
  1593. },
  1594. "suggest": {
  1595. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1596. },
  1597. "type": "library",
  1598. "autoload": {
  1599. "psr-4": {
  1600. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1601. }
  1602. },
  1603. "notification-url": "https://packagist.org/downloads/",
  1604. "license": [
  1605. "MIT"
  1606. ],
  1607. "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.",
  1608. "homepage": "https://www.doctrine-project.org/",
  1609. "support": {
  1610. "issues": "https://github.com/doctrine/deprecations/issues",
  1611. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  1612. },
  1613. "time": "2024-01-30T19:34:25+00:00"
  1614. },
  1615. {
  1616. "name": "doctrine/event-manager",
  1617. "version": "1.2.0",
  1618. "source": {
  1619. "type": "git",
  1620. "url": "https://github.com/doctrine/event-manager.git",
  1621. "reference": "95aa4cb529f1e96576f3fda9f5705ada4056a520"
  1622. },
  1623. "dist": {
  1624. "type": "zip",
  1625. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/95aa4cb529f1e96576f3fda9f5705ada4056a520",
  1626. "reference": "95aa4cb529f1e96576f3fda9f5705ada4056a520",
  1627. "shasum": ""
  1628. },
  1629. "require": {
  1630. "doctrine/deprecations": "^0.5.3 || ^1",
  1631. "php": "^7.1 || ^8.0"
  1632. },
  1633. "conflict": {
  1634. "doctrine/common": "<2.9"
  1635. },
  1636. "require-dev": {
  1637. "doctrine/coding-standard": "^9 || ^10",
  1638. "phpstan/phpstan": "~1.4.10 || ^1.8.8",
  1639. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1640. "vimeo/psalm": "^4.24"
  1641. },
  1642. "type": "library",
  1643. "autoload": {
  1644. "psr-4": {
  1645. "Doctrine\\Common\\": "src"
  1646. }
  1647. },
  1648. "notification-url": "https://packagist.org/downloads/",
  1649. "license": [
  1650. "MIT"
  1651. ],
  1652. "authors": [
  1653. {
  1654. "name": "Guilherme Blanco",
  1655. "email": "guilhermeblanco@gmail.com"
  1656. },
  1657. {
  1658. "name": "Roman Borschel",
  1659. "email": "roman@code-factory.org"
  1660. },
  1661. {
  1662. "name": "Benjamin Eberlei",
  1663. "email": "kontakt@beberlei.de"
  1664. },
  1665. {
  1666. "name": "Jonathan Wage",
  1667. "email": "jonwage@gmail.com"
  1668. },
  1669. {
  1670. "name": "Johannes Schmitt",
  1671. "email": "schmittjoh@gmail.com"
  1672. },
  1673. {
  1674. "name": "Marco Pivetta",
  1675. "email": "ocramius@gmail.com"
  1676. }
  1677. ],
  1678. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1679. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1680. "keywords": [
  1681. "event",
  1682. "event dispatcher",
  1683. "event manager",
  1684. "event system",
  1685. "events"
  1686. ],
  1687. "support": {
  1688. "issues": "https://github.com/doctrine/event-manager/issues",
  1689. "source": "https://github.com/doctrine/event-manager/tree/1.2.0"
  1690. },
  1691. "funding": [
  1692. {
  1693. "url": "https://www.doctrine-project.org/sponsorship.html",
  1694. "type": "custom"
  1695. },
  1696. {
  1697. "url": "https://www.patreon.com/phpdoctrine",
  1698. "type": "patreon"
  1699. },
  1700. {
  1701. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1702. "type": "tidelift"
  1703. }
  1704. ],
  1705. "time": "2022-10-12T20:51:15+00:00"
  1706. },
  1707. {
  1708. "name": "doctrine/inflector",
  1709. "version": "1.4.4",
  1710. "source": {
  1711. "type": "git",
  1712. "url": "https://github.com/doctrine/inflector.git",
  1713. "reference": "4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9"
  1714. },
  1715. "dist": {
  1716. "type": "zip",
  1717. "url": "https://api.github.com/repos/doctrine/inflector/zipball/4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9",
  1718. "reference": "4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9",
  1719. "shasum": ""
  1720. },
  1721. "require": {
  1722. "php": "^7.1 || ^8.0"
  1723. },
  1724. "require-dev": {
  1725. "doctrine/coding-standard": "^8.0",
  1726. "phpstan/phpstan": "^0.12",
  1727. "phpstan/phpstan-phpunit": "^0.12",
  1728. "phpstan/phpstan-strict-rules": "^0.12",
  1729. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  1730. },
  1731. "type": "library",
  1732. "extra": {
  1733. "branch-alias": {
  1734. "dev-master": "2.0.x-dev"
  1735. }
  1736. },
  1737. "autoload": {
  1738. "psr-4": {
  1739. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector",
  1740. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1741. }
  1742. },
  1743. "notification-url": "https://packagist.org/downloads/",
  1744. "license": [
  1745. "MIT"
  1746. ],
  1747. "authors": [
  1748. {
  1749. "name": "Guilherme Blanco",
  1750. "email": "guilhermeblanco@gmail.com"
  1751. },
  1752. {
  1753. "name": "Roman Borschel",
  1754. "email": "roman@code-factory.org"
  1755. },
  1756. {
  1757. "name": "Benjamin Eberlei",
  1758. "email": "kontakt@beberlei.de"
  1759. },
  1760. {
  1761. "name": "Jonathan Wage",
  1762. "email": "jonwage@gmail.com"
  1763. },
  1764. {
  1765. "name": "Johannes Schmitt",
  1766. "email": "schmittjoh@gmail.com"
  1767. }
  1768. ],
  1769. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1770. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1771. "keywords": [
  1772. "inflection",
  1773. "inflector",
  1774. "lowercase",
  1775. "manipulation",
  1776. "php",
  1777. "plural",
  1778. "singular",
  1779. "strings",
  1780. "uppercase",
  1781. "words"
  1782. ],
  1783. "support": {
  1784. "issues": "https://github.com/doctrine/inflector/issues",
  1785. "source": "https://github.com/doctrine/inflector/tree/1.4.4"
  1786. },
  1787. "funding": [
  1788. {
  1789. "url": "https://www.doctrine-project.org/sponsorship.html",
  1790. "type": "custom"
  1791. },
  1792. {
  1793. "url": "https://www.patreon.com/phpdoctrine",
  1794. "type": "patreon"
  1795. },
  1796. {
  1797. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1798. "type": "tidelift"
  1799. }
  1800. ],
  1801. "time": "2021-04-16T17:34:40+00:00"
  1802. },
  1803. {
  1804. "name": "doctrine/lexer",
  1805. "version": "1.2.3",
  1806. "source": {
  1807. "type": "git",
  1808. "url": "https://github.com/doctrine/lexer.git",
  1809. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1810. },
  1811. "dist": {
  1812. "type": "zip",
  1813. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1814. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1815. "shasum": ""
  1816. },
  1817. "require": {
  1818. "php": "^7.1 || ^8.0"
  1819. },
  1820. "require-dev": {
  1821. "doctrine/coding-standard": "^9.0",
  1822. "phpstan/phpstan": "^1.3",
  1823. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1824. "vimeo/psalm": "^4.11"
  1825. },
  1826. "type": "library",
  1827. "autoload": {
  1828. "psr-4": {
  1829. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1830. }
  1831. },
  1832. "notification-url": "https://packagist.org/downloads/",
  1833. "license": [
  1834. "MIT"
  1835. ],
  1836. "authors": [
  1837. {
  1838. "name": "Guilherme Blanco",
  1839. "email": "guilhermeblanco@gmail.com"
  1840. },
  1841. {
  1842. "name": "Roman Borschel",
  1843. "email": "roman@code-factory.org"
  1844. },
  1845. {
  1846. "name": "Johannes Schmitt",
  1847. "email": "schmittjoh@gmail.com"
  1848. }
  1849. ],
  1850. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1851. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1852. "keywords": [
  1853. "annotations",
  1854. "docblock",
  1855. "lexer",
  1856. "parser",
  1857. "php"
  1858. ],
  1859. "support": {
  1860. "issues": "https://github.com/doctrine/lexer/issues",
  1861. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1862. },
  1863. "funding": [
  1864. {
  1865. "url": "https://www.doctrine-project.org/sponsorship.html",
  1866. "type": "custom"
  1867. },
  1868. {
  1869. "url": "https://www.patreon.com/phpdoctrine",
  1870. "type": "patreon"
  1871. },
  1872. {
  1873. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1874. "type": "tidelift"
  1875. }
  1876. ],
  1877. "time": "2022-02-28T11:07:21+00:00"
  1878. },
  1879. {
  1880. "name": "doctrine/persistence",
  1881. "version": "1.3.8",
  1882. "source": {
  1883. "type": "git",
  1884. "url": "https://github.com/doctrine/persistence.git",
  1885. "reference": "7a6eac9fb6f61bba91328f15aa7547f4806ca288"
  1886. },
  1887. "dist": {
  1888. "type": "zip",
  1889. "url": "https://api.github.com/repos/doctrine/persistence/zipball/7a6eac9fb6f61bba91328f15aa7547f4806ca288",
  1890. "reference": "7a6eac9fb6f61bba91328f15aa7547f4806ca288",
  1891. "shasum": ""
  1892. },
  1893. "require": {
  1894. "doctrine/annotations": "^1.0",
  1895. "doctrine/cache": "^1.0",
  1896. "doctrine/collections": "^1.0",
  1897. "doctrine/event-manager": "^1.0",
  1898. "doctrine/reflection": "^1.2",
  1899. "php": "^7.1 || ^8.0"
  1900. },
  1901. "conflict": {
  1902. "doctrine/common": "<2.10@dev"
  1903. },
  1904. "require-dev": {
  1905. "doctrine/coding-standard": "^6.0",
  1906. "phpstan/phpstan": "^0.11",
  1907. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1908. "vimeo/psalm": "^3.11"
  1909. },
  1910. "type": "library",
  1911. "extra": {
  1912. "branch-alias": {
  1913. "dev-master": "1.3.x-dev"
  1914. }
  1915. },
  1916. "autoload": {
  1917. "psr-4": {
  1918. "Doctrine\\Common\\": "lib/Doctrine/Common",
  1919. "Doctrine\\Persistence\\": "lib/Doctrine/Persistence"
  1920. }
  1921. },
  1922. "notification-url": "https://packagist.org/downloads/",
  1923. "license": [
  1924. "MIT"
  1925. ],
  1926. "authors": [
  1927. {
  1928. "name": "Guilherme Blanco",
  1929. "email": "guilhermeblanco@gmail.com"
  1930. },
  1931. {
  1932. "name": "Roman Borschel",
  1933. "email": "roman@code-factory.org"
  1934. },
  1935. {
  1936. "name": "Benjamin Eberlei",
  1937. "email": "kontakt@beberlei.de"
  1938. },
  1939. {
  1940. "name": "Jonathan Wage",
  1941. "email": "jonwage@gmail.com"
  1942. },
  1943. {
  1944. "name": "Johannes Schmitt",
  1945. "email": "schmittjoh@gmail.com"
  1946. },
  1947. {
  1948. "name": "Marco Pivetta",
  1949. "email": "ocramius@gmail.com"
  1950. }
  1951. ],
  1952. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1953. "homepage": "https://doctrine-project.org/projects/persistence.html",
  1954. "keywords": [
  1955. "mapper",
  1956. "object",
  1957. "odm",
  1958. "orm",
  1959. "persistence"
  1960. ],
  1961. "support": {
  1962. "issues": "https://github.com/doctrine/persistence/issues",
  1963. "source": "https://github.com/doctrine/persistence/tree/1.3.x"
  1964. },
  1965. "funding": [
  1966. {
  1967. "url": "https://www.doctrine-project.org/sponsorship.html",
  1968. "type": "custom"
  1969. },
  1970. {
  1971. "url": "https://www.patreon.com/phpdoctrine",
  1972. "type": "patreon"
  1973. },
  1974. {
  1975. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1976. "type": "tidelift"
  1977. }
  1978. ],
  1979. "time": "2020-06-20T12:56:16+00:00"
  1980. },
  1981. {
  1982. "name": "doctrine/reflection",
  1983. "version": "1.2.4",
  1984. "source": {
  1985. "type": "git",
  1986. "url": "https://github.com/doctrine/reflection.git",
  1987. "reference": "6bcea3e81ab8b3d0abe5fde5300bbc8a968960c7"
  1988. },
  1989. "dist": {
  1990. "type": "zip",
  1991. "url": "https://api.github.com/repos/doctrine/reflection/zipball/6bcea3e81ab8b3d0abe5fde5300bbc8a968960c7",
  1992. "reference": "6bcea3e81ab8b3d0abe5fde5300bbc8a968960c7",
  1993. "shasum": ""
  1994. },
  1995. "require": {
  1996. "doctrine/annotations": "^1.0 || ^2.0",
  1997. "ext-tokenizer": "*",
  1998. "php": "^7.1 || ^8.0"
  1999. },
  2000. "conflict": {
  2001. "doctrine/common": "<2.9"
  2002. },
  2003. "require-dev": {
  2004. "doctrine/coding-standard": "^9",
  2005. "doctrine/common": "^3.3",
  2006. "phpstan/phpstan": "^1.4.10",
  2007. "phpstan/phpstan-phpunit": "^1",
  2008. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5"
  2009. },
  2010. "type": "library",
  2011. "autoload": {
  2012. "psr-4": {
  2013. "Doctrine\\Common\\": "lib/Doctrine/Common"
  2014. }
  2015. },
  2016. "notification-url": "https://packagist.org/downloads/",
  2017. "license": [
  2018. "MIT"
  2019. ],
  2020. "authors": [
  2021. {
  2022. "name": "Guilherme Blanco",
  2023. "email": "guilhermeblanco@gmail.com"
  2024. },
  2025. {
  2026. "name": "Roman Borschel",
  2027. "email": "roman@code-factory.org"
  2028. },
  2029. {
  2030. "name": "Benjamin Eberlei",
  2031. "email": "kontakt@beberlei.de"
  2032. },
  2033. {
  2034. "name": "Jonathan Wage",
  2035. "email": "jonwage@gmail.com"
  2036. },
  2037. {
  2038. "name": "Johannes Schmitt",
  2039. "email": "schmittjoh@gmail.com"
  2040. },
  2041. {
  2042. "name": "Marco Pivetta",
  2043. "email": "ocramius@gmail.com"
  2044. }
  2045. ],
  2046. "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.",
  2047. "homepage": "https://www.doctrine-project.org/projects/reflection.html",
  2048. "keywords": [
  2049. "reflection",
  2050. "static"
  2051. ],
  2052. "support": {
  2053. "issues": "https://github.com/doctrine/reflection/issues",
  2054. "source": "https://github.com/doctrine/reflection/tree/1.2.4"
  2055. },
  2056. "abandoned": "roave/better-reflection",
  2057. "time": "2023-07-27T18:11:59+00:00"
  2058. },
  2059. {
  2060. "name": "drupal/addtoany",
  2061. "version": "1.22.0",
  2062. "source": {
  2063. "type": "git",
  2064. "url": "https://git.drupalcode.org/project/addtoany.git",
  2065. "reference": "8.x-1.22"
  2066. },
  2067. "dist": {
  2068. "type": "zip",
  2069. "url": "https://ftp.drupal.org/files/projects/addtoany-8.x-1.22.zip",
  2070. "reference": "8.x-1.22",
  2071. "shasum": "350bfc33c163d11d137005cb56e6a1f0eaa35f04"
  2072. },
  2073. "require": {
  2074. "drupal/core": "^8 || ^9"
  2075. },
  2076. "type": "drupal-module",
  2077. "extra": {
  2078. "drupal": {
  2079. "version": "8.x-1.22",
  2080. "datestamp": "1698826527",
  2081. "security-coverage": {
  2082. "status": "covered",
  2083. "message": "Covered by Drupal's security advisory policy"
  2084. }
  2085. }
  2086. },
  2087. "notification-url": "https://packages.drupal.org/8/downloads",
  2088. "license": [
  2089. "GPL-2.0-or-later"
  2090. ],
  2091. "authors": [
  2092. {
  2093. "name": "AddToAny",
  2094. "homepage": "https://www.drupal.org/user/2640913"
  2095. },
  2096. {
  2097. "name": "micropat",
  2098. "homepage": "https://www.drupal.org/user/260224"
  2099. }
  2100. ],
  2101. "description": "Share buttons for Drupal including the AddToAny universal share button, Facebook, Mastodon, Pinterest, WhatsApp and many more.",
  2102. "homepage": "https://www.drupal.org/project/addtoany",
  2103. "keywords": [
  2104. "Drupal"
  2105. ],
  2106. "support": {
  2107. "source": "https://git.drupalcode.org/project/addtoany",
  2108. "issues": "https://www.drupal.org/project/issues/addtoany"
  2109. }
  2110. },
  2111. {
  2112. "name": "drupal/admin_toolbar",
  2113. "version": "2.5.0",
  2114. "source": {
  2115. "type": "git",
  2116. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  2117. "reference": "8.x-2.5"
  2118. },
  2119. "dist": {
  2120. "type": "zip",
  2121. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.5.zip",
  2122. "reference": "8.x-2.5",
  2123. "shasum": "c71e58051b8d6818272df96d14cb11407d5e5ceb"
  2124. },
  2125. "require": {
  2126. "drupal/core": "^8.8.0 || ^9.0"
  2127. },
  2128. "type": "drupal-module",
  2129. "extra": {
  2130. "drupal": {
  2131. "version": "8.x-2.5",
  2132. "datestamp": "1629907119",
  2133. "security-coverage": {
  2134. "status": "covered",
  2135. "message": "Covered by Drupal's security advisory policy"
  2136. }
  2137. }
  2138. },
  2139. "notification-url": "https://packages.drupal.org/8/downloads",
  2140. "license": [
  2141. "GPL-2.0-or-later"
  2142. ],
  2143. "authors": [
  2144. {
  2145. "name": "Wilfrid Roze (eme)",
  2146. "homepage": "https://www.drupal.org/u/eme",
  2147. "role": "Maintainer"
  2148. },
  2149. {
  2150. "name": "Romain Jarraud (romainj)",
  2151. "homepage": "https://www.drupal.org/u/romainj",
  2152. "role": "Maintainer"
  2153. },
  2154. {
  2155. "name": "Adrian Cid Almaguer (adriancid)",
  2156. "homepage": "https://www.drupal.org/u/adriancid",
  2157. "email": "adriancid@gmail.com",
  2158. "role": "Maintainer"
  2159. },
  2160. {
  2161. "name": "Mohamed Anis Taktak (matio89)",
  2162. "homepage": "https://www.drupal.org/u/matio89",
  2163. "role": "Maintainer"
  2164. },
  2165. {
  2166. "name": "japerry",
  2167. "homepage": "https://www.drupal.org/user/45640"
  2168. },
  2169. {
  2170. "name": "matio89",
  2171. "homepage": "https://www.drupal.org/user/2320090"
  2172. },
  2173. {
  2174. "name": "musa.thomas",
  2175. "homepage": "https://www.drupal.org/user/1213824"
  2176. },
  2177. {
  2178. "name": "romainj",
  2179. "homepage": "https://www.drupal.org/user/370706"
  2180. }
  2181. ],
  2182. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  2183. "homepage": "http://drupal.org/project/admin_toolbar",
  2184. "keywords": [
  2185. "Drupal",
  2186. "Toolbar"
  2187. ],
  2188. "support": {
  2189. "source": "https://git.drupalcode.org/project/admin_toolbar",
  2190. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  2191. }
  2192. },
  2193. {
  2194. "name": "drupal/adminimal_theme",
  2195. "version": "1.6.0",
  2196. "source": {
  2197. "type": "git",
  2198. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  2199. "reference": "8.x-1.6"
  2200. },
  2201. "dist": {
  2202. "type": "zip",
  2203. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.6.zip",
  2204. "reference": "8.x-1.6",
  2205. "shasum": "89132d0853388afe8dfd11fb83c69a48d8c13413"
  2206. },
  2207. "require": {
  2208. "drupal/core": "^8.8 || ^9"
  2209. },
  2210. "type": "drupal-theme",
  2211. "extra": {
  2212. "drupal": {
  2213. "version": "8.x-1.6",
  2214. "datestamp": "1602006937",
  2215. "security-coverage": {
  2216. "status": "covered",
  2217. "message": "Covered by Drupal's security advisory policy"
  2218. }
  2219. }
  2220. },
  2221. "notification-url": "https://packages.drupal.org/8/downloads",
  2222. "license": [
  2223. "GPL-2.0+"
  2224. ],
  2225. "authors": [
  2226. {
  2227. "name": "ANDiTKO",
  2228. "homepage": "https://www.drupal.org/user/1428124"
  2229. },
  2230. {
  2231. "name": "andrey.troeglazov",
  2232. "homepage": "https://www.drupal.org/user/3145389"
  2233. },
  2234. {
  2235. "name": "realityloop",
  2236. "homepage": "https://www.drupal.org/user/139189"
  2237. },
  2238. {
  2239. "name": "rjjakes",
  2240. "homepage": "https://www.drupal.org/user/3457245"
  2241. }
  2242. ],
  2243. "description": "Drupal administration theme with modern minimalist design.",
  2244. "homepage": "https://www.drupal.org/project/adminimal_theme",
  2245. "support": {
  2246. "source": "https://git.drupalcode.org/project/adminimal_theme",
  2247. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  2248. }
  2249. },
  2250. {
  2251. "name": "drupal/audiofield",
  2252. "version": "1.13.0",
  2253. "source": {
  2254. "type": "git",
  2255. "url": "https://git.drupalcode.org/project/audiofield.git",
  2256. "reference": "8.x-1.13"
  2257. },
  2258. "dist": {
  2259. "type": "zip",
  2260. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  2261. "reference": "8.x-1.13",
  2262. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  2263. },
  2264. "require": {
  2265. "drupal/core": "^8 || ^9 || ^10"
  2266. },
  2267. "type": "drupal-module",
  2268. "extra": {
  2269. "drupal": {
  2270. "version": "8.x-1.13",
  2271. "datestamp": "1681143245",
  2272. "security-coverage": {
  2273. "status": "covered",
  2274. "message": "Covered by Drupal's security advisory policy"
  2275. }
  2276. },
  2277. "drush": {
  2278. "services": {
  2279. "drush.services.yml": "^9"
  2280. }
  2281. }
  2282. },
  2283. "notification-url": "https://packages.drupal.org/8/downloads",
  2284. "license": [
  2285. "GPL-2.0-or-later"
  2286. ],
  2287. "authors": [
  2288. {
  2289. "name": "Daniel Moberly",
  2290. "homepage": "https://www.drupal.org/u/danielmoberly",
  2291. "role": "Maintainer"
  2292. },
  2293. {
  2294. "name": "tamerzg",
  2295. "homepage": "https://www.drupal.org/user/464564"
  2296. }
  2297. ],
  2298. "description": "AudioField Module",
  2299. "homepage": "https://www.drupal.org/project/audiofield",
  2300. "support": {
  2301. "source": "https://git.drupalcode.org/project/audiofield",
  2302. "issues": "https://www.drupal.org/project/issues/audiofield"
  2303. }
  2304. },
  2305. {
  2306. "name": "drupal/autologout",
  2307. "version": "1.3.0",
  2308. "source": {
  2309. "type": "git",
  2310. "url": "https://git.drupalcode.org/project/autologout.git",
  2311. "reference": "8.x-1.3"
  2312. },
  2313. "dist": {
  2314. "type": "zip",
  2315. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.3.zip",
  2316. "reference": "8.x-1.3",
  2317. "shasum": "87733b2042d9dcdee0d8f33d206872208a8c97ea"
  2318. },
  2319. "require": {
  2320. "drupal/core": "^8 || ^9"
  2321. },
  2322. "type": "drupal-module",
  2323. "extra": {
  2324. "drupal": {
  2325. "version": "8.x-1.3",
  2326. "datestamp": "1587193798",
  2327. "security-coverage": {
  2328. "status": "covered",
  2329. "message": "Covered by Drupal's security advisory policy"
  2330. }
  2331. }
  2332. },
  2333. "notification-url": "https://packages.drupal.org/8/downloads",
  2334. "license": [
  2335. "GPL-2.0+"
  2336. ],
  2337. "authors": [
  2338. {
  2339. "name": "ajits",
  2340. "homepage": "https://www.drupal.org/user/981944"
  2341. },
  2342. {
  2343. "name": "AjK",
  2344. "homepage": "https://www.drupal.org/user/39030"
  2345. },
  2346. {
  2347. "name": "boshtian",
  2348. "homepage": "https://www.drupal.org/user/1773456"
  2349. },
  2350. {
  2351. "name": "dandrews",
  2352. "homepage": "https://www.drupal.org/user/2014490"
  2353. },
  2354. {
  2355. "name": "darksnow",
  2356. "homepage": "https://www.drupal.org/user/391915"
  2357. },
  2358. {
  2359. "name": "japerry",
  2360. "homepage": "https://www.drupal.org/user/45640"
  2361. },
  2362. {
  2363. "name": "johnennew",
  2364. "homepage": "https://www.drupal.org/user/1150042"
  2365. },
  2366. {
  2367. "name": "jrglasgow",
  2368. "homepage": "https://www.drupal.org/user/36590"
  2369. },
  2370. {
  2371. "name": "kmasood",
  2372. "homepage": "https://www.drupal.org/user/1262860"
  2373. },
  2374. {
  2375. "name": "levelos",
  2376. "homepage": "https://www.drupal.org/user/54135"
  2377. },
  2378. {
  2379. "name": "prabeen.giri",
  2380. "homepage": "https://www.drupal.org/user/913078"
  2381. },
  2382. {
  2383. "name": "scott_earnest",
  2384. "homepage": "https://www.drupal.org/user/416158"
  2385. },
  2386. {
  2387. "name": "str8",
  2388. "homepage": "https://www.drupal.org/user/2865063"
  2389. }
  2390. ],
  2391. "description": "Adds automated timed logout.",
  2392. "homepage": "http://drupal.org/project/autologout",
  2393. "support": {
  2394. "source": "https://git.drupalcode.org/project/autologout"
  2395. }
  2396. },
  2397. {
  2398. "name": "drupal/basic",
  2399. "version": "2.1.0",
  2400. "source": {
  2401. "type": "git",
  2402. "url": "https://git.drupalcode.org/project/basic.git",
  2403. "reference": "8.x-2.1"
  2404. },
  2405. "dist": {
  2406. "type": "zip",
  2407. "url": "https://ftp.drupal.org/files/projects/basic-8.x-2.1.zip",
  2408. "reference": "8.x-2.1",
  2409. "shasum": "2497b30bd419e6f49a72a1f80ab40b47582df4f5"
  2410. },
  2411. "require": {
  2412. "drupal/core": "^8.8 || ^9"
  2413. },
  2414. "type": "drupal-theme",
  2415. "extra": {
  2416. "drupal": {
  2417. "version": "8.x-2.1",
  2418. "datestamp": "1612916291",
  2419. "security-coverage": {
  2420. "status": "covered",
  2421. "message": "Covered by Drupal's security advisory policy"
  2422. }
  2423. }
  2424. },
  2425. "notification-url": "https://packages.drupal.org/8/downloads",
  2426. "license": [
  2427. "GPL-2.0+"
  2428. ],
  2429. "authors": [
  2430. {
  2431. "name": "Steve Krueger",
  2432. "homepage": "http://thejibe.com",
  2433. "email": "steve@thejibe.com",
  2434. "role": "Maintainer"
  2435. },
  2436. {
  2437. "name": "Joël Pittet",
  2438. "homepage": "https://www.drupal.org/u/joelpittet",
  2439. "email": "joel@pittet.ca",
  2440. "role": "Maintainer"
  2441. },
  2442. {
  2443. "name": "Leah Wagner",
  2444. "homepage": "http://thejibe.com",
  2445. "email": "leah@thejibe.com",
  2446. "role": "Maintainer"
  2447. },
  2448. {
  2449. "name": "Catherine Winters",
  2450. "homepage": "http://www.catherinewinters.com",
  2451. "email": "catherine@catherinewinters.com",
  2452. "role": "Maintainer"
  2453. },
  2454. {
  2455. "name": "Johannes Schmidt",
  2456. "homepage": "http://2tabs.com",
  2457. "email": "mail@2tabs.com",
  2458. "role": "Maintainer"
  2459. },
  2460. {
  2461. "name": "Chuck Kosman",
  2462. "homepage": "http://thejibe.com",
  2463. "email": "chuck@thejibe.com",
  2464. "role": "Maintainer"
  2465. },
  2466. {
  2467. "name": "SteveK",
  2468. "homepage": "https://www.drupal.org/user/111656"
  2469. }
  2470. ],
  2471. "description": "HTML5, SASS, Responsive grid starter theme.",
  2472. "homepage": "http://drupal.org/project/basic",
  2473. "support": {
  2474. "source": "http://cgit.drupalcode.org/basic",
  2475. "issues": "https://www.drupal.org/project/issues/basic",
  2476. "irc": "irc://irc.freenode.org/drupal-contribute"
  2477. }
  2478. },
  2479. {
  2480. "name": "drupal/better_messages",
  2481. "version": "2.0.0-alpha2",
  2482. "source": {
  2483. "type": "git",
  2484. "url": "https://git.drupalcode.org/project/better_messages.git",
  2485. "reference": "2.0.0-alpha2"
  2486. },
  2487. "dist": {
  2488. "type": "zip",
  2489. "url": "https://ftp.drupal.org/files/projects/better_messages-2.0.0-alpha2.zip",
  2490. "reference": "2.0.0-alpha2",
  2491. "shasum": "e93618447a97e90d95b7242cc6398be4346b59b4"
  2492. },
  2493. "require": {
  2494. "drupal/core": "^8 || ^9"
  2495. },
  2496. "type": "drupal-module",
  2497. "extra": {
  2498. "drupal": {
  2499. "version": "2.0.0-alpha2",
  2500. "datestamp": "1644241962",
  2501. "security-coverage": {
  2502. "status": "not-covered",
  2503. "message": "Alpha releases are not covered by Drupal security advisories."
  2504. }
  2505. }
  2506. },
  2507. "notification-url": "https://packages.drupal.org/8/downloads",
  2508. "license": [
  2509. "GPL-2.0-or-later"
  2510. ],
  2511. "authors": [
  2512. {
  2513. "name": "bucefal91",
  2514. "homepage": "https://www.drupal.org/user/504128"
  2515. },
  2516. {
  2517. "name": "le72",
  2518. "homepage": "https://www.drupal.org/user/1866896"
  2519. },
  2520. {
  2521. "name": "mohammed j. razem",
  2522. "homepage": "https://www.drupal.org/user/255384"
  2523. },
  2524. {
  2525. "name": "usingsession",
  2526. "homepage": "https://www.drupal.org/user/3582050"
  2527. }
  2528. ],
  2529. "description": "This module adds simple functions to make Drupal messages look and act better.",
  2530. "homepage": "https://www.drupal.org/project/better_messages",
  2531. "support": {
  2532. "source": "https://git.drupalcode.org/project/better_messages"
  2533. }
  2534. },
  2535. {
  2536. "name": "drupal/bulkdelete",
  2537. "version": "dev-1.x",
  2538. "source": {
  2539. "type": "git",
  2540. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2541. "reference": "95a7ff49f152021be88ba562c247347ff36392c7"
  2542. },
  2543. "require": {
  2544. "drupal/core": "^8.7.7 || ^9 || ^10"
  2545. },
  2546. "type": "drupal-module",
  2547. "extra": {
  2548. "branch-alias": {
  2549. "dev-1.x": "1.x-dev"
  2550. },
  2551. "drupal": {
  2552. "version": "8.x-1.x-dev",
  2553. "datestamp": "1655322426",
  2554. "security-coverage": {
  2555. "status": "not-covered",
  2556. "message": "Dev releases are not covered by Drupal security advisories."
  2557. }
  2558. }
  2559. },
  2560. "notification-url": "https://packages.drupal.org/8/downloads",
  2561. "license": [
  2562. "GPL-2.0-or-later"
  2563. ],
  2564. "authors": [
  2565. {
  2566. "name": "Kars-T",
  2567. "homepage": "https://www.drupal.org/user/224499"
  2568. },
  2569. {
  2570. "name": "Rahul Seth",
  2571. "homepage": "https://www.drupal.org/user/2694359"
  2572. },
  2573. {
  2574. "name": "adriancid",
  2575. "homepage": "https://www.drupal.org/user/1962106"
  2576. },
  2577. {
  2578. "name": "robertDouglass",
  2579. "homepage": "https://www.drupal.org/user/5449"
  2580. }
  2581. ],
  2582. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2583. "homepage": "https://www.drupal.org/project/bulkdelete",
  2584. "support": {
  2585. "source": "https://git.drupalcode.org/project/bulkdelete"
  2586. }
  2587. },
  2588. {
  2589. "name": "drupal/color_field",
  2590. "version": "2.5.0",
  2591. "source": {
  2592. "type": "git",
  2593. "url": "https://git.drupalcode.org/project/color_field.git",
  2594. "reference": "8.x-2.5"
  2595. },
  2596. "dist": {
  2597. "type": "zip",
  2598. "url": "https://ftp.drupal.org/files/projects/color_field-8.x-2.5.zip",
  2599. "reference": "8.x-2.5",
  2600. "shasum": "9b0d299cb24d3cb21c7fb6a6a08d32ae5aed8652"
  2601. },
  2602. "require": {
  2603. "drupal/core": "^8 || ^9"
  2604. },
  2605. "require-dev": {
  2606. "drupal/core-recommended": "*",
  2607. "drupal/token": "~1.3"
  2608. },
  2609. "suggest": {
  2610. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  2611. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  2612. },
  2613. "type": "drupal-module",
  2614. "extra": {
  2615. "drupal": {
  2616. "version": "8.x-2.5",
  2617. "datestamp": "1632938098",
  2618. "security-coverage": {
  2619. "status": "covered",
  2620. "message": "Covered by Drupal's security advisory policy"
  2621. }
  2622. }
  2623. },
  2624. "notification-url": "https://packages.drupal.org/8/downloads",
  2625. "license": [
  2626. "GPL-2.0-or-later"
  2627. ],
  2628. "authors": [
  2629. {
  2630. "name": "targoo",
  2631. "homepage": "https://www.drupal.org/user/431910",
  2632. "role": "Maintainer"
  2633. },
  2634. {
  2635. "name": "Nick Wilde",
  2636. "homepage": "https://www.drupal.org/user/nickwilde",
  2637. "role": "Maintainer"
  2638. },
  2639. {
  2640. "name": "targoo",
  2641. "homepage": "https://www.drupal.org/user/431910"
  2642. }
  2643. ],
  2644. "description": "Provides a color field type to store the color value and opacity",
  2645. "homepage": "https://www.drupal.org/project/color_field",
  2646. "support": {
  2647. "source": "https://git.drupalcode.org/project/color_field",
  2648. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2649. }
  2650. },
  2651. {
  2652. "name": "drupal/config_devel",
  2653. "version": "1.8.0",
  2654. "source": {
  2655. "type": "git",
  2656. "url": "https://git.drupalcode.org/project/config_devel.git",
  2657. "reference": "8.x-1.8"
  2658. },
  2659. "dist": {
  2660. "type": "zip",
  2661. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.8.zip",
  2662. "reference": "8.x-1.8",
  2663. "shasum": "325caa6c6d0ee39e938807892f9ec509e71b5fb7"
  2664. },
  2665. "require": {
  2666. "drupal/core": "^8 || ^9"
  2667. },
  2668. "type": "drupal-module",
  2669. "extra": {
  2670. "drupal": {
  2671. "version": "8.x-1.8",
  2672. "datestamp": "1609324318",
  2673. "security-coverage": {
  2674. "status": "covered",
  2675. "message": "Covered by Drupal's security advisory policy"
  2676. }
  2677. }
  2678. },
  2679. "notification-url": "https://packages.drupal.org/8/downloads",
  2680. "license": [
  2681. "GPL-2.0+"
  2682. ],
  2683. "authors": [
  2684. {
  2685. "name": "alexpott",
  2686. "homepage": "https://www.drupal.org/user/157725"
  2687. },
  2688. {
  2689. "name": "benjy",
  2690. "homepage": "https://www.drupal.org/user/1852732"
  2691. },
  2692. {
  2693. "name": "chx",
  2694. "homepage": "https://www.drupal.org/user/9446"
  2695. },
  2696. {
  2697. "name": "joachim",
  2698. "homepage": "https://www.drupal.org/user/107701"
  2699. },
  2700. {
  2701. "name": "vijaycs85",
  2702. "homepage": "https://www.drupal.org/user/93488"
  2703. }
  2704. ],
  2705. "description": "Helps developers work with configuration.",
  2706. "homepage": "https://www.drupal.org/project/config_devel",
  2707. "support": {
  2708. "source": "https://git.drupalcode.org/project/config_devel"
  2709. }
  2710. },
  2711. {
  2712. "name": "drupal/config_filter",
  2713. "version": "1.12.0",
  2714. "source": {
  2715. "type": "git",
  2716. "url": "https://git.drupalcode.org/project/config_filter.git",
  2717. "reference": "8.x-1.12"
  2718. },
  2719. "dist": {
  2720. "type": "zip",
  2721. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.12.zip",
  2722. "reference": "8.x-1.12",
  2723. "shasum": "364581700ca3a298f62950ff37dd309d0bfb8381"
  2724. },
  2725. "require": {
  2726. "drupal/core": "^8.8 || ^9 || ^10"
  2727. },
  2728. "suggest": {
  2729. "drupal/config_split": "Split site configuration for different environments."
  2730. },
  2731. "type": "drupal-module",
  2732. "extra": {
  2733. "drupal": {
  2734. "version": "8.x-1.12",
  2735. "datestamp": "1698308496",
  2736. "security-coverage": {
  2737. "status": "covered",
  2738. "message": "Covered by Drupal's security advisory policy"
  2739. }
  2740. }
  2741. },
  2742. "notification-url": "https://packages.drupal.org/8/downloads",
  2743. "license": [
  2744. "GPL-2.0-or-later"
  2745. ],
  2746. "authors": [
  2747. {
  2748. "name": "Fabian Bircher",
  2749. "homepage": "https://www.drupal.org/u/bircher",
  2750. "email": "opensource@fabianbircher.com",
  2751. "role": "Maintainer"
  2752. },
  2753. {
  2754. "name": "Nuvole Web",
  2755. "homepage": "http://nuvole.org",
  2756. "email": "info@nuvole.org",
  2757. "role": "Maintainer"
  2758. },
  2759. {
  2760. "name": "pescetti",
  2761. "homepage": "https://www.drupal.org/user/436244"
  2762. }
  2763. ],
  2764. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2765. "homepage": "https://www.drupal.org/project/config_filter",
  2766. "keywords": [
  2767. "Drupal",
  2768. "configuration",
  2769. "configuration management"
  2770. ],
  2771. "support": {
  2772. "source": "https://git.drupalcode.org/project/config_filter",
  2773. "issues": "https://www.drupal.org/project/issues/config_filter",
  2774. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2775. }
  2776. },
  2777. {
  2778. "name": "drupal/config_ignore",
  2779. "version": "3.3.0",
  2780. "source": {
  2781. "type": "git",
  2782. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2783. "reference": "8.x-3.3"
  2784. },
  2785. "dist": {
  2786. "type": "zip",
  2787. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-3.3.zip",
  2788. "reference": "8.x-3.3",
  2789. "shasum": "4446811ecb023820a57c227d35c034e0d4363a70"
  2790. },
  2791. "require": {
  2792. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2793. },
  2794. "require-dev": {
  2795. "drupal/config_filter": "^1.8||^2.2",
  2796. "drush/drush": "^10 || ^11 || ^12"
  2797. },
  2798. "type": "drupal-module",
  2799. "extra": {
  2800. "drupal": {
  2801. "version": "8.x-3.3",
  2802. "datestamp": "1713299496",
  2803. "security-coverage": {
  2804. "status": "covered",
  2805. "message": "Covered by Drupal's security advisory policy"
  2806. }
  2807. }
  2808. },
  2809. "notification-url": "https://packages.drupal.org/8/downloads",
  2810. "license": [
  2811. "GPL-2.0-or-later"
  2812. ],
  2813. "authors": [
  2814. {
  2815. "name": "Tommy Lynge Jørgensen",
  2816. "homepage": "https://www.drupal.org/u/tlyngej",
  2817. "email": "tlyngej@gmail.com",
  2818. "role": "Maintainer"
  2819. },
  2820. {
  2821. "name": "Fabian Bircher",
  2822. "homepage": "https://www.drupal.org/u/bircher",
  2823. "role": "Maintainer"
  2824. },
  2825. {
  2826. "name": "tlyngej",
  2827. "homepage": "https://www.drupal.org/user/413139"
  2828. }
  2829. ],
  2830. "description": "Ignore certain configuration during import and export.",
  2831. "homepage": "http://drupal.org/project/config_ignore",
  2832. "support": {
  2833. "source": "https://git.drupalcode.org/project/config_ignore",
  2834. "issues": "http://drupal.org/project/config_ignore"
  2835. }
  2836. },
  2837. {
  2838. "name": "drupal/config_update",
  2839. "version": "1.7.0",
  2840. "source": {
  2841. "type": "git",
  2842. "url": "https://git.drupalcode.org/project/config_update.git",
  2843. "reference": "8.x-1.7"
  2844. },
  2845. "dist": {
  2846. "type": "zip",
  2847. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.7.zip",
  2848. "reference": "8.x-1.7",
  2849. "shasum": "8f079abf7c2ea826a27fa5224b0770a26404c968"
  2850. },
  2851. "require": {
  2852. "drupal/core": "^8 || ^9"
  2853. },
  2854. "type": "drupal-module",
  2855. "extra": {
  2856. "drupal": {
  2857. "version": "8.x-1.7",
  2858. "datestamp": "1586355587",
  2859. "security-coverage": {
  2860. "status": "covered",
  2861. "message": "Covered by Drupal's security advisory policy"
  2862. }
  2863. }
  2864. },
  2865. "notification-url": "https://packages.drupal.org/8/downloads",
  2866. "license": [
  2867. "GPL-2.0-or-later"
  2868. ],
  2869. "authors": [
  2870. {
  2871. "name": "codebymikey",
  2872. "homepage": "https://www.drupal.org/user/3573206"
  2873. },
  2874. {
  2875. "name": "pasqualle",
  2876. "homepage": "https://www.drupal.org/user/80733"
  2877. },
  2878. {
  2879. "name": "vishalkhode",
  2880. "homepage": "https://www.drupal.org/user/2439156"
  2881. }
  2882. ],
  2883. "description": "Provides basic revert and update functionality for other modules",
  2884. "homepage": "https://www.drupal.org/project/config_update",
  2885. "support": {
  2886. "source": "https://git.drupalcode.org/project/config_update"
  2887. }
  2888. },
  2889. {
  2890. "name": "drupal/context",
  2891. "version": "4.1.0",
  2892. "source": {
  2893. "type": "git",
  2894. "url": "https://git.drupalcode.org/project/context.git",
  2895. "reference": "8.x-4.1"
  2896. },
  2897. "dist": {
  2898. "type": "zip",
  2899. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.1.zip",
  2900. "reference": "8.x-4.1",
  2901. "shasum": "5cfee680f7299d82b584502479c85566bb4285c1"
  2902. },
  2903. "require": {
  2904. "drupal/core": "^8.8 || ^9"
  2905. },
  2906. "type": "drupal-module",
  2907. "extra": {
  2908. "drupal": {
  2909. "version": "8.x-4.1",
  2910. "datestamp": "1628187190",
  2911. "security-coverage": {
  2912. "status": "covered",
  2913. "message": "Covered by Drupal's security advisory policy"
  2914. }
  2915. }
  2916. },
  2917. "notification-url": "https://packages.drupal.org/8/downloads",
  2918. "license": [
  2919. "MIT"
  2920. ],
  2921. "authors": [
  2922. {
  2923. "name": "Christoffer Palm",
  2924. "homepage": "http://www.oddhill.se/",
  2925. "email": "christoffer.palm@oddhill.se",
  2926. "role": "Developer"
  2927. },
  2928. {
  2929. "name": "boshtian",
  2930. "homepage": "https://www.drupal.org/user/1773456"
  2931. },
  2932. {
  2933. "name": "colan",
  2934. "homepage": "https://www.drupal.org/user/58704"
  2935. },
  2936. {
  2937. "name": "emanaton",
  2938. "homepage": "https://www.drupal.org/user/120853"
  2939. },
  2940. {
  2941. "name": "febbraro",
  2942. "homepage": "https://www.drupal.org/user/43670"
  2943. },
  2944. {
  2945. "name": "fizk",
  2946. "homepage": "https://www.drupal.org/user/473174"
  2947. },
  2948. {
  2949. "name": "hass",
  2950. "homepage": "https://www.drupal.org/user/85918"
  2951. },
  2952. {
  2953. "name": "hefox",
  2954. "homepage": "https://www.drupal.org/user/426416"
  2955. },
  2956. {
  2957. "name": "jmiccolis",
  2958. "homepage": "https://www.drupal.org/user/31731"
  2959. },
  2960. {
  2961. "name": "Kristen Pol",
  2962. "homepage": "https://www.drupal.org/user/8389"
  2963. },
  2964. {
  2965. "name": "nedjo",
  2966. "homepage": "https://www.drupal.org/user/4481"
  2967. },
  2968. {
  2969. "name": "NormySan",
  2970. "homepage": "https://www.drupal.org/user/112352"
  2971. },
  2972. {
  2973. "name": "patricksettle",
  2974. "homepage": "https://www.drupal.org/user/26618"
  2975. },
  2976. {
  2977. "name": "paulocs",
  2978. "homepage": "https://www.drupal.org/user/3640109"
  2979. },
  2980. {
  2981. "name": "Steven Jones",
  2982. "homepage": "https://www.drupal.org/user/99644"
  2983. },
  2984. {
  2985. "name": "tekante",
  2986. "homepage": "https://www.drupal.org/user/640024"
  2987. },
  2988. {
  2989. "name": "yhahn",
  2990. "homepage": "https://www.drupal.org/user/264833"
  2991. }
  2992. ],
  2993. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2994. "homepage": "https://github.com/oddhill/context",
  2995. "keywords": [
  2996. "Drupal",
  2997. "block",
  2998. "conditions",
  2999. "context",
  3000. "visibility"
  3001. ],
  3002. "support": {
  3003. "source": "https://github.com/oddhill/context",
  3004. "issues": "https://github.com/oddhill/context/issues",
  3005. "docs": "https://github.com/oddhill/context"
  3006. }
  3007. },
  3008. {
  3009. "name": "drupal/core",
  3010. "version": "9.5.11",
  3011. "source": {
  3012. "type": "git",
  3013. "url": "https://github.com/drupal/core.git",
  3014. "reference": "8afcb233c2a71501b35fed2713167c37831d5c19"
  3015. },
  3016. "dist": {
  3017. "type": "zip",
  3018. "url": "https://api.github.com/repos/drupal/core/zipball/8afcb233c2a71501b35fed2713167c37831d5c19",
  3019. "reference": "8afcb233c2a71501b35fed2713167c37831d5c19",
  3020. "shasum": ""
  3021. },
  3022. "require": {
  3023. "asm89/stack-cors": "^1.3",
  3024. "composer/semver": "^3.3",
  3025. "doctrine/annotations": "^1.13",
  3026. "doctrine/reflection": "^1.2",
  3027. "egulias/email-validator": "^2.1.22|^3.2",
  3028. "ext-date": "*",
  3029. "ext-dom": "*",
  3030. "ext-filter": "*",
  3031. "ext-gd": "*",
  3032. "ext-hash": "*",
  3033. "ext-json": "*",
  3034. "ext-pcre": "*",
  3035. "ext-pdo": "*",
  3036. "ext-session": "*",
  3037. "ext-simplexml": "*",
  3038. "ext-spl": "*",
  3039. "ext-tokenizer": "*",
  3040. "ext-xml": "*",
  3041. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  3042. "laminas/laminas-feed": "^2.17",
  3043. "longwave/laminas-diactoros": "^2.14",
  3044. "masterminds/html5": "^2.7",
  3045. "pear/archive_tar": "^1.4.14",
  3046. "php": ">=7.3.0",
  3047. "psr/log": "^1.1",
  3048. "stack/builder": "^1.0",
  3049. "symfony-cmf/routing": "^2.3",
  3050. "symfony/console": "^4.4",
  3051. "symfony/dependency-injection": "^4.4",
  3052. "symfony/event-dispatcher": "^4.4",
  3053. "symfony/http-foundation": "^4.4.7",
  3054. "symfony/http-kernel": "^4.4",
  3055. "symfony/mime": "^5.4",
  3056. "symfony/polyfill-iconv": "^1.26",
  3057. "symfony/polyfill-php80": "^1.26",
  3058. "symfony/process": "^4.4",
  3059. "symfony/psr-http-message-bridge": "^2.1",
  3060. "symfony/routing": "^4.4",
  3061. "symfony/serializer": "^4.4",
  3062. "symfony/translation": "^4.4",
  3063. "symfony/validator": "^4.4",
  3064. "symfony/yaml": "^4.4.19",
  3065. "twig/twig": "^2.15.3",
  3066. "typo3/phar-stream-wrapper": "^3.1.3"
  3067. },
  3068. "conflict": {
  3069. "drush/drush": "<8.1.10",
  3070. "symfony/http-foundation": "4.4.42"
  3071. },
  3072. "replace": {
  3073. "drupal/core-annotation": "self.version",
  3074. "drupal/core-assertion": "self.version",
  3075. "drupal/core-bridge": "self.version",
  3076. "drupal/core-class-finder": "self.version",
  3077. "drupal/core-datetime": "self.version",
  3078. "drupal/core-dependency-injection": "self.version",
  3079. "drupal/core-diff": "self.version",
  3080. "drupal/core-discovery": "self.version",
  3081. "drupal/core-event-dispatcher": "self.version",
  3082. "drupal/core-file-cache": "self.version",
  3083. "drupal/core-file-security": "self.version",
  3084. "drupal/core-filesystem": "self.version",
  3085. "drupal/core-front-matter": "self.version",
  3086. "drupal/core-gettext": "self.version",
  3087. "drupal/core-graph": "self.version",
  3088. "drupal/core-http-foundation": "self.version",
  3089. "drupal/core-php-storage": "self.version",
  3090. "drupal/core-plugin": "self.version",
  3091. "drupal/core-proxy-builder": "self.version",
  3092. "drupal/core-render": "self.version",
  3093. "drupal/core-serialization": "self.version",
  3094. "drupal/core-transliteration": "self.version",
  3095. "drupal/core-utility": "self.version",
  3096. "drupal/core-uuid": "self.version",
  3097. "drupal/core-version": "self.version"
  3098. },
  3099. "type": "drupal-core",
  3100. "extra": {
  3101. "drupal-scaffold": {
  3102. "file-mapping": {
  3103. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  3104. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  3105. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  3106. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  3107. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  3108. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  3109. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  3110. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  3111. "[web-root]/index.php": "assets/scaffold/files/index.php",
  3112. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  3113. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  3114. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  3115. "[web-root]/update.php": "assets/scaffold/files/update.php",
  3116. "[web-root]/web.config": "assets/scaffold/files/web.config",
  3117. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  3118. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  3119. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  3120. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  3121. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  3122. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  3123. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  3124. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  3125. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  3126. }
  3127. }
  3128. },
  3129. "autoload": {
  3130. "files": [
  3131. "includes/bootstrap.inc",
  3132. "includes/guzzle_php81_shim.php"
  3133. ],
  3134. "psr-4": {
  3135. "Drupal\\Core\\": "lib/Drupal/Core",
  3136. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver",
  3137. "Drupal\\Component\\": "lib/Drupal/Component"
  3138. },
  3139. "classmap": [
  3140. "lib/Drupal.php",
  3141. "lib/Drupal/Component/DependencyInjection/Container.php",
  3142. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  3143. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  3144. "lib/Drupal/Component/Utility/Timer.php",
  3145. "lib/Drupal/Component/Utility/Unicode.php",
  3146. "lib/Drupal/Core/Cache/Cache.php",
  3147. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  3148. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  3149. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  3150. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  3151. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  3152. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  3153. "lib/Drupal/Core/Database/Connection.php",
  3154. "lib/Drupal/Core/Database/Database.php",
  3155. "lib/Drupal/Core/Database/Statement.php",
  3156. "lib/Drupal/Core/Database/StatementInterface.php",
  3157. "lib/Drupal/Core/DependencyInjection/Container.php",
  3158. "lib/Drupal/Core/DrupalKernel.php",
  3159. "lib/Drupal/Core/DrupalKernelInterface.php",
  3160. "lib/Drupal/Core/Http/InputBag.php",
  3161. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  3162. "lib/Drupal/Core/Site/Settings.php"
  3163. ]
  3164. },
  3165. "notification-url": "https://packagist.org/downloads/",
  3166. "license": [
  3167. "GPL-2.0-or-later"
  3168. ],
  3169. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3170. "support": {
  3171. "source": "https://github.com/drupal/core/tree/9.5.11"
  3172. },
  3173. "time": "2023-09-19T17:58:28+00:00"
  3174. },
  3175. {
  3176. "name": "drupal/core-composer-scaffold",
  3177. "version": "9.5.11",
  3178. "source": {
  3179. "type": "git",
  3180. "url": "https://github.com/drupal/core-composer-scaffold.git",
  3181. "reference": "08da8e59c6f1bd0b1a58d18f8addc0d937bbacc7"
  3182. },
  3183. "dist": {
  3184. "type": "zip",
  3185. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/08da8e59c6f1bd0b1a58d18f8addc0d937bbacc7",
  3186. "reference": "08da8e59c6f1bd0b1a58d18f8addc0d937bbacc7",
  3187. "shasum": ""
  3188. },
  3189. "require": {
  3190. "composer-plugin-api": "^1 || ^2",
  3191. "php": ">=7.3.0"
  3192. },
  3193. "conflict": {
  3194. "drupal-composer/drupal-scaffold": "*"
  3195. },
  3196. "require-dev": {
  3197. "composer/composer": "^1.8@stable"
  3198. },
  3199. "type": "composer-plugin",
  3200. "extra": {
  3201. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  3202. "branch-alias": {
  3203. "dev-master": "1.0.x-dev"
  3204. }
  3205. },
  3206. "autoload": {
  3207. "psr-4": {
  3208. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  3209. }
  3210. },
  3211. "notification-url": "https://packagist.org/downloads/",
  3212. "license": [
  3213. "GPL-2.0-or-later"
  3214. ],
  3215. "description": "A flexible Composer project scaffold builder.",
  3216. "homepage": "https://www.drupal.org/project/drupal",
  3217. "keywords": [
  3218. "drupal"
  3219. ],
  3220. "support": {
  3221. "source": "https://github.com/drupal/core-composer-scaffold/tree/9.5.11"
  3222. },
  3223. "time": "2023-04-30T16:17:33+00:00"
  3224. },
  3225. {
  3226. "name": "drupal/core-project-message",
  3227. "version": "9.5.11",
  3228. "source": {
  3229. "type": "git",
  3230. "url": "https://github.com/drupal/core-project-message.git",
  3231. "reference": "5dfa0b75a057caf6542be67f61e7531c737db48c"
  3232. },
  3233. "dist": {
  3234. "type": "zip",
  3235. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/5dfa0b75a057caf6542be67f61e7531c737db48c",
  3236. "reference": "5dfa0b75a057caf6542be67f61e7531c737db48c",
  3237. "shasum": ""
  3238. },
  3239. "require": {
  3240. "composer-plugin-api": "^1.1 || ^2",
  3241. "php": ">=7.3.0"
  3242. },
  3243. "type": "composer-plugin",
  3244. "extra": {
  3245. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  3246. },
  3247. "autoload": {
  3248. "psr-4": {
  3249. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  3250. }
  3251. },
  3252. "notification-url": "https://packagist.org/downloads/",
  3253. "license": [
  3254. "GPL-2.0-or-later"
  3255. ],
  3256. "description": "Adds a message after Composer installation.",
  3257. "homepage": "https://www.drupal.org/project/drupal",
  3258. "keywords": [
  3259. "drupal"
  3260. ],
  3261. "support": {
  3262. "source": "https://github.com/drupal/core-project-message/tree/9.5.11"
  3263. },
  3264. "time": "2022-02-24T17:40:53+00:00"
  3265. },
  3266. {
  3267. "name": "drupal/core-recommended",
  3268. "version": "9.5.11",
  3269. "source": {
  3270. "type": "git",
  3271. "url": "https://github.com/drupal/core-recommended.git",
  3272. "reference": "af3521be5376e333ddcdbd31c5a169f16423b46f"
  3273. },
  3274. "dist": {
  3275. "type": "zip",
  3276. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/af3521be5376e333ddcdbd31c5a169f16423b46f",
  3277. "reference": "af3521be5376e333ddcdbd31c5a169f16423b46f",
  3278. "shasum": ""
  3279. },
  3280. "require": {
  3281. "asm89/stack-cors": "~1.3.0",
  3282. "composer/semver": "~3.3.2",
  3283. "doctrine/annotations": "~1.13.3",
  3284. "doctrine/lexer": "~1.2.3",
  3285. "doctrine/reflection": "~1.2.3",
  3286. "drupal/core": "9.5.11",
  3287. "egulias/email-validator": "~3.2.1",
  3288. "guzzlehttp/guzzle": "~6.5.8",
  3289. "guzzlehttp/promises": "~1.5.2",
  3290. "guzzlehttp/psr7": "~1.9.1",
  3291. "longwave/laminas-diactoros": "~2.14.2",
  3292. "masterminds/html5": "~2.7.6",
  3293. "pear/archive_tar": "~1.4.14",
  3294. "pear/console_getopt": "~v1.4.3",
  3295. "pear/pear-core-minimal": "~v1.10.11",
  3296. "pear/pear_exception": "~v1.0.2",
  3297. "psr/cache": "~1.0.1",
  3298. "psr/container": "~1.1.1",
  3299. "psr/http-factory": "~1.0.1",
  3300. "psr/http-message": "~1.0.1",
  3301. "psr/log": "~1.1.4",
  3302. "ralouphie/getallheaders": "~3.0.3",
  3303. "stack/builder": "~v1.0.6",
  3304. "symfony-cmf/routing": "~2.3.4",
  3305. "symfony/console": "~v4.4.49",
  3306. "symfony/debug": "~v4.4.44",
  3307. "symfony/dependency-injection": "~v4.4.49",
  3308. "symfony/deprecation-contracts": "~v2.5.2",
  3309. "symfony/error-handler": "~v4.4.44",
  3310. "symfony/event-dispatcher": "~v4.4.44",
  3311. "symfony/event-dispatcher-contracts": "~v1.1.13",
  3312. "symfony/http-client-contracts": "~v2.5.2",
  3313. "symfony/http-foundation": "~v4.4.49",
  3314. "symfony/http-kernel": "~v4.4.50",
  3315. "symfony/mime": "~v5.4.13",
  3316. "symfony/polyfill-ctype": "~v1.27.0",
  3317. "symfony/polyfill-iconv": "~v1.27.0",
  3318. "symfony/polyfill-intl-idn": "~v1.27.0",
  3319. "symfony/polyfill-intl-normalizer": "~v1.27.0",
  3320. "symfony/polyfill-mbstring": "~v1.27.0",
  3321. "symfony/polyfill-php80": "~v1.27.0",
  3322. "symfony/process": "~v4.4.44",
  3323. "symfony/psr-http-message-bridge": "~v2.1.4",
  3324. "symfony/routing": "~v4.4.44",
  3325. "symfony/serializer": "~v4.4.47",
  3326. "symfony/service-contracts": "~v2.5.2",
  3327. "symfony/translation": "~v4.4.47",
  3328. "symfony/translation-contracts": "~v2.5.2",
  3329. "symfony/validator": "~v4.4.48",
  3330. "symfony/var-dumper": "~v5.4.19",
  3331. "symfony/yaml": "~v4.4.45",
  3332. "twig/twig": "~v2.15.4",
  3333. "typo3/phar-stream-wrapper": "~v3.1.7"
  3334. },
  3335. "conflict": {
  3336. "webflo/drupal-core-strict": "*"
  3337. },
  3338. "type": "metapackage",
  3339. "notification-url": "https://packagist.org/downloads/",
  3340. "license": [
  3341. "GPL-2.0-or-later"
  3342. ],
  3343. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  3344. "support": {
  3345. "source": "https://github.com/drupal/core-recommended/tree/9.5.11"
  3346. },
  3347. "time": "2023-09-19T17:58:28+00:00"
  3348. },
  3349. {
  3350. "name": "drupal/ctools",
  3351. "version": "3.9.0",
  3352. "source": {
  3353. "type": "git",
  3354. "url": "https://git.drupalcode.org/project/ctools.git",
  3355. "reference": "8.x-3.9"
  3356. },
  3357. "dist": {
  3358. "type": "zip",
  3359. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.9.zip",
  3360. "reference": "8.x-3.9",
  3361. "shasum": "227ba06f5f98bded0658b83322949c33d1b3183e"
  3362. },
  3363. "require": {
  3364. "drupal/core": "^8.8 || ^9"
  3365. },
  3366. "type": "drupal-module",
  3367. "extra": {
  3368. "drupal": {
  3369. "version": "8.x-3.9",
  3370. "datestamp": "1658864511",
  3371. "security-coverage": {
  3372. "status": "covered",
  3373. "message": "Covered by Drupal's security advisory policy"
  3374. }
  3375. },
  3376. "branch-alias": {
  3377. "dev-8.x-3.x": "3.x-dev"
  3378. }
  3379. },
  3380. "notification-url": "https://packages.drupal.org/8/downloads",
  3381. "license": [
  3382. "GPL-2.0-or-later"
  3383. ],
  3384. "authors": [
  3385. {
  3386. "name": "Kris Vanderwater (EclipseGc)",
  3387. "homepage": "https://www.drupal.org/u/eclipsegc",
  3388. "role": "Maintainer"
  3389. },
  3390. {
  3391. "name": "Jakob Perry (japerry)",
  3392. "homepage": "https://www.drupal.org/u/japerry",
  3393. "role": "Maintainer"
  3394. },
  3395. {
  3396. "name": "Tim Plunkett (tim.plunkett)",
  3397. "homepage": "https://www.drupal.org/u/timplunkett",
  3398. "role": "Maintainer"
  3399. },
  3400. {
  3401. "name": "James Gilliland (neclimdul)",
  3402. "homepage": "https://www.drupal.org/u/neclimdul",
  3403. "role": "Maintainer"
  3404. },
  3405. {
  3406. "name": "Daniel Wehner (dawehner)",
  3407. "homepage": "https://www.drupal.org/u/dawehner",
  3408. "role": "Maintainer"
  3409. },
  3410. {
  3411. "name": "joelpittet",
  3412. "homepage": "https://www.drupal.org/user/160302"
  3413. },
  3414. {
  3415. "name": "merlinofchaos",
  3416. "homepage": "https://www.drupal.org/user/26979"
  3417. },
  3418. {
  3419. "name": "neclimdul",
  3420. "homepage": "https://www.drupal.org/user/48673"
  3421. },
  3422. {
  3423. "name": "sdboyer",
  3424. "homepage": "https://www.drupal.org/user/146719"
  3425. },
  3426. {
  3427. "name": "sun",
  3428. "homepage": "https://www.drupal.org/user/54136"
  3429. },
  3430. {
  3431. "name": "tim.plunkett",
  3432. "homepage": "https://www.drupal.org/user/241634"
  3433. }
  3434. ],
  3435. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3436. "homepage": "https://www.drupal.org/project/ctools",
  3437. "support": {
  3438. "source": "https://git.drupalcode.org/project/ctools",
  3439. "issues": "https://www.drupal.org/project/issues/ctools"
  3440. }
  3441. },
  3442. {
  3443. "name": "drupal/date_range_formatter",
  3444. "version": "4.0.2",
  3445. "source": {
  3446. "type": "git",
  3447. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3448. "reference": "4.0.2"
  3449. },
  3450. "dist": {
  3451. "type": "zip",
  3452. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-4.0.2.zip",
  3453. "reference": "4.0.2",
  3454. "shasum": "0d953912148e384aed6a6cee64115faf170319c0"
  3455. },
  3456. "require": {
  3457. "drupal/core": "^8 || ^9 || ^10"
  3458. },
  3459. "type": "drupal-module",
  3460. "extra": {
  3461. "drupal": {
  3462. "version": "4.0.2",
  3463. "datestamp": "1703156621",
  3464. "security-coverage": {
  3465. "status": "covered",
  3466. "message": "Covered by Drupal's security advisory policy"
  3467. }
  3468. }
  3469. },
  3470. "notification-url": "https://packages.drupal.org/8/downloads",
  3471. "license": [
  3472. "GPL-2.0-or-later"
  3473. ],
  3474. "authors": [
  3475. {
  3476. "name": "maximpodorov",
  3477. "homepage": "https://www.drupal.org/user/515310"
  3478. },
  3479. {
  3480. "name": "sudishth",
  3481. "homepage": "https://www.drupal.org/user/1440562"
  3482. }
  3483. ],
  3484. "description": "Formats date ranges.",
  3485. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3486. "support": {
  3487. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3488. }
  3489. },
  3490. {
  3491. "name": "drupal/devel",
  3492. "version": "4.2.1",
  3493. "source": {
  3494. "type": "git",
  3495. "url": "https://git.drupalcode.org/project/devel.git",
  3496. "reference": "4.2.1"
  3497. },
  3498. "dist": {
  3499. "type": "zip",
  3500. "url": "https://ftp.drupal.org/files/projects/devel-4.2.1.zip",
  3501. "reference": "4.2.1",
  3502. "shasum": "aa08379bad81cb2e604ee9a0b9e2aabd86fae13f"
  3503. },
  3504. "require": {
  3505. "doctrine/common": "^2.7",
  3506. "drupal/core": "^8.8 || ^9",
  3507. "symfony/var-dumper": "^4 || ^5"
  3508. },
  3509. "conflict": {
  3510. "kint-php/kint": "<3"
  3511. },
  3512. "require-dev": {
  3513. "drush/drush": "^10"
  3514. },
  3515. "suggest": {
  3516. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3517. },
  3518. "type": "drupal-module",
  3519. "extra": {
  3520. "drupal": {
  3521. "version": "4.2.1",
  3522. "datestamp": "1664317444",
  3523. "security-coverage": {
  3524. "status": "covered",
  3525. "message": "Covered by Drupal's security advisory policy"
  3526. }
  3527. },
  3528. "drush": {
  3529. "services": {
  3530. "drush.services.yml": "^9 || ^10"
  3531. }
  3532. }
  3533. },
  3534. "notification-url": "https://packages.drupal.org/8/downloads",
  3535. "license": [
  3536. "GPL-2.0-or-later"
  3537. ],
  3538. "authors": [
  3539. {
  3540. "name": "moshe weitzman",
  3541. "homepage": "https://www.drupal.org/user/23"
  3542. }
  3543. ],
  3544. "description": "Various blocks, pages, and functions for developers.",
  3545. "homepage": "https://www.drupal.org/project/devel",
  3546. "support": {
  3547. "source": "https://gitlab.com/drupalspoons/devel",
  3548. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3549. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3550. }
  3551. },
  3552. {
  3553. "name": "drupal/domain",
  3554. "version": "1.0.0-beta8",
  3555. "source": {
  3556. "type": "git",
  3557. "url": "https://git.drupalcode.org/project/domain.git",
  3558. "reference": "8.x-1.0-beta8"
  3559. },
  3560. "dist": {
  3561. "type": "zip",
  3562. "url": "https://ftp.drupal.org/files/projects/domain-8.x-1.0-beta8.zip",
  3563. "reference": "8.x-1.0-beta8",
  3564. "shasum": "24deb7c239b3d0f9cd177a9e0893a9ecb5cf81d3"
  3565. },
  3566. "require": {
  3567. "drupal/core": "^8 || ^9"
  3568. },
  3569. "require-dev": {
  3570. "drupal/domain_access": "*",
  3571. "drupal/domain_config": "*"
  3572. },
  3573. "type": "drupal-module",
  3574. "extra": {
  3575. "drupal": {
  3576. "version": "8.x-1.0-beta8",
  3577. "datestamp": "1677511311",
  3578. "security-coverage": {
  3579. "status": "not-covered",
  3580. "message": "Beta releases are not covered by Drupal security advisories."
  3581. }
  3582. }
  3583. },
  3584. "notification-url": "https://packages.drupal.org/8/downloads",
  3585. "license": [
  3586. "GPL-2.0-or-later"
  3587. ],
  3588. "authors": [
  3589. {
  3590. "name": "agentrickard",
  3591. "homepage": "https://www.drupal.org/user/20975"
  3592. },
  3593. {
  3594. "name": "nonsie",
  3595. "homepage": "https://www.drupal.org/user/29899"
  3596. },
  3597. {
  3598. "name": "webflo",
  3599. "homepage": "https://www.drupal.org/user/254778"
  3600. }
  3601. ],
  3602. "description": "Creates domain records within a Drupal installation.",
  3603. "homepage": "https://www.drupal.org/project/domain",
  3604. "support": {
  3605. "source": "https://git.drupalcode.org/project/domain"
  3606. }
  3607. },
  3608. {
  3609. "name": "drupal/domain_config",
  3610. "version": "1.0.0-beta8",
  3611. "require": {
  3612. "drupal/core": "^8 || ^9",
  3613. "drupal/domain": "*"
  3614. },
  3615. "type": "metapackage",
  3616. "extra": {
  3617. "drupal": {
  3618. "version": "8.x-1.0-beta8",
  3619. "datestamp": "1677511311",
  3620. "security-coverage": {
  3621. "status": "not-covered",
  3622. "message": "Beta releases are not covered by Drupal security advisories."
  3623. }
  3624. }
  3625. },
  3626. "notification-url": "https://packages.drupal.org/8/downloads",
  3627. "license": [
  3628. "GPL-2.0-or-later"
  3629. ],
  3630. "authors": [
  3631. {
  3632. "name": "agentrickard",
  3633. "homepage": "https://www.drupal.org/user/20975"
  3634. },
  3635. {
  3636. "name": "nonsie",
  3637. "homepage": "https://www.drupal.org/user/29899"
  3638. },
  3639. {
  3640. "name": "webflo",
  3641. "homepage": "https://www.drupal.org/user/254778"
  3642. }
  3643. ],
  3644. "description": "Allows domain specific configuration.",
  3645. "homepage": "https://www.drupal.org/project/domain",
  3646. "support": {
  3647. "source": "https://git.drupalcode.org/project/domain"
  3648. }
  3649. },
  3650. {
  3651. "name": "drupal/domain_site_settings",
  3652. "version": "1.6.0",
  3653. "source": {
  3654. "type": "git",
  3655. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  3656. "reference": "8.x-1.6"
  3657. },
  3658. "dist": {
  3659. "type": "zip",
  3660. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.6.zip",
  3661. "reference": "8.x-1.6",
  3662. "shasum": "d0f89411c5dd934a63a1a5991fbc0f76c1515cb2"
  3663. },
  3664. "require": {
  3665. "drupal/core": "^8.8 || ^9 || ^10 || ^11",
  3666. "drupal/domain": "^1.0 || ^2.0",
  3667. "drupal/domain_config": "*"
  3668. },
  3669. "type": "drupal-module",
  3670. "extra": {
  3671. "drupal": {
  3672. "version": "8.x-1.6",
  3673. "datestamp": "1726238712",
  3674. "security-coverage": {
  3675. "status": "covered",
  3676. "message": "Covered by Drupal's security advisory policy"
  3677. }
  3678. }
  3679. },
  3680. "notification-url": "https://packages.drupal.org/8/downloads",
  3681. "license": [
  3682. "GPL-2.0+"
  3683. ],
  3684. "authors": [
  3685. {
  3686. "name": "aloknarwaria",
  3687. "homepage": "https://www.drupal.org/user/906640"
  3688. },
  3689. {
  3690. "name": "jeroent",
  3691. "homepage": "https://www.drupal.org/user/2228934"
  3692. },
  3693. {
  3694. "name": "malaynayak",
  3695. "homepage": "https://www.drupal.org/user/3529755"
  3696. }
  3697. ],
  3698. "description": "Basic Site Setting for Domains.",
  3699. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3700. "keywords": [
  3701. "Drupal"
  3702. ],
  3703. "support": {
  3704. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3705. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3706. }
  3707. },
  3708. {
  3709. "name": "drupal/email_registration",
  3710. "version": "1.1.0",
  3711. "source": {
  3712. "type": "git",
  3713. "url": "https://git.drupalcode.org/project/email_registration.git",
  3714. "reference": "8.x-1.1"
  3715. },
  3716. "dist": {
  3717. "type": "zip",
  3718. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.1.zip",
  3719. "reference": "8.x-1.1",
  3720. "shasum": "cc0eef597216a6d025d9017df104f2693b029f96"
  3721. },
  3722. "require": {
  3723. "drupal/core": "^8.7.7 || ^9"
  3724. },
  3725. "conflict": {
  3726. "drupal/commerce": "<2.12"
  3727. },
  3728. "require-dev": {
  3729. "drupal/commerce": "^2.0"
  3730. },
  3731. "type": "drupal-module",
  3732. "extra": {
  3733. "drupal": {
  3734. "version": "8.x-1.1",
  3735. "datestamp": "1592317072",
  3736. "security-coverage": {
  3737. "status": "covered",
  3738. "message": "Covered by Drupal's security advisory policy"
  3739. }
  3740. }
  3741. },
  3742. "notification-url": "https://packages.drupal.org/8/downloads",
  3743. "license": [
  3744. "GPL-2.0-or-later"
  3745. ],
  3746. "authors": [
  3747. {
  3748. "name": "Greg Knaddison (greggles)",
  3749. "homepage": "https://www.drupal.org/u/greggles",
  3750. "role": "Maintainer"
  3751. },
  3752. {
  3753. "name": "Andrey Postnikov (andypost)",
  3754. "homepage": "https://www.drupal.org/u/andypost",
  3755. "role": "Maintainer"
  3756. },
  3757. {
  3758. "name": "Chris Herberte",
  3759. "homepage": "https://www.drupal.org/u/chris-herberte",
  3760. "role": "Maintainer"
  3761. },
  3762. {
  3763. "name": "Moshe Weitzman (moshe weitzman)",
  3764. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3765. "role": "Maintainer"
  3766. },
  3767. {
  3768. "name": "Grevil",
  3769. "homepage": "https://www.drupal.org/user/3668491"
  3770. },
  3771. {
  3772. "name": "moshe weitzman",
  3773. "homepage": "https://www.drupal.org/user/23"
  3774. }
  3775. ],
  3776. "description": "Allows users to register with an email address as their username.",
  3777. "homepage": "https://www.drupal.org/project/email_registration",
  3778. "support": {
  3779. "source": "https://git.drupalcode.org/project/email_registration",
  3780. "issues": "http://drupal.org/project/issues/email_registration"
  3781. }
  3782. },
  3783. {
  3784. "name": "drupal/entity",
  3785. "version": "1.3.0",
  3786. "source": {
  3787. "type": "git",
  3788. "url": "https://git.drupalcode.org/project/entity.git",
  3789. "reference": "8.x-1.3"
  3790. },
  3791. "dist": {
  3792. "type": "zip",
  3793. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.3.zip",
  3794. "reference": "8.x-1.3",
  3795. "shasum": "9515e28a70448d369adf4199d08a01a5ab75792d"
  3796. },
  3797. "require": {
  3798. "drupal/core": "^8.8.2 || ^9"
  3799. },
  3800. "type": "drupal-module",
  3801. "extra": {
  3802. "drupal": {
  3803. "version": "8.x-1.3",
  3804. "datestamp": "1646324539",
  3805. "security-coverage": {
  3806. "status": "covered",
  3807. "message": "Covered by Drupal's security advisory policy"
  3808. }
  3809. }
  3810. },
  3811. "notification-url": "https://packages.drupal.org/8/downloads",
  3812. "license": [
  3813. "GPL-2.0-or-later"
  3814. ],
  3815. "authors": [
  3816. {
  3817. "name": "berdir",
  3818. "homepage": "https://www.drupal.org/user/214652"
  3819. },
  3820. {
  3821. "name": "bojanz",
  3822. "homepage": "https://www.drupal.org/user/86106"
  3823. },
  3824. {
  3825. "name": "dawehner",
  3826. "homepage": "https://www.drupal.org/user/99340"
  3827. },
  3828. {
  3829. "name": "dixon_",
  3830. "homepage": "https://www.drupal.org/user/239911"
  3831. },
  3832. {
  3833. "name": "fago",
  3834. "homepage": "https://www.drupal.org/user/16747"
  3835. },
  3836. {
  3837. "name": "mglaman",
  3838. "homepage": "https://www.drupal.org/user/2416470"
  3839. },
  3840. {
  3841. "name": "TR",
  3842. "homepage": "https://www.drupal.org/user/202830"
  3843. }
  3844. ],
  3845. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3846. "homepage": "https://www.drupal.org/project/entity",
  3847. "support": {
  3848. "source": "https://git.drupalcode.org/project/entity",
  3849. "issues": "https://www.drupal.org/project/issues/entity"
  3850. }
  3851. },
  3852. {
  3853. "name": "drupal/features",
  3854. "version": "3.12.0",
  3855. "source": {
  3856. "type": "git",
  3857. "url": "https://git.drupalcode.org/project/features.git",
  3858. "reference": "8.x-3.12"
  3859. },
  3860. "dist": {
  3861. "type": "zip",
  3862. "url": "https://ftp.drupal.org/files/projects/features-8.x-3.12.zip",
  3863. "reference": "8.x-3.12",
  3864. "shasum": "f28d6e7d3340e32666a3e8ae515ed746dbe86b98"
  3865. },
  3866. "require": {
  3867. "drupal/config_update": "^1.4",
  3868. "drupal/core": "^8.8 || ^9"
  3869. },
  3870. "type": "drupal-module",
  3871. "extra": {
  3872. "drupal": {
  3873. "version": "8.x-3.12",
  3874. "datestamp": "1612830531",
  3875. "security-coverage": {
  3876. "status": "covered",
  3877. "message": "Covered by Drupal's security advisory policy"
  3878. }
  3879. },
  3880. "drush": {
  3881. "services": {
  3882. "drush.services.yml": "^9 || ^10"
  3883. }
  3884. }
  3885. },
  3886. "notification-url": "https://packages.drupal.org/8/downloads",
  3887. "license": [
  3888. "GPL-2.0-or-later"
  3889. ],
  3890. "authors": [
  3891. {
  3892. "name": "Dave Reid",
  3893. "homepage": "https://www.drupal.org/user/53892"
  3894. },
  3895. {
  3896. "name": "dawehner",
  3897. "homepage": "https://www.drupal.org/user/99340"
  3898. },
  3899. {
  3900. "name": "donquixote",
  3901. "homepage": "https://www.drupal.org/user/459338"
  3902. },
  3903. {
  3904. "name": "e2thex",
  3905. "homepage": "https://www.drupal.org/user/189123"
  3906. },
  3907. {
  3908. "name": "febbraro",
  3909. "homepage": "https://www.drupal.org/user/43670"
  3910. },
  3911. {
  3912. "name": "flocondetoile",
  3913. "homepage": "https://www.drupal.org/user/2006064"
  3914. },
  3915. {
  3916. "name": "jmiccolis",
  3917. "homepage": "https://www.drupal.org/user/31731"
  3918. },
  3919. {
  3920. "name": "joseph.olstad",
  3921. "homepage": "https://www.drupal.org/user/1321830"
  3922. },
  3923. {
  3924. "name": "matthand",
  3925. "homepage": "https://www.drupal.org/user/171527"
  3926. },
  3927. {
  3928. "name": "mpotter",
  3929. "homepage": "https://www.drupal.org/user/616192"
  3930. }
  3931. ],
  3932. "description": "Enables administrators to package configuration into modules",
  3933. "homepage": "https://www.drupal.org/project/features",
  3934. "support": {
  3935. "source": "https://git.drupalcode.org/project/features"
  3936. }
  3937. },
  3938. {
  3939. "name": "drupal/field_group",
  3940. "version": "3.3.0",
  3941. "source": {
  3942. "type": "git",
  3943. "url": "https://git.drupalcode.org/project/field_group.git",
  3944. "reference": "8.x-3.3"
  3945. },
  3946. "dist": {
  3947. "type": "zip",
  3948. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.3.zip",
  3949. "reference": "8.x-3.3",
  3950. "shasum": "c7a423b1d7643ee40dd1543d72fa04e8ac1756e4"
  3951. },
  3952. "require": {
  3953. "drupal/core": "^8.8 || ^9"
  3954. },
  3955. "require-dev": {
  3956. "drupal/jquery_ui_accordion": "^1.0"
  3957. },
  3958. "type": "drupal-module",
  3959. "extra": {
  3960. "drupal": {
  3961. "version": "8.x-3.3",
  3962. "datestamp": "1663516404",
  3963. "security-coverage": {
  3964. "status": "covered",
  3965. "message": "Covered by Drupal's security advisory policy"
  3966. }
  3967. }
  3968. },
  3969. "notification-url": "https://packages.drupal.org/8/downloads",
  3970. "license": [
  3971. "GPL-2.0-or-later"
  3972. ],
  3973. "authors": [
  3974. {
  3975. "name": "anybody",
  3976. "homepage": "https://www.drupal.org/user/291091"
  3977. },
  3978. {
  3979. "name": "grevil",
  3980. "homepage": "https://www.drupal.org/user/3668491"
  3981. },
  3982. {
  3983. "name": "hydra",
  3984. "homepage": "https://www.drupal.org/user/647364"
  3985. },
  3986. {
  3987. "name": "joevagyok",
  3988. "homepage": "https://www.drupal.org/user/2876343"
  3989. },
  3990. {
  3991. "name": "jyve",
  3992. "homepage": "https://www.drupal.org/user/591438"
  3993. },
  3994. {
  3995. "name": "nils.destoop",
  3996. "homepage": "https://www.drupal.org/user/361625"
  3997. },
  3998. {
  3999. "name": "Stalski",
  4000. "homepage": "https://www.drupal.org/user/322618"
  4001. },
  4002. {
  4003. "name": "swentel",
  4004. "homepage": "https://www.drupal.org/user/107403"
  4005. }
  4006. ],
  4007. "description": "Provides the field_group module.",
  4008. "homepage": "https://www.drupal.org/project/field_group",
  4009. "support": {
  4010. "source": "https://git.drupalcode.org/project/field_group",
  4011. "issues": "https://www.drupal.org/project/issues/field_group"
  4012. }
  4013. },
  4014. {
  4015. "name": "drupal/filefield_sources",
  4016. "version": "1.0.0-alpha5",
  4017. "source": {
  4018. "type": "git",
  4019. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  4020. "reference": "8.x-1.0-alpha5"
  4021. },
  4022. "dist": {
  4023. "type": "zip",
  4024. "url": "https://ftp.drupal.org/files/projects/filefield_sources-8.x-1.0-alpha5.zip",
  4025. "reference": "8.x-1.0-alpha5",
  4026. "shasum": "e2438610bf829a82c6415f88f708b2dc73d91c49"
  4027. },
  4028. "require": {
  4029. "drupal/core": "^8 || ^9"
  4030. },
  4031. "require-dev": {
  4032. "drupal/imce": "^2.3"
  4033. },
  4034. "type": "drupal-module",
  4035. "extra": {
  4036. "drupal": {
  4037. "version": "8.x-1.0-alpha5",
  4038. "datestamp": "1642555269",
  4039. "security-coverage": {
  4040. "status": "not-covered",
  4041. "message": "Alpha releases are not covered by Drupal security advisories."
  4042. }
  4043. }
  4044. },
  4045. "notification-url": "https://packages.drupal.org/8/downloads",
  4046. "license": [
  4047. "GPL-2.0-or-later"
  4048. ],
  4049. "authors": [
  4050. {
  4051. "name": "Nate Lampton (quicksketch)",
  4052. "homepage": "https://www.drupal.org/u/quicksketch",
  4053. "role": "Maintainer"
  4054. },
  4055. {
  4056. "name": "Andrey Khromyshev (profak)",
  4057. "homepage": "https://www.drupal.org/u/profak",
  4058. "role": "Maintainer"
  4059. },
  4060. {
  4061. "name": "David Valdez (gnuget)",
  4062. "homepage": "https://www.drupal.org/u/gnuget",
  4063. "role": "Maintainer"
  4064. },
  4065. {
  4066. "name": "quicksketch",
  4067. "homepage": "https://www.drupal.org/user/35821"
  4068. }
  4069. ],
  4070. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  4071. "homepage": "https://www.drupal.org/project/filefield_sources",
  4072. "support": {
  4073. "source": "https://git.drupalcode.org/project/filefield_sources",
  4074. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  4075. "irc": "irc://irc.freenode.org/drupal-contribute"
  4076. }
  4077. },
  4078. {
  4079. "name": "drupal/filter_perms",
  4080. "version": "1.0.0-alpha1",
  4081. "source": {
  4082. "type": "git",
  4083. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4084. "reference": "8.x-1.0-alpha1"
  4085. },
  4086. "dist": {
  4087. "type": "zip",
  4088. "url": "https://ftp.drupal.org/files/projects/filter_perms-8.x-1.0-alpha1.zip",
  4089. "reference": "8.x-1.0-alpha1",
  4090. "shasum": "5a4bf4332f97b238864191042198f9f9a85cab26"
  4091. },
  4092. "require": {
  4093. "drupal/core": "^8 || ^9"
  4094. },
  4095. "type": "drupal-module",
  4096. "extra": {
  4097. "drupal": {
  4098. "version": "8.x-1.0-alpha1",
  4099. "datestamp": "1595202904",
  4100. "security-coverage": {
  4101. "status": "not-covered",
  4102. "message": "Alpha releases are not covered by Drupal security advisories."
  4103. }
  4104. }
  4105. },
  4106. "notification-url": "https://packages.drupal.org/8/downloads",
  4107. "license": [
  4108. "GPL-2.0-or-later"
  4109. ],
  4110. "authors": [
  4111. {
  4112. "name": "cYu",
  4113. "homepage": "https://www.drupal.org/user/202205"
  4114. },
  4115. {
  4116. "name": "deekayen",
  4117. "homepage": "https://www.drupal.org/user/972"
  4118. },
  4119. {
  4120. "name": "ivavictoria",
  4121. "homepage": "https://www.drupal.org/user/3061533"
  4122. },
  4123. {
  4124. "name": "justcaldwell",
  4125. "homepage": "https://www.drupal.org/user/290069"
  4126. },
  4127. {
  4128. "name": "mgbellaire",
  4129. "homepage": "https://www.drupal.org/user/1831932"
  4130. },
  4131. {
  4132. "name": "willzyx",
  4133. "homepage": "https://www.drupal.org/user/1043862"
  4134. }
  4135. ],
  4136. "description": "Provides role and module filters to simplify the user permissions page.",
  4137. "homepage": "https://www.drupal.org/project/filter_perms",
  4138. "support": {
  4139. "source": "https://git.drupalcode.org/project/filter_perms"
  4140. }
  4141. },
  4142. {
  4143. "name": "drupal/honeypot",
  4144. "version": "2.0.2",
  4145. "source": {
  4146. "type": "git",
  4147. "url": "https://git.drupalcode.org/project/honeypot.git",
  4148. "reference": "2.0.2"
  4149. },
  4150. "dist": {
  4151. "type": "zip",
  4152. "url": "https://ftp.drupal.org/files/projects/honeypot-2.0.2.zip",
  4153. "reference": "2.0.2",
  4154. "shasum": "8a3e15509f649c39e88c4f22105f12fb6445fc62"
  4155. },
  4156. "require": {
  4157. "drupal/core": "^8.8.2 || ^9"
  4158. },
  4159. "type": "drupal-module",
  4160. "extra": {
  4161. "drupal": {
  4162. "version": "2.0.2",
  4163. "datestamp": "1651895165",
  4164. "security-coverage": {
  4165. "status": "covered",
  4166. "message": "Covered by Drupal's security advisory policy"
  4167. }
  4168. }
  4169. },
  4170. "notification-url": "https://packages.drupal.org/8/downloads",
  4171. "license": [
  4172. "GPL-2.0-or-later"
  4173. ],
  4174. "authors": [
  4175. {
  4176. "name": "Jeff Geerling",
  4177. "homepage": "https://www.drupal.org/user/389011",
  4178. "email": "geerlingguy@mac.com"
  4179. },
  4180. {
  4181. "name": "Manuel Garcia",
  4182. "homepage": "https://www.drupal.org/user/213194"
  4183. },
  4184. {
  4185. "name": "tr",
  4186. "homepage": "https://www.drupal.org/user/202830"
  4187. },
  4188. {
  4189. "name": "vijaycs85",
  4190. "homepage": "https://www.drupal.org/user/93488"
  4191. }
  4192. ],
  4193. "description": "Mitigates spam form submissions using the honeypot method.",
  4194. "homepage": "https://www.drupal.org/project/honeypot",
  4195. "keywords": [
  4196. "deterrent",
  4197. "form",
  4198. "honeypot",
  4199. "honeytrap",
  4200. "php",
  4201. "spam"
  4202. ],
  4203. "support": {
  4204. "source": "https://git.drupalcode.org/project/honeypot",
  4205. "issues": "https://www.drupal.org/project/issues/honeypot"
  4206. }
  4207. },
  4208. {
  4209. "name": "drupal/jquery_ui",
  4210. "version": "1.4.0",
  4211. "source": {
  4212. "type": "git",
  4213. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  4214. "reference": "8.x-1.4"
  4215. },
  4216. "dist": {
  4217. "type": "zip",
  4218. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.4.zip",
  4219. "reference": "8.x-1.4",
  4220. "shasum": "64c19ecc8902e2b4b1ab0cc5f5fe28dbc83bfebe"
  4221. },
  4222. "require": {
  4223. "drupal/core": "^8 || ^9"
  4224. },
  4225. "type": "drupal-module",
  4226. "extra": {
  4227. "drupal": {
  4228. "version": "8.x-1.4",
  4229. "datestamp": "1582149957",
  4230. "security-coverage": {
  4231. "status": "covered",
  4232. "message": "Covered by Drupal's security advisory policy"
  4233. }
  4234. }
  4235. },
  4236. "notification-url": "https://packages.drupal.org/8/downloads",
  4237. "license": [
  4238. "GPL-2.0-or-later"
  4239. ],
  4240. "authors": [
  4241. {
  4242. "name": "bnjmnm",
  4243. "homepage": "https://www.drupal.org/user/2369194"
  4244. },
  4245. {
  4246. "name": "jjeff",
  4247. "homepage": "https://www.drupal.org/user/17190"
  4248. },
  4249. {
  4250. "name": "lauriii",
  4251. "homepage": "https://www.drupal.org/user/1078742"
  4252. },
  4253. {
  4254. "name": "litwol",
  4255. "homepage": "https://www.drupal.org/user/78134"
  4256. },
  4257. {
  4258. "name": "mfb",
  4259. "homepage": "https://www.drupal.org/user/12302"
  4260. },
  4261. {
  4262. "name": "mfer",
  4263. "homepage": "https://www.drupal.org/user/25701"
  4264. },
  4265. {
  4266. "name": "mikelutz",
  4267. "homepage": "https://www.drupal.org/user/2972409"
  4268. },
  4269. {
  4270. "name": "nod_",
  4271. "homepage": "https://www.drupal.org/user/598310"
  4272. },
  4273. {
  4274. "name": "phenaproxima",
  4275. "homepage": "https://www.drupal.org/user/205645"
  4276. },
  4277. {
  4278. "name": "RobLoach",
  4279. "homepage": "https://www.drupal.org/user/61114"
  4280. },
  4281. {
  4282. "name": "sun",
  4283. "homepage": "https://www.drupal.org/user/54136"
  4284. },
  4285. {
  4286. "name": "webchick",
  4287. "homepage": "https://www.drupal.org/user/24967"
  4288. },
  4289. {
  4290. "name": "Wim Leers",
  4291. "homepage": "https://www.drupal.org/user/99777"
  4292. },
  4293. {
  4294. "name": "zrpnr",
  4295. "homepage": "https://www.drupal.org/user/1448368"
  4296. }
  4297. ],
  4298. "description": "Provides jQuery UI library.",
  4299. "homepage": "https://www.drupal.org/project/jquery_ui",
  4300. "support": {
  4301. "source": "https://git.drupalcode.org/project/jquery_ui"
  4302. }
  4303. },
  4304. {
  4305. "name": "drupal/jquery_ui_draggable",
  4306. "version": "1.2.0",
  4307. "source": {
  4308. "type": "git",
  4309. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  4310. "reference": "8.x-1.2"
  4311. },
  4312. "dist": {
  4313. "type": "zip",
  4314. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-8.x-1.2.zip",
  4315. "reference": "8.x-1.2",
  4316. "shasum": "09e17046e38aebf84ed573822b0d5be6de3f0c94"
  4317. },
  4318. "require": {
  4319. "drupal/core": "^8 || ^9",
  4320. "drupal/jquery_ui": "*"
  4321. },
  4322. "type": "drupal-module",
  4323. "extra": {
  4324. "drupal": {
  4325. "version": "8.x-1.2",
  4326. "datestamp": "1582150027",
  4327. "security-coverage": {
  4328. "status": "covered",
  4329. "message": "Covered by Drupal's security advisory policy"
  4330. }
  4331. }
  4332. },
  4333. "notification-url": "https://packages.drupal.org/8/downloads",
  4334. "license": [
  4335. "GPL-2.0-or-later"
  4336. ],
  4337. "authors": [
  4338. {
  4339. "name": "bnjmnm",
  4340. "homepage": "https://www.drupal.org/user/2369194"
  4341. },
  4342. {
  4343. "name": "lauriii",
  4344. "homepage": "https://www.drupal.org/user/1078742"
  4345. },
  4346. {
  4347. "name": "zrpnr",
  4348. "homepage": "https://www.drupal.org/user/1448368"
  4349. }
  4350. ],
  4351. "description": "Provides jQuery UI Draggable library.",
  4352. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  4353. "support": {
  4354. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  4355. }
  4356. },
  4357. {
  4358. "name": "drupal/jquery_ui_droppable",
  4359. "version": "1.2.0",
  4360. "source": {
  4361. "type": "git",
  4362. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  4363. "reference": "8.x-1.2"
  4364. },
  4365. "dist": {
  4366. "type": "zip",
  4367. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-8.x-1.2.zip",
  4368. "reference": "8.x-1.2",
  4369. "shasum": "6e53043f2d3215f211721eea4d4c6ab5d1672b14"
  4370. },
  4371. "require": {
  4372. "drupal/core": "^8 || ^9",
  4373. "drupal/jquery_ui": "*",
  4374. "drupal/jquery_ui_draggable": "*"
  4375. },
  4376. "type": "drupal-module",
  4377. "extra": {
  4378. "drupal": {
  4379. "version": "8.x-1.2",
  4380. "datestamp": "1582150071",
  4381. "security-coverage": {
  4382. "status": "covered",
  4383. "message": "Covered by Drupal's security advisory policy"
  4384. }
  4385. }
  4386. },
  4387. "notification-url": "https://packages.drupal.org/8/downloads",
  4388. "license": [
  4389. "GPL-2.0-or-later"
  4390. ],
  4391. "authors": [
  4392. {
  4393. "name": "bnjmnm",
  4394. "homepage": "https://www.drupal.org/user/2369194"
  4395. },
  4396. {
  4397. "name": "lauriii",
  4398. "homepage": "https://www.drupal.org/user/1078742"
  4399. },
  4400. {
  4401. "name": "zrpnr",
  4402. "homepage": "https://www.drupal.org/user/1448368"
  4403. }
  4404. ],
  4405. "description": "Provides jQuery UI Droppable library.",
  4406. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  4407. "support": {
  4408. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  4409. }
  4410. },
  4411. {
  4412. "name": "drupal/jquery_ui_sortable",
  4413. "version": "1.1.0",
  4414. "source": {
  4415. "type": "git",
  4416. "url": "https://git.drupalcode.org/project/jquery_ui_sortable.git",
  4417. "reference": "8.x-1.1"
  4418. },
  4419. "dist": {
  4420. "type": "zip",
  4421. "url": "https://ftp.drupal.org/files/projects/jquery_ui_sortable-8.x-1.1.zip",
  4422. "reference": "8.x-1.1",
  4423. "shasum": "dbb64f4e8f57b08a3e0ddd2e5cc3ba8d27d2722f"
  4424. },
  4425. "require": {
  4426. "drupal/core": "^8 || ^9",
  4427. "drupal/jquery_ui": "*"
  4428. },
  4429. "type": "drupal-module",
  4430. "extra": {
  4431. "drupal": {
  4432. "version": "8.x-1.1",
  4433. "datestamp": "1583174744",
  4434. "security-coverage": {
  4435. "status": "covered",
  4436. "message": "Covered by Drupal's security advisory policy"
  4437. }
  4438. }
  4439. },
  4440. "notification-url": "https://packages.drupal.org/8/downloads",
  4441. "license": [
  4442. "GPL-2.0-or-later"
  4443. ],
  4444. "authors": [
  4445. {
  4446. "name": "bnjmnm",
  4447. "homepage": "https://www.drupal.org/user/2369194"
  4448. },
  4449. {
  4450. "name": "lauriii",
  4451. "homepage": "https://www.drupal.org/user/1078742"
  4452. },
  4453. {
  4454. "name": "zrpnr",
  4455. "homepage": "https://www.drupal.org/user/1448368"
  4456. }
  4457. ],
  4458. "description": "Provides jQuery UI Sortable library.",
  4459. "homepage": "https://www.drupal.org/project/jquery_ui_sortable",
  4460. "support": {
  4461. "source": "https://git.drupalcode.org/project/jquery_ui_sortable"
  4462. }
  4463. },
  4464. {
  4465. "name": "drupal/linkit",
  4466. "version": "6.0.0-beta3",
  4467. "source": {
  4468. "type": "git",
  4469. "url": "https://git.drupalcode.org/project/linkit.git",
  4470. "reference": "6.0.0-beta3"
  4471. },
  4472. "dist": {
  4473. "type": "zip",
  4474. "url": "https://ftp.drupal.org/files/projects/linkit-6.0.0-beta3.zip",
  4475. "reference": "6.0.0-beta3",
  4476. "shasum": "39a5bf54cbc88324d788a573df7b3fecf7622065"
  4477. },
  4478. "require": {
  4479. "drupal/core": "^8.7.7 || ^9"
  4480. },
  4481. "require-dev": {
  4482. "drupal/imce": "*"
  4483. },
  4484. "type": "drupal-module",
  4485. "extra": {
  4486. "drupal": {
  4487. "version": "6.0.0-beta3",
  4488. "datestamp": "1632946984",
  4489. "security-coverage": {
  4490. "status": "not-covered",
  4491. "message": "Beta releases are not covered by Drupal security advisories."
  4492. }
  4493. }
  4494. },
  4495. "notification-url": "https://packages.drupal.org/8/downloads",
  4496. "license": [
  4497. "GPL-2.0-or-later"
  4498. ],
  4499. "authors": [
  4500. {
  4501. "name": "Emil Stjerneman",
  4502. "homepage": "https://stjerneman.com",
  4503. "email": "emil@stjerneman.com",
  4504. "role": "Maintainer"
  4505. },
  4506. {
  4507. "name": "johnwebdev",
  4508. "homepage": "https://www.drupal.org/user/3331569"
  4509. },
  4510. {
  4511. "name": "mark_fullmer",
  4512. "homepage": "https://www.drupal.org/user/2612816"
  4513. }
  4514. ],
  4515. "description": "Linkit - Enriched linking experience",
  4516. "homepage": "http://drupal.org/project/linkit",
  4517. "support": {
  4518. "source": "http://cgit.drupalcode.org/linkit",
  4519. "issues": "http://drupal.org/project/linkit"
  4520. }
  4521. },
  4522. {
  4523. "name": "drupal/login_emailusername",
  4524. "version": "2.1.0",
  4525. "source": {
  4526. "type": "git",
  4527. "url": "https://git.drupalcode.org/project/login_emailusername.git",
  4528. "reference": "2.1.0"
  4529. },
  4530. "dist": {
  4531. "type": "zip",
  4532. "url": "https://ftp.drupal.org/files/projects/login_emailusername-2.1.0.zip",
  4533. "reference": "2.1.0",
  4534. "shasum": "5a3858d06e7d67110a6cd8eda38cbfeb350f115c"
  4535. },
  4536. "require": {
  4537. "drupal/core": "^8.8 || ^9 || ^10"
  4538. },
  4539. "type": "drupal-module",
  4540. "extra": {
  4541. "drupal": {
  4542. "version": "2.1.0",
  4543. "datestamp": "1677072401",
  4544. "security-coverage": {
  4545. "status": "covered",
  4546. "message": "Covered by Drupal's security advisory policy"
  4547. }
  4548. },
  4549. "branch-alias": {
  4550. "dev-8.x-1.x": "8.1.x-dev"
  4551. }
  4552. },
  4553. "notification-url": "https://packages.drupal.org/8/downloads",
  4554. "license": [
  4555. "GPL-2.0-or-later"
  4556. ],
  4557. "authors": [
  4558. {
  4559. "name": "See contributors",
  4560. "homepage": "https://www.drupal.org/node/2820429/committers",
  4561. "role": "contributor"
  4562. },
  4563. {
  4564. "name": "rjjakes",
  4565. "homepage": "https://www.drupal.org/user/3457245"
  4566. },
  4567. {
  4568. "name": "VladimirAus",
  4569. "homepage": "https://www.drupal.org/user/673120"
  4570. }
  4571. ],
  4572. "description": "Login with the email as username.",
  4573. "homepage": "https://drupal.org/project/login_emailusername",
  4574. "support": {
  4575. "source": "https://git.drupalcode.org/project/login_emailusername",
  4576. "issues": "https://drupal.org/project/issues/login_emailusername"
  4577. }
  4578. },
  4579. {
  4580. "name": "drupal/maillog",
  4581. "version": "1.0.0-beta1",
  4582. "source": {
  4583. "type": "git",
  4584. "url": "https://git.drupalcode.org/project/maillog.git",
  4585. "reference": "8.x-1.0-beta1"
  4586. },
  4587. "dist": {
  4588. "type": "zip",
  4589. "url": "https://ftp.drupal.org/files/projects/maillog-8.x-1.0-beta1.zip",
  4590. "reference": "8.x-1.0-beta1",
  4591. "shasum": "0af5fe6fcdc8053bd0a61561a2c69e69c2b1faf2"
  4592. },
  4593. "require": {
  4594. "drupal/core": "^8 || ^9"
  4595. },
  4596. "type": "drupal-module",
  4597. "extra": {
  4598. "drupal": {
  4599. "version": "8.x-1.0-beta1",
  4600. "datestamp": "1600800168",
  4601. "security-coverage": {
  4602. "status": "not-covered",
  4603. "message": "Beta releases are not covered by Drupal security advisories."
  4604. }
  4605. }
  4606. },
  4607. "notification-url": "https://packages.drupal.org/8/downloads",
  4608. "license": [
  4609. "GPL-2.0-or-later"
  4610. ],
  4611. "authors": [
  4612. {
  4613. "name": "berdir",
  4614. "homepage": "https://www.drupal.org/user/214652"
  4615. },
  4616. {
  4617. "name": "damienmckenna",
  4618. "homepage": "https://www.drupal.org/user/108450"
  4619. },
  4620. {
  4621. "name": "miro_dietiker",
  4622. "homepage": "https://www.drupal.org/user/227761"
  4623. },
  4624. {
  4625. "name": "pluess",
  4626. "homepage": "https://www.drupal.org/user/84659"
  4627. }
  4628. ],
  4629. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4630. "homepage": "https://www.drupal.org/project/maillog",
  4631. "support": {
  4632. "source": "https://git.drupalcode.org/project/maillog"
  4633. }
  4634. },
  4635. {
  4636. "name": "drupal/menu_admin_per_menu",
  4637. "version": "1.1.0",
  4638. "source": {
  4639. "type": "git",
  4640. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4641. "reference": "8.x-1.1"
  4642. },
  4643. "dist": {
  4644. "type": "zip",
  4645. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.1.zip",
  4646. "reference": "8.x-1.1",
  4647. "shasum": "a9522b06654faa2d9bd23f704c93e1093f3ff6ec"
  4648. },
  4649. "require": {
  4650. "drupal/core": "^8 || ^9"
  4651. },
  4652. "type": "drupal-module",
  4653. "extra": {
  4654. "drupal": {
  4655. "version": "8.x-1.1",
  4656. "datestamp": "1591098397",
  4657. "security-coverage": {
  4658. "status": "covered",
  4659. "message": "Covered by Drupal's security advisory policy"
  4660. }
  4661. }
  4662. },
  4663. "notification-url": "https://packages.drupal.org/8/downloads",
  4664. "license": [
  4665. "GPL-2.0-or-later"
  4666. ],
  4667. "authors": [
  4668. {
  4669. "name": "anrikun",
  4670. "homepage": "https://www.drupal.org/user/410199"
  4671. },
  4672. {
  4673. "name": "jeroent",
  4674. "homepage": "https://www.drupal.org/user/2228934"
  4675. },
  4676. {
  4677. "name": "jonas139",
  4678. "homepage": "https://www.drupal.org/user/2873401"
  4679. },
  4680. {
  4681. "name": "mkdok",
  4682. "homepage": "https://www.drupal.org/user/3308753"
  4683. }
  4684. ],
  4685. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4686. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4687. "support": {
  4688. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  4689. }
  4690. },
  4691. {
  4692. "name": "drupal/metatag",
  4693. "version": "1.16.0",
  4694. "source": {
  4695. "type": "git",
  4696. "url": "https://git.drupalcode.org/project/metatag.git",
  4697. "reference": "8.x-1.16"
  4698. },
  4699. "dist": {
  4700. "type": "zip",
  4701. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.16.zip",
  4702. "reference": "8.x-1.16",
  4703. "shasum": "1c0028f4ff4583dc6601035657dd631c351b290c"
  4704. },
  4705. "require": {
  4706. "drupal/core": "^8 || ^9",
  4707. "drupal/token": "^1.0"
  4708. },
  4709. "require-dev": {
  4710. "drupal/devel": "^4.0",
  4711. "drupal/metatag_dc": "*",
  4712. "drupal/metatag_open_graph": "*",
  4713. "drupal/page_manager": "4.x-dev",
  4714. "drupal/panelizer": "4.x-dev",
  4715. "drupal/redirect": "1.x-dev"
  4716. },
  4717. "type": "drupal-module",
  4718. "extra": {
  4719. "drupal": {
  4720. "version": "8.x-1.16",
  4721. "datestamp": "1615820867",
  4722. "security-coverage": {
  4723. "status": "covered",
  4724. "message": "Covered by Drupal's security advisory policy"
  4725. }
  4726. }
  4727. },
  4728. "notification-url": "https://packages.drupal.org/8/downloads",
  4729. "license": [
  4730. "GPL-2.0-or-later"
  4731. ],
  4732. "authors": [
  4733. {
  4734. "name": "See contributors",
  4735. "homepage": "https://www.drupal.org/node/640498/committers",
  4736. "role": "Developer"
  4737. },
  4738. {
  4739. "name": "dave reid",
  4740. "homepage": "https://www.drupal.org/user/53892"
  4741. }
  4742. ],
  4743. "description": "Manage meta tags for all entities.",
  4744. "homepage": "https://www.drupal.org/project/metatag",
  4745. "keywords": [
  4746. "Drupal",
  4747. "seo"
  4748. ],
  4749. "support": {
  4750. "source": "https://git.drupalcode.org/project/metatag",
  4751. "issues": "https://www.drupal.org/project/issues/metatag",
  4752. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  4753. }
  4754. },
  4755. {
  4756. "name": "drupal/pathauto",
  4757. "version": "1.10.0",
  4758. "source": {
  4759. "type": "git",
  4760. "url": "https://git.drupalcode.org/project/pathauto.git",
  4761. "reference": "8.x-1.10"
  4762. },
  4763. "dist": {
  4764. "type": "zip",
  4765. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.10.zip",
  4766. "reference": "8.x-1.10",
  4767. "shasum": "f49d5fbcd7a2c1b4de1da07194fe01d9012237ec"
  4768. },
  4769. "require": {
  4770. "drupal/core": "^8.8 || ^9",
  4771. "drupal/ctools": "*",
  4772. "drupal/token": "*"
  4773. },
  4774. "suggest": {
  4775. "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."
  4776. },
  4777. "type": "drupal-module",
  4778. "extra": {
  4779. "drupal": {
  4780. "version": "8.x-1.10",
  4781. "datestamp": "1650806739",
  4782. "security-coverage": {
  4783. "status": "covered",
  4784. "message": "Covered by Drupal's security advisory policy"
  4785. }
  4786. },
  4787. "drush": {
  4788. "services": {
  4789. "drush.services.yml": "^9 || ^10"
  4790. }
  4791. }
  4792. },
  4793. "notification-url": "https://packages.drupal.org/8/downloads",
  4794. "license": [
  4795. "GPL-2.0-or-later"
  4796. ],
  4797. "authors": [
  4798. {
  4799. "name": "Berdir",
  4800. "homepage": "https://www.drupal.org/user/214652"
  4801. },
  4802. {
  4803. "name": "Dave Reid",
  4804. "homepage": "https://www.drupal.org/user/53892"
  4805. },
  4806. {
  4807. "name": "Freso",
  4808. "homepage": "https://www.drupal.org/user/27504"
  4809. },
  4810. {
  4811. "name": "greggles",
  4812. "homepage": "https://www.drupal.org/user/36762"
  4813. }
  4814. ],
  4815. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4816. "homepage": "https://www.drupal.org/project/pathauto",
  4817. "support": {
  4818. "source": "https://cgit.drupalcode.org/pathauto",
  4819. "issues": "https://www.drupal.org/project/issues/pathauto",
  4820. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  4821. }
  4822. },
  4823. {
  4824. "name": "drupal/profile",
  4825. "version": "1.4.0",
  4826. "source": {
  4827. "type": "git",
  4828. "url": "https://git.drupalcode.org/project/profile.git",
  4829. "reference": "8.x-1.4"
  4830. },
  4831. "dist": {
  4832. "type": "zip",
  4833. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.4.zip",
  4834. "reference": "8.x-1.4",
  4835. "shasum": "253fd577c3b791c93747bb910ad2ae8e67d71eed"
  4836. },
  4837. "require": {
  4838. "drupal/core": "^8.9 || ^9 || ^10",
  4839. "drupal/entity": "^1.0-rc2"
  4840. },
  4841. "require-dev": {
  4842. "drupal/token": "^1.7"
  4843. },
  4844. "type": "drupal-module",
  4845. "extra": {
  4846. "drupal": {
  4847. "version": "8.x-1.4",
  4848. "datestamp": "1652430373",
  4849. "security-coverage": {
  4850. "status": "covered",
  4851. "message": "Covered by Drupal's security advisory policy"
  4852. }
  4853. }
  4854. },
  4855. "notification-url": "https://packages.drupal.org/8/downloads",
  4856. "license": [
  4857. "GPL-2.0-or-later"
  4858. ],
  4859. "authors": [
  4860. {
  4861. "name": "bojanz",
  4862. "homepage": "https://www.drupal.org/user/86106"
  4863. },
  4864. {
  4865. "name": "daggerhart",
  4866. "homepage": "https://www.drupal.org/user/167806"
  4867. },
  4868. {
  4869. "name": "fago",
  4870. "homepage": "https://www.drupal.org/user/16747"
  4871. },
  4872. {
  4873. "name": "jsacksick",
  4874. "homepage": "https://www.drupal.org/user/972218"
  4875. },
  4876. {
  4877. "name": "mglaman",
  4878. "homepage": "https://www.drupal.org/user/2416470"
  4879. },
  4880. {
  4881. "name": "pcambra",
  4882. "homepage": "https://www.drupal.org/user/122101"
  4883. }
  4884. ],
  4885. "description": "Provides configurable user profiles.",
  4886. "homepage": "http://drupal.org/project/profile",
  4887. "support": {
  4888. "source": "https://git.drupalcode.org/project/profile"
  4889. }
  4890. },
  4891. {
  4892. "name": "drupal/redirect",
  4893. "version": "1.7.0",
  4894. "source": {
  4895. "type": "git",
  4896. "url": "https://git.drupalcode.org/project/redirect.git",
  4897. "reference": "8.x-1.7"
  4898. },
  4899. "dist": {
  4900. "type": "zip",
  4901. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.7.zip",
  4902. "reference": "8.x-1.7",
  4903. "shasum": "013b2541a5ef0cf423a3caa1ae89cc5866504877"
  4904. },
  4905. "require": {
  4906. "drupal/core": "^8.8 || ^9"
  4907. },
  4908. "type": "drupal-module",
  4909. "extra": {
  4910. "drupal": {
  4911. "version": "8.x-1.7",
  4912. "datestamp": "1639380488",
  4913. "security-coverage": {
  4914. "status": "covered",
  4915. "message": "Covered by Drupal's security advisory policy"
  4916. }
  4917. }
  4918. },
  4919. "notification-url": "https://packages.drupal.org/8/downloads",
  4920. "license": [
  4921. "GPL-2.0-or-later"
  4922. ],
  4923. "authors": [
  4924. {
  4925. "name": "Berdir",
  4926. "homepage": "https://www.drupal.org/user/214652"
  4927. },
  4928. {
  4929. "name": "dave reid",
  4930. "homepage": "https://www.drupal.org/user/53892"
  4931. },
  4932. {
  4933. "name": "Kristen Pol",
  4934. "homepage": "https://www.drupal.org/user/8389"
  4935. },
  4936. {
  4937. "name": "pifagor",
  4938. "homepage": "https://www.drupal.org/user/2375692"
  4939. }
  4940. ],
  4941. "description": "Allows users to redirect from old URLs to new URLs.",
  4942. "homepage": "https://www.drupal.org/project/redirect",
  4943. "support": {
  4944. "source": "https://git.drupalcode.org/project/redirect"
  4945. }
  4946. },
  4947. {
  4948. "name": "drupal/redis",
  4949. "version": "1.5.0",
  4950. "source": {
  4951. "type": "git",
  4952. "url": "https://git.drupalcode.org/project/redis.git",
  4953. "reference": "8.x-1.5"
  4954. },
  4955. "dist": {
  4956. "type": "zip",
  4957. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.5.zip",
  4958. "reference": "8.x-1.5",
  4959. "shasum": "4283333dc2bf405045765b83ca662acc409a6543"
  4960. },
  4961. "require": {
  4962. "drupal/core": "^8.8 || ^9"
  4963. },
  4964. "suggest": {
  4965. "predis/predis": "^1.1.1"
  4966. },
  4967. "type": "drupal-module",
  4968. "extra": {
  4969. "drupal": {
  4970. "version": "8.x-1.5",
  4971. "datestamp": "1609972488",
  4972. "security-coverage": {
  4973. "status": "covered",
  4974. "message": "Covered by Drupal's security advisory policy"
  4975. }
  4976. }
  4977. },
  4978. "autoload": {
  4979. "psr-4": {
  4980. "Drupal\\redis\\": "src"
  4981. }
  4982. },
  4983. "notification-url": "https://packages.drupal.org/8/downloads",
  4984. "license": [
  4985. "GPL-2.0-or-later"
  4986. ],
  4987. "authors": [
  4988. {
  4989. "name": "berdir",
  4990. "homepage": "https://www.drupal.org/user/214652"
  4991. },
  4992. {
  4993. "name": "greg.1.anderson",
  4994. "homepage": "https://www.drupal.org/user/438598"
  4995. },
  4996. {
  4997. "name": "kporras07",
  4998. "homepage": "https://www.drupal.org/user/1349780"
  4999. },
  5000. {
  5001. "name": "pounard",
  5002. "homepage": "https://www.drupal.org/user/240164"
  5003. }
  5004. ],
  5005. "description": "Integration of Drupal with the Redis key-value store.",
  5006. "homepage": "https://www.drupal.org/project/redis",
  5007. "support": {
  5008. "source": "https://git.drupalcode.org/project/redis"
  5009. }
  5010. },
  5011. {
  5012. "name": "drupal/restui",
  5013. "version": "1.21.0",
  5014. "source": {
  5015. "type": "git",
  5016. "url": "https://git.drupalcode.org/project/restui.git",
  5017. "reference": "8.x-1.21"
  5018. },
  5019. "dist": {
  5020. "type": "zip",
  5021. "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.21.zip",
  5022. "reference": "8.x-1.21",
  5023. "shasum": "2a67dc2c1953dced0bddaff25e5c60784ee0178c"
  5024. },
  5025. "require": {
  5026. "drupal/core": "^8.7.7 || ^9 || ^10"
  5027. },
  5028. "type": "drupal-module",
  5029. "extra": {
  5030. "drupal": {
  5031. "version": "8.x-1.21",
  5032. "datestamp": "1659086914",
  5033. "security-coverage": {
  5034. "status": "covered",
  5035. "message": "Covered by Drupal's security advisory policy"
  5036. }
  5037. }
  5038. },
  5039. "notification-url": "https://packages.drupal.org/8/downloads",
  5040. "license": [
  5041. "GPL-2.0-or-later"
  5042. ],
  5043. "authors": [
  5044. {
  5045. "name": "-enzo-",
  5046. "homepage": "https://www.drupal.org/user/294937"
  5047. },
  5048. {
  5049. "name": "clemens.tolboom",
  5050. "homepage": "https://www.drupal.org/user/125814"
  5051. },
  5052. {
  5053. "name": "juampynr",
  5054. "homepage": "https://www.drupal.org/user/682736"
  5055. },
  5056. {
  5057. "name": "kamkejj",
  5058. "homepage": "https://www.drupal.org/user/81043"
  5059. },
  5060. {
  5061. "name": "vipin.mittal18",
  5062. "homepage": "https://www.drupal.org/user/319716"
  5063. }
  5064. ],
  5065. "description": "Provides a user interface to manage REST resources.",
  5066. "homepage": "https://www.drupal.org/project/restui",
  5067. "support": {
  5068. "source": "https://git.drupalcode.org/project/restui"
  5069. }
  5070. },
  5071. {
  5072. "name": "drupal/search_api",
  5073. "version": "1.23.0",
  5074. "source": {
  5075. "type": "git",
  5076. "url": "https://git.drupalcode.org/project/search_api.git",
  5077. "reference": "8.x-1.23"
  5078. },
  5079. "dist": {
  5080. "type": "zip",
  5081. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.23.zip",
  5082. "reference": "8.x-1.23",
  5083. "shasum": "7de5425bba5b8daa37e98d47b677459dfb1abbe7"
  5084. },
  5085. "require": {
  5086. "drupal/core": "^8.8 || ^9"
  5087. },
  5088. "conflict": {
  5089. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  5090. },
  5091. "require-dev": {
  5092. "drupal/language_fallback_fix": "@dev",
  5093. "drupal/search_api_autocomplete": "@dev",
  5094. "drupal/search_api_db": "*"
  5095. },
  5096. "suggest": {
  5097. "drupal/facets": "Adds the ability to create faceted searches.",
  5098. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  5099. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  5100. },
  5101. "type": "drupal-module",
  5102. "extra": {
  5103. "drupal": {
  5104. "version": "8.x-1.23",
  5105. "datestamp": "1642935837",
  5106. "security-coverage": {
  5107. "status": "covered",
  5108. "message": "Covered by Drupal's security advisory policy"
  5109. }
  5110. },
  5111. "drush": {
  5112. "services": {
  5113. "drush.services.yml": "^9 || ^10"
  5114. }
  5115. }
  5116. },
  5117. "notification-url": "https://packages.drupal.org/8/downloads",
  5118. "license": [
  5119. "GPL-2.0-or-later"
  5120. ],
  5121. "authors": [
  5122. {
  5123. "name": "Thomas Seidl",
  5124. "homepage": "https://www.drupal.org/u/drunken-monkey"
  5125. },
  5126. {
  5127. "name": "Nick Veenhof",
  5128. "homepage": "https://www.drupal.org/u/nick_vh"
  5129. },
  5130. {
  5131. "name": "See other contributors",
  5132. "homepage": "https://www.drupal.org/node/790418/committers"
  5133. }
  5134. ],
  5135. "description": "Provides a generic framework for modules offering search capabilities.",
  5136. "homepage": "https://www.drupal.org/project/search_api",
  5137. "support": {
  5138. "source": "https://git.drupalcode.org/project/search_api",
  5139. "issues": "https://www.drupal.org/project/issues/search_api",
  5140. "irc": "irc://irc.freenode.org/drupal-search-api"
  5141. }
  5142. },
  5143. {
  5144. "name": "drupal/simple_sitemap",
  5145. "version": "3.11.0",
  5146. "source": {
  5147. "type": "git",
  5148. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  5149. "reference": "8.x-3.11"
  5150. },
  5151. "dist": {
  5152. "type": "zip",
  5153. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-8.x-3.11.zip",
  5154. "reference": "8.x-3.11",
  5155. "shasum": "5fdd4ed5af5e37e3c707e401d094a179f52e7711"
  5156. },
  5157. "require": {
  5158. "drupal/core": "^8 || ^9",
  5159. "ext-xmlwriter": "*"
  5160. },
  5161. "type": "drupal-module",
  5162. "extra": {
  5163. "drupal": {
  5164. "version": "8.x-3.11",
  5165. "datestamp": "1658781789",
  5166. "security-coverage": {
  5167. "status": "covered",
  5168. "message": "Covered by Drupal's security advisory policy"
  5169. }
  5170. },
  5171. "drush": {
  5172. "services": {
  5173. "drush.services.yml": "^9 || ^10"
  5174. }
  5175. }
  5176. },
  5177. "notification-url": "https://packages.drupal.org/8/downloads",
  5178. "license": [
  5179. "GPL-2.0-or-later"
  5180. ],
  5181. "authors": [
  5182. {
  5183. "name": "Pawel Ginalski (gbyte)",
  5184. "homepage": "https://www.drupal.org/u/gbyte",
  5185. "email": "contact@gbyte.dev",
  5186. "role": "Maintainer"
  5187. },
  5188. {
  5189. "name": "walkingdexter",
  5190. "homepage": "https://www.drupal.org/user/3251330"
  5191. }
  5192. ],
  5193. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  5194. "homepage": "https://drupal.org/project/simple_sitemap",
  5195. "support": {
  5196. "source": "https://cgit.drupalcode.org/simple_sitemap",
  5197. "issues": "https://drupal.org/project/issues/simple_sitemap",
  5198. "irc": "irc://irc.freenode.org/drupal-contribute"
  5199. }
  5200. },
  5201. {
  5202. "name": "drupal/synonyms",
  5203. "version": "1.0.0-alpha3",
  5204. "source": {
  5205. "type": "git",
  5206. "url": "https://git.drupalcode.org/project/synonyms.git",
  5207. "reference": "8.x-1.0-alpha3"
  5208. },
  5209. "dist": {
  5210. "type": "zip",
  5211. "url": "https://ftp.drupal.org/files/projects/synonyms-8.x-1.0-alpha3.zip",
  5212. "reference": "8.x-1.0-alpha3",
  5213. "shasum": "0306a9dfb279c0594246b49658309c1686e984a9"
  5214. },
  5215. "require": {
  5216. "drupal/core": "^8 || ^9"
  5217. },
  5218. "type": "drupal-module",
  5219. "extra": {
  5220. "drupal": {
  5221. "version": "8.x-1.0-alpha3",
  5222. "datestamp": "1609623594",
  5223. "security-coverage": {
  5224. "status": "not-covered",
  5225. "message": "Alpha releases are not covered by Drupal security advisories."
  5226. }
  5227. }
  5228. },
  5229. "notification-url": "https://packages.drupal.org/8/downloads",
  5230. "license": [
  5231. "GPL-2.0-or-later"
  5232. ],
  5233. "authors": [
  5234. {
  5235. "name": "bojanz",
  5236. "homepage": "https://www.drupal.org/user/86106"
  5237. },
  5238. {
  5239. "name": "bucefal91",
  5240. "homepage": "https://www.drupal.org/user/504128"
  5241. },
  5242. {
  5243. "name": "devad",
  5244. "homepage": "https://www.drupal.org/user/2268520"
  5245. },
  5246. {
  5247. "name": "Zen",
  5248. "homepage": "https://www.drupal.org/user/21209"
  5249. }
  5250. ],
  5251. "description": "Provides synonyms feature for content entities.",
  5252. "homepage": "https://www.drupal.org/project/synonyms",
  5253. "support": {
  5254. "source": "https://git.drupalcode.org/project/synonyms"
  5255. }
  5256. },
  5257. {
  5258. "name": "drupal/token",
  5259. "version": "1.10.0",
  5260. "source": {
  5261. "type": "git",
  5262. "url": "https://git.drupalcode.org/project/token.git",
  5263. "reference": "8.x-1.10"
  5264. },
  5265. "dist": {
  5266. "type": "zip",
  5267. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.10.zip",
  5268. "reference": "8.x-1.10",
  5269. "shasum": "8b81224ab0420221b292e8d3b66d0da726317400"
  5270. },
  5271. "require": {
  5272. "drupal/core": "^8.8 || ^9"
  5273. },
  5274. "type": "drupal-module",
  5275. "extra": {
  5276. "drupal": {
  5277. "version": "8.x-1.10",
  5278. "datestamp": "1638619775",
  5279. "security-coverage": {
  5280. "status": "covered",
  5281. "message": "Covered by Drupal's security advisory policy"
  5282. }
  5283. },
  5284. "drush": {
  5285. "services": {
  5286. "drush.services.yml": "^9 || ^10"
  5287. }
  5288. }
  5289. },
  5290. "notification-url": "https://packages.drupal.org/8/downloads",
  5291. "license": [
  5292. "GPL-2.0-or-later"
  5293. ],
  5294. "authors": [
  5295. {
  5296. "name": "Berdir",
  5297. "homepage": "https://www.drupal.org/user/214652"
  5298. },
  5299. {
  5300. "name": "Dave Reid",
  5301. "homepage": "https://www.drupal.org/user/53892"
  5302. },
  5303. {
  5304. "name": "eaton",
  5305. "homepage": "https://www.drupal.org/user/16496"
  5306. },
  5307. {
  5308. "name": "fago",
  5309. "homepage": "https://www.drupal.org/user/16747"
  5310. },
  5311. {
  5312. "name": "greggles",
  5313. "homepage": "https://www.drupal.org/user/36762"
  5314. },
  5315. {
  5316. "name": "mikeryan",
  5317. "homepage": "https://www.drupal.org/user/4420"
  5318. }
  5319. ],
  5320. "description": "Provides a user interface for the Token API, some missing core tokens.",
  5321. "homepage": "https://www.drupal.org/project/token",
  5322. "support": {
  5323. "source": "https://git.drupalcode.org/project/token"
  5324. }
  5325. },
  5326. {
  5327. "name": "drupal/translation_views",
  5328. "version": "1.0.0-alpha11",
  5329. "source": {
  5330. "type": "git",
  5331. "url": "https://git.drupalcode.org/project/translation_views.git",
  5332. "reference": "8.x-1.0-alpha11"
  5333. },
  5334. "dist": {
  5335. "type": "zip",
  5336. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  5337. "reference": "8.x-1.0-alpha11",
  5338. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  5339. },
  5340. "require": {
  5341. "drupal/core": "^8.8 || ^9 || ^10"
  5342. },
  5343. "require-dev": {
  5344. "drupal/translators_content": "^1.0@alpha"
  5345. },
  5346. "type": "drupal-module",
  5347. "extra": {
  5348. "drupal": {
  5349. "version": "8.x-1.0-alpha11",
  5350. "datestamp": "1679660668",
  5351. "security-coverage": {
  5352. "status": "not-covered",
  5353. "message": "Project has not opted into security advisory coverage!"
  5354. }
  5355. }
  5356. },
  5357. "notification-url": "https://packages.drupal.org/8/downloads",
  5358. "license": [
  5359. "GPL-2.0-or-later"
  5360. ],
  5361. "authors": [
  5362. {
  5363. "name": "matsbla",
  5364. "homepage": "https://www.drupal.org/user/2325394"
  5365. },
  5366. {
  5367. "name": "vlad.dancer",
  5368. "homepage": "https://www.drupal.org/user/903844"
  5369. }
  5370. ],
  5371. "description": "Create customized lists and queries of translations from your database.",
  5372. "homepage": "https://www.drupal.org/project/translation_views",
  5373. "support": {
  5374. "source": "https://git.drupalcode.org/project/translation_views"
  5375. }
  5376. },
  5377. {
  5378. "name": "drupal/upgrade_status",
  5379. "version": "3.19.0",
  5380. "source": {
  5381. "type": "git",
  5382. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  5383. "reference": "8.x-3.19"
  5384. },
  5385. "dist": {
  5386. "type": "zip",
  5387. "url": "https://ftp.drupal.org/files/projects/upgrade_status-8.x-3.19.zip",
  5388. "reference": "8.x-3.19",
  5389. "shasum": "e155b34b80f2782778b841d72639bd0ac8b923f9"
  5390. },
  5391. "require": {
  5392. "drupal/core": "^8 || ^9",
  5393. "mathieuviossat/arraytotexttable": "~1.0.0",
  5394. "mglaman/phpstan-drupal": "^1.0.0",
  5395. "nikic/php-parser": "^4.0.0",
  5396. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  5397. "symfony/process": "^3.4|^4.0|^5.0|^6.0",
  5398. "webflo/drupal-finder": "^1.2"
  5399. },
  5400. "type": "drupal-module",
  5401. "extra": {
  5402. "drupal": {
  5403. "version": "8.x-3.19",
  5404. "datestamp": "1678815320",
  5405. "security-coverage": {
  5406. "status": "covered",
  5407. "message": "Covered by Drupal's security advisory policy"
  5408. }
  5409. },
  5410. "drush": {
  5411. "services": {
  5412. "drush.services.yml": "^9 || ^10"
  5413. }
  5414. }
  5415. },
  5416. "notification-url": "https://packages.drupal.org/8/downloads",
  5417. "license": [
  5418. "GPL-2.0-or-later"
  5419. ],
  5420. "authors": [
  5421. {
  5422. "name": "Gábor Hojtsy",
  5423. "homepage": "https://www.drupal.org/user/4166"
  5424. }
  5425. ],
  5426. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  5427. "homepage": "http://drupal.org/project/upgrade_status",
  5428. "support": {
  5429. "source": "https://git.drupalcode.org/project/upgrade_status"
  5430. }
  5431. },
  5432. {
  5433. "name": "drupal/url_to_video_filter",
  5434. "version": "2.0.0",
  5435. "source": {
  5436. "type": "git",
  5437. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  5438. "reference": "2.0.0"
  5439. },
  5440. "dist": {
  5441. "type": "zip",
  5442. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-2.0.0.zip",
  5443. "reference": "2.0.0",
  5444. "shasum": "ac728919cc220846d8ef2ce61dbe1b94fbbf479b"
  5445. },
  5446. "require": {
  5447. "drupal/core": "^8 || ^9"
  5448. },
  5449. "type": "drupal-module",
  5450. "extra": {
  5451. "drupal": {
  5452. "version": "2.0.0",
  5453. "datestamp": "1607298389",
  5454. "security-coverage": {
  5455. "status": "covered",
  5456. "message": "Covered by Drupal's security advisory policy"
  5457. }
  5458. }
  5459. },
  5460. "notification-url": "https://packages.drupal.org/8/downloads",
  5461. "license": [
  5462. "GPL-2.0-or-later"
  5463. ],
  5464. "authors": [
  5465. {
  5466. "name": "Jaypan",
  5467. "homepage": "https://www.drupal.org/user/324696"
  5468. }
  5469. ],
  5470. "description": "Text filter to convert URLs to embedded videos",
  5471. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  5472. "support": {
  5473. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  5474. }
  5475. },
  5476. {
  5477. "name": "drupal/views_bulk_edit",
  5478. "version": "2.7.0",
  5479. "source": {
  5480. "type": "git",
  5481. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5482. "reference": "8.x-2.7"
  5483. },
  5484. "dist": {
  5485. "type": "zip",
  5486. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.7.zip",
  5487. "reference": "8.x-2.7",
  5488. "shasum": "148457820e7ecd78942326c9c799147ed440f2a6"
  5489. },
  5490. "require": {
  5491. "drupal/core": "^8 || ^9"
  5492. },
  5493. "require-dev": {
  5494. "drupal/views_bulk_operations": "~3.0"
  5495. },
  5496. "suggest": {
  5497. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  5498. },
  5499. "type": "drupal-module",
  5500. "extra": {
  5501. "drupal": {
  5502. "version": "8.x-2.7",
  5503. "datestamp": "1664355764",
  5504. "security-coverage": {
  5505. "status": "covered",
  5506. "message": "Covered by Drupal's security advisory policy"
  5507. }
  5508. }
  5509. },
  5510. "notification-url": "https://packages.drupal.org/8/downloads",
  5511. "license": [
  5512. "GPL-2.0+"
  5513. ],
  5514. "authors": [
  5515. {
  5516. "name": "Marcin Grabias",
  5517. "homepage": "https://www.drupal.org/u/graber"
  5518. },
  5519. {
  5520. "name": "benjy",
  5521. "homepage": "https://www.drupal.org/user/1852732"
  5522. },
  5523. {
  5524. "name": "graber",
  5525. "homepage": "https://www.drupal.org/user/1599440"
  5526. },
  5527. {
  5528. "name": "grevil",
  5529. "homepage": "https://www.drupal.org/user/3668491"
  5530. },
  5531. {
  5532. "name": "joseph.olstad",
  5533. "homepage": "https://www.drupal.org/user/1321830"
  5534. }
  5535. ],
  5536. "description": "Allows bulk edition of entity field values.",
  5537. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5538. "support": {
  5539. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5540. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5541. }
  5542. },
  5543. {
  5544. "name": "drupal/views_bulk_operations",
  5545. "version": "3.13.0",
  5546. "source": {
  5547. "type": "git",
  5548. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5549. "reference": "8.x-3.13"
  5550. },
  5551. "dist": {
  5552. "type": "zip",
  5553. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.13.zip",
  5554. "reference": "8.x-3.13",
  5555. "shasum": "70583d08b91be3b5e008f571589425c2176eb73b"
  5556. },
  5557. "require": {
  5558. "drupal/core": "^8.8 || ^9"
  5559. },
  5560. "require-dev": {
  5561. "drush/drush": "^10"
  5562. },
  5563. "suggest": {
  5564. "drush/drush": "^9 || ^10"
  5565. },
  5566. "type": "drupal-module",
  5567. "extra": {
  5568. "drupal": {
  5569. "version": "8.x-3.13",
  5570. "datestamp": "1619697066",
  5571. "security-coverage": {
  5572. "status": "covered",
  5573. "message": "Covered by Drupal's security advisory policy"
  5574. }
  5575. },
  5576. "drush": {
  5577. "services": {
  5578. "drush.services.yml": "^9 || ^10"
  5579. }
  5580. }
  5581. },
  5582. "notification-url": "https://packages.drupal.org/8/downloads",
  5583. "license": [
  5584. "GPL-2.0-or-later"
  5585. ],
  5586. "authors": [
  5587. {
  5588. "name": "Marcin Grabias",
  5589. "homepage": "https://www.drupal.org/u/graber"
  5590. },
  5591. {
  5592. "name": "Graber",
  5593. "homepage": "https://www.drupal.org/user/1599440"
  5594. },
  5595. {
  5596. "name": "joelpittet",
  5597. "homepage": "https://www.drupal.org/user/160302"
  5598. }
  5599. ],
  5600. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5601. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5602. "support": {
  5603. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  5604. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5605. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5606. }
  5607. },
  5608. {
  5609. "name": "drupal/workflow",
  5610. "version": "1.6.0",
  5611. "source": {
  5612. "type": "git",
  5613. "url": "https://git.drupalcode.org/project/workflow.git",
  5614. "reference": "8.x-1.6"
  5615. },
  5616. "dist": {
  5617. "type": "zip",
  5618. "url": "https://ftp.drupal.org/files/projects/workflow-8.x-1.6.zip",
  5619. "reference": "8.x-1.6",
  5620. "shasum": "a798b9e85cd267d7e9a7d44b9e883ecbcdad1406"
  5621. },
  5622. "require": {
  5623. "drupal/core": "^8.8 || ^9"
  5624. },
  5625. "type": "drupal-module",
  5626. "extra": {
  5627. "drupal": {
  5628. "version": "8.x-1.6",
  5629. "datestamp": "1671818949",
  5630. "security-coverage": {
  5631. "status": "covered",
  5632. "message": "Covered by Drupal's security advisory policy"
  5633. }
  5634. }
  5635. },
  5636. "notification-url": "https://packages.drupal.org/8/downloads",
  5637. "license": [
  5638. "GPL-2.0-or-later"
  5639. ],
  5640. "authors": [
  5641. {
  5642. "name": "Bastlynn",
  5643. "homepage": "https://www.drupal.org/user/275249"
  5644. },
  5645. {
  5646. "name": "eaton",
  5647. "homepage": "https://www.drupal.org/user/16496"
  5648. },
  5649. {
  5650. "name": "Heine",
  5651. "homepage": "https://www.drupal.org/user/17943"
  5652. },
  5653. {
  5654. "name": "JacobSingh",
  5655. "homepage": "https://www.drupal.org/user/68912"
  5656. },
  5657. {
  5658. "name": "johnv",
  5659. "homepage": "https://www.drupal.org/user/591042"
  5660. },
  5661. {
  5662. "name": "jvandyk",
  5663. "homepage": "https://www.drupal.org/user/2375"
  5664. },
  5665. {
  5666. "name": "mfredrickson",
  5667. "homepage": "https://www.drupal.org/user/31994"
  5668. },
  5669. {
  5670. "name": "NancyDru",
  5671. "homepage": "https://www.drupal.org/user/101412"
  5672. },
  5673. {
  5674. "name": "q0rban",
  5675. "homepage": "https://www.drupal.org/user/31022"
  5676. }
  5677. ],
  5678. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5679. "homepage": "https://www.drupal.org/project/workflow",
  5680. "support": {
  5681. "source": "https://git.drupalcode.org/project/workflow"
  5682. }
  5683. },
  5684. {
  5685. "name": "drush/drush",
  5686. "version": "10.6.2",
  5687. "source": {
  5688. "type": "git",
  5689. "url": "https://github.com/drush-ops/drush.git",
  5690. "reference": "0a570a16ec63259eb71195aba5feab532318b337"
  5691. },
  5692. "dist": {
  5693. "type": "zip",
  5694. "url": "https://api.github.com/repos/drush-ops/drush/zipball/0a570a16ec63259eb71195aba5feab532318b337",
  5695. "reference": "0a570a16ec63259eb71195aba5feab532318b337",
  5696. "shasum": ""
  5697. },
  5698. "require": {
  5699. "chi-teck/drupal-code-generator": "^1.32.1",
  5700. "composer/semver": "^1.4 || ^3",
  5701. "consolidation/config": "^1.2",
  5702. "consolidation/filter-via-dot-access-data": "^1",
  5703. "consolidation/robo": "^1.4.11 || ^2 || ^3",
  5704. "consolidation/site-alias": "^3.0.0@stable",
  5705. "consolidation/site-process": "^2.1 || ^4",
  5706. "enlightn/security-checker": "^1",
  5707. "ext-dom": "*",
  5708. "grasmash/yaml-expander": "^1.1.1",
  5709. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  5710. "league/container": "^2.5 || ^3.4",
  5711. "php": ">=7.1.3",
  5712. "psr/log": "~1.0",
  5713. "psy/psysh": ">=0.6 <0.11",
  5714. "symfony/event-dispatcher": "^3.4 || ^4.0",
  5715. "symfony/finder": "^3.4 || ^4.0 || ^5",
  5716. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0",
  5717. "symfony/yaml": "^3.4 || ^4.0",
  5718. "webflo/drupal-finder": "^1.2",
  5719. "webmozart/path-util": "^2.1.0"
  5720. },
  5721. "conflict": {
  5722. "drupal/migrate_run": "*",
  5723. "drupal/migrate_tools": "<= 5"
  5724. },
  5725. "require-dev": {
  5726. "composer/installers": "^1.7",
  5727. "cweagans/composer-patches": "~1.0",
  5728. "david-garcia/phpwhois": "4.3.0",
  5729. "drupal/alinks": "1.0.0",
  5730. "drupal/core-recommended": "^8.8",
  5731. "phpunit/phpunit": ">=7.5.20",
  5732. "squizlabs/php_codesniffer": "^2.7 || ^3",
  5733. "vlucas/phpdotenv": "^2.4",
  5734. "yoast/phpunit-polyfills": "^0.2.0"
  5735. },
  5736. "bin": [
  5737. "drush"
  5738. ],
  5739. "type": "library",
  5740. "extra": {
  5741. "installer-paths": {
  5742. "sut/core": [
  5743. "type:drupal-core"
  5744. ],
  5745. "sut/libraries/{$name}": [
  5746. "type:drupal-library"
  5747. ],
  5748. "sut/modules/unish/{$name}": [
  5749. "drupal/devel"
  5750. ],
  5751. "sut/themes/unish/{$name}": [
  5752. "drupal/empty_theme"
  5753. ],
  5754. "sut/modules/contrib/{$name}": [
  5755. "type:drupal-module"
  5756. ],
  5757. "sut/profiles/contrib/{$name}": [
  5758. "type:drupal-profile"
  5759. ],
  5760. "sut/themes/contrib/{$name}": [
  5761. "type:drupal-theme"
  5762. ],
  5763. "sut/drush/contrib/{$name}": [
  5764. "type:drupal-drush"
  5765. ]
  5766. }
  5767. },
  5768. "autoload": {
  5769. "psr-4": {
  5770. "Drush\\": "src/",
  5771. "Drush\\Internal\\": "src/internal-forks"
  5772. }
  5773. },
  5774. "notification-url": "https://packagist.org/downloads/",
  5775. "license": [
  5776. "GPL-2.0-or-later"
  5777. ],
  5778. "authors": [
  5779. {
  5780. "name": "Moshe Weitzman",
  5781. "email": "weitzman@tejasa.com"
  5782. },
  5783. {
  5784. "name": "Owen Barton",
  5785. "email": "drupal@owenbarton.com"
  5786. },
  5787. {
  5788. "name": "Greg Anderson",
  5789. "email": "greg.1.anderson@greenknowe.org"
  5790. },
  5791. {
  5792. "name": "Jonathan Araña Cruz",
  5793. "email": "jonhattan@faita.net"
  5794. },
  5795. {
  5796. "name": "Jonathan Hedstrom",
  5797. "email": "jhedstrom@gmail.com"
  5798. },
  5799. {
  5800. "name": "Christopher Gervais",
  5801. "email": "chris@ergonlogic.com"
  5802. },
  5803. {
  5804. "name": "Dave Reid",
  5805. "email": "dave@davereid.net"
  5806. },
  5807. {
  5808. "name": "Damian Lee",
  5809. "email": "damiankloip@googlemail.com"
  5810. }
  5811. ],
  5812. "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.",
  5813. "homepage": "http://www.drush.org",
  5814. "support": {
  5815. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  5816. "irc": "irc://irc.freenode.org/drush",
  5817. "issues": "https://github.com/drush-ops/drush/issues",
  5818. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  5819. "source": "https://github.com/drush-ops/drush/tree/10.6.2"
  5820. },
  5821. "funding": [
  5822. {
  5823. "url": "https://github.com/weitzman",
  5824. "type": "github"
  5825. }
  5826. ],
  5827. "time": "2021-12-15T17:09:54+00:00"
  5828. },
  5829. {
  5830. "name": "egulias/email-validator",
  5831. "version": "3.2.6",
  5832. "source": {
  5833. "type": "git",
  5834. "url": "https://github.com/egulias/EmailValidator.git",
  5835. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7"
  5836. },
  5837. "dist": {
  5838. "type": "zip",
  5839. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  5840. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  5841. "shasum": ""
  5842. },
  5843. "require": {
  5844. "doctrine/lexer": "^1.2|^2",
  5845. "php": ">=7.2",
  5846. "symfony/polyfill-intl-idn": "^1.15"
  5847. },
  5848. "require-dev": {
  5849. "phpunit/phpunit": "^8.5.8|^9.3.3",
  5850. "vimeo/psalm": "^4"
  5851. },
  5852. "suggest": {
  5853. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  5854. },
  5855. "type": "library",
  5856. "extra": {
  5857. "branch-alias": {
  5858. "dev-master": "3.0.x-dev"
  5859. }
  5860. },
  5861. "autoload": {
  5862. "psr-4": {
  5863. "Egulias\\EmailValidator\\": "src"
  5864. }
  5865. },
  5866. "notification-url": "https://packagist.org/downloads/",
  5867. "license": [
  5868. "MIT"
  5869. ],
  5870. "authors": [
  5871. {
  5872. "name": "Eduardo Gulias Davis"
  5873. }
  5874. ],
  5875. "description": "A library for validating emails against several RFCs",
  5876. "homepage": "https://github.com/egulias/EmailValidator",
  5877. "keywords": [
  5878. "email",
  5879. "emailvalidation",
  5880. "emailvalidator",
  5881. "validation",
  5882. "validator"
  5883. ],
  5884. "support": {
  5885. "issues": "https://github.com/egulias/EmailValidator/issues",
  5886. "source": "https://github.com/egulias/EmailValidator/tree/3.2.6"
  5887. },
  5888. "funding": [
  5889. {
  5890. "url": "https://github.com/egulias",
  5891. "type": "github"
  5892. }
  5893. ],
  5894. "time": "2023-06-01T07:04:22+00:00"
  5895. },
  5896. {
  5897. "name": "enlightn/security-checker",
  5898. "version": "v1.11.0",
  5899. "source": {
  5900. "type": "git",
  5901. "url": "https://github.com/enlightn/security-checker.git",
  5902. "reference": "68df5c7256c84b428bf8fcff0d249de06ce362d2"
  5903. },
  5904. "dist": {
  5905. "type": "zip",
  5906. "url": "https://api.github.com/repos/enlightn/security-checker/zipball/68df5c7256c84b428bf8fcff0d249de06ce362d2",
  5907. "reference": "68df5c7256c84b428bf8fcff0d249de06ce362d2",
  5908. "shasum": ""
  5909. },
  5910. "require": {
  5911. "ext-json": "*",
  5912. "guzzlehttp/guzzle": "^6.3|^7.0",
  5913. "php": ">=5.6",
  5914. "symfony/console": "^3.4|^4|^5|^6|^7",
  5915. "symfony/finder": "^3|^4|^5|^6|^7",
  5916. "symfony/process": "^3.4|^4|^5|^6|^7",
  5917. "symfony/yaml": "^3.4|^4|^5|^6|^7"
  5918. },
  5919. "require-dev": {
  5920. "ext-zip": "*",
  5921. "friendsofphp/php-cs-fixer": "^2.18|^3.0",
  5922. "phpunit/phpunit": "^5.5|^6|^7|^8|^9"
  5923. },
  5924. "bin": [
  5925. "security-checker"
  5926. ],
  5927. "type": "library",
  5928. "autoload": {
  5929. "psr-4": {
  5930. "Enlightn\\SecurityChecker\\": "src"
  5931. }
  5932. },
  5933. "notification-url": "https://packagist.org/downloads/",
  5934. "license": [
  5935. "MIT"
  5936. ],
  5937. "authors": [
  5938. {
  5939. "name": "Paras Malhotra",
  5940. "email": "paras@laravel-enlightn.com"
  5941. },
  5942. {
  5943. "name": "Miguel Piedrafita",
  5944. "email": "soy@miguelpiedrafita.com"
  5945. }
  5946. ],
  5947. "description": "A PHP dependency vulnerabilities scanner based on the Security Advisories Database.",
  5948. "keywords": [
  5949. "package",
  5950. "php",
  5951. "scanner",
  5952. "security",
  5953. "security advisories",
  5954. "vulnerability scanner"
  5955. ],
  5956. "support": {
  5957. "issues": "https://github.com/enlightn/security-checker/issues",
  5958. "source": "https://github.com/enlightn/security-checker/tree/v1.11.0"
  5959. },
  5960. "time": "2023-11-17T07:53:29+00:00"
  5961. },
  5962. {
  5963. "name": "grasmash/expander",
  5964. "version": "1.0.0",
  5965. "source": {
  5966. "type": "git",
  5967. "url": "https://github.com/grasmash/expander.git",
  5968. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  5969. },
  5970. "dist": {
  5971. "type": "zip",
  5972. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5973. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5974. "shasum": ""
  5975. },
  5976. "require": {
  5977. "dflydev/dot-access-data": "^1.1.0",
  5978. "php": ">=5.4"
  5979. },
  5980. "require-dev": {
  5981. "greg-1-anderson/composer-test-scenarios": "^1",
  5982. "phpunit/phpunit": "^4|^5.5.4",
  5983. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5984. "squizlabs/php_codesniffer": "^2.7"
  5985. },
  5986. "type": "library",
  5987. "extra": {
  5988. "branch-alias": {
  5989. "dev-master": "1.x-dev"
  5990. }
  5991. },
  5992. "autoload": {
  5993. "psr-4": {
  5994. "Grasmash\\Expander\\": "src/"
  5995. }
  5996. },
  5997. "notification-url": "https://packagist.org/downloads/",
  5998. "license": [
  5999. "MIT"
  6000. ],
  6001. "authors": [
  6002. {
  6003. "name": "Matthew Grasmick"
  6004. }
  6005. ],
  6006. "description": "Expands internal property references in PHP arrays file.",
  6007. "support": {
  6008. "issues": "https://github.com/grasmash/expander/issues",
  6009. "source": "https://github.com/grasmash/expander/tree/master"
  6010. },
  6011. "time": "2017-12-21T22:14:55+00:00"
  6012. },
  6013. {
  6014. "name": "grasmash/yaml-expander",
  6015. "version": "1.4.0",
  6016. "source": {
  6017. "type": "git",
  6018. "url": "https://github.com/grasmash/yaml-expander.git",
  6019. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  6020. },
  6021. "dist": {
  6022. "type": "zip",
  6023. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  6024. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  6025. "shasum": ""
  6026. },
  6027. "require": {
  6028. "dflydev/dot-access-data": "^1.1.0",
  6029. "php": ">=5.4",
  6030. "symfony/yaml": "^2.8.11|^3|^4"
  6031. },
  6032. "require-dev": {
  6033. "greg-1-anderson/composer-test-scenarios": "^1",
  6034. "phpunit/phpunit": "^4.8|^5.5.4",
  6035. "satooshi/php-coveralls": "^1.0.2|dev-master",
  6036. "squizlabs/php_codesniffer": "^2.7"
  6037. },
  6038. "type": "library",
  6039. "extra": {
  6040. "branch-alias": {
  6041. "dev-master": "1.x-dev"
  6042. }
  6043. },
  6044. "autoload": {
  6045. "psr-4": {
  6046. "Grasmash\\YamlExpander\\": "src/"
  6047. }
  6048. },
  6049. "notification-url": "https://packagist.org/downloads/",
  6050. "license": [
  6051. "MIT"
  6052. ],
  6053. "authors": [
  6054. {
  6055. "name": "Matthew Grasmick"
  6056. }
  6057. ],
  6058. "description": "Expands internal property references in a yaml file.",
  6059. "support": {
  6060. "issues": "https://github.com/grasmash/yaml-expander/issues",
  6061. "source": "https://github.com/grasmash/yaml-expander/tree/master"
  6062. },
  6063. "time": "2017-12-16T16:06:03+00:00"
  6064. },
  6065. {
  6066. "name": "guzzlehttp/guzzle",
  6067. "version": "6.5.8",
  6068. "source": {
  6069. "type": "git",
  6070. "url": "https://github.com/guzzle/guzzle.git",
  6071. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981"
  6072. },
  6073. "dist": {
  6074. "type": "zip",
  6075. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a52f0440530b54fa079ce76e8c5d196a42cad981",
  6076. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981",
  6077. "shasum": ""
  6078. },
  6079. "require": {
  6080. "ext-json": "*",
  6081. "guzzlehttp/promises": "^1.0",
  6082. "guzzlehttp/psr7": "^1.9",
  6083. "php": ">=5.5",
  6084. "symfony/polyfill-intl-idn": "^1.17"
  6085. },
  6086. "require-dev": {
  6087. "ext-curl": "*",
  6088. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  6089. "psr/log": "^1.1"
  6090. },
  6091. "suggest": {
  6092. "psr/log": "Required for using the Log middleware"
  6093. },
  6094. "type": "library",
  6095. "extra": {
  6096. "branch-alias": {
  6097. "dev-master": "6.5-dev"
  6098. }
  6099. },
  6100. "autoload": {
  6101. "files": [
  6102. "src/functions_include.php"
  6103. ],
  6104. "psr-4": {
  6105. "GuzzleHttp\\": "src/"
  6106. }
  6107. },
  6108. "notification-url": "https://packagist.org/downloads/",
  6109. "license": [
  6110. "MIT"
  6111. ],
  6112. "authors": [
  6113. {
  6114. "name": "Graham Campbell",
  6115. "email": "hello@gjcampbell.co.uk",
  6116. "homepage": "https://github.com/GrahamCampbell"
  6117. },
  6118. {
  6119. "name": "Michael Dowling",
  6120. "email": "mtdowling@gmail.com",
  6121. "homepage": "https://github.com/mtdowling"
  6122. },
  6123. {
  6124. "name": "Jeremy Lindblom",
  6125. "email": "jeremeamia@gmail.com",
  6126. "homepage": "https://github.com/jeremeamia"
  6127. },
  6128. {
  6129. "name": "George Mponos",
  6130. "email": "gmponos@gmail.com",
  6131. "homepage": "https://github.com/gmponos"
  6132. },
  6133. {
  6134. "name": "Tobias Nyholm",
  6135. "email": "tobias.nyholm@gmail.com",
  6136. "homepage": "https://github.com/Nyholm"
  6137. },
  6138. {
  6139. "name": "Márk Sági-Kazár",
  6140. "email": "mark.sagikazar@gmail.com",
  6141. "homepage": "https://github.com/sagikazarmark"
  6142. },
  6143. {
  6144. "name": "Tobias Schultze",
  6145. "email": "webmaster@tubo-world.de",
  6146. "homepage": "https://github.com/Tobion"
  6147. }
  6148. ],
  6149. "description": "Guzzle is a PHP HTTP client library",
  6150. "homepage": "http://guzzlephp.org/",
  6151. "keywords": [
  6152. "client",
  6153. "curl",
  6154. "framework",
  6155. "http",
  6156. "http client",
  6157. "rest",
  6158. "web service"
  6159. ],
  6160. "support": {
  6161. "issues": "https://github.com/guzzle/guzzle/issues",
  6162. "source": "https://github.com/guzzle/guzzle/tree/6.5.8"
  6163. },
  6164. "funding": [
  6165. {
  6166. "url": "https://github.com/GrahamCampbell",
  6167. "type": "github"
  6168. },
  6169. {
  6170. "url": "https://github.com/Nyholm",
  6171. "type": "github"
  6172. },
  6173. {
  6174. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  6175. "type": "tidelift"
  6176. }
  6177. ],
  6178. "time": "2022-06-20T22:16:07+00:00"
  6179. },
  6180. {
  6181. "name": "guzzlehttp/promises",
  6182. "version": "1.5.3",
  6183. "source": {
  6184. "type": "git",
  6185. "url": "https://github.com/guzzle/promises.git",
  6186. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e"
  6187. },
  6188. "dist": {
  6189. "type": "zip",
  6190. "url": "https://api.github.com/repos/guzzle/promises/zipball/67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  6191. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  6192. "shasum": ""
  6193. },
  6194. "require": {
  6195. "php": ">=5.5"
  6196. },
  6197. "require-dev": {
  6198. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  6199. },
  6200. "type": "library",
  6201. "autoload": {
  6202. "files": [
  6203. "src/functions_include.php"
  6204. ],
  6205. "psr-4": {
  6206. "GuzzleHttp\\Promise\\": "src/"
  6207. }
  6208. },
  6209. "notification-url": "https://packagist.org/downloads/",
  6210. "license": [
  6211. "MIT"
  6212. ],
  6213. "authors": [
  6214. {
  6215. "name": "Graham Campbell",
  6216. "email": "hello@gjcampbell.co.uk",
  6217. "homepage": "https://github.com/GrahamCampbell"
  6218. },
  6219. {
  6220. "name": "Michael Dowling",
  6221. "email": "mtdowling@gmail.com",
  6222. "homepage": "https://github.com/mtdowling"
  6223. },
  6224. {
  6225. "name": "Tobias Nyholm",
  6226. "email": "tobias.nyholm@gmail.com",
  6227. "homepage": "https://github.com/Nyholm"
  6228. },
  6229. {
  6230. "name": "Tobias Schultze",
  6231. "email": "webmaster@tubo-world.de",
  6232. "homepage": "https://github.com/Tobion"
  6233. }
  6234. ],
  6235. "description": "Guzzle promises library",
  6236. "keywords": [
  6237. "promise"
  6238. ],
  6239. "support": {
  6240. "issues": "https://github.com/guzzle/promises/issues",
  6241. "source": "https://github.com/guzzle/promises/tree/1.5.3"
  6242. },
  6243. "funding": [
  6244. {
  6245. "url": "https://github.com/GrahamCampbell",
  6246. "type": "github"
  6247. },
  6248. {
  6249. "url": "https://github.com/Nyholm",
  6250. "type": "github"
  6251. },
  6252. {
  6253. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  6254. "type": "tidelift"
  6255. }
  6256. ],
  6257. "time": "2023-05-21T12:31:43+00:00"
  6258. },
  6259. {
  6260. "name": "guzzlehttp/psr7",
  6261. "version": "1.9.1",
  6262. "source": {
  6263. "type": "git",
  6264. "url": "https://github.com/guzzle/psr7.git",
  6265. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b"
  6266. },
  6267. "dist": {
  6268. "type": "zip",
  6269. "url": "https://api.github.com/repos/guzzle/psr7/zipball/e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  6270. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  6271. "shasum": ""
  6272. },
  6273. "require": {
  6274. "php": ">=5.4.0",
  6275. "psr/http-message": "~1.0",
  6276. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  6277. },
  6278. "provide": {
  6279. "psr/http-message-implementation": "1.0"
  6280. },
  6281. "require-dev": {
  6282. "ext-zlib": "*",
  6283. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  6284. },
  6285. "suggest": {
  6286. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  6287. },
  6288. "type": "library",
  6289. "autoload": {
  6290. "files": [
  6291. "src/functions_include.php"
  6292. ],
  6293. "psr-4": {
  6294. "GuzzleHttp\\Psr7\\": "src/"
  6295. }
  6296. },
  6297. "notification-url": "https://packagist.org/downloads/",
  6298. "license": [
  6299. "MIT"
  6300. ],
  6301. "authors": [
  6302. {
  6303. "name": "Graham Campbell",
  6304. "email": "hello@gjcampbell.co.uk",
  6305. "homepage": "https://github.com/GrahamCampbell"
  6306. },
  6307. {
  6308. "name": "Michael Dowling",
  6309. "email": "mtdowling@gmail.com",
  6310. "homepage": "https://github.com/mtdowling"
  6311. },
  6312. {
  6313. "name": "George Mponos",
  6314. "email": "gmponos@gmail.com",
  6315. "homepage": "https://github.com/gmponos"
  6316. },
  6317. {
  6318. "name": "Tobias Nyholm",
  6319. "email": "tobias.nyholm@gmail.com",
  6320. "homepage": "https://github.com/Nyholm"
  6321. },
  6322. {
  6323. "name": "Márk Sági-Kazár",
  6324. "email": "mark.sagikazar@gmail.com",
  6325. "homepage": "https://github.com/sagikazarmark"
  6326. },
  6327. {
  6328. "name": "Tobias Schultze",
  6329. "email": "webmaster@tubo-world.de",
  6330. "homepage": "https://github.com/Tobion"
  6331. }
  6332. ],
  6333. "description": "PSR-7 message implementation that also provides common utility methods",
  6334. "keywords": [
  6335. "http",
  6336. "message",
  6337. "psr-7",
  6338. "request",
  6339. "response",
  6340. "stream",
  6341. "uri",
  6342. "url"
  6343. ],
  6344. "support": {
  6345. "issues": "https://github.com/guzzle/psr7/issues",
  6346. "source": "https://github.com/guzzle/psr7/tree/1.9.1"
  6347. },
  6348. "funding": [
  6349. {
  6350. "url": "https://github.com/GrahamCampbell",
  6351. "type": "github"
  6352. },
  6353. {
  6354. "url": "https://github.com/Nyholm",
  6355. "type": "github"
  6356. },
  6357. {
  6358. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  6359. "type": "tidelift"
  6360. }
  6361. ],
  6362. "time": "2023-04-17T16:00:37+00:00"
  6363. },
  6364. {
  6365. "name": "kint-php/kint",
  6366. "version": "5.1.1",
  6367. "source": {
  6368. "type": "git",
  6369. "url": "https://github.com/kint-php/kint.git",
  6370. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b"
  6371. },
  6372. "dist": {
  6373. "type": "zip",
  6374. "url": "https://api.github.com/repos/kint-php/kint/zipball/8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  6375. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  6376. "shasum": ""
  6377. },
  6378. "require": {
  6379. "php": ">=7.1"
  6380. },
  6381. "require-dev": {
  6382. "friendsofphp/php-cs-fixer": "^3",
  6383. "phpspec/prophecy-phpunit": "^2",
  6384. "phpunit/phpunit": "^9",
  6385. "seld/phar-utils": "^1",
  6386. "symfony/finder": ">=4.0",
  6387. "vimeo/psalm": "^5"
  6388. },
  6389. "suggest": {
  6390. "kint-php/kint-helpers": "Provides extra helper functions",
  6391. "kint-php/kint-twig": "Provides d() and s() functions in twig templates"
  6392. },
  6393. "type": "library",
  6394. "autoload": {
  6395. "files": [
  6396. "init.php"
  6397. ],
  6398. "psr-4": {
  6399. "Kint\\": "src/"
  6400. }
  6401. },
  6402. "notification-url": "https://packagist.org/downloads/",
  6403. "license": [
  6404. "MIT"
  6405. ],
  6406. "authors": [
  6407. {
  6408. "name": "Jonathan Vollebregt",
  6409. "homepage": "https://github.com/jnvsor"
  6410. },
  6411. {
  6412. "name": "Contributors",
  6413. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  6414. }
  6415. ],
  6416. "description": "Kint - debugging tool for PHP developers",
  6417. "homepage": "https://kint-php.github.io/kint/",
  6418. "keywords": [
  6419. "debug",
  6420. "kint",
  6421. "php"
  6422. ],
  6423. "support": {
  6424. "issues": "https://github.com/kint-php/kint/issues",
  6425. "source": "https://github.com/kint-php/kint/tree/5.1.1"
  6426. },
  6427. "time": "2024-04-26T14:20:09+00:00"
  6428. },
  6429. {
  6430. "name": "laminas/laminas-escaper",
  6431. "version": "2.12.0",
  6432. "source": {
  6433. "type": "git",
  6434. "url": "https://github.com/laminas/laminas-escaper.git",
  6435. "reference": "ee7a4c37bf3d0e8c03635d5bddb5bb3184ead490"
  6436. },
  6437. "dist": {
  6438. "type": "zip",
  6439. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/ee7a4c37bf3d0e8c03635d5bddb5bb3184ead490",
  6440. "reference": "ee7a4c37bf3d0e8c03635d5bddb5bb3184ead490",
  6441. "shasum": ""
  6442. },
  6443. "require": {
  6444. "ext-ctype": "*",
  6445. "ext-mbstring": "*",
  6446. "php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0"
  6447. },
  6448. "conflict": {
  6449. "zendframework/zend-escaper": "*"
  6450. },
  6451. "require-dev": {
  6452. "infection/infection": "^0.26.6",
  6453. "laminas/laminas-coding-standard": "~2.4.0",
  6454. "maglnet/composer-require-checker": "^3.8.0",
  6455. "phpunit/phpunit": "^9.5.18",
  6456. "psalm/plugin-phpunit": "^0.17.0",
  6457. "vimeo/psalm": "^4.22.0"
  6458. },
  6459. "type": "library",
  6460. "autoload": {
  6461. "psr-4": {
  6462. "Laminas\\Escaper\\": "src/"
  6463. }
  6464. },
  6465. "notification-url": "https://packagist.org/downloads/",
  6466. "license": [
  6467. "BSD-3-Clause"
  6468. ],
  6469. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  6470. "homepage": "https://laminas.dev",
  6471. "keywords": [
  6472. "escaper",
  6473. "laminas"
  6474. ],
  6475. "support": {
  6476. "chat": "https://laminas.dev/chat",
  6477. "docs": "https://docs.laminas.dev/laminas-escaper/",
  6478. "forum": "https://discourse.laminas.dev",
  6479. "issues": "https://github.com/laminas/laminas-escaper/issues",
  6480. "rss": "https://github.com/laminas/laminas-escaper/releases.atom",
  6481. "source": "https://github.com/laminas/laminas-escaper"
  6482. },
  6483. "funding": [
  6484. {
  6485. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6486. "type": "community_bridge"
  6487. }
  6488. ],
  6489. "time": "2022-10-10T10:11:09+00:00"
  6490. },
  6491. {
  6492. "name": "laminas/laminas-feed",
  6493. "version": "2.18.2",
  6494. "source": {
  6495. "type": "git",
  6496. "url": "https://github.com/laminas/laminas-feed.git",
  6497. "reference": "a57fdb9df42950d5b7f052509fbdab0d081c6b6d"
  6498. },
  6499. "dist": {
  6500. "type": "zip",
  6501. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/a57fdb9df42950d5b7f052509fbdab0d081c6b6d",
  6502. "reference": "a57fdb9df42950d5b7f052509fbdab0d081c6b6d",
  6503. "shasum": ""
  6504. },
  6505. "require": {
  6506. "ext-dom": "*",
  6507. "ext-libxml": "*",
  6508. "laminas/laminas-escaper": "^2.9",
  6509. "laminas/laminas-servicemanager": "^3.14.0",
  6510. "laminas/laminas-stdlib": "^3.6",
  6511. "php": "^7.4 || ~8.0.0 || ~8.1.0"
  6512. },
  6513. "conflict": {
  6514. "laminas/laminas-servicemanager": "<3.3",
  6515. "zendframework/zend-feed": "*"
  6516. },
  6517. "require-dev": {
  6518. "laminas/laminas-cache": "^2.13.2 || ^3.1.3",
  6519. "laminas/laminas-cache-storage-adapter-memory": "^1.1.0 || ^2.0.0",
  6520. "laminas/laminas-coding-standard": "~2.3.0",
  6521. "laminas/laminas-db": "^2.13.3",
  6522. "laminas/laminas-http": "^2.15",
  6523. "laminas/laminas-validator": "^2.15",
  6524. "phpunit/phpunit": "^9.5.5",
  6525. "psalm/plugin-phpunit": "^0.17.0",
  6526. "psr/http-message": "^1.0.1",
  6527. "vimeo/psalm": "^4.24.0"
  6528. },
  6529. "suggest": {
  6530. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  6531. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  6532. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  6533. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  6534. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  6535. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  6536. },
  6537. "type": "library",
  6538. "autoload": {
  6539. "psr-4": {
  6540. "Laminas\\Feed\\": "src/"
  6541. }
  6542. },
  6543. "notification-url": "https://packagist.org/downloads/",
  6544. "license": [
  6545. "BSD-3-Clause"
  6546. ],
  6547. "description": "provides functionality for creating and consuming RSS and Atom feeds",
  6548. "homepage": "https://laminas.dev",
  6549. "keywords": [
  6550. "atom",
  6551. "feed",
  6552. "laminas",
  6553. "rss"
  6554. ],
  6555. "support": {
  6556. "chat": "https://laminas.dev/chat",
  6557. "docs": "https://docs.laminas.dev/laminas-feed/",
  6558. "forum": "https://discourse.laminas.dev",
  6559. "issues": "https://github.com/laminas/laminas-feed/issues",
  6560. "rss": "https://github.com/laminas/laminas-feed/releases.atom",
  6561. "source": "https://github.com/laminas/laminas-feed"
  6562. },
  6563. "funding": [
  6564. {
  6565. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6566. "type": "community_bridge"
  6567. }
  6568. ],
  6569. "time": "2022-08-08T17:02:35+00:00"
  6570. },
  6571. {
  6572. "name": "laminas/laminas-servicemanager",
  6573. "version": "3.17.0",
  6574. "source": {
  6575. "type": "git",
  6576. "url": "https://github.com/laminas/laminas-servicemanager.git",
  6577. "reference": "360be5f16955dd1edbcce1cfaa98ed82a17f02ec"
  6578. },
  6579. "dist": {
  6580. "type": "zip",
  6581. "url": "https://api.github.com/repos/laminas/laminas-servicemanager/zipball/360be5f16955dd1edbcce1cfaa98ed82a17f02ec",
  6582. "reference": "360be5f16955dd1edbcce1cfaa98ed82a17f02ec",
  6583. "shasum": ""
  6584. },
  6585. "require": {
  6586. "laminas/laminas-stdlib": "^3.2.1",
  6587. "php": "~7.4.0 || ~8.0.0 || ~8.1.0",
  6588. "psr/container": "^1.0"
  6589. },
  6590. "conflict": {
  6591. "ext-psr": "*",
  6592. "laminas/laminas-code": "<3.3.1",
  6593. "zendframework/zend-code": "<3.3.1",
  6594. "zendframework/zend-servicemanager": "*"
  6595. },
  6596. "provide": {
  6597. "psr/container-implementation": "^1.0"
  6598. },
  6599. "replace": {
  6600. "container-interop/container-interop": "^1.2.0"
  6601. },
  6602. "require-dev": {
  6603. "composer/package-versions-deprecated": "^1.0",
  6604. "laminas/laminas-coding-standard": "~2.4.0",
  6605. "laminas/laminas-container-config-test": "^0.7",
  6606. "laminas/laminas-dependency-plugin": "^2.1.2",
  6607. "mikey179/vfsstream": "^1.6.10@alpha",
  6608. "ocramius/proxy-manager": "^2.11",
  6609. "phpbench/phpbench": "^1.1",
  6610. "phpspec/prophecy-phpunit": "^2.0",
  6611. "phpunit/phpunit": "^9.5.5",
  6612. "psalm/plugin-phpunit": "^0.17.0",
  6613. "vimeo/psalm": "^4.8"
  6614. },
  6615. "suggest": {
  6616. "ocramius/proxy-manager": "ProxyManager ^2.1.1 to handle lazy initialization of services"
  6617. },
  6618. "bin": [
  6619. "bin/generate-deps-for-config-factory",
  6620. "bin/generate-factory-for-class"
  6621. ],
  6622. "type": "library",
  6623. "autoload": {
  6624. "files": [
  6625. "src/autoload.php"
  6626. ],
  6627. "psr-4": {
  6628. "Laminas\\ServiceManager\\": "src/"
  6629. }
  6630. },
  6631. "notification-url": "https://packagist.org/downloads/",
  6632. "license": [
  6633. "BSD-3-Clause"
  6634. ],
  6635. "description": "Factory-Driven Dependency Injection Container",
  6636. "homepage": "https://laminas.dev",
  6637. "keywords": [
  6638. "PSR-11",
  6639. "dependency-injection",
  6640. "di",
  6641. "dic",
  6642. "laminas",
  6643. "service-manager",
  6644. "servicemanager"
  6645. ],
  6646. "support": {
  6647. "chat": "https://laminas.dev/chat",
  6648. "docs": "https://docs.laminas.dev/laminas-servicemanager/",
  6649. "forum": "https://discourse.laminas.dev",
  6650. "issues": "https://github.com/laminas/laminas-servicemanager/issues",
  6651. "rss": "https://github.com/laminas/laminas-servicemanager/releases.atom",
  6652. "source": "https://github.com/laminas/laminas-servicemanager"
  6653. },
  6654. "funding": [
  6655. {
  6656. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6657. "type": "community_bridge"
  6658. }
  6659. ],
  6660. "time": "2022-09-22T11:33:46+00:00"
  6661. },
  6662. {
  6663. "name": "laminas/laminas-stdlib",
  6664. "version": "3.13.0",
  6665. "source": {
  6666. "type": "git",
  6667. "url": "https://github.com/laminas/laminas-stdlib.git",
  6668. "reference": "66a6d03c381f6c9f1dd988bf8244f9afb9380d76"
  6669. },
  6670. "dist": {
  6671. "type": "zip",
  6672. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/66a6d03c381f6c9f1dd988bf8244f9afb9380d76",
  6673. "reference": "66a6d03c381f6c9f1dd988bf8244f9afb9380d76",
  6674. "shasum": ""
  6675. },
  6676. "require": {
  6677. "php": "^7.4 || ~8.0.0 || ~8.1.0"
  6678. },
  6679. "conflict": {
  6680. "zendframework/zend-stdlib": "*"
  6681. },
  6682. "require-dev": {
  6683. "laminas/laminas-coding-standard": "~2.3.0",
  6684. "phpbench/phpbench": "^1.2.6",
  6685. "phpstan/phpdoc-parser": "^0.5.4",
  6686. "phpunit/phpunit": "^9.5.23",
  6687. "psalm/plugin-phpunit": "^0.17.0",
  6688. "vimeo/psalm": "^4.26"
  6689. },
  6690. "type": "library",
  6691. "autoload": {
  6692. "psr-4": {
  6693. "Laminas\\Stdlib\\": "src/"
  6694. }
  6695. },
  6696. "notification-url": "https://packagist.org/downloads/",
  6697. "license": [
  6698. "BSD-3-Clause"
  6699. ],
  6700. "description": "SPL extensions, array utilities, error handlers, and more",
  6701. "homepage": "https://laminas.dev",
  6702. "keywords": [
  6703. "laminas",
  6704. "stdlib"
  6705. ],
  6706. "support": {
  6707. "chat": "https://laminas.dev/chat",
  6708. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  6709. "forum": "https://discourse.laminas.dev",
  6710. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  6711. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  6712. "source": "https://github.com/laminas/laminas-stdlib"
  6713. },
  6714. "funding": [
  6715. {
  6716. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6717. "type": "community_bridge"
  6718. }
  6719. ],
  6720. "time": "2022-08-24T13:56:50+00:00"
  6721. },
  6722. {
  6723. "name": "laminas/laminas-text",
  6724. "version": "2.8.1",
  6725. "source": {
  6726. "type": "git",
  6727. "url": "https://github.com/laminas/laminas-text.git",
  6728. "reference": "d696fa1fb3880b9b8f02c08be58685013b421608"
  6729. },
  6730. "dist": {
  6731. "type": "zip",
  6732. "url": "https://api.github.com/repos/laminas/laminas-text/zipball/d696fa1fb3880b9b8f02c08be58685013b421608",
  6733. "reference": "d696fa1fb3880b9b8f02c08be58685013b421608",
  6734. "shasum": ""
  6735. },
  6736. "require": {
  6737. "laminas/laminas-servicemanager": "^3.4",
  6738. "laminas/laminas-stdlib": "^3.1",
  6739. "laminas/laminas-zendframework-bridge": "^1.0",
  6740. "php": "^7.3 || ~8.0.0"
  6741. },
  6742. "replace": {
  6743. "zendframework/zend-text": "^2.7.1"
  6744. },
  6745. "require-dev": {
  6746. "laminas/laminas-coding-standard": "~1.0.0",
  6747. "laminas/laminas-config": "^3.4",
  6748. "phpunit/phpunit": "^9.3"
  6749. },
  6750. "type": "library",
  6751. "autoload": {
  6752. "psr-4": {
  6753. "Laminas\\Text\\": "src/"
  6754. }
  6755. },
  6756. "notification-url": "https://packagist.org/downloads/",
  6757. "license": [
  6758. "BSD-3-Clause"
  6759. ],
  6760. "description": "Create FIGlets and text-based tables",
  6761. "homepage": "https://laminas.dev",
  6762. "keywords": [
  6763. "laminas",
  6764. "text"
  6765. ],
  6766. "support": {
  6767. "chat": "https://laminas.dev/chat",
  6768. "docs": "https://docs.laminas.dev/laminas-text/",
  6769. "forum": "https://discourse.laminas.dev",
  6770. "issues": "https://github.com/laminas/laminas-text/issues",
  6771. "rss": "https://github.com/laminas/laminas-text/releases.atom",
  6772. "source": "https://github.com/laminas/laminas-text"
  6773. },
  6774. "funding": [
  6775. {
  6776. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6777. "type": "community_bridge"
  6778. }
  6779. ],
  6780. "time": "2021-02-17T21:24:58+00:00"
  6781. },
  6782. {
  6783. "name": "laminas/laminas-zendframework-bridge",
  6784. "version": "1.6.1",
  6785. "source": {
  6786. "type": "git",
  6787. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  6788. "reference": "e112dd2c099f4f6142c16fc65fda89a638e06885"
  6789. },
  6790. "dist": {
  6791. "type": "zip",
  6792. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/e112dd2c099f4f6142c16fc65fda89a638e06885",
  6793. "reference": "e112dd2c099f4f6142c16fc65fda89a638e06885",
  6794. "shasum": ""
  6795. },
  6796. "require": {
  6797. "php": ">=7.4, <8.2"
  6798. },
  6799. "require-dev": {
  6800. "phpunit/phpunit": "^9.5.14",
  6801. "psalm/plugin-phpunit": "^0.15.2",
  6802. "squizlabs/php_codesniffer": "^3.6.2",
  6803. "vimeo/psalm": "^4.21.0"
  6804. },
  6805. "type": "library",
  6806. "extra": {
  6807. "laminas": {
  6808. "module": "Laminas\\ZendFrameworkBridge"
  6809. }
  6810. },
  6811. "autoload": {
  6812. "files": [
  6813. "src/autoload.php"
  6814. ],
  6815. "psr-4": {
  6816. "Laminas\\ZendFrameworkBridge\\": "src//"
  6817. }
  6818. },
  6819. "notification-url": "https://packagist.org/downloads/",
  6820. "license": [
  6821. "BSD-3-Clause"
  6822. ],
  6823. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  6824. "keywords": [
  6825. "ZendFramework",
  6826. "autoloading",
  6827. "laminas",
  6828. "zf"
  6829. ],
  6830. "support": {
  6831. "forum": "https://discourse.laminas.dev/",
  6832. "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues",
  6833. "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom",
  6834. "source": "https://github.com/laminas/laminas-zendframework-bridge"
  6835. },
  6836. "funding": [
  6837. {
  6838. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6839. "type": "community_bridge"
  6840. }
  6841. ],
  6842. "abandoned": true,
  6843. "time": "2022-07-29T13:28:29+00:00"
  6844. },
  6845. {
  6846. "name": "league/container",
  6847. "version": "2.5.0",
  6848. "source": {
  6849. "type": "git",
  6850. "url": "https://github.com/thephpleague/container.git",
  6851. "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3"
  6852. },
  6853. "dist": {
  6854. "type": "zip",
  6855. "url": "https://api.github.com/repos/thephpleague/container/zipball/8438dc47a0674e3378bcce893a0a04d79a2c22b3",
  6856. "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3",
  6857. "shasum": ""
  6858. },
  6859. "require": {
  6860. "container-interop/container-interop": "^1.2",
  6861. "php": "^5.4 || ^7.0 || ^8.0"
  6862. },
  6863. "provide": {
  6864. "container-interop/container-interop-implementation": "^1.2",
  6865. "psr/container-implementation": "^1.0"
  6866. },
  6867. "replace": {
  6868. "orno/di": "~2.0"
  6869. },
  6870. "require-dev": {
  6871. "phpunit/phpunit": "^4.8.36",
  6872. "scrutinizer/ocular": "^1.3",
  6873. "squizlabs/php_codesniffer": "^3.5"
  6874. },
  6875. "type": "library",
  6876. "extra": {
  6877. "branch-alias": {
  6878. "dev-2.x": "2.x-dev",
  6879. "dev-1.x": "1.x-dev"
  6880. }
  6881. },
  6882. "autoload": {
  6883. "psr-4": {
  6884. "League\\Container\\": "src"
  6885. }
  6886. },
  6887. "notification-url": "https://packagist.org/downloads/",
  6888. "license": [
  6889. "MIT"
  6890. ],
  6891. "authors": [
  6892. {
  6893. "name": "Phil Bennett",
  6894. "email": "philipobenito@gmail.com",
  6895. "homepage": "http://www.philipobenito.com",
  6896. "role": "Developer"
  6897. }
  6898. ],
  6899. "description": "A fast and intuitive dependency injection container.",
  6900. "homepage": "https://github.com/thephpleague/container",
  6901. "keywords": [
  6902. "container",
  6903. "dependency",
  6904. "di",
  6905. "injection",
  6906. "league",
  6907. "provider",
  6908. "service"
  6909. ],
  6910. "support": {
  6911. "issues": "https://github.com/thephpleague/container/issues",
  6912. "source": "https://github.com/thephpleague/container/tree/2.5.0"
  6913. },
  6914. "funding": [
  6915. {
  6916. "url": "https://github.com/philipobenito",
  6917. "type": "github"
  6918. }
  6919. ],
  6920. "time": "2021-02-22T09:20:06+00:00"
  6921. },
  6922. {
  6923. "name": "longwave/laminas-diactoros",
  6924. "version": "2.14.3",
  6925. "source": {
  6926. "type": "git",
  6927. "url": "https://github.com/longwave/laminas-diactoros.git",
  6928. "reference": "2bd6b47a090ae924ecc298657d01f8a462f7507b"
  6929. },
  6930. "dist": {
  6931. "type": "zip",
  6932. "url": "https://api.github.com/repos/longwave/laminas-diactoros/zipball/2bd6b47a090ae924ecc298657d01f8a462f7507b",
  6933. "reference": "2bd6b47a090ae924ecc298657d01f8a462f7507b",
  6934. "shasum": ""
  6935. },
  6936. "require": {
  6937. "php": "^7.3 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
  6938. "psr/http-factory": "^1.0",
  6939. "psr/http-message": "^1.0"
  6940. },
  6941. "conflict": {
  6942. "phpspec/prophecy": "<1.9.0",
  6943. "zendframework/zend-diactoros": "*"
  6944. },
  6945. "provide": {
  6946. "psr/http-factory-implementation": "1.0",
  6947. "psr/http-message-implementation": "1.0"
  6948. },
  6949. "replace": {
  6950. "laminas/laminas-diactoros": "2.18.1"
  6951. },
  6952. "require-dev": {
  6953. "ext-curl": "*",
  6954. "ext-dom": "*",
  6955. "ext-gd": "*",
  6956. "ext-libxml": "*",
  6957. "http-interop/http-factory-tests": "^0.9.0",
  6958. "laminas/laminas-coding-standard": "~2.3.0",
  6959. "php-http/psr7-integration-tests": "^1.1.1",
  6960. "phpspec/prophecy-phpunit": "^2.0",
  6961. "phpunit/phpunit": "^9.5",
  6962. "psalm/plugin-phpunit": "^0.17.0",
  6963. "vimeo/psalm": "^4.24.0"
  6964. },
  6965. "type": "library",
  6966. "extra": {
  6967. "laminas": {
  6968. "config-provider": "Laminas\\Diactoros\\ConfigProvider",
  6969. "module": "Laminas\\Diactoros"
  6970. }
  6971. },
  6972. "autoload": {
  6973. "files": [
  6974. "src/functions/create_uploaded_file.php",
  6975. "src/functions/marshal_headers_from_sapi.php",
  6976. "src/functions/marshal_method_from_sapi.php",
  6977. "src/functions/marshal_protocol_version_from_sapi.php",
  6978. "src/functions/marshal_uri_from_sapi.php",
  6979. "src/functions/normalize_server.php",
  6980. "src/functions/normalize_uploaded_files.php",
  6981. "src/functions/parse_cookie_header.php",
  6982. "src/functions/create_uploaded_file.legacy.php",
  6983. "src/functions/marshal_headers_from_sapi.legacy.php",
  6984. "src/functions/marshal_method_from_sapi.legacy.php",
  6985. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  6986. "src/functions/marshal_uri_from_sapi.legacy.php",
  6987. "src/functions/normalize_server.legacy.php",
  6988. "src/functions/normalize_uploaded_files.legacy.php",
  6989. "src/functions/parse_cookie_header.legacy.php"
  6990. ],
  6991. "psr-4": {
  6992. "Laminas\\Diactoros\\": "src/"
  6993. }
  6994. },
  6995. "notification-url": "https://packagist.org/downloads/",
  6996. "license": [
  6997. "BSD-3-Clause"
  6998. ],
  6999. "description": "PSR HTTP Message implementations",
  7000. "homepage": "https://laminas.dev",
  7001. "keywords": [
  7002. "http",
  7003. "laminas",
  7004. "psr",
  7005. "psr-17",
  7006. "psr-7"
  7007. ],
  7008. "support": {
  7009. "chat": "https://laminas.dev/chat",
  7010. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  7011. "forum": "https://discourse.laminas.dev",
  7012. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  7013. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  7014. "source": "https://github.com/laminas/laminas-diactoros"
  7015. },
  7016. "time": "2024-09-11T14:26:18+00:00"
  7017. },
  7018. {
  7019. "name": "masterminds/html5",
  7020. "version": "2.7.6",
  7021. "source": {
  7022. "type": "git",
  7023. "url": "https://github.com/Masterminds/html5-php.git",
  7024. "reference": "897eb517a343a2281f11bc5556d6548db7d93947"
  7025. },
  7026. "dist": {
  7027. "type": "zip",
  7028. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/897eb517a343a2281f11bc5556d6548db7d93947",
  7029. "reference": "897eb517a343a2281f11bc5556d6548db7d93947",
  7030. "shasum": ""
  7031. },
  7032. "require": {
  7033. "ext-ctype": "*",
  7034. "ext-dom": "*",
  7035. "ext-libxml": "*",
  7036. "php": ">=5.3.0"
  7037. },
  7038. "require-dev": {
  7039. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7"
  7040. },
  7041. "type": "library",
  7042. "extra": {
  7043. "branch-alias": {
  7044. "dev-master": "2.7-dev"
  7045. }
  7046. },
  7047. "autoload": {
  7048. "psr-4": {
  7049. "Masterminds\\": "src"
  7050. }
  7051. },
  7052. "notification-url": "https://packagist.org/downloads/",
  7053. "license": [
  7054. "MIT"
  7055. ],
  7056. "authors": [
  7057. {
  7058. "name": "Matt Butcher",
  7059. "email": "technosophos@gmail.com"
  7060. },
  7061. {
  7062. "name": "Matt Farina",
  7063. "email": "matt@mattfarina.com"
  7064. },
  7065. {
  7066. "name": "Asmir Mustafic",
  7067. "email": "goetas@gmail.com"
  7068. }
  7069. ],
  7070. "description": "An HTML5 parser and serializer.",
  7071. "homepage": "http://masterminds.github.io/html5-php",
  7072. "keywords": [
  7073. "HTML5",
  7074. "dom",
  7075. "html",
  7076. "parser",
  7077. "querypath",
  7078. "serializer",
  7079. "xml"
  7080. ],
  7081. "support": {
  7082. "issues": "https://github.com/Masterminds/html5-php/issues",
  7083. "source": "https://github.com/Masterminds/html5-php/tree/2.7.6"
  7084. },
  7085. "time": "2022-08-18T16:18:26+00:00"
  7086. },
  7087. {
  7088. "name": "mathieuviossat/arraytotexttable",
  7089. "version": "v1.0.8",
  7090. "source": {
  7091. "type": "git",
  7092. "url": "https://github.com/viossat/arraytotexttable.git",
  7093. "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4"
  7094. },
  7095. "dist": {
  7096. "type": "zip",
  7097. "url": "https://api.github.com/repos/viossat/arraytotexttable/zipball/6b1af924478cb9c3a903269e304fff006fe0dbf4",
  7098. "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4",
  7099. "shasum": ""
  7100. },
  7101. "require": {
  7102. "laminas/laminas-text": "^2.7",
  7103. "php": ">=5.3.0"
  7104. },
  7105. "type": "library",
  7106. "autoload": {
  7107. "psr-4": {
  7108. "MathieuViossat\\Util\\": "src/"
  7109. }
  7110. },
  7111. "notification-url": "https://packagist.org/downloads/",
  7112. "license": [
  7113. "MIT"
  7114. ],
  7115. "authors": [
  7116. {
  7117. "name": "Mathieu Viossat",
  7118. "email": "mathieu@viossat.fr",
  7119. "homepage": "https://viossat.fr"
  7120. }
  7121. ],
  7122. "description": "Display arrays in terminal",
  7123. "homepage": "https://github.com/viossat/arraytotexttable",
  7124. "keywords": [
  7125. "array",
  7126. "ascii",
  7127. "table",
  7128. "terminal",
  7129. "text",
  7130. "unicode"
  7131. ],
  7132. "support": {
  7133. "issues": "https://github.com/viossat/arraytotexttable/issues",
  7134. "source": "https://github.com/viossat/arraytotexttable/tree/v1.0.8"
  7135. },
  7136. "time": "2020-06-23T17:14:22+00:00"
  7137. },
  7138. {
  7139. "name": "mglaman/phpstan-drupal",
  7140. "version": "1.2.1",
  7141. "source": {
  7142. "type": "git",
  7143. "url": "https://github.com/mglaman/phpstan-drupal.git",
  7144. "reference": "920c6b972a832046327f66dc6ff7448e3b5d6e4c"
  7145. },
  7146. "dist": {
  7147. "type": "zip",
  7148. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/920c6b972a832046327f66dc6ff7448e3b5d6e4c",
  7149. "reference": "920c6b972a832046327f66dc6ff7448e3b5d6e4c",
  7150. "shasum": ""
  7151. },
  7152. "require": {
  7153. "php": "^7.4 || ^8.0",
  7154. "phpstan/phpstan": "^1.10.1",
  7155. "phpstan/phpstan-deprecation-rules": "^1.1.4",
  7156. "symfony/finder": "~3.4.5 ||^4.2 || ^5.0 || ^6.0",
  7157. "symfony/yaml": "~3.4.5 || ^4.2|| ^5.0 || ^6.0",
  7158. "webflo/drupal-finder": "^1.2"
  7159. },
  7160. "require-dev": {
  7161. "behat/mink": "^1.8",
  7162. "composer/installers": "^1.9",
  7163. "drupal/core-recommended": "^8.8@alpha || ^9.0",
  7164. "drush/drush": "^9.6 || ^10.0 || ^11",
  7165. "phpstan/extension-installer": "^1.1",
  7166. "phpstan/phpstan-strict-rules": "^1.0",
  7167. "phpunit/phpunit": "^6.5 || ^7.5 || ^8.0 || ^9",
  7168. "slevomat/coding-standard": "^7.1",
  7169. "squizlabs/php_codesniffer": "^3.3",
  7170. "symfony/phpunit-bridge": "^3.4.3 || ^4.4 || ^5.4 || ^6.0"
  7171. },
  7172. "suggest": {
  7173. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  7174. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  7175. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  7176. },
  7177. "type": "phpstan-extension",
  7178. "extra": {
  7179. "branch-alias": {
  7180. "dev-main": "1.0-dev"
  7181. },
  7182. "installer-paths": {
  7183. "tests/fixtures/drupal/core": [
  7184. "type:drupal-core"
  7185. ],
  7186. "tests/fixtures/drupal/libraries/{$name}": [
  7187. "type:drupal-library"
  7188. ],
  7189. "tests/fixtures/drupal/modules/contrib/{$name}": [
  7190. "type:drupal-module"
  7191. ],
  7192. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  7193. "type:drupal-profile"
  7194. ],
  7195. "tests/fixtures/drupal/themes/contrib/{$name}": [
  7196. "type:drupal-theme"
  7197. ]
  7198. },
  7199. "phpstan": {
  7200. "includes": [
  7201. "extension.neon",
  7202. "rules.neon"
  7203. ]
  7204. }
  7205. },
  7206. "autoload": {
  7207. "psr-4": {
  7208. "mglaman\\PHPStanDrupal\\": "src/"
  7209. }
  7210. },
  7211. "notification-url": "https://packagist.org/downloads/",
  7212. "license": [
  7213. "MIT"
  7214. ],
  7215. "authors": [
  7216. {
  7217. "name": "Matt Glaman",
  7218. "email": "nmd.matt@gmail.com"
  7219. }
  7220. ],
  7221. "description": "Drupal extension and rules for PHPStan",
  7222. "support": {
  7223. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  7224. "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.1"
  7225. },
  7226. "funding": [
  7227. {
  7228. "url": "https://github.com/mglaman",
  7229. "type": "github"
  7230. },
  7231. {
  7232. "url": "https://opencollective.com/phpstan-drupal",
  7233. "type": "open_collective"
  7234. },
  7235. {
  7236. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  7237. "type": "tidelift"
  7238. }
  7239. ],
  7240. "time": "2023-11-03T13:17:28+00:00"
  7241. },
  7242. {
  7243. "name": "nikic/php-parser",
  7244. "version": "v4.19.1",
  7245. "source": {
  7246. "type": "git",
  7247. "url": "https://github.com/nikic/PHP-Parser.git",
  7248. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b"
  7249. },
  7250. "dist": {
  7251. "type": "zip",
  7252. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4e1b88d21c69391150ace211e9eaf05810858d0b",
  7253. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b",
  7254. "shasum": ""
  7255. },
  7256. "require": {
  7257. "ext-tokenizer": "*",
  7258. "php": ">=7.1"
  7259. },
  7260. "require-dev": {
  7261. "ircmaxell/php-yacc": "^0.0.7",
  7262. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  7263. },
  7264. "bin": [
  7265. "bin/php-parse"
  7266. ],
  7267. "type": "library",
  7268. "extra": {
  7269. "branch-alias": {
  7270. "dev-master": "4.9-dev"
  7271. }
  7272. },
  7273. "autoload": {
  7274. "psr-4": {
  7275. "PhpParser\\": "lib/PhpParser"
  7276. }
  7277. },
  7278. "notification-url": "https://packagist.org/downloads/",
  7279. "license": [
  7280. "BSD-3-Clause"
  7281. ],
  7282. "authors": [
  7283. {
  7284. "name": "Nikita Popov"
  7285. }
  7286. ],
  7287. "description": "A PHP parser written in PHP",
  7288. "keywords": [
  7289. "parser",
  7290. "php"
  7291. ],
  7292. "support": {
  7293. "issues": "https://github.com/nikic/PHP-Parser/issues",
  7294. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.1"
  7295. },
  7296. "time": "2024-03-17T08:10:35+00:00"
  7297. },
  7298. {
  7299. "name": "pear/archive_tar",
  7300. "version": "1.4.14",
  7301. "source": {
  7302. "type": "git",
  7303. "url": "https://github.com/pear/Archive_Tar.git",
  7304. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  7305. },
  7306. "dist": {
  7307. "type": "zip",
  7308. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  7309. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  7310. "shasum": ""
  7311. },
  7312. "require": {
  7313. "pear/pear-core-minimal": "^1.10.0alpha2",
  7314. "php": ">=5.2.0"
  7315. },
  7316. "require-dev": {
  7317. "phpunit/phpunit": "*"
  7318. },
  7319. "suggest": {
  7320. "ext-bz2": "Bz2 compression support.",
  7321. "ext-xz": "Lzma2 compression support.",
  7322. "ext-zlib": "Gzip compression support."
  7323. },
  7324. "type": "library",
  7325. "extra": {
  7326. "branch-alias": {
  7327. "dev-master": "1.4.x-dev"
  7328. }
  7329. },
  7330. "autoload": {
  7331. "psr-0": {
  7332. "Archive_Tar": ""
  7333. }
  7334. },
  7335. "notification-url": "https://packagist.org/downloads/",
  7336. "include-path": [
  7337. "./"
  7338. ],
  7339. "license": [
  7340. "BSD-3-Clause"
  7341. ],
  7342. "authors": [
  7343. {
  7344. "name": "Vincent Blavet",
  7345. "email": "vincent@phpconcept.net"
  7346. },
  7347. {
  7348. "name": "Greg Beaver",
  7349. "email": "greg@chiaraquartet.net"
  7350. },
  7351. {
  7352. "name": "Michiel Rook",
  7353. "email": "mrook@php.net"
  7354. }
  7355. ],
  7356. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  7357. "homepage": "https://github.com/pear/Archive_Tar",
  7358. "keywords": [
  7359. "archive",
  7360. "tar"
  7361. ],
  7362. "support": {
  7363. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  7364. "source": "https://github.com/pear/Archive_Tar"
  7365. },
  7366. "funding": [
  7367. {
  7368. "url": "https://github.com/mrook",
  7369. "type": "github"
  7370. },
  7371. {
  7372. "url": "https://www.patreon.com/michielrook",
  7373. "type": "patreon"
  7374. }
  7375. ],
  7376. "time": "2021-07-20T13:53:39+00:00"
  7377. },
  7378. {
  7379. "name": "pear/console_getopt",
  7380. "version": "v1.4.3",
  7381. "source": {
  7382. "type": "git",
  7383. "url": "https://github.com/pear/Console_Getopt.git",
  7384. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  7385. },
  7386. "dist": {
  7387. "type": "zip",
  7388. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7389. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7390. "shasum": ""
  7391. },
  7392. "type": "library",
  7393. "autoload": {
  7394. "psr-0": {
  7395. "Console": "./"
  7396. }
  7397. },
  7398. "notification-url": "https://packagist.org/downloads/",
  7399. "include-path": [
  7400. "./"
  7401. ],
  7402. "license": [
  7403. "BSD-2-Clause"
  7404. ],
  7405. "authors": [
  7406. {
  7407. "name": "Andrei Zmievski",
  7408. "email": "andrei@php.net",
  7409. "role": "Lead"
  7410. },
  7411. {
  7412. "name": "Stig Bakken",
  7413. "email": "stig@php.net",
  7414. "role": "Developer"
  7415. },
  7416. {
  7417. "name": "Greg Beaver",
  7418. "email": "cellog@php.net",
  7419. "role": "Helper"
  7420. }
  7421. ],
  7422. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  7423. "support": {
  7424. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  7425. "source": "https://github.com/pear/Console_Getopt"
  7426. },
  7427. "time": "2019-11-20T18:27:48+00:00"
  7428. },
  7429. {
  7430. "name": "pear/pear-core-minimal",
  7431. "version": "v1.10.15",
  7432. "source": {
  7433. "type": "git",
  7434. "url": "https://github.com/pear/pear-core-minimal.git",
  7435. "reference": "ce0adade8b97561656ace07cdaac4751c271ea8c"
  7436. },
  7437. "dist": {
  7438. "type": "zip",
  7439. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/ce0adade8b97561656ace07cdaac4751c271ea8c",
  7440. "reference": "ce0adade8b97561656ace07cdaac4751c271ea8c",
  7441. "shasum": ""
  7442. },
  7443. "require": {
  7444. "pear/console_getopt": "~1.4",
  7445. "pear/pear_exception": "~1.0",
  7446. "php": ">=5.4"
  7447. },
  7448. "replace": {
  7449. "rsky/pear-core-min": "self.version"
  7450. },
  7451. "type": "library",
  7452. "autoload": {
  7453. "classmap": [
  7454. "src/"
  7455. ]
  7456. },
  7457. "notification-url": "https://packagist.org/downloads/",
  7458. "include-path": [
  7459. "src/"
  7460. ],
  7461. "license": [
  7462. "BSD-3-Clause"
  7463. ],
  7464. "authors": [
  7465. {
  7466. "name": "Christian Weiske",
  7467. "email": "cweiske@php.net",
  7468. "role": "Lead"
  7469. }
  7470. ],
  7471. "description": "Minimal set of PEAR core files to be used as composer dependency",
  7472. "support": {
  7473. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  7474. "source": "https://github.com/pear/pear-core-minimal"
  7475. },
  7476. "time": "2024-03-16T18:41:45+00:00"
  7477. },
  7478. {
  7479. "name": "pear/pear_exception",
  7480. "version": "v1.0.2",
  7481. "source": {
  7482. "type": "git",
  7483. "url": "https://github.com/pear/PEAR_Exception.git",
  7484. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  7485. },
  7486. "dist": {
  7487. "type": "zip",
  7488. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  7489. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  7490. "shasum": ""
  7491. },
  7492. "require": {
  7493. "php": ">=5.2.0"
  7494. },
  7495. "require-dev": {
  7496. "phpunit/phpunit": "<9"
  7497. },
  7498. "type": "class",
  7499. "extra": {
  7500. "branch-alias": {
  7501. "dev-master": "1.0.x-dev"
  7502. }
  7503. },
  7504. "autoload": {
  7505. "classmap": [
  7506. "PEAR/"
  7507. ]
  7508. },
  7509. "notification-url": "https://packagist.org/downloads/",
  7510. "include-path": [
  7511. "."
  7512. ],
  7513. "license": [
  7514. "BSD-2-Clause"
  7515. ],
  7516. "authors": [
  7517. {
  7518. "name": "Helgi Thormar",
  7519. "email": "dufuz@php.net"
  7520. },
  7521. {
  7522. "name": "Greg Beaver",
  7523. "email": "cellog@php.net"
  7524. }
  7525. ],
  7526. "description": "The PEAR Exception base class.",
  7527. "homepage": "https://github.com/pear/PEAR_Exception",
  7528. "keywords": [
  7529. "exception"
  7530. ],
  7531. "support": {
  7532. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  7533. "source": "https://github.com/pear/PEAR_Exception"
  7534. },
  7535. "time": "2021-03-21T15:43:46+00:00"
  7536. },
  7537. {
  7538. "name": "phpstan/phpstan",
  7539. "version": "1.12.3",
  7540. "source": {
  7541. "type": "git",
  7542. "url": "https://github.com/phpstan/phpstan.git",
  7543. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009"
  7544. },
  7545. "dist": {
  7546. "type": "zip",
  7547. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0fcbf194ab63d8159bb70d9aa3e1350051632009",
  7548. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009",
  7549. "shasum": ""
  7550. },
  7551. "require": {
  7552. "php": "^7.2|^8.0"
  7553. },
  7554. "conflict": {
  7555. "phpstan/phpstan-shim": "*"
  7556. },
  7557. "bin": [
  7558. "phpstan",
  7559. "phpstan.phar"
  7560. ],
  7561. "type": "library",
  7562. "autoload": {
  7563. "files": [
  7564. "bootstrap.php"
  7565. ]
  7566. },
  7567. "notification-url": "https://packagist.org/downloads/",
  7568. "license": [
  7569. "MIT"
  7570. ],
  7571. "description": "PHPStan - PHP Static Analysis Tool",
  7572. "keywords": [
  7573. "dev",
  7574. "static analysis"
  7575. ],
  7576. "support": {
  7577. "docs": "https://phpstan.org/user-guide/getting-started",
  7578. "forum": "https://github.com/phpstan/phpstan/discussions",
  7579. "issues": "https://github.com/phpstan/phpstan/issues",
  7580. "security": "https://github.com/phpstan/phpstan/security/policy",
  7581. "source": "https://github.com/phpstan/phpstan-src"
  7582. },
  7583. "funding": [
  7584. {
  7585. "url": "https://github.com/ondrejmirtes",
  7586. "type": "github"
  7587. },
  7588. {
  7589. "url": "https://github.com/phpstan",
  7590. "type": "github"
  7591. }
  7592. ],
  7593. "time": "2024-09-09T08:10:35+00:00"
  7594. },
  7595. {
  7596. "name": "phpstan/phpstan-deprecation-rules",
  7597. "version": "1.2.1",
  7598. "source": {
  7599. "type": "git",
  7600. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  7601. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82"
  7602. },
  7603. "dist": {
  7604. "type": "zip",
  7605. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7606. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7607. "shasum": ""
  7608. },
  7609. "require": {
  7610. "php": "^7.2 || ^8.0",
  7611. "phpstan/phpstan": "^1.12"
  7612. },
  7613. "require-dev": {
  7614. "php-parallel-lint/php-parallel-lint": "^1.2",
  7615. "phpstan/phpstan-phpunit": "^1.0",
  7616. "phpunit/phpunit": "^9.5"
  7617. },
  7618. "type": "phpstan-extension",
  7619. "extra": {
  7620. "phpstan": {
  7621. "includes": [
  7622. "rules.neon"
  7623. ]
  7624. }
  7625. },
  7626. "autoload": {
  7627. "psr-4": {
  7628. "PHPStan\\": "src/"
  7629. }
  7630. },
  7631. "notification-url": "https://packagist.org/downloads/",
  7632. "license": [
  7633. "MIT"
  7634. ],
  7635. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  7636. "support": {
  7637. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  7638. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.2.1"
  7639. },
  7640. "time": "2024-09-11T15:52:35+00:00"
  7641. },
  7642. {
  7643. "name": "psr/cache",
  7644. "version": "1.0.1",
  7645. "source": {
  7646. "type": "git",
  7647. "url": "https://github.com/php-fig/cache.git",
  7648. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  7649. },
  7650. "dist": {
  7651. "type": "zip",
  7652. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  7653. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  7654. "shasum": ""
  7655. },
  7656. "require": {
  7657. "php": ">=5.3.0"
  7658. },
  7659. "type": "library",
  7660. "extra": {
  7661. "branch-alias": {
  7662. "dev-master": "1.0.x-dev"
  7663. }
  7664. },
  7665. "autoload": {
  7666. "psr-4": {
  7667. "Psr\\Cache\\": "src/"
  7668. }
  7669. },
  7670. "notification-url": "https://packagist.org/downloads/",
  7671. "license": [
  7672. "MIT"
  7673. ],
  7674. "authors": [
  7675. {
  7676. "name": "PHP-FIG",
  7677. "homepage": "http://www.php-fig.org/"
  7678. }
  7679. ],
  7680. "description": "Common interface for caching libraries",
  7681. "keywords": [
  7682. "cache",
  7683. "psr",
  7684. "psr-6"
  7685. ],
  7686. "support": {
  7687. "source": "https://github.com/php-fig/cache/tree/master"
  7688. },
  7689. "time": "2016-08-06T20:24:11+00:00"
  7690. },
  7691. {
  7692. "name": "psr/container",
  7693. "version": "1.1.2",
  7694. "source": {
  7695. "type": "git",
  7696. "url": "https://github.com/php-fig/container.git",
  7697. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  7698. },
  7699. "dist": {
  7700. "type": "zip",
  7701. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  7702. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  7703. "shasum": ""
  7704. },
  7705. "require": {
  7706. "php": ">=7.4.0"
  7707. },
  7708. "type": "library",
  7709. "autoload": {
  7710. "psr-4": {
  7711. "Psr\\Container\\": "src/"
  7712. }
  7713. },
  7714. "notification-url": "https://packagist.org/downloads/",
  7715. "license": [
  7716. "MIT"
  7717. ],
  7718. "authors": [
  7719. {
  7720. "name": "PHP-FIG",
  7721. "homepage": "https://www.php-fig.org/"
  7722. }
  7723. ],
  7724. "description": "Common Container Interface (PHP FIG PSR-11)",
  7725. "homepage": "https://github.com/php-fig/container",
  7726. "keywords": [
  7727. "PSR-11",
  7728. "container",
  7729. "container-interface",
  7730. "container-interop",
  7731. "psr"
  7732. ],
  7733. "support": {
  7734. "issues": "https://github.com/php-fig/container/issues",
  7735. "source": "https://github.com/php-fig/container/tree/1.1.2"
  7736. },
  7737. "time": "2021-11-05T16:50:12+00:00"
  7738. },
  7739. {
  7740. "name": "psr/http-factory",
  7741. "version": "1.0.2",
  7742. "source": {
  7743. "type": "git",
  7744. "url": "https://github.com/php-fig/http-factory.git",
  7745. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  7746. },
  7747. "dist": {
  7748. "type": "zip",
  7749. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  7750. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  7751. "shasum": ""
  7752. },
  7753. "require": {
  7754. "php": ">=7.0.0",
  7755. "psr/http-message": "^1.0 || ^2.0"
  7756. },
  7757. "type": "library",
  7758. "extra": {
  7759. "branch-alias": {
  7760. "dev-master": "1.0.x-dev"
  7761. }
  7762. },
  7763. "autoload": {
  7764. "psr-4": {
  7765. "Psr\\Http\\Message\\": "src/"
  7766. }
  7767. },
  7768. "notification-url": "https://packagist.org/downloads/",
  7769. "license": [
  7770. "MIT"
  7771. ],
  7772. "authors": [
  7773. {
  7774. "name": "PHP-FIG",
  7775. "homepage": "https://www.php-fig.org/"
  7776. }
  7777. ],
  7778. "description": "Common interfaces for PSR-7 HTTP message factories",
  7779. "keywords": [
  7780. "factory",
  7781. "http",
  7782. "message",
  7783. "psr",
  7784. "psr-17",
  7785. "psr-7",
  7786. "request",
  7787. "response"
  7788. ],
  7789. "support": {
  7790. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  7791. },
  7792. "time": "2023-04-10T20:10:41+00:00"
  7793. },
  7794. {
  7795. "name": "psr/http-message",
  7796. "version": "1.0.1",
  7797. "source": {
  7798. "type": "git",
  7799. "url": "https://github.com/php-fig/http-message.git",
  7800. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  7801. },
  7802. "dist": {
  7803. "type": "zip",
  7804. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  7805. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  7806. "shasum": ""
  7807. },
  7808. "require": {
  7809. "php": ">=5.3.0"
  7810. },
  7811. "type": "library",
  7812. "extra": {
  7813. "branch-alias": {
  7814. "dev-master": "1.0.x-dev"
  7815. }
  7816. },
  7817. "autoload": {
  7818. "psr-4": {
  7819. "Psr\\Http\\Message\\": "src/"
  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 HTTP messages",
  7833. "homepage": "https://github.com/php-fig/http-message",
  7834. "keywords": [
  7835. "http",
  7836. "http-message",
  7837. "psr",
  7838. "psr-7",
  7839. "request",
  7840. "response"
  7841. ],
  7842. "support": {
  7843. "source": "https://github.com/php-fig/http-message/tree/master"
  7844. },
  7845. "time": "2016-08-06T14:39:51+00:00"
  7846. },
  7847. {
  7848. "name": "psr/log",
  7849. "version": "1.1.4",
  7850. "source": {
  7851. "type": "git",
  7852. "url": "https://github.com/php-fig/log.git",
  7853. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  7854. },
  7855. "dist": {
  7856. "type": "zip",
  7857. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  7858. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  7859. "shasum": ""
  7860. },
  7861. "require": {
  7862. "php": ">=5.3.0"
  7863. },
  7864. "type": "library",
  7865. "extra": {
  7866. "branch-alias": {
  7867. "dev-master": "1.1.x-dev"
  7868. }
  7869. },
  7870. "autoload": {
  7871. "psr-4": {
  7872. "Psr\\Log\\": "Psr/Log/"
  7873. }
  7874. },
  7875. "notification-url": "https://packagist.org/downloads/",
  7876. "license": [
  7877. "MIT"
  7878. ],
  7879. "authors": [
  7880. {
  7881. "name": "PHP-FIG",
  7882. "homepage": "https://www.php-fig.org/"
  7883. }
  7884. ],
  7885. "description": "Common interface for logging libraries",
  7886. "homepage": "https://github.com/php-fig/log",
  7887. "keywords": [
  7888. "log",
  7889. "psr",
  7890. "psr-3"
  7891. ],
  7892. "support": {
  7893. "source": "https://github.com/php-fig/log/tree/1.1.4"
  7894. },
  7895. "time": "2021-05-03T11:20:27+00:00"
  7896. },
  7897. {
  7898. "name": "psy/psysh",
  7899. "version": "v0.10.12",
  7900. "source": {
  7901. "type": "git",
  7902. "url": "https://github.com/bobthecow/psysh.git",
  7903. "reference": "a0d9981aa07ecfcbea28e4bfa868031cca121e7d"
  7904. },
  7905. "dist": {
  7906. "type": "zip",
  7907. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a0d9981aa07ecfcbea28e4bfa868031cca121e7d",
  7908. "reference": "a0d9981aa07ecfcbea28e4bfa868031cca121e7d",
  7909. "shasum": ""
  7910. },
  7911. "require": {
  7912. "ext-json": "*",
  7913. "ext-tokenizer": "*",
  7914. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  7915. "php": "^8.0 || ^7.0 || ^5.5.9",
  7916. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  7917. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  7918. },
  7919. "require-dev": {
  7920. "bamarni/composer-bin-plugin": "^1.2",
  7921. "hoa/console": "3.17.*"
  7922. },
  7923. "suggest": {
  7924. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7925. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  7926. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  7927. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  7928. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  7929. },
  7930. "bin": [
  7931. "bin/psysh"
  7932. ],
  7933. "type": "library",
  7934. "extra": {
  7935. "branch-alias": {
  7936. "dev-main": "0.10.x-dev"
  7937. }
  7938. },
  7939. "autoload": {
  7940. "files": [
  7941. "src/functions.php"
  7942. ],
  7943. "psr-4": {
  7944. "Psy\\": "src/"
  7945. }
  7946. },
  7947. "notification-url": "https://packagist.org/downloads/",
  7948. "license": [
  7949. "MIT"
  7950. ],
  7951. "authors": [
  7952. {
  7953. "name": "Justin Hileman",
  7954. "email": "justin@justinhileman.info",
  7955. "homepage": "http://justinhileman.com"
  7956. }
  7957. ],
  7958. "description": "An interactive shell for modern PHP.",
  7959. "homepage": "http://psysh.org",
  7960. "keywords": [
  7961. "REPL",
  7962. "console",
  7963. "interactive",
  7964. "shell"
  7965. ],
  7966. "support": {
  7967. "issues": "https://github.com/bobthecow/psysh/issues",
  7968. "source": "https://github.com/bobthecow/psysh/tree/v0.10.12"
  7969. },
  7970. "time": "2021-11-30T14:05:36+00:00"
  7971. },
  7972. {
  7973. "name": "ralouphie/getallheaders",
  7974. "version": "3.0.3",
  7975. "source": {
  7976. "type": "git",
  7977. "url": "https://github.com/ralouphie/getallheaders.git",
  7978. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7979. },
  7980. "dist": {
  7981. "type": "zip",
  7982. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7983. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7984. "shasum": ""
  7985. },
  7986. "require": {
  7987. "php": ">=5.6"
  7988. },
  7989. "require-dev": {
  7990. "php-coveralls/php-coveralls": "^2.1",
  7991. "phpunit/phpunit": "^5 || ^6.5"
  7992. },
  7993. "type": "library",
  7994. "autoload": {
  7995. "files": [
  7996. "src/getallheaders.php"
  7997. ]
  7998. },
  7999. "notification-url": "https://packagist.org/downloads/",
  8000. "license": [
  8001. "MIT"
  8002. ],
  8003. "authors": [
  8004. {
  8005. "name": "Ralph Khattar",
  8006. "email": "ralph.khattar@gmail.com"
  8007. }
  8008. ],
  8009. "description": "A polyfill for getallheaders.",
  8010. "support": {
  8011. "issues": "https://github.com/ralouphie/getallheaders/issues",
  8012. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  8013. },
  8014. "time": "2019-03-08T08:55:37+00:00"
  8015. },
  8016. {
  8017. "name": "stack/builder",
  8018. "version": "v1.0.6",
  8019. "source": {
  8020. "type": "git",
  8021. "url": "https://github.com/stackphp/builder.git",
  8022. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c"
  8023. },
  8024. "dist": {
  8025. "type": "zip",
  8026. "url": "https://api.github.com/repos/stackphp/builder/zipball/a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  8027. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  8028. "shasum": ""
  8029. },
  8030. "require": {
  8031. "php": ">=7.2.0",
  8032. "symfony/http-foundation": "~2.1|~3.0|~4.0|~5.0",
  8033. "symfony/http-kernel": "~2.1|~3.0|~4.0|~5.0"
  8034. },
  8035. "require-dev": {
  8036. "phpunit/phpunit": "~8.0",
  8037. "symfony/routing": "^5.0"
  8038. },
  8039. "type": "library",
  8040. "extra": {
  8041. "branch-alias": {
  8042. "dev-master": "1.0-dev"
  8043. }
  8044. },
  8045. "autoload": {
  8046. "psr-0": {
  8047. "Stack": "src"
  8048. }
  8049. },
  8050. "notification-url": "https://packagist.org/downloads/",
  8051. "license": [
  8052. "MIT"
  8053. ],
  8054. "authors": [
  8055. {
  8056. "name": "Igor Wiedler",
  8057. "email": "igor@wiedler.ch"
  8058. }
  8059. ],
  8060. "description": "Builder for stack middleware based on HttpKernelInterface.",
  8061. "keywords": [
  8062. "stack"
  8063. ],
  8064. "support": {
  8065. "issues": "https://github.com/stackphp/builder/issues",
  8066. "source": "https://github.com/stackphp/builder/tree/v1.0.6"
  8067. },
  8068. "abandoned": true,
  8069. "time": "2020-01-30T12:17:27+00:00"
  8070. },
  8071. {
  8072. "name": "symfony-cmf/routing",
  8073. "version": "2.3.4",
  8074. "source": {
  8075. "type": "git",
  8076. "url": "https://github.com/symfony-cmf/Routing.git",
  8077. "reference": "bbcdf2f6301d740454ba9ebb8adaefd436c36a6b"
  8078. },
  8079. "dist": {
  8080. "type": "zip",
  8081. "url": "https://api.github.com/repos/symfony-cmf/Routing/zipball/bbcdf2f6301d740454ba9ebb8adaefd436c36a6b",
  8082. "reference": "bbcdf2f6301d740454ba9ebb8adaefd436c36a6b",
  8083. "shasum": ""
  8084. },
  8085. "require": {
  8086. "php": "^7.2 || ^8.0",
  8087. "psr/log": "^1.0 || ^2.0 || ^3.0",
  8088. "symfony/http-kernel": "^4.4 || ^5.0",
  8089. "symfony/routing": "^4.4 || ^5.0"
  8090. },
  8091. "require-dev": {
  8092. "symfony-cmf/testing": "^3@dev",
  8093. "symfony/config": "^4.4 || ^5.0",
  8094. "symfony/dependency-injection": "^4.4 || ^5.0",
  8095. "symfony/event-dispatcher": "^4.4 || ^5.0",
  8096. "symfony/phpunit-bridge": "^5.0"
  8097. },
  8098. "suggest": {
  8099. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (^4.4 || ^5.0)"
  8100. },
  8101. "type": "library",
  8102. "extra": {
  8103. "branch-alias": {
  8104. "dev-master": "2.x-dev"
  8105. }
  8106. },
  8107. "autoload": {
  8108. "psr-4": {
  8109. "Symfony\\Cmf\\Component\\Routing\\": "src/"
  8110. }
  8111. },
  8112. "notification-url": "https://packagist.org/downloads/",
  8113. "license": [
  8114. "MIT"
  8115. ],
  8116. "authors": [
  8117. {
  8118. "name": "Symfony CMF Community",
  8119. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  8120. }
  8121. ],
  8122. "description": "Extends the Symfony routing component for dynamic routes and chaining several routers",
  8123. "homepage": "http://cmf.symfony.com",
  8124. "keywords": [
  8125. "database",
  8126. "routing"
  8127. ],
  8128. "support": {
  8129. "issues": "https://github.com/symfony-cmf/Routing/issues",
  8130. "source": "https://github.com/symfony-cmf/Routing/tree/2.3.4"
  8131. },
  8132. "time": "2021-11-08T16:33:10+00:00"
  8133. },
  8134. {
  8135. "name": "symfony/console",
  8136. "version": "v4.4.49",
  8137. "source": {
  8138. "type": "git",
  8139. "url": "https://github.com/symfony/console.git",
  8140. "reference": "33fa45ffc81fdcc1ca368d4946da859c8cdb58d9"
  8141. },
  8142. "dist": {
  8143. "type": "zip",
  8144. "url": "https://api.github.com/repos/symfony/console/zipball/33fa45ffc81fdcc1ca368d4946da859c8cdb58d9",
  8145. "reference": "33fa45ffc81fdcc1ca368d4946da859c8cdb58d9",
  8146. "shasum": ""
  8147. },
  8148. "require": {
  8149. "php": ">=7.1.3",
  8150. "symfony/polyfill-mbstring": "~1.0",
  8151. "symfony/polyfill-php73": "^1.8",
  8152. "symfony/polyfill-php80": "^1.16",
  8153. "symfony/service-contracts": "^1.1|^2"
  8154. },
  8155. "conflict": {
  8156. "psr/log": ">=3",
  8157. "symfony/dependency-injection": "<3.4",
  8158. "symfony/event-dispatcher": "<4.3|>=5",
  8159. "symfony/lock": "<4.4",
  8160. "symfony/process": "<3.3"
  8161. },
  8162. "provide": {
  8163. "psr/log-implementation": "1.0|2.0"
  8164. },
  8165. "require-dev": {
  8166. "psr/log": "^1|^2",
  8167. "symfony/config": "^3.4|^4.0|^5.0",
  8168. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  8169. "symfony/event-dispatcher": "^4.3",
  8170. "symfony/lock": "^4.4|^5.0",
  8171. "symfony/process": "^3.4|^4.0|^5.0",
  8172. "symfony/var-dumper": "^4.3|^5.0"
  8173. },
  8174. "suggest": {
  8175. "psr/log": "For using the console logger",
  8176. "symfony/event-dispatcher": "",
  8177. "symfony/lock": "",
  8178. "symfony/process": ""
  8179. },
  8180. "type": "library",
  8181. "autoload": {
  8182. "psr-4": {
  8183. "Symfony\\Component\\Console\\": ""
  8184. },
  8185. "exclude-from-classmap": [
  8186. "/Tests/"
  8187. ]
  8188. },
  8189. "notification-url": "https://packagist.org/downloads/",
  8190. "license": [
  8191. "MIT"
  8192. ],
  8193. "authors": [
  8194. {
  8195. "name": "Fabien Potencier",
  8196. "email": "fabien@symfony.com"
  8197. },
  8198. {
  8199. "name": "Symfony Community",
  8200. "homepage": "https://symfony.com/contributors"
  8201. }
  8202. ],
  8203. "description": "Eases the creation of beautiful and testable command line interfaces",
  8204. "homepage": "https://symfony.com",
  8205. "support": {
  8206. "source": "https://github.com/symfony/console/tree/v4.4.49"
  8207. },
  8208. "funding": [
  8209. {
  8210. "url": "https://symfony.com/sponsor",
  8211. "type": "custom"
  8212. },
  8213. {
  8214. "url": "https://github.com/fabpot",
  8215. "type": "github"
  8216. },
  8217. {
  8218. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8219. "type": "tidelift"
  8220. }
  8221. ],
  8222. "time": "2022-11-05T17:10:16+00:00"
  8223. },
  8224. {
  8225. "name": "symfony/debug",
  8226. "version": "v4.4.44",
  8227. "source": {
  8228. "type": "git",
  8229. "url": "https://github.com/symfony/debug.git",
  8230. "reference": "1a692492190773c5310bc7877cb590c04c2f05be"
  8231. },
  8232. "dist": {
  8233. "type": "zip",
  8234. "url": "https://api.github.com/repos/symfony/debug/zipball/1a692492190773c5310bc7877cb590c04c2f05be",
  8235. "reference": "1a692492190773c5310bc7877cb590c04c2f05be",
  8236. "shasum": ""
  8237. },
  8238. "require": {
  8239. "php": ">=7.1.3",
  8240. "psr/log": "^1|^2|^3"
  8241. },
  8242. "conflict": {
  8243. "symfony/http-kernel": "<3.4"
  8244. },
  8245. "require-dev": {
  8246. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  8247. },
  8248. "type": "library",
  8249. "autoload": {
  8250. "psr-4": {
  8251. "Symfony\\Component\\Debug\\": ""
  8252. },
  8253. "exclude-from-classmap": [
  8254. "/Tests/"
  8255. ]
  8256. },
  8257. "notification-url": "https://packagist.org/downloads/",
  8258. "license": [
  8259. "MIT"
  8260. ],
  8261. "authors": [
  8262. {
  8263. "name": "Fabien Potencier",
  8264. "email": "fabien@symfony.com"
  8265. },
  8266. {
  8267. "name": "Symfony Community",
  8268. "homepage": "https://symfony.com/contributors"
  8269. }
  8270. ],
  8271. "description": "Provides tools to ease debugging PHP code",
  8272. "homepage": "https://symfony.com",
  8273. "support": {
  8274. "source": "https://github.com/symfony/debug/tree/v4.4.44"
  8275. },
  8276. "funding": [
  8277. {
  8278. "url": "https://symfony.com/sponsor",
  8279. "type": "custom"
  8280. },
  8281. {
  8282. "url": "https://github.com/fabpot",
  8283. "type": "github"
  8284. },
  8285. {
  8286. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8287. "type": "tidelift"
  8288. }
  8289. ],
  8290. "abandoned": "symfony/error-handler",
  8291. "time": "2022-07-28T16:29:46+00:00"
  8292. },
  8293. {
  8294. "name": "symfony/dependency-injection",
  8295. "version": "v4.4.49",
  8296. "source": {
  8297. "type": "git",
  8298. "url": "https://github.com/symfony/dependency-injection.git",
  8299. "reference": "9065fe97dbd38a897e95ea254eb5ddfe1310f734"
  8300. },
  8301. "dist": {
  8302. "type": "zip",
  8303. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/9065fe97dbd38a897e95ea254eb5ddfe1310f734",
  8304. "reference": "9065fe97dbd38a897e95ea254eb5ddfe1310f734",
  8305. "shasum": ""
  8306. },
  8307. "require": {
  8308. "php": ">=7.1.3",
  8309. "psr/container": "^1.0",
  8310. "symfony/polyfill-php80": "^1.16",
  8311. "symfony/service-contracts": "^1.1.6|^2"
  8312. },
  8313. "conflict": {
  8314. "symfony/config": "<4.3|>=5.0",
  8315. "symfony/finder": "<3.4",
  8316. "symfony/proxy-manager-bridge": "<3.4",
  8317. "symfony/yaml": "<4.4.26"
  8318. },
  8319. "provide": {
  8320. "psr/container-implementation": "1.0",
  8321. "symfony/service-implementation": "1.0|2.0"
  8322. },
  8323. "require-dev": {
  8324. "symfony/config": "^4.3",
  8325. "symfony/expression-language": "^3.4|^4.0|^5.0",
  8326. "symfony/yaml": "^4.4.26|^5.0"
  8327. },
  8328. "suggest": {
  8329. "symfony/config": "",
  8330. "symfony/expression-language": "For using expressions in service container configuration",
  8331. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  8332. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  8333. "symfony/yaml": ""
  8334. },
  8335. "type": "library",
  8336. "autoload": {
  8337. "psr-4": {
  8338. "Symfony\\Component\\DependencyInjection\\": ""
  8339. },
  8340. "exclude-from-classmap": [
  8341. "/Tests/"
  8342. ]
  8343. },
  8344. "notification-url": "https://packagist.org/downloads/",
  8345. "license": [
  8346. "MIT"
  8347. ],
  8348. "authors": [
  8349. {
  8350. "name": "Fabien Potencier",
  8351. "email": "fabien@symfony.com"
  8352. },
  8353. {
  8354. "name": "Symfony Community",
  8355. "homepage": "https://symfony.com/contributors"
  8356. }
  8357. ],
  8358. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  8359. "homepage": "https://symfony.com",
  8360. "support": {
  8361. "source": "https://github.com/symfony/dependency-injection/tree/v4.4.49"
  8362. },
  8363. "funding": [
  8364. {
  8365. "url": "https://symfony.com/sponsor",
  8366. "type": "custom"
  8367. },
  8368. {
  8369. "url": "https://github.com/fabpot",
  8370. "type": "github"
  8371. },
  8372. {
  8373. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8374. "type": "tidelift"
  8375. }
  8376. ],
  8377. "time": "2022-11-16T16:18:09+00:00"
  8378. },
  8379. {
  8380. "name": "symfony/deprecation-contracts",
  8381. "version": "v2.5.3",
  8382. "source": {
  8383. "type": "git",
  8384. "url": "https://github.com/symfony/deprecation-contracts.git",
  8385. "reference": "80d075412b557d41002320b96a096ca65aa2c98d"
  8386. },
  8387. "dist": {
  8388. "type": "zip",
  8389. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/80d075412b557d41002320b96a096ca65aa2c98d",
  8390. "reference": "80d075412b557d41002320b96a096ca65aa2c98d",
  8391. "shasum": ""
  8392. },
  8393. "require": {
  8394. "php": ">=7.1"
  8395. },
  8396. "type": "library",
  8397. "extra": {
  8398. "branch-alias": {
  8399. "dev-main": "2.5-dev"
  8400. },
  8401. "thanks": {
  8402. "name": "symfony/contracts",
  8403. "url": "https://github.com/symfony/contracts"
  8404. }
  8405. },
  8406. "autoload": {
  8407. "files": [
  8408. "function.php"
  8409. ]
  8410. },
  8411. "notification-url": "https://packagist.org/downloads/",
  8412. "license": [
  8413. "MIT"
  8414. ],
  8415. "authors": [
  8416. {
  8417. "name": "Nicolas Grekas",
  8418. "email": "p@tchwork.com"
  8419. },
  8420. {
  8421. "name": "Symfony Community",
  8422. "homepage": "https://symfony.com/contributors"
  8423. }
  8424. ],
  8425. "description": "A generic function and convention to trigger deprecation notices",
  8426. "homepage": "https://symfony.com",
  8427. "support": {
  8428. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.3"
  8429. },
  8430. "funding": [
  8431. {
  8432. "url": "https://symfony.com/sponsor",
  8433. "type": "custom"
  8434. },
  8435. {
  8436. "url": "https://github.com/fabpot",
  8437. "type": "github"
  8438. },
  8439. {
  8440. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8441. "type": "tidelift"
  8442. }
  8443. ],
  8444. "time": "2023-01-24T14:02:46+00:00"
  8445. },
  8446. {
  8447. "name": "symfony/error-handler",
  8448. "version": "v4.4.44",
  8449. "source": {
  8450. "type": "git",
  8451. "url": "https://github.com/symfony/error-handler.git",
  8452. "reference": "be731658121ef2d8be88f3a1ec938148a9237291"
  8453. },
  8454. "dist": {
  8455. "type": "zip",
  8456. "url": "https://api.github.com/repos/symfony/error-handler/zipball/be731658121ef2d8be88f3a1ec938148a9237291",
  8457. "reference": "be731658121ef2d8be88f3a1ec938148a9237291",
  8458. "shasum": ""
  8459. },
  8460. "require": {
  8461. "php": ">=7.1.3",
  8462. "psr/log": "^1|^2|^3",
  8463. "symfony/debug": "^4.4.5",
  8464. "symfony/var-dumper": "^4.4|^5.0"
  8465. },
  8466. "require-dev": {
  8467. "symfony/http-kernel": "^4.4|^5.0",
  8468. "symfony/serializer": "^4.4|^5.0"
  8469. },
  8470. "type": "library",
  8471. "autoload": {
  8472. "psr-4": {
  8473. "Symfony\\Component\\ErrorHandler\\": ""
  8474. },
  8475. "exclude-from-classmap": [
  8476. "/Tests/"
  8477. ]
  8478. },
  8479. "notification-url": "https://packagist.org/downloads/",
  8480. "license": [
  8481. "MIT"
  8482. ],
  8483. "authors": [
  8484. {
  8485. "name": "Fabien Potencier",
  8486. "email": "fabien@symfony.com"
  8487. },
  8488. {
  8489. "name": "Symfony Community",
  8490. "homepage": "https://symfony.com/contributors"
  8491. }
  8492. ],
  8493. "description": "Provides tools to manage errors and ease debugging PHP code",
  8494. "homepage": "https://symfony.com",
  8495. "support": {
  8496. "source": "https://github.com/symfony/error-handler/tree/v4.4.44"
  8497. },
  8498. "funding": [
  8499. {
  8500. "url": "https://symfony.com/sponsor",
  8501. "type": "custom"
  8502. },
  8503. {
  8504. "url": "https://github.com/fabpot",
  8505. "type": "github"
  8506. },
  8507. {
  8508. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8509. "type": "tidelift"
  8510. }
  8511. ],
  8512. "time": "2022-07-28T16:29:46+00:00"
  8513. },
  8514. {
  8515. "name": "symfony/event-dispatcher",
  8516. "version": "v4.4.44",
  8517. "source": {
  8518. "type": "git",
  8519. "url": "https://github.com/symfony/event-dispatcher.git",
  8520. "reference": "1e866e9e5c1b22168e0ce5f0b467f19bba61266a"
  8521. },
  8522. "dist": {
  8523. "type": "zip",
  8524. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1e866e9e5c1b22168e0ce5f0b467f19bba61266a",
  8525. "reference": "1e866e9e5c1b22168e0ce5f0b467f19bba61266a",
  8526. "shasum": ""
  8527. },
  8528. "require": {
  8529. "php": ">=7.1.3",
  8530. "symfony/event-dispatcher-contracts": "^1.1",
  8531. "symfony/polyfill-php80": "^1.16"
  8532. },
  8533. "conflict": {
  8534. "symfony/dependency-injection": "<3.4"
  8535. },
  8536. "provide": {
  8537. "psr/event-dispatcher-implementation": "1.0",
  8538. "symfony/event-dispatcher-implementation": "1.1"
  8539. },
  8540. "require-dev": {
  8541. "psr/log": "^1|^2|^3",
  8542. "symfony/config": "^3.4|^4.0|^5.0",
  8543. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  8544. "symfony/error-handler": "~3.4|~4.4",
  8545. "symfony/expression-language": "^3.4|^4.0|^5.0",
  8546. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  8547. "symfony/service-contracts": "^1.1|^2",
  8548. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  8549. },
  8550. "suggest": {
  8551. "symfony/dependency-injection": "",
  8552. "symfony/http-kernel": ""
  8553. },
  8554. "type": "library",
  8555. "autoload": {
  8556. "psr-4": {
  8557. "Symfony\\Component\\EventDispatcher\\": ""
  8558. },
  8559. "exclude-from-classmap": [
  8560. "/Tests/"
  8561. ]
  8562. },
  8563. "notification-url": "https://packagist.org/downloads/",
  8564. "license": [
  8565. "MIT"
  8566. ],
  8567. "authors": [
  8568. {
  8569. "name": "Fabien Potencier",
  8570. "email": "fabien@symfony.com"
  8571. },
  8572. {
  8573. "name": "Symfony Community",
  8574. "homepage": "https://symfony.com/contributors"
  8575. }
  8576. ],
  8577. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  8578. "homepage": "https://symfony.com",
  8579. "support": {
  8580. "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.44"
  8581. },
  8582. "funding": [
  8583. {
  8584. "url": "https://symfony.com/sponsor",
  8585. "type": "custom"
  8586. },
  8587. {
  8588. "url": "https://github.com/fabpot",
  8589. "type": "github"
  8590. },
  8591. {
  8592. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8593. "type": "tidelift"
  8594. }
  8595. ],
  8596. "time": "2022-07-20T09:59:04+00:00"
  8597. },
  8598. {
  8599. "name": "symfony/event-dispatcher-contracts",
  8600. "version": "v1.1.13",
  8601. "source": {
  8602. "type": "git",
  8603. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  8604. "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e"
  8605. },
  8606. "dist": {
  8607. "type": "zip",
  8608. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/1d5cd762abaa6b2a4169d3e77610193a7157129e",
  8609. "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e",
  8610. "shasum": ""
  8611. },
  8612. "require": {
  8613. "php": ">=7.1.3"
  8614. },
  8615. "suggest": {
  8616. "psr/event-dispatcher": "",
  8617. "symfony/event-dispatcher-implementation": ""
  8618. },
  8619. "type": "library",
  8620. "extra": {
  8621. "branch-alias": {
  8622. "dev-main": "1.1-dev"
  8623. },
  8624. "thanks": {
  8625. "name": "symfony/contracts",
  8626. "url": "https://github.com/symfony/contracts"
  8627. }
  8628. },
  8629. "autoload": {
  8630. "psr-4": {
  8631. "Symfony\\Contracts\\EventDispatcher\\": ""
  8632. }
  8633. },
  8634. "notification-url": "https://packagist.org/downloads/",
  8635. "license": [
  8636. "MIT"
  8637. ],
  8638. "authors": [
  8639. {
  8640. "name": "Nicolas Grekas",
  8641. "email": "p@tchwork.com"
  8642. },
  8643. {
  8644. "name": "Symfony Community",
  8645. "homepage": "https://symfony.com/contributors"
  8646. }
  8647. ],
  8648. "description": "Generic abstractions related to dispatching event",
  8649. "homepage": "https://symfony.com",
  8650. "keywords": [
  8651. "abstractions",
  8652. "contracts",
  8653. "decoupling",
  8654. "interfaces",
  8655. "interoperability",
  8656. "standards"
  8657. ],
  8658. "support": {
  8659. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.13"
  8660. },
  8661. "funding": [
  8662. {
  8663. "url": "https://symfony.com/sponsor",
  8664. "type": "custom"
  8665. },
  8666. {
  8667. "url": "https://github.com/fabpot",
  8668. "type": "github"
  8669. },
  8670. {
  8671. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8672. "type": "tidelift"
  8673. }
  8674. ],
  8675. "time": "2022-01-02T09:41:36+00:00"
  8676. },
  8677. {
  8678. "name": "symfony/filesystem",
  8679. "version": "v4.4.42",
  8680. "source": {
  8681. "type": "git",
  8682. "url": "https://github.com/symfony/filesystem.git",
  8683. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5"
  8684. },
  8685. "dist": {
  8686. "type": "zip",
  8687. "url": "https://api.github.com/repos/symfony/filesystem/zipball/815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  8688. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  8689. "shasum": ""
  8690. },
  8691. "require": {
  8692. "php": ">=7.1.3",
  8693. "symfony/polyfill-ctype": "~1.8",
  8694. "symfony/polyfill-php80": "^1.16"
  8695. },
  8696. "type": "library",
  8697. "autoload": {
  8698. "psr-4": {
  8699. "Symfony\\Component\\Filesystem\\": ""
  8700. },
  8701. "exclude-from-classmap": [
  8702. "/Tests/"
  8703. ]
  8704. },
  8705. "notification-url": "https://packagist.org/downloads/",
  8706. "license": [
  8707. "MIT"
  8708. ],
  8709. "authors": [
  8710. {
  8711. "name": "Fabien Potencier",
  8712. "email": "fabien@symfony.com"
  8713. },
  8714. {
  8715. "name": "Symfony Community",
  8716. "homepage": "https://symfony.com/contributors"
  8717. }
  8718. ],
  8719. "description": "Provides basic utilities for the filesystem",
  8720. "homepage": "https://symfony.com",
  8721. "support": {
  8722. "source": "https://github.com/symfony/filesystem/tree/v4.4.42"
  8723. },
  8724. "funding": [
  8725. {
  8726. "url": "https://symfony.com/sponsor",
  8727. "type": "custom"
  8728. },
  8729. {
  8730. "url": "https://github.com/fabpot",
  8731. "type": "github"
  8732. },
  8733. {
  8734. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8735. "type": "tidelift"
  8736. }
  8737. ],
  8738. "time": "2022-05-20T08:49:14+00:00"
  8739. },
  8740. {
  8741. "name": "symfony/finder",
  8742. "version": "v5.4.43",
  8743. "source": {
  8744. "type": "git",
  8745. "url": "https://github.com/symfony/finder.git",
  8746. "reference": "ae25a9145a900764158d439653d5630191155ca0"
  8747. },
  8748. "dist": {
  8749. "type": "zip",
  8750. "url": "https://api.github.com/repos/symfony/finder/zipball/ae25a9145a900764158d439653d5630191155ca0",
  8751. "reference": "ae25a9145a900764158d439653d5630191155ca0",
  8752. "shasum": ""
  8753. },
  8754. "require": {
  8755. "php": ">=7.2.5",
  8756. "symfony/deprecation-contracts": "^2.1|^3",
  8757. "symfony/polyfill-php80": "^1.16"
  8758. },
  8759. "type": "library",
  8760. "autoload": {
  8761. "psr-4": {
  8762. "Symfony\\Component\\Finder\\": ""
  8763. },
  8764. "exclude-from-classmap": [
  8765. "/Tests/"
  8766. ]
  8767. },
  8768. "notification-url": "https://packagist.org/downloads/",
  8769. "license": [
  8770. "MIT"
  8771. ],
  8772. "authors": [
  8773. {
  8774. "name": "Fabien Potencier",
  8775. "email": "fabien@symfony.com"
  8776. },
  8777. {
  8778. "name": "Symfony Community",
  8779. "homepage": "https://symfony.com/contributors"
  8780. }
  8781. ],
  8782. "description": "Finds files and directories via an intuitive fluent interface",
  8783. "homepage": "https://symfony.com",
  8784. "support": {
  8785. "source": "https://github.com/symfony/finder/tree/v5.4.43"
  8786. },
  8787. "funding": [
  8788. {
  8789. "url": "https://symfony.com/sponsor",
  8790. "type": "custom"
  8791. },
  8792. {
  8793. "url": "https://github.com/fabpot",
  8794. "type": "github"
  8795. },
  8796. {
  8797. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8798. "type": "tidelift"
  8799. }
  8800. ],
  8801. "time": "2024-08-13T14:03:51+00:00"
  8802. },
  8803. {
  8804. "name": "symfony/http-client-contracts",
  8805. "version": "v2.5.3",
  8806. "source": {
  8807. "type": "git",
  8808. "url": "https://github.com/symfony/http-client-contracts.git",
  8809. "reference": "e5cc97c2b4a4db0ba26bebc154f1426e3fd1d2f1"
  8810. },
  8811. "dist": {
  8812. "type": "zip",
  8813. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/e5cc97c2b4a4db0ba26bebc154f1426e3fd1d2f1",
  8814. "reference": "e5cc97c2b4a4db0ba26bebc154f1426e3fd1d2f1",
  8815. "shasum": ""
  8816. },
  8817. "require": {
  8818. "php": ">=7.2.5"
  8819. },
  8820. "suggest": {
  8821. "symfony/http-client-implementation": ""
  8822. },
  8823. "type": "library",
  8824. "extra": {
  8825. "branch-alias": {
  8826. "dev-main": "2.5-dev"
  8827. },
  8828. "thanks": {
  8829. "name": "symfony/contracts",
  8830. "url": "https://github.com/symfony/contracts"
  8831. }
  8832. },
  8833. "autoload": {
  8834. "psr-4": {
  8835. "Symfony\\Contracts\\HttpClient\\": ""
  8836. }
  8837. },
  8838. "notification-url": "https://packagist.org/downloads/",
  8839. "license": [
  8840. "MIT"
  8841. ],
  8842. "authors": [
  8843. {
  8844. "name": "Nicolas Grekas",
  8845. "email": "p@tchwork.com"
  8846. },
  8847. {
  8848. "name": "Symfony Community",
  8849. "homepage": "https://symfony.com/contributors"
  8850. }
  8851. ],
  8852. "description": "Generic abstractions related to HTTP clients",
  8853. "homepage": "https://symfony.com",
  8854. "keywords": [
  8855. "abstractions",
  8856. "contracts",
  8857. "decoupling",
  8858. "interfaces",
  8859. "interoperability",
  8860. "standards"
  8861. ],
  8862. "support": {
  8863. "source": "https://github.com/symfony/http-client-contracts/tree/v2.5.3"
  8864. },
  8865. "funding": [
  8866. {
  8867. "url": "https://symfony.com/sponsor",
  8868. "type": "custom"
  8869. },
  8870. {
  8871. "url": "https://github.com/fabpot",
  8872. "type": "github"
  8873. },
  8874. {
  8875. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8876. "type": "tidelift"
  8877. }
  8878. ],
  8879. "time": "2024-03-26T19:42:53+00:00"
  8880. },
  8881. {
  8882. "name": "symfony/http-foundation",
  8883. "version": "v4.4.49",
  8884. "source": {
  8885. "type": "git",
  8886. "url": "https://github.com/symfony/http-foundation.git",
  8887. "reference": "191413c7b832c015bb38eae963f2e57498c3c173"
  8888. },
  8889. "dist": {
  8890. "type": "zip",
  8891. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/191413c7b832c015bb38eae963f2e57498c3c173",
  8892. "reference": "191413c7b832c015bb38eae963f2e57498c3c173",
  8893. "shasum": ""
  8894. },
  8895. "require": {
  8896. "php": ">=7.1.3",
  8897. "symfony/mime": "^4.3|^5.0",
  8898. "symfony/polyfill-mbstring": "~1.1",
  8899. "symfony/polyfill-php80": "^1.16"
  8900. },
  8901. "require-dev": {
  8902. "predis/predis": "~1.0",
  8903. "symfony/expression-language": "^3.4|^4.0|^5.0"
  8904. },
  8905. "type": "library",
  8906. "autoload": {
  8907. "psr-4": {
  8908. "Symfony\\Component\\HttpFoundation\\": ""
  8909. },
  8910. "exclude-from-classmap": [
  8911. "/Tests/"
  8912. ]
  8913. },
  8914. "notification-url": "https://packagist.org/downloads/",
  8915. "license": [
  8916. "MIT"
  8917. ],
  8918. "authors": [
  8919. {
  8920. "name": "Fabien Potencier",
  8921. "email": "fabien@symfony.com"
  8922. },
  8923. {
  8924. "name": "Symfony Community",
  8925. "homepage": "https://symfony.com/contributors"
  8926. }
  8927. ],
  8928. "description": "Defines an object-oriented layer for the HTTP specification",
  8929. "homepage": "https://symfony.com",
  8930. "support": {
  8931. "source": "https://github.com/symfony/http-foundation/tree/v4.4.49"
  8932. },
  8933. "funding": [
  8934. {
  8935. "url": "https://symfony.com/sponsor",
  8936. "type": "custom"
  8937. },
  8938. {
  8939. "url": "https://github.com/fabpot",
  8940. "type": "github"
  8941. },
  8942. {
  8943. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8944. "type": "tidelift"
  8945. }
  8946. ],
  8947. "time": "2022-11-04T16:17:57+00:00"
  8948. },
  8949. {
  8950. "name": "symfony/http-kernel",
  8951. "version": "v4.4.51",
  8952. "source": {
  8953. "type": "git",
  8954. "url": "https://github.com/symfony/http-kernel.git",
  8955. "reference": "ad8ab192cb619ff7285c95d28c69b36d718416c7"
  8956. },
  8957. "dist": {
  8958. "type": "zip",
  8959. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ad8ab192cb619ff7285c95d28c69b36d718416c7",
  8960. "reference": "ad8ab192cb619ff7285c95d28c69b36d718416c7",
  8961. "shasum": ""
  8962. },
  8963. "require": {
  8964. "php": ">=7.1.3",
  8965. "psr/log": "^1|^2",
  8966. "symfony/error-handler": "^4.4",
  8967. "symfony/event-dispatcher": "^4.4",
  8968. "symfony/http-client-contracts": "^1.1|^2",
  8969. "symfony/http-foundation": "^4.4.30|^5.3.7",
  8970. "symfony/polyfill-ctype": "^1.8",
  8971. "symfony/polyfill-php73": "^1.9",
  8972. "symfony/polyfill-php80": "^1.16"
  8973. },
  8974. "conflict": {
  8975. "symfony/browser-kit": "<4.3",
  8976. "symfony/config": "<3.4",
  8977. "symfony/console": ">=5",
  8978. "symfony/dependency-injection": "<4.3",
  8979. "symfony/translation": "<4.2",
  8980. "twig/twig": "<1.43|<2.13,>=2"
  8981. },
  8982. "provide": {
  8983. "psr/log-implementation": "1.0|2.0"
  8984. },
  8985. "require-dev": {
  8986. "psr/cache": "^1.0|^2.0|^3.0",
  8987. "symfony/browser-kit": "^4.3|^5.0",
  8988. "symfony/config": "^3.4|^4.0|^5.0",
  8989. "symfony/console": "^3.4|^4.0",
  8990. "symfony/css-selector": "^3.4|^4.0|^5.0",
  8991. "symfony/dependency-injection": "^4.3|^5.0",
  8992. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  8993. "symfony/expression-language": "^3.4|^4.0|^5.0",
  8994. "symfony/finder": "^3.4|^4.0|^5.0",
  8995. "symfony/process": "^3.4|^4.0|^5.0",
  8996. "symfony/routing": "^3.4|^4.0|^5.0",
  8997. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  8998. "symfony/templating": "^3.4|^4.0|^5.0",
  8999. "symfony/translation": "^4.2|^5.0",
  9000. "symfony/translation-contracts": "^1.1|^2",
  9001. "twig/twig": "^1.43|^2.13|^3.0.4"
  9002. },
  9003. "suggest": {
  9004. "symfony/browser-kit": "",
  9005. "symfony/config": "",
  9006. "symfony/console": "",
  9007. "symfony/dependency-injection": ""
  9008. },
  9009. "type": "library",
  9010. "autoload": {
  9011. "psr-4": {
  9012. "Symfony\\Component\\HttpKernel\\": ""
  9013. },
  9014. "exclude-from-classmap": [
  9015. "/Tests/"
  9016. ]
  9017. },
  9018. "notification-url": "https://packagist.org/downloads/",
  9019. "license": [
  9020. "MIT"
  9021. ],
  9022. "authors": [
  9023. {
  9024. "name": "Fabien Potencier",
  9025. "email": "fabien@symfony.com"
  9026. },
  9027. {
  9028. "name": "Symfony Community",
  9029. "homepage": "https://symfony.com/contributors"
  9030. }
  9031. ],
  9032. "description": "Provides a structured process for converting a Request into a Response",
  9033. "homepage": "https://symfony.com",
  9034. "support": {
  9035. "source": "https://github.com/symfony/http-kernel/tree/v4.4.51"
  9036. },
  9037. "funding": [
  9038. {
  9039. "url": "https://symfony.com/sponsor",
  9040. "type": "custom"
  9041. },
  9042. {
  9043. "url": "https://github.com/fabpot",
  9044. "type": "github"
  9045. },
  9046. {
  9047. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9048. "type": "tidelift"
  9049. }
  9050. ],
  9051. "time": "2023-11-10T13:31:29+00:00"
  9052. },
  9053. {
  9054. "name": "symfony/mime",
  9055. "version": "v5.4.13",
  9056. "source": {
  9057. "type": "git",
  9058. "url": "https://github.com/symfony/mime.git",
  9059. "reference": "bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd"
  9060. },
  9061. "dist": {
  9062. "type": "zip",
  9063. "url": "https://api.github.com/repos/symfony/mime/zipball/bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd",
  9064. "reference": "bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd",
  9065. "shasum": ""
  9066. },
  9067. "require": {
  9068. "php": ">=7.2.5",
  9069. "symfony/deprecation-contracts": "^2.1|^3",
  9070. "symfony/polyfill-intl-idn": "^1.10",
  9071. "symfony/polyfill-mbstring": "^1.0",
  9072. "symfony/polyfill-php80": "^1.16"
  9073. },
  9074. "conflict": {
  9075. "egulias/email-validator": "~3.0.0",
  9076. "phpdocumentor/reflection-docblock": "<3.2.2",
  9077. "phpdocumentor/type-resolver": "<1.4.0",
  9078. "symfony/mailer": "<4.4"
  9079. },
  9080. "require-dev": {
  9081. "egulias/email-validator": "^2.1.10|^3.1",
  9082. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  9083. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  9084. "symfony/property-access": "^4.4|^5.1|^6.0",
  9085. "symfony/property-info": "^4.4|^5.1|^6.0",
  9086. "symfony/serializer": "^5.2|^6.0"
  9087. },
  9088. "type": "library",
  9089. "autoload": {
  9090. "psr-4": {
  9091. "Symfony\\Component\\Mime\\": ""
  9092. },
  9093. "exclude-from-classmap": [
  9094. "/Tests/"
  9095. ]
  9096. },
  9097. "notification-url": "https://packagist.org/downloads/",
  9098. "license": [
  9099. "MIT"
  9100. ],
  9101. "authors": [
  9102. {
  9103. "name": "Fabien Potencier",
  9104. "email": "fabien@symfony.com"
  9105. },
  9106. {
  9107. "name": "Symfony Community",
  9108. "homepage": "https://symfony.com/contributors"
  9109. }
  9110. ],
  9111. "description": "Allows manipulating MIME messages",
  9112. "homepage": "https://symfony.com",
  9113. "keywords": [
  9114. "mime",
  9115. "mime-type"
  9116. ],
  9117. "support": {
  9118. "source": "https://github.com/symfony/mime/tree/v5.4.13"
  9119. },
  9120. "funding": [
  9121. {
  9122. "url": "https://symfony.com/sponsor",
  9123. "type": "custom"
  9124. },
  9125. {
  9126. "url": "https://github.com/fabpot",
  9127. "type": "github"
  9128. },
  9129. {
  9130. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9131. "type": "tidelift"
  9132. }
  9133. ],
  9134. "time": "2022-09-01T18:18:29+00:00"
  9135. },
  9136. {
  9137. "name": "symfony/polyfill-ctype",
  9138. "version": "v1.27.0",
  9139. "source": {
  9140. "type": "git",
  9141. "url": "https://github.com/symfony/polyfill-ctype.git",
  9142. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  9143. },
  9144. "dist": {
  9145. "type": "zip",
  9146. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  9147. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  9148. "shasum": ""
  9149. },
  9150. "require": {
  9151. "php": ">=7.1"
  9152. },
  9153. "provide": {
  9154. "ext-ctype": "*"
  9155. },
  9156. "suggest": {
  9157. "ext-ctype": "For best performance"
  9158. },
  9159. "type": "library",
  9160. "extra": {
  9161. "branch-alias": {
  9162. "dev-main": "1.27-dev"
  9163. },
  9164. "thanks": {
  9165. "name": "symfony/polyfill",
  9166. "url": "https://github.com/symfony/polyfill"
  9167. }
  9168. },
  9169. "autoload": {
  9170. "files": [
  9171. "bootstrap.php"
  9172. ],
  9173. "psr-4": {
  9174. "Symfony\\Polyfill\\Ctype\\": ""
  9175. }
  9176. },
  9177. "notification-url": "https://packagist.org/downloads/",
  9178. "license": [
  9179. "MIT"
  9180. ],
  9181. "authors": [
  9182. {
  9183. "name": "Gert de Pagter",
  9184. "email": "BackEndTea@gmail.com"
  9185. },
  9186. {
  9187. "name": "Symfony Community",
  9188. "homepage": "https://symfony.com/contributors"
  9189. }
  9190. ],
  9191. "description": "Symfony polyfill for ctype functions",
  9192. "homepage": "https://symfony.com",
  9193. "keywords": [
  9194. "compatibility",
  9195. "ctype",
  9196. "polyfill",
  9197. "portable"
  9198. ],
  9199. "support": {
  9200. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  9201. },
  9202. "funding": [
  9203. {
  9204. "url": "https://symfony.com/sponsor",
  9205. "type": "custom"
  9206. },
  9207. {
  9208. "url": "https://github.com/fabpot",
  9209. "type": "github"
  9210. },
  9211. {
  9212. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9213. "type": "tidelift"
  9214. }
  9215. ],
  9216. "time": "2022-11-03T14:55:06+00:00"
  9217. },
  9218. {
  9219. "name": "symfony/polyfill-iconv",
  9220. "version": "v1.27.0",
  9221. "source": {
  9222. "type": "git",
  9223. "url": "https://github.com/symfony/polyfill-iconv.git",
  9224. "reference": "927013f3aac555983a5059aada98e1907d842695"
  9225. },
  9226. "dist": {
  9227. "type": "zip",
  9228. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695",
  9229. "reference": "927013f3aac555983a5059aada98e1907d842695",
  9230. "shasum": ""
  9231. },
  9232. "require": {
  9233. "php": ">=7.1"
  9234. },
  9235. "provide": {
  9236. "ext-iconv": "*"
  9237. },
  9238. "suggest": {
  9239. "ext-iconv": "For best performance"
  9240. },
  9241. "type": "library",
  9242. "extra": {
  9243. "branch-alias": {
  9244. "dev-main": "1.27-dev"
  9245. },
  9246. "thanks": {
  9247. "name": "symfony/polyfill",
  9248. "url": "https://github.com/symfony/polyfill"
  9249. }
  9250. },
  9251. "autoload": {
  9252. "files": [
  9253. "bootstrap.php"
  9254. ],
  9255. "psr-4": {
  9256. "Symfony\\Polyfill\\Iconv\\": ""
  9257. }
  9258. },
  9259. "notification-url": "https://packagist.org/downloads/",
  9260. "license": [
  9261. "MIT"
  9262. ],
  9263. "authors": [
  9264. {
  9265. "name": "Nicolas Grekas",
  9266. "email": "p@tchwork.com"
  9267. },
  9268. {
  9269. "name": "Symfony Community",
  9270. "homepage": "https://symfony.com/contributors"
  9271. }
  9272. ],
  9273. "description": "Symfony polyfill for the Iconv extension",
  9274. "homepage": "https://symfony.com",
  9275. "keywords": [
  9276. "compatibility",
  9277. "iconv",
  9278. "polyfill",
  9279. "portable",
  9280. "shim"
  9281. ],
  9282. "support": {
  9283. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0"
  9284. },
  9285. "funding": [
  9286. {
  9287. "url": "https://symfony.com/sponsor",
  9288. "type": "custom"
  9289. },
  9290. {
  9291. "url": "https://github.com/fabpot",
  9292. "type": "github"
  9293. },
  9294. {
  9295. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9296. "type": "tidelift"
  9297. }
  9298. ],
  9299. "time": "2022-11-03T14:55:06+00:00"
  9300. },
  9301. {
  9302. "name": "symfony/polyfill-intl-idn",
  9303. "version": "v1.27.0",
  9304. "source": {
  9305. "type": "git",
  9306. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  9307. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  9308. },
  9309. "dist": {
  9310. "type": "zip",
  9311. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  9312. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  9313. "shasum": ""
  9314. },
  9315. "require": {
  9316. "php": ">=7.1",
  9317. "symfony/polyfill-intl-normalizer": "^1.10",
  9318. "symfony/polyfill-php72": "^1.10"
  9319. },
  9320. "suggest": {
  9321. "ext-intl": "For best performance"
  9322. },
  9323. "type": "library",
  9324. "extra": {
  9325. "branch-alias": {
  9326. "dev-main": "1.27-dev"
  9327. },
  9328. "thanks": {
  9329. "name": "symfony/polyfill",
  9330. "url": "https://github.com/symfony/polyfill"
  9331. }
  9332. },
  9333. "autoload": {
  9334. "files": [
  9335. "bootstrap.php"
  9336. ],
  9337. "psr-4": {
  9338. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  9339. }
  9340. },
  9341. "notification-url": "https://packagist.org/downloads/",
  9342. "license": [
  9343. "MIT"
  9344. ],
  9345. "authors": [
  9346. {
  9347. "name": "Laurent Bassin",
  9348. "email": "laurent@bassin.info"
  9349. },
  9350. {
  9351. "name": "Trevor Rowbotham",
  9352. "email": "trevor.rowbotham@pm.me"
  9353. },
  9354. {
  9355. "name": "Symfony Community",
  9356. "homepage": "https://symfony.com/contributors"
  9357. }
  9358. ],
  9359. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  9360. "homepage": "https://symfony.com",
  9361. "keywords": [
  9362. "compatibility",
  9363. "idn",
  9364. "intl",
  9365. "polyfill",
  9366. "portable",
  9367. "shim"
  9368. ],
  9369. "support": {
  9370. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  9371. },
  9372. "funding": [
  9373. {
  9374. "url": "https://symfony.com/sponsor",
  9375. "type": "custom"
  9376. },
  9377. {
  9378. "url": "https://github.com/fabpot",
  9379. "type": "github"
  9380. },
  9381. {
  9382. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9383. "type": "tidelift"
  9384. }
  9385. ],
  9386. "time": "2022-11-03T14:55:06+00:00"
  9387. },
  9388. {
  9389. "name": "symfony/polyfill-intl-normalizer",
  9390. "version": "v1.27.0",
  9391. "source": {
  9392. "type": "git",
  9393. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  9394. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  9395. },
  9396. "dist": {
  9397. "type": "zip",
  9398. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  9399. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  9400. "shasum": ""
  9401. },
  9402. "require": {
  9403. "php": ">=7.1"
  9404. },
  9405. "suggest": {
  9406. "ext-intl": "For best performance"
  9407. },
  9408. "type": "library",
  9409. "extra": {
  9410. "branch-alias": {
  9411. "dev-main": "1.27-dev"
  9412. },
  9413. "thanks": {
  9414. "name": "symfony/polyfill",
  9415. "url": "https://github.com/symfony/polyfill"
  9416. }
  9417. },
  9418. "autoload": {
  9419. "files": [
  9420. "bootstrap.php"
  9421. ],
  9422. "psr-4": {
  9423. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  9424. },
  9425. "classmap": [
  9426. "Resources/stubs"
  9427. ]
  9428. },
  9429. "notification-url": "https://packagist.org/downloads/",
  9430. "license": [
  9431. "MIT"
  9432. ],
  9433. "authors": [
  9434. {
  9435. "name": "Nicolas Grekas",
  9436. "email": "p@tchwork.com"
  9437. },
  9438. {
  9439. "name": "Symfony Community",
  9440. "homepage": "https://symfony.com/contributors"
  9441. }
  9442. ],
  9443. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  9444. "homepage": "https://symfony.com",
  9445. "keywords": [
  9446. "compatibility",
  9447. "intl",
  9448. "normalizer",
  9449. "polyfill",
  9450. "portable",
  9451. "shim"
  9452. ],
  9453. "support": {
  9454. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  9455. },
  9456. "funding": [
  9457. {
  9458. "url": "https://symfony.com/sponsor",
  9459. "type": "custom"
  9460. },
  9461. {
  9462. "url": "https://github.com/fabpot",
  9463. "type": "github"
  9464. },
  9465. {
  9466. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9467. "type": "tidelift"
  9468. }
  9469. ],
  9470. "time": "2022-11-03T14:55:06+00:00"
  9471. },
  9472. {
  9473. "name": "symfony/polyfill-mbstring",
  9474. "version": "v1.27.0",
  9475. "source": {
  9476. "type": "git",
  9477. "url": "https://github.com/symfony/polyfill-mbstring.git",
  9478. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  9479. },
  9480. "dist": {
  9481. "type": "zip",
  9482. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  9483. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  9484. "shasum": ""
  9485. },
  9486. "require": {
  9487. "php": ">=7.1"
  9488. },
  9489. "provide": {
  9490. "ext-mbstring": "*"
  9491. },
  9492. "suggest": {
  9493. "ext-mbstring": "For best performance"
  9494. },
  9495. "type": "library",
  9496. "extra": {
  9497. "branch-alias": {
  9498. "dev-main": "1.27-dev"
  9499. },
  9500. "thanks": {
  9501. "name": "symfony/polyfill",
  9502. "url": "https://github.com/symfony/polyfill"
  9503. }
  9504. },
  9505. "autoload": {
  9506. "files": [
  9507. "bootstrap.php"
  9508. ],
  9509. "psr-4": {
  9510. "Symfony\\Polyfill\\Mbstring\\": ""
  9511. }
  9512. },
  9513. "notification-url": "https://packagist.org/downloads/",
  9514. "license": [
  9515. "MIT"
  9516. ],
  9517. "authors": [
  9518. {
  9519. "name": "Nicolas Grekas",
  9520. "email": "p@tchwork.com"
  9521. },
  9522. {
  9523. "name": "Symfony Community",
  9524. "homepage": "https://symfony.com/contributors"
  9525. }
  9526. ],
  9527. "description": "Symfony polyfill for the Mbstring extension",
  9528. "homepage": "https://symfony.com",
  9529. "keywords": [
  9530. "compatibility",
  9531. "mbstring",
  9532. "polyfill",
  9533. "portable",
  9534. "shim"
  9535. ],
  9536. "support": {
  9537. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  9538. },
  9539. "funding": [
  9540. {
  9541. "url": "https://symfony.com/sponsor",
  9542. "type": "custom"
  9543. },
  9544. {
  9545. "url": "https://github.com/fabpot",
  9546. "type": "github"
  9547. },
  9548. {
  9549. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9550. "type": "tidelift"
  9551. }
  9552. ],
  9553. "time": "2022-11-03T14:55:06+00:00"
  9554. },
  9555. {
  9556. "name": "symfony/polyfill-php72",
  9557. "version": "v1.31.0",
  9558. "source": {
  9559. "type": "git",
  9560. "url": "https://github.com/symfony/polyfill-php72.git",
  9561. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce"
  9562. },
  9563. "dist": {
  9564. "type": "zip",
  9565. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  9566. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  9567. "shasum": ""
  9568. },
  9569. "require": {
  9570. "php": ">=7.2"
  9571. },
  9572. "type": "metapackage",
  9573. "extra": {
  9574. "thanks": {
  9575. "name": "symfony/polyfill",
  9576. "url": "https://github.com/symfony/polyfill"
  9577. }
  9578. },
  9579. "notification-url": "https://packagist.org/downloads/",
  9580. "license": [
  9581. "MIT"
  9582. ],
  9583. "authors": [
  9584. {
  9585. "name": "Nicolas Grekas",
  9586. "email": "p@tchwork.com"
  9587. },
  9588. {
  9589. "name": "Symfony Community",
  9590. "homepage": "https://symfony.com/contributors"
  9591. }
  9592. ],
  9593. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  9594. "homepage": "https://symfony.com",
  9595. "keywords": [
  9596. "compatibility",
  9597. "polyfill",
  9598. "portable",
  9599. "shim"
  9600. ],
  9601. "support": {
  9602. "source": "https://github.com/symfony/polyfill-php72/tree/v1.31.0"
  9603. },
  9604. "funding": [
  9605. {
  9606. "url": "https://symfony.com/sponsor",
  9607. "type": "custom"
  9608. },
  9609. {
  9610. "url": "https://github.com/fabpot",
  9611. "type": "github"
  9612. },
  9613. {
  9614. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9615. "type": "tidelift"
  9616. }
  9617. ],
  9618. "time": "2024-09-09T11:45:10+00:00"
  9619. },
  9620. {
  9621. "name": "symfony/polyfill-php73",
  9622. "version": "v1.31.0",
  9623. "source": {
  9624. "type": "git",
  9625. "url": "https://github.com/symfony/polyfill-php73.git",
  9626. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb"
  9627. },
  9628. "dist": {
  9629. "type": "zip",
  9630. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  9631. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  9632. "shasum": ""
  9633. },
  9634. "require": {
  9635. "php": ">=7.2"
  9636. },
  9637. "type": "library",
  9638. "extra": {
  9639. "thanks": {
  9640. "name": "symfony/polyfill",
  9641. "url": "https://github.com/symfony/polyfill"
  9642. }
  9643. },
  9644. "autoload": {
  9645. "files": [
  9646. "bootstrap.php"
  9647. ],
  9648. "psr-4": {
  9649. "Symfony\\Polyfill\\Php73\\": ""
  9650. },
  9651. "classmap": [
  9652. "Resources/stubs"
  9653. ]
  9654. },
  9655. "notification-url": "https://packagist.org/downloads/",
  9656. "license": [
  9657. "MIT"
  9658. ],
  9659. "authors": [
  9660. {
  9661. "name": "Nicolas Grekas",
  9662. "email": "p@tchwork.com"
  9663. },
  9664. {
  9665. "name": "Symfony Community",
  9666. "homepage": "https://symfony.com/contributors"
  9667. }
  9668. ],
  9669. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  9670. "homepage": "https://symfony.com",
  9671. "keywords": [
  9672. "compatibility",
  9673. "polyfill",
  9674. "portable",
  9675. "shim"
  9676. ],
  9677. "support": {
  9678. "source": "https://github.com/symfony/polyfill-php73/tree/v1.31.0"
  9679. },
  9680. "funding": [
  9681. {
  9682. "url": "https://symfony.com/sponsor",
  9683. "type": "custom"
  9684. },
  9685. {
  9686. "url": "https://github.com/fabpot",
  9687. "type": "github"
  9688. },
  9689. {
  9690. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9691. "type": "tidelift"
  9692. }
  9693. ],
  9694. "time": "2024-09-09T11:45:10+00:00"
  9695. },
  9696. {
  9697. "name": "symfony/polyfill-php80",
  9698. "version": "v1.27.0",
  9699. "source": {
  9700. "type": "git",
  9701. "url": "https://github.com/symfony/polyfill-php80.git",
  9702. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  9703. },
  9704. "dist": {
  9705. "type": "zip",
  9706. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  9707. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  9708. "shasum": ""
  9709. },
  9710. "require": {
  9711. "php": ">=7.1"
  9712. },
  9713. "type": "library",
  9714. "extra": {
  9715. "branch-alias": {
  9716. "dev-main": "1.27-dev"
  9717. },
  9718. "thanks": {
  9719. "name": "symfony/polyfill",
  9720. "url": "https://github.com/symfony/polyfill"
  9721. }
  9722. },
  9723. "autoload": {
  9724. "files": [
  9725. "bootstrap.php"
  9726. ],
  9727. "psr-4": {
  9728. "Symfony\\Polyfill\\Php80\\": ""
  9729. },
  9730. "classmap": [
  9731. "Resources/stubs"
  9732. ]
  9733. },
  9734. "notification-url": "https://packagist.org/downloads/",
  9735. "license": [
  9736. "MIT"
  9737. ],
  9738. "authors": [
  9739. {
  9740. "name": "Ion Bazan",
  9741. "email": "ion.bazan@gmail.com"
  9742. },
  9743. {
  9744. "name": "Nicolas Grekas",
  9745. "email": "p@tchwork.com"
  9746. },
  9747. {
  9748. "name": "Symfony Community",
  9749. "homepage": "https://symfony.com/contributors"
  9750. }
  9751. ],
  9752. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  9753. "homepage": "https://symfony.com",
  9754. "keywords": [
  9755. "compatibility",
  9756. "polyfill",
  9757. "portable",
  9758. "shim"
  9759. ],
  9760. "support": {
  9761. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  9762. },
  9763. "funding": [
  9764. {
  9765. "url": "https://symfony.com/sponsor",
  9766. "type": "custom"
  9767. },
  9768. {
  9769. "url": "https://github.com/fabpot",
  9770. "type": "github"
  9771. },
  9772. {
  9773. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9774. "type": "tidelift"
  9775. }
  9776. ],
  9777. "time": "2022-11-03T14:55:06+00:00"
  9778. },
  9779. {
  9780. "name": "symfony/process",
  9781. "version": "v4.4.44",
  9782. "source": {
  9783. "type": "git",
  9784. "url": "https://github.com/symfony/process.git",
  9785. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2"
  9786. },
  9787. "dist": {
  9788. "type": "zip",
  9789. "url": "https://api.github.com/repos/symfony/process/zipball/5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  9790. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  9791. "shasum": ""
  9792. },
  9793. "require": {
  9794. "php": ">=7.1.3",
  9795. "symfony/polyfill-php80": "^1.16"
  9796. },
  9797. "type": "library",
  9798. "autoload": {
  9799. "psr-4": {
  9800. "Symfony\\Component\\Process\\": ""
  9801. },
  9802. "exclude-from-classmap": [
  9803. "/Tests/"
  9804. ]
  9805. },
  9806. "notification-url": "https://packagist.org/downloads/",
  9807. "license": [
  9808. "MIT"
  9809. ],
  9810. "authors": [
  9811. {
  9812. "name": "Fabien Potencier",
  9813. "email": "fabien@symfony.com"
  9814. },
  9815. {
  9816. "name": "Symfony Community",
  9817. "homepage": "https://symfony.com/contributors"
  9818. }
  9819. ],
  9820. "description": "Executes commands in sub-processes",
  9821. "homepage": "https://symfony.com",
  9822. "support": {
  9823. "source": "https://github.com/symfony/process/tree/v4.4.44"
  9824. },
  9825. "funding": [
  9826. {
  9827. "url": "https://symfony.com/sponsor",
  9828. "type": "custom"
  9829. },
  9830. {
  9831. "url": "https://github.com/fabpot",
  9832. "type": "github"
  9833. },
  9834. {
  9835. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9836. "type": "tidelift"
  9837. }
  9838. ],
  9839. "time": "2022-06-27T13:16:42+00:00"
  9840. },
  9841. {
  9842. "name": "symfony/psr-http-message-bridge",
  9843. "version": "v2.1.4",
  9844. "source": {
  9845. "type": "git",
  9846. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9847. "reference": "a125b93ef378c492e274f217874906fb9babdebb"
  9848. },
  9849. "dist": {
  9850. "type": "zip",
  9851. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a125b93ef378c492e274f217874906fb9babdebb",
  9852. "reference": "a125b93ef378c492e274f217874906fb9babdebb",
  9853. "shasum": ""
  9854. },
  9855. "require": {
  9856. "php": ">=7.1",
  9857. "psr/http-message": "^1.0",
  9858. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  9859. },
  9860. "require-dev": {
  9861. "nyholm/psr7": "^1.1",
  9862. "psr/log": "^1.1 || ^2 || ^3",
  9863. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  9864. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  9865. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  9866. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  9867. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  9868. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  9869. },
  9870. "suggest": {
  9871. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  9872. },
  9873. "type": "symfony-bridge",
  9874. "extra": {
  9875. "branch-alias": {
  9876. "dev-main": "2.1-dev"
  9877. }
  9878. },
  9879. "autoload": {
  9880. "psr-4": {
  9881. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9882. },
  9883. "exclude-from-classmap": [
  9884. "/Tests/"
  9885. ]
  9886. },
  9887. "notification-url": "https://packagist.org/downloads/",
  9888. "license": [
  9889. "MIT"
  9890. ],
  9891. "authors": [
  9892. {
  9893. "name": "Fabien Potencier",
  9894. "email": "fabien@symfony.com"
  9895. },
  9896. {
  9897. "name": "Symfony Community",
  9898. "homepage": "http://symfony.com/contributors"
  9899. }
  9900. ],
  9901. "description": "PSR HTTP message bridge",
  9902. "homepage": "http://symfony.com",
  9903. "keywords": [
  9904. "http",
  9905. "http-message",
  9906. "psr-17",
  9907. "psr-7"
  9908. ],
  9909. "support": {
  9910. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  9911. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.4"
  9912. },
  9913. "funding": [
  9914. {
  9915. "url": "https://symfony.com/sponsor",
  9916. "type": "custom"
  9917. },
  9918. {
  9919. "url": "https://github.com/fabpot",
  9920. "type": "github"
  9921. },
  9922. {
  9923. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9924. "type": "tidelift"
  9925. }
  9926. ],
  9927. "time": "2022-11-28T22:46:34+00:00"
  9928. },
  9929. {
  9930. "name": "symfony/routing",
  9931. "version": "v4.4.44",
  9932. "source": {
  9933. "type": "git",
  9934. "url": "https://github.com/symfony/routing.git",
  9935. "reference": "f7751fd8b60a07f3f349947a309b5bdfce22d6ae"
  9936. },
  9937. "dist": {
  9938. "type": "zip",
  9939. "url": "https://api.github.com/repos/symfony/routing/zipball/f7751fd8b60a07f3f349947a309b5bdfce22d6ae",
  9940. "reference": "f7751fd8b60a07f3f349947a309b5bdfce22d6ae",
  9941. "shasum": ""
  9942. },
  9943. "require": {
  9944. "php": ">=7.1.3",
  9945. "symfony/polyfill-php80": "^1.16"
  9946. },
  9947. "conflict": {
  9948. "symfony/config": "<4.2",
  9949. "symfony/dependency-injection": "<3.4",
  9950. "symfony/yaml": "<3.4"
  9951. },
  9952. "require-dev": {
  9953. "doctrine/annotations": "^1.10.4",
  9954. "psr/log": "^1|^2|^3",
  9955. "symfony/config": "^4.2|^5.0",
  9956. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  9957. "symfony/expression-language": "^3.4|^4.0|^5.0",
  9958. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  9959. "symfony/yaml": "^3.4|^4.0|^5.0"
  9960. },
  9961. "suggest": {
  9962. "doctrine/annotations": "For using the annotation loader",
  9963. "symfony/config": "For using the all-in-one router or any loader",
  9964. "symfony/expression-language": "For using expression matching",
  9965. "symfony/http-foundation": "For using a Symfony Request object",
  9966. "symfony/yaml": "For using the YAML loader"
  9967. },
  9968. "type": "library",
  9969. "autoload": {
  9970. "psr-4": {
  9971. "Symfony\\Component\\Routing\\": ""
  9972. },
  9973. "exclude-from-classmap": [
  9974. "/Tests/"
  9975. ]
  9976. },
  9977. "notification-url": "https://packagist.org/downloads/",
  9978. "license": [
  9979. "MIT"
  9980. ],
  9981. "authors": [
  9982. {
  9983. "name": "Fabien Potencier",
  9984. "email": "fabien@symfony.com"
  9985. },
  9986. {
  9987. "name": "Symfony Community",
  9988. "homepage": "https://symfony.com/contributors"
  9989. }
  9990. ],
  9991. "description": "Maps an HTTP request to a set of configuration variables",
  9992. "homepage": "https://symfony.com",
  9993. "keywords": [
  9994. "router",
  9995. "routing",
  9996. "uri",
  9997. "url"
  9998. ],
  9999. "support": {
  10000. "source": "https://github.com/symfony/routing/tree/v4.4.44"
  10001. },
  10002. "funding": [
  10003. {
  10004. "url": "https://symfony.com/sponsor",
  10005. "type": "custom"
  10006. },
  10007. {
  10008. "url": "https://github.com/fabpot",
  10009. "type": "github"
  10010. },
  10011. {
  10012. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10013. "type": "tidelift"
  10014. }
  10015. ],
  10016. "time": "2022-07-20T09:59:04+00:00"
  10017. },
  10018. {
  10019. "name": "symfony/serializer",
  10020. "version": "v4.4.47",
  10021. "source": {
  10022. "type": "git",
  10023. "url": "https://github.com/symfony/serializer.git",
  10024. "reference": "6e01d63c55657930a6de03d6e36aae50af98888d"
  10025. },
  10026. "dist": {
  10027. "type": "zip",
  10028. "url": "https://api.github.com/repos/symfony/serializer/zipball/6e01d63c55657930a6de03d6e36aae50af98888d",
  10029. "reference": "6e01d63c55657930a6de03d6e36aae50af98888d",
  10030. "shasum": ""
  10031. },
  10032. "require": {
  10033. "php": ">=7.1.3",
  10034. "symfony/polyfill-ctype": "~1.8",
  10035. "symfony/polyfill-php80": "^1.16"
  10036. },
  10037. "conflict": {
  10038. "phpdocumentor/reflection-docblock": "<3.0|>=3.2.0,<3.2.2",
  10039. "phpdocumentor/type-resolver": "<0.3.0|1.3.*",
  10040. "symfony/dependency-injection": "<3.4",
  10041. "symfony/property-access": "<3.4",
  10042. "symfony/property-info": "<3.4",
  10043. "symfony/yaml": "<3.4"
  10044. },
  10045. "require-dev": {
  10046. "doctrine/annotations": "^1.10.4",
  10047. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  10048. "symfony/cache": "^3.4|^4.0|^5.0",
  10049. "symfony/config": "^3.4|^4.0|^5.0",
  10050. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  10051. "symfony/error-handler": "^4.4|^5.0",
  10052. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  10053. "symfony/mime": "^4.4|^5.0",
  10054. "symfony/property-access": "^4.4.36|^5.3.13",
  10055. "symfony/property-info": "^3.4.13|~4.0|^5.0",
  10056. "symfony/validator": "^3.4|^4.0|^5.0",
  10057. "symfony/yaml": "^3.4|^4.0|^5.0"
  10058. },
  10059. "suggest": {
  10060. "doctrine/annotations": "For using the annotation mapping.",
  10061. "psr/cache-implementation": "For using the metadata cache.",
  10062. "symfony/config": "For using the XML mapping loader.",
  10063. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  10064. "symfony/property-access": "For using the ObjectNormalizer.",
  10065. "symfony/property-info": "To deserialize relations.",
  10066. "symfony/yaml": "For using the default YAML mapping loader."
  10067. },
  10068. "type": "library",
  10069. "autoload": {
  10070. "psr-4": {
  10071. "Symfony\\Component\\Serializer\\": ""
  10072. },
  10073. "exclude-from-classmap": [
  10074. "/Tests/"
  10075. ]
  10076. },
  10077. "notification-url": "https://packagist.org/downloads/",
  10078. "license": [
  10079. "MIT"
  10080. ],
  10081. "authors": [
  10082. {
  10083. "name": "Fabien Potencier",
  10084. "email": "fabien@symfony.com"
  10085. },
  10086. {
  10087. "name": "Symfony Community",
  10088. "homepage": "https://symfony.com/contributors"
  10089. }
  10090. ],
  10091. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  10092. "homepage": "https://symfony.com",
  10093. "support": {
  10094. "source": "https://github.com/symfony/serializer/tree/v4.4.47"
  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": "2022-09-19T08:38:33+00:00"
  10111. },
  10112. {
  10113. "name": "symfony/service-contracts",
  10114. "version": "v2.5.3",
  10115. "source": {
  10116. "type": "git",
  10117. "url": "https://github.com/symfony/service-contracts.git",
  10118. "reference": "a2329596ddc8fd568900e3fc76cba42489ecc7f3"
  10119. },
  10120. "dist": {
  10121. "type": "zip",
  10122. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/a2329596ddc8fd568900e3fc76cba42489ecc7f3",
  10123. "reference": "a2329596ddc8fd568900e3fc76cba42489ecc7f3",
  10124. "shasum": ""
  10125. },
  10126. "require": {
  10127. "php": ">=7.2.5",
  10128. "psr/container": "^1.1",
  10129. "symfony/deprecation-contracts": "^2.1|^3"
  10130. },
  10131. "conflict": {
  10132. "ext-psr": "<1.1|>=2"
  10133. },
  10134. "suggest": {
  10135. "symfony/service-implementation": ""
  10136. },
  10137. "type": "library",
  10138. "extra": {
  10139. "branch-alias": {
  10140. "dev-main": "2.5-dev"
  10141. },
  10142. "thanks": {
  10143. "name": "symfony/contracts",
  10144. "url": "https://github.com/symfony/contracts"
  10145. }
  10146. },
  10147. "autoload": {
  10148. "psr-4": {
  10149. "Symfony\\Contracts\\Service\\": ""
  10150. }
  10151. },
  10152. "notification-url": "https://packagist.org/downloads/",
  10153. "license": [
  10154. "MIT"
  10155. ],
  10156. "authors": [
  10157. {
  10158. "name": "Nicolas Grekas",
  10159. "email": "p@tchwork.com"
  10160. },
  10161. {
  10162. "name": "Symfony Community",
  10163. "homepage": "https://symfony.com/contributors"
  10164. }
  10165. ],
  10166. "description": "Generic abstractions related to writing services",
  10167. "homepage": "https://symfony.com",
  10168. "keywords": [
  10169. "abstractions",
  10170. "contracts",
  10171. "decoupling",
  10172. "interfaces",
  10173. "interoperability",
  10174. "standards"
  10175. ],
  10176. "support": {
  10177. "source": "https://github.com/symfony/service-contracts/tree/v2.5.3"
  10178. },
  10179. "funding": [
  10180. {
  10181. "url": "https://symfony.com/sponsor",
  10182. "type": "custom"
  10183. },
  10184. {
  10185. "url": "https://github.com/fabpot",
  10186. "type": "github"
  10187. },
  10188. {
  10189. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10190. "type": "tidelift"
  10191. }
  10192. ],
  10193. "time": "2023-04-21T15:04:16+00:00"
  10194. },
  10195. {
  10196. "name": "symfony/translation",
  10197. "version": "v4.4.47",
  10198. "source": {
  10199. "type": "git",
  10200. "url": "https://github.com/symfony/translation.git",
  10201. "reference": "45036b1d53accc48fe9bab71ccd86d57eba0dd94"
  10202. },
  10203. "dist": {
  10204. "type": "zip",
  10205. "url": "https://api.github.com/repos/symfony/translation/zipball/45036b1d53accc48fe9bab71ccd86d57eba0dd94",
  10206. "reference": "45036b1d53accc48fe9bab71ccd86d57eba0dd94",
  10207. "shasum": ""
  10208. },
  10209. "require": {
  10210. "php": ">=7.1.3",
  10211. "symfony/polyfill-mbstring": "~1.0",
  10212. "symfony/polyfill-php80": "^1.16",
  10213. "symfony/translation-contracts": "^1.1.6|^2"
  10214. },
  10215. "conflict": {
  10216. "symfony/config": "<3.4",
  10217. "symfony/dependency-injection": "<3.4",
  10218. "symfony/http-kernel": "<4.4",
  10219. "symfony/yaml": "<3.4"
  10220. },
  10221. "provide": {
  10222. "symfony/translation-implementation": "1.0|2.0"
  10223. },
  10224. "require-dev": {
  10225. "psr/log": "^1|^2|^3",
  10226. "symfony/config": "^3.4|^4.0|^5.0",
  10227. "symfony/console": "^3.4|^4.0|^5.0",
  10228. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  10229. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  10230. "symfony/http-kernel": "^4.4",
  10231. "symfony/intl": "^3.4|^4.0|^5.0",
  10232. "symfony/service-contracts": "^1.1.2|^2",
  10233. "symfony/yaml": "^3.4|^4.0|^5.0"
  10234. },
  10235. "suggest": {
  10236. "psr/log-implementation": "To use logging capability in translator",
  10237. "symfony/config": "",
  10238. "symfony/yaml": ""
  10239. },
  10240. "type": "library",
  10241. "autoload": {
  10242. "psr-4": {
  10243. "Symfony\\Component\\Translation\\": ""
  10244. },
  10245. "exclude-from-classmap": [
  10246. "/Tests/"
  10247. ]
  10248. },
  10249. "notification-url": "https://packagist.org/downloads/",
  10250. "license": [
  10251. "MIT"
  10252. ],
  10253. "authors": [
  10254. {
  10255. "name": "Fabien Potencier",
  10256. "email": "fabien@symfony.com"
  10257. },
  10258. {
  10259. "name": "Symfony Community",
  10260. "homepage": "https://symfony.com/contributors"
  10261. }
  10262. ],
  10263. "description": "Provides tools to internationalize your application",
  10264. "homepage": "https://symfony.com",
  10265. "support": {
  10266. "source": "https://github.com/symfony/translation/tree/v4.4.47"
  10267. },
  10268. "funding": [
  10269. {
  10270. "url": "https://symfony.com/sponsor",
  10271. "type": "custom"
  10272. },
  10273. {
  10274. "url": "https://github.com/fabpot",
  10275. "type": "github"
  10276. },
  10277. {
  10278. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10279. "type": "tidelift"
  10280. }
  10281. ],
  10282. "time": "2022-10-03T15:15:11+00:00"
  10283. },
  10284. {
  10285. "name": "symfony/translation-contracts",
  10286. "version": "v2.5.3",
  10287. "source": {
  10288. "type": "git",
  10289. "url": "https://github.com/symfony/translation-contracts.git",
  10290. "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664"
  10291. },
  10292. "dist": {
  10293. "type": "zip",
  10294. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b0073a77ac0b7ea55131020e87b1e3af540f4664",
  10295. "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664",
  10296. "shasum": ""
  10297. },
  10298. "require": {
  10299. "php": ">=7.2.5"
  10300. },
  10301. "suggest": {
  10302. "symfony/translation-implementation": ""
  10303. },
  10304. "type": "library",
  10305. "extra": {
  10306. "branch-alias": {
  10307. "dev-main": "2.5-dev"
  10308. },
  10309. "thanks": {
  10310. "name": "symfony/contracts",
  10311. "url": "https://github.com/symfony/contracts"
  10312. }
  10313. },
  10314. "autoload": {
  10315. "psr-4": {
  10316. "Symfony\\Contracts\\Translation\\": ""
  10317. }
  10318. },
  10319. "notification-url": "https://packagist.org/downloads/",
  10320. "license": [
  10321. "MIT"
  10322. ],
  10323. "authors": [
  10324. {
  10325. "name": "Nicolas Grekas",
  10326. "email": "p@tchwork.com"
  10327. },
  10328. {
  10329. "name": "Symfony Community",
  10330. "homepage": "https://symfony.com/contributors"
  10331. }
  10332. ],
  10333. "description": "Generic abstractions related to translation",
  10334. "homepage": "https://symfony.com",
  10335. "keywords": [
  10336. "abstractions",
  10337. "contracts",
  10338. "decoupling",
  10339. "interfaces",
  10340. "interoperability",
  10341. "standards"
  10342. ],
  10343. "support": {
  10344. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.3"
  10345. },
  10346. "funding": [
  10347. {
  10348. "url": "https://symfony.com/sponsor",
  10349. "type": "custom"
  10350. },
  10351. {
  10352. "url": "https://github.com/fabpot",
  10353. "type": "github"
  10354. },
  10355. {
  10356. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10357. "type": "tidelift"
  10358. }
  10359. ],
  10360. "time": "2024-01-23T13:51:25+00:00"
  10361. },
  10362. {
  10363. "name": "symfony/validator",
  10364. "version": "v4.4.48",
  10365. "source": {
  10366. "type": "git",
  10367. "url": "https://github.com/symfony/validator.git",
  10368. "reference": "54781a4c41efbd283b779110bf8ae7f263737775"
  10369. },
  10370. "dist": {
  10371. "type": "zip",
  10372. "url": "https://api.github.com/repos/symfony/validator/zipball/54781a4c41efbd283b779110bf8ae7f263737775",
  10373. "reference": "54781a4c41efbd283b779110bf8ae7f263737775",
  10374. "shasum": ""
  10375. },
  10376. "require": {
  10377. "php": ">=7.1.3",
  10378. "symfony/polyfill-ctype": "~1.8",
  10379. "symfony/polyfill-mbstring": "~1.0",
  10380. "symfony/polyfill-php80": "^1.16",
  10381. "symfony/translation-contracts": "^1.1|^2"
  10382. },
  10383. "conflict": {
  10384. "doctrine/lexer": "<1.1",
  10385. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  10386. "symfony/dependency-injection": "<3.4",
  10387. "symfony/http-kernel": "<4.4",
  10388. "symfony/intl": "<4.3",
  10389. "symfony/translation": ">=5.0",
  10390. "symfony/yaml": "<3.4"
  10391. },
  10392. "require-dev": {
  10393. "doctrine/annotations": "^1.10.4",
  10394. "doctrine/cache": "^1.0|^2.0",
  10395. "egulias/email-validator": "^2.1.10|^3",
  10396. "symfony/cache": "^3.4|^4.0|^5.0",
  10397. "symfony/config": "^3.4|^4.0|^5.0",
  10398. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  10399. "symfony/expression-language": "^3.4|^4.0|^5.0",
  10400. "symfony/http-client": "^4.3|^5.0",
  10401. "symfony/http-foundation": "^4.1|^5.0",
  10402. "symfony/http-kernel": "^4.4",
  10403. "symfony/intl": "^4.3|^5.0",
  10404. "symfony/mime": "^4.4|^5.0",
  10405. "symfony/property-access": "^3.4|^4.0|^5.0",
  10406. "symfony/property-info": "^3.4|^4.0|^5.0",
  10407. "symfony/translation": "^4.2",
  10408. "symfony/yaml": "^3.4|^4.0|^5.0"
  10409. },
  10410. "suggest": {
  10411. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  10412. "doctrine/cache": "For using the default cached annotation reader.",
  10413. "egulias/email-validator": "Strict (RFC compliant) email validation",
  10414. "psr/cache-implementation": "For using the mapping cache.",
  10415. "symfony/config": "",
  10416. "symfony/expression-language": "For using the Expression validator",
  10417. "symfony/http-foundation": "",
  10418. "symfony/intl": "",
  10419. "symfony/property-access": "For accessing properties within comparison constraints",
  10420. "symfony/property-info": "To automatically add NotNull and Type constraints",
  10421. "symfony/translation": "For translating validation errors.",
  10422. "symfony/yaml": ""
  10423. },
  10424. "type": "library",
  10425. "autoload": {
  10426. "psr-4": {
  10427. "Symfony\\Component\\Validator\\": ""
  10428. },
  10429. "exclude-from-classmap": [
  10430. "/Tests/"
  10431. ]
  10432. },
  10433. "notification-url": "https://packagist.org/downloads/",
  10434. "license": [
  10435. "MIT"
  10436. ],
  10437. "authors": [
  10438. {
  10439. "name": "Fabien Potencier",
  10440. "email": "fabien@symfony.com"
  10441. },
  10442. {
  10443. "name": "Symfony Community",
  10444. "homepage": "https://symfony.com/contributors"
  10445. }
  10446. ],
  10447. "description": "Provides tools to validate values",
  10448. "homepage": "https://symfony.com",
  10449. "support": {
  10450. "source": "https://github.com/symfony/validator/tree/v4.4.48"
  10451. },
  10452. "funding": [
  10453. {
  10454. "url": "https://symfony.com/sponsor",
  10455. "type": "custom"
  10456. },
  10457. {
  10458. "url": "https://github.com/fabpot",
  10459. "type": "github"
  10460. },
  10461. {
  10462. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10463. "type": "tidelift"
  10464. }
  10465. ],
  10466. "time": "2022-10-25T13:54:11+00:00"
  10467. },
  10468. {
  10469. "name": "symfony/var-dumper",
  10470. "version": "v5.4.43",
  10471. "source": {
  10472. "type": "git",
  10473. "url": "https://github.com/symfony/var-dumper.git",
  10474. "reference": "6be6a6a8af4818564e3726fc65cf936f34743cef"
  10475. },
  10476. "dist": {
  10477. "type": "zip",
  10478. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6be6a6a8af4818564e3726fc65cf936f34743cef",
  10479. "reference": "6be6a6a8af4818564e3726fc65cf936f34743cef",
  10480. "shasum": ""
  10481. },
  10482. "require": {
  10483. "php": ">=7.2.5",
  10484. "symfony/polyfill-mbstring": "~1.0",
  10485. "symfony/polyfill-php80": "^1.16"
  10486. },
  10487. "conflict": {
  10488. "symfony/console": "<4.4"
  10489. },
  10490. "require-dev": {
  10491. "ext-iconv": "*",
  10492. "symfony/console": "^4.4|^5.0|^6.0",
  10493. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  10494. "symfony/process": "^4.4|^5.0|^6.0",
  10495. "symfony/uid": "^5.1|^6.0",
  10496. "twig/twig": "^2.13|^3.0.4"
  10497. },
  10498. "suggest": {
  10499. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  10500. "ext-intl": "To show region name in time zone dump",
  10501. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  10502. },
  10503. "bin": [
  10504. "Resources/bin/var-dump-server"
  10505. ],
  10506. "type": "library",
  10507. "autoload": {
  10508. "files": [
  10509. "Resources/functions/dump.php"
  10510. ],
  10511. "psr-4": {
  10512. "Symfony\\Component\\VarDumper\\": ""
  10513. },
  10514. "exclude-from-classmap": [
  10515. "/Tests/"
  10516. ]
  10517. },
  10518. "notification-url": "https://packagist.org/downloads/",
  10519. "license": [
  10520. "MIT"
  10521. ],
  10522. "authors": [
  10523. {
  10524. "name": "Nicolas Grekas",
  10525. "email": "p@tchwork.com"
  10526. },
  10527. {
  10528. "name": "Symfony Community",
  10529. "homepage": "https://symfony.com/contributors"
  10530. }
  10531. ],
  10532. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  10533. "homepage": "https://symfony.com",
  10534. "keywords": [
  10535. "debug",
  10536. "dump"
  10537. ],
  10538. "support": {
  10539. "source": "https://github.com/symfony/var-dumper/tree/v5.4.43"
  10540. },
  10541. "funding": [
  10542. {
  10543. "url": "https://symfony.com/sponsor",
  10544. "type": "custom"
  10545. },
  10546. {
  10547. "url": "https://github.com/fabpot",
  10548. "type": "github"
  10549. },
  10550. {
  10551. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10552. "type": "tidelift"
  10553. }
  10554. ],
  10555. "time": "2024-08-30T16:01:46+00:00"
  10556. },
  10557. {
  10558. "name": "symfony/yaml",
  10559. "version": "v4.4.45",
  10560. "source": {
  10561. "type": "git",
  10562. "url": "https://github.com/symfony/yaml.git",
  10563. "reference": "aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d"
  10564. },
  10565. "dist": {
  10566. "type": "zip",
  10567. "url": "https://api.github.com/repos/symfony/yaml/zipball/aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d",
  10568. "reference": "aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d",
  10569. "shasum": ""
  10570. },
  10571. "require": {
  10572. "php": ">=7.1.3",
  10573. "symfony/polyfill-ctype": "~1.8"
  10574. },
  10575. "conflict": {
  10576. "symfony/console": "<3.4"
  10577. },
  10578. "require-dev": {
  10579. "symfony/console": "^3.4|^4.0|^5.0"
  10580. },
  10581. "suggest": {
  10582. "symfony/console": "For validating YAML files using the lint command"
  10583. },
  10584. "type": "library",
  10585. "autoload": {
  10586. "psr-4": {
  10587. "Symfony\\Component\\Yaml\\": ""
  10588. },
  10589. "exclude-from-classmap": [
  10590. "/Tests/"
  10591. ]
  10592. },
  10593. "notification-url": "https://packagist.org/downloads/",
  10594. "license": [
  10595. "MIT"
  10596. ],
  10597. "authors": [
  10598. {
  10599. "name": "Fabien Potencier",
  10600. "email": "fabien@symfony.com"
  10601. },
  10602. {
  10603. "name": "Symfony Community",
  10604. "homepage": "https://symfony.com/contributors"
  10605. }
  10606. ],
  10607. "description": "Loads and dumps YAML files",
  10608. "homepage": "https://symfony.com",
  10609. "support": {
  10610. "source": "https://github.com/symfony/yaml/tree/v4.4.45"
  10611. },
  10612. "funding": [
  10613. {
  10614. "url": "https://symfony.com/sponsor",
  10615. "type": "custom"
  10616. },
  10617. {
  10618. "url": "https://github.com/fabpot",
  10619. "type": "github"
  10620. },
  10621. {
  10622. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10623. "type": "tidelift"
  10624. }
  10625. ],
  10626. "time": "2022-08-02T15:47:23+00:00"
  10627. },
  10628. {
  10629. "name": "twig/twig",
  10630. "version": "v2.15.6",
  10631. "source": {
  10632. "type": "git",
  10633. "url": "https://github.com/twigphp/Twig.git",
  10634. "reference": "ad637405a828601a56f32ccab9a85541c4b66c9d"
  10635. },
  10636. "dist": {
  10637. "type": "zip",
  10638. "url": "https://api.github.com/repos/twigphp/Twig/zipball/ad637405a828601a56f32ccab9a85541c4b66c9d",
  10639. "reference": "ad637405a828601a56f32ccab9a85541c4b66c9d",
  10640. "shasum": ""
  10641. },
  10642. "require": {
  10643. "php": ">=7.1.3",
  10644. "symfony/polyfill-ctype": "^1.8",
  10645. "symfony/polyfill-mbstring": "^1.3",
  10646. "symfony/polyfill-php72": "^1.8"
  10647. },
  10648. "require-dev": {
  10649. "psr/container": "^1.0",
  10650. "symfony/phpunit-bridge": "^5.4.9|^6.3"
  10651. },
  10652. "type": "library",
  10653. "extra": {
  10654. "branch-alias": {
  10655. "dev-master": "2.15-dev"
  10656. }
  10657. },
  10658. "autoload": {
  10659. "psr-0": {
  10660. "Twig_": "lib/"
  10661. },
  10662. "psr-4": {
  10663. "Twig\\": "src/"
  10664. }
  10665. },
  10666. "notification-url": "https://packagist.org/downloads/",
  10667. "license": [
  10668. "BSD-3-Clause"
  10669. ],
  10670. "authors": [
  10671. {
  10672. "name": "Fabien Potencier",
  10673. "email": "fabien@symfony.com",
  10674. "homepage": "http://fabien.potencier.org",
  10675. "role": "Lead Developer"
  10676. },
  10677. {
  10678. "name": "Twig Team",
  10679. "role": "Contributors"
  10680. },
  10681. {
  10682. "name": "Armin Ronacher",
  10683. "email": "armin.ronacher@active-4.com",
  10684. "role": "Project Founder"
  10685. }
  10686. ],
  10687. "description": "Twig, the flexible, fast, and secure template language for PHP",
  10688. "homepage": "https://twig.symfony.com",
  10689. "keywords": [
  10690. "templating"
  10691. ],
  10692. "support": {
  10693. "issues": "https://github.com/twigphp/Twig/issues",
  10694. "source": "https://github.com/twigphp/Twig/tree/v2.15.6"
  10695. },
  10696. "funding": [
  10697. {
  10698. "url": "https://github.com/fabpot",
  10699. "type": "github"
  10700. },
  10701. {
  10702. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  10703. "type": "tidelift"
  10704. }
  10705. ],
  10706. "time": "2023-11-21T17:34:48+00:00"
  10707. },
  10708. {
  10709. "name": "typo3/phar-stream-wrapper",
  10710. "version": "v3.1.7",
  10711. "source": {
  10712. "type": "git",
  10713. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  10714. "reference": "5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c"
  10715. },
  10716. "dist": {
  10717. "type": "zip",
  10718. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c",
  10719. "reference": "5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c",
  10720. "shasum": ""
  10721. },
  10722. "require": {
  10723. "ext-json": "*",
  10724. "php": "^7.0 || ^8.0"
  10725. },
  10726. "require-dev": {
  10727. "ext-xdebug": "*",
  10728. "phpspec/prophecy": "^1.10",
  10729. "symfony/phpunit-bridge": "^5.1"
  10730. },
  10731. "suggest": {
  10732. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  10733. },
  10734. "type": "library",
  10735. "extra": {
  10736. "branch-alias": {
  10737. "dev-master": "v3.x-dev"
  10738. }
  10739. },
  10740. "autoload": {
  10741. "psr-4": {
  10742. "TYPO3\\PharStreamWrapper\\": "src/"
  10743. }
  10744. },
  10745. "notification-url": "https://packagist.org/downloads/",
  10746. "license": [
  10747. "MIT"
  10748. ],
  10749. "description": "Interceptors for PHP's native phar:// stream handling",
  10750. "homepage": "https://typo3.org/",
  10751. "keywords": [
  10752. "phar",
  10753. "php",
  10754. "security",
  10755. "stream-wrapper"
  10756. ],
  10757. "support": {
  10758. "issues": "https://github.com/TYPO3/phar-stream-wrapper/issues",
  10759. "source": "https://github.com/TYPO3/phar-stream-wrapper/tree/v3.1.7"
  10760. },
  10761. "time": "2021-09-20T19:19:13+00:00"
  10762. },
  10763. {
  10764. "name": "vlucas/phpdotenv",
  10765. "version": "v2.6.9",
  10766. "source": {
  10767. "type": "git",
  10768. "url": "https://github.com/vlucas/phpdotenv.git",
  10769. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141"
  10770. },
  10771. "dist": {
  10772. "type": "zip",
  10773. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  10774. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  10775. "shasum": ""
  10776. },
  10777. "require": {
  10778. "php": "^5.3.9 || ^7.0 || ^8.0",
  10779. "symfony/polyfill-ctype": "^1.17"
  10780. },
  10781. "require-dev": {
  10782. "ext-filter": "*",
  10783. "ext-pcre": "*",
  10784. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21"
  10785. },
  10786. "suggest": {
  10787. "ext-filter": "Required to use the boolean validator.",
  10788. "ext-pcre": "Required to use most of the library."
  10789. },
  10790. "type": "library",
  10791. "extra": {
  10792. "branch-alias": {
  10793. "dev-master": "2.6-dev"
  10794. }
  10795. },
  10796. "autoload": {
  10797. "psr-4": {
  10798. "Dotenv\\": "src/"
  10799. }
  10800. },
  10801. "notification-url": "https://packagist.org/downloads/",
  10802. "license": [
  10803. "BSD-3-Clause"
  10804. ],
  10805. "authors": [
  10806. {
  10807. "name": "Graham Campbell",
  10808. "email": "hello@gjcampbell.co.uk",
  10809. "homepage": "https://github.com/GrahamCampbell"
  10810. },
  10811. {
  10812. "name": "Vance Lucas",
  10813. "email": "vance@vancelucas.com",
  10814. "homepage": "https://github.com/vlucas"
  10815. }
  10816. ],
  10817. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10818. "keywords": [
  10819. "dotenv",
  10820. "env",
  10821. "environment"
  10822. ],
  10823. "support": {
  10824. "issues": "https://github.com/vlucas/phpdotenv/issues",
  10825. "source": "https://github.com/vlucas/phpdotenv/tree/v2.6.9"
  10826. },
  10827. "funding": [
  10828. {
  10829. "url": "https://github.com/GrahamCampbell",
  10830. "type": "github"
  10831. },
  10832. {
  10833. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  10834. "type": "tidelift"
  10835. }
  10836. ],
  10837. "time": "2021-12-12T22:59:22+00:00"
  10838. },
  10839. {
  10840. "name": "webflo/drupal-finder",
  10841. "version": "1.2.2",
  10842. "source": {
  10843. "type": "git",
  10844. "url": "https://github.com/webflo/drupal-finder.git",
  10845. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  10846. },
  10847. "dist": {
  10848. "type": "zip",
  10849. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  10850. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  10851. "shasum": ""
  10852. },
  10853. "require": {
  10854. "ext-json": "*"
  10855. },
  10856. "require-dev": {
  10857. "mikey179/vfsstream": "^1.6",
  10858. "phpunit/phpunit": "^4.8"
  10859. },
  10860. "type": "library",
  10861. "autoload": {
  10862. "classmap": [
  10863. "src/DrupalFinder.php"
  10864. ]
  10865. },
  10866. "notification-url": "https://packagist.org/downloads/",
  10867. "license": [
  10868. "GPL-2.0-or-later"
  10869. ],
  10870. "authors": [
  10871. {
  10872. "name": "Florian Weber",
  10873. "email": "florian@webflo.org"
  10874. }
  10875. ],
  10876. "description": "Helper class to locate a Drupal installation from a given path.",
  10877. "support": {
  10878. "issues": "https://github.com/webflo/drupal-finder/issues",
  10879. "source": "https://github.com/webflo/drupal-finder/tree/1.2.2"
  10880. },
  10881. "time": "2020-10-27T09:42:17+00:00"
  10882. },
  10883. {
  10884. "name": "webmozart/assert",
  10885. "version": "1.11.0",
  10886. "source": {
  10887. "type": "git",
  10888. "url": "https://github.com/webmozarts/assert.git",
  10889. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  10890. },
  10891. "dist": {
  10892. "type": "zip",
  10893. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10894. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10895. "shasum": ""
  10896. },
  10897. "require": {
  10898. "ext-ctype": "*",
  10899. "php": "^7.2 || ^8.0"
  10900. },
  10901. "conflict": {
  10902. "phpstan/phpstan": "<0.12.20",
  10903. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10904. },
  10905. "require-dev": {
  10906. "phpunit/phpunit": "^8.5.13"
  10907. },
  10908. "type": "library",
  10909. "extra": {
  10910. "branch-alias": {
  10911. "dev-master": "1.10-dev"
  10912. }
  10913. },
  10914. "autoload": {
  10915. "psr-4": {
  10916. "Webmozart\\Assert\\": "src/"
  10917. }
  10918. },
  10919. "notification-url": "https://packagist.org/downloads/",
  10920. "license": [
  10921. "MIT"
  10922. ],
  10923. "authors": [
  10924. {
  10925. "name": "Bernhard Schussek",
  10926. "email": "bschussek@gmail.com"
  10927. }
  10928. ],
  10929. "description": "Assertions to validate method input/output with nice error messages.",
  10930. "keywords": [
  10931. "assert",
  10932. "check",
  10933. "validate"
  10934. ],
  10935. "support": {
  10936. "issues": "https://github.com/webmozarts/assert/issues",
  10937. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  10938. },
  10939. "time": "2022-06-03T18:03:27+00:00"
  10940. },
  10941. {
  10942. "name": "webmozart/path-util",
  10943. "version": "2.3.0",
  10944. "source": {
  10945. "type": "git",
  10946. "url": "https://github.com/webmozart/path-util.git",
  10947. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  10948. },
  10949. "dist": {
  10950. "type": "zip",
  10951. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10952. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10953. "shasum": ""
  10954. },
  10955. "require": {
  10956. "php": ">=5.3.3",
  10957. "webmozart/assert": "~1.0"
  10958. },
  10959. "require-dev": {
  10960. "phpunit/phpunit": "^4.6",
  10961. "sebastian/version": "^1.0.1"
  10962. },
  10963. "type": "library",
  10964. "extra": {
  10965. "branch-alias": {
  10966. "dev-master": "2.3-dev"
  10967. }
  10968. },
  10969. "autoload": {
  10970. "psr-4": {
  10971. "Webmozart\\PathUtil\\": "src/"
  10972. }
  10973. },
  10974. "notification-url": "https://packagist.org/downloads/",
  10975. "license": [
  10976. "MIT"
  10977. ],
  10978. "authors": [
  10979. {
  10980. "name": "Bernhard Schussek",
  10981. "email": "bschussek@gmail.com"
  10982. }
  10983. ],
  10984. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  10985. "support": {
  10986. "issues": "https://github.com/webmozart/path-util/issues",
  10987. "source": "https://github.com/webmozart/path-util/tree/2.3.0"
  10988. },
  10989. "abandoned": "symfony/filesystem",
  10990. "time": "2015-12-17T08:42:14+00:00"
  10991. }
  10992. ],
  10993. "packages-dev": [],
  10994. "aliases": [],
  10995. "minimum-stability": "dev",
  10996. "stability-flags": {
  10997. "drupal/better_messages": 15,
  10998. "drupal/bulkdelete": 20,
  10999. "drupal/domain": 15,
  11000. "drupal/filefield_sources": 15,
  11001. "drupal/filter_perms": 15,
  11002. "drupal/linkit": 10,
  11003. "drupal/maillog": 10,
  11004. "drupal/synonyms": 15
  11005. },
  11006. "prefer-stable": true,
  11007. "prefer-lowest": false,
  11008. "platform": {
  11009. "php": ">=5.6"
  11010. },
  11011. "platform-dev": [],
  11012. "plugin-api-version": "2.6.0"
  11013. }