composer.lock 328 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027
  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": "139b96faaef20f616e1fd592bb3466e8",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/50f57105bad3d97a43ec4a485eb57daf347eafea",
  20. "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.3|^8.0",
  25. "symfony/http-foundation": "^5.3|^6|^7",
  26. "symfony/http-kernel": "^5.3|^6|^7"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^9",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.2-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/"
  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/v2.2.0"
  62. },
  63. "time": "2023-11-14T13:51:46+00:00"
  64. },
  65. {
  66. "name": "chi-teck/drupal-code-generator",
  67. "version": "3.3.0",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  71. "reference": "56da9209b24a5a5b5d27bec9e523f02bdd101770"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/56da9209b24a5a5b5d27bec9e523f02bdd101770",
  76. "reference": "56da9209b24a5a5b5d27bec9e523f02bdd101770",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "ext-json": "*",
  81. "php": ">=8.1.0",
  82. "psr/event-dispatcher": "^1.0",
  83. "psr/log": "^3.0",
  84. "symfony/console": "^6.3",
  85. "symfony/dependency-injection": "^6.3.2",
  86. "symfony/filesystem": "^6.3",
  87. "symfony/string": "^6.3",
  88. "twig/twig": "^3.4"
  89. },
  90. "conflict": {
  91. "squizlabs/php_codesniffer": "<3.6"
  92. },
  93. "require-dev": {
  94. "chi-teck/drupal-coder-extension": "^2.0.0-alpha4",
  95. "drupal/coder": "8.3.22",
  96. "drupal/core": "10.1.x-dev",
  97. "ext-simplexml": "*",
  98. "phpspec/prophecy-phpunit": "^2.0",
  99. "phpunit/phpunit": "^9.5",
  100. "squizlabs/php_codesniffer": "^3.7",
  101. "symfony/var-dumper": "^6.3",
  102. "symfony/yaml": "^6.3",
  103. "vimeo/psalm": "^5.14.0"
  104. },
  105. "bin": [
  106. "bin/dcg"
  107. ],
  108. "type": "library",
  109. "autoload": {
  110. "psr-4": {
  111. "DrupalCodeGenerator\\": "src"
  112. }
  113. },
  114. "notification-url": "https://packagist.org/downloads/",
  115. "license": [
  116. "GPL-2.0-or-later"
  117. ],
  118. "description": "Drupal code generator",
  119. "support": {
  120. "issues": "https://github.com/Chi-teck/drupal-code-generator/issues",
  121. "source": "https://github.com/Chi-teck/drupal-code-generator/tree/3.3.0"
  122. },
  123. "time": "2023-10-21T12:57:05+00:00"
  124. },
  125. {
  126. "name": "commerceguys/addressing",
  127. "version": "v2.2.0",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/commerceguys/addressing.git",
  131. "reference": "a5af40bd4b6edee5101e182085e67b7ff5d4a89b"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/a5af40bd4b6edee5101e182085e67b7ff5d4a89b",
  136. "reference": "a5af40bd4b6edee5101e182085e67b7ff5d4a89b",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "doctrine/collections": "^1.6 || ^2.0",
  141. "php": ">=8.0"
  142. },
  143. "require-dev": {
  144. "ext-json": "*",
  145. "mikey179/vfsstream": "^1.6.11",
  146. "phpunit/phpunit": "^9.6",
  147. "squizlabs/php_codesniffer": "^3.7",
  148. "symfony/validator": "^5.4 || ^6.3 || ^7.0"
  149. },
  150. "suggest": {
  151. "symfony/validator": "to validate addresses"
  152. },
  153. "type": "library",
  154. "extra": {
  155. "branch-alias": {
  156. "dev-master": "2.x-dev"
  157. }
  158. },
  159. "autoload": {
  160. "psr-4": {
  161. "CommerceGuys\\Addressing\\": "src"
  162. }
  163. },
  164. "notification-url": "https://packagist.org/downloads/",
  165. "license": [
  166. "MIT"
  167. ],
  168. "authors": [
  169. {
  170. "name": "Bojan Zivanovic"
  171. },
  172. {
  173. "name": "Damien Tournoud"
  174. }
  175. ],
  176. "description": "Addressing library powered by CLDR and Google's address data.",
  177. "keywords": [
  178. "address",
  179. "internationalization",
  180. "localization",
  181. "postal"
  182. ],
  183. "support": {
  184. "issues": "https://github.com/commerceguys/addressing/issues",
  185. "source": "https://github.com/commerceguys/addressing/tree/v2.2.0"
  186. },
  187. "time": "2024-02-25T11:22:16+00:00"
  188. },
  189. {
  190. "name": "composer/installers",
  191. "version": "v1.12.0",
  192. "source": {
  193. "type": "git",
  194. "url": "https://github.com/composer/installers.git",
  195. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19"
  196. },
  197. "dist": {
  198. "type": "zip",
  199. "url": "https://api.github.com/repos/composer/installers/zipball/d20a64ed3c94748397ff5973488761b22f6d3f19",
  200. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19",
  201. "shasum": ""
  202. },
  203. "require": {
  204. "composer-plugin-api": "^1.0 || ^2.0"
  205. },
  206. "replace": {
  207. "roundcube/plugin-installer": "*",
  208. "shama/baton": "*"
  209. },
  210. "require-dev": {
  211. "composer/composer": "1.6.* || ^2.0",
  212. "composer/semver": "^1 || ^3",
  213. "phpstan/phpstan": "^0.12.55",
  214. "phpstan/phpstan-phpunit": "^0.12.16",
  215. "symfony/phpunit-bridge": "^4.2 || ^5",
  216. "symfony/process": "^2.3"
  217. },
  218. "type": "composer-plugin",
  219. "extra": {
  220. "class": "Composer\\Installers\\Plugin",
  221. "branch-alias": {
  222. "dev-main": "1.x-dev"
  223. }
  224. },
  225. "autoload": {
  226. "psr-4": {
  227. "Composer\\Installers\\": "src/Composer/Installers"
  228. }
  229. },
  230. "notification-url": "https://packagist.org/downloads/",
  231. "license": [
  232. "MIT"
  233. ],
  234. "authors": [
  235. {
  236. "name": "Kyle Robinson Young",
  237. "email": "kyle@dontkry.com",
  238. "homepage": "https://github.com/shama"
  239. }
  240. ],
  241. "description": "A multi-framework Composer library installer",
  242. "homepage": "https://composer.github.io/installers/",
  243. "keywords": [
  244. "Craft",
  245. "Dolibarr",
  246. "Eliasis",
  247. "Hurad",
  248. "ImageCMS",
  249. "Kanboard",
  250. "Lan Management System",
  251. "MODX Evo",
  252. "MantisBT",
  253. "Mautic",
  254. "Maya",
  255. "OXID",
  256. "Plentymarkets",
  257. "Porto",
  258. "RadPHP",
  259. "SMF",
  260. "Starbug",
  261. "Thelia",
  262. "Whmcs",
  263. "WolfCMS",
  264. "agl",
  265. "aimeos",
  266. "annotatecms",
  267. "attogram",
  268. "bitrix",
  269. "cakephp",
  270. "chef",
  271. "cockpit",
  272. "codeigniter",
  273. "concrete5",
  274. "croogo",
  275. "dokuwiki",
  276. "drupal",
  277. "eZ Platform",
  278. "elgg",
  279. "expressionengine",
  280. "fuelphp",
  281. "grav",
  282. "installer",
  283. "itop",
  284. "joomla",
  285. "known",
  286. "kohana",
  287. "laravel",
  288. "lavalite",
  289. "lithium",
  290. "magento",
  291. "majima",
  292. "mako",
  293. "mediawiki",
  294. "miaoxing",
  295. "modulework",
  296. "modx",
  297. "moodle",
  298. "osclass",
  299. "pantheon",
  300. "phpbb",
  301. "piwik",
  302. "ppi",
  303. "processwire",
  304. "puppet",
  305. "pxcms",
  306. "reindex",
  307. "roundcube",
  308. "shopware",
  309. "silverstripe",
  310. "sydes",
  311. "sylius",
  312. "symfony",
  313. "tastyigniter",
  314. "typo3",
  315. "wordpress",
  316. "yawik",
  317. "zend",
  318. "zikula"
  319. ],
  320. "support": {
  321. "issues": "https://github.com/composer/installers/issues",
  322. "source": "https://github.com/composer/installers/tree/v1.12.0"
  323. },
  324. "funding": [
  325. {
  326. "url": "https://packagist.com",
  327. "type": "custom"
  328. },
  329. {
  330. "url": "https://github.com/composer",
  331. "type": "github"
  332. },
  333. {
  334. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  335. "type": "tidelift"
  336. }
  337. ],
  338. "time": "2021-09-13T08:19:44+00:00"
  339. },
  340. {
  341. "name": "composer/semver",
  342. "version": "3.4.0",
  343. "source": {
  344. "type": "git",
  345. "url": "https://github.com/composer/semver.git",
  346. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  347. },
  348. "dist": {
  349. "type": "zip",
  350. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  351. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  352. "shasum": ""
  353. },
  354. "require": {
  355. "php": "^5.3.2 || ^7.0 || ^8.0"
  356. },
  357. "require-dev": {
  358. "phpstan/phpstan": "^1.4",
  359. "symfony/phpunit-bridge": "^4.2 || ^5"
  360. },
  361. "type": "library",
  362. "extra": {
  363. "branch-alias": {
  364. "dev-main": "3.x-dev"
  365. }
  366. },
  367. "autoload": {
  368. "psr-4": {
  369. "Composer\\Semver\\": "src"
  370. }
  371. },
  372. "notification-url": "https://packagist.org/downloads/",
  373. "license": [
  374. "MIT"
  375. ],
  376. "authors": [
  377. {
  378. "name": "Nils Adermann",
  379. "email": "naderman@naderman.de",
  380. "homepage": "http://www.naderman.de"
  381. },
  382. {
  383. "name": "Jordi Boggiano",
  384. "email": "j.boggiano@seld.be",
  385. "homepage": "http://seld.be"
  386. },
  387. {
  388. "name": "Rob Bast",
  389. "email": "rob.bast@gmail.com",
  390. "homepage": "http://robbast.nl"
  391. }
  392. ],
  393. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  394. "keywords": [
  395. "semantic",
  396. "semver",
  397. "validation",
  398. "versioning"
  399. ],
  400. "support": {
  401. "irc": "ircs://irc.libera.chat:6697/composer",
  402. "issues": "https://github.com/composer/semver/issues",
  403. "source": "https://github.com/composer/semver/tree/3.4.0"
  404. },
  405. "funding": [
  406. {
  407. "url": "https://packagist.com",
  408. "type": "custom"
  409. },
  410. {
  411. "url": "https://github.com/composer",
  412. "type": "github"
  413. },
  414. {
  415. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  416. "type": "tidelift"
  417. }
  418. ],
  419. "time": "2023-08-31T09:50:34+00:00"
  420. },
  421. {
  422. "name": "consolidation/annotated-command",
  423. "version": "4.9.2",
  424. "source": {
  425. "type": "git",
  426. "url": "https://github.com/consolidation/annotated-command.git",
  427. "reference": "b5255dcbee1de95036185062a103dabc622224de"
  428. },
  429. "dist": {
  430. "type": "zip",
  431. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/b5255dcbee1de95036185062a103dabc622224de",
  432. "reference": "b5255dcbee1de95036185062a103dabc622224de",
  433. "shasum": ""
  434. },
  435. "require": {
  436. "consolidation/output-formatters": "^4.3.1",
  437. "php": ">=7.1.3",
  438. "psr/log": "^1 || ^2 || ^3",
  439. "symfony/console": "^4.4.8 || ^5 || ^6",
  440. "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6",
  441. "symfony/finder": "^4.4.8 || ^5 || ^6"
  442. },
  443. "require-dev": {
  444. "composer-runtime-api": "^2.0",
  445. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  446. "squizlabs/php_codesniffer": "^3",
  447. "yoast/phpunit-polyfills": "^0.2.0"
  448. },
  449. "type": "library",
  450. "extra": {
  451. "branch-alias": {
  452. "dev-main": "4.x-dev"
  453. }
  454. },
  455. "autoload": {
  456. "psr-4": {
  457. "Consolidation\\AnnotatedCommand\\": "src"
  458. }
  459. },
  460. "notification-url": "https://packagist.org/downloads/",
  461. "license": [
  462. "MIT"
  463. ],
  464. "authors": [
  465. {
  466. "name": "Greg Anderson",
  467. "email": "greg.1.anderson@greenknowe.org"
  468. }
  469. ],
  470. "description": "Initialize Symfony Console commands from annotated command class methods.",
  471. "support": {
  472. "issues": "https://github.com/consolidation/annotated-command/issues",
  473. "source": "https://github.com/consolidation/annotated-command/tree/4.9.2"
  474. },
  475. "time": "2023-12-26T14:30:50+00:00"
  476. },
  477. {
  478. "name": "consolidation/config",
  479. "version": "2.1.2",
  480. "source": {
  481. "type": "git",
  482. "url": "https://github.com/consolidation/config.git",
  483. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae"
  484. },
  485. "dist": {
  486. "type": "zip",
  487. "url": "https://api.github.com/repos/consolidation/config/zipball/597f8d7fbeef801736250ec10c3e190569b1b0ae",
  488. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae",
  489. "shasum": ""
  490. },
  491. "require": {
  492. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  493. "grasmash/expander": "^2.0.1 || ^3",
  494. "php": ">=7.1.3",
  495. "symfony/event-dispatcher": "^4 || ^5 || ^6"
  496. },
  497. "require-dev": {
  498. "ext-json": "*",
  499. "phpunit/phpunit": ">=7.5.20",
  500. "squizlabs/php_codesniffer": "^3",
  501. "symfony/console": "^4 || ^5 || ^6",
  502. "symfony/yaml": "^4 || ^5 || ^6",
  503. "yoast/phpunit-polyfills": "^1"
  504. },
  505. "suggest": {
  506. "symfony/event-dispatcher": "Required to inject configuration into Command options",
  507. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  508. },
  509. "type": "library",
  510. "extra": {
  511. "branch-alias": {
  512. "dev-main": "2.x-dev"
  513. }
  514. },
  515. "autoload": {
  516. "psr-4": {
  517. "Consolidation\\Config\\": "src"
  518. }
  519. },
  520. "notification-url": "https://packagist.org/downloads/",
  521. "license": [
  522. "MIT"
  523. ],
  524. "authors": [
  525. {
  526. "name": "Greg Anderson",
  527. "email": "greg.1.anderson@greenknowe.org"
  528. }
  529. ],
  530. "description": "Provide configuration services for a commandline tool.",
  531. "support": {
  532. "issues": "https://github.com/consolidation/config/issues",
  533. "source": "https://github.com/consolidation/config/tree/2.1.2"
  534. },
  535. "time": "2022-10-06T17:48:03+00:00"
  536. },
  537. {
  538. "name": "consolidation/filter-via-dot-access-data",
  539. "version": "2.0.2",
  540. "source": {
  541. "type": "git",
  542. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  543. "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b"
  544. },
  545. "dist": {
  546. "type": "zip",
  547. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
  548. "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
  549. "shasum": ""
  550. },
  551. "require": {
  552. "dflydev/dot-access-data": "^1.1.0 || ^2.0.0 || ^3.0.0",
  553. "php": ">=7.1.3"
  554. },
  555. "require-dev": {
  556. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  557. "squizlabs/php_codesniffer": "^3",
  558. "yoast/phpunit-polyfills": "^0.2.0"
  559. },
  560. "type": "library",
  561. "extra": {
  562. "branch-alias": {
  563. "dev-main": "2.x-dev"
  564. }
  565. },
  566. "autoload": {
  567. "psr-4": {
  568. "Consolidation\\Filter\\": "src"
  569. }
  570. },
  571. "notification-url": "https://packagist.org/downloads/",
  572. "license": [
  573. "MIT"
  574. ],
  575. "authors": [
  576. {
  577. "name": "Greg Anderson",
  578. "email": "greg.1.anderson@greenknowe.org"
  579. }
  580. ],
  581. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  582. "support": {
  583. "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/2.0.2"
  584. },
  585. "time": "2021-12-30T03:56:08+00:00"
  586. },
  587. {
  588. "name": "consolidation/log",
  589. "version": "3.0.0",
  590. "source": {
  591. "type": "git",
  592. "url": "https://github.com/consolidation/log.git",
  593. "reference": "caaad9d70dae54eb49002666f000e3c607066878"
  594. },
  595. "dist": {
  596. "type": "zip",
  597. "url": "https://api.github.com/repos/consolidation/log/zipball/caaad9d70dae54eb49002666f000e3c607066878",
  598. "reference": "caaad9d70dae54eb49002666f000e3c607066878",
  599. "shasum": ""
  600. },
  601. "require": {
  602. "php": ">=8.0.0",
  603. "psr/log": "^3",
  604. "symfony/console": "^5 || ^6"
  605. },
  606. "require-dev": {
  607. "phpunit/phpunit": ">=7.5.20",
  608. "squizlabs/php_codesniffer": "^3",
  609. "yoast/phpunit-polyfills": "^0.2.0"
  610. },
  611. "type": "library",
  612. "extra": {
  613. "branch-alias": {
  614. "dev-main": "2.x-dev"
  615. }
  616. },
  617. "autoload": {
  618. "psr-4": {
  619. "Consolidation\\Log\\": "src"
  620. }
  621. },
  622. "notification-url": "https://packagist.org/downloads/",
  623. "license": [
  624. "MIT"
  625. ],
  626. "authors": [
  627. {
  628. "name": "Greg Anderson",
  629. "email": "greg.1.anderson@greenknowe.org"
  630. }
  631. ],
  632. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  633. "support": {
  634. "issues": "https://github.com/consolidation/log/issues",
  635. "source": "https://github.com/consolidation/log/tree/3.0.0"
  636. },
  637. "time": "2022-04-05T16:53:32+00:00"
  638. },
  639. {
  640. "name": "consolidation/output-formatters",
  641. "version": "4.3.2",
  642. "source": {
  643. "type": "git",
  644. "url": "https://github.com/consolidation/output-formatters.git",
  645. "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58"
  646. },
  647. "dist": {
  648. "type": "zip",
  649. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/06711568b4cd169700ff7e8075db0a9a341ceb58",
  650. "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58",
  651. "shasum": ""
  652. },
  653. "require": {
  654. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  655. "php": ">=7.1.3",
  656. "symfony/console": "^4 || ^5 || ^6",
  657. "symfony/finder": "^4 || ^5 || ^6"
  658. },
  659. "require-dev": {
  660. "php-coveralls/php-coveralls": "^2.4.2",
  661. "phpunit/phpunit": "^7 || ^8 || ^9",
  662. "squizlabs/php_codesniffer": "^3",
  663. "symfony/var-dumper": "^4 || ^5 || ^6",
  664. "symfony/yaml": "^4 || ^5 || ^6",
  665. "yoast/phpunit-polyfills": "^1"
  666. },
  667. "suggest": {
  668. "symfony/var-dumper": "For using the var_dump formatter"
  669. },
  670. "type": "library",
  671. "autoload": {
  672. "psr-4": {
  673. "Consolidation\\OutputFormatters\\": "src"
  674. }
  675. },
  676. "notification-url": "https://packagist.org/downloads/",
  677. "license": [
  678. "MIT"
  679. ],
  680. "authors": [
  681. {
  682. "name": "Greg Anderson",
  683. "email": "greg.1.anderson@greenknowe.org"
  684. }
  685. ],
  686. "description": "Format text by applying transformations provided by plug-in formatters.",
  687. "support": {
  688. "issues": "https://github.com/consolidation/output-formatters/issues",
  689. "source": "https://github.com/consolidation/output-formatters/tree/4.3.2"
  690. },
  691. "time": "2023-07-06T04:45:41+00:00"
  692. },
  693. {
  694. "name": "consolidation/robo",
  695. "version": "4.0.6",
  696. "source": {
  697. "type": "git",
  698. "url": "https://github.com/consolidation/robo.git",
  699. "reference": "55a272370940607649e5c46eb173c5c54f7c166d"
  700. },
  701. "dist": {
  702. "type": "zip",
  703. "url": "https://api.github.com/repos/consolidation/robo/zipball/55a272370940607649e5c46eb173c5c54f7c166d",
  704. "reference": "55a272370940607649e5c46eb173c5c54f7c166d",
  705. "shasum": ""
  706. },
  707. "require": {
  708. "consolidation/annotated-command": "^4.8.1",
  709. "consolidation/config": "^2.0.1",
  710. "consolidation/log": "^2.0.2 || ^3",
  711. "consolidation/output-formatters": "^4.1.2",
  712. "consolidation/self-update": "^2.0",
  713. "league/container": "^3.3.1 || ^4.0",
  714. "php": ">=8.0",
  715. "phpowermove/docblock": "^4.0",
  716. "symfony/console": "^6",
  717. "symfony/event-dispatcher": "^6",
  718. "symfony/filesystem": "^6",
  719. "symfony/finder": "^6",
  720. "symfony/process": "^6",
  721. "symfony/yaml": "^6"
  722. },
  723. "conflict": {
  724. "codegyre/robo": "*"
  725. },
  726. "require-dev": {
  727. "natxet/cssmin": "3.0.4",
  728. "patchwork/jsqueeze": "^2",
  729. "pear/archive_tar": "^1.4.4",
  730. "phpunit/phpunit": "^7.5.20 || ^8",
  731. "squizlabs/php_codesniffer": "^3.6",
  732. "yoast/phpunit-polyfills": "^0.2.0"
  733. },
  734. "suggest": {
  735. "natxet/cssmin": "For minifying CSS files in taskMinify",
  736. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  737. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.",
  738. "totten/lurkerlite": "For monitoring filesystem changes in taskWatch"
  739. },
  740. "bin": [
  741. "robo"
  742. ],
  743. "type": "library",
  744. "autoload": {
  745. "psr-4": {
  746. "Robo\\": "src"
  747. }
  748. },
  749. "notification-url": "https://packagist.org/downloads/",
  750. "license": [
  751. "MIT"
  752. ],
  753. "authors": [
  754. {
  755. "name": "Davert",
  756. "email": "davert.php@resend.cc"
  757. }
  758. ],
  759. "description": "Modern task runner",
  760. "support": {
  761. "issues": "https://github.com/consolidation/robo/issues",
  762. "source": "https://github.com/consolidation/robo/tree/4.0.6"
  763. },
  764. "time": "2023-04-30T21:49:04+00:00"
  765. },
  766. {
  767. "name": "consolidation/self-update",
  768. "version": "2.2.0",
  769. "source": {
  770. "type": "git",
  771. "url": "https://github.com/consolidation/self-update.git",
  772. "reference": "972a1016761c9b63314e040836a12795dff6953a"
  773. },
  774. "dist": {
  775. "type": "zip",
  776. "url": "https://api.github.com/repos/consolidation/self-update/zipball/972a1016761c9b63314e040836a12795dff6953a",
  777. "reference": "972a1016761c9b63314e040836a12795dff6953a",
  778. "shasum": ""
  779. },
  780. "require": {
  781. "composer/semver": "^3.2",
  782. "php": ">=5.5.0",
  783. "symfony/console": "^2.8 || ^3 || ^4 || ^5 || ^6",
  784. "symfony/filesystem": "^2.5 || ^3 || ^4 || ^5 || ^6"
  785. },
  786. "bin": [
  787. "scripts/release"
  788. ],
  789. "type": "library",
  790. "extra": {
  791. "branch-alias": {
  792. "dev-main": "2.x-dev"
  793. }
  794. },
  795. "autoload": {
  796. "psr-4": {
  797. "SelfUpdate\\": "src"
  798. }
  799. },
  800. "notification-url": "https://packagist.org/downloads/",
  801. "license": [
  802. "MIT"
  803. ],
  804. "authors": [
  805. {
  806. "name": "Alexander Menk",
  807. "email": "menk@mestrona.net"
  808. },
  809. {
  810. "name": "Greg Anderson",
  811. "email": "greg.1.anderson@greenknowe.org"
  812. }
  813. ],
  814. "description": "Provides a self:update command for Symfony Console applications.",
  815. "support": {
  816. "issues": "https://github.com/consolidation/self-update/issues",
  817. "source": "https://github.com/consolidation/self-update/tree/2.2.0"
  818. },
  819. "time": "2023-03-18T01:37:41+00:00"
  820. },
  821. {
  822. "name": "consolidation/site-alias",
  823. "version": "4.0.1",
  824. "source": {
  825. "type": "git",
  826. "url": "https://github.com/consolidation/site-alias.git",
  827. "reference": "b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5"
  828. },
  829. "dist": {
  830. "type": "zip",
  831. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5",
  832. "reference": "b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5",
  833. "shasum": ""
  834. },
  835. "require": {
  836. "consolidation/config": "^1.2.1 || ^2",
  837. "php": ">=7.4",
  838. "symfony/filesystem": "^5.4 || ^6",
  839. "symfony/finder": "^5 || ^6"
  840. },
  841. "require-dev": {
  842. "php-coveralls/php-coveralls": "^2.4.2",
  843. "phpunit/phpunit": ">=7",
  844. "squizlabs/php_codesniffer": "^3",
  845. "symfony/var-dumper": "^4",
  846. "yoast/phpunit-polyfills": "^0.2.0"
  847. },
  848. "type": "library",
  849. "extra": {
  850. "branch-alias": {
  851. "dev-main": "4.x-dev"
  852. }
  853. },
  854. "autoload": {
  855. "psr-4": {
  856. "Consolidation\\SiteAlias\\": "src"
  857. }
  858. },
  859. "notification-url": "https://packagist.org/downloads/",
  860. "license": [
  861. "MIT"
  862. ],
  863. "authors": [
  864. {
  865. "name": "Greg Anderson",
  866. "email": "greg.1.anderson@greenknowe.org"
  867. },
  868. {
  869. "name": "Moshe Weitzman",
  870. "email": "weitzman@tejasa.com"
  871. }
  872. ],
  873. "description": "Manage alias records for local and remote sites.",
  874. "support": {
  875. "issues": "https://github.com/consolidation/site-alias/issues",
  876. "source": "https://github.com/consolidation/site-alias/tree/4.0.1"
  877. },
  878. "time": "2023-04-29T17:18:10+00:00"
  879. },
  880. {
  881. "name": "consolidation/site-process",
  882. "version": "5.2.0",
  883. "source": {
  884. "type": "git",
  885. "url": "https://github.com/consolidation/site-process.git",
  886. "reference": "6c44638d7af8a8b4abe12c3180701243f480539d"
  887. },
  888. "dist": {
  889. "type": "zip",
  890. "url": "https://api.github.com/repos/consolidation/site-process/zipball/6c44638d7af8a8b4abe12c3180701243f480539d",
  891. "reference": "6c44638d7af8a8b4abe12c3180701243f480539d",
  892. "shasum": ""
  893. },
  894. "require": {
  895. "consolidation/config": "^2",
  896. "consolidation/site-alias": "^3 || ^4",
  897. "php": ">=8.0.14",
  898. "symfony/console": "^5.4 || ^6",
  899. "symfony/process": "^6"
  900. },
  901. "require-dev": {
  902. "phpunit/phpunit": "^9",
  903. "squizlabs/php_codesniffer": "^3"
  904. },
  905. "type": "library",
  906. "extra": {
  907. "branch-alias": {
  908. "dev-main": "5.x-dev"
  909. }
  910. },
  911. "autoload": {
  912. "psr-4": {
  913. "Consolidation\\SiteProcess\\": "src"
  914. }
  915. },
  916. "notification-url": "https://packagist.org/downloads/",
  917. "license": [
  918. "MIT"
  919. ],
  920. "authors": [
  921. {
  922. "name": "Greg Anderson",
  923. "email": "greg.1.anderson@greenknowe.org"
  924. },
  925. {
  926. "name": "Moshe Weitzman",
  927. "email": "weitzman@tejasa.com"
  928. }
  929. ],
  930. "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.",
  931. "support": {
  932. "issues": "https://github.com/consolidation/site-process/issues",
  933. "source": "https://github.com/consolidation/site-process/tree/5.2.0"
  934. },
  935. "time": "2022-12-06T17:57:16+00:00"
  936. },
  937. {
  938. "name": "dflydev/dot-access-data",
  939. "version": "v3.0.2",
  940. "source": {
  941. "type": "git",
  942. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  943. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  944. },
  945. "dist": {
  946. "type": "zip",
  947. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  948. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  949. "shasum": ""
  950. },
  951. "require": {
  952. "php": "^7.1 || ^8.0"
  953. },
  954. "require-dev": {
  955. "phpstan/phpstan": "^0.12.42",
  956. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  957. "scrutinizer/ocular": "1.6.0",
  958. "squizlabs/php_codesniffer": "^3.5",
  959. "vimeo/psalm": "^4.0.0"
  960. },
  961. "type": "library",
  962. "extra": {
  963. "branch-alias": {
  964. "dev-main": "3.x-dev"
  965. }
  966. },
  967. "autoload": {
  968. "psr-4": {
  969. "Dflydev\\DotAccessData\\": "src/"
  970. }
  971. },
  972. "notification-url": "https://packagist.org/downloads/",
  973. "license": [
  974. "MIT"
  975. ],
  976. "authors": [
  977. {
  978. "name": "Dragonfly Development Inc.",
  979. "email": "info@dflydev.com",
  980. "homepage": "http://dflydev.com"
  981. },
  982. {
  983. "name": "Beau Simensen",
  984. "email": "beau@dflydev.com",
  985. "homepage": "http://beausimensen.com"
  986. },
  987. {
  988. "name": "Carlos Frutos",
  989. "email": "carlos@kiwing.it",
  990. "homepage": "https://github.com/cfrutos"
  991. },
  992. {
  993. "name": "Colin O'Dell",
  994. "email": "colinodell@gmail.com",
  995. "homepage": "https://www.colinodell.com"
  996. }
  997. ],
  998. "description": "Given a deep data structure, access data by dot notation.",
  999. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1000. "keywords": [
  1001. "access",
  1002. "data",
  1003. "dot",
  1004. "notation"
  1005. ],
  1006. "support": {
  1007. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1008. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  1009. },
  1010. "time": "2022-10-27T11:44:00+00:00"
  1011. },
  1012. {
  1013. "name": "doctrine/annotations",
  1014. "version": "1.14.3",
  1015. "source": {
  1016. "type": "git",
  1017. "url": "https://github.com/doctrine/annotations.git",
  1018. "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af"
  1019. },
  1020. "dist": {
  1021. "type": "zip",
  1022. "url": "https://api.github.com/repos/doctrine/annotations/zipball/fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af",
  1023. "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af",
  1024. "shasum": ""
  1025. },
  1026. "require": {
  1027. "doctrine/lexer": "^1 || ^2",
  1028. "ext-tokenizer": "*",
  1029. "php": "^7.1 || ^8.0",
  1030. "psr/cache": "^1 || ^2 || ^3"
  1031. },
  1032. "require-dev": {
  1033. "doctrine/cache": "^1.11 || ^2.0",
  1034. "doctrine/coding-standard": "^9 || ^10",
  1035. "phpstan/phpstan": "~1.4.10 || ^1.8.0",
  1036. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1037. "symfony/cache": "^4.4 || ^5.4 || ^6",
  1038. "vimeo/psalm": "^4.10"
  1039. },
  1040. "suggest": {
  1041. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  1042. },
  1043. "type": "library",
  1044. "autoload": {
  1045. "psr-4": {
  1046. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1047. }
  1048. },
  1049. "notification-url": "https://packagist.org/downloads/",
  1050. "license": [
  1051. "MIT"
  1052. ],
  1053. "authors": [
  1054. {
  1055. "name": "Guilherme Blanco",
  1056. "email": "guilhermeblanco@gmail.com"
  1057. },
  1058. {
  1059. "name": "Roman Borschel",
  1060. "email": "roman@code-factory.org"
  1061. },
  1062. {
  1063. "name": "Benjamin Eberlei",
  1064. "email": "kontakt@beberlei.de"
  1065. },
  1066. {
  1067. "name": "Jonathan Wage",
  1068. "email": "jonwage@gmail.com"
  1069. },
  1070. {
  1071. "name": "Johannes Schmitt",
  1072. "email": "schmittjoh@gmail.com"
  1073. }
  1074. ],
  1075. "description": "Docblock Annotations Parser",
  1076. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1077. "keywords": [
  1078. "annotations",
  1079. "docblock",
  1080. "parser"
  1081. ],
  1082. "support": {
  1083. "issues": "https://github.com/doctrine/annotations/issues",
  1084. "source": "https://github.com/doctrine/annotations/tree/1.14.3"
  1085. },
  1086. "time": "2023-02-01T09:20:38+00:00"
  1087. },
  1088. {
  1089. "name": "doctrine/collections",
  1090. "version": "2.2.0",
  1091. "source": {
  1092. "type": "git",
  1093. "url": "https://github.com/doctrine/collections.git",
  1094. "reference": "07e16cd7b80a2cffed99e36b541876af172f0257"
  1095. },
  1096. "dist": {
  1097. "type": "zip",
  1098. "url": "https://api.github.com/repos/doctrine/collections/zipball/07e16cd7b80a2cffed99e36b541876af172f0257",
  1099. "reference": "07e16cd7b80a2cffed99e36b541876af172f0257",
  1100. "shasum": ""
  1101. },
  1102. "require": {
  1103. "doctrine/deprecations": "^1",
  1104. "php": "^8.1"
  1105. },
  1106. "require-dev": {
  1107. "doctrine/coding-standard": "^12",
  1108. "ext-json": "*",
  1109. "phpstan/phpstan": "^1.8",
  1110. "phpstan/phpstan-phpunit": "^1.0",
  1111. "phpunit/phpunit": "^10.5",
  1112. "vimeo/psalm": "^5.11"
  1113. },
  1114. "type": "library",
  1115. "autoload": {
  1116. "psr-4": {
  1117. "Doctrine\\Common\\Collections\\": "src"
  1118. }
  1119. },
  1120. "notification-url": "https://packagist.org/downloads/",
  1121. "license": [
  1122. "MIT"
  1123. ],
  1124. "authors": [
  1125. {
  1126. "name": "Guilherme Blanco",
  1127. "email": "guilhermeblanco@gmail.com"
  1128. },
  1129. {
  1130. "name": "Roman Borschel",
  1131. "email": "roman@code-factory.org"
  1132. },
  1133. {
  1134. "name": "Benjamin Eberlei",
  1135. "email": "kontakt@beberlei.de"
  1136. },
  1137. {
  1138. "name": "Jonathan Wage",
  1139. "email": "jonwage@gmail.com"
  1140. },
  1141. {
  1142. "name": "Johannes Schmitt",
  1143. "email": "schmittjoh@gmail.com"
  1144. }
  1145. ],
  1146. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  1147. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  1148. "keywords": [
  1149. "array",
  1150. "collections",
  1151. "iterators",
  1152. "php"
  1153. ],
  1154. "support": {
  1155. "issues": "https://github.com/doctrine/collections/issues",
  1156. "source": "https://github.com/doctrine/collections/tree/2.2.0"
  1157. },
  1158. "funding": [
  1159. {
  1160. "url": "https://www.doctrine-project.org/sponsorship.html",
  1161. "type": "custom"
  1162. },
  1163. {
  1164. "url": "https://www.patreon.com/phpdoctrine",
  1165. "type": "patreon"
  1166. },
  1167. {
  1168. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  1169. "type": "tidelift"
  1170. }
  1171. ],
  1172. "time": "2024-02-25T22:55:36+00:00"
  1173. },
  1174. {
  1175. "name": "doctrine/deprecations",
  1176. "version": "1.1.3",
  1177. "source": {
  1178. "type": "git",
  1179. "url": "https://github.com/doctrine/deprecations.git",
  1180. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  1181. },
  1182. "dist": {
  1183. "type": "zip",
  1184. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  1185. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  1186. "shasum": ""
  1187. },
  1188. "require": {
  1189. "php": "^7.1 || ^8.0"
  1190. },
  1191. "require-dev": {
  1192. "doctrine/coding-standard": "^9",
  1193. "phpstan/phpstan": "1.4.10 || 1.10.15",
  1194. "phpstan/phpstan-phpunit": "^1.0",
  1195. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1196. "psalm/plugin-phpunit": "0.18.4",
  1197. "psr/log": "^1 || ^2 || ^3",
  1198. "vimeo/psalm": "4.30.0 || 5.12.0"
  1199. },
  1200. "suggest": {
  1201. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1202. },
  1203. "type": "library",
  1204. "autoload": {
  1205. "psr-4": {
  1206. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1207. }
  1208. },
  1209. "notification-url": "https://packagist.org/downloads/",
  1210. "license": [
  1211. "MIT"
  1212. ],
  1213. "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.",
  1214. "homepage": "https://www.doctrine-project.org/",
  1215. "support": {
  1216. "issues": "https://github.com/doctrine/deprecations/issues",
  1217. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  1218. },
  1219. "time": "2024-01-30T19:34:25+00:00"
  1220. },
  1221. {
  1222. "name": "doctrine/lexer",
  1223. "version": "2.1.1",
  1224. "source": {
  1225. "type": "git",
  1226. "url": "https://github.com/doctrine/lexer.git",
  1227. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  1228. },
  1229. "dist": {
  1230. "type": "zip",
  1231. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1232. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1233. "shasum": ""
  1234. },
  1235. "require": {
  1236. "doctrine/deprecations": "^1.0",
  1237. "php": "^7.1 || ^8.0"
  1238. },
  1239. "require-dev": {
  1240. "doctrine/coding-standard": "^9 || ^12",
  1241. "phpstan/phpstan": "^1.3",
  1242. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  1243. "psalm/plugin-phpunit": "^0.18.3",
  1244. "vimeo/psalm": "^4.11 || ^5.21"
  1245. },
  1246. "type": "library",
  1247. "autoload": {
  1248. "psr-4": {
  1249. "Doctrine\\Common\\Lexer\\": "src"
  1250. }
  1251. },
  1252. "notification-url": "https://packagist.org/downloads/",
  1253. "license": [
  1254. "MIT"
  1255. ],
  1256. "authors": [
  1257. {
  1258. "name": "Guilherme Blanco",
  1259. "email": "guilhermeblanco@gmail.com"
  1260. },
  1261. {
  1262. "name": "Roman Borschel",
  1263. "email": "roman@code-factory.org"
  1264. },
  1265. {
  1266. "name": "Johannes Schmitt",
  1267. "email": "schmittjoh@gmail.com"
  1268. }
  1269. ],
  1270. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1271. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1272. "keywords": [
  1273. "annotations",
  1274. "docblock",
  1275. "lexer",
  1276. "parser",
  1277. "php"
  1278. ],
  1279. "support": {
  1280. "issues": "https://github.com/doctrine/lexer/issues",
  1281. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  1282. },
  1283. "funding": [
  1284. {
  1285. "url": "https://www.doctrine-project.org/sponsorship.html",
  1286. "type": "custom"
  1287. },
  1288. {
  1289. "url": "https://www.patreon.com/phpdoctrine",
  1290. "type": "patreon"
  1291. },
  1292. {
  1293. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1294. "type": "tidelift"
  1295. }
  1296. ],
  1297. "time": "2024-02-05T11:35:39+00:00"
  1298. },
  1299. {
  1300. "name": "drupal/address",
  1301. "version": "2.0.1",
  1302. "source": {
  1303. "type": "git",
  1304. "url": "https://git.drupalcode.org/project/address.git",
  1305. "reference": "2.0.1"
  1306. },
  1307. "dist": {
  1308. "type": "zip",
  1309. "url": "https://ftp.drupal.org/files/projects/address-2.0.1.zip",
  1310. "reference": "2.0.1",
  1311. "shasum": "47e166dc46b1a2e17470738e8321bc20fa9e8e24"
  1312. },
  1313. "require": {
  1314. "commerceguys/addressing": "^2.1.1",
  1315. "drupal/core": "^9.5 || ^10",
  1316. "php": "^8.0"
  1317. },
  1318. "require-dev": {
  1319. "drupal/diff": "^1",
  1320. "drupal/feeds": "^3",
  1321. "drupal/token": "^1"
  1322. },
  1323. "type": "drupal-module",
  1324. "extra": {
  1325. "drupal": {
  1326. "version": "2.0.1",
  1327. "datestamp": "1708373992",
  1328. "security-coverage": {
  1329. "status": "covered",
  1330. "message": "Covered by Drupal's security advisory policy"
  1331. }
  1332. }
  1333. },
  1334. "notification-url": "https://packages.drupal.org/8/downloads",
  1335. "license": [
  1336. "GPL-2.0-or-later"
  1337. ],
  1338. "authors": [
  1339. {
  1340. "name": "bojanz",
  1341. "homepage": "https://www.drupal.org/user/86106"
  1342. },
  1343. {
  1344. "name": "Centarro",
  1345. "homepage": "https://www.drupal.org/user/3661446"
  1346. },
  1347. {
  1348. "name": "dww",
  1349. "homepage": "https://www.drupal.org/user/46549"
  1350. },
  1351. {
  1352. "name": "jsacksick",
  1353. "homepage": "https://www.drupal.org/user/972218"
  1354. },
  1355. {
  1356. "name": "rszrama",
  1357. "homepage": "https://www.drupal.org/user/49344"
  1358. }
  1359. ],
  1360. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  1361. "homepage": "http://drupal.org/project/address",
  1362. "support": {
  1363. "source": "https://git.drupalcode.org/project/address"
  1364. }
  1365. },
  1366. {
  1367. "name": "drupal/address_map_link",
  1368. "version": "1.4.0",
  1369. "source": {
  1370. "type": "git",
  1371. "url": "https://git.drupalcode.org/project/address_map_link.git",
  1372. "reference": "8.x-1.4"
  1373. },
  1374. "dist": {
  1375. "type": "zip",
  1376. "url": "https://ftp.drupal.org/files/projects/address_map_link-8.x-1.4.zip",
  1377. "reference": "8.x-1.4",
  1378. "shasum": "854c86a4e4ac6ef492e502659acf8eed89e56058"
  1379. },
  1380. "require": {
  1381. "drupal/address": "^1.0 || ^2.0",
  1382. "drupal/core": "^9.2 || ^10",
  1383. "php": "^7.3 || ^8.0"
  1384. },
  1385. "type": "drupal-module",
  1386. "extra": {
  1387. "drupal": {
  1388. "version": "8.x-1.4",
  1389. "datestamp": "1708441555",
  1390. "security-coverage": {
  1391. "status": "covered",
  1392. "message": "Covered by Drupal's security advisory policy"
  1393. }
  1394. }
  1395. },
  1396. "notification-url": "https://packages.drupal.org/8/downloads",
  1397. "license": [
  1398. "GPL-2.0-or-later"
  1399. ],
  1400. "authors": [
  1401. {
  1402. "name": "Chris Snyder",
  1403. "homepage": "https://www.drupal.org/u/chrissnyder",
  1404. "email": "chris@chrissnyder.org",
  1405. "role": "Maintainer"
  1406. }
  1407. ],
  1408. "description": "Provides a link to an external mapping site for an address field.",
  1409. "homepage": "https://www.drupal.org/project/address_map_link",
  1410. "keywords": [
  1411. "Drupal"
  1412. ],
  1413. "support": {
  1414. "source": "https://cgit.drupalcode.org/address_map_link",
  1415. "issues": "https://www.drupal.org/project/issues/address_map_link"
  1416. }
  1417. },
  1418. {
  1419. "name": "drupal/admin_toolbar",
  1420. "version": "3.4.2",
  1421. "source": {
  1422. "type": "git",
  1423. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1424. "reference": "3.4.2"
  1425. },
  1426. "dist": {
  1427. "type": "zip",
  1428. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.4.2.zip",
  1429. "reference": "3.4.2",
  1430. "shasum": "f5a008e5c73f5a11c6c8067c0ea6ebb76aa33854"
  1431. },
  1432. "require": {
  1433. "drupal/core": "^9.2 || ^10"
  1434. },
  1435. "require-dev": {
  1436. "drupal/admin_toolbar_tools": "*"
  1437. },
  1438. "type": "drupal-module",
  1439. "extra": {
  1440. "drupal": {
  1441. "version": "3.4.2",
  1442. "datestamp": "1696006195",
  1443. "security-coverage": {
  1444. "status": "covered",
  1445. "message": "Covered by Drupal's security advisory policy"
  1446. }
  1447. }
  1448. },
  1449. "notification-url": "https://packages.drupal.org/8/downloads",
  1450. "license": [
  1451. "GPL-2.0-or-later"
  1452. ],
  1453. "authors": [
  1454. {
  1455. "name": "Wilfrid Roze (eme)",
  1456. "homepage": "https://www.drupal.org/u/eme",
  1457. "role": "Maintainer"
  1458. },
  1459. {
  1460. "name": "Romain Jarraud (romainj)",
  1461. "homepage": "https://www.drupal.org/u/romainj",
  1462. "role": "Maintainer"
  1463. },
  1464. {
  1465. "name": "Adrian Cid Almaguer (adriancid)",
  1466. "homepage": "https://www.drupal.org/u/adriancid",
  1467. "email": "adriancid@gmail.com",
  1468. "role": "Maintainer"
  1469. },
  1470. {
  1471. "name": "Mohamed Anis Taktak (matio89)",
  1472. "homepage": "https://www.drupal.org/u/matio89",
  1473. "role": "Maintainer"
  1474. },
  1475. {
  1476. "name": "matio89",
  1477. "homepage": "https://www.drupal.org/user/2320090"
  1478. },
  1479. {
  1480. "name": "Musa.thomas",
  1481. "homepage": "https://www.drupal.org/user/1213824"
  1482. },
  1483. {
  1484. "name": "romainj",
  1485. "homepage": "https://www.drupal.org/user/370706"
  1486. }
  1487. ],
  1488. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1489. "homepage": "http://drupal.org/project/admin_toolbar",
  1490. "keywords": [
  1491. "Drupal",
  1492. "Toolbar"
  1493. ],
  1494. "support": {
  1495. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1496. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1497. }
  1498. },
  1499. {
  1500. "name": "drupal/adminimal_theme",
  1501. "version": "1.7.0",
  1502. "source": {
  1503. "type": "git",
  1504. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1505. "reference": "8.x-1.7"
  1506. },
  1507. "dist": {
  1508. "type": "zip",
  1509. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.7.zip",
  1510. "reference": "8.x-1.7",
  1511. "shasum": "0fe020fecab6a1f6d877f2e622fb9f916ada52bb"
  1512. },
  1513. "require": {
  1514. "drupal/core": "^9.3 || ^10",
  1515. "drupal/seven": "~1.0"
  1516. },
  1517. "type": "drupal-theme",
  1518. "extra": {
  1519. "drupal": {
  1520. "version": "8.x-1.7",
  1521. "datestamp": "1691504486",
  1522. "security-coverage": {
  1523. "status": "covered",
  1524. "message": "Covered by Drupal's security advisory policy"
  1525. }
  1526. }
  1527. },
  1528. "notification-url": "https://packages.drupal.org/8/downloads",
  1529. "license": [
  1530. "GPL-2.0+"
  1531. ],
  1532. "authors": [
  1533. {
  1534. "name": "ANDiTKO",
  1535. "homepage": "https://www.drupal.org/user/1428124"
  1536. },
  1537. {
  1538. "name": "andrey.troeglazov",
  1539. "homepage": "https://www.drupal.org/user/3145389"
  1540. },
  1541. {
  1542. "name": "realityloop",
  1543. "homepage": "https://www.drupal.org/user/139189"
  1544. },
  1545. {
  1546. "name": "rjjakes",
  1547. "homepage": "https://www.drupal.org/user/3457245"
  1548. }
  1549. ],
  1550. "description": "Drupal administration theme with modern minimalist design.",
  1551. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1552. "support": {
  1553. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1554. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1555. }
  1556. },
  1557. {
  1558. "name": "drupal/audiofield",
  1559. "version": "1.13.0",
  1560. "source": {
  1561. "type": "git",
  1562. "url": "https://git.drupalcode.org/project/audiofield.git",
  1563. "reference": "8.x-1.13"
  1564. },
  1565. "dist": {
  1566. "type": "zip",
  1567. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  1568. "reference": "8.x-1.13",
  1569. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  1570. },
  1571. "require": {
  1572. "drupal/core": "^8 || ^9 || ^10"
  1573. },
  1574. "type": "drupal-module",
  1575. "extra": {
  1576. "drupal": {
  1577. "version": "8.x-1.13",
  1578. "datestamp": "1681143245",
  1579. "security-coverage": {
  1580. "status": "covered",
  1581. "message": "Covered by Drupal's security advisory policy"
  1582. }
  1583. },
  1584. "drush": {
  1585. "services": {
  1586. "drush.services.yml": "^9"
  1587. }
  1588. }
  1589. },
  1590. "notification-url": "https://packages.drupal.org/8/downloads",
  1591. "license": [
  1592. "GPL-2.0-or-later"
  1593. ],
  1594. "authors": [
  1595. {
  1596. "name": "Daniel Moberly",
  1597. "homepage": "https://www.drupal.org/u/danielmoberly",
  1598. "role": "Maintainer"
  1599. },
  1600. {
  1601. "name": "tamerzg",
  1602. "homepage": "https://www.drupal.org/user/464564"
  1603. }
  1604. ],
  1605. "description": "AudioField Module",
  1606. "homepage": "https://www.drupal.org/project/audiofield",
  1607. "support": {
  1608. "source": "https://git.drupalcode.org/project/audiofield",
  1609. "issues": "https://www.drupal.org/project/issues/audiofield"
  1610. }
  1611. },
  1612. {
  1613. "name": "drupal/backup_migrate",
  1614. "version": "5.0.3",
  1615. "source": {
  1616. "type": "git",
  1617. "url": "https://git.drupalcode.org/project/backup_migrate.git",
  1618. "reference": "5.0.3"
  1619. },
  1620. "dist": {
  1621. "type": "zip",
  1622. "url": "https://ftp.drupal.org/files/projects/backup_migrate-5.0.3.zip",
  1623. "reference": "5.0.3",
  1624. "shasum": "bc263f601f7a21248d4000a372d04a417df7e326"
  1625. },
  1626. "require": {
  1627. "drupal/core": "^9.3 || ^10"
  1628. },
  1629. "suggest": {
  1630. "defuse/php-encryption": "Optional encryption of saved backups."
  1631. },
  1632. "type": "drupal-module",
  1633. "extra": {
  1634. "drupal": {
  1635. "version": "5.0.3",
  1636. "datestamp": "1671366510",
  1637. "security-coverage": {
  1638. "status": "covered",
  1639. "message": "Covered by Drupal's security advisory policy"
  1640. }
  1641. }
  1642. },
  1643. "notification-url": "https://packages.drupal.org/8/downloads",
  1644. "license": [
  1645. "GPL-2.0-or-later"
  1646. ],
  1647. "authors": [
  1648. {
  1649. "name": "See contributors",
  1650. "homepage": "https://www.drupal.org/node/189065/committers",
  1651. "role": "Developer"
  1652. },
  1653. {
  1654. "name": "DamienMcKenna",
  1655. "homepage": "https://www.drupal.org/user/108450"
  1656. },
  1657. {
  1658. "name": "dgorton",
  1659. "homepage": "https://www.drupal.org/user/19044"
  1660. },
  1661. {
  1662. "name": "ikit-claw",
  1663. "homepage": "https://www.drupal.org/user/3285813"
  1664. },
  1665. {
  1666. "name": "ronan",
  1667. "homepage": "https://www.drupal.org/user/72815"
  1668. }
  1669. ],
  1670. "description": "Backup and Migrate Drupal Module",
  1671. "homepage": "https://www.drupal.org/project/backup_migrate",
  1672. "support": {
  1673. "source": "https://git.drupalcode.org/project/backup_migrate",
  1674. "issues": "https://www.drupal.org/project/issues/backup_migrate",
  1675. "slack": "https://drupal.slack.com/messages/C7C4M4QJV/details/"
  1676. }
  1677. },
  1678. {
  1679. "name": "drupal/charts",
  1680. "version": "5.0.11",
  1681. "source": {
  1682. "type": "git",
  1683. "url": "https://git.drupalcode.org/project/charts.git",
  1684. "reference": "5.0.11"
  1685. },
  1686. "dist": {
  1687. "type": "zip",
  1688. "url": "https://ftp.drupal.org/files/projects/charts-5.0.11.zip",
  1689. "reference": "5.0.11",
  1690. "shasum": "fcffd70c4bbaf74809528993ed42ad0fb6db2b75"
  1691. },
  1692. "require": {
  1693. "drupal/core": "^9.2 || ^10"
  1694. },
  1695. "type": "drupal-module",
  1696. "extra": {
  1697. "drupal": {
  1698. "version": "5.0.11",
  1699. "datestamp": "1706650372",
  1700. "security-coverage": {
  1701. "status": "covered",
  1702. "message": "Covered by Drupal's security advisory policy"
  1703. }
  1704. }
  1705. },
  1706. "notification-url": "https://packages.drupal.org/8/downloads",
  1707. "license": [
  1708. "GPL-2.0-or-later"
  1709. ],
  1710. "authors": [
  1711. {
  1712. "name": "andileco",
  1713. "homepage": "https://www.drupal.org/user/2054544"
  1714. },
  1715. {
  1716. "name": "nikathone",
  1717. "homepage": "https://www.drupal.org/user/2421800"
  1718. },
  1719. {
  1720. "name": "quicksketch",
  1721. "homepage": "https://www.drupal.org/user/35821"
  1722. }
  1723. ],
  1724. "description": "A charting API for Drupal that provides chart elements and integration with Views.",
  1725. "homepage": "https://www.drupal.org/project/charts",
  1726. "support": {
  1727. "source": "https://git.drupalcode.org/project/charts"
  1728. }
  1729. },
  1730. {
  1731. "name": "drupal/core",
  1732. "version": "10.2.3",
  1733. "source": {
  1734. "type": "git",
  1735. "url": "https://github.com/drupal/core.git",
  1736. "reference": "cc8c7952f7013795b735f5c15290e76937163bb7"
  1737. },
  1738. "dist": {
  1739. "type": "zip",
  1740. "url": "https://api.github.com/repos/drupal/core/zipball/cc8c7952f7013795b735f5c15290e76937163bb7",
  1741. "reference": "cc8c7952f7013795b735f5c15290e76937163bb7",
  1742. "shasum": ""
  1743. },
  1744. "require": {
  1745. "asm89/stack-cors": "^2.1",
  1746. "composer-runtime-api": "^2.1",
  1747. "composer/semver": "^3.3",
  1748. "doctrine/annotations": "^1.14",
  1749. "egulias/email-validator": "^3.2.1|^4.0",
  1750. "ext-date": "*",
  1751. "ext-dom": "*",
  1752. "ext-filter": "*",
  1753. "ext-gd": "*",
  1754. "ext-hash": "*",
  1755. "ext-json": "*",
  1756. "ext-pcre": "*",
  1757. "ext-pdo": "*",
  1758. "ext-session": "*",
  1759. "ext-simplexml": "*",
  1760. "ext-spl": "*",
  1761. "ext-tokenizer": "*",
  1762. "ext-xml": "*",
  1763. "guzzlehttp/guzzle": "^7.5",
  1764. "guzzlehttp/psr7": "^2.4.5",
  1765. "masterminds/html5": "^2.7",
  1766. "mck89/peast": "^1.14",
  1767. "pear/archive_tar": "^1.4.14",
  1768. "php": ">=8.1.0",
  1769. "psr/log": "^3.0",
  1770. "sebastian/diff": "^4",
  1771. "symfony/console": "^6.4",
  1772. "symfony/dependency-injection": "^6.4",
  1773. "symfony/event-dispatcher": "^6.4",
  1774. "symfony/filesystem": "^6.4",
  1775. "symfony/finder": "^6.4",
  1776. "symfony/http-foundation": "^6.4",
  1777. "symfony/http-kernel": "^6.4",
  1778. "symfony/mailer": "^6.4",
  1779. "symfony/mime": "^6.4",
  1780. "symfony/polyfill-iconv": "^1.26",
  1781. "symfony/process": "^6.4",
  1782. "symfony/psr-http-message-bridge": "^2.1|^6.4",
  1783. "symfony/routing": "^6.4",
  1784. "symfony/serializer": "^6.4",
  1785. "symfony/validator": "^6.4",
  1786. "symfony/yaml": "^6.4",
  1787. "twig/twig": "^3.5.0"
  1788. },
  1789. "conflict": {
  1790. "drush/drush": "<12.4.3"
  1791. },
  1792. "replace": {
  1793. "drupal/core-annotation": "self.version",
  1794. "drupal/core-assertion": "self.version",
  1795. "drupal/core-class-finder": "self.version",
  1796. "drupal/core-datetime": "self.version",
  1797. "drupal/core-dependency-injection": "self.version",
  1798. "drupal/core-diff": "self.version",
  1799. "drupal/core-discovery": "self.version",
  1800. "drupal/core-event-dispatcher": "self.version",
  1801. "drupal/core-file-cache": "self.version",
  1802. "drupal/core-file-security": "self.version",
  1803. "drupal/core-filesystem": "self.version",
  1804. "drupal/core-front-matter": "self.version",
  1805. "drupal/core-gettext": "self.version",
  1806. "drupal/core-graph": "self.version",
  1807. "drupal/core-http-foundation": "self.version",
  1808. "drupal/core-php-storage": "self.version",
  1809. "drupal/core-plugin": "self.version",
  1810. "drupal/core-proxy-builder": "self.version",
  1811. "drupal/core-render": "self.version",
  1812. "drupal/core-serialization": "self.version",
  1813. "drupal/core-transliteration": "self.version",
  1814. "drupal/core-utility": "self.version",
  1815. "drupal/core-uuid": "self.version",
  1816. "drupal/core-version": "self.version"
  1817. },
  1818. "suggest": {
  1819. "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format."
  1820. },
  1821. "type": "drupal-core",
  1822. "extra": {
  1823. "drupal-scaffold": {
  1824. "file-mapping": {
  1825. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  1826. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  1827. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  1828. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  1829. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  1830. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  1831. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  1832. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  1833. "[web-root]/index.php": "assets/scaffold/files/index.php",
  1834. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  1835. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  1836. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  1837. "[web-root]/update.php": "assets/scaffold/files/update.php",
  1838. "[web-root]/web.config": "assets/scaffold/files/web.config",
  1839. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  1840. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  1841. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  1842. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  1843. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  1844. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  1845. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  1846. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  1847. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  1848. }
  1849. }
  1850. },
  1851. "autoload": {
  1852. "files": [
  1853. "includes/bootstrap.inc"
  1854. ],
  1855. "psr-4": {
  1856. "Drupal\\Core\\": "lib/Drupal/Core",
  1857. "Drupal\\Component\\": "lib/Drupal/Component"
  1858. },
  1859. "classmap": [
  1860. "lib/Drupal.php",
  1861. "lib/Drupal/Component/DependencyInjection/Container.php",
  1862. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  1863. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  1864. "lib/Drupal/Component/Utility/Timer.php",
  1865. "lib/Drupal/Component/Utility/Unicode.php",
  1866. "lib/Drupal/Core/Cache/Cache.php",
  1867. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  1868. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  1869. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  1870. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  1871. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  1872. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  1873. "lib/Drupal/Core/Database/Connection.php",
  1874. "lib/Drupal/Core/Database/Database.php",
  1875. "lib/Drupal/Core/Database/StatementInterface.php",
  1876. "lib/Drupal/Core/DependencyInjection/Container.php",
  1877. "lib/Drupal/Core/DrupalKernel.php",
  1878. "lib/Drupal/Core/DrupalKernelInterface.php",
  1879. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  1880. "lib/Drupal/Core/Site/Settings.php"
  1881. ]
  1882. },
  1883. "notification-url": "https://packagist.org/downloads/",
  1884. "license": [
  1885. "GPL-2.0-or-later"
  1886. ],
  1887. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  1888. "support": {
  1889. "source": "https://github.com/drupal/core/tree/10.2.3"
  1890. },
  1891. "time": "2024-02-07T22:44:48+00:00"
  1892. },
  1893. {
  1894. "name": "drupal/core-composer-scaffold",
  1895. "version": "10.2.3",
  1896. "source": {
  1897. "type": "git",
  1898. "url": "https://github.com/drupal/core-composer-scaffold.git",
  1899. "reference": "63effa1bc644e80a269e8b4415e627491d26fd3f"
  1900. },
  1901. "dist": {
  1902. "type": "zip",
  1903. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/63effa1bc644e80a269e8b4415e627491d26fd3f",
  1904. "reference": "63effa1bc644e80a269e8b4415e627491d26fd3f",
  1905. "shasum": ""
  1906. },
  1907. "require": {
  1908. "composer-plugin-api": "^2",
  1909. "php": ">=7.3.0"
  1910. },
  1911. "conflict": {
  1912. "drupal-composer/drupal-scaffold": "*"
  1913. },
  1914. "require-dev": {
  1915. "composer/composer": "^1.8@stable"
  1916. },
  1917. "type": "composer-plugin",
  1918. "extra": {
  1919. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  1920. "branch-alias": {
  1921. "dev-master": "1.0.x-dev"
  1922. }
  1923. },
  1924. "autoload": {
  1925. "psr-4": {
  1926. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  1927. }
  1928. },
  1929. "notification-url": "https://packagist.org/downloads/",
  1930. "license": [
  1931. "GPL-2.0-or-later"
  1932. ],
  1933. "description": "A flexible Composer project scaffold builder.",
  1934. "homepage": "https://www.drupal.org/project/drupal",
  1935. "keywords": [
  1936. "drupal"
  1937. ],
  1938. "support": {
  1939. "source": "https://github.com/drupal/core-composer-scaffold/tree/10.2.3"
  1940. },
  1941. "time": "2024-01-26T14:59:30+00:00"
  1942. },
  1943. {
  1944. "name": "drupal/core-project-message",
  1945. "version": "10.2.3",
  1946. "source": {
  1947. "type": "git",
  1948. "url": "https://github.com/drupal/core-project-message.git",
  1949. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8"
  1950. },
  1951. "dist": {
  1952. "type": "zip",
  1953. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  1954. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  1955. "shasum": ""
  1956. },
  1957. "require": {
  1958. "composer-plugin-api": "^2",
  1959. "php": ">=7.3.0"
  1960. },
  1961. "type": "composer-plugin",
  1962. "extra": {
  1963. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  1964. },
  1965. "autoload": {
  1966. "psr-4": {
  1967. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  1968. }
  1969. },
  1970. "notification-url": "https://packagist.org/downloads/",
  1971. "license": [
  1972. "GPL-2.0-or-later"
  1973. ],
  1974. "description": "Adds a message after Composer installation.",
  1975. "homepage": "https://www.drupal.org/project/drupal",
  1976. "keywords": [
  1977. "drupal"
  1978. ],
  1979. "support": {
  1980. "source": "https://github.com/drupal/core-project-message/tree/10.2.3"
  1981. },
  1982. "time": "2023-07-24T07:55:25+00:00"
  1983. },
  1984. {
  1985. "name": "drupal/core-recommended",
  1986. "version": "10.2.3",
  1987. "source": {
  1988. "type": "git",
  1989. "url": "https://github.com/drupal/core-recommended.git",
  1990. "reference": "ee5d148455ca5792108a1fd007ae162ea2ffe859"
  1991. },
  1992. "dist": {
  1993. "type": "zip",
  1994. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/ee5d148455ca5792108a1fd007ae162ea2ffe859",
  1995. "reference": "ee5d148455ca5792108a1fd007ae162ea2ffe859",
  1996. "shasum": ""
  1997. },
  1998. "require": {
  1999. "asm89/stack-cors": "~v2.2.0",
  2000. "composer/semver": "~3.4.0",
  2001. "doctrine/annotations": "~1.14.3",
  2002. "doctrine/deprecations": "~1.1.2",
  2003. "doctrine/lexer": "~2.1.0",
  2004. "drupal/core": "10.2.3",
  2005. "egulias/email-validator": "~4.0.2",
  2006. "guzzlehttp/guzzle": "~7.8.1",
  2007. "guzzlehttp/promises": "~2.0.2",
  2008. "guzzlehttp/psr7": "~2.6.2",
  2009. "masterminds/html5": "~2.8.1",
  2010. "mck89/peast": "~v1.15.4",
  2011. "pear/archive_tar": "~1.4.14",
  2012. "pear/console_getopt": "~v1.4.3",
  2013. "pear/pear-core-minimal": "~v1.10.14",
  2014. "pear/pear_exception": "~v1.0.2",
  2015. "psr/cache": "~3.0.0",
  2016. "psr/container": "~2.0.2",
  2017. "psr/event-dispatcher": "~1.0.0",
  2018. "psr/http-client": "~1.0.3",
  2019. "psr/http-factory": "~1.0.2",
  2020. "psr/log": "~3.0.0",
  2021. "ralouphie/getallheaders": "~3.0.3",
  2022. "sebastian/diff": "~4.0.5",
  2023. "symfony/console": "~v6.4.1",
  2024. "symfony/dependency-injection": "~v6.4.1",
  2025. "symfony/deprecation-contracts": "~v3.4.0",
  2026. "symfony/error-handler": "~v6.4.0",
  2027. "symfony/event-dispatcher": "~v6.4.0",
  2028. "symfony/event-dispatcher-contracts": "~v3.4.0",
  2029. "symfony/filesystem": "~v6.4.0",
  2030. "symfony/finder": "~v6.4.0",
  2031. "symfony/http-foundation": "~v6.4.0",
  2032. "symfony/http-kernel": "~v6.4.1",
  2033. "symfony/mailer": "~v6.4.0",
  2034. "symfony/mime": "~v6.4.0",
  2035. "symfony/polyfill-ctype": "~v1.28.0",
  2036. "symfony/polyfill-iconv": "~v1.28.0",
  2037. "symfony/polyfill-intl-grapheme": "~v1.28.0",
  2038. "symfony/polyfill-intl-idn": "~v1.28.0",
  2039. "symfony/polyfill-intl-normalizer": "~v1.28.0",
  2040. "symfony/polyfill-mbstring": "~v1.28.0",
  2041. "symfony/polyfill-php83": "~v1.28.0",
  2042. "symfony/process": "~v6.4.0",
  2043. "symfony/psr-http-message-bridge": "~v6.4.0",
  2044. "symfony/routing": "~v6.4.1",
  2045. "symfony/serializer": "~v6.4.1",
  2046. "symfony/service-contracts": "~v3.4.0",
  2047. "symfony/string": "~v6.4.0",
  2048. "symfony/translation-contracts": "~v3.4.0",
  2049. "symfony/validator": "~v6.4.0",
  2050. "symfony/var-dumper": "~v6.4.0",
  2051. "symfony/var-exporter": "~v6.4.1",
  2052. "symfony/yaml": "~v6.4.0",
  2053. "twig/twig": "~v3.8.0"
  2054. },
  2055. "conflict": {
  2056. "webflo/drupal-core-strict": "*"
  2057. },
  2058. "type": "metapackage",
  2059. "notification-url": "https://packagist.org/downloads/",
  2060. "license": [
  2061. "GPL-2.0-or-later"
  2062. ],
  2063. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  2064. "support": {
  2065. "source": "https://github.com/drupal/core-recommended/tree/10.2.3"
  2066. },
  2067. "time": "2024-02-07T22:44:48+00:00"
  2068. },
  2069. {
  2070. "name": "drupal/ctools",
  2071. "version": "4.0.4",
  2072. "source": {
  2073. "type": "git",
  2074. "url": "https://git.drupalcode.org/project/ctools.git",
  2075. "reference": "4.0.4"
  2076. },
  2077. "dist": {
  2078. "type": "zip",
  2079. "url": "https://ftp.drupal.org/files/projects/ctools-4.0.4.zip",
  2080. "reference": "4.0.4",
  2081. "shasum": "4a2474eb2fd525b2add2db0e855c135ba7f0fb70"
  2082. },
  2083. "require": {
  2084. "drupal/core": "^9.3 || ^10"
  2085. },
  2086. "type": "drupal-module",
  2087. "extra": {
  2088. "drupal": {
  2089. "version": "4.0.4",
  2090. "datestamp": "1684299878",
  2091. "security-coverage": {
  2092. "status": "covered",
  2093. "message": "Covered by Drupal's security advisory policy"
  2094. }
  2095. },
  2096. "branch-alias": {
  2097. "dev-8.x-3.x": "3.x-dev"
  2098. }
  2099. },
  2100. "notification-url": "https://packages.drupal.org/8/downloads",
  2101. "license": [
  2102. "GPL-2.0-or-later"
  2103. ],
  2104. "authors": [
  2105. {
  2106. "name": "Kris Vanderwater (EclipseGc)",
  2107. "homepage": "https://www.drupal.org/u/eclipsegc",
  2108. "role": "Maintainer"
  2109. },
  2110. {
  2111. "name": "Jakob Perry (japerry)",
  2112. "homepage": "https://www.drupal.org/u/japerry",
  2113. "role": "Maintainer"
  2114. },
  2115. {
  2116. "name": "Tim Plunkett (tim.plunkett)",
  2117. "homepage": "https://www.drupal.org/u/timplunkett",
  2118. "role": "Maintainer"
  2119. },
  2120. {
  2121. "name": "James Gilliland (neclimdul)",
  2122. "homepage": "https://www.drupal.org/u/neclimdul",
  2123. "role": "Maintainer"
  2124. },
  2125. {
  2126. "name": "Daniel Wehner (dawehner)",
  2127. "homepage": "https://www.drupal.org/u/dawehner",
  2128. "role": "Maintainer"
  2129. },
  2130. {
  2131. "name": "joelpittet",
  2132. "homepage": "https://www.drupal.org/user/160302"
  2133. },
  2134. {
  2135. "name": "merlinofchaos",
  2136. "homepage": "https://www.drupal.org/user/26979"
  2137. },
  2138. {
  2139. "name": "neclimdul",
  2140. "homepage": "https://www.drupal.org/user/48673"
  2141. },
  2142. {
  2143. "name": "sdboyer",
  2144. "homepage": "https://www.drupal.org/user/146719"
  2145. },
  2146. {
  2147. "name": "sun",
  2148. "homepage": "https://www.drupal.org/user/54136"
  2149. },
  2150. {
  2151. "name": "tim.plunkett",
  2152. "homepage": "https://www.drupal.org/user/241634"
  2153. }
  2154. ],
  2155. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  2156. "homepage": "https://www.drupal.org/project/ctools",
  2157. "support": {
  2158. "source": "https://git.drupalcode.org/project/ctools",
  2159. "issues": "https://www.drupal.org/project/issues/ctools"
  2160. }
  2161. },
  2162. {
  2163. "name": "drupal/entity_browser",
  2164. "version": "2.10.0",
  2165. "source": {
  2166. "type": "git",
  2167. "url": "https://git.drupalcode.org/project/entity_browser.git",
  2168. "reference": "8.x-2.10"
  2169. },
  2170. "dist": {
  2171. "type": "zip",
  2172. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.10.zip",
  2173. "reference": "8.x-2.10",
  2174. "shasum": "d52548ea66dc56108c2e211aeaff6e1cc0522e85"
  2175. },
  2176. "require": {
  2177. "drupal/core": "^9.5 || ^10"
  2178. },
  2179. "conflict": {
  2180. "drupal/media_entity": "1.*"
  2181. },
  2182. "require-dev": {
  2183. "drupal/ckeditor": "^1.0",
  2184. "drupal/embed": "^1.0",
  2185. "drupal/entity_embed": "^1.0",
  2186. "drupal/entity_reference_revisions": "^1.0",
  2187. "drupal/entityqueue": "^1.0",
  2188. "drupal/inline_entity_form": "^1.0@rc",
  2189. "drupal/paragraphs": "^1.0",
  2190. "drupal/token": "^1.0"
  2191. },
  2192. "type": "drupal-module",
  2193. "extra": {
  2194. "drupal": {
  2195. "version": "8.x-2.10",
  2196. "datestamp": "1702325310",
  2197. "security-coverage": {
  2198. "status": "covered",
  2199. "message": "Covered by Drupal's security advisory policy"
  2200. }
  2201. }
  2202. },
  2203. "notification-url": "https://packages.drupal.org/8/downloads",
  2204. "license": [
  2205. "GPL-2.0+"
  2206. ],
  2207. "authors": [
  2208. {
  2209. "name": "Janez Urevc",
  2210. "homepage": "https://github.com/slashrsm",
  2211. "role": "Maintainer"
  2212. },
  2213. {
  2214. "name": "Primoz Hmeljak",
  2215. "homepage": "https://github.com/primsi",
  2216. "role": "Maintainer"
  2217. },
  2218. {
  2219. "name": "See other contributors",
  2220. "homepage": "https://www.drupal.org/node/1943336/committers",
  2221. "role": "contributor"
  2222. },
  2223. {
  2224. "name": "Drupal Media Team",
  2225. "homepage": "https://www.drupal.org/user/3260690"
  2226. },
  2227. {
  2228. "name": "marcingy",
  2229. "homepage": "https://www.drupal.org/user/77320"
  2230. },
  2231. {
  2232. "name": "oknate",
  2233. "homepage": "https://www.drupal.org/user/471638"
  2234. },
  2235. {
  2236. "name": "Primsi",
  2237. "homepage": "https://www.drupal.org/user/282629"
  2238. },
  2239. {
  2240. "name": "samuel.mortenson",
  2241. "homepage": "https://www.drupal.org/user/2582268"
  2242. },
  2243. {
  2244. "name": "slashrsm",
  2245. "homepage": "https://www.drupal.org/user/744628"
  2246. }
  2247. ],
  2248. "description": "Entity browsing and selecting component.",
  2249. "homepage": "https://drupal.org/project/entity_browser",
  2250. "support": {
  2251. "source": "https://git.drupalcode.org/project/entity_browser",
  2252. "issues": "https://www.drupal.org/project/issues/entity_browser",
  2253. "irc": "irc://irc.freenode.org/drupal-contribute"
  2254. }
  2255. },
  2256. {
  2257. "name": "drupal/entity_browser_enhanced",
  2258. "version": "2.0.0",
  2259. "source": {
  2260. "type": "git",
  2261. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  2262. "reference": "2.0.0"
  2263. },
  2264. "dist": {
  2265. "type": "zip",
  2266. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-2.0.0.zip",
  2267. "reference": "2.0.0",
  2268. "shasum": "2880829c847c1c4b06092ab5335adb6ea960317b"
  2269. },
  2270. "require": {
  2271. "drupal/core": "^9 || ^10",
  2272. "drupal/entity_browser": "~2.0"
  2273. },
  2274. "type": "drupal-module",
  2275. "extra": {
  2276. "drupal": {
  2277. "version": "2.0.0",
  2278. "datestamp": "1697211243",
  2279. "security-coverage": {
  2280. "status": "covered",
  2281. "message": "Covered by Drupal's security advisory policy"
  2282. }
  2283. }
  2284. },
  2285. "notification-url": "https://packages.drupal.org/8/downloads",
  2286. "license": [
  2287. "GPL-2.0-or-later"
  2288. ],
  2289. "authors": [
  2290. {
  2291. "name": "Vardot",
  2292. "homepage": "https://www.drupal.org/vardot",
  2293. "role": "Maintainer"
  2294. },
  2295. {
  2296. "name": "Rajab Natshah",
  2297. "homepage": "https://www.drupal.org/user/1414312"
  2298. }
  2299. ],
  2300. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  2301. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  2302. "support": {
  2303. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  2304. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  2305. }
  2306. },
  2307. {
  2308. "name": "drupal/entity_reference_revisions",
  2309. "version": "1.11.0",
  2310. "source": {
  2311. "type": "git",
  2312. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  2313. "reference": "8.x-1.11"
  2314. },
  2315. "dist": {
  2316. "type": "zip",
  2317. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.11.zip",
  2318. "reference": "8.x-1.11",
  2319. "shasum": "de21cbb0d8a0344dc3496addcad4ed536747cec5"
  2320. },
  2321. "require": {
  2322. "drupal/core": "^9 || ^10"
  2323. },
  2324. "require-dev": {
  2325. "drupal/diff": "1.x-dev"
  2326. },
  2327. "type": "drupal-module",
  2328. "extra": {
  2329. "drupal": {
  2330. "version": "8.x-1.11",
  2331. "datestamp": "1705140721",
  2332. "security-coverage": {
  2333. "status": "covered",
  2334. "message": "Covered by Drupal's security advisory policy"
  2335. }
  2336. },
  2337. "drush": {
  2338. "services": {
  2339. "drush.services.yml": "^9 || ^10 || ^11"
  2340. }
  2341. }
  2342. },
  2343. "notification-url": "https://packages.drupal.org/8/downloads",
  2344. "license": [
  2345. "GPL-2.0-or-later"
  2346. ],
  2347. "authors": [
  2348. {
  2349. "name": "Berdir",
  2350. "homepage": "https://www.drupal.org/user/214652"
  2351. },
  2352. {
  2353. "name": "Frans",
  2354. "homepage": "https://www.drupal.org/user/514222"
  2355. },
  2356. {
  2357. "name": "jeroen.b",
  2358. "homepage": "https://www.drupal.org/user/1853532"
  2359. },
  2360. {
  2361. "name": "miro_dietiker",
  2362. "homepage": "https://www.drupal.org/user/227761"
  2363. }
  2364. ],
  2365. "description": "Entity Reference Revisions",
  2366. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  2367. "support": {
  2368. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  2369. }
  2370. },
  2371. {
  2372. "name": "drupal/field_group",
  2373. "version": "3.4.0",
  2374. "source": {
  2375. "type": "git",
  2376. "url": "https://git.drupalcode.org/project/field_group.git",
  2377. "reference": "8.x-3.4"
  2378. },
  2379. "dist": {
  2380. "type": "zip",
  2381. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.4.zip",
  2382. "reference": "8.x-3.4",
  2383. "shasum": "80b937e1a11f8b29c69d853fc4bf798c057c6f94"
  2384. },
  2385. "require": {
  2386. "drupal/core": "^9.2 || ^10"
  2387. },
  2388. "type": "drupal-module",
  2389. "extra": {
  2390. "drupal": {
  2391. "version": "8.x-3.4",
  2392. "datestamp": "1667241979",
  2393. "security-coverage": {
  2394. "status": "covered",
  2395. "message": "Covered by Drupal's security advisory policy"
  2396. }
  2397. }
  2398. },
  2399. "notification-url": "https://packages.drupal.org/8/downloads",
  2400. "license": [
  2401. "GPL-2.0-or-later"
  2402. ],
  2403. "authors": [
  2404. {
  2405. "name": "Anybody",
  2406. "homepage": "https://www.drupal.org/user/291091"
  2407. },
  2408. {
  2409. "name": "Hydra",
  2410. "homepage": "https://www.drupal.org/user/647364"
  2411. },
  2412. {
  2413. "name": "jyve",
  2414. "homepage": "https://www.drupal.org/user/591438"
  2415. },
  2416. {
  2417. "name": "nils.destoop",
  2418. "homepage": "https://www.drupal.org/user/361625"
  2419. },
  2420. {
  2421. "name": "Stalski",
  2422. "homepage": "https://www.drupal.org/user/322618"
  2423. },
  2424. {
  2425. "name": "swentel",
  2426. "homepage": "https://www.drupal.org/user/107403"
  2427. }
  2428. ],
  2429. "description": "Provides the field_group module.",
  2430. "homepage": "https://www.drupal.org/project/field_group",
  2431. "support": {
  2432. "source": "https://git.drupalcode.org/project/field_group",
  2433. "issues": "https://www.drupal.org/project/issues/field_group"
  2434. }
  2435. },
  2436. {
  2437. "name": "drupal/field_pager",
  2438. "version": "2.0.0-beta2",
  2439. "source": {
  2440. "type": "git",
  2441. "url": "https://git.drupalcode.org/project/field_pager.git",
  2442. "reference": "2.0.0-beta2"
  2443. },
  2444. "dist": {
  2445. "type": "zip",
  2446. "url": "https://ftp.drupal.org/files/projects/field_pager-2.0.0-beta2.zip",
  2447. "reference": "2.0.0-beta2",
  2448. "shasum": "33a7589e908c5b86b928e8e0e4bb562d7337dc15"
  2449. },
  2450. "require": {
  2451. "drupal/core": "^8 || ^9 || ^10"
  2452. },
  2453. "type": "drupal-module",
  2454. "extra": {
  2455. "drupal": {
  2456. "version": "2.0.0-beta2",
  2457. "datestamp": "1678960516",
  2458. "security-coverage": {
  2459. "status": "not-covered",
  2460. "message": "Project has not opted into security advisory coverage!"
  2461. }
  2462. }
  2463. },
  2464. "notification-url": "https://packages.drupal.org/8/downloads",
  2465. "license": [
  2466. "GPL-2.0-or-later"
  2467. ],
  2468. "authors": [
  2469. {
  2470. "name": "NuWans",
  2471. "homepage": "https://www.drupal.org/user/3250178"
  2472. }
  2473. ],
  2474. "description": "Field Pager (field_pager) To use fields as multiple pages",
  2475. "homepage": "https://www.drupal.org/project/field_pager",
  2476. "support": {
  2477. "source": "https://git.drupalcode.org/project/field_pager"
  2478. }
  2479. },
  2480. {
  2481. "name": "drupal/field_token_value",
  2482. "version": "3.0.2",
  2483. "source": {
  2484. "type": "git",
  2485. "url": "https://git.drupalcode.org/project/field_token_value.git",
  2486. "reference": "3.0.2"
  2487. },
  2488. "dist": {
  2489. "type": "zip",
  2490. "url": "https://ftp.drupal.org/files/projects/field_token_value-3.0.2.zip",
  2491. "reference": "3.0.2",
  2492. "shasum": "91ad476dd57a95086fa51fbc8fa0eb6a1b99f1ad"
  2493. },
  2494. "require": {
  2495. "drupal/core": "^8 || ^9 || ^10",
  2496. "drupal/token": "*"
  2497. },
  2498. "type": "drupal-module",
  2499. "extra": {
  2500. "drupal": {
  2501. "version": "3.0.2",
  2502. "datestamp": "1696584829",
  2503. "security-coverage": {
  2504. "status": "covered",
  2505. "message": "Covered by Drupal's security advisory policy"
  2506. }
  2507. }
  2508. },
  2509. "notification-url": "https://packages.drupal.org/8/downloads",
  2510. "license": [
  2511. "GPL-2.0-or-later"
  2512. ],
  2513. "authors": [
  2514. {
  2515. "name": "haydent",
  2516. "homepage": "https://www.drupal.org/user/2763191"
  2517. }
  2518. ],
  2519. "description": "Provides a field allowing the value to be set using a string containing tokens.",
  2520. "homepage": "https://www.drupal.org/project/field_token_value",
  2521. "support": {
  2522. "source": "https://git.drupalcode.org/project/field_token_value"
  2523. }
  2524. },
  2525. {
  2526. "name": "drupal/geolocation",
  2527. "version": "3.12.0",
  2528. "source": {
  2529. "type": "git",
  2530. "url": "https://git.drupalcode.org/project/geolocation.git",
  2531. "reference": "8.x-3.12"
  2532. },
  2533. "dist": {
  2534. "type": "zip",
  2535. "url": "https://ftp.drupal.org/files/projects/geolocation-8.x-3.12.zip",
  2536. "reference": "8.x-3.12",
  2537. "shasum": "eb31fe9080e2e0dcf442fc9b0a859f326219db5a"
  2538. },
  2539. "require": {
  2540. "drupal/core": "^9.3 || ^10",
  2541. "drupal/jquery_ui": "*",
  2542. "drupal/jquery_ui_autocomplete": "^2.0",
  2543. "php": "^7.3 || ^8.0"
  2544. },
  2545. "require-dev": {
  2546. "drupal/address": "*",
  2547. "drupal/geofield": "*",
  2548. "drupal/geolocation_demo": "*",
  2549. "drupal/geolocation_geometry": "*",
  2550. "drupal/geolocation_geometry_data": "*",
  2551. "drupal/geolocation_google_maps": "*",
  2552. "drupal/geolocation_google_maps_demo": "*",
  2553. "drupal/geolocation_google_static_maps": "*",
  2554. "drupal/geolocation_leaflet": "*",
  2555. "drupal/geolocation_leaflet_demo": "*",
  2556. "drupal/search_api": "*",
  2557. "drupal/search_api_location": "*",
  2558. "drupal/search_api_location_views": "*"
  2559. },
  2560. "type": "drupal-module",
  2561. "extra": {
  2562. "drupal": {
  2563. "version": "8.x-3.12",
  2564. "datestamp": "1673282362",
  2565. "security-coverage": {
  2566. "status": "covered",
  2567. "message": "Covered by Drupal's security advisory policy"
  2568. }
  2569. }
  2570. },
  2571. "notification-url": "https://packages.drupal.org/8/downloads",
  2572. "license": [
  2573. "GPL-2.0-or-later"
  2574. ],
  2575. "authors": [
  2576. {
  2577. "name": "derjochenmeyer",
  2578. "homepage": "https://www.drupal.org/u/derjochenmeyer"
  2579. },
  2580. {
  2581. "name": "cadamski",
  2582. "homepage": "https://www.drupal.org/u/cadamski"
  2583. }
  2584. ],
  2585. "description": "Provides a simple geolocation Drupal field type to store and display location data (lat, lng).",
  2586. "homepage": "https://www.drupal.org/project/geolocation",
  2587. "support": {
  2588. "source": "https://git.drupal.org/project/geolocation.git",
  2589. "issues": "https://www.drupal.org/project/issues/geolocation"
  2590. }
  2591. },
  2592. {
  2593. "name": "drupal/jquery_ui",
  2594. "version": "1.6.0",
  2595. "source": {
  2596. "type": "git",
  2597. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  2598. "reference": "8.x-1.6"
  2599. },
  2600. "dist": {
  2601. "type": "zip",
  2602. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.6.zip",
  2603. "reference": "8.x-1.6",
  2604. "shasum": "0ddccdcf35a066de1843e1d9670677ee1a2faac0"
  2605. },
  2606. "require": {
  2607. "drupal/core": "^9.2 || ^10"
  2608. },
  2609. "type": "drupal-module",
  2610. "extra": {
  2611. "drupal": {
  2612. "version": "8.x-1.6",
  2613. "datestamp": "1668521197",
  2614. "security-coverage": {
  2615. "status": "covered",
  2616. "message": "Covered by Drupal's security advisory policy"
  2617. }
  2618. }
  2619. },
  2620. "notification-url": "https://packages.drupal.org/8/downloads",
  2621. "license": [
  2622. "GPL-2.0-or-later"
  2623. ],
  2624. "authors": [
  2625. {
  2626. "name": "bnjmnm",
  2627. "homepage": "https://www.drupal.org/user/2369194"
  2628. },
  2629. {
  2630. "name": "jjeff",
  2631. "homepage": "https://www.drupal.org/user/17190"
  2632. },
  2633. {
  2634. "name": "lauriii",
  2635. "homepage": "https://www.drupal.org/user/1078742"
  2636. },
  2637. {
  2638. "name": "litwol",
  2639. "homepage": "https://www.drupal.org/user/78134"
  2640. },
  2641. {
  2642. "name": "mfb",
  2643. "homepage": "https://www.drupal.org/user/12302"
  2644. },
  2645. {
  2646. "name": "mfer",
  2647. "homepage": "https://www.drupal.org/user/25701"
  2648. },
  2649. {
  2650. "name": "mikelutz",
  2651. "homepage": "https://www.drupal.org/user/2972409"
  2652. },
  2653. {
  2654. "name": "nod_",
  2655. "homepage": "https://www.drupal.org/user/598310"
  2656. },
  2657. {
  2658. "name": "phenaproxima",
  2659. "homepage": "https://www.drupal.org/user/205645"
  2660. },
  2661. {
  2662. "name": "RobLoach",
  2663. "homepage": "https://www.drupal.org/user/61114"
  2664. },
  2665. {
  2666. "name": "sun",
  2667. "homepage": "https://www.drupal.org/user/54136"
  2668. },
  2669. {
  2670. "name": "webchick",
  2671. "homepage": "https://www.drupal.org/user/24967"
  2672. },
  2673. {
  2674. "name": "Wim Leers",
  2675. "homepage": "https://www.drupal.org/user/99777"
  2676. },
  2677. {
  2678. "name": "zrpnr",
  2679. "homepage": "https://www.drupal.org/user/1448368"
  2680. }
  2681. ],
  2682. "description": "Provides jQuery UI library.",
  2683. "homepage": "https://www.drupal.org/project/jquery_ui",
  2684. "support": {
  2685. "source": "https://git.drupalcode.org/project/jquery_ui"
  2686. }
  2687. },
  2688. {
  2689. "name": "drupal/jquery_ui_autocomplete",
  2690. "version": "2.0.0",
  2691. "source": {
  2692. "type": "git",
  2693. "url": "https://git.drupalcode.org/project/jquery_ui_autocomplete.git",
  2694. "reference": "2.0.0"
  2695. },
  2696. "dist": {
  2697. "type": "zip",
  2698. "url": "https://ftp.drupal.org/files/projects/jquery_ui_autocomplete-2.0.0.zip",
  2699. "reference": "2.0.0",
  2700. "shasum": "927d312a74002f99e1c971d3d268be1b0a532fc7"
  2701. },
  2702. "require": {
  2703. "drupal/core": "^9.2 || ^10",
  2704. "drupal/jquery_ui": "^1.6",
  2705. "drupal/jquery_ui_menu": "^2"
  2706. },
  2707. "type": "drupal-module",
  2708. "extra": {
  2709. "drupal": {
  2710. "version": "2.0.0",
  2711. "datestamp": "1670871461",
  2712. "security-coverage": {
  2713. "status": "covered",
  2714. "message": "Covered by Drupal's security advisory policy"
  2715. }
  2716. }
  2717. },
  2718. "notification-url": "https://packages.drupal.org/8/downloads",
  2719. "license": [
  2720. "GPL-2.0-or-later"
  2721. ],
  2722. "authors": [
  2723. {
  2724. "name": "bnjmnm",
  2725. "homepage": "https://www.drupal.org/user/2369194"
  2726. },
  2727. {
  2728. "name": "lauriii",
  2729. "homepage": "https://www.drupal.org/user/1078742"
  2730. },
  2731. {
  2732. "name": "nod_",
  2733. "homepage": "https://www.drupal.org/user/598310"
  2734. },
  2735. {
  2736. "name": "phenaproxima",
  2737. "homepage": "https://www.drupal.org/user/205645"
  2738. },
  2739. {
  2740. "name": "Wim Leers",
  2741. "homepage": "https://www.drupal.org/user/99777"
  2742. },
  2743. {
  2744. "name": "zrpnr",
  2745. "homepage": "https://www.drupal.org/user/1448368"
  2746. }
  2747. ],
  2748. "description": "Provides jQuery UI Autocomplete library.",
  2749. "homepage": "https://www.drupal.org/project/jquery_ui_autocomplete",
  2750. "support": {
  2751. "source": "https://git.drupalcode.org/project/jquery_ui_autocomplete"
  2752. }
  2753. },
  2754. {
  2755. "name": "drupal/jquery_ui_draggable",
  2756. "version": "2.0.0",
  2757. "source": {
  2758. "type": "git",
  2759. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  2760. "reference": "2.0.0"
  2761. },
  2762. "dist": {
  2763. "type": "zip",
  2764. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.0.0.zip",
  2765. "reference": "2.0.0",
  2766. "shasum": "13a8f4bf037449cd176ddb967fc9cba9a466a705"
  2767. },
  2768. "require": {
  2769. "drupal/core": "^9.2 || ^10",
  2770. "drupal/jquery_ui": "^1.6"
  2771. },
  2772. "type": "drupal-module",
  2773. "extra": {
  2774. "drupal": {
  2775. "version": "2.0.0",
  2776. "datestamp": "1670871516",
  2777. "security-coverage": {
  2778. "status": "covered",
  2779. "message": "Covered by Drupal's security advisory policy"
  2780. }
  2781. }
  2782. },
  2783. "notification-url": "https://packages.drupal.org/8/downloads",
  2784. "license": [
  2785. "GPL-2.0-or-later"
  2786. ],
  2787. "authors": [
  2788. {
  2789. "name": "bnjmnm",
  2790. "homepage": "https://www.drupal.org/user/2369194"
  2791. },
  2792. {
  2793. "name": "lauriii",
  2794. "homepage": "https://www.drupal.org/user/1078742"
  2795. },
  2796. {
  2797. "name": "zrpnr",
  2798. "homepage": "https://www.drupal.org/user/1448368"
  2799. }
  2800. ],
  2801. "description": "Provides jQuery UI Draggable library.",
  2802. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  2803. "support": {
  2804. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  2805. }
  2806. },
  2807. {
  2808. "name": "drupal/jquery_ui_droppable",
  2809. "version": "2.0.0",
  2810. "source": {
  2811. "type": "git",
  2812. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  2813. "reference": "2.0.0"
  2814. },
  2815. "dist": {
  2816. "type": "zip",
  2817. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-2.0.0.zip",
  2818. "reference": "2.0.0",
  2819. "shasum": "758f52e68b04e74f1a96240b22090fcae1945898"
  2820. },
  2821. "require": {
  2822. "drupal/core": "^9.2 || ^10",
  2823. "drupal/jquery_ui": "^1.6",
  2824. "drupal/jquery_ui_draggable": "^2"
  2825. },
  2826. "type": "drupal-module",
  2827. "extra": {
  2828. "drupal": {
  2829. "version": "2.0.0",
  2830. "datestamp": "1670871520",
  2831. "security-coverage": {
  2832. "status": "covered",
  2833. "message": "Covered by Drupal's security advisory policy"
  2834. }
  2835. }
  2836. },
  2837. "notification-url": "https://packages.drupal.org/8/downloads",
  2838. "license": [
  2839. "GPL-2.0-or-later"
  2840. ],
  2841. "authors": [
  2842. {
  2843. "name": "bnjmnm",
  2844. "homepage": "https://www.drupal.org/user/2369194"
  2845. },
  2846. {
  2847. "name": "lauriii",
  2848. "homepage": "https://www.drupal.org/user/1078742"
  2849. },
  2850. {
  2851. "name": "zrpnr",
  2852. "homepage": "https://www.drupal.org/user/1448368"
  2853. }
  2854. ],
  2855. "description": "Provides jQuery UI Droppable library.",
  2856. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  2857. "support": {
  2858. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  2859. }
  2860. },
  2861. {
  2862. "name": "drupal/jquery_ui_menu",
  2863. "version": "2.0.0",
  2864. "source": {
  2865. "type": "git",
  2866. "url": "https://git.drupalcode.org/project/jquery_ui_menu.git",
  2867. "reference": "2.0.0"
  2868. },
  2869. "dist": {
  2870. "type": "zip",
  2871. "url": "https://ftp.drupal.org/files/projects/jquery_ui_menu-2.0.0.zip",
  2872. "reference": "2.0.0",
  2873. "shasum": "5e1b56bf457669c7779a81784f49da63e3956854"
  2874. },
  2875. "require": {
  2876. "drupal/core": "^9.2 || ^10",
  2877. "drupal/jquery_ui": "^1.6"
  2878. },
  2879. "type": "drupal-module",
  2880. "extra": {
  2881. "drupal": {
  2882. "version": "2.0.0",
  2883. "datestamp": "1670871546",
  2884. "security-coverage": {
  2885. "status": "covered",
  2886. "message": "Covered by Drupal's security advisory policy"
  2887. }
  2888. }
  2889. },
  2890. "notification-url": "https://packages.drupal.org/8/downloads",
  2891. "license": [
  2892. "GPL-2.0-or-later"
  2893. ],
  2894. "authors": [
  2895. {
  2896. "name": "bnjmnm",
  2897. "homepage": "https://www.drupal.org/user/2369194"
  2898. },
  2899. {
  2900. "name": "lauriii",
  2901. "homepage": "https://www.drupal.org/user/1078742"
  2902. },
  2903. {
  2904. "name": "nod_",
  2905. "homepage": "https://www.drupal.org/user/598310"
  2906. },
  2907. {
  2908. "name": "phenaproxima",
  2909. "homepage": "https://www.drupal.org/user/205645"
  2910. },
  2911. {
  2912. "name": "Wim Leers",
  2913. "homepage": "https://www.drupal.org/user/99777"
  2914. },
  2915. {
  2916. "name": "zrpnr",
  2917. "homepage": "https://www.drupal.org/user/1448368"
  2918. }
  2919. ],
  2920. "description": "Provides jQuery UI Menu library.",
  2921. "homepage": "https://www.drupal.org/project/jquery_ui_menu",
  2922. "support": {
  2923. "source": "https://git.drupalcode.org/project/jquery_ui_menu"
  2924. }
  2925. },
  2926. {
  2927. "name": "drupal/linkit",
  2928. "version": "6.1.2",
  2929. "source": {
  2930. "type": "git",
  2931. "url": "https://git.drupalcode.org/project/linkit.git",
  2932. "reference": "6.1.2"
  2933. },
  2934. "dist": {
  2935. "type": "zip",
  2936. "url": "https://ftp.drupal.org/files/projects/linkit-6.1.2.zip",
  2937. "reference": "6.1.2",
  2938. "shasum": "63fb311d2b78df81a9a588330429b640ec7da0e8"
  2939. },
  2940. "require": {
  2941. "drupal/core": "^10.1"
  2942. },
  2943. "require-dev": {
  2944. "drupal/ckeditor": "*",
  2945. "drupal/imce": "*"
  2946. },
  2947. "type": "drupal-module",
  2948. "extra": {
  2949. "drupal": {
  2950. "version": "6.1.2",
  2951. "datestamp": "1696865478",
  2952. "security-coverage": {
  2953. "status": "covered",
  2954. "message": "Covered by Drupal's security advisory policy"
  2955. }
  2956. }
  2957. },
  2958. "notification-url": "https://packages.drupal.org/8/downloads",
  2959. "license": [
  2960. "GPL-2.0-or-later"
  2961. ],
  2962. "authors": [
  2963. {
  2964. "name": "Emil Stjerneman",
  2965. "homepage": "https://stjerneman.com",
  2966. "email": "emil@stjerneman.com",
  2967. "role": "Maintainer"
  2968. },
  2969. {
  2970. "name": "johnwebdev",
  2971. "homepage": "https://www.drupal.org/user/3331569"
  2972. },
  2973. {
  2974. "name": "mark_fullmer",
  2975. "homepage": "https://www.drupal.org/user/2612816"
  2976. }
  2977. ],
  2978. "description": "Linkit - Enriched linking experience",
  2979. "homepage": "http://drupal.org/project/linkit",
  2980. "support": {
  2981. "source": "http://cgit.drupalcode.org/linkit",
  2982. "issues": "http://drupal.org/project/linkit"
  2983. }
  2984. },
  2985. {
  2986. "name": "drupal/masonry",
  2987. "version": "4.0.0",
  2988. "source": {
  2989. "type": "git",
  2990. "url": "https://git.drupalcode.org/project/masonry.git",
  2991. "reference": "4.0.0"
  2992. },
  2993. "dist": {
  2994. "type": "zip",
  2995. "url": "https://ftp.drupal.org/files/projects/masonry-4.0.0.zip",
  2996. "reference": "4.0.0",
  2997. "shasum": "5062350d5f68d84077a393ce5b8cdc11ff66d0cd"
  2998. },
  2999. "require": {
  3000. "drupal/core": "^8 || ^9 || ^10"
  3001. },
  3002. "type": "drupal-module",
  3003. "extra": {
  3004. "drupal": {
  3005. "version": "4.0.0",
  3006. "datestamp": "1690017720",
  3007. "security-coverage": {
  3008. "status": "covered",
  3009. "message": "Covered by Drupal's security advisory policy"
  3010. }
  3011. }
  3012. },
  3013. "notification-url": "https://packages.drupal.org/8/downloads",
  3014. "license": [
  3015. "GPL-2.0-or-later"
  3016. ],
  3017. "authors": [
  3018. {
  3019. "name": "Dominique Clause (Dom.)",
  3020. "homepage": "https://www.drupal.org/u/dom",
  3021. "role": "Maintainer"
  3022. },
  3023. {
  3024. "name": "Dom.",
  3025. "homepage": "https://www.drupal.org/user/801982"
  3026. }
  3027. ],
  3028. "description": "Masonry integrates with Masonry library",
  3029. "homepage": "https://www.drupal.org/project/masonry",
  3030. "support": {
  3031. "source": "https://git.drupalcode.org/project/masonry",
  3032. "issues": "https://www.drupal.org/project/issues/masonry?version=8.x"
  3033. }
  3034. },
  3035. {
  3036. "name": "drupal/matomo",
  3037. "version": "1.23.0",
  3038. "source": {
  3039. "type": "git",
  3040. "url": "https://git.drupalcode.org/project/matomo.git",
  3041. "reference": "8.x-1.23"
  3042. },
  3043. "dist": {
  3044. "type": "zip",
  3045. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.23.zip",
  3046. "reference": "8.x-1.23",
  3047. "shasum": "c2dbf12878388c5859e64f1e74a9ca5110d1623f"
  3048. },
  3049. "require": {
  3050. "drupal/core": "^9.0 || ^10"
  3051. },
  3052. "conflict": {
  3053. "drupal/csp": "<1.12"
  3054. },
  3055. "require-dev": {
  3056. "drupal/csp": "~1.12",
  3057. "drupal/php": "~1.1",
  3058. "drupal/token": "~1.9"
  3059. },
  3060. "type": "drupal-module",
  3061. "extra": {
  3062. "drupal": {
  3063. "version": "8.x-1.23",
  3064. "datestamp": "1700936102",
  3065. "security-coverage": {
  3066. "status": "covered",
  3067. "message": "Covered by Drupal's security advisory policy"
  3068. }
  3069. }
  3070. },
  3071. "notification-url": "https://packages.drupal.org/8/downloads",
  3072. "license": [
  3073. "GPL-2.0-or-later"
  3074. ],
  3075. "authors": [
  3076. {
  3077. "name": "C-Logemann",
  3078. "homepage": "https://www.drupal.org/user/218368"
  3079. },
  3080. {
  3081. "name": "Grimreaper",
  3082. "homepage": "https://www.drupal.org/user/2388214"
  3083. },
  3084. {
  3085. "name": "hass",
  3086. "homepage": "https://www.drupal.org/user/85918"
  3087. },
  3088. {
  3089. "name": "shelane",
  3090. "homepage": "https://www.drupal.org/user/2674989"
  3091. }
  3092. ],
  3093. "description": "Adds Matomo javascript tracking code to all your site's pages.",
  3094. "homepage": "https://www.drupal.org/project/matomo",
  3095. "support": {
  3096. "source": "https://git.drupalcode.org/project/matomo"
  3097. }
  3098. },
  3099. {
  3100. "name": "drupal/mediteran",
  3101. "version": "1.32.0",
  3102. "source": {
  3103. "type": "git",
  3104. "url": "https://git.drupalcode.org/project/mediteran.git",
  3105. "reference": "8.x-1.32"
  3106. },
  3107. "dist": {
  3108. "type": "zip",
  3109. "url": "https://ftp.drupal.org/files/projects/mediteran-8.x-1.32.zip",
  3110. "reference": "8.x-1.32",
  3111. "shasum": "85e0a94bf5f98626e1eb2c88f6b9467c1fdaf9ec"
  3112. },
  3113. "require": {
  3114. "drupal/core": "^9.2 || ^10"
  3115. },
  3116. "type": "drupal-theme",
  3117. "extra": {
  3118. "drupal": {
  3119. "version": "8.x-1.32",
  3120. "datestamp": "1699979844",
  3121. "security-coverage": {
  3122. "status": "covered",
  3123. "message": "Covered by Drupal's security advisory policy"
  3124. }
  3125. }
  3126. },
  3127. "notification-url": "https://packages.drupal.org/8/downloads",
  3128. "license": [
  3129. "GPL-2.0-or-later"
  3130. ],
  3131. "authors": [
  3132. {
  3133. "name": "bataboza",
  3134. "homepage": "https://www.drupal.org/user/3581173"
  3135. },
  3136. {
  3137. "name": "doxigo",
  3138. "homepage": "https://www.drupal.org/user/1331334"
  3139. },
  3140. {
  3141. "name": "dqd",
  3142. "homepage": "https://www.drupal.org/user/1001934"
  3143. },
  3144. {
  3145. "name": "Hosisam",
  3146. "homepage": "https://www.drupal.org/user/3449435"
  3147. },
  3148. {
  3149. "name": "Nitin shrivastava",
  3150. "homepage": "https://www.drupal.org/user/3725211"
  3151. },
  3152. {
  3153. "name": "paulrad",
  3154. "homepage": "https://www.drupal.org/user/3722439"
  3155. },
  3156. {
  3157. "name": "szeidler",
  3158. "homepage": "https://www.drupal.org/user/767652"
  3159. }
  3160. ],
  3161. "description": "Mediteran is a clean and simple administration theme designed by <a href=\"https://drupalation.com\" target=\"_blank\">Drupalation</a> and supported by <a href=\"https://ramsalt.com\" target=\"_blank\">Ramsalt</a>.",
  3162. "homepage": "https://www.drupal.org/project/mediteran",
  3163. "support": {
  3164. "source": "https://git.drupalcode.org/project/mediteran"
  3165. }
  3166. },
  3167. {
  3168. "name": "drupal/metatag",
  3169. "version": "1.26.0",
  3170. "source": {
  3171. "type": "git",
  3172. "url": "https://git.drupalcode.org/project/metatag.git",
  3173. "reference": "8.x-1.26"
  3174. },
  3175. "dist": {
  3176. "type": "zip",
  3177. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.26.zip",
  3178. "reference": "8.x-1.26",
  3179. "shasum": "afa4a37422748baa2f0c35b13961438668ef3be8"
  3180. },
  3181. "require": {
  3182. "drupal/core": "^9.3 || ^10",
  3183. "drupal/token": "^1.0"
  3184. },
  3185. "require-dev": {
  3186. "drupal/devel": "^4.0 || ^5.0",
  3187. "drupal/hal": "^9 || ^1 || ^2",
  3188. "drupal/metatag_dc": "*",
  3189. "drupal/metatag_open_graph": "*",
  3190. "drupal/page_manager": "^4.0",
  3191. "drupal/panelizer": "^4.0",
  3192. "drupal/redirect": "^1.0",
  3193. "drupal/webprofiler": "^9 || ^10",
  3194. "mpyw/phpunit-patch-serializable-comparison": "*"
  3195. },
  3196. "type": "drupal-module",
  3197. "extra": {
  3198. "drupal": {
  3199. "version": "8.x-1.26",
  3200. "datestamp": "1687856123",
  3201. "security-coverage": {
  3202. "status": "covered",
  3203. "message": "Covered by Drupal's security advisory policy"
  3204. }
  3205. }
  3206. },
  3207. "notification-url": "https://packages.drupal.org/8/downloads",
  3208. "license": [
  3209. "GPL-2.0-or-later"
  3210. ],
  3211. "authors": [
  3212. {
  3213. "name": "See contributors",
  3214. "homepage": "https://www.drupal.org/node/640498/committers",
  3215. "role": "Developer"
  3216. },
  3217. {
  3218. "name": "Dave Reid",
  3219. "homepage": "https://www.drupal.org/user/53892"
  3220. }
  3221. ],
  3222. "description": "Manage meta tags for all entities.",
  3223. "homepage": "https://www.drupal.org/project/metatag",
  3224. "keywords": [
  3225. "Drupal",
  3226. "seo"
  3227. ],
  3228. "support": {
  3229. "source": "https://git.drupalcode.org/project/metatag",
  3230. "issues": "https://www.drupal.org/project/issues/metatag",
  3231. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  3232. }
  3233. },
  3234. {
  3235. "name": "drupal/page_manager",
  3236. "version": "4.0.0-rc2",
  3237. "source": {
  3238. "type": "git",
  3239. "url": "https://git.drupalcode.org/project/page_manager.git",
  3240. "reference": "8.x-4.0-rc2"
  3241. },
  3242. "dist": {
  3243. "type": "zip",
  3244. "url": "https://ftp.drupal.org/files/projects/page_manager-8.x-4.0-rc2.zip",
  3245. "reference": "8.x-4.0-rc2",
  3246. "shasum": "4a1e96284c5775343fbb4612072a2abfc83ebc33"
  3247. },
  3248. "require": {
  3249. "drupal/core": "^9.3 || ^10",
  3250. "drupal/ctools": "^3.11 || ^4.0"
  3251. },
  3252. "type": "drupal-module",
  3253. "extra": {
  3254. "drupal": {
  3255. "version": "8.x-4.0-rc2",
  3256. "datestamp": "1671210021",
  3257. "security-coverage": {
  3258. "status": "not-covered",
  3259. "message": "RC releases are not covered by Drupal security advisories."
  3260. }
  3261. },
  3262. "branch-alias": {
  3263. "dev-8.x-4.x": "4.x-dev"
  3264. }
  3265. },
  3266. "notification-url": "https://packages.drupal.org/8/downloads",
  3267. "license": [
  3268. "GPL-2.0-or-later"
  3269. ],
  3270. "authors": [
  3271. {
  3272. "name": "Tim Plunkett",
  3273. "homepage": "https://www.drupal.org/u/tim.plunkett",
  3274. "role": "Maintainer"
  3275. },
  3276. {
  3277. "name": "EclipseGc",
  3278. "homepage": "https://www.drupal.org/user/61203"
  3279. },
  3280. {
  3281. "name": "ivnish",
  3282. "homepage": "https://www.drupal.org/user/3547706"
  3283. },
  3284. {
  3285. "name": "japerry",
  3286. "homepage": "https://www.drupal.org/user/45640"
  3287. },
  3288. {
  3289. "name": "joelpittet",
  3290. "homepage": "https://www.drupal.org/user/160302"
  3291. },
  3292. {
  3293. "name": "manuel.adan",
  3294. "homepage": "https://www.drupal.org/user/516420"
  3295. },
  3296. {
  3297. "name": "phenaproxima",
  3298. "homepage": "https://www.drupal.org/user/205645"
  3299. }
  3300. ],
  3301. "description": "Provides a way to place blocks on a custom page.",
  3302. "homepage": "https://www.drupal.org/project/page_manager",
  3303. "support": {
  3304. "source": "https://git.drupal.org/project/page_manager.git",
  3305. "issues": "https://www.drupal.org/project/issues/page_manager",
  3306. "irc": "irc://irc.freenode.org/drupal-contribute"
  3307. }
  3308. },
  3309. {
  3310. "name": "drupal/panels",
  3311. "version": "dev-4.x",
  3312. "source": {
  3313. "type": "git",
  3314. "url": "https://git.drupalcode.org/project/panels.git",
  3315. "reference": "4dfd6a07adac69525832b94f6745ac3247a6cd92"
  3316. },
  3317. "require": {
  3318. "drupal/core": "^9.2 || ^10",
  3319. "drupal/ctools": "^3.12 || ^4.0",
  3320. "drupal/jquery_ui_droppable": "^1.0 || ^2.0"
  3321. },
  3322. "require-dev": {
  3323. "drupal/jquery_ui_droppable": "*",
  3324. "drupal/page_manager": "^4"
  3325. },
  3326. "type": "drupal-module",
  3327. "extra": {
  3328. "branch-alias": {
  3329. "dev-4.x": "4.x-dev",
  3330. "dev-8.x-4.x": "4.x-dev"
  3331. },
  3332. "drupal": {
  3333. "version": "8.x-4.7+5-dev",
  3334. "datestamp": "1693457160",
  3335. "security-coverage": {
  3336. "status": "not-covered",
  3337. "message": "Dev releases are not covered by Drupal security advisories."
  3338. }
  3339. }
  3340. },
  3341. "notification-url": "https://packages.drupal.org/8/downloads",
  3342. "license": [
  3343. "GPL-2.0+"
  3344. ],
  3345. "authors": [
  3346. {
  3347. "name": "Jakob Perry",
  3348. "homepage": "https://www.drupal.org/u/japerry"
  3349. },
  3350. {
  3351. "name": "Samuel Mortenson",
  3352. "homepage": "https://www.drupal.org/u/samuel.mortenson"
  3353. },
  3354. {
  3355. "name": "See other contributors",
  3356. "homepage": "https://www.drupal.org/node/74958/committers"
  3357. },
  3358. {
  3359. "name": "joelpittet",
  3360. "homepage": "https://www.drupal.org/user/160302"
  3361. },
  3362. {
  3363. "name": "Letharion",
  3364. "homepage": "https://www.drupal.org/user/373603"
  3365. },
  3366. {
  3367. "name": "merlinofchaos",
  3368. "homepage": "https://www.drupal.org/user/26979"
  3369. },
  3370. {
  3371. "name": "neclimdul",
  3372. "homepage": "https://www.drupal.org/user/48673"
  3373. },
  3374. {
  3375. "name": "phenaproxima",
  3376. "homepage": "https://www.drupal.org/user/205645"
  3377. },
  3378. {
  3379. "name": "samuel.mortenson",
  3380. "homepage": "https://www.drupal.org/user/2582268"
  3381. }
  3382. ],
  3383. "description": "Core Panels display functions; provides no external UI, at least one other Panels module should be enabled.",
  3384. "homepage": "https://www.drupal.org/project/panels",
  3385. "support": {
  3386. "source": "http://git.drupal.org/project/panels.git",
  3387. "issues": "https://www.drupal.org/project/issues/panels",
  3388. "irc": "irc://irc.freenode.org/drupal-scotch"
  3389. }
  3390. },
  3391. {
  3392. "name": "drupal/paragraphs",
  3393. "version": "1.17.0",
  3394. "source": {
  3395. "type": "git",
  3396. "url": "https://git.drupalcode.org/project/paragraphs.git",
  3397. "reference": "8.x-1.17"
  3398. },
  3399. "dist": {
  3400. "type": "zip",
  3401. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.17.zip",
  3402. "reference": "8.x-1.17",
  3403. "shasum": "81c05f6a1eb59ab957c9ac97b2e79d6c9837bd72"
  3404. },
  3405. "require": {
  3406. "drupal/core": "^9.3 || ^10",
  3407. "drupal/entity_reference_revisions": "~1.3"
  3408. },
  3409. "require-dev": {
  3410. "drupal/block_field": "1.x-dev",
  3411. "drupal/diff": "1.x-dev",
  3412. "drupal/entity_browser": "2.x-dev",
  3413. "drupal/entity_usage": "2.x-dev",
  3414. "drupal/field_group": "3.x-dev",
  3415. "drupal/inline_entity_form": "1.x-dev",
  3416. "drupal/paragraphs-paragraphs_library": "*",
  3417. "drupal/replicate": "1.x-dev",
  3418. "drupal/search_api": "^1",
  3419. "drupal/search_api_db": "*"
  3420. },
  3421. "suggest": {
  3422. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  3423. },
  3424. "type": "drupal-module",
  3425. "extra": {
  3426. "drupal": {
  3427. "version": "8.x-1.17",
  3428. "datestamp": "1705234146",
  3429. "security-coverage": {
  3430. "status": "covered",
  3431. "message": "Covered by Drupal's security advisory policy"
  3432. }
  3433. }
  3434. },
  3435. "notification-url": "https://packages.drupal.org/8/downloads",
  3436. "license": [
  3437. "GPL-2.0-or-later"
  3438. ],
  3439. "authors": [
  3440. {
  3441. "name": "Berdir",
  3442. "homepage": "https://www.drupal.org/user/214652"
  3443. },
  3444. {
  3445. "name": "Frans",
  3446. "homepage": "https://www.drupal.org/user/514222"
  3447. },
  3448. {
  3449. "name": "jeroen.b",
  3450. "homepage": "https://www.drupal.org/user/1853532"
  3451. },
  3452. {
  3453. "name": "jstoller",
  3454. "homepage": "https://www.drupal.org/user/99012"
  3455. },
  3456. {
  3457. "name": "miro_dietiker",
  3458. "homepage": "https://www.drupal.org/user/227761"
  3459. },
  3460. {
  3461. "name": "Primsi",
  3462. "homepage": "https://www.drupal.org/user/282629"
  3463. }
  3464. ],
  3465. "description": "Enables the creation of Paragraphs entities.",
  3466. "homepage": "https://www.drupal.org/project/paragraphs",
  3467. "support": {
  3468. "source": "https://git.drupalcode.org/project/paragraphs"
  3469. }
  3470. },
  3471. {
  3472. "name": "drupal/pathauto",
  3473. "version": "1.12.0",
  3474. "source": {
  3475. "type": "git",
  3476. "url": "https://git.drupalcode.org/project/pathauto.git",
  3477. "reference": "8.x-1.12"
  3478. },
  3479. "dist": {
  3480. "type": "zip",
  3481. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.12.zip",
  3482. "reference": "8.x-1.12",
  3483. "shasum": "b7b6432e315e38e59a7c6cc117134326c580de4c"
  3484. },
  3485. "require": {
  3486. "drupal/core": "^9.3 || ^10",
  3487. "drupal/ctools": "*",
  3488. "drupal/token": "*"
  3489. },
  3490. "suggest": {
  3491. "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."
  3492. },
  3493. "type": "drupal-module",
  3494. "extra": {
  3495. "drupal": {
  3496. "version": "8.x-1.12",
  3497. "datestamp": "1696776683",
  3498. "security-coverage": {
  3499. "status": "covered",
  3500. "message": "Covered by Drupal's security advisory policy"
  3501. }
  3502. },
  3503. "drush": {
  3504. "services": {
  3505. "drush.services.yml": "^9 || ^10"
  3506. }
  3507. }
  3508. },
  3509. "notification-url": "https://packages.drupal.org/8/downloads",
  3510. "license": [
  3511. "GPL-2.0-or-later"
  3512. ],
  3513. "authors": [
  3514. {
  3515. "name": "Berdir",
  3516. "homepage": "https://www.drupal.org/user/214652"
  3517. },
  3518. {
  3519. "name": "Dave Reid",
  3520. "homepage": "https://www.drupal.org/user/53892"
  3521. },
  3522. {
  3523. "name": "Freso",
  3524. "homepage": "https://www.drupal.org/user/27504"
  3525. },
  3526. {
  3527. "name": "greggles",
  3528. "homepage": "https://www.drupal.org/user/36762"
  3529. }
  3530. ],
  3531. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  3532. "homepage": "https://www.drupal.org/project/pathauto",
  3533. "support": {
  3534. "source": "https://cgit.drupalcode.org/pathauto",
  3535. "issues": "https://www.drupal.org/project/issues/pathauto",
  3536. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  3537. }
  3538. },
  3539. {
  3540. "name": "drupal/redirect",
  3541. "version": "1.9.0",
  3542. "source": {
  3543. "type": "git",
  3544. "url": "https://git.drupalcode.org/project/redirect.git",
  3545. "reference": "8.x-1.9"
  3546. },
  3547. "dist": {
  3548. "type": "zip",
  3549. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.9.zip",
  3550. "reference": "8.x-1.9",
  3551. "shasum": "2987de20f509e9f7cec8a0f81d3a6774f9b0ba3e"
  3552. },
  3553. "require": {
  3554. "drupal/core": "^9.2 || ^10"
  3555. },
  3556. "type": "drupal-module",
  3557. "extra": {
  3558. "drupal": {
  3559. "version": "8.x-1.9",
  3560. "datestamp": "1693393506",
  3561. "security-coverage": {
  3562. "status": "covered",
  3563. "message": "Covered by Drupal's security advisory policy"
  3564. }
  3565. }
  3566. },
  3567. "notification-url": "https://packages.drupal.org/8/downloads",
  3568. "license": [
  3569. "GPL-2.0-or-later"
  3570. ],
  3571. "authors": [
  3572. {
  3573. "name": "Berdir",
  3574. "homepage": "https://www.drupal.org/user/214652"
  3575. },
  3576. {
  3577. "name": "Dave Reid",
  3578. "homepage": "https://www.drupal.org/user/53892"
  3579. },
  3580. {
  3581. "name": "Kristen Pol",
  3582. "homepage": "https://www.drupal.org/user/8389"
  3583. },
  3584. {
  3585. "name": "pifagor",
  3586. "homepage": "https://www.drupal.org/user/2375692"
  3587. }
  3588. ],
  3589. "description": "Allows users to redirect from old URLs to new URLs.",
  3590. "homepage": "https://www.drupal.org/project/redirect",
  3591. "support": {
  3592. "source": "https://git.drupalcode.org/project/redirect"
  3593. }
  3594. },
  3595. {
  3596. "name": "drupal/redirect_after_login",
  3597. "version": "2.8.0",
  3598. "source": {
  3599. "type": "git",
  3600. "url": "https://git.drupalcode.org/project/redirect_after_login.git",
  3601. "reference": "8.x-2.8"
  3602. },
  3603. "dist": {
  3604. "type": "zip",
  3605. "url": "https://ftp.drupal.org/files/projects/redirect_after_login-8.x-2.8.zip",
  3606. "reference": "8.x-2.8",
  3607. "shasum": "01781d0265c85a8ffa55842c34813daceba995e6"
  3608. },
  3609. "require": {
  3610. "drupal/core": "^9.3 || ^10"
  3611. },
  3612. "type": "drupal-module",
  3613. "extra": {
  3614. "drupal": {
  3615. "version": "8.x-2.8",
  3616. "datestamp": "1698918366",
  3617. "security-coverage": {
  3618. "status": "covered",
  3619. "message": "Covered by Drupal's security advisory policy"
  3620. }
  3621. }
  3622. },
  3623. "notification-url": "https://packages.drupal.org/8/downloads",
  3624. "license": [
  3625. "GPL-2.0-or-later"
  3626. ],
  3627. "authors": [
  3628. {
  3629. "name": "Shamsher Alam",
  3630. "homepage": "https://www.drupal.org/u/shamsher_alam",
  3631. "role": "Author"
  3632. },
  3633. {
  3634. "name": "prempatel2447",
  3635. "homepage": "https://www.drupal.org/user/3250112"
  3636. },
  3637. {
  3638. "name": "rahul-kr-sh",
  3639. "homepage": "https://www.drupal.org/user/3561577"
  3640. },
  3641. {
  3642. "name": "Shamsher_Alam",
  3643. "homepage": "https://www.drupal.org/user/2742027"
  3644. },
  3645. {
  3646. "name": "VladimirAus",
  3647. "homepage": "https://www.drupal.org/user/673120"
  3648. }
  3649. ],
  3650. "description": "Redirect user after login to a configured url",
  3651. "homepage": "https://drupal.org/project/redirect_after_login",
  3652. "support": {
  3653. "source": "https://git.drupalcode.org/project/redirect_after_login"
  3654. }
  3655. },
  3656. {
  3657. "name": "drupal/redis",
  3658. "version": "1.7.0",
  3659. "source": {
  3660. "type": "git",
  3661. "url": "https://git.drupalcode.org/project/redis.git",
  3662. "reference": "8.x-1.7"
  3663. },
  3664. "dist": {
  3665. "type": "zip",
  3666. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.7.zip",
  3667. "reference": "8.x-1.7",
  3668. "shasum": "602043bdad62ff047321121edcfde8abf3638c7c"
  3669. },
  3670. "require": {
  3671. "drupal/core": "^9.3 || ^10"
  3672. },
  3673. "suggest": {
  3674. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  3675. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  3676. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  3677. },
  3678. "type": "drupal-module",
  3679. "extra": {
  3680. "drupal": {
  3681. "version": "8.x-1.7",
  3682. "datestamp": "1686175620",
  3683. "security-coverage": {
  3684. "status": "covered",
  3685. "message": "Covered by Drupal's security advisory policy"
  3686. }
  3687. }
  3688. },
  3689. "autoload": {
  3690. "psr-4": {
  3691. "Drupal\\redis\\": "src"
  3692. }
  3693. },
  3694. "notification-url": "https://packages.drupal.org/8/downloads",
  3695. "license": [
  3696. "GPL-2.0-or-later"
  3697. ],
  3698. "authors": [
  3699. {
  3700. "name": "Berdir",
  3701. "homepage": "https://www.drupal.org/user/214652"
  3702. },
  3703. {
  3704. "name": "greg.1.anderson",
  3705. "homepage": "https://www.drupal.org/user/438598"
  3706. },
  3707. {
  3708. "name": "kporras07",
  3709. "homepage": "https://www.drupal.org/user/1349780"
  3710. },
  3711. {
  3712. "name": "pounard",
  3713. "homepage": "https://www.drupal.org/user/240164"
  3714. }
  3715. ],
  3716. "description": "Integration of Drupal with the Redis key-value store.",
  3717. "homepage": "https://www.drupal.org/project/redis",
  3718. "support": {
  3719. "source": "https://git.drupalcode.org/project/redis"
  3720. }
  3721. },
  3722. {
  3723. "name": "drupal/schema_metatag",
  3724. "version": "2.5.0",
  3725. "source": {
  3726. "type": "git",
  3727. "url": "https://git.drupalcode.org/project/schema_metatag.git",
  3728. "reference": "8.x-2.5"
  3729. },
  3730. "dist": {
  3731. "type": "zip",
  3732. "url": "https://ftp.drupal.org/files/projects/schema_metatag-8.x-2.5.zip",
  3733. "reference": "8.x-2.5",
  3734. "shasum": "543b9d624711379e29dde58c22e2cc0a66822c87"
  3735. },
  3736. "require": {
  3737. "drupal/core": "^9.0 || ^10",
  3738. "drupal/metatag": "^1.0"
  3739. },
  3740. "require-dev": {
  3741. "drupal/coder": "^8.3",
  3742. "drupal/metatag_views": "*",
  3743. "drupal/schema_article": "*",
  3744. "drupal/schema_organization": "*",
  3745. "phpcompatibility/php-compatibility": "^9.3"
  3746. },
  3747. "type": "drupal-module",
  3748. "extra": {
  3749. "drupal": {
  3750. "version": "8.x-2.5",
  3751. "datestamp": "1687460392",
  3752. "security-coverage": {
  3753. "status": "covered",
  3754. "message": "Covered by Drupal's security advisory policy"
  3755. }
  3756. }
  3757. },
  3758. "notification-url": "https://packages.drupal.org/8/downloads",
  3759. "license": [
  3760. "GPL-2.0-or-later"
  3761. ],
  3762. "authors": [
  3763. {
  3764. "name": "DamienMcKenna",
  3765. "homepage": "https://www.drupal.org/user/108450"
  3766. },
  3767. {
  3768. "name": "KarenS",
  3769. "homepage": "https://www.drupal.org/user/45874"
  3770. },
  3771. {
  3772. "name": "wells",
  3773. "homepage": "https://www.drupal.org/user/2452278"
  3774. }
  3775. ],
  3776. "description": "Metatag implementation of Schema.org structured data (JSON-LD)",
  3777. "homepage": "https://www.drupal.org/project/schema_metatag",
  3778. "keywords": [
  3779. "Drupal"
  3780. ],
  3781. "support": {
  3782. "source": "https://git.drupalcode.org/project/schema_metatag",
  3783. "issues": "https://www.drupal.org/project/issues/schema_metatag"
  3784. }
  3785. },
  3786. {
  3787. "name": "drupal/search_api",
  3788. "version": "1.31.0",
  3789. "source": {
  3790. "type": "git",
  3791. "url": "https://git.drupalcode.org/project/search_api.git",
  3792. "reference": "8.x-1.31"
  3793. },
  3794. "dist": {
  3795. "type": "zip",
  3796. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.31.zip",
  3797. "reference": "8.x-1.31",
  3798. "shasum": "ec8436744c34de2ede6370d4dd26875489e761bc"
  3799. },
  3800. "require": {
  3801. "drupal/core": "^10.0"
  3802. },
  3803. "conflict": {
  3804. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  3805. },
  3806. "require-dev": {
  3807. "drupal/language_fallback_fix": "@dev",
  3808. "drupal/search_api_autocomplete": "@dev",
  3809. "drupal/search_api_db": "*"
  3810. },
  3811. "suggest": {
  3812. "drupal/facets": "Adds the ability to create faceted searches.",
  3813. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  3814. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  3815. },
  3816. "type": "drupal-module",
  3817. "extra": {
  3818. "drupal": {
  3819. "version": "8.x-1.31",
  3820. "datestamp": "1700926323",
  3821. "security-coverage": {
  3822. "status": "covered",
  3823. "message": "Covered by Drupal's security advisory policy"
  3824. }
  3825. },
  3826. "drush": {
  3827. "services": {
  3828. "drush.services.yml": "^9 || ^10 || ^11"
  3829. }
  3830. }
  3831. },
  3832. "notification-url": "https://packages.drupal.org/8/downloads",
  3833. "license": [
  3834. "GPL-2.0-or-later"
  3835. ],
  3836. "authors": [
  3837. {
  3838. "name": "Thomas Seidl",
  3839. "homepage": "https://www.drupal.org/u/drunken-monkey"
  3840. },
  3841. {
  3842. "name": "Nick Veenhof",
  3843. "homepage": "https://www.drupal.org/u/nick_vh"
  3844. },
  3845. {
  3846. "name": "See other contributors",
  3847. "homepage": "https://www.drupal.org/node/790418/committers"
  3848. }
  3849. ],
  3850. "description": "Provides a generic framework for modules offering search capabilities.",
  3851. "homepage": "https://www.drupal.org/project/search_api",
  3852. "support": {
  3853. "source": "https://git.drupalcode.org/project/search_api",
  3854. "issues": "https://www.drupal.org/project/issues/search_api",
  3855. "irc": "irc://irc.freenode.org/drupal-search-api"
  3856. }
  3857. },
  3858. {
  3859. "name": "drupal/seven",
  3860. "version": "1.0.0",
  3861. "source": {
  3862. "type": "git",
  3863. "url": "https://git.drupalcode.org/project/seven.git",
  3864. "reference": "1.0.0"
  3865. },
  3866. "dist": {
  3867. "type": "zip",
  3868. "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip",
  3869. "reference": "1.0.0",
  3870. "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd"
  3871. },
  3872. "require": {
  3873. "drupal/core": "^9 || ^10"
  3874. },
  3875. "type": "drupal-theme",
  3876. "extra": {
  3877. "drupal": {
  3878. "version": "1.0.0",
  3879. "datestamp": "1683652106",
  3880. "security-coverage": {
  3881. "status": "covered",
  3882. "message": "Covered by Drupal's security advisory policy"
  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": "bnjmnm",
  3893. "homepage": "https://www.drupal.org/user/2369194"
  3894. },
  3895. {
  3896. "name": "lauriii",
  3897. "homepage": "https://www.drupal.org/user/1078742"
  3898. },
  3899. {
  3900. "name": "mcrittenden",
  3901. "homepage": "https://www.drupal.org/user/420631"
  3902. },
  3903. {
  3904. "name": "mrfelton",
  3905. "homepage": "https://www.drupal.org/user/305669"
  3906. },
  3907. {
  3908. "name": "TravisCarden",
  3909. "homepage": "https://www.drupal.org/user/236758"
  3910. }
  3911. ],
  3912. "description": "The Seven theme from Drupal 8/9 moved to contrib",
  3913. "homepage": "https://www.drupal.org/project/seven",
  3914. "support": {
  3915. "source": "https://git.drupalcode.org/project/seven"
  3916. }
  3917. },
  3918. {
  3919. "name": "drupal/site_settings",
  3920. "version": "1.20.0",
  3921. "source": {
  3922. "type": "git",
  3923. "url": "https://git.drupalcode.org/project/site_settings.git",
  3924. "reference": "8.x-1.20"
  3925. },
  3926. "dist": {
  3927. "type": "zip",
  3928. "url": "https://ftp.drupal.org/files/projects/site_settings-8.x-1.20.zip",
  3929. "reference": "8.x-1.20",
  3930. "shasum": "b1e3b07437ef0ff7a907b7b6319f16db3942fb1c"
  3931. },
  3932. "require": {
  3933. "drupal/core": "^8 || ^9 || ^10"
  3934. },
  3935. "type": "drupal-module",
  3936. "extra": {
  3937. "drupal": {
  3938. "version": "8.x-1.20",
  3939. "datestamp": "1669790573",
  3940. "security-coverage": {
  3941. "status": "covered",
  3942. "message": "Covered by Drupal's security advisory policy"
  3943. }
  3944. }
  3945. },
  3946. "notification-url": "https://packages.drupal.org/8/downloads",
  3947. "license": [
  3948. "GPL-2.0+"
  3949. ],
  3950. "authors": [
  3951. {
  3952. "name": "bobi-mel",
  3953. "homepage": "https://www.drupal.org/user/3741631"
  3954. },
  3955. {
  3956. "name": "bohart",
  3957. "homepage": "https://www.drupal.org/user/289861"
  3958. },
  3959. {
  3960. "name": "scott_euser",
  3961. "homepage": "https://www.drupal.org/user/3267594"
  3962. }
  3963. ],
  3964. "description": "Provides a site settings entity",
  3965. "homepage": "https://www.drupal.org/project/site_settings",
  3966. "keywords": [
  3967. "Drupal"
  3968. ],
  3969. "support": {
  3970. "source": "http://cgit.drupalcode.org/site_settings",
  3971. "issues": "http://drupal.org/project/issues/site_settings"
  3972. }
  3973. },
  3974. {
  3975. "name": "drupal/subpathauto",
  3976. "version": "1.3.0",
  3977. "source": {
  3978. "type": "git",
  3979. "url": "https://git.drupalcode.org/project/subpathauto.git",
  3980. "reference": "8.x-1.3"
  3981. },
  3982. "dist": {
  3983. "type": "zip",
  3984. "url": "https://ftp.drupal.org/files/projects/subpathauto-8.x-1.3.zip",
  3985. "reference": "8.x-1.3",
  3986. "shasum": "b94e4ec3c8dcd42aa04b6796ae48a9aa1848862d"
  3987. },
  3988. "require": {
  3989. "drupal/core": "^8.8 || ^9 || ^10"
  3990. },
  3991. "require-dev": {
  3992. "drupal/redirect": "*"
  3993. },
  3994. "type": "drupal-module",
  3995. "extra": {
  3996. "drupal": {
  3997. "version": "8.x-1.3",
  3998. "datestamp": "1676316639",
  3999. "security-coverage": {
  4000. "status": "covered",
  4001. "message": "Covered by Drupal's security advisory policy"
  4002. }
  4003. }
  4004. },
  4005. "notification-url": "https://packages.drupal.org/8/downloads",
  4006. "license": [
  4007. "GPL-2.0-or-later"
  4008. ],
  4009. "authors": [
  4010. {
  4011. "name": "Dave Reid",
  4012. "homepage": "https://www.drupal.org/user/53892"
  4013. },
  4014. {
  4015. "name": "lauriii",
  4016. "homepage": "https://www.drupal.org/user/1078742"
  4017. },
  4018. {
  4019. "name": "NickDickinsonWilde",
  4020. "homepage": "https://www.drupal.org/user/3094661"
  4021. }
  4022. ],
  4023. "description": "Provides support for extending sub-paths of URL aliases.",
  4024. "homepage": "https://www.drupal.org/project/subpathauto",
  4025. "support": {
  4026. "source": "https://cgit.drupalcode.org/subpathauto",
  4027. "issues": "https://www.drupal.org/project/issues/subpathauto"
  4028. }
  4029. },
  4030. {
  4031. "name": "drupal/tacjs",
  4032. "version": "6.4.0",
  4033. "source": {
  4034. "type": "git",
  4035. "url": "https://git.drupalcode.org/project/tacjs.git",
  4036. "reference": "8.x-6.4"
  4037. },
  4038. "dist": {
  4039. "type": "zip",
  4040. "url": "https://ftp.drupal.org/files/projects/tacjs-8.x-6.4.zip",
  4041. "reference": "8.x-6.4",
  4042. "shasum": "20a23611b6ea7a5f3b8d2d5ec9ce714cd3e00d77"
  4043. },
  4044. "require": {
  4045. "drupal/core": "^8.8 || ^9 || ^10"
  4046. },
  4047. "type": "drupal-module",
  4048. "extra": {
  4049. "drupal": {
  4050. "version": "8.x-6.4",
  4051. "datestamp": "1687974794",
  4052. "security-coverage": {
  4053. "status": "covered",
  4054. "message": "Covered by Drupal's security advisory policy"
  4055. }
  4056. }
  4057. },
  4058. "notification-url": "https://packages.drupal.org/8/downloads",
  4059. "license": [
  4060. "GPL-2.0-or-later"
  4061. ],
  4062. "authors": [
  4063. {
  4064. "name": "asmaakhalfi",
  4065. "homepage": "https://www.drupal.org/user/3587145"
  4066. },
  4067. {
  4068. "name": "boulaffasae",
  4069. "homepage": "https://www.drupal.org/user/3584750"
  4070. },
  4071. {
  4072. "name": "chaimaariz",
  4073. "homepage": "https://www.drupal.org/user/3549766"
  4074. },
  4075. {
  4076. "name": "k.asmouh",
  4077. "homepage": "https://www.drupal.org/user/3135943"
  4078. },
  4079. {
  4080. "name": "lamlih",
  4081. "homepage": "https://www.drupal.org/user/3708454"
  4082. },
  4083. {
  4084. "name": "mably",
  4085. "homepage": "https://www.drupal.org/user/3375160"
  4086. },
  4087. {
  4088. "name": "netsliver",
  4089. "homepage": "https://www.drupal.org/user/3082011"
  4090. },
  4091. {
  4092. "name": "prudloff",
  4093. "homepage": "https://www.drupal.org/user/3611858"
  4094. }
  4095. ],
  4096. "description": "Comply to the European cookie law using tarteaucitron.js.",
  4097. "homepage": "https://www.drupal.org/project/tacjs",
  4098. "keywords": [
  4099. "Drupal",
  4100. "tacjs"
  4101. ],
  4102. "support": {
  4103. "source": "https://git.drupalcode.org/project/tacjs",
  4104. "issues": "https://www.drupal.org/project/issues/tacjs"
  4105. }
  4106. },
  4107. {
  4108. "name": "drupal/time_range",
  4109. "version": "9.0.2",
  4110. "source": {
  4111. "type": "git",
  4112. "url": "https://git.drupalcode.org/project/time_range.git",
  4113. "reference": "9.0.2"
  4114. },
  4115. "dist": {
  4116. "type": "zip",
  4117. "url": "https://ftp.drupal.org/files/projects/time_range-9.0.2.zip",
  4118. "reference": "9.0.2",
  4119. "shasum": "e0de44c4fc10f86b9ea001458deb7eac02f2ff28"
  4120. },
  4121. "require": {
  4122. "drupal/core": "^8 || ^9 || ^10"
  4123. },
  4124. "type": "drupal-module",
  4125. "extra": {
  4126. "drupal": {
  4127. "version": "9.0.2",
  4128. "datestamp": "1688992195",
  4129. "security-coverage": {
  4130. "status": "covered",
  4131. "message": "Covered by Drupal's security advisory policy"
  4132. }
  4133. }
  4134. },
  4135. "notification-url": "https://packages.drupal.org/8/downloads",
  4136. "license": [
  4137. "GPL-2.0+"
  4138. ],
  4139. "authors": [
  4140. {
  4141. "name": "dravenk",
  4142. "homepage": "https://www.drupal.org/user/3452417"
  4143. }
  4144. ],
  4145. "description": "Provides the form widget to fill in time range.",
  4146. "homepage": "https://github.com/DravenK/time-range.git",
  4147. "support": {
  4148. "source": "https://github.com/DravenK/time-range.git",
  4149. "issues": "https://github.com/DravenK/time-range/issues"
  4150. }
  4151. },
  4152. {
  4153. "name": "drupal/token",
  4154. "version": "1.13.0",
  4155. "source": {
  4156. "type": "git",
  4157. "url": "https://git.drupalcode.org/project/token.git",
  4158. "reference": "8.x-1.13"
  4159. },
  4160. "dist": {
  4161. "type": "zip",
  4162. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.13.zip",
  4163. "reference": "8.x-1.13",
  4164. "shasum": "f2a074b51726de3727c1d900237d6d471806a4d2"
  4165. },
  4166. "require": {
  4167. "drupal/core": "^9.2 || ^10"
  4168. },
  4169. "type": "drupal-module",
  4170. "extra": {
  4171. "drupal": {
  4172. "version": "8.x-1.13",
  4173. "datestamp": "1697885927",
  4174. "security-coverage": {
  4175. "status": "covered",
  4176. "message": "Covered by Drupal's security advisory policy"
  4177. }
  4178. },
  4179. "drush": {
  4180. "services": {
  4181. "drush.services.yml": ">=9"
  4182. }
  4183. }
  4184. },
  4185. "notification-url": "https://packages.drupal.org/8/downloads",
  4186. "license": [
  4187. "GPL-2.0-or-later"
  4188. ],
  4189. "authors": [
  4190. {
  4191. "name": "Berdir",
  4192. "homepage": "https://www.drupal.org/user/214652"
  4193. },
  4194. {
  4195. "name": "Dave Reid",
  4196. "homepage": "https://www.drupal.org/user/53892"
  4197. },
  4198. {
  4199. "name": "eaton",
  4200. "homepage": "https://www.drupal.org/user/16496"
  4201. },
  4202. {
  4203. "name": "fago",
  4204. "homepage": "https://www.drupal.org/user/16747"
  4205. },
  4206. {
  4207. "name": "greggles",
  4208. "homepage": "https://www.drupal.org/user/36762"
  4209. },
  4210. {
  4211. "name": "mikeryan",
  4212. "homepage": "https://www.drupal.org/user/4420"
  4213. }
  4214. ],
  4215. "description": "Provides a user interface for the Token API, some missing core tokens.",
  4216. "homepage": "https://www.drupal.org/project/token",
  4217. "support": {
  4218. "source": "https://git.drupalcode.org/project/token"
  4219. }
  4220. },
  4221. {
  4222. "name": "drupal/video_embed_field",
  4223. "version": "2.5.0",
  4224. "source": {
  4225. "type": "git",
  4226. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  4227. "reference": "8.x-2.5"
  4228. },
  4229. "dist": {
  4230. "type": "zip",
  4231. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.5.zip",
  4232. "reference": "8.x-2.5",
  4233. "shasum": "997ed67b6873e822fe628f87f65bd6da67e7350c"
  4234. },
  4235. "require": {
  4236. "drupal/core": "^9.2 || ^10"
  4237. },
  4238. "require-dev": {
  4239. "drupal/ckeditor": "^1",
  4240. "drupal/colorbox": "^2",
  4241. "drupal/video_embed_media": "*"
  4242. },
  4243. "type": "drupal-module",
  4244. "extra": {
  4245. "drupal": {
  4246. "version": "8.x-2.5",
  4247. "datestamp": "1671413311",
  4248. "security-coverage": {
  4249. "status": "covered",
  4250. "message": "Covered by Drupal's security advisory policy"
  4251. }
  4252. }
  4253. },
  4254. "notification-url": "https://packages.drupal.org/8/downloads",
  4255. "license": [
  4256. "GPL-2.0-or-later"
  4257. ],
  4258. "authors": [
  4259. {
  4260. "name": "abhinesh",
  4261. "homepage": "https://www.drupal.org/user/3645979"
  4262. },
  4263. {
  4264. "name": "jec006",
  4265. "homepage": "https://www.drupal.org/user/855980"
  4266. },
  4267. {
  4268. "name": "plopesc",
  4269. "homepage": "https://www.drupal.org/user/282415"
  4270. },
  4271. {
  4272. "name": "Sam152",
  4273. "homepage": "https://www.drupal.org/user/1485048"
  4274. }
  4275. ],
  4276. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  4277. "homepage": "https://www.drupal.org/project/video_embed_field",
  4278. "support": {
  4279. "source": "https://git.drupalcode.org/project/video_embed_field"
  4280. }
  4281. },
  4282. {
  4283. "name": "drupal/views_url_path_arguments",
  4284. "version": "1.2.0",
  4285. "source": {
  4286. "type": "git",
  4287. "url": "https://git.drupalcode.org/project/views_url_path_arguments.git",
  4288. "reference": "8.x-1.2"
  4289. },
  4290. "dist": {
  4291. "type": "zip",
  4292. "url": "https://ftp.drupal.org/files/projects/views_url_path_arguments-8.x-1.2.zip",
  4293. "reference": "8.x-1.2",
  4294. "shasum": "949023c9c1dd31f91d60e76580dc9d5c2e0732d4"
  4295. },
  4296. "require": {
  4297. "drupal/core": "^8 || ^9 || ^10"
  4298. },
  4299. "type": "drupal-module",
  4300. "extra": {
  4301. "drupal": {
  4302. "version": "8.x-1.2",
  4303. "datestamp": "1689607584",
  4304. "security-coverage": {
  4305. "status": "covered",
  4306. "message": "Covered by Drupal's security advisory policy"
  4307. }
  4308. }
  4309. },
  4310. "notification-url": "https://packages.drupal.org/8/downloads",
  4311. "license": [
  4312. "GPL-2.0+"
  4313. ],
  4314. "authors": [
  4315. {
  4316. "name": "heddn",
  4317. "homepage": "https://www.drupal.org/user/1463982"
  4318. }
  4319. ],
  4320. "description": "Simple module to convert a view argument's entity id into its url path.",
  4321. "homepage": "https://www.drupal.org/project/views_url_path_arguments",
  4322. "keywords": [
  4323. "Drupal"
  4324. ],
  4325. "support": {
  4326. "source": "http://cgit.drupalcode.org/views_url_path_arguments",
  4327. "issues": "https://www.drupal.org/project/issues/views_url_path_arguments"
  4328. }
  4329. },
  4330. {
  4331. "name": "drush/drush",
  4332. "version": "12.4.3",
  4333. "source": {
  4334. "type": "git",
  4335. "url": "https://github.com/drush-ops/drush.git",
  4336. "reference": "8245acede57ecc62a90aa0f19ff3b29e5f11f971"
  4337. },
  4338. "dist": {
  4339. "type": "zip",
  4340. "url": "https://api.github.com/repos/drush-ops/drush/zipball/8245acede57ecc62a90aa0f19ff3b29e5f11f971",
  4341. "reference": "8245acede57ecc62a90aa0f19ff3b29e5f11f971",
  4342. "shasum": ""
  4343. },
  4344. "require": {
  4345. "chi-teck/drupal-code-generator": "^3.0",
  4346. "composer-runtime-api": "^2.2",
  4347. "composer/semver": "^1.4 || ^3",
  4348. "consolidation/annotated-command": "^4.9.1",
  4349. "consolidation/config": "^2.1.2",
  4350. "consolidation/filter-via-dot-access-data": "^2.0.2",
  4351. "consolidation/output-formatters": "^4.3.2",
  4352. "consolidation/robo": "^4.0.6",
  4353. "consolidation/site-alias": "^4",
  4354. "consolidation/site-process": "^5.2.0",
  4355. "ext-dom": "*",
  4356. "grasmash/yaml-cli": "^3.1",
  4357. "guzzlehttp/guzzle": "^7.0",
  4358. "league/container": "^4",
  4359. "php": ">=8.1",
  4360. "psy/psysh": "~0.11",
  4361. "symfony/event-dispatcher": "^6",
  4362. "symfony/filesystem": "^6.1",
  4363. "symfony/finder": "^6",
  4364. "symfony/var-dumper": "^6.0",
  4365. "symfony/yaml": "^6.0",
  4366. "webflo/drupal-finder": "^1.2"
  4367. },
  4368. "conflict": {
  4369. "drupal/core": "< 10.0",
  4370. "drupal/migrate_run": "*",
  4371. "drupal/migrate_tools": "<= 5"
  4372. },
  4373. "require-dev": {
  4374. "composer/installers": "^2",
  4375. "cweagans/composer-patches": "~1.0",
  4376. "drupal/core-recommended": "^10",
  4377. "drupal/semver_example": "2.3.0",
  4378. "phpunit/phpunit": "^9",
  4379. "rector/rector": "^0.12",
  4380. "squizlabs/php_codesniffer": "^3.7"
  4381. },
  4382. "bin": [
  4383. "drush"
  4384. ],
  4385. "type": "library",
  4386. "extra": {
  4387. "installer-paths": {
  4388. "sut/core": [
  4389. "type:drupal-core"
  4390. ],
  4391. "sut/libraries/{$name}": [
  4392. "type:drupal-library"
  4393. ],
  4394. "sut/modules/unish/{$name}": [
  4395. "drupal/devel"
  4396. ],
  4397. "sut/themes/unish/{$name}": [
  4398. "drupal/empty_theme"
  4399. ],
  4400. "sut/modules/contrib/{$name}": [
  4401. "type:drupal-module"
  4402. ],
  4403. "sut/profiles/contrib/{$name}": [
  4404. "type:drupal-profile"
  4405. ],
  4406. "sut/themes/contrib/{$name}": [
  4407. "type:drupal-theme"
  4408. ],
  4409. "sut/drush/contrib/{$name}": [
  4410. "type:drupal-drush"
  4411. ]
  4412. }
  4413. },
  4414. "autoload": {
  4415. "psr-4": {
  4416. "Drush\\": "src/"
  4417. }
  4418. },
  4419. "notification-url": "https://packagist.org/downloads/",
  4420. "license": [
  4421. "GPL-2.0-or-later"
  4422. ],
  4423. "authors": [
  4424. {
  4425. "name": "Moshe Weitzman",
  4426. "email": "weitzman@tejasa.com"
  4427. },
  4428. {
  4429. "name": "Owen Barton",
  4430. "email": "drupal@owenbarton.com"
  4431. },
  4432. {
  4433. "name": "Greg Anderson",
  4434. "email": "greg.1.anderson@greenknowe.org"
  4435. },
  4436. {
  4437. "name": "Jonathan Araña Cruz",
  4438. "email": "jonhattan@faita.net"
  4439. },
  4440. {
  4441. "name": "Jonathan Hedstrom",
  4442. "email": "jhedstrom@gmail.com"
  4443. },
  4444. {
  4445. "name": "Christopher Gervais",
  4446. "email": "chris@ergonlogic.com"
  4447. },
  4448. {
  4449. "name": "Dave Reid",
  4450. "email": "dave@davereid.net"
  4451. },
  4452. {
  4453. "name": "Damian Lee",
  4454. "email": "damiankloip@googlemail.com"
  4455. }
  4456. ],
  4457. "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.",
  4458. "homepage": "http://www.drush.org",
  4459. "support": {
  4460. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  4461. "issues": "https://github.com/drush-ops/drush/issues",
  4462. "security": "https://github.com/drush-ops/drush/security/advisories",
  4463. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  4464. "source": "https://github.com/drush-ops/drush/tree/12.4.3"
  4465. },
  4466. "funding": [
  4467. {
  4468. "url": "https://github.com/weitzman",
  4469. "type": "github"
  4470. }
  4471. ],
  4472. "time": "2023-11-16T22:57:24+00:00"
  4473. },
  4474. {
  4475. "name": "egulias/email-validator",
  4476. "version": "4.0.2",
  4477. "source": {
  4478. "type": "git",
  4479. "url": "https://github.com/egulias/EmailValidator.git",
  4480. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  4481. },
  4482. "dist": {
  4483. "type": "zip",
  4484. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  4485. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  4486. "shasum": ""
  4487. },
  4488. "require": {
  4489. "doctrine/lexer": "^2.0 || ^3.0",
  4490. "php": ">=8.1",
  4491. "symfony/polyfill-intl-idn": "^1.26"
  4492. },
  4493. "require-dev": {
  4494. "phpunit/phpunit": "^10.2",
  4495. "vimeo/psalm": "^5.12"
  4496. },
  4497. "suggest": {
  4498. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  4499. },
  4500. "type": "library",
  4501. "extra": {
  4502. "branch-alias": {
  4503. "dev-master": "4.0.x-dev"
  4504. }
  4505. },
  4506. "autoload": {
  4507. "psr-4": {
  4508. "Egulias\\EmailValidator\\": "src"
  4509. }
  4510. },
  4511. "notification-url": "https://packagist.org/downloads/",
  4512. "license": [
  4513. "MIT"
  4514. ],
  4515. "authors": [
  4516. {
  4517. "name": "Eduardo Gulias Davis"
  4518. }
  4519. ],
  4520. "description": "A library for validating emails against several RFCs",
  4521. "homepage": "https://github.com/egulias/EmailValidator",
  4522. "keywords": [
  4523. "email",
  4524. "emailvalidation",
  4525. "emailvalidator",
  4526. "validation",
  4527. "validator"
  4528. ],
  4529. "support": {
  4530. "issues": "https://github.com/egulias/EmailValidator/issues",
  4531. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  4532. },
  4533. "funding": [
  4534. {
  4535. "url": "https://github.com/egulias",
  4536. "type": "github"
  4537. }
  4538. ],
  4539. "time": "2023-10-06T06:47:41+00:00"
  4540. },
  4541. {
  4542. "name": "grasmash/expander",
  4543. "version": "3.0.0",
  4544. "source": {
  4545. "type": "git",
  4546. "url": "https://github.com/grasmash/expander.git",
  4547. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82"
  4548. },
  4549. "dist": {
  4550. "type": "zip",
  4551. "url": "https://api.github.com/repos/grasmash/expander/zipball/bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  4552. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  4553. "shasum": ""
  4554. },
  4555. "require": {
  4556. "dflydev/dot-access-data": "^3.0.0",
  4557. "php": ">=8.0",
  4558. "psr/log": "^2 | ^3"
  4559. },
  4560. "require-dev": {
  4561. "greg-1-anderson/composer-test-scenarios": "^1",
  4562. "php-coveralls/php-coveralls": "^2.5",
  4563. "phpunit/phpunit": "^9",
  4564. "squizlabs/php_codesniffer": "^3.3"
  4565. },
  4566. "type": "library",
  4567. "extra": {
  4568. "branch-alias": {
  4569. "dev-master": "1.x-dev"
  4570. }
  4571. },
  4572. "autoload": {
  4573. "psr-4": {
  4574. "Grasmash\\Expander\\": "src/"
  4575. }
  4576. },
  4577. "notification-url": "https://packagist.org/downloads/",
  4578. "license": [
  4579. "MIT"
  4580. ],
  4581. "authors": [
  4582. {
  4583. "name": "Matthew Grasmick"
  4584. }
  4585. ],
  4586. "description": "Expands internal property references in PHP arrays file.",
  4587. "support": {
  4588. "issues": "https://github.com/grasmash/expander/issues",
  4589. "source": "https://github.com/grasmash/expander/tree/3.0.0"
  4590. },
  4591. "time": "2022-05-10T13:14:49+00:00"
  4592. },
  4593. {
  4594. "name": "grasmash/yaml-cli",
  4595. "version": "3.1.0",
  4596. "source": {
  4597. "type": "git",
  4598. "url": "https://github.com/grasmash/yaml-cli.git",
  4599. "reference": "00f3fd775f6abbfacd44432f1999c3c3b02791f0"
  4600. },
  4601. "dist": {
  4602. "type": "zip",
  4603. "url": "https://api.github.com/repos/grasmash/yaml-cli/zipball/00f3fd775f6abbfacd44432f1999c3c3b02791f0",
  4604. "reference": "00f3fd775f6abbfacd44432f1999c3c3b02791f0",
  4605. "shasum": ""
  4606. },
  4607. "require": {
  4608. "dflydev/dot-access-data": "^3",
  4609. "php": ">=8.0",
  4610. "symfony/console": "^6",
  4611. "symfony/filesystem": "^6",
  4612. "symfony/yaml": "^6"
  4613. },
  4614. "require-dev": {
  4615. "php-coveralls/php-coveralls": "^2",
  4616. "phpunit/phpunit": "^9",
  4617. "squizlabs/php_codesniffer": "^3.0"
  4618. },
  4619. "bin": [
  4620. "bin/yaml-cli"
  4621. ],
  4622. "type": "library",
  4623. "extra": {
  4624. "branch-alias": {
  4625. "dev-master": "3.x-dev"
  4626. }
  4627. },
  4628. "autoload": {
  4629. "psr-4": {
  4630. "Grasmash\\YamlCli\\": "src/"
  4631. }
  4632. },
  4633. "notification-url": "https://packagist.org/downloads/",
  4634. "license": [
  4635. "MIT"
  4636. ],
  4637. "authors": [
  4638. {
  4639. "name": "Matthew Grasmick"
  4640. }
  4641. ],
  4642. "description": "A command line tool for reading and manipulating yaml files.",
  4643. "support": {
  4644. "issues": "https://github.com/grasmash/yaml-cli/issues",
  4645. "source": "https://github.com/grasmash/yaml-cli/tree/3.1.0"
  4646. },
  4647. "time": "2022-05-09T20:22:34+00:00"
  4648. },
  4649. {
  4650. "name": "guzzlehttp/guzzle",
  4651. "version": "7.8.1",
  4652. "source": {
  4653. "type": "git",
  4654. "url": "https://github.com/guzzle/guzzle.git",
  4655. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  4656. },
  4657. "dist": {
  4658. "type": "zip",
  4659. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  4660. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  4661. "shasum": ""
  4662. },
  4663. "require": {
  4664. "ext-json": "*",
  4665. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  4666. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  4667. "php": "^7.2.5 || ^8.0",
  4668. "psr/http-client": "^1.0",
  4669. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  4670. },
  4671. "provide": {
  4672. "psr/http-client-implementation": "1.0"
  4673. },
  4674. "require-dev": {
  4675. "bamarni/composer-bin-plugin": "^1.8.2",
  4676. "ext-curl": "*",
  4677. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  4678. "php-http/message-factory": "^1.1",
  4679. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  4680. "psr/log": "^1.1 || ^2.0 || ^3.0"
  4681. },
  4682. "suggest": {
  4683. "ext-curl": "Required for CURL handler support",
  4684. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  4685. "psr/log": "Required for using the Log middleware"
  4686. },
  4687. "type": "library",
  4688. "extra": {
  4689. "bamarni-bin": {
  4690. "bin-links": true,
  4691. "forward-command": false
  4692. }
  4693. },
  4694. "autoload": {
  4695. "files": [
  4696. "src/functions_include.php"
  4697. ],
  4698. "psr-4": {
  4699. "GuzzleHttp\\": "src/"
  4700. }
  4701. },
  4702. "notification-url": "https://packagist.org/downloads/",
  4703. "license": [
  4704. "MIT"
  4705. ],
  4706. "authors": [
  4707. {
  4708. "name": "Graham Campbell",
  4709. "email": "hello@gjcampbell.co.uk",
  4710. "homepage": "https://github.com/GrahamCampbell"
  4711. },
  4712. {
  4713. "name": "Michael Dowling",
  4714. "email": "mtdowling@gmail.com",
  4715. "homepage": "https://github.com/mtdowling"
  4716. },
  4717. {
  4718. "name": "Jeremy Lindblom",
  4719. "email": "jeremeamia@gmail.com",
  4720. "homepage": "https://github.com/jeremeamia"
  4721. },
  4722. {
  4723. "name": "George Mponos",
  4724. "email": "gmponos@gmail.com",
  4725. "homepage": "https://github.com/gmponos"
  4726. },
  4727. {
  4728. "name": "Tobias Nyholm",
  4729. "email": "tobias.nyholm@gmail.com",
  4730. "homepage": "https://github.com/Nyholm"
  4731. },
  4732. {
  4733. "name": "Márk Sági-Kazár",
  4734. "email": "mark.sagikazar@gmail.com",
  4735. "homepage": "https://github.com/sagikazarmark"
  4736. },
  4737. {
  4738. "name": "Tobias Schultze",
  4739. "email": "webmaster@tubo-world.de",
  4740. "homepage": "https://github.com/Tobion"
  4741. }
  4742. ],
  4743. "description": "Guzzle is a PHP HTTP client library",
  4744. "keywords": [
  4745. "client",
  4746. "curl",
  4747. "framework",
  4748. "http",
  4749. "http client",
  4750. "psr-18",
  4751. "psr-7",
  4752. "rest",
  4753. "web service"
  4754. ],
  4755. "support": {
  4756. "issues": "https://github.com/guzzle/guzzle/issues",
  4757. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  4758. },
  4759. "funding": [
  4760. {
  4761. "url": "https://github.com/GrahamCampbell",
  4762. "type": "github"
  4763. },
  4764. {
  4765. "url": "https://github.com/Nyholm",
  4766. "type": "github"
  4767. },
  4768. {
  4769. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  4770. "type": "tidelift"
  4771. }
  4772. ],
  4773. "time": "2023-12-03T20:35:24+00:00"
  4774. },
  4775. {
  4776. "name": "guzzlehttp/promises",
  4777. "version": "2.0.2",
  4778. "source": {
  4779. "type": "git",
  4780. "url": "https://github.com/guzzle/promises.git",
  4781. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  4782. },
  4783. "dist": {
  4784. "type": "zip",
  4785. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  4786. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  4787. "shasum": ""
  4788. },
  4789. "require": {
  4790. "php": "^7.2.5 || ^8.0"
  4791. },
  4792. "require-dev": {
  4793. "bamarni/composer-bin-plugin": "^1.8.2",
  4794. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  4795. },
  4796. "type": "library",
  4797. "extra": {
  4798. "bamarni-bin": {
  4799. "bin-links": true,
  4800. "forward-command": false
  4801. }
  4802. },
  4803. "autoload": {
  4804. "psr-4": {
  4805. "GuzzleHttp\\Promise\\": "src/"
  4806. }
  4807. },
  4808. "notification-url": "https://packagist.org/downloads/",
  4809. "license": [
  4810. "MIT"
  4811. ],
  4812. "authors": [
  4813. {
  4814. "name": "Graham Campbell",
  4815. "email": "hello@gjcampbell.co.uk",
  4816. "homepage": "https://github.com/GrahamCampbell"
  4817. },
  4818. {
  4819. "name": "Michael Dowling",
  4820. "email": "mtdowling@gmail.com",
  4821. "homepage": "https://github.com/mtdowling"
  4822. },
  4823. {
  4824. "name": "Tobias Nyholm",
  4825. "email": "tobias.nyholm@gmail.com",
  4826. "homepage": "https://github.com/Nyholm"
  4827. },
  4828. {
  4829. "name": "Tobias Schultze",
  4830. "email": "webmaster@tubo-world.de",
  4831. "homepage": "https://github.com/Tobion"
  4832. }
  4833. ],
  4834. "description": "Guzzle promises library",
  4835. "keywords": [
  4836. "promise"
  4837. ],
  4838. "support": {
  4839. "issues": "https://github.com/guzzle/promises/issues",
  4840. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  4841. },
  4842. "funding": [
  4843. {
  4844. "url": "https://github.com/GrahamCampbell",
  4845. "type": "github"
  4846. },
  4847. {
  4848. "url": "https://github.com/Nyholm",
  4849. "type": "github"
  4850. },
  4851. {
  4852. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  4853. "type": "tidelift"
  4854. }
  4855. ],
  4856. "time": "2023-12-03T20:19:20+00:00"
  4857. },
  4858. {
  4859. "name": "guzzlehttp/psr7",
  4860. "version": "2.6.2",
  4861. "source": {
  4862. "type": "git",
  4863. "url": "https://github.com/guzzle/psr7.git",
  4864. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  4865. },
  4866. "dist": {
  4867. "type": "zip",
  4868. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  4869. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  4870. "shasum": ""
  4871. },
  4872. "require": {
  4873. "php": "^7.2.5 || ^8.0",
  4874. "psr/http-factory": "^1.0",
  4875. "psr/http-message": "^1.1 || ^2.0",
  4876. "ralouphie/getallheaders": "^3.0"
  4877. },
  4878. "provide": {
  4879. "psr/http-factory-implementation": "1.0",
  4880. "psr/http-message-implementation": "1.0"
  4881. },
  4882. "require-dev": {
  4883. "bamarni/composer-bin-plugin": "^1.8.2",
  4884. "http-interop/http-factory-tests": "^0.9",
  4885. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  4886. },
  4887. "suggest": {
  4888. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  4889. },
  4890. "type": "library",
  4891. "extra": {
  4892. "bamarni-bin": {
  4893. "bin-links": true,
  4894. "forward-command": false
  4895. }
  4896. },
  4897. "autoload": {
  4898. "psr-4": {
  4899. "GuzzleHttp\\Psr7\\": "src/"
  4900. }
  4901. },
  4902. "notification-url": "https://packagist.org/downloads/",
  4903. "license": [
  4904. "MIT"
  4905. ],
  4906. "authors": [
  4907. {
  4908. "name": "Graham Campbell",
  4909. "email": "hello@gjcampbell.co.uk",
  4910. "homepage": "https://github.com/GrahamCampbell"
  4911. },
  4912. {
  4913. "name": "Michael Dowling",
  4914. "email": "mtdowling@gmail.com",
  4915. "homepage": "https://github.com/mtdowling"
  4916. },
  4917. {
  4918. "name": "George Mponos",
  4919. "email": "gmponos@gmail.com",
  4920. "homepage": "https://github.com/gmponos"
  4921. },
  4922. {
  4923. "name": "Tobias Nyholm",
  4924. "email": "tobias.nyholm@gmail.com",
  4925. "homepage": "https://github.com/Nyholm"
  4926. },
  4927. {
  4928. "name": "Márk Sági-Kazár",
  4929. "email": "mark.sagikazar@gmail.com",
  4930. "homepage": "https://github.com/sagikazarmark"
  4931. },
  4932. {
  4933. "name": "Tobias Schultze",
  4934. "email": "webmaster@tubo-world.de",
  4935. "homepage": "https://github.com/Tobion"
  4936. },
  4937. {
  4938. "name": "Márk Sági-Kazár",
  4939. "email": "mark.sagikazar@gmail.com",
  4940. "homepage": "https://sagikazarmark.hu"
  4941. }
  4942. ],
  4943. "description": "PSR-7 message implementation that also provides common utility methods",
  4944. "keywords": [
  4945. "http",
  4946. "message",
  4947. "psr-7",
  4948. "request",
  4949. "response",
  4950. "stream",
  4951. "uri",
  4952. "url"
  4953. ],
  4954. "support": {
  4955. "issues": "https://github.com/guzzle/psr7/issues",
  4956. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  4957. },
  4958. "funding": [
  4959. {
  4960. "url": "https://github.com/GrahamCampbell",
  4961. "type": "github"
  4962. },
  4963. {
  4964. "url": "https://github.com/Nyholm",
  4965. "type": "github"
  4966. },
  4967. {
  4968. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  4969. "type": "tidelift"
  4970. }
  4971. ],
  4972. "time": "2023-12-03T20:05:35+00:00"
  4973. },
  4974. {
  4975. "name": "league/container",
  4976. "version": "4.2.0",
  4977. "source": {
  4978. "type": "git",
  4979. "url": "https://github.com/thephpleague/container.git",
  4980. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab"
  4981. },
  4982. "dist": {
  4983. "type": "zip",
  4984. "url": "https://api.github.com/repos/thephpleague/container/zipball/375d13cb828649599ef5d48a339c4af7a26cd0ab",
  4985. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab",
  4986. "shasum": ""
  4987. },
  4988. "require": {
  4989. "php": "^7.2 || ^8.0",
  4990. "psr/container": "^1.1 || ^2.0"
  4991. },
  4992. "provide": {
  4993. "psr/container-implementation": "^1.0"
  4994. },
  4995. "replace": {
  4996. "orno/di": "~2.0"
  4997. },
  4998. "require-dev": {
  4999. "nette/php-generator": "^3.4",
  5000. "nikic/php-parser": "^4.10",
  5001. "phpstan/phpstan": "^0.12.47",
  5002. "phpunit/phpunit": "^8.5.17",
  5003. "roave/security-advisories": "dev-latest",
  5004. "scrutinizer/ocular": "^1.8",
  5005. "squizlabs/php_codesniffer": "^3.6"
  5006. },
  5007. "type": "library",
  5008. "extra": {
  5009. "branch-alias": {
  5010. "dev-master": "4.x-dev",
  5011. "dev-4.x": "4.x-dev",
  5012. "dev-3.x": "3.x-dev",
  5013. "dev-2.x": "2.x-dev",
  5014. "dev-1.x": "1.x-dev"
  5015. }
  5016. },
  5017. "autoload": {
  5018. "psr-4": {
  5019. "League\\Container\\": "src"
  5020. }
  5021. },
  5022. "notification-url": "https://packagist.org/downloads/",
  5023. "license": [
  5024. "MIT"
  5025. ],
  5026. "authors": [
  5027. {
  5028. "name": "Phil Bennett",
  5029. "email": "mail@philbennett.co.uk",
  5030. "role": "Developer"
  5031. }
  5032. ],
  5033. "description": "A fast and intuitive dependency injection container.",
  5034. "homepage": "https://github.com/thephpleague/container",
  5035. "keywords": [
  5036. "container",
  5037. "dependency",
  5038. "di",
  5039. "injection",
  5040. "league",
  5041. "provider",
  5042. "service"
  5043. ],
  5044. "support": {
  5045. "issues": "https://github.com/thephpleague/container/issues",
  5046. "source": "https://github.com/thephpleague/container/tree/4.2.0"
  5047. },
  5048. "funding": [
  5049. {
  5050. "url": "https://github.com/philipobenito",
  5051. "type": "github"
  5052. }
  5053. ],
  5054. "time": "2021-11-16T10:29:06+00:00"
  5055. },
  5056. {
  5057. "name": "masterminds/html5",
  5058. "version": "2.8.1",
  5059. "source": {
  5060. "type": "git",
  5061. "url": "https://github.com/Masterminds/html5-php.git",
  5062. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf"
  5063. },
  5064. "dist": {
  5065. "type": "zip",
  5066. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f47dcf3c70c584de14f21143c55d9939631bc6cf",
  5067. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf",
  5068. "shasum": ""
  5069. },
  5070. "require": {
  5071. "ext-dom": "*",
  5072. "php": ">=5.3.0"
  5073. },
  5074. "require-dev": {
  5075. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8"
  5076. },
  5077. "type": "library",
  5078. "extra": {
  5079. "branch-alias": {
  5080. "dev-master": "2.7-dev"
  5081. }
  5082. },
  5083. "autoload": {
  5084. "psr-4": {
  5085. "Masterminds\\": "src"
  5086. }
  5087. },
  5088. "notification-url": "https://packagist.org/downloads/",
  5089. "license": [
  5090. "MIT"
  5091. ],
  5092. "authors": [
  5093. {
  5094. "name": "Matt Butcher",
  5095. "email": "technosophos@gmail.com"
  5096. },
  5097. {
  5098. "name": "Matt Farina",
  5099. "email": "matt@mattfarina.com"
  5100. },
  5101. {
  5102. "name": "Asmir Mustafic",
  5103. "email": "goetas@gmail.com"
  5104. }
  5105. ],
  5106. "description": "An HTML5 parser and serializer.",
  5107. "homepage": "http://masterminds.github.io/html5-php",
  5108. "keywords": [
  5109. "HTML5",
  5110. "dom",
  5111. "html",
  5112. "parser",
  5113. "querypath",
  5114. "serializer",
  5115. "xml"
  5116. ],
  5117. "support": {
  5118. "issues": "https://github.com/Masterminds/html5-php/issues",
  5119. "source": "https://github.com/Masterminds/html5-php/tree/2.8.1"
  5120. },
  5121. "time": "2023-05-10T11:58:31+00:00"
  5122. },
  5123. {
  5124. "name": "mck89/peast",
  5125. "version": "v1.15.4",
  5126. "source": {
  5127. "type": "git",
  5128. "url": "https://github.com/mck89/peast.git",
  5129. "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18"
  5130. },
  5131. "dist": {
  5132. "type": "zip",
  5133. "url": "https://api.github.com/repos/mck89/peast/zipball/1df4dc28a6b5bb7ab117ab073c1712256e954e18",
  5134. "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18",
  5135. "shasum": ""
  5136. },
  5137. "require": {
  5138. "ext-mbstring": "*",
  5139. "php": ">=5.4.0"
  5140. },
  5141. "require-dev": {
  5142. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  5143. },
  5144. "type": "library",
  5145. "extra": {
  5146. "branch-alias": {
  5147. "dev-master": "1.15.4-dev"
  5148. }
  5149. },
  5150. "autoload": {
  5151. "psr-4": {
  5152. "Peast\\": "lib/Peast/"
  5153. }
  5154. },
  5155. "notification-url": "https://packagist.org/downloads/",
  5156. "license": [
  5157. "BSD-3-Clause"
  5158. ],
  5159. "authors": [
  5160. {
  5161. "name": "Marco Marchiò",
  5162. "email": "marco.mm89@gmail.com"
  5163. }
  5164. ],
  5165. "description": "Peast is PHP library that generates AST for JavaScript code",
  5166. "support": {
  5167. "issues": "https://github.com/mck89/peast/issues",
  5168. "source": "https://github.com/mck89/peast/tree/v1.15.4"
  5169. },
  5170. "time": "2023-08-12T08:29:29+00:00"
  5171. },
  5172. {
  5173. "name": "nikic/php-parser",
  5174. "version": "v5.0.1",
  5175. "source": {
  5176. "type": "git",
  5177. "url": "https://github.com/nikic/PHP-Parser.git",
  5178. "reference": "2218c2252c874a4624ab2f613d86ac32d227bc69"
  5179. },
  5180. "dist": {
  5181. "type": "zip",
  5182. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/2218c2252c874a4624ab2f613d86ac32d227bc69",
  5183. "reference": "2218c2252c874a4624ab2f613d86ac32d227bc69",
  5184. "shasum": ""
  5185. },
  5186. "require": {
  5187. "ext-ctype": "*",
  5188. "ext-json": "*",
  5189. "ext-tokenizer": "*",
  5190. "php": ">=7.4"
  5191. },
  5192. "require-dev": {
  5193. "ircmaxell/php-yacc": "^0.0.7",
  5194. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5195. },
  5196. "bin": [
  5197. "bin/php-parse"
  5198. ],
  5199. "type": "library",
  5200. "extra": {
  5201. "branch-alias": {
  5202. "dev-master": "5.0-dev"
  5203. }
  5204. },
  5205. "autoload": {
  5206. "psr-4": {
  5207. "PhpParser\\": "lib/PhpParser"
  5208. }
  5209. },
  5210. "notification-url": "https://packagist.org/downloads/",
  5211. "license": [
  5212. "BSD-3-Clause"
  5213. ],
  5214. "authors": [
  5215. {
  5216. "name": "Nikita Popov"
  5217. }
  5218. ],
  5219. "description": "A PHP parser written in PHP",
  5220. "keywords": [
  5221. "parser",
  5222. "php"
  5223. ],
  5224. "support": {
  5225. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5226. "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.1"
  5227. },
  5228. "time": "2024-02-21T19:24:10+00:00"
  5229. },
  5230. {
  5231. "name": "pear/archive_tar",
  5232. "version": "1.4.14",
  5233. "source": {
  5234. "type": "git",
  5235. "url": "https://github.com/pear/Archive_Tar.git",
  5236. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  5237. },
  5238. "dist": {
  5239. "type": "zip",
  5240. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  5241. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  5242. "shasum": ""
  5243. },
  5244. "require": {
  5245. "pear/pear-core-minimal": "^1.10.0alpha2",
  5246. "php": ">=5.2.0"
  5247. },
  5248. "require-dev": {
  5249. "phpunit/phpunit": "*"
  5250. },
  5251. "suggest": {
  5252. "ext-bz2": "Bz2 compression support.",
  5253. "ext-xz": "Lzma2 compression support.",
  5254. "ext-zlib": "Gzip compression support."
  5255. },
  5256. "type": "library",
  5257. "extra": {
  5258. "branch-alias": {
  5259. "dev-master": "1.4.x-dev"
  5260. }
  5261. },
  5262. "autoload": {
  5263. "psr-0": {
  5264. "Archive_Tar": ""
  5265. }
  5266. },
  5267. "notification-url": "https://packagist.org/downloads/",
  5268. "include-path": [
  5269. "./"
  5270. ],
  5271. "license": [
  5272. "BSD-3-Clause"
  5273. ],
  5274. "authors": [
  5275. {
  5276. "name": "Vincent Blavet",
  5277. "email": "vincent@phpconcept.net"
  5278. },
  5279. {
  5280. "name": "Greg Beaver",
  5281. "email": "greg@chiaraquartet.net"
  5282. },
  5283. {
  5284. "name": "Michiel Rook",
  5285. "email": "mrook@php.net"
  5286. }
  5287. ],
  5288. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  5289. "homepage": "https://github.com/pear/Archive_Tar",
  5290. "keywords": [
  5291. "archive",
  5292. "tar"
  5293. ],
  5294. "support": {
  5295. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  5296. "source": "https://github.com/pear/Archive_Tar"
  5297. },
  5298. "funding": [
  5299. {
  5300. "url": "https://github.com/mrook",
  5301. "type": "github"
  5302. },
  5303. {
  5304. "url": "https://www.patreon.com/michielrook",
  5305. "type": "patreon"
  5306. }
  5307. ],
  5308. "time": "2021-07-20T13:53:39+00:00"
  5309. },
  5310. {
  5311. "name": "pear/console_getopt",
  5312. "version": "v1.4.3",
  5313. "source": {
  5314. "type": "git",
  5315. "url": "https://github.com/pear/Console_Getopt.git",
  5316. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  5317. },
  5318. "dist": {
  5319. "type": "zip",
  5320. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  5321. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  5322. "shasum": ""
  5323. },
  5324. "type": "library",
  5325. "autoload": {
  5326. "psr-0": {
  5327. "Console": "./"
  5328. }
  5329. },
  5330. "notification-url": "https://packagist.org/downloads/",
  5331. "include-path": [
  5332. "./"
  5333. ],
  5334. "license": [
  5335. "BSD-2-Clause"
  5336. ],
  5337. "authors": [
  5338. {
  5339. "name": "Andrei Zmievski",
  5340. "email": "andrei@php.net",
  5341. "role": "Lead"
  5342. },
  5343. {
  5344. "name": "Stig Bakken",
  5345. "email": "stig@php.net",
  5346. "role": "Developer"
  5347. },
  5348. {
  5349. "name": "Greg Beaver",
  5350. "email": "cellog@php.net",
  5351. "role": "Helper"
  5352. }
  5353. ],
  5354. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  5355. "support": {
  5356. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  5357. "source": "https://github.com/pear/Console_Getopt"
  5358. },
  5359. "time": "2019-11-20T18:27:48+00:00"
  5360. },
  5361. {
  5362. "name": "pear/pear-core-minimal",
  5363. "version": "v1.10.14",
  5364. "source": {
  5365. "type": "git",
  5366. "url": "https://github.com/pear/pear-core-minimal.git",
  5367. "reference": "a86fc145edb5caedbf96527214ce3cadc9de4a32"
  5368. },
  5369. "dist": {
  5370. "type": "zip",
  5371. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/a86fc145edb5caedbf96527214ce3cadc9de4a32",
  5372. "reference": "a86fc145edb5caedbf96527214ce3cadc9de4a32",
  5373. "shasum": ""
  5374. },
  5375. "require": {
  5376. "pear/console_getopt": "~1.4",
  5377. "pear/pear_exception": "~1.0",
  5378. "php": ">=5.4"
  5379. },
  5380. "replace": {
  5381. "rsky/pear-core-min": "self.version"
  5382. },
  5383. "type": "library",
  5384. "autoload": {
  5385. "psr-0": {
  5386. "": "src/"
  5387. }
  5388. },
  5389. "notification-url": "https://packagist.org/downloads/",
  5390. "include-path": [
  5391. "src/"
  5392. ],
  5393. "license": [
  5394. "BSD-3-Clause"
  5395. ],
  5396. "authors": [
  5397. {
  5398. "name": "Christian Weiske",
  5399. "email": "cweiske@php.net",
  5400. "role": "Lead"
  5401. }
  5402. ],
  5403. "description": "Minimal set of PEAR core files to be used as composer dependency",
  5404. "support": {
  5405. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  5406. "source": "https://github.com/pear/pear-core-minimal"
  5407. },
  5408. "time": "2023-11-26T16:15:38+00:00"
  5409. },
  5410. {
  5411. "name": "pear/pear_exception",
  5412. "version": "v1.0.2",
  5413. "source": {
  5414. "type": "git",
  5415. "url": "https://github.com/pear/PEAR_Exception.git",
  5416. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  5417. },
  5418. "dist": {
  5419. "type": "zip",
  5420. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  5421. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  5422. "shasum": ""
  5423. },
  5424. "require": {
  5425. "php": ">=5.2.0"
  5426. },
  5427. "require-dev": {
  5428. "phpunit/phpunit": "<9"
  5429. },
  5430. "type": "class",
  5431. "extra": {
  5432. "branch-alias": {
  5433. "dev-master": "1.0.x-dev"
  5434. }
  5435. },
  5436. "autoload": {
  5437. "classmap": [
  5438. "PEAR/"
  5439. ]
  5440. },
  5441. "notification-url": "https://packagist.org/downloads/",
  5442. "include-path": [
  5443. "."
  5444. ],
  5445. "license": [
  5446. "BSD-2-Clause"
  5447. ],
  5448. "authors": [
  5449. {
  5450. "name": "Helgi Thormar",
  5451. "email": "dufuz@php.net"
  5452. },
  5453. {
  5454. "name": "Greg Beaver",
  5455. "email": "cellog@php.net"
  5456. }
  5457. ],
  5458. "description": "The PEAR Exception base class.",
  5459. "homepage": "https://github.com/pear/PEAR_Exception",
  5460. "keywords": [
  5461. "exception"
  5462. ],
  5463. "support": {
  5464. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  5465. "source": "https://github.com/pear/PEAR_Exception"
  5466. },
  5467. "time": "2021-03-21T15:43:46+00:00"
  5468. },
  5469. {
  5470. "name": "phootwork/collection",
  5471. "version": "v3.2.2",
  5472. "source": {
  5473. "type": "git",
  5474. "url": "https://github.com/phootwork/collection.git",
  5475. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
  5476. },
  5477. "dist": {
  5478. "type": "zip",
  5479. "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
  5480. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
  5481. "shasum": ""
  5482. },
  5483. "require": {
  5484. "phootwork/lang": "^3.0",
  5485. "php": ">=8.0"
  5486. },
  5487. "type": "library",
  5488. "autoload": {
  5489. "psr-4": {
  5490. "phootwork\\collection\\": ""
  5491. }
  5492. },
  5493. "notification-url": "https://packagist.org/downloads/",
  5494. "license": [
  5495. "MIT"
  5496. ],
  5497. "authors": [
  5498. {
  5499. "name": "Thomas Gossmann",
  5500. "homepage": "http://gos.si"
  5501. }
  5502. ],
  5503. "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
  5504. "homepage": "https://phootwork.github.io/collection/",
  5505. "keywords": [
  5506. "Array object",
  5507. "Text object",
  5508. "collection",
  5509. "collections",
  5510. "json",
  5511. "list",
  5512. "map",
  5513. "queue",
  5514. "set",
  5515. "stack",
  5516. "xml"
  5517. ],
  5518. "support": {
  5519. "issues": "https://github.com/phootwork/phootwork/issues",
  5520. "source": "https://github.com/phootwork/collection/tree/v3.2.2"
  5521. },
  5522. "time": "2022-08-27T12:51:24+00:00"
  5523. },
  5524. {
  5525. "name": "phootwork/lang",
  5526. "version": "v3.2.2",
  5527. "source": {
  5528. "type": "git",
  5529. "url": "https://github.com/phootwork/lang.git",
  5530. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597"
  5531. },
  5532. "dist": {
  5533. "type": "zip",
  5534. "url": "https://api.github.com/repos/phootwork/lang/zipball/baaf154ae7d521ebeee5e89105f5b12b0f234597",
  5535. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597",
  5536. "shasum": ""
  5537. },
  5538. "require": {
  5539. "php": ">=8.0",
  5540. "symfony/polyfill-mbstring": "^1.12",
  5541. "symfony/polyfill-php81": "^1.22"
  5542. },
  5543. "type": "library",
  5544. "autoload": {
  5545. "psr-4": {
  5546. "phootwork\\lang\\": ""
  5547. }
  5548. },
  5549. "notification-url": "https://packagist.org/downloads/",
  5550. "license": [
  5551. "MIT"
  5552. ],
  5553. "authors": [
  5554. {
  5555. "name": "Thomas Gossmann",
  5556. "homepage": "http://gos.si"
  5557. }
  5558. ],
  5559. "description": "Missing PHP language constructs",
  5560. "homepage": "https://phootwork.github.io/lang/",
  5561. "keywords": [
  5562. "array",
  5563. "comparator",
  5564. "comparison",
  5565. "string"
  5566. ],
  5567. "support": {
  5568. "issues": "https://github.com/phootwork/phootwork/issues",
  5569. "source": "https://github.com/phootwork/lang/tree/v3.2.2"
  5570. },
  5571. "time": "2023-05-26T05:37:59+00:00"
  5572. },
  5573. {
  5574. "name": "phpowermove/docblock",
  5575. "version": "v4.0",
  5576. "source": {
  5577. "type": "git",
  5578. "url": "https://github.com/phpowermove/docblock.git",
  5579. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
  5580. },
  5581. "dist": {
  5582. "type": "zip",
  5583. "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  5584. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  5585. "shasum": ""
  5586. },
  5587. "require": {
  5588. "phootwork/collection": "^3.0",
  5589. "phootwork/lang": "^3.0",
  5590. "php": ">=8.0"
  5591. },
  5592. "require-dev": {
  5593. "phootwork/php-cs-fixer-config": "^0.4",
  5594. "phpunit/phpunit": "^9.0",
  5595. "psalm/phar": "^4.3"
  5596. },
  5597. "type": "library",
  5598. "autoload": {
  5599. "psr-4": {
  5600. "phpowermove\\docblock\\": "src/"
  5601. }
  5602. },
  5603. "notification-url": "https://packagist.org/downloads/",
  5604. "license": [
  5605. "MIT"
  5606. ],
  5607. "authors": [
  5608. {
  5609. "name": "Thomas Gossmann",
  5610. "homepage": "http://gos.si"
  5611. }
  5612. ],
  5613. "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
  5614. "keywords": [
  5615. "docblock",
  5616. "generator",
  5617. "parser"
  5618. ],
  5619. "support": {
  5620. "issues": "https://github.com/phpowermove/docblock/issues",
  5621. "source": "https://github.com/phpowermove/docblock/tree/v4.0"
  5622. },
  5623. "time": "2021-09-22T16:57:06+00:00"
  5624. },
  5625. {
  5626. "name": "psr/cache",
  5627. "version": "3.0.0",
  5628. "source": {
  5629. "type": "git",
  5630. "url": "https://github.com/php-fig/cache.git",
  5631. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5632. },
  5633. "dist": {
  5634. "type": "zip",
  5635. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5636. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5637. "shasum": ""
  5638. },
  5639. "require": {
  5640. "php": ">=8.0.0"
  5641. },
  5642. "type": "library",
  5643. "extra": {
  5644. "branch-alias": {
  5645. "dev-master": "1.0.x-dev"
  5646. }
  5647. },
  5648. "autoload": {
  5649. "psr-4": {
  5650. "Psr\\Cache\\": "src/"
  5651. }
  5652. },
  5653. "notification-url": "https://packagist.org/downloads/",
  5654. "license": [
  5655. "MIT"
  5656. ],
  5657. "authors": [
  5658. {
  5659. "name": "PHP-FIG",
  5660. "homepage": "https://www.php-fig.org/"
  5661. }
  5662. ],
  5663. "description": "Common interface for caching libraries",
  5664. "keywords": [
  5665. "cache",
  5666. "psr",
  5667. "psr-6"
  5668. ],
  5669. "support": {
  5670. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5671. },
  5672. "time": "2021-02-03T23:26:27+00:00"
  5673. },
  5674. {
  5675. "name": "psr/container",
  5676. "version": "2.0.2",
  5677. "source": {
  5678. "type": "git",
  5679. "url": "https://github.com/php-fig/container.git",
  5680. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5681. },
  5682. "dist": {
  5683. "type": "zip",
  5684. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5685. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5686. "shasum": ""
  5687. },
  5688. "require": {
  5689. "php": ">=7.4.0"
  5690. },
  5691. "type": "library",
  5692. "extra": {
  5693. "branch-alias": {
  5694. "dev-master": "2.0.x-dev"
  5695. }
  5696. },
  5697. "autoload": {
  5698. "psr-4": {
  5699. "Psr\\Container\\": "src/"
  5700. }
  5701. },
  5702. "notification-url": "https://packagist.org/downloads/",
  5703. "license": [
  5704. "MIT"
  5705. ],
  5706. "authors": [
  5707. {
  5708. "name": "PHP-FIG",
  5709. "homepage": "https://www.php-fig.org/"
  5710. }
  5711. ],
  5712. "description": "Common Container Interface (PHP FIG PSR-11)",
  5713. "homepage": "https://github.com/php-fig/container",
  5714. "keywords": [
  5715. "PSR-11",
  5716. "container",
  5717. "container-interface",
  5718. "container-interop",
  5719. "psr"
  5720. ],
  5721. "support": {
  5722. "issues": "https://github.com/php-fig/container/issues",
  5723. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5724. },
  5725. "time": "2021-11-05T16:47:00+00:00"
  5726. },
  5727. {
  5728. "name": "psr/event-dispatcher",
  5729. "version": "1.0.0",
  5730. "source": {
  5731. "type": "git",
  5732. "url": "https://github.com/php-fig/event-dispatcher.git",
  5733. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5734. },
  5735. "dist": {
  5736. "type": "zip",
  5737. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5738. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5739. "shasum": ""
  5740. },
  5741. "require": {
  5742. "php": ">=7.2.0"
  5743. },
  5744. "type": "library",
  5745. "extra": {
  5746. "branch-alias": {
  5747. "dev-master": "1.0.x-dev"
  5748. }
  5749. },
  5750. "autoload": {
  5751. "psr-4": {
  5752. "Psr\\EventDispatcher\\": "src/"
  5753. }
  5754. },
  5755. "notification-url": "https://packagist.org/downloads/",
  5756. "license": [
  5757. "MIT"
  5758. ],
  5759. "authors": [
  5760. {
  5761. "name": "PHP-FIG",
  5762. "homepage": "http://www.php-fig.org/"
  5763. }
  5764. ],
  5765. "description": "Standard interfaces for event handling.",
  5766. "keywords": [
  5767. "events",
  5768. "psr",
  5769. "psr-14"
  5770. ],
  5771. "support": {
  5772. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5773. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5774. },
  5775. "time": "2019-01-08T18:20:26+00:00"
  5776. },
  5777. {
  5778. "name": "psr/http-client",
  5779. "version": "1.0.3",
  5780. "source": {
  5781. "type": "git",
  5782. "url": "https://github.com/php-fig/http-client.git",
  5783. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5784. },
  5785. "dist": {
  5786. "type": "zip",
  5787. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5788. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5789. "shasum": ""
  5790. },
  5791. "require": {
  5792. "php": "^7.0 || ^8.0",
  5793. "psr/http-message": "^1.0 || ^2.0"
  5794. },
  5795. "type": "library",
  5796. "extra": {
  5797. "branch-alias": {
  5798. "dev-master": "1.0.x-dev"
  5799. }
  5800. },
  5801. "autoload": {
  5802. "psr-4": {
  5803. "Psr\\Http\\Client\\": "src/"
  5804. }
  5805. },
  5806. "notification-url": "https://packagist.org/downloads/",
  5807. "license": [
  5808. "MIT"
  5809. ],
  5810. "authors": [
  5811. {
  5812. "name": "PHP-FIG",
  5813. "homepage": "https://www.php-fig.org/"
  5814. }
  5815. ],
  5816. "description": "Common interface for HTTP clients",
  5817. "homepage": "https://github.com/php-fig/http-client",
  5818. "keywords": [
  5819. "http",
  5820. "http-client",
  5821. "psr",
  5822. "psr-18"
  5823. ],
  5824. "support": {
  5825. "source": "https://github.com/php-fig/http-client"
  5826. },
  5827. "time": "2023-09-23T14:17:50+00:00"
  5828. },
  5829. {
  5830. "name": "psr/http-factory",
  5831. "version": "1.0.2",
  5832. "source": {
  5833. "type": "git",
  5834. "url": "https://github.com/php-fig/http-factory.git",
  5835. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  5836. },
  5837. "dist": {
  5838. "type": "zip",
  5839. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  5840. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  5841. "shasum": ""
  5842. },
  5843. "require": {
  5844. "php": ">=7.0.0",
  5845. "psr/http-message": "^1.0 || ^2.0"
  5846. },
  5847. "type": "library",
  5848. "extra": {
  5849. "branch-alias": {
  5850. "dev-master": "1.0.x-dev"
  5851. }
  5852. },
  5853. "autoload": {
  5854. "psr-4": {
  5855. "Psr\\Http\\Message\\": "src/"
  5856. }
  5857. },
  5858. "notification-url": "https://packagist.org/downloads/",
  5859. "license": [
  5860. "MIT"
  5861. ],
  5862. "authors": [
  5863. {
  5864. "name": "PHP-FIG",
  5865. "homepage": "https://www.php-fig.org/"
  5866. }
  5867. ],
  5868. "description": "Common interfaces for PSR-7 HTTP message factories",
  5869. "keywords": [
  5870. "factory",
  5871. "http",
  5872. "message",
  5873. "psr",
  5874. "psr-17",
  5875. "psr-7",
  5876. "request",
  5877. "response"
  5878. ],
  5879. "support": {
  5880. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  5881. },
  5882. "time": "2023-04-10T20:10:41+00:00"
  5883. },
  5884. {
  5885. "name": "psr/http-message",
  5886. "version": "2.0",
  5887. "source": {
  5888. "type": "git",
  5889. "url": "https://github.com/php-fig/http-message.git",
  5890. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5891. },
  5892. "dist": {
  5893. "type": "zip",
  5894. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5895. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5896. "shasum": ""
  5897. },
  5898. "require": {
  5899. "php": "^7.2 || ^8.0"
  5900. },
  5901. "type": "library",
  5902. "extra": {
  5903. "branch-alias": {
  5904. "dev-master": "2.0.x-dev"
  5905. }
  5906. },
  5907. "autoload": {
  5908. "psr-4": {
  5909. "Psr\\Http\\Message\\": "src/"
  5910. }
  5911. },
  5912. "notification-url": "https://packagist.org/downloads/",
  5913. "license": [
  5914. "MIT"
  5915. ],
  5916. "authors": [
  5917. {
  5918. "name": "PHP-FIG",
  5919. "homepage": "https://www.php-fig.org/"
  5920. }
  5921. ],
  5922. "description": "Common interface for HTTP messages",
  5923. "homepage": "https://github.com/php-fig/http-message",
  5924. "keywords": [
  5925. "http",
  5926. "http-message",
  5927. "psr",
  5928. "psr-7",
  5929. "request",
  5930. "response"
  5931. ],
  5932. "support": {
  5933. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5934. },
  5935. "time": "2023-04-04T09:54:51+00:00"
  5936. },
  5937. {
  5938. "name": "psr/log",
  5939. "version": "3.0.0",
  5940. "source": {
  5941. "type": "git",
  5942. "url": "https://github.com/php-fig/log.git",
  5943. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  5944. },
  5945. "dist": {
  5946. "type": "zip",
  5947. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5948. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5949. "shasum": ""
  5950. },
  5951. "require": {
  5952. "php": ">=8.0.0"
  5953. },
  5954. "type": "library",
  5955. "extra": {
  5956. "branch-alias": {
  5957. "dev-master": "3.x-dev"
  5958. }
  5959. },
  5960. "autoload": {
  5961. "psr-4": {
  5962. "Psr\\Log\\": "src"
  5963. }
  5964. },
  5965. "notification-url": "https://packagist.org/downloads/",
  5966. "license": [
  5967. "MIT"
  5968. ],
  5969. "authors": [
  5970. {
  5971. "name": "PHP-FIG",
  5972. "homepage": "https://www.php-fig.org/"
  5973. }
  5974. ],
  5975. "description": "Common interface for logging libraries",
  5976. "homepage": "https://github.com/php-fig/log",
  5977. "keywords": [
  5978. "log",
  5979. "psr",
  5980. "psr-3"
  5981. ],
  5982. "support": {
  5983. "source": "https://github.com/php-fig/log/tree/3.0.0"
  5984. },
  5985. "time": "2021-07-14T16:46:02+00:00"
  5986. },
  5987. {
  5988. "name": "psy/psysh",
  5989. "version": "v0.12.0",
  5990. "source": {
  5991. "type": "git",
  5992. "url": "https://github.com/bobthecow/psysh.git",
  5993. "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d"
  5994. },
  5995. "dist": {
  5996. "type": "zip",
  5997. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/750bf031a48fd07c673dbe3f11f72362ea306d0d",
  5998. "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d",
  5999. "shasum": ""
  6000. },
  6001. "require": {
  6002. "ext-json": "*",
  6003. "ext-tokenizer": "*",
  6004. "nikic/php-parser": "^5.0 || ^4.0",
  6005. "php": "^8.0 || ^7.4",
  6006. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  6007. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  6008. },
  6009. "conflict": {
  6010. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  6011. },
  6012. "require-dev": {
  6013. "bamarni/composer-bin-plugin": "^1.2"
  6014. },
  6015. "suggest": {
  6016. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  6017. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  6018. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  6019. },
  6020. "bin": [
  6021. "bin/psysh"
  6022. ],
  6023. "type": "library",
  6024. "extra": {
  6025. "branch-alias": {
  6026. "dev-main": "0.12.x-dev"
  6027. },
  6028. "bamarni-bin": {
  6029. "bin-links": false,
  6030. "forward-command": false
  6031. }
  6032. },
  6033. "autoload": {
  6034. "files": [
  6035. "src/functions.php"
  6036. ],
  6037. "psr-4": {
  6038. "Psy\\": "src/"
  6039. }
  6040. },
  6041. "notification-url": "https://packagist.org/downloads/",
  6042. "license": [
  6043. "MIT"
  6044. ],
  6045. "authors": [
  6046. {
  6047. "name": "Justin Hileman",
  6048. "email": "justin@justinhileman.info",
  6049. "homepage": "http://justinhileman.com"
  6050. }
  6051. ],
  6052. "description": "An interactive shell for modern PHP.",
  6053. "homepage": "http://psysh.org",
  6054. "keywords": [
  6055. "REPL",
  6056. "console",
  6057. "interactive",
  6058. "shell"
  6059. ],
  6060. "support": {
  6061. "issues": "https://github.com/bobthecow/psysh/issues",
  6062. "source": "https://github.com/bobthecow/psysh/tree/v0.12.0"
  6063. },
  6064. "time": "2023-12-20T15:28:09+00:00"
  6065. },
  6066. {
  6067. "name": "ralouphie/getallheaders",
  6068. "version": "3.0.3",
  6069. "source": {
  6070. "type": "git",
  6071. "url": "https://github.com/ralouphie/getallheaders.git",
  6072. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6073. },
  6074. "dist": {
  6075. "type": "zip",
  6076. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6077. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6078. "shasum": ""
  6079. },
  6080. "require": {
  6081. "php": ">=5.6"
  6082. },
  6083. "require-dev": {
  6084. "php-coveralls/php-coveralls": "^2.1",
  6085. "phpunit/phpunit": "^5 || ^6.5"
  6086. },
  6087. "type": "library",
  6088. "autoload": {
  6089. "files": [
  6090. "src/getallheaders.php"
  6091. ]
  6092. },
  6093. "notification-url": "https://packagist.org/downloads/",
  6094. "license": [
  6095. "MIT"
  6096. ],
  6097. "authors": [
  6098. {
  6099. "name": "Ralph Khattar",
  6100. "email": "ralph.khattar@gmail.com"
  6101. }
  6102. ],
  6103. "description": "A polyfill for getallheaders.",
  6104. "support": {
  6105. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6106. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6107. },
  6108. "time": "2019-03-08T08:55:37+00:00"
  6109. },
  6110. {
  6111. "name": "sebastian/diff",
  6112. "version": "4.0.6",
  6113. "source": {
  6114. "type": "git",
  6115. "url": "https://github.com/sebastianbergmann/diff.git",
  6116. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  6117. },
  6118. "dist": {
  6119. "type": "zip",
  6120. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  6121. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  6122. "shasum": ""
  6123. },
  6124. "require": {
  6125. "php": ">=7.3"
  6126. },
  6127. "require-dev": {
  6128. "phpunit/phpunit": "^9.3",
  6129. "symfony/process": "^4.2 || ^5"
  6130. },
  6131. "type": "library",
  6132. "extra": {
  6133. "branch-alias": {
  6134. "dev-master": "4.0-dev"
  6135. }
  6136. },
  6137. "autoload": {
  6138. "classmap": [
  6139. "src/"
  6140. ]
  6141. },
  6142. "notification-url": "https://packagist.org/downloads/",
  6143. "license": [
  6144. "BSD-3-Clause"
  6145. ],
  6146. "authors": [
  6147. {
  6148. "name": "Sebastian Bergmann",
  6149. "email": "sebastian@phpunit.de"
  6150. },
  6151. {
  6152. "name": "Kore Nordmann",
  6153. "email": "mail@kore-nordmann.de"
  6154. }
  6155. ],
  6156. "description": "Diff implementation",
  6157. "homepage": "https://github.com/sebastianbergmann/diff",
  6158. "keywords": [
  6159. "diff",
  6160. "udiff",
  6161. "unidiff",
  6162. "unified diff"
  6163. ],
  6164. "support": {
  6165. "issues": "https://github.com/sebastianbergmann/diff/issues",
  6166. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  6167. },
  6168. "funding": [
  6169. {
  6170. "url": "https://github.com/sebastianbergmann",
  6171. "type": "github"
  6172. }
  6173. ],
  6174. "time": "2024-03-02T06:30:58+00:00"
  6175. },
  6176. {
  6177. "name": "symfony/console",
  6178. "version": "v6.4.4",
  6179. "source": {
  6180. "type": "git",
  6181. "url": "https://github.com/symfony/console.git",
  6182. "reference": "0d9e4eb5ad413075624378f474c4167ea202de78"
  6183. },
  6184. "dist": {
  6185. "type": "zip",
  6186. "url": "https://api.github.com/repos/symfony/console/zipball/0d9e4eb5ad413075624378f474c4167ea202de78",
  6187. "reference": "0d9e4eb5ad413075624378f474c4167ea202de78",
  6188. "shasum": ""
  6189. },
  6190. "require": {
  6191. "php": ">=8.1",
  6192. "symfony/deprecation-contracts": "^2.5|^3",
  6193. "symfony/polyfill-mbstring": "~1.0",
  6194. "symfony/service-contracts": "^2.5|^3",
  6195. "symfony/string": "^5.4|^6.0|^7.0"
  6196. },
  6197. "conflict": {
  6198. "symfony/dependency-injection": "<5.4",
  6199. "symfony/dotenv": "<5.4",
  6200. "symfony/event-dispatcher": "<5.4",
  6201. "symfony/lock": "<5.4",
  6202. "symfony/process": "<5.4"
  6203. },
  6204. "provide": {
  6205. "psr/log-implementation": "1.0|2.0|3.0"
  6206. },
  6207. "require-dev": {
  6208. "psr/log": "^1|^2|^3",
  6209. "symfony/config": "^5.4|^6.0|^7.0",
  6210. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6211. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6212. "symfony/http-foundation": "^6.4|^7.0",
  6213. "symfony/http-kernel": "^6.4|^7.0",
  6214. "symfony/lock": "^5.4|^6.0|^7.0",
  6215. "symfony/messenger": "^5.4|^6.0|^7.0",
  6216. "symfony/process": "^5.4|^6.0|^7.0",
  6217. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6218. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6219. },
  6220. "type": "library",
  6221. "autoload": {
  6222. "psr-4": {
  6223. "Symfony\\Component\\Console\\": ""
  6224. },
  6225. "exclude-from-classmap": [
  6226. "/Tests/"
  6227. ]
  6228. },
  6229. "notification-url": "https://packagist.org/downloads/",
  6230. "license": [
  6231. "MIT"
  6232. ],
  6233. "authors": [
  6234. {
  6235. "name": "Fabien Potencier",
  6236. "email": "fabien@symfony.com"
  6237. },
  6238. {
  6239. "name": "Symfony Community",
  6240. "homepage": "https://symfony.com/contributors"
  6241. }
  6242. ],
  6243. "description": "Eases the creation of beautiful and testable command line interfaces",
  6244. "homepage": "https://symfony.com",
  6245. "keywords": [
  6246. "cli",
  6247. "command-line",
  6248. "console",
  6249. "terminal"
  6250. ],
  6251. "support": {
  6252. "source": "https://github.com/symfony/console/tree/v6.4.4"
  6253. },
  6254. "funding": [
  6255. {
  6256. "url": "https://symfony.com/sponsor",
  6257. "type": "custom"
  6258. },
  6259. {
  6260. "url": "https://github.com/fabpot",
  6261. "type": "github"
  6262. },
  6263. {
  6264. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6265. "type": "tidelift"
  6266. }
  6267. ],
  6268. "time": "2024-02-22T20:27:10+00:00"
  6269. },
  6270. {
  6271. "name": "symfony/dependency-injection",
  6272. "version": "v6.4.4",
  6273. "source": {
  6274. "type": "git",
  6275. "url": "https://github.com/symfony/dependency-injection.git",
  6276. "reference": "6236e5e843cb763e9d0f74245678b994afea5363"
  6277. },
  6278. "dist": {
  6279. "type": "zip",
  6280. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/6236e5e843cb763e9d0f74245678b994afea5363",
  6281. "reference": "6236e5e843cb763e9d0f74245678b994afea5363",
  6282. "shasum": ""
  6283. },
  6284. "require": {
  6285. "php": ">=8.1",
  6286. "psr/container": "^1.1|^2.0",
  6287. "symfony/deprecation-contracts": "^2.5|^3",
  6288. "symfony/service-contracts": "^2.5|^3.0",
  6289. "symfony/var-exporter": "^6.2.10|^7.0"
  6290. },
  6291. "conflict": {
  6292. "ext-psr": "<1.1|>=2",
  6293. "symfony/config": "<6.1",
  6294. "symfony/finder": "<5.4",
  6295. "symfony/proxy-manager-bridge": "<6.3",
  6296. "symfony/yaml": "<5.4"
  6297. },
  6298. "provide": {
  6299. "psr/container-implementation": "1.1|2.0",
  6300. "symfony/service-implementation": "1.1|2.0|3.0"
  6301. },
  6302. "require-dev": {
  6303. "symfony/config": "^6.1|^7.0",
  6304. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6305. "symfony/yaml": "^5.4|^6.0|^7.0"
  6306. },
  6307. "type": "library",
  6308. "autoload": {
  6309. "psr-4": {
  6310. "Symfony\\Component\\DependencyInjection\\": ""
  6311. },
  6312. "exclude-from-classmap": [
  6313. "/Tests/"
  6314. ]
  6315. },
  6316. "notification-url": "https://packagist.org/downloads/",
  6317. "license": [
  6318. "MIT"
  6319. ],
  6320. "authors": [
  6321. {
  6322. "name": "Fabien Potencier",
  6323. "email": "fabien@symfony.com"
  6324. },
  6325. {
  6326. "name": "Symfony Community",
  6327. "homepage": "https://symfony.com/contributors"
  6328. }
  6329. ],
  6330. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  6331. "homepage": "https://symfony.com",
  6332. "support": {
  6333. "source": "https://github.com/symfony/dependency-injection/tree/v6.4.4"
  6334. },
  6335. "funding": [
  6336. {
  6337. "url": "https://symfony.com/sponsor",
  6338. "type": "custom"
  6339. },
  6340. {
  6341. "url": "https://github.com/fabpot",
  6342. "type": "github"
  6343. },
  6344. {
  6345. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6346. "type": "tidelift"
  6347. }
  6348. ],
  6349. "time": "2024-02-22T20:27:10+00:00"
  6350. },
  6351. {
  6352. "name": "symfony/deprecation-contracts",
  6353. "version": "v3.4.0",
  6354. "source": {
  6355. "type": "git",
  6356. "url": "https://github.com/symfony/deprecation-contracts.git",
  6357. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  6358. },
  6359. "dist": {
  6360. "type": "zip",
  6361. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  6362. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  6363. "shasum": ""
  6364. },
  6365. "require": {
  6366. "php": ">=8.1"
  6367. },
  6368. "type": "library",
  6369. "extra": {
  6370. "branch-alias": {
  6371. "dev-main": "3.4-dev"
  6372. },
  6373. "thanks": {
  6374. "name": "symfony/contracts",
  6375. "url": "https://github.com/symfony/contracts"
  6376. }
  6377. },
  6378. "autoload": {
  6379. "files": [
  6380. "function.php"
  6381. ]
  6382. },
  6383. "notification-url": "https://packagist.org/downloads/",
  6384. "license": [
  6385. "MIT"
  6386. ],
  6387. "authors": [
  6388. {
  6389. "name": "Nicolas Grekas",
  6390. "email": "p@tchwork.com"
  6391. },
  6392. {
  6393. "name": "Symfony Community",
  6394. "homepage": "https://symfony.com/contributors"
  6395. }
  6396. ],
  6397. "description": "A generic function and convention to trigger deprecation notices",
  6398. "homepage": "https://symfony.com",
  6399. "support": {
  6400. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0"
  6401. },
  6402. "funding": [
  6403. {
  6404. "url": "https://symfony.com/sponsor",
  6405. "type": "custom"
  6406. },
  6407. {
  6408. "url": "https://github.com/fabpot",
  6409. "type": "github"
  6410. },
  6411. {
  6412. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6413. "type": "tidelift"
  6414. }
  6415. ],
  6416. "time": "2023-05-23T14:45:45+00:00"
  6417. },
  6418. {
  6419. "name": "symfony/error-handler",
  6420. "version": "v6.4.4",
  6421. "source": {
  6422. "type": "git",
  6423. "url": "https://github.com/symfony/error-handler.git",
  6424. "reference": "c725219bdf2afc59423c32793d5019d2a904e13a"
  6425. },
  6426. "dist": {
  6427. "type": "zip",
  6428. "url": "https://api.github.com/repos/symfony/error-handler/zipball/c725219bdf2afc59423c32793d5019d2a904e13a",
  6429. "reference": "c725219bdf2afc59423c32793d5019d2a904e13a",
  6430. "shasum": ""
  6431. },
  6432. "require": {
  6433. "php": ">=8.1",
  6434. "psr/log": "^1|^2|^3",
  6435. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6436. },
  6437. "conflict": {
  6438. "symfony/deprecation-contracts": "<2.5",
  6439. "symfony/http-kernel": "<6.4"
  6440. },
  6441. "require-dev": {
  6442. "symfony/deprecation-contracts": "^2.5|^3",
  6443. "symfony/http-kernel": "^6.4|^7.0",
  6444. "symfony/serializer": "^5.4|^6.0|^7.0"
  6445. },
  6446. "bin": [
  6447. "Resources/bin/patch-type-declarations"
  6448. ],
  6449. "type": "library",
  6450. "autoload": {
  6451. "psr-4": {
  6452. "Symfony\\Component\\ErrorHandler\\": ""
  6453. },
  6454. "exclude-from-classmap": [
  6455. "/Tests/"
  6456. ]
  6457. },
  6458. "notification-url": "https://packagist.org/downloads/",
  6459. "license": [
  6460. "MIT"
  6461. ],
  6462. "authors": [
  6463. {
  6464. "name": "Fabien Potencier",
  6465. "email": "fabien@symfony.com"
  6466. },
  6467. {
  6468. "name": "Symfony Community",
  6469. "homepage": "https://symfony.com/contributors"
  6470. }
  6471. ],
  6472. "description": "Provides tools to manage errors and ease debugging PHP code",
  6473. "homepage": "https://symfony.com",
  6474. "support": {
  6475. "source": "https://github.com/symfony/error-handler/tree/v6.4.4"
  6476. },
  6477. "funding": [
  6478. {
  6479. "url": "https://symfony.com/sponsor",
  6480. "type": "custom"
  6481. },
  6482. {
  6483. "url": "https://github.com/fabpot",
  6484. "type": "github"
  6485. },
  6486. {
  6487. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6488. "type": "tidelift"
  6489. }
  6490. ],
  6491. "time": "2024-02-22T20:27:10+00:00"
  6492. },
  6493. {
  6494. "name": "symfony/event-dispatcher",
  6495. "version": "v6.4.3",
  6496. "source": {
  6497. "type": "git",
  6498. "url": "https://github.com/symfony/event-dispatcher.git",
  6499. "reference": "ae9d3a6f3003a6caf56acd7466d8d52378d44fef"
  6500. },
  6501. "dist": {
  6502. "type": "zip",
  6503. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ae9d3a6f3003a6caf56acd7466d8d52378d44fef",
  6504. "reference": "ae9d3a6f3003a6caf56acd7466d8d52378d44fef",
  6505. "shasum": ""
  6506. },
  6507. "require": {
  6508. "php": ">=8.1",
  6509. "symfony/event-dispatcher-contracts": "^2.5|^3"
  6510. },
  6511. "conflict": {
  6512. "symfony/dependency-injection": "<5.4",
  6513. "symfony/service-contracts": "<2.5"
  6514. },
  6515. "provide": {
  6516. "psr/event-dispatcher-implementation": "1.0",
  6517. "symfony/event-dispatcher-implementation": "2.0|3.0"
  6518. },
  6519. "require-dev": {
  6520. "psr/log": "^1|^2|^3",
  6521. "symfony/config": "^5.4|^6.0|^7.0",
  6522. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6523. "symfony/error-handler": "^5.4|^6.0|^7.0",
  6524. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6525. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  6526. "symfony/service-contracts": "^2.5|^3",
  6527. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  6528. },
  6529. "type": "library",
  6530. "autoload": {
  6531. "psr-4": {
  6532. "Symfony\\Component\\EventDispatcher\\": ""
  6533. },
  6534. "exclude-from-classmap": [
  6535. "/Tests/"
  6536. ]
  6537. },
  6538. "notification-url": "https://packagist.org/downloads/",
  6539. "license": [
  6540. "MIT"
  6541. ],
  6542. "authors": [
  6543. {
  6544. "name": "Fabien Potencier",
  6545. "email": "fabien@symfony.com"
  6546. },
  6547. {
  6548. "name": "Symfony Community",
  6549. "homepage": "https://symfony.com/contributors"
  6550. }
  6551. ],
  6552. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  6553. "homepage": "https://symfony.com",
  6554. "support": {
  6555. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.3"
  6556. },
  6557. "funding": [
  6558. {
  6559. "url": "https://symfony.com/sponsor",
  6560. "type": "custom"
  6561. },
  6562. {
  6563. "url": "https://github.com/fabpot",
  6564. "type": "github"
  6565. },
  6566. {
  6567. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6568. "type": "tidelift"
  6569. }
  6570. ],
  6571. "time": "2024-01-23T14:51:35+00:00"
  6572. },
  6573. {
  6574. "name": "symfony/event-dispatcher-contracts",
  6575. "version": "v3.4.0",
  6576. "source": {
  6577. "type": "git",
  6578. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  6579. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  6580. },
  6581. "dist": {
  6582. "type": "zip",
  6583. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  6584. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  6585. "shasum": ""
  6586. },
  6587. "require": {
  6588. "php": ">=8.1",
  6589. "psr/event-dispatcher": "^1"
  6590. },
  6591. "type": "library",
  6592. "extra": {
  6593. "branch-alias": {
  6594. "dev-main": "3.4-dev"
  6595. },
  6596. "thanks": {
  6597. "name": "symfony/contracts",
  6598. "url": "https://github.com/symfony/contracts"
  6599. }
  6600. },
  6601. "autoload": {
  6602. "psr-4": {
  6603. "Symfony\\Contracts\\EventDispatcher\\": ""
  6604. }
  6605. },
  6606. "notification-url": "https://packagist.org/downloads/",
  6607. "license": [
  6608. "MIT"
  6609. ],
  6610. "authors": [
  6611. {
  6612. "name": "Nicolas Grekas",
  6613. "email": "p@tchwork.com"
  6614. },
  6615. {
  6616. "name": "Symfony Community",
  6617. "homepage": "https://symfony.com/contributors"
  6618. }
  6619. ],
  6620. "description": "Generic abstractions related to dispatching event",
  6621. "homepage": "https://symfony.com",
  6622. "keywords": [
  6623. "abstractions",
  6624. "contracts",
  6625. "decoupling",
  6626. "interfaces",
  6627. "interoperability",
  6628. "standards"
  6629. ],
  6630. "support": {
  6631. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.4.0"
  6632. },
  6633. "funding": [
  6634. {
  6635. "url": "https://symfony.com/sponsor",
  6636. "type": "custom"
  6637. },
  6638. {
  6639. "url": "https://github.com/fabpot",
  6640. "type": "github"
  6641. },
  6642. {
  6643. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6644. "type": "tidelift"
  6645. }
  6646. ],
  6647. "time": "2023-05-23T14:45:45+00:00"
  6648. },
  6649. {
  6650. "name": "symfony/filesystem",
  6651. "version": "v6.4.3",
  6652. "source": {
  6653. "type": "git",
  6654. "url": "https://github.com/symfony/filesystem.git",
  6655. "reference": "7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb"
  6656. },
  6657. "dist": {
  6658. "type": "zip",
  6659. "url": "https://api.github.com/repos/symfony/filesystem/zipball/7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb",
  6660. "reference": "7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb",
  6661. "shasum": ""
  6662. },
  6663. "require": {
  6664. "php": ">=8.1",
  6665. "symfony/polyfill-ctype": "~1.8",
  6666. "symfony/polyfill-mbstring": "~1.8"
  6667. },
  6668. "type": "library",
  6669. "autoload": {
  6670. "psr-4": {
  6671. "Symfony\\Component\\Filesystem\\": ""
  6672. },
  6673. "exclude-from-classmap": [
  6674. "/Tests/"
  6675. ]
  6676. },
  6677. "notification-url": "https://packagist.org/downloads/",
  6678. "license": [
  6679. "MIT"
  6680. ],
  6681. "authors": [
  6682. {
  6683. "name": "Fabien Potencier",
  6684. "email": "fabien@symfony.com"
  6685. },
  6686. {
  6687. "name": "Symfony Community",
  6688. "homepage": "https://symfony.com/contributors"
  6689. }
  6690. ],
  6691. "description": "Provides basic utilities for the filesystem",
  6692. "homepage": "https://symfony.com",
  6693. "support": {
  6694. "source": "https://github.com/symfony/filesystem/tree/v6.4.3"
  6695. },
  6696. "funding": [
  6697. {
  6698. "url": "https://symfony.com/sponsor",
  6699. "type": "custom"
  6700. },
  6701. {
  6702. "url": "https://github.com/fabpot",
  6703. "type": "github"
  6704. },
  6705. {
  6706. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6707. "type": "tidelift"
  6708. }
  6709. ],
  6710. "time": "2024-01-23T14:51:35+00:00"
  6711. },
  6712. {
  6713. "name": "symfony/finder",
  6714. "version": "v6.4.0",
  6715. "source": {
  6716. "type": "git",
  6717. "url": "https://github.com/symfony/finder.git",
  6718. "reference": "11d736e97f116ac375a81f96e662911a34cd50ce"
  6719. },
  6720. "dist": {
  6721. "type": "zip",
  6722. "url": "https://api.github.com/repos/symfony/finder/zipball/11d736e97f116ac375a81f96e662911a34cd50ce",
  6723. "reference": "11d736e97f116ac375a81f96e662911a34cd50ce",
  6724. "shasum": ""
  6725. },
  6726. "require": {
  6727. "php": ">=8.1"
  6728. },
  6729. "require-dev": {
  6730. "symfony/filesystem": "^6.0|^7.0"
  6731. },
  6732. "type": "library",
  6733. "autoload": {
  6734. "psr-4": {
  6735. "Symfony\\Component\\Finder\\": ""
  6736. },
  6737. "exclude-from-classmap": [
  6738. "/Tests/"
  6739. ]
  6740. },
  6741. "notification-url": "https://packagist.org/downloads/",
  6742. "license": [
  6743. "MIT"
  6744. ],
  6745. "authors": [
  6746. {
  6747. "name": "Fabien Potencier",
  6748. "email": "fabien@symfony.com"
  6749. },
  6750. {
  6751. "name": "Symfony Community",
  6752. "homepage": "https://symfony.com/contributors"
  6753. }
  6754. ],
  6755. "description": "Finds files and directories via an intuitive fluent interface",
  6756. "homepage": "https://symfony.com",
  6757. "support": {
  6758. "source": "https://github.com/symfony/finder/tree/v6.4.0"
  6759. },
  6760. "funding": [
  6761. {
  6762. "url": "https://symfony.com/sponsor",
  6763. "type": "custom"
  6764. },
  6765. {
  6766. "url": "https://github.com/fabpot",
  6767. "type": "github"
  6768. },
  6769. {
  6770. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6771. "type": "tidelift"
  6772. }
  6773. ],
  6774. "time": "2023-10-31T17:30:12+00:00"
  6775. },
  6776. {
  6777. "name": "symfony/http-foundation",
  6778. "version": "v6.4.4",
  6779. "source": {
  6780. "type": "git",
  6781. "url": "https://github.com/symfony/http-foundation.git",
  6782. "reference": "ebc713bc6e6f4b53f46539fc158be85dfcd77304"
  6783. },
  6784. "dist": {
  6785. "type": "zip",
  6786. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ebc713bc6e6f4b53f46539fc158be85dfcd77304",
  6787. "reference": "ebc713bc6e6f4b53f46539fc158be85dfcd77304",
  6788. "shasum": ""
  6789. },
  6790. "require": {
  6791. "php": ">=8.1",
  6792. "symfony/deprecation-contracts": "^2.5|^3",
  6793. "symfony/polyfill-mbstring": "~1.1",
  6794. "symfony/polyfill-php83": "^1.27"
  6795. },
  6796. "conflict": {
  6797. "symfony/cache": "<6.3"
  6798. },
  6799. "require-dev": {
  6800. "doctrine/dbal": "^2.13.1|^3|^4",
  6801. "predis/predis": "^1.1|^2.0",
  6802. "symfony/cache": "^6.3|^7.0",
  6803. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6804. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6805. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  6806. "symfony/mime": "^5.4|^6.0|^7.0",
  6807. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  6808. },
  6809. "type": "library",
  6810. "autoload": {
  6811. "psr-4": {
  6812. "Symfony\\Component\\HttpFoundation\\": ""
  6813. },
  6814. "exclude-from-classmap": [
  6815. "/Tests/"
  6816. ]
  6817. },
  6818. "notification-url": "https://packagist.org/downloads/",
  6819. "license": [
  6820. "MIT"
  6821. ],
  6822. "authors": [
  6823. {
  6824. "name": "Fabien Potencier",
  6825. "email": "fabien@symfony.com"
  6826. },
  6827. {
  6828. "name": "Symfony Community",
  6829. "homepage": "https://symfony.com/contributors"
  6830. }
  6831. ],
  6832. "description": "Defines an object-oriented layer for the HTTP specification",
  6833. "homepage": "https://symfony.com",
  6834. "support": {
  6835. "source": "https://github.com/symfony/http-foundation/tree/v6.4.4"
  6836. },
  6837. "funding": [
  6838. {
  6839. "url": "https://symfony.com/sponsor",
  6840. "type": "custom"
  6841. },
  6842. {
  6843. "url": "https://github.com/fabpot",
  6844. "type": "github"
  6845. },
  6846. {
  6847. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6848. "type": "tidelift"
  6849. }
  6850. ],
  6851. "time": "2024-02-08T15:01:18+00:00"
  6852. },
  6853. {
  6854. "name": "symfony/http-kernel",
  6855. "version": "v6.4.4",
  6856. "source": {
  6857. "type": "git",
  6858. "url": "https://github.com/symfony/http-kernel.git",
  6859. "reference": "7a186f64a7f02787c04e8476538624d6aa888e42"
  6860. },
  6861. "dist": {
  6862. "type": "zip",
  6863. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/7a186f64a7f02787c04e8476538624d6aa888e42",
  6864. "reference": "7a186f64a7f02787c04e8476538624d6aa888e42",
  6865. "shasum": ""
  6866. },
  6867. "require": {
  6868. "php": ">=8.1",
  6869. "psr/log": "^1|^2|^3",
  6870. "symfony/deprecation-contracts": "^2.5|^3",
  6871. "symfony/error-handler": "^6.4|^7.0",
  6872. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6873. "symfony/http-foundation": "^6.4|^7.0",
  6874. "symfony/polyfill-ctype": "^1.8"
  6875. },
  6876. "conflict": {
  6877. "symfony/browser-kit": "<5.4",
  6878. "symfony/cache": "<5.4",
  6879. "symfony/config": "<6.1",
  6880. "symfony/console": "<5.4",
  6881. "symfony/dependency-injection": "<6.4",
  6882. "symfony/doctrine-bridge": "<5.4",
  6883. "symfony/form": "<5.4",
  6884. "symfony/http-client": "<5.4",
  6885. "symfony/http-client-contracts": "<2.5",
  6886. "symfony/mailer": "<5.4",
  6887. "symfony/messenger": "<5.4",
  6888. "symfony/translation": "<5.4",
  6889. "symfony/translation-contracts": "<2.5",
  6890. "symfony/twig-bridge": "<5.4",
  6891. "symfony/validator": "<6.4",
  6892. "symfony/var-dumper": "<6.3",
  6893. "twig/twig": "<2.13"
  6894. },
  6895. "provide": {
  6896. "psr/log-implementation": "1.0|2.0|3.0"
  6897. },
  6898. "require-dev": {
  6899. "psr/cache": "^1.0|^2.0|^3.0",
  6900. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  6901. "symfony/clock": "^6.2|^7.0",
  6902. "symfony/config": "^6.1|^7.0",
  6903. "symfony/console": "^5.4|^6.0|^7.0",
  6904. "symfony/css-selector": "^5.4|^6.0|^7.0",
  6905. "symfony/dependency-injection": "^6.4|^7.0",
  6906. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  6907. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6908. "symfony/finder": "^5.4|^6.0|^7.0",
  6909. "symfony/http-client-contracts": "^2.5|^3",
  6910. "symfony/process": "^5.4|^6.0|^7.0",
  6911. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  6912. "symfony/routing": "^5.4|^6.0|^7.0",
  6913. "symfony/serializer": "^6.4.4|^7.0.4",
  6914. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6915. "symfony/translation": "^5.4|^6.0|^7.0",
  6916. "symfony/translation-contracts": "^2.5|^3",
  6917. "symfony/uid": "^5.4|^6.0|^7.0",
  6918. "symfony/validator": "^6.4|^7.0",
  6919. "symfony/var-exporter": "^6.2|^7.0",
  6920. "twig/twig": "^2.13|^3.0.4"
  6921. },
  6922. "type": "library",
  6923. "autoload": {
  6924. "psr-4": {
  6925. "Symfony\\Component\\HttpKernel\\": ""
  6926. },
  6927. "exclude-from-classmap": [
  6928. "/Tests/"
  6929. ]
  6930. },
  6931. "notification-url": "https://packagist.org/downloads/",
  6932. "license": [
  6933. "MIT"
  6934. ],
  6935. "authors": [
  6936. {
  6937. "name": "Fabien Potencier",
  6938. "email": "fabien@symfony.com"
  6939. },
  6940. {
  6941. "name": "Symfony Community",
  6942. "homepage": "https://symfony.com/contributors"
  6943. }
  6944. ],
  6945. "description": "Provides a structured process for converting a Request into a Response",
  6946. "homepage": "https://symfony.com",
  6947. "support": {
  6948. "source": "https://github.com/symfony/http-kernel/tree/v6.4.4"
  6949. },
  6950. "funding": [
  6951. {
  6952. "url": "https://symfony.com/sponsor",
  6953. "type": "custom"
  6954. },
  6955. {
  6956. "url": "https://github.com/fabpot",
  6957. "type": "github"
  6958. },
  6959. {
  6960. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6961. "type": "tidelift"
  6962. }
  6963. ],
  6964. "time": "2024-02-27T06:32:13+00:00"
  6965. },
  6966. {
  6967. "name": "symfony/mailer",
  6968. "version": "v6.4.4",
  6969. "source": {
  6970. "type": "git",
  6971. "url": "https://github.com/symfony/mailer.git",
  6972. "reference": "791c5d31a8204cf3db0c66faab70282307f4376b"
  6973. },
  6974. "dist": {
  6975. "type": "zip",
  6976. "url": "https://api.github.com/repos/symfony/mailer/zipball/791c5d31a8204cf3db0c66faab70282307f4376b",
  6977. "reference": "791c5d31a8204cf3db0c66faab70282307f4376b",
  6978. "shasum": ""
  6979. },
  6980. "require": {
  6981. "egulias/email-validator": "^2.1.10|^3|^4",
  6982. "php": ">=8.1",
  6983. "psr/event-dispatcher": "^1",
  6984. "psr/log": "^1|^2|^3",
  6985. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6986. "symfony/mime": "^6.2|^7.0",
  6987. "symfony/service-contracts": "^2.5|^3"
  6988. },
  6989. "conflict": {
  6990. "symfony/http-client-contracts": "<2.5",
  6991. "symfony/http-kernel": "<5.4",
  6992. "symfony/messenger": "<6.2",
  6993. "symfony/mime": "<6.2",
  6994. "symfony/twig-bridge": "<6.2.1"
  6995. },
  6996. "require-dev": {
  6997. "symfony/console": "^5.4|^6.0|^7.0",
  6998. "symfony/http-client": "^5.4|^6.0|^7.0",
  6999. "symfony/messenger": "^6.2|^7.0",
  7000. "symfony/twig-bridge": "^6.2|^7.0"
  7001. },
  7002. "type": "library",
  7003. "autoload": {
  7004. "psr-4": {
  7005. "Symfony\\Component\\Mailer\\": ""
  7006. },
  7007. "exclude-from-classmap": [
  7008. "/Tests/"
  7009. ]
  7010. },
  7011. "notification-url": "https://packagist.org/downloads/",
  7012. "license": [
  7013. "MIT"
  7014. ],
  7015. "authors": [
  7016. {
  7017. "name": "Fabien Potencier",
  7018. "email": "fabien@symfony.com"
  7019. },
  7020. {
  7021. "name": "Symfony Community",
  7022. "homepage": "https://symfony.com/contributors"
  7023. }
  7024. ],
  7025. "description": "Helps sending emails",
  7026. "homepage": "https://symfony.com",
  7027. "support": {
  7028. "source": "https://github.com/symfony/mailer/tree/v6.4.4"
  7029. },
  7030. "funding": [
  7031. {
  7032. "url": "https://symfony.com/sponsor",
  7033. "type": "custom"
  7034. },
  7035. {
  7036. "url": "https://github.com/fabpot",
  7037. "type": "github"
  7038. },
  7039. {
  7040. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7041. "type": "tidelift"
  7042. }
  7043. ],
  7044. "time": "2024-02-03T21:33:47+00:00"
  7045. },
  7046. {
  7047. "name": "symfony/mime",
  7048. "version": "v6.4.3",
  7049. "source": {
  7050. "type": "git",
  7051. "url": "https://github.com/symfony/mime.git",
  7052. "reference": "5017e0a9398c77090b7694be46f20eb796262a34"
  7053. },
  7054. "dist": {
  7055. "type": "zip",
  7056. "url": "https://api.github.com/repos/symfony/mime/zipball/5017e0a9398c77090b7694be46f20eb796262a34",
  7057. "reference": "5017e0a9398c77090b7694be46f20eb796262a34",
  7058. "shasum": ""
  7059. },
  7060. "require": {
  7061. "php": ">=8.1",
  7062. "symfony/deprecation-contracts": "^2.5|^3",
  7063. "symfony/polyfill-intl-idn": "^1.10",
  7064. "symfony/polyfill-mbstring": "^1.0"
  7065. },
  7066. "conflict": {
  7067. "egulias/email-validator": "~3.0.0",
  7068. "phpdocumentor/reflection-docblock": "<3.2.2",
  7069. "phpdocumentor/type-resolver": "<1.4.0",
  7070. "symfony/mailer": "<5.4",
  7071. "symfony/serializer": "<6.3.2"
  7072. },
  7073. "require-dev": {
  7074. "egulias/email-validator": "^2.1.10|^3.1|^4",
  7075. "league/html-to-markdown": "^5.0",
  7076. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7077. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7078. "symfony/property-access": "^5.4|^6.0|^7.0",
  7079. "symfony/property-info": "^5.4|^6.0|^7.0",
  7080. "symfony/serializer": "^6.3.2|^7.0"
  7081. },
  7082. "type": "library",
  7083. "autoload": {
  7084. "psr-4": {
  7085. "Symfony\\Component\\Mime\\": ""
  7086. },
  7087. "exclude-from-classmap": [
  7088. "/Tests/"
  7089. ]
  7090. },
  7091. "notification-url": "https://packagist.org/downloads/",
  7092. "license": [
  7093. "MIT"
  7094. ],
  7095. "authors": [
  7096. {
  7097. "name": "Fabien Potencier",
  7098. "email": "fabien@symfony.com"
  7099. },
  7100. {
  7101. "name": "Symfony Community",
  7102. "homepage": "https://symfony.com/contributors"
  7103. }
  7104. ],
  7105. "description": "Allows manipulating MIME messages",
  7106. "homepage": "https://symfony.com",
  7107. "keywords": [
  7108. "mime",
  7109. "mime-type"
  7110. ],
  7111. "support": {
  7112. "source": "https://github.com/symfony/mime/tree/v6.4.3"
  7113. },
  7114. "funding": [
  7115. {
  7116. "url": "https://symfony.com/sponsor",
  7117. "type": "custom"
  7118. },
  7119. {
  7120. "url": "https://github.com/fabpot",
  7121. "type": "github"
  7122. },
  7123. {
  7124. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7125. "type": "tidelift"
  7126. }
  7127. ],
  7128. "time": "2024-01-30T08:32:12+00:00"
  7129. },
  7130. {
  7131. "name": "symfony/polyfill-ctype",
  7132. "version": "v1.28.0",
  7133. "source": {
  7134. "type": "git",
  7135. "url": "https://github.com/symfony/polyfill-ctype.git",
  7136. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
  7137. },
  7138. "dist": {
  7139. "type": "zip",
  7140. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  7141. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  7142. "shasum": ""
  7143. },
  7144. "require": {
  7145. "php": ">=7.1"
  7146. },
  7147. "provide": {
  7148. "ext-ctype": "*"
  7149. },
  7150. "suggest": {
  7151. "ext-ctype": "For best performance"
  7152. },
  7153. "type": "library",
  7154. "extra": {
  7155. "branch-alias": {
  7156. "dev-main": "1.28-dev"
  7157. },
  7158. "thanks": {
  7159. "name": "symfony/polyfill",
  7160. "url": "https://github.com/symfony/polyfill"
  7161. }
  7162. },
  7163. "autoload": {
  7164. "files": [
  7165. "bootstrap.php"
  7166. ],
  7167. "psr-4": {
  7168. "Symfony\\Polyfill\\Ctype\\": ""
  7169. }
  7170. },
  7171. "notification-url": "https://packagist.org/downloads/",
  7172. "license": [
  7173. "MIT"
  7174. ],
  7175. "authors": [
  7176. {
  7177. "name": "Gert de Pagter",
  7178. "email": "BackEndTea@gmail.com"
  7179. },
  7180. {
  7181. "name": "Symfony Community",
  7182. "homepage": "https://symfony.com/contributors"
  7183. }
  7184. ],
  7185. "description": "Symfony polyfill for ctype functions",
  7186. "homepage": "https://symfony.com",
  7187. "keywords": [
  7188. "compatibility",
  7189. "ctype",
  7190. "polyfill",
  7191. "portable"
  7192. ],
  7193. "support": {
  7194. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0"
  7195. },
  7196. "funding": [
  7197. {
  7198. "url": "https://symfony.com/sponsor",
  7199. "type": "custom"
  7200. },
  7201. {
  7202. "url": "https://github.com/fabpot",
  7203. "type": "github"
  7204. },
  7205. {
  7206. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7207. "type": "tidelift"
  7208. }
  7209. ],
  7210. "time": "2023-01-26T09:26:14+00:00"
  7211. },
  7212. {
  7213. "name": "symfony/polyfill-iconv",
  7214. "version": "v1.28.0",
  7215. "source": {
  7216. "type": "git",
  7217. "url": "https://github.com/symfony/polyfill-iconv.git",
  7218. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1"
  7219. },
  7220. "dist": {
  7221. "type": "zip",
  7222. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6de50471469b8c9afc38164452ab2b6170ee71c1",
  7223. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1",
  7224. "shasum": ""
  7225. },
  7226. "require": {
  7227. "php": ">=7.1"
  7228. },
  7229. "provide": {
  7230. "ext-iconv": "*"
  7231. },
  7232. "suggest": {
  7233. "ext-iconv": "For best performance"
  7234. },
  7235. "type": "library",
  7236. "extra": {
  7237. "branch-alias": {
  7238. "dev-main": "1.28-dev"
  7239. },
  7240. "thanks": {
  7241. "name": "symfony/polyfill",
  7242. "url": "https://github.com/symfony/polyfill"
  7243. }
  7244. },
  7245. "autoload": {
  7246. "files": [
  7247. "bootstrap.php"
  7248. ],
  7249. "psr-4": {
  7250. "Symfony\\Polyfill\\Iconv\\": ""
  7251. }
  7252. },
  7253. "notification-url": "https://packagist.org/downloads/",
  7254. "license": [
  7255. "MIT"
  7256. ],
  7257. "authors": [
  7258. {
  7259. "name": "Nicolas Grekas",
  7260. "email": "p@tchwork.com"
  7261. },
  7262. {
  7263. "name": "Symfony Community",
  7264. "homepage": "https://symfony.com/contributors"
  7265. }
  7266. ],
  7267. "description": "Symfony polyfill for the Iconv extension",
  7268. "homepage": "https://symfony.com",
  7269. "keywords": [
  7270. "compatibility",
  7271. "iconv",
  7272. "polyfill",
  7273. "portable",
  7274. "shim"
  7275. ],
  7276. "support": {
  7277. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.28.0"
  7278. },
  7279. "funding": [
  7280. {
  7281. "url": "https://symfony.com/sponsor",
  7282. "type": "custom"
  7283. },
  7284. {
  7285. "url": "https://github.com/fabpot",
  7286. "type": "github"
  7287. },
  7288. {
  7289. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7290. "type": "tidelift"
  7291. }
  7292. ],
  7293. "time": "2023-01-26T09:26:14+00:00"
  7294. },
  7295. {
  7296. "name": "symfony/polyfill-intl-grapheme",
  7297. "version": "v1.28.0",
  7298. "source": {
  7299. "type": "git",
  7300. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7301. "reference": "875e90aeea2777b6f135677f618529449334a612"
  7302. },
  7303. "dist": {
  7304. "type": "zip",
  7305. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612",
  7306. "reference": "875e90aeea2777b6f135677f618529449334a612",
  7307. "shasum": ""
  7308. },
  7309. "require": {
  7310. "php": ">=7.1"
  7311. },
  7312. "suggest": {
  7313. "ext-intl": "For best performance"
  7314. },
  7315. "type": "library",
  7316. "extra": {
  7317. "branch-alias": {
  7318. "dev-main": "1.28-dev"
  7319. },
  7320. "thanks": {
  7321. "name": "symfony/polyfill",
  7322. "url": "https://github.com/symfony/polyfill"
  7323. }
  7324. },
  7325. "autoload": {
  7326. "files": [
  7327. "bootstrap.php"
  7328. ],
  7329. "psr-4": {
  7330. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7331. }
  7332. },
  7333. "notification-url": "https://packagist.org/downloads/",
  7334. "license": [
  7335. "MIT"
  7336. ],
  7337. "authors": [
  7338. {
  7339. "name": "Nicolas Grekas",
  7340. "email": "p@tchwork.com"
  7341. },
  7342. {
  7343. "name": "Symfony Community",
  7344. "homepage": "https://symfony.com/contributors"
  7345. }
  7346. ],
  7347. "description": "Symfony polyfill for intl's grapheme_* functions",
  7348. "homepage": "https://symfony.com",
  7349. "keywords": [
  7350. "compatibility",
  7351. "grapheme",
  7352. "intl",
  7353. "polyfill",
  7354. "portable",
  7355. "shim"
  7356. ],
  7357. "support": {
  7358. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0"
  7359. },
  7360. "funding": [
  7361. {
  7362. "url": "https://symfony.com/sponsor",
  7363. "type": "custom"
  7364. },
  7365. {
  7366. "url": "https://github.com/fabpot",
  7367. "type": "github"
  7368. },
  7369. {
  7370. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7371. "type": "tidelift"
  7372. }
  7373. ],
  7374. "time": "2023-01-26T09:26:14+00:00"
  7375. },
  7376. {
  7377. "name": "symfony/polyfill-intl-idn",
  7378. "version": "v1.28.0",
  7379. "source": {
  7380. "type": "git",
  7381. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7382. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d"
  7383. },
  7384. "dist": {
  7385. "type": "zip",
  7386. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d",
  7387. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d",
  7388. "shasum": ""
  7389. },
  7390. "require": {
  7391. "php": ">=7.1",
  7392. "symfony/polyfill-intl-normalizer": "^1.10",
  7393. "symfony/polyfill-php72": "^1.10"
  7394. },
  7395. "suggest": {
  7396. "ext-intl": "For best performance"
  7397. },
  7398. "type": "library",
  7399. "extra": {
  7400. "branch-alias": {
  7401. "dev-main": "1.28-dev"
  7402. },
  7403. "thanks": {
  7404. "name": "symfony/polyfill",
  7405. "url": "https://github.com/symfony/polyfill"
  7406. }
  7407. },
  7408. "autoload": {
  7409. "files": [
  7410. "bootstrap.php"
  7411. ],
  7412. "psr-4": {
  7413. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7414. }
  7415. },
  7416. "notification-url": "https://packagist.org/downloads/",
  7417. "license": [
  7418. "MIT"
  7419. ],
  7420. "authors": [
  7421. {
  7422. "name": "Laurent Bassin",
  7423. "email": "laurent@bassin.info"
  7424. },
  7425. {
  7426. "name": "Trevor Rowbotham",
  7427. "email": "trevor.rowbotham@pm.me"
  7428. },
  7429. {
  7430. "name": "Symfony Community",
  7431. "homepage": "https://symfony.com/contributors"
  7432. }
  7433. ],
  7434. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7435. "homepage": "https://symfony.com",
  7436. "keywords": [
  7437. "compatibility",
  7438. "idn",
  7439. "intl",
  7440. "polyfill",
  7441. "portable",
  7442. "shim"
  7443. ],
  7444. "support": {
  7445. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.0"
  7446. },
  7447. "funding": [
  7448. {
  7449. "url": "https://symfony.com/sponsor",
  7450. "type": "custom"
  7451. },
  7452. {
  7453. "url": "https://github.com/fabpot",
  7454. "type": "github"
  7455. },
  7456. {
  7457. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7458. "type": "tidelift"
  7459. }
  7460. ],
  7461. "time": "2023-01-26T09:30:37+00:00"
  7462. },
  7463. {
  7464. "name": "symfony/polyfill-intl-normalizer",
  7465. "version": "v1.28.0",
  7466. "source": {
  7467. "type": "git",
  7468. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7469. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92"
  7470. },
  7471. "dist": {
  7472. "type": "zip",
  7473. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  7474. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  7475. "shasum": ""
  7476. },
  7477. "require": {
  7478. "php": ">=7.1"
  7479. },
  7480. "suggest": {
  7481. "ext-intl": "For best performance"
  7482. },
  7483. "type": "library",
  7484. "extra": {
  7485. "branch-alias": {
  7486. "dev-main": "1.28-dev"
  7487. },
  7488. "thanks": {
  7489. "name": "symfony/polyfill",
  7490. "url": "https://github.com/symfony/polyfill"
  7491. }
  7492. },
  7493. "autoload": {
  7494. "files": [
  7495. "bootstrap.php"
  7496. ],
  7497. "psr-4": {
  7498. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7499. },
  7500. "classmap": [
  7501. "Resources/stubs"
  7502. ]
  7503. },
  7504. "notification-url": "https://packagist.org/downloads/",
  7505. "license": [
  7506. "MIT"
  7507. ],
  7508. "authors": [
  7509. {
  7510. "name": "Nicolas Grekas",
  7511. "email": "p@tchwork.com"
  7512. },
  7513. {
  7514. "name": "Symfony Community",
  7515. "homepage": "https://symfony.com/contributors"
  7516. }
  7517. ],
  7518. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7519. "homepage": "https://symfony.com",
  7520. "keywords": [
  7521. "compatibility",
  7522. "intl",
  7523. "normalizer",
  7524. "polyfill",
  7525. "portable",
  7526. "shim"
  7527. ],
  7528. "support": {
  7529. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0"
  7530. },
  7531. "funding": [
  7532. {
  7533. "url": "https://symfony.com/sponsor",
  7534. "type": "custom"
  7535. },
  7536. {
  7537. "url": "https://github.com/fabpot",
  7538. "type": "github"
  7539. },
  7540. {
  7541. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7542. "type": "tidelift"
  7543. }
  7544. ],
  7545. "time": "2023-01-26T09:26:14+00:00"
  7546. },
  7547. {
  7548. "name": "symfony/polyfill-mbstring",
  7549. "version": "v1.28.0",
  7550. "source": {
  7551. "type": "git",
  7552. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7553. "reference": "42292d99c55abe617799667f454222c54c60e229"
  7554. },
  7555. "dist": {
  7556. "type": "zip",
  7557. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
  7558. "reference": "42292d99c55abe617799667f454222c54c60e229",
  7559. "shasum": ""
  7560. },
  7561. "require": {
  7562. "php": ">=7.1"
  7563. },
  7564. "provide": {
  7565. "ext-mbstring": "*"
  7566. },
  7567. "suggest": {
  7568. "ext-mbstring": "For best performance"
  7569. },
  7570. "type": "library",
  7571. "extra": {
  7572. "branch-alias": {
  7573. "dev-main": "1.28-dev"
  7574. },
  7575. "thanks": {
  7576. "name": "symfony/polyfill",
  7577. "url": "https://github.com/symfony/polyfill"
  7578. }
  7579. },
  7580. "autoload": {
  7581. "files": [
  7582. "bootstrap.php"
  7583. ],
  7584. "psr-4": {
  7585. "Symfony\\Polyfill\\Mbstring\\": ""
  7586. }
  7587. },
  7588. "notification-url": "https://packagist.org/downloads/",
  7589. "license": [
  7590. "MIT"
  7591. ],
  7592. "authors": [
  7593. {
  7594. "name": "Nicolas Grekas",
  7595. "email": "p@tchwork.com"
  7596. },
  7597. {
  7598. "name": "Symfony Community",
  7599. "homepage": "https://symfony.com/contributors"
  7600. }
  7601. ],
  7602. "description": "Symfony polyfill for the Mbstring extension",
  7603. "homepage": "https://symfony.com",
  7604. "keywords": [
  7605. "compatibility",
  7606. "mbstring",
  7607. "polyfill",
  7608. "portable",
  7609. "shim"
  7610. ],
  7611. "support": {
  7612. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0"
  7613. },
  7614. "funding": [
  7615. {
  7616. "url": "https://symfony.com/sponsor",
  7617. "type": "custom"
  7618. },
  7619. {
  7620. "url": "https://github.com/fabpot",
  7621. "type": "github"
  7622. },
  7623. {
  7624. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7625. "type": "tidelift"
  7626. }
  7627. ],
  7628. "time": "2023-07-28T09:04:16+00:00"
  7629. },
  7630. {
  7631. "name": "symfony/polyfill-php72",
  7632. "version": "v1.29.0",
  7633. "source": {
  7634. "type": "git",
  7635. "url": "https://github.com/symfony/polyfill-php72.git",
  7636. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25"
  7637. },
  7638. "dist": {
  7639. "type": "zip",
  7640. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25",
  7641. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25",
  7642. "shasum": ""
  7643. },
  7644. "require": {
  7645. "php": ">=7.1"
  7646. },
  7647. "type": "library",
  7648. "extra": {
  7649. "thanks": {
  7650. "name": "symfony/polyfill",
  7651. "url": "https://github.com/symfony/polyfill"
  7652. }
  7653. },
  7654. "autoload": {
  7655. "files": [
  7656. "bootstrap.php"
  7657. ],
  7658. "psr-4": {
  7659. "Symfony\\Polyfill\\Php72\\": ""
  7660. }
  7661. },
  7662. "notification-url": "https://packagist.org/downloads/",
  7663. "license": [
  7664. "MIT"
  7665. ],
  7666. "authors": [
  7667. {
  7668. "name": "Nicolas Grekas",
  7669. "email": "p@tchwork.com"
  7670. },
  7671. {
  7672. "name": "Symfony Community",
  7673. "homepage": "https://symfony.com/contributors"
  7674. }
  7675. ],
  7676. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  7677. "homepage": "https://symfony.com",
  7678. "keywords": [
  7679. "compatibility",
  7680. "polyfill",
  7681. "portable",
  7682. "shim"
  7683. ],
  7684. "support": {
  7685. "source": "https://github.com/symfony/polyfill-php72/tree/v1.29.0"
  7686. },
  7687. "funding": [
  7688. {
  7689. "url": "https://symfony.com/sponsor",
  7690. "type": "custom"
  7691. },
  7692. {
  7693. "url": "https://github.com/fabpot",
  7694. "type": "github"
  7695. },
  7696. {
  7697. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7698. "type": "tidelift"
  7699. }
  7700. ],
  7701. "time": "2024-01-29T20:11:03+00:00"
  7702. },
  7703. {
  7704. "name": "symfony/polyfill-php80",
  7705. "version": "v1.29.0",
  7706. "source": {
  7707. "type": "git",
  7708. "url": "https://github.com/symfony/polyfill-php80.git",
  7709. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  7710. },
  7711. "dist": {
  7712. "type": "zip",
  7713. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  7714. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  7715. "shasum": ""
  7716. },
  7717. "require": {
  7718. "php": ">=7.1"
  7719. },
  7720. "type": "library",
  7721. "extra": {
  7722. "thanks": {
  7723. "name": "symfony/polyfill",
  7724. "url": "https://github.com/symfony/polyfill"
  7725. }
  7726. },
  7727. "autoload": {
  7728. "files": [
  7729. "bootstrap.php"
  7730. ],
  7731. "psr-4": {
  7732. "Symfony\\Polyfill\\Php80\\": ""
  7733. },
  7734. "classmap": [
  7735. "Resources/stubs"
  7736. ]
  7737. },
  7738. "notification-url": "https://packagist.org/downloads/",
  7739. "license": [
  7740. "MIT"
  7741. ],
  7742. "authors": [
  7743. {
  7744. "name": "Ion Bazan",
  7745. "email": "ion.bazan@gmail.com"
  7746. },
  7747. {
  7748. "name": "Nicolas Grekas",
  7749. "email": "p@tchwork.com"
  7750. },
  7751. {
  7752. "name": "Symfony Community",
  7753. "homepage": "https://symfony.com/contributors"
  7754. }
  7755. ],
  7756. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7757. "homepage": "https://symfony.com",
  7758. "keywords": [
  7759. "compatibility",
  7760. "polyfill",
  7761. "portable",
  7762. "shim"
  7763. ],
  7764. "support": {
  7765. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  7766. },
  7767. "funding": [
  7768. {
  7769. "url": "https://symfony.com/sponsor",
  7770. "type": "custom"
  7771. },
  7772. {
  7773. "url": "https://github.com/fabpot",
  7774. "type": "github"
  7775. },
  7776. {
  7777. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7778. "type": "tidelift"
  7779. }
  7780. ],
  7781. "time": "2024-01-29T20:11:03+00:00"
  7782. },
  7783. {
  7784. "name": "symfony/polyfill-php81",
  7785. "version": "v1.29.0",
  7786. "source": {
  7787. "type": "git",
  7788. "url": "https://github.com/symfony/polyfill-php81.git",
  7789. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
  7790. },
  7791. "dist": {
  7792. "type": "zip",
  7793. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
  7794. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
  7795. "shasum": ""
  7796. },
  7797. "require": {
  7798. "php": ">=7.1"
  7799. },
  7800. "type": "library",
  7801. "extra": {
  7802. "thanks": {
  7803. "name": "symfony/polyfill",
  7804. "url": "https://github.com/symfony/polyfill"
  7805. }
  7806. },
  7807. "autoload": {
  7808. "files": [
  7809. "bootstrap.php"
  7810. ],
  7811. "psr-4": {
  7812. "Symfony\\Polyfill\\Php81\\": ""
  7813. },
  7814. "classmap": [
  7815. "Resources/stubs"
  7816. ]
  7817. },
  7818. "notification-url": "https://packagist.org/downloads/",
  7819. "license": [
  7820. "MIT"
  7821. ],
  7822. "authors": [
  7823. {
  7824. "name": "Nicolas Grekas",
  7825. "email": "p@tchwork.com"
  7826. },
  7827. {
  7828. "name": "Symfony Community",
  7829. "homepage": "https://symfony.com/contributors"
  7830. }
  7831. ],
  7832. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  7833. "homepage": "https://symfony.com",
  7834. "keywords": [
  7835. "compatibility",
  7836. "polyfill",
  7837. "portable",
  7838. "shim"
  7839. ],
  7840. "support": {
  7841. "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0"
  7842. },
  7843. "funding": [
  7844. {
  7845. "url": "https://symfony.com/sponsor",
  7846. "type": "custom"
  7847. },
  7848. {
  7849. "url": "https://github.com/fabpot",
  7850. "type": "github"
  7851. },
  7852. {
  7853. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7854. "type": "tidelift"
  7855. }
  7856. ],
  7857. "time": "2024-01-29T20:11:03+00:00"
  7858. },
  7859. {
  7860. "name": "symfony/polyfill-php83",
  7861. "version": "v1.28.0",
  7862. "source": {
  7863. "type": "git",
  7864. "url": "https://github.com/symfony/polyfill-php83.git",
  7865. "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11"
  7866. },
  7867. "dist": {
  7868. "type": "zip",
  7869. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
  7870. "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
  7871. "shasum": ""
  7872. },
  7873. "require": {
  7874. "php": ">=7.1",
  7875. "symfony/polyfill-php80": "^1.14"
  7876. },
  7877. "type": "library",
  7878. "extra": {
  7879. "branch-alias": {
  7880. "dev-main": "1.28-dev"
  7881. },
  7882. "thanks": {
  7883. "name": "symfony/polyfill",
  7884. "url": "https://github.com/symfony/polyfill"
  7885. }
  7886. },
  7887. "autoload": {
  7888. "files": [
  7889. "bootstrap.php"
  7890. ],
  7891. "psr-4": {
  7892. "Symfony\\Polyfill\\Php83\\": ""
  7893. },
  7894. "classmap": [
  7895. "Resources/stubs"
  7896. ]
  7897. },
  7898. "notification-url": "https://packagist.org/downloads/",
  7899. "license": [
  7900. "MIT"
  7901. ],
  7902. "authors": [
  7903. {
  7904. "name": "Nicolas Grekas",
  7905. "email": "p@tchwork.com"
  7906. },
  7907. {
  7908. "name": "Symfony Community",
  7909. "homepage": "https://symfony.com/contributors"
  7910. }
  7911. ],
  7912. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  7913. "homepage": "https://symfony.com",
  7914. "keywords": [
  7915. "compatibility",
  7916. "polyfill",
  7917. "portable",
  7918. "shim"
  7919. ],
  7920. "support": {
  7921. "source": "https://github.com/symfony/polyfill-php83/tree/v1.28.0"
  7922. },
  7923. "funding": [
  7924. {
  7925. "url": "https://symfony.com/sponsor",
  7926. "type": "custom"
  7927. },
  7928. {
  7929. "url": "https://github.com/fabpot",
  7930. "type": "github"
  7931. },
  7932. {
  7933. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7934. "type": "tidelift"
  7935. }
  7936. ],
  7937. "time": "2023-08-16T06:22:46+00:00"
  7938. },
  7939. {
  7940. "name": "symfony/process",
  7941. "version": "v6.4.4",
  7942. "source": {
  7943. "type": "git",
  7944. "url": "https://github.com/symfony/process.git",
  7945. "reference": "710e27879e9be3395de2b98da3f52a946039f297"
  7946. },
  7947. "dist": {
  7948. "type": "zip",
  7949. "url": "https://api.github.com/repos/symfony/process/zipball/710e27879e9be3395de2b98da3f52a946039f297",
  7950. "reference": "710e27879e9be3395de2b98da3f52a946039f297",
  7951. "shasum": ""
  7952. },
  7953. "require": {
  7954. "php": ">=8.1"
  7955. },
  7956. "type": "library",
  7957. "autoload": {
  7958. "psr-4": {
  7959. "Symfony\\Component\\Process\\": ""
  7960. },
  7961. "exclude-from-classmap": [
  7962. "/Tests/"
  7963. ]
  7964. },
  7965. "notification-url": "https://packagist.org/downloads/",
  7966. "license": [
  7967. "MIT"
  7968. ],
  7969. "authors": [
  7970. {
  7971. "name": "Fabien Potencier",
  7972. "email": "fabien@symfony.com"
  7973. },
  7974. {
  7975. "name": "Symfony Community",
  7976. "homepage": "https://symfony.com/contributors"
  7977. }
  7978. ],
  7979. "description": "Executes commands in sub-processes",
  7980. "homepage": "https://symfony.com",
  7981. "support": {
  7982. "source": "https://github.com/symfony/process/tree/v6.4.4"
  7983. },
  7984. "funding": [
  7985. {
  7986. "url": "https://symfony.com/sponsor",
  7987. "type": "custom"
  7988. },
  7989. {
  7990. "url": "https://github.com/fabpot",
  7991. "type": "github"
  7992. },
  7993. {
  7994. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7995. "type": "tidelift"
  7996. }
  7997. ],
  7998. "time": "2024-02-20T12:31:00+00:00"
  7999. },
  8000. {
  8001. "name": "symfony/psr-http-message-bridge",
  8002. "version": "v6.4.3",
  8003. "source": {
  8004. "type": "git",
  8005. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  8006. "reference": "49cfb0223ec64379f7154214dcc1f7c46f3c7a47"
  8007. },
  8008. "dist": {
  8009. "type": "zip",
  8010. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/49cfb0223ec64379f7154214dcc1f7c46f3c7a47",
  8011. "reference": "49cfb0223ec64379f7154214dcc1f7c46f3c7a47",
  8012. "shasum": ""
  8013. },
  8014. "require": {
  8015. "php": ">=8.1",
  8016. "psr/http-message": "^1.0|^2.0",
  8017. "symfony/http-foundation": "^5.4|^6.0|^7.0"
  8018. },
  8019. "conflict": {
  8020. "php-http/discovery": "<1.15",
  8021. "symfony/http-kernel": "<6.2"
  8022. },
  8023. "require-dev": {
  8024. "nyholm/psr7": "^1.1",
  8025. "php-http/discovery": "^1.15",
  8026. "psr/log": "^1.1.4|^2|^3",
  8027. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  8028. "symfony/config": "^5.4|^6.0|^7.0",
  8029. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  8030. "symfony/framework-bundle": "^6.2|^7.0",
  8031. "symfony/http-kernel": "^6.2|^7.0"
  8032. },
  8033. "type": "symfony-bridge",
  8034. "autoload": {
  8035. "psr-4": {
  8036. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  8037. },
  8038. "exclude-from-classmap": [
  8039. "/Tests/"
  8040. ]
  8041. },
  8042. "notification-url": "https://packagist.org/downloads/",
  8043. "license": [
  8044. "MIT"
  8045. ],
  8046. "authors": [
  8047. {
  8048. "name": "Fabien Potencier",
  8049. "email": "fabien@symfony.com"
  8050. },
  8051. {
  8052. "name": "Symfony Community",
  8053. "homepage": "https://symfony.com/contributors"
  8054. }
  8055. ],
  8056. "description": "PSR HTTP message bridge",
  8057. "homepage": "https://symfony.com",
  8058. "keywords": [
  8059. "http",
  8060. "http-message",
  8061. "psr-17",
  8062. "psr-7"
  8063. ],
  8064. "support": {
  8065. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v6.4.3"
  8066. },
  8067. "funding": [
  8068. {
  8069. "url": "https://symfony.com/sponsor",
  8070. "type": "custom"
  8071. },
  8072. {
  8073. "url": "https://github.com/fabpot",
  8074. "type": "github"
  8075. },
  8076. {
  8077. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8078. "type": "tidelift"
  8079. }
  8080. ],
  8081. "time": "2024-01-23T14:51:35+00:00"
  8082. },
  8083. {
  8084. "name": "symfony/routing",
  8085. "version": "v6.4.3",
  8086. "source": {
  8087. "type": "git",
  8088. "url": "https://github.com/symfony/routing.git",
  8089. "reference": "3b2957ad54902f0f544df83e3d58b38d7e8e5842"
  8090. },
  8091. "dist": {
  8092. "type": "zip",
  8093. "url": "https://api.github.com/repos/symfony/routing/zipball/3b2957ad54902f0f544df83e3d58b38d7e8e5842",
  8094. "reference": "3b2957ad54902f0f544df83e3d58b38d7e8e5842",
  8095. "shasum": ""
  8096. },
  8097. "require": {
  8098. "php": ">=8.1",
  8099. "symfony/deprecation-contracts": "^2.5|^3"
  8100. },
  8101. "conflict": {
  8102. "doctrine/annotations": "<1.12",
  8103. "symfony/config": "<6.2",
  8104. "symfony/dependency-injection": "<5.4",
  8105. "symfony/yaml": "<5.4"
  8106. },
  8107. "require-dev": {
  8108. "doctrine/annotations": "^1.12|^2",
  8109. "psr/log": "^1|^2|^3",
  8110. "symfony/config": "^6.2|^7.0",
  8111. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8112. "symfony/expression-language": "^5.4|^6.0|^7.0",
  8113. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  8114. "symfony/yaml": "^5.4|^6.0|^7.0"
  8115. },
  8116. "type": "library",
  8117. "autoload": {
  8118. "psr-4": {
  8119. "Symfony\\Component\\Routing\\": ""
  8120. },
  8121. "exclude-from-classmap": [
  8122. "/Tests/"
  8123. ]
  8124. },
  8125. "notification-url": "https://packagist.org/downloads/",
  8126. "license": [
  8127. "MIT"
  8128. ],
  8129. "authors": [
  8130. {
  8131. "name": "Fabien Potencier",
  8132. "email": "fabien@symfony.com"
  8133. },
  8134. {
  8135. "name": "Symfony Community",
  8136. "homepage": "https://symfony.com/contributors"
  8137. }
  8138. ],
  8139. "description": "Maps an HTTP request to a set of configuration variables",
  8140. "homepage": "https://symfony.com",
  8141. "keywords": [
  8142. "router",
  8143. "routing",
  8144. "uri",
  8145. "url"
  8146. ],
  8147. "support": {
  8148. "source": "https://github.com/symfony/routing/tree/v6.4.3"
  8149. },
  8150. "funding": [
  8151. {
  8152. "url": "https://symfony.com/sponsor",
  8153. "type": "custom"
  8154. },
  8155. {
  8156. "url": "https://github.com/fabpot",
  8157. "type": "github"
  8158. },
  8159. {
  8160. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8161. "type": "tidelift"
  8162. }
  8163. ],
  8164. "time": "2024-01-30T13:55:02+00:00"
  8165. },
  8166. {
  8167. "name": "symfony/serializer",
  8168. "version": "v6.4.4",
  8169. "source": {
  8170. "type": "git",
  8171. "url": "https://github.com/symfony/serializer.git",
  8172. "reference": "88da7f8fe03c5f4c2a69da907f1de03fab2e6872"
  8173. },
  8174. "dist": {
  8175. "type": "zip",
  8176. "url": "https://api.github.com/repos/symfony/serializer/zipball/88da7f8fe03c5f4c2a69da907f1de03fab2e6872",
  8177. "reference": "88da7f8fe03c5f4c2a69da907f1de03fab2e6872",
  8178. "shasum": ""
  8179. },
  8180. "require": {
  8181. "php": ">=8.1",
  8182. "symfony/deprecation-contracts": "^2.5|^3",
  8183. "symfony/polyfill-ctype": "~1.8"
  8184. },
  8185. "conflict": {
  8186. "doctrine/annotations": "<1.12",
  8187. "phpdocumentor/reflection-docblock": "<3.2.2",
  8188. "phpdocumentor/type-resolver": "<1.4.0",
  8189. "symfony/dependency-injection": "<5.4",
  8190. "symfony/property-access": "<5.4",
  8191. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  8192. "symfony/uid": "<5.4",
  8193. "symfony/validator": "<6.4",
  8194. "symfony/yaml": "<5.4"
  8195. },
  8196. "require-dev": {
  8197. "doctrine/annotations": "^1.12|^2",
  8198. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  8199. "seld/jsonlint": "^1.10",
  8200. "symfony/cache": "^5.4|^6.0|^7.0",
  8201. "symfony/config": "^5.4|^6.0|^7.0",
  8202. "symfony/console": "^5.4|^6.0|^7.0",
  8203. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8204. "symfony/error-handler": "^5.4|^6.0|^7.0",
  8205. "symfony/filesystem": "^5.4|^6.0|^7.0",
  8206. "symfony/form": "^5.4|^6.0|^7.0",
  8207. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  8208. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  8209. "symfony/messenger": "^5.4|^6.0|^7.0",
  8210. "symfony/mime": "^5.4|^6.0|^7.0",
  8211. "symfony/property-access": "^5.4.26|^6.3|^7.0",
  8212. "symfony/property-info": "^5.4.24|^6.2.11|^7.0",
  8213. "symfony/translation-contracts": "^2.5|^3",
  8214. "symfony/uid": "^5.4|^6.0|^7.0",
  8215. "symfony/validator": "^6.4|^7.0",
  8216. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  8217. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  8218. "symfony/yaml": "^5.4|^6.0|^7.0"
  8219. },
  8220. "type": "library",
  8221. "autoload": {
  8222. "psr-4": {
  8223. "Symfony\\Component\\Serializer\\": ""
  8224. },
  8225. "exclude-from-classmap": [
  8226. "/Tests/"
  8227. ]
  8228. },
  8229. "notification-url": "https://packagist.org/downloads/",
  8230. "license": [
  8231. "MIT"
  8232. ],
  8233. "authors": [
  8234. {
  8235. "name": "Fabien Potencier",
  8236. "email": "fabien@symfony.com"
  8237. },
  8238. {
  8239. "name": "Symfony Community",
  8240. "homepage": "https://symfony.com/contributors"
  8241. }
  8242. ],
  8243. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  8244. "homepage": "https://symfony.com",
  8245. "support": {
  8246. "source": "https://github.com/symfony/serializer/tree/v6.4.4"
  8247. },
  8248. "funding": [
  8249. {
  8250. "url": "https://symfony.com/sponsor",
  8251. "type": "custom"
  8252. },
  8253. {
  8254. "url": "https://github.com/fabpot",
  8255. "type": "github"
  8256. },
  8257. {
  8258. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8259. "type": "tidelift"
  8260. }
  8261. ],
  8262. "time": "2024-02-22T20:27:10+00:00"
  8263. },
  8264. {
  8265. "name": "symfony/service-contracts",
  8266. "version": "v3.4.1",
  8267. "source": {
  8268. "type": "git",
  8269. "url": "https://github.com/symfony/service-contracts.git",
  8270. "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0"
  8271. },
  8272. "dist": {
  8273. "type": "zip",
  8274. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/fe07cbc8d837f60caf7018068e350cc5163681a0",
  8275. "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0",
  8276. "shasum": ""
  8277. },
  8278. "require": {
  8279. "php": ">=8.1",
  8280. "psr/container": "^1.1|^2.0"
  8281. },
  8282. "conflict": {
  8283. "ext-psr": "<1.1|>=2"
  8284. },
  8285. "type": "library",
  8286. "extra": {
  8287. "branch-alias": {
  8288. "dev-main": "3.4-dev"
  8289. },
  8290. "thanks": {
  8291. "name": "symfony/contracts",
  8292. "url": "https://github.com/symfony/contracts"
  8293. }
  8294. },
  8295. "autoload": {
  8296. "psr-4": {
  8297. "Symfony\\Contracts\\Service\\": ""
  8298. },
  8299. "exclude-from-classmap": [
  8300. "/Test/"
  8301. ]
  8302. },
  8303. "notification-url": "https://packagist.org/downloads/",
  8304. "license": [
  8305. "MIT"
  8306. ],
  8307. "authors": [
  8308. {
  8309. "name": "Nicolas Grekas",
  8310. "email": "p@tchwork.com"
  8311. },
  8312. {
  8313. "name": "Symfony Community",
  8314. "homepage": "https://symfony.com/contributors"
  8315. }
  8316. ],
  8317. "description": "Generic abstractions related to writing services",
  8318. "homepage": "https://symfony.com",
  8319. "keywords": [
  8320. "abstractions",
  8321. "contracts",
  8322. "decoupling",
  8323. "interfaces",
  8324. "interoperability",
  8325. "standards"
  8326. ],
  8327. "support": {
  8328. "source": "https://github.com/symfony/service-contracts/tree/v3.4.1"
  8329. },
  8330. "funding": [
  8331. {
  8332. "url": "https://symfony.com/sponsor",
  8333. "type": "custom"
  8334. },
  8335. {
  8336. "url": "https://github.com/fabpot",
  8337. "type": "github"
  8338. },
  8339. {
  8340. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8341. "type": "tidelift"
  8342. }
  8343. ],
  8344. "time": "2023-12-26T14:02:43+00:00"
  8345. },
  8346. {
  8347. "name": "symfony/string",
  8348. "version": "v6.4.4",
  8349. "source": {
  8350. "type": "git",
  8351. "url": "https://github.com/symfony/string.git",
  8352. "reference": "4e465a95bdc32f49cf4c7f07f751b843bbd6dcd9"
  8353. },
  8354. "dist": {
  8355. "type": "zip",
  8356. "url": "https://api.github.com/repos/symfony/string/zipball/4e465a95bdc32f49cf4c7f07f751b843bbd6dcd9",
  8357. "reference": "4e465a95bdc32f49cf4c7f07f751b843bbd6dcd9",
  8358. "shasum": ""
  8359. },
  8360. "require": {
  8361. "php": ">=8.1",
  8362. "symfony/polyfill-ctype": "~1.8",
  8363. "symfony/polyfill-intl-grapheme": "~1.0",
  8364. "symfony/polyfill-intl-normalizer": "~1.0",
  8365. "symfony/polyfill-mbstring": "~1.0"
  8366. },
  8367. "conflict": {
  8368. "symfony/translation-contracts": "<2.5"
  8369. },
  8370. "require-dev": {
  8371. "symfony/error-handler": "^5.4|^6.0|^7.0",
  8372. "symfony/http-client": "^5.4|^6.0|^7.0",
  8373. "symfony/intl": "^6.2|^7.0",
  8374. "symfony/translation-contracts": "^2.5|^3.0",
  8375. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  8376. },
  8377. "type": "library",
  8378. "autoload": {
  8379. "files": [
  8380. "Resources/functions.php"
  8381. ],
  8382. "psr-4": {
  8383. "Symfony\\Component\\String\\": ""
  8384. },
  8385. "exclude-from-classmap": [
  8386. "/Tests/"
  8387. ]
  8388. },
  8389. "notification-url": "https://packagist.org/downloads/",
  8390. "license": [
  8391. "MIT"
  8392. ],
  8393. "authors": [
  8394. {
  8395. "name": "Nicolas Grekas",
  8396. "email": "p@tchwork.com"
  8397. },
  8398. {
  8399. "name": "Symfony Community",
  8400. "homepage": "https://symfony.com/contributors"
  8401. }
  8402. ],
  8403. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8404. "homepage": "https://symfony.com",
  8405. "keywords": [
  8406. "grapheme",
  8407. "i18n",
  8408. "string",
  8409. "unicode",
  8410. "utf-8",
  8411. "utf8"
  8412. ],
  8413. "support": {
  8414. "source": "https://github.com/symfony/string/tree/v6.4.4"
  8415. },
  8416. "funding": [
  8417. {
  8418. "url": "https://symfony.com/sponsor",
  8419. "type": "custom"
  8420. },
  8421. {
  8422. "url": "https://github.com/fabpot",
  8423. "type": "github"
  8424. },
  8425. {
  8426. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8427. "type": "tidelift"
  8428. }
  8429. ],
  8430. "time": "2024-02-01T13:16:41+00:00"
  8431. },
  8432. {
  8433. "name": "symfony/translation-contracts",
  8434. "version": "v3.4.1",
  8435. "source": {
  8436. "type": "git",
  8437. "url": "https://github.com/symfony/translation-contracts.git",
  8438. "reference": "06450585bf65e978026bda220cdebca3f867fde7"
  8439. },
  8440. "dist": {
  8441. "type": "zip",
  8442. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/06450585bf65e978026bda220cdebca3f867fde7",
  8443. "reference": "06450585bf65e978026bda220cdebca3f867fde7",
  8444. "shasum": ""
  8445. },
  8446. "require": {
  8447. "php": ">=8.1"
  8448. },
  8449. "type": "library",
  8450. "extra": {
  8451. "branch-alias": {
  8452. "dev-main": "3.4-dev"
  8453. },
  8454. "thanks": {
  8455. "name": "symfony/contracts",
  8456. "url": "https://github.com/symfony/contracts"
  8457. }
  8458. },
  8459. "autoload": {
  8460. "psr-4": {
  8461. "Symfony\\Contracts\\Translation\\": ""
  8462. },
  8463. "exclude-from-classmap": [
  8464. "/Test/"
  8465. ]
  8466. },
  8467. "notification-url": "https://packagist.org/downloads/",
  8468. "license": [
  8469. "MIT"
  8470. ],
  8471. "authors": [
  8472. {
  8473. "name": "Nicolas Grekas",
  8474. "email": "p@tchwork.com"
  8475. },
  8476. {
  8477. "name": "Symfony Community",
  8478. "homepage": "https://symfony.com/contributors"
  8479. }
  8480. ],
  8481. "description": "Generic abstractions related to translation",
  8482. "homepage": "https://symfony.com",
  8483. "keywords": [
  8484. "abstractions",
  8485. "contracts",
  8486. "decoupling",
  8487. "interfaces",
  8488. "interoperability",
  8489. "standards"
  8490. ],
  8491. "support": {
  8492. "source": "https://github.com/symfony/translation-contracts/tree/v3.4.1"
  8493. },
  8494. "funding": [
  8495. {
  8496. "url": "https://symfony.com/sponsor",
  8497. "type": "custom"
  8498. },
  8499. {
  8500. "url": "https://github.com/fabpot",
  8501. "type": "github"
  8502. },
  8503. {
  8504. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8505. "type": "tidelift"
  8506. }
  8507. ],
  8508. "time": "2023-12-26T14:02:43+00:00"
  8509. },
  8510. {
  8511. "name": "symfony/validator",
  8512. "version": "v6.4.4",
  8513. "source": {
  8514. "type": "git",
  8515. "url": "https://github.com/symfony/validator.git",
  8516. "reference": "1cf92edc9a94d16275efef949fa6748d11cc8f47"
  8517. },
  8518. "dist": {
  8519. "type": "zip",
  8520. "url": "https://api.github.com/repos/symfony/validator/zipball/1cf92edc9a94d16275efef949fa6748d11cc8f47",
  8521. "reference": "1cf92edc9a94d16275efef949fa6748d11cc8f47",
  8522. "shasum": ""
  8523. },
  8524. "require": {
  8525. "php": ">=8.1",
  8526. "symfony/deprecation-contracts": "^2.5|^3",
  8527. "symfony/polyfill-ctype": "~1.8",
  8528. "symfony/polyfill-mbstring": "~1.0",
  8529. "symfony/polyfill-php83": "^1.27",
  8530. "symfony/translation-contracts": "^2.5|^3"
  8531. },
  8532. "conflict": {
  8533. "doctrine/annotations": "<1.13",
  8534. "doctrine/lexer": "<1.1",
  8535. "symfony/dependency-injection": "<5.4",
  8536. "symfony/expression-language": "<5.4",
  8537. "symfony/http-kernel": "<5.4",
  8538. "symfony/intl": "<5.4",
  8539. "symfony/property-info": "<5.4",
  8540. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  8541. "symfony/yaml": "<5.4"
  8542. },
  8543. "require-dev": {
  8544. "doctrine/annotations": "^1.13|^2",
  8545. "egulias/email-validator": "^2.1.10|^3|^4",
  8546. "symfony/cache": "^5.4|^6.0|^7.0",
  8547. "symfony/config": "^5.4|^6.0|^7.0",
  8548. "symfony/console": "^5.4|^6.0|^7.0",
  8549. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8550. "symfony/expression-language": "^5.4|^6.0|^7.0",
  8551. "symfony/finder": "^5.4|^6.0|^7.0",
  8552. "symfony/http-client": "^5.4|^6.0|^7.0",
  8553. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  8554. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  8555. "symfony/intl": "^5.4|^6.0|^7.0",
  8556. "symfony/mime": "^5.4|^6.0|^7.0",
  8557. "symfony/property-access": "^5.4|^6.0|^7.0",
  8558. "symfony/property-info": "^5.4|^6.0|^7.0",
  8559. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  8560. "symfony/yaml": "^5.4|^6.0|^7.0"
  8561. },
  8562. "type": "library",
  8563. "autoload": {
  8564. "psr-4": {
  8565. "Symfony\\Component\\Validator\\": ""
  8566. },
  8567. "exclude-from-classmap": [
  8568. "/Tests/"
  8569. ]
  8570. },
  8571. "notification-url": "https://packagist.org/downloads/",
  8572. "license": [
  8573. "MIT"
  8574. ],
  8575. "authors": [
  8576. {
  8577. "name": "Fabien Potencier",
  8578. "email": "fabien@symfony.com"
  8579. },
  8580. {
  8581. "name": "Symfony Community",
  8582. "homepage": "https://symfony.com/contributors"
  8583. }
  8584. ],
  8585. "description": "Provides tools to validate values",
  8586. "homepage": "https://symfony.com",
  8587. "support": {
  8588. "source": "https://github.com/symfony/validator/tree/v6.4.4"
  8589. },
  8590. "funding": [
  8591. {
  8592. "url": "https://symfony.com/sponsor",
  8593. "type": "custom"
  8594. },
  8595. {
  8596. "url": "https://github.com/fabpot",
  8597. "type": "github"
  8598. },
  8599. {
  8600. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8601. "type": "tidelift"
  8602. }
  8603. ],
  8604. "time": "2024-02-22T20:27:10+00:00"
  8605. },
  8606. {
  8607. "name": "symfony/var-dumper",
  8608. "version": "v6.4.4",
  8609. "source": {
  8610. "type": "git",
  8611. "url": "https://github.com/symfony/var-dumper.git",
  8612. "reference": "b439823f04c98b84d4366c79507e9da6230944b1"
  8613. },
  8614. "dist": {
  8615. "type": "zip",
  8616. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/b439823f04c98b84d4366c79507e9da6230944b1",
  8617. "reference": "b439823f04c98b84d4366c79507e9da6230944b1",
  8618. "shasum": ""
  8619. },
  8620. "require": {
  8621. "php": ">=8.1",
  8622. "symfony/deprecation-contracts": "^2.5|^3",
  8623. "symfony/polyfill-mbstring": "~1.0"
  8624. },
  8625. "conflict": {
  8626. "symfony/console": "<5.4"
  8627. },
  8628. "require-dev": {
  8629. "ext-iconv": "*",
  8630. "symfony/console": "^5.4|^6.0|^7.0",
  8631. "symfony/error-handler": "^6.3|^7.0",
  8632. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  8633. "symfony/process": "^5.4|^6.0|^7.0",
  8634. "symfony/uid": "^5.4|^6.0|^7.0",
  8635. "twig/twig": "^2.13|^3.0.4"
  8636. },
  8637. "bin": [
  8638. "Resources/bin/var-dump-server"
  8639. ],
  8640. "type": "library",
  8641. "autoload": {
  8642. "files": [
  8643. "Resources/functions/dump.php"
  8644. ],
  8645. "psr-4": {
  8646. "Symfony\\Component\\VarDumper\\": ""
  8647. },
  8648. "exclude-from-classmap": [
  8649. "/Tests/"
  8650. ]
  8651. },
  8652. "notification-url": "https://packagist.org/downloads/",
  8653. "license": [
  8654. "MIT"
  8655. ],
  8656. "authors": [
  8657. {
  8658. "name": "Nicolas Grekas",
  8659. "email": "p@tchwork.com"
  8660. },
  8661. {
  8662. "name": "Symfony Community",
  8663. "homepage": "https://symfony.com/contributors"
  8664. }
  8665. ],
  8666. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8667. "homepage": "https://symfony.com",
  8668. "keywords": [
  8669. "debug",
  8670. "dump"
  8671. ],
  8672. "support": {
  8673. "source": "https://github.com/symfony/var-dumper/tree/v6.4.4"
  8674. },
  8675. "funding": [
  8676. {
  8677. "url": "https://symfony.com/sponsor",
  8678. "type": "custom"
  8679. },
  8680. {
  8681. "url": "https://github.com/fabpot",
  8682. "type": "github"
  8683. },
  8684. {
  8685. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8686. "type": "tidelift"
  8687. }
  8688. ],
  8689. "time": "2024-02-15T11:23:52+00:00"
  8690. },
  8691. {
  8692. "name": "symfony/var-exporter",
  8693. "version": "v6.4.4",
  8694. "source": {
  8695. "type": "git",
  8696. "url": "https://github.com/symfony/var-exporter.git",
  8697. "reference": "0bd342e24aef49fc82a21bd4eedd3e665d177e5b"
  8698. },
  8699. "dist": {
  8700. "type": "zip",
  8701. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/0bd342e24aef49fc82a21bd4eedd3e665d177e5b",
  8702. "reference": "0bd342e24aef49fc82a21bd4eedd3e665d177e5b",
  8703. "shasum": ""
  8704. },
  8705. "require": {
  8706. "php": ">=8.1",
  8707. "symfony/deprecation-contracts": "^2.5|^3"
  8708. },
  8709. "require-dev": {
  8710. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  8711. },
  8712. "type": "library",
  8713. "autoload": {
  8714. "psr-4": {
  8715. "Symfony\\Component\\VarExporter\\": ""
  8716. },
  8717. "exclude-from-classmap": [
  8718. "/Tests/"
  8719. ]
  8720. },
  8721. "notification-url": "https://packagist.org/downloads/",
  8722. "license": [
  8723. "MIT"
  8724. ],
  8725. "authors": [
  8726. {
  8727. "name": "Nicolas Grekas",
  8728. "email": "p@tchwork.com"
  8729. },
  8730. {
  8731. "name": "Symfony Community",
  8732. "homepage": "https://symfony.com/contributors"
  8733. }
  8734. ],
  8735. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  8736. "homepage": "https://symfony.com",
  8737. "keywords": [
  8738. "clone",
  8739. "construct",
  8740. "export",
  8741. "hydrate",
  8742. "instantiate",
  8743. "lazy-loading",
  8744. "proxy",
  8745. "serialize"
  8746. ],
  8747. "support": {
  8748. "source": "https://github.com/symfony/var-exporter/tree/v6.4.4"
  8749. },
  8750. "funding": [
  8751. {
  8752. "url": "https://symfony.com/sponsor",
  8753. "type": "custom"
  8754. },
  8755. {
  8756. "url": "https://github.com/fabpot",
  8757. "type": "github"
  8758. },
  8759. {
  8760. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8761. "type": "tidelift"
  8762. }
  8763. ],
  8764. "time": "2024-02-26T08:37:45+00:00"
  8765. },
  8766. {
  8767. "name": "symfony/yaml",
  8768. "version": "v6.4.3",
  8769. "source": {
  8770. "type": "git",
  8771. "url": "https://github.com/symfony/yaml.git",
  8772. "reference": "d75715985f0f94f978e3a8fa42533e10db921b90"
  8773. },
  8774. "dist": {
  8775. "type": "zip",
  8776. "url": "https://api.github.com/repos/symfony/yaml/zipball/d75715985f0f94f978e3a8fa42533e10db921b90",
  8777. "reference": "d75715985f0f94f978e3a8fa42533e10db921b90",
  8778. "shasum": ""
  8779. },
  8780. "require": {
  8781. "php": ">=8.1",
  8782. "symfony/deprecation-contracts": "^2.5|^3",
  8783. "symfony/polyfill-ctype": "^1.8"
  8784. },
  8785. "conflict": {
  8786. "symfony/console": "<5.4"
  8787. },
  8788. "require-dev": {
  8789. "symfony/console": "^5.4|^6.0|^7.0"
  8790. },
  8791. "bin": [
  8792. "Resources/bin/yaml-lint"
  8793. ],
  8794. "type": "library",
  8795. "autoload": {
  8796. "psr-4": {
  8797. "Symfony\\Component\\Yaml\\": ""
  8798. },
  8799. "exclude-from-classmap": [
  8800. "/Tests/"
  8801. ]
  8802. },
  8803. "notification-url": "https://packagist.org/downloads/",
  8804. "license": [
  8805. "MIT"
  8806. ],
  8807. "authors": [
  8808. {
  8809. "name": "Fabien Potencier",
  8810. "email": "fabien@symfony.com"
  8811. },
  8812. {
  8813. "name": "Symfony Community",
  8814. "homepage": "https://symfony.com/contributors"
  8815. }
  8816. ],
  8817. "description": "Loads and dumps YAML files",
  8818. "homepage": "https://symfony.com",
  8819. "support": {
  8820. "source": "https://github.com/symfony/yaml/tree/v6.4.3"
  8821. },
  8822. "funding": [
  8823. {
  8824. "url": "https://symfony.com/sponsor",
  8825. "type": "custom"
  8826. },
  8827. {
  8828. "url": "https://github.com/fabpot",
  8829. "type": "github"
  8830. },
  8831. {
  8832. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8833. "type": "tidelift"
  8834. }
  8835. ],
  8836. "time": "2024-01-23T14:51:35+00:00"
  8837. },
  8838. {
  8839. "name": "twbs/bootstrap",
  8840. "version": "v4.5.0",
  8841. "source": {
  8842. "type": "git",
  8843. "url": "https://github.com/twbs/bootstrap.git",
  8844. "reference": "7a6da5e3e7ad7c749dde806546a35d4d4259d965"
  8845. },
  8846. "dist": {
  8847. "type": "zip",
  8848. "url": "https://api.github.com/repos/twbs/bootstrap/zipball/7a6da5e3e7ad7c749dde806546a35d4d4259d965",
  8849. "reference": "7a6da5e3e7ad7c749dde806546a35d4d4259d965",
  8850. "shasum": ""
  8851. },
  8852. "replace": {
  8853. "twitter/bootstrap": "self.version"
  8854. },
  8855. "type": "library",
  8856. "extra": {
  8857. "branch-alias": {
  8858. "dev-master": "3.3.x-dev"
  8859. }
  8860. },
  8861. "notification-url": "https://packagist.org/downloads/",
  8862. "license": [
  8863. "MIT"
  8864. ],
  8865. "authors": [
  8866. {
  8867. "name": "Mark Otto",
  8868. "email": "markdotto@gmail.com"
  8869. },
  8870. {
  8871. "name": "Jacob Thornton",
  8872. "email": "jacobthornton@gmail.com"
  8873. }
  8874. ],
  8875. "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
  8876. "homepage": "https://getbootstrap.com/",
  8877. "keywords": [
  8878. "JS",
  8879. "css",
  8880. "framework",
  8881. "front-end",
  8882. "mobile-first",
  8883. "responsive",
  8884. "sass",
  8885. "web"
  8886. ],
  8887. "support": {
  8888. "issues": "https://github.com/twbs/bootstrap/issues",
  8889. "source": "https://github.com/twbs/bootstrap/tree/v4-dev"
  8890. },
  8891. "funding": [
  8892. {
  8893. "url": "https://opencollective.com/bootstrap",
  8894. "type": "open_collective"
  8895. }
  8896. ],
  8897. "time": "2020-05-12T17:44:42+00:00"
  8898. },
  8899. {
  8900. "name": "twig/twig",
  8901. "version": "v3.8.0",
  8902. "source": {
  8903. "type": "git",
  8904. "url": "https://github.com/twigphp/Twig.git",
  8905. "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d"
  8906. },
  8907. "dist": {
  8908. "type": "zip",
  8909. "url": "https://api.github.com/repos/twigphp/Twig/zipball/9d15f0ac07f44dc4217883ec6ae02fd555c6f71d",
  8910. "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d",
  8911. "shasum": ""
  8912. },
  8913. "require": {
  8914. "php": ">=7.2.5",
  8915. "symfony/polyfill-ctype": "^1.8",
  8916. "symfony/polyfill-mbstring": "^1.3",
  8917. "symfony/polyfill-php80": "^1.22"
  8918. },
  8919. "require-dev": {
  8920. "psr/container": "^1.0|^2.0",
  8921. "symfony/phpunit-bridge": "^5.4.9|^6.3|^7.0"
  8922. },
  8923. "type": "library",
  8924. "autoload": {
  8925. "psr-4": {
  8926. "Twig\\": "src/"
  8927. }
  8928. },
  8929. "notification-url": "https://packagist.org/downloads/",
  8930. "license": [
  8931. "BSD-3-Clause"
  8932. ],
  8933. "authors": [
  8934. {
  8935. "name": "Fabien Potencier",
  8936. "email": "fabien@symfony.com",
  8937. "homepage": "http://fabien.potencier.org",
  8938. "role": "Lead Developer"
  8939. },
  8940. {
  8941. "name": "Twig Team",
  8942. "role": "Contributors"
  8943. },
  8944. {
  8945. "name": "Armin Ronacher",
  8946. "email": "armin.ronacher@active-4.com",
  8947. "role": "Project Founder"
  8948. }
  8949. ],
  8950. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8951. "homepage": "https://twig.symfony.com",
  8952. "keywords": [
  8953. "templating"
  8954. ],
  8955. "support": {
  8956. "issues": "https://github.com/twigphp/Twig/issues",
  8957. "source": "https://github.com/twigphp/Twig/tree/v3.8.0"
  8958. },
  8959. "funding": [
  8960. {
  8961. "url": "https://github.com/fabpot",
  8962. "type": "github"
  8963. },
  8964. {
  8965. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8966. "type": "tidelift"
  8967. }
  8968. ],
  8969. "time": "2023-11-21T18:54:41+00:00"
  8970. },
  8971. {
  8972. "name": "webflo/drupal-finder",
  8973. "version": "1.2.2",
  8974. "source": {
  8975. "type": "git",
  8976. "url": "https://github.com/webflo/drupal-finder.git",
  8977. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  8978. },
  8979. "dist": {
  8980. "type": "zip",
  8981. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  8982. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  8983. "shasum": ""
  8984. },
  8985. "require": {
  8986. "ext-json": "*"
  8987. },
  8988. "require-dev": {
  8989. "mikey179/vfsstream": "^1.6",
  8990. "phpunit/phpunit": "^4.8"
  8991. },
  8992. "type": "library",
  8993. "autoload": {
  8994. "classmap": [
  8995. "src/DrupalFinder.php"
  8996. ]
  8997. },
  8998. "notification-url": "https://packagist.org/downloads/",
  8999. "license": [
  9000. "GPL-2.0-or-later"
  9001. ],
  9002. "authors": [
  9003. {
  9004. "name": "Florian Weber",
  9005. "email": "florian@webflo.org"
  9006. }
  9007. ],
  9008. "description": "Helper class to locate a Drupal installation from a given path.",
  9009. "support": {
  9010. "issues": "https://github.com/webflo/drupal-finder/issues",
  9011. "source": "https://github.com/webflo/drupal-finder/tree/1.2.2"
  9012. },
  9013. "time": "2020-10-27T09:42:17+00:00"
  9014. }
  9015. ],
  9016. "packages-dev": [],
  9017. "aliases": [],
  9018. "minimum-stability": "dev",
  9019. "stability-flags": {
  9020. "drupal/field_pager": 10
  9021. },
  9022. "prefer-stable": true,
  9023. "prefer-lowest": false,
  9024. "platform": [],
  9025. "platform-dev": [],
  9026. "plugin-api-version": "2.6.0"
  9027. }