composer.lock 514 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746137471374813749137501375113752137531375413755137561375713758137591376013761137621376313764137651376613767137681376913770137711377213773137741377513776137771377813779137801378113782137831378413785137861378713788137891379013791137921379313794137951379613797137981379913800138011380213803138041380513806138071380813809138101381113812138131381413815138161381713818138191382013821138221382313824138251382613827138281382913830138311383213833138341383513836138371383813839138401384113842138431384413845138461384713848138491385013851138521385313854138551385613857138581385913860138611386213863138641386513866138671386813869138701387113872138731387413875138761387713878138791388013881138821388313884138851388613887138881388913890138911389213893138941389513896138971389813899139001390113902139031390413905139061390713908139091391013911139121391313914139151391613917139181391913920139211392213923139241392513926139271392813929139301393113932139331393413935139361393713938139391394013941139421394313944139451394613947139481394913950139511395213953139541395513956139571395813959139601396113962139631396413965139661396713968139691397013971139721397313974139751397613977139781397913980139811398213983139841398513986139871398813989139901399113992139931399413995139961399713998139991400014001140021400314004140051400614007140081400914010140111401214013140141401514016140171401814019140201402114022140231402414025140261402714028140291403014031140321403314034140351403614037140381403914040140411404214043140441404514046140471404814049140501405114052140531405414055140561405714058140591406014061140621406314064140651406614067140681406914070140711407214073140741407514076140771407814079140801408114082140831408414085140861408714088140891409014091140921409314094140951409614097140981409914100141011410214103141041410514106141071410814109141101411114112141131411414115141161411714118141191412014121141221412314124141251412614127141281412914130141311413214133141341413514136141371413814139141401414114142141431414414145141461414714148141491415014151141521415314154141551415614157141581415914160141611416214163141641416514166141671416814169141701417114172141731417414175141761417714178141791418014181141821418314184141851418614187141881418914190141911419214193141941419514196141971419814199142001420114202142031420414205142061420714208142091421014211142121421314214142151421614217142181421914220142211422214223142241422514226142271422814229142301423114232142331423414235142361423714238
  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": "75e341091ae07080bf8698c1dac0a3b6",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.5.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  20. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-json": "*",
  25. "php": "^5.5 || ^7.0 || ^8.0"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5",
  29. "squizlabs/php_codesniffer": "^3.6"
  30. },
  31. "type": "library",
  32. "autoload": {
  33. "files": [
  34. "src/helpers.php"
  35. ],
  36. "psr-4": {
  37. "Adbar\\": "src"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "Riku Särkinen",
  47. "email": "[email protected]"
  48. }
  49. ],
  50. "description": "PHP dot notation access to arrays",
  51. "homepage": "https://github.com/adbario/php-dot-notation",
  52. "keywords": [
  53. "ArrayAccess",
  54. "dotnotation"
  55. ],
  56. "support": {
  57. "issues": "https://github.com/adbario/php-dot-notation/issues",
  58. "source": "https://github.com/adbario/php-dot-notation/tree/2.5.0"
  59. },
  60. "time": "2022-10-14T20:31:46+00:00"
  61. },
  62. {
  63. "name": "alibabacloud/credentials",
  64. "version": "1.2.3",
  65. "source": {
  66. "type": "git",
  67. "url": "https://github.com/aliyun/credentials-php.git",
  68. "reference": "f6d1986e7b7be8da781d0b99f24c92d9860ba0c1"
  69. },
  70. "dist": {
  71. "type": "zip",
  72. "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/f6d1986e7b7be8da781d0b99f24c92d9860ba0c1",
  73. "reference": "f6d1986e7b7be8da781d0b99f24c92d9860ba0c1",
  74. "shasum": ""
  75. },
  76. "require": {
  77. "adbario/php-dot-notation": "^2.2",
  78. "alibabacloud/tea": "^3.0",
  79. "ext-curl": "*",
  80. "ext-json": "*",
  81. "ext-libxml": "*",
  82. "ext-mbstring": "*",
  83. "ext-openssl": "*",
  84. "ext-simplexml": "*",
  85. "ext-xmlwriter": "*",
  86. "guzzlehttp/guzzle": "^6.3|^7.0",
  87. "php": ">=5.6"
  88. },
  89. "require-dev": {
  90. "composer/composer": "^1.8",
  91. "drupal/coder": "^8.3",
  92. "ext-dom": "*",
  93. "ext-pcre": "*",
  94. "ext-sockets": "*",
  95. "ext-spl": "*",
  96. "mikey179/vfsstream": "^1.6",
  97. "monolog/monolog": "^1.24",
  98. "phpunit/phpunit": "^5.7|^6.6|^9.3",
  99. "psr/cache": "^1.0",
  100. "symfony/dotenv": "^3.4",
  101. "symfony/var-dumper": "^3.4"
  102. },
  103. "suggest": {
  104. "ext-sockets": "To use client-side monitoring"
  105. },
  106. "type": "library",
  107. "autoload": {
  108. "psr-4": {
  109. "AlibabaCloud\\Credentials\\": "src"
  110. }
  111. },
  112. "notification-url": "https://packagist.org/downloads/",
  113. "license": [
  114. "Apache-2.0"
  115. ],
  116. "authors": [
  117. {
  118. "name": "Alibaba Cloud SDK",
  119. "email": "[email protected]",
  120. "homepage": "http://www.alibabacloud.com"
  121. }
  122. ],
  123. "description": "Alibaba Cloud Credentials for PHP",
  124. "homepage": "https://www.alibabacloud.com/",
  125. "keywords": [
  126. "alibaba",
  127. "alibabacloud",
  128. "aliyun",
  129. "client",
  130. "cloud",
  131. "credentials",
  132. "library",
  133. "sdk",
  134. "tool"
  135. ],
  136. "support": {
  137. "issues": "https://github.com/aliyun/credentials-php/issues",
  138. "source": "https://github.com/aliyun/credentials-php"
  139. },
  140. "time": "2025-04-18T09:09:46+00:00"
  141. },
  142. {
  143. "name": "alibabacloud/darabonba-openapi",
  144. "version": "0.2.17",
  145. "source": {
  146. "type": "git",
  147. "url": "https://github.com/alibabacloud-sdk-php/darabonba-openapi.git",
  148. "reference": "051cd22db3da16ab7d0110feb3fc45dd0f999f92"
  149. },
  150. "dist": {
  151. "type": "zip",
  152. "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba-openapi/zipball/051cd22db3da16ab7d0110feb3fc45dd0f999f92",
  153. "reference": "051cd22db3da16ab7d0110feb3fc45dd0f999f92",
  154. "shasum": ""
  155. },
  156. "require": {
  157. "alibabacloud/credentials": "^1.2.2",
  158. "alibabacloud/gateway-spi": "^1",
  159. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  160. "alibabacloud/tea-utils": "^0.2.21",
  161. "alibabacloud/tea-xml": "^0.2",
  162. "php": ">5.5"
  163. },
  164. "type": "library",
  165. "autoload": {
  166. "psr-4": {
  167. "Darabonba\\OpenApi\\": "src"
  168. }
  169. },
  170. "notification-url": "https://packagist.org/downloads/",
  171. "license": [
  172. "Apache-2.0"
  173. ],
  174. "authors": [
  175. {
  176. "name": "Alibaba Cloud SDK",
  177. "email": "[email protected]"
  178. }
  179. ],
  180. "description": "Alibaba Cloud OpenApi Client",
  181. "support": {
  182. "issues": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/issues",
  183. "source": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/tree/0.2.17"
  184. },
  185. "time": "2025-07-04T09:26:04+00:00"
  186. },
  187. {
  188. "name": "alibabacloud/dm-20170622",
  189. "version": "1.2.4",
  190. "source": {
  191. "type": "git",
  192. "url": "https://github.com/alibabacloud-sdk-php/dm-20170622.git",
  193. "reference": "985f4897a079cdb59a0a11dd7243ff1650d9234c"
  194. },
  195. "dist": {
  196. "type": "zip",
  197. "url": "https://api.github.com/repos/alibabacloud-sdk-php/dm-20170622/zipball/985f4897a079cdb59a0a11dd7243ff1650d9234c",
  198. "reference": "985f4897a079cdb59a0a11dd7243ff1650d9234c",
  199. "shasum": ""
  200. },
  201. "require": {
  202. "alibabacloud/darabonba-openapi": "^0.2.12",
  203. "alibabacloud/endpoint-util": "^0.1.0",
  204. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  205. "alibabacloud/tea-utils": "^0.2.20",
  206. "php": ">5.5"
  207. },
  208. "type": "library",
  209. "autoload": {
  210. "psr-4": {
  211. "AlibabaCloud\\SDK\\Dm\\V20170622\\": "src"
  212. }
  213. },
  214. "notification-url": "https://packagist.org/downloads/",
  215. "license": [
  216. "Apache-2.0"
  217. ],
  218. "authors": [
  219. {
  220. "name": "Alibaba Cloud SDK",
  221. "email": "[email protected]"
  222. }
  223. ],
  224. "description": "Alibaba Cloud Dm (20170622) SDK Library for PHP",
  225. "support": {
  226. "source": "https://github.com/alibabacloud-sdk-php/dm-20170622/tree/1.2.4"
  227. },
  228. "time": "2024-07-31T17:22:27+00:00"
  229. },
  230. {
  231. "name": "alibabacloud/endpoint-util",
  232. "version": "0.1.1",
  233. "source": {
  234. "type": "git",
  235. "url": "https://github.com/alibabacloud-sdk-php/endpoint-util.git",
  236. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5"
  237. },
  238. "dist": {
  239. "type": "zip",
  240. "url": "https://api.github.com/repos/alibabacloud-sdk-php/endpoint-util/zipball/f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  241. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  242. "shasum": ""
  243. },
  244. "require": {
  245. "php": ">5.5"
  246. },
  247. "require-dev": {
  248. "phpunit/phpunit": "^4.8.35|^5.4.3"
  249. },
  250. "type": "library",
  251. "autoload": {
  252. "psr-4": {
  253. "AlibabaCloud\\Endpoint\\": "src"
  254. }
  255. },
  256. "notification-url": "https://packagist.org/downloads/",
  257. "license": [
  258. "Apache-2.0"
  259. ],
  260. "authors": [
  261. {
  262. "name": "Alibaba Cloud SDK",
  263. "email": "[email protected]"
  264. }
  265. ],
  266. "description": "Alibaba Cloud Endpoint Library for PHP",
  267. "support": {
  268. "source": "https://github.com/alibabacloud-sdk-php/endpoint-util/tree/0.1.1"
  269. },
  270. "time": "2020-06-04T10:57:15+00:00"
  271. },
  272. {
  273. "name": "alibabacloud/gateway-spi",
  274. "version": "1.0.0",
  275. "source": {
  276. "type": "git",
  277. "url": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi.git",
  278. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb"
  279. },
  280. "dist": {
  281. "type": "zip",
  282. "url": "https://api.github.com/repos/alibabacloud-sdk-php/alibabacloud-gateway-spi/zipball/7440f77750c329d8ab252db1d1d967314ccd1fcb",
  283. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb",
  284. "shasum": ""
  285. },
  286. "require": {
  287. "alibabacloud/credentials": "^1.1",
  288. "php": ">5.5"
  289. },
  290. "type": "library",
  291. "autoload": {
  292. "psr-4": {
  293. "Darabonba\\GatewaySpi\\": "src"
  294. }
  295. },
  296. "notification-url": "https://packagist.org/downloads/",
  297. "license": [
  298. "Apache-2.0"
  299. ],
  300. "authors": [
  301. {
  302. "name": "Alibaba Cloud SDK",
  303. "email": "[email protected]"
  304. }
  305. ],
  306. "description": "Alibaba Cloud Gateway SPI Client",
  307. "support": {
  308. "source": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi/tree/1.0.0"
  309. },
  310. "time": "2022-07-14T05:31:35+00:00"
  311. },
  312. {
  313. "name": "alibabacloud/openapi-util",
  314. "version": "0.2.1",
  315. "source": {
  316. "type": "git",
  317. "url": "https://github.com/alibabacloud-sdk-php/openapi-util.git",
  318. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a"
  319. },
  320. "dist": {
  321. "type": "zip",
  322. "url": "https://api.github.com/repos/alibabacloud-sdk-php/openapi-util/zipball/f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  323. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  324. "shasum": ""
  325. },
  326. "require": {
  327. "alibabacloud/tea": "^3.1",
  328. "alibabacloud/tea-utils": "^0.2",
  329. "lizhichao/one-sm": "^1.5",
  330. "php": ">5.5"
  331. },
  332. "require-dev": {
  333. "phpunit/phpunit": "*"
  334. },
  335. "type": "library",
  336. "autoload": {
  337. "psr-4": {
  338. "AlibabaCloud\\OpenApiUtil\\": "src"
  339. }
  340. },
  341. "notification-url": "https://packagist.org/downloads/",
  342. "license": [
  343. "Apache-2.0"
  344. ],
  345. "authors": [
  346. {
  347. "name": "Alibaba Cloud SDK",
  348. "email": "[email protected]"
  349. }
  350. ],
  351. "description": "Alibaba Cloud OpenApi Util",
  352. "support": {
  353. "issues": "https://github.com/alibabacloud-sdk-php/openapi-util/issues",
  354. "source": "https://github.com/alibabacloud-sdk-php/openapi-util/tree/0.2.1"
  355. },
  356. "time": "2023-01-10T09:10:10+00:00"
  357. },
  358. {
  359. "name": "alibabacloud/tea",
  360. "version": "3.2.1",
  361. "source": {
  362. "type": "git",
  363. "url": "https://github.com/aliyun/tea-php.git",
  364. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367"
  365. },
  366. "dist": {
  367. "type": "zip",
  368. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/1619cb96c158384f72b873e1f85de8b299c9c367",
  369. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367",
  370. "shasum": ""
  371. },
  372. "require": {
  373. "adbario/php-dot-notation": "^2.4",
  374. "ext-curl": "*",
  375. "ext-json": "*",
  376. "ext-libxml": "*",
  377. "ext-mbstring": "*",
  378. "ext-openssl": "*",
  379. "ext-simplexml": "*",
  380. "ext-xmlwriter": "*",
  381. "guzzlehttp/guzzle": "^6.3|^7.0",
  382. "php": ">=5.5"
  383. },
  384. "require-dev": {
  385. "phpunit/phpunit": "*",
  386. "symfony/dotenv": "^3.4",
  387. "symfony/var-dumper": "^3.4"
  388. },
  389. "suggest": {
  390. "ext-sockets": "To use client-side monitoring"
  391. },
  392. "type": "library",
  393. "autoload": {
  394. "psr-4": {
  395. "AlibabaCloud\\Tea\\": "src"
  396. }
  397. },
  398. "notification-url": "https://packagist.org/downloads/",
  399. "license": [
  400. "Apache-2.0"
  401. ],
  402. "authors": [
  403. {
  404. "name": "Alibaba Cloud SDK",
  405. "email": "[email protected]",
  406. "homepage": "http://www.alibabacloud.com"
  407. }
  408. ],
  409. "description": "Client of Tea for PHP",
  410. "homepage": "https://www.alibabacloud.com/",
  411. "keywords": [
  412. "alibabacloud",
  413. "client",
  414. "cloud",
  415. "tea"
  416. ],
  417. "support": {
  418. "issues": "https://github.com/aliyun/tea-php/issues",
  419. "source": "https://github.com/aliyun/tea-php"
  420. },
  421. "time": "2023-05-16T06:43:41+00:00"
  422. },
  423. {
  424. "name": "alibabacloud/tea-utils",
  425. "version": "0.2.21",
  426. "source": {
  427. "type": "git",
  428. "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git",
  429. "reference": "5039e45714c6456186d267f5d81a4b260a652495"
  430. },
  431. "dist": {
  432. "type": "zip",
  433. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/5039e45714c6456186d267f5d81a4b260a652495",
  434. "reference": "5039e45714c6456186d267f5d81a4b260a652495",
  435. "shasum": ""
  436. },
  437. "require": {
  438. "alibabacloud/tea": "^3.1",
  439. "php": ">5.5"
  440. },
  441. "type": "library",
  442. "autoload": {
  443. "psr-4": {
  444. "AlibabaCloud\\Tea\\Utils\\": "src"
  445. }
  446. },
  447. "notification-url": "https://packagist.org/downloads/",
  448. "license": [
  449. "Apache-2.0"
  450. ],
  451. "authors": [
  452. {
  453. "name": "Alibaba Cloud SDK",
  454. "email": "[email protected]"
  455. }
  456. ],
  457. "description": "Alibaba Cloud Tea Utils for PHP",
  458. "support": {
  459. "issues": "https://github.com/aliyun/tea-util/issues",
  460. "source": "https://github.com/aliyun/tea-util"
  461. },
  462. "time": "2024-07-05T06:05:54+00:00"
  463. },
  464. {
  465. "name": "alibabacloud/tea-xml",
  466. "version": "0.2.4",
  467. "source": {
  468. "type": "git",
  469. "url": "https://github.com/alibabacloud-sdk-php/tea-xml.git",
  470. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a"
  471. },
  472. "dist": {
  473. "type": "zip",
  474. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-xml/zipball/3e0c000bf536224eebbac913c371bef174c0a16a",
  475. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a",
  476. "shasum": ""
  477. },
  478. "require": {
  479. "php": ">5.5"
  480. },
  481. "require-dev": {
  482. "phpunit/phpunit": "*",
  483. "symfony/var-dumper": "*"
  484. },
  485. "type": "library",
  486. "autoload": {
  487. "psr-4": {
  488. "AlibabaCloud\\Tea\\XML\\": "src"
  489. }
  490. },
  491. "notification-url": "https://packagist.org/downloads/",
  492. "license": [
  493. "Apache-2.0"
  494. ],
  495. "authors": [
  496. {
  497. "name": "Alibaba Cloud SDK",
  498. "email": "[email protected]"
  499. }
  500. ],
  501. "description": "Alibaba Cloud Tea XML Library for PHP",
  502. "support": {
  503. "source": "https://github.com/alibabacloud-sdk-php/tea-xml/tree/0.2.4"
  504. },
  505. "time": "2022-08-02T04:12:58+00:00"
  506. },
  507. {
  508. "name": "alipaysdk/openapi",
  509. "version": "dev-master",
  510. "source": {
  511. "type": "git",
  512. "url": "https://github.com/alipay/alipay-sdk-php-all.git",
  513. "reference": "1a9b8a701f03a7889a79f1e240454daf0169b0c0"
  514. },
  515. "dist": {
  516. "type": "zip",
  517. "url": "https://api.github.com/repos/alipay/alipay-sdk-php-all/zipball/1a9b8a701f03a7889a79f1e240454daf0169b0c0",
  518. "reference": "1a9b8a701f03a7889a79f1e240454daf0169b0c0",
  519. "shasum": ""
  520. },
  521. "require": {
  522. "ext-bcmath": "*",
  523. "ext-curl": "*",
  524. "ext-dom": "*",
  525. "ext-json": "*",
  526. "ext-mbstring": "*",
  527. "ext-openssl": "*",
  528. "guzzlehttp/guzzle": "^7.3",
  529. "guzzlehttp/psr7": "^1.7 || ^2.0",
  530. "php": "^7.4 || ^8.0"
  531. },
  532. "require-dev": {
  533. "friendsofphp/php-cs-fixer": "^3.5",
  534. "phpunit/phpunit": "^8.0 || ^9.0"
  535. },
  536. "default-branch": true,
  537. "type": "library",
  538. "autoload": {
  539. "psr-4": {
  540. "Alipay\\OpenAPISDK\\": "v3/src/"
  541. }
  542. },
  543. "notification-url": "https://packagist.org/downloads/",
  544. "license": [
  545. "unlicense"
  546. ],
  547. "authors": [
  548. {
  549. "name": "OpenAPI-Generator contributors",
  550. "homepage": "https://openapi-generator.tech"
  551. }
  552. ],
  553. "description": "支付宝开放平台v3协议文档",
  554. "homepage": "https://openapi-generator.tech",
  555. "keywords": [
  556. "api",
  557. "openapi",
  558. "openapi-generator",
  559. "openapitools",
  560. "php",
  561. "rest",
  562. "sdk"
  563. ],
  564. "support": {
  565. "source": "https://github.com/alipay/alipay-sdk-php-all/tree/master"
  566. },
  567. "time": "2025-07-29T04:31:39+00:00"
  568. },
  569. {
  570. "name": "aws/aws-crt-php",
  571. "version": "v1.2.7",
  572. "source": {
  573. "type": "git",
  574. "url": "https://github.com/awslabs/aws-crt-php.git",
  575. "reference": "d71d9906c7bb63a28295447ba12e74723bd3730e"
  576. },
  577. "dist": {
  578. "type": "zip",
  579. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/d71d9906c7bb63a28295447ba12e74723bd3730e",
  580. "reference": "d71d9906c7bb63a28295447ba12e74723bd3730e",
  581. "shasum": ""
  582. },
  583. "require": {
  584. "php": ">=5.5"
  585. },
  586. "require-dev": {
  587. "phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
  588. "yoast/phpunit-polyfills": "^1.0"
  589. },
  590. "suggest": {
  591. "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
  592. },
  593. "type": "library",
  594. "autoload": {
  595. "classmap": [
  596. "src/"
  597. ]
  598. },
  599. "notification-url": "https://packagist.org/downloads/",
  600. "license": [
  601. "Apache-2.0"
  602. ],
  603. "authors": [
  604. {
  605. "name": "AWS SDK Common Runtime Team",
  606. "email": "[email protected]"
  607. }
  608. ],
  609. "description": "AWS Common Runtime for PHP",
  610. "homepage": "https://github.com/awslabs/aws-crt-php",
  611. "keywords": [
  612. "amazon",
  613. "aws",
  614. "crt",
  615. "sdk"
  616. ],
  617. "support": {
  618. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  619. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.7"
  620. },
  621. "time": "2024-10-18T22:15:13+00:00"
  622. },
  623. {
  624. "name": "aws/aws-sdk-php",
  625. "version": "3.352.0",
  626. "source": {
  627. "type": "git",
  628. "url": "https://github.com/aws/aws-sdk-php.git",
  629. "reference": "7f3ad0da2545b24259273ea7ab892188bae7d91b"
  630. },
  631. "dist": {
  632. "type": "zip",
  633. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/7f3ad0da2545b24259273ea7ab892188bae7d91b",
  634. "reference": "7f3ad0da2545b24259273ea7ab892188bae7d91b",
  635. "shasum": ""
  636. },
  637. "require": {
  638. "aws/aws-crt-php": "^1.2.3",
  639. "ext-json": "*",
  640. "ext-pcre": "*",
  641. "ext-simplexml": "*",
  642. "guzzlehttp/guzzle": "^7.4.5",
  643. "guzzlehttp/promises": "^2.0",
  644. "guzzlehttp/psr7": "^2.4.5",
  645. "mtdowling/jmespath.php": "^2.8.0",
  646. "php": ">=8.1",
  647. "psr/http-message": "^2.0"
  648. },
  649. "require-dev": {
  650. "andrewsville/php-token-reflection": "^1.4",
  651. "aws/aws-php-sns-message-validator": "~1.0",
  652. "behat/behat": "~3.0",
  653. "composer/composer": "^2.7.8",
  654. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  655. "doctrine/cache": "~1.4",
  656. "ext-dom": "*",
  657. "ext-openssl": "*",
  658. "ext-pcntl": "*",
  659. "ext-sockets": "*",
  660. "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
  661. "psr/cache": "^2.0 || ^3.0",
  662. "psr/simple-cache": "^2.0 || ^3.0",
  663. "sebastian/comparator": "^1.2.3 || ^4.0 || ^5.0",
  664. "symfony/filesystem": "^v6.4.0 || ^v7.1.0",
  665. "yoast/phpunit-polyfills": "^2.0"
  666. },
  667. "suggest": {
  668. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  669. "doctrine/cache": "To use the DoctrineCacheAdapter",
  670. "ext-curl": "To send requests using cURL",
  671. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  672. "ext-sockets": "To use client-side monitoring"
  673. },
  674. "type": "library",
  675. "extra": {
  676. "branch-alias": {
  677. "dev-master": "3.0-dev"
  678. }
  679. },
  680. "autoload": {
  681. "files": [
  682. "src/functions.php"
  683. ],
  684. "psr-4": {
  685. "Aws\\": "src/"
  686. },
  687. "exclude-from-classmap": [
  688. "src/data/"
  689. ]
  690. },
  691. "notification-url": "https://packagist.org/downloads/",
  692. "license": [
  693. "Apache-2.0"
  694. ],
  695. "authors": [
  696. {
  697. "name": "Amazon Web Services",
  698. "homepage": "http://aws.amazon.com"
  699. }
  700. ],
  701. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  702. "homepage": "http://aws.amazon.com/sdkforphp",
  703. "keywords": [
  704. "amazon",
  705. "aws",
  706. "cloud",
  707. "dynamodb",
  708. "ec2",
  709. "glacier",
  710. "s3",
  711. "sdk"
  712. ],
  713. "support": {
  714. "forum": "https://github.com/aws/aws-sdk-php/discussions",
  715. "issues": "https://github.com/aws/aws-sdk-php/issues",
  716. "source": "https://github.com/aws/aws-sdk-php/tree/3.352.0"
  717. },
  718. "time": "2025-08-01T18:04:23+00:00"
  719. },
  720. {
  721. "name": "bacon/bacon-qr-code",
  722. "version": "v3.0.1",
  723. "source": {
  724. "type": "git",
  725. "url": "https://github.com/Bacon/BaconQrCode.git",
  726. "reference": "f9cc1f52b5a463062251d666761178dbdb6b544f"
  727. },
  728. "dist": {
  729. "type": "zip",
  730. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/f9cc1f52b5a463062251d666761178dbdb6b544f",
  731. "reference": "f9cc1f52b5a463062251d666761178dbdb6b544f",
  732. "shasum": ""
  733. },
  734. "require": {
  735. "dasprid/enum": "^1.0.3",
  736. "ext-iconv": "*",
  737. "php": "^8.1"
  738. },
  739. "require-dev": {
  740. "phly/keep-a-changelog": "^2.12",
  741. "phpunit/phpunit": "^10.5.11 || 11.0.4",
  742. "spatie/phpunit-snapshot-assertions": "^5.1.5",
  743. "squizlabs/php_codesniffer": "^3.9"
  744. },
  745. "suggest": {
  746. "ext-imagick": "to generate QR code images"
  747. },
  748. "type": "library",
  749. "autoload": {
  750. "psr-4": {
  751. "BaconQrCode\\": "src/"
  752. }
  753. },
  754. "notification-url": "https://packagist.org/downloads/",
  755. "license": [
  756. "BSD-2-Clause"
  757. ],
  758. "authors": [
  759. {
  760. "name": "Ben Scholzen 'DASPRiD'",
  761. "email": "[email protected]",
  762. "homepage": "https://dasprids.de/",
  763. "role": "Developer"
  764. }
  765. ],
  766. "description": "BaconQrCode is a QR code generator for PHP.",
  767. "homepage": "https://github.com/Bacon/BaconQrCode",
  768. "support": {
  769. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  770. "source": "https://github.com/Bacon/BaconQrCode/tree/v3.0.1"
  771. },
  772. "time": "2024-10-01T13:55:55+00:00"
  773. },
  774. {
  775. "name": "beberlei/assert",
  776. "version": "v3.3.3",
  777. "source": {
  778. "type": "git",
  779. "url": "https://github.com/beberlei/assert.git",
  780. "reference": "b5fd8eacd8915a1b627b8bfc027803f1939734dd"
  781. },
  782. "dist": {
  783. "type": "zip",
  784. "url": "https://api.github.com/repos/beberlei/assert/zipball/b5fd8eacd8915a1b627b8bfc027803f1939734dd",
  785. "reference": "b5fd8eacd8915a1b627b8bfc027803f1939734dd",
  786. "shasum": ""
  787. },
  788. "require": {
  789. "ext-ctype": "*",
  790. "ext-json": "*",
  791. "ext-mbstring": "*",
  792. "ext-simplexml": "*",
  793. "php": "^7.1 || ^8.0"
  794. },
  795. "require-dev": {
  796. "friendsofphp/php-cs-fixer": "*",
  797. "phpstan/phpstan": "*",
  798. "phpunit/phpunit": ">=6.0.0",
  799. "yoast/phpunit-polyfills": "^0.1.0"
  800. },
  801. "suggest": {
  802. "ext-intl": "Needed to allow Assertion::count(), Assertion::isCountable(), Assertion::minCount(), and Assertion::maxCount() to operate on ResourceBundles"
  803. },
  804. "type": "library",
  805. "autoload": {
  806. "files": [
  807. "lib/Assert/functions.php"
  808. ],
  809. "psr-4": {
  810. "Assert\\": "lib/Assert"
  811. }
  812. },
  813. "notification-url": "https://packagist.org/downloads/",
  814. "license": [
  815. "BSD-2-Clause"
  816. ],
  817. "authors": [
  818. {
  819. "name": "Benjamin Eberlei",
  820. "email": "[email protected]",
  821. "role": "Lead Developer"
  822. },
  823. {
  824. "name": "Richard Quadling",
  825. "email": "[email protected]",
  826. "role": "Collaborator"
  827. }
  828. ],
  829. "description": "Thin assertion library for input validation in business models.",
  830. "keywords": [
  831. "assert",
  832. "assertion",
  833. "validation"
  834. ],
  835. "support": {
  836. "issues": "https://github.com/beberlei/assert/issues",
  837. "source": "https://github.com/beberlei/assert/tree/v3.3.3"
  838. },
  839. "time": "2024-07-15T13:18:35+00:00"
  840. },
  841. {
  842. "name": "brick/math",
  843. "version": "0.12.3",
  844. "source": {
  845. "type": "git",
  846. "url": "https://github.com/brick/math.git",
  847. "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba"
  848. },
  849. "dist": {
  850. "type": "zip",
  851. "url": "https://api.github.com/repos/brick/math/zipball/866551da34e9a618e64a819ee1e01c20d8a588ba",
  852. "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba",
  853. "shasum": ""
  854. },
  855. "require": {
  856. "php": "^8.1"
  857. },
  858. "require-dev": {
  859. "php-coveralls/php-coveralls": "^2.2",
  860. "phpunit/phpunit": "^10.1",
  861. "vimeo/psalm": "6.8.8"
  862. },
  863. "type": "library",
  864. "autoload": {
  865. "psr-4": {
  866. "Brick\\Math\\": "src/"
  867. }
  868. },
  869. "notification-url": "https://packagist.org/downloads/",
  870. "license": [
  871. "MIT"
  872. ],
  873. "description": "Arbitrary-precision arithmetic library",
  874. "keywords": [
  875. "Arbitrary-precision",
  876. "BigInteger",
  877. "BigRational",
  878. "arithmetic",
  879. "bigdecimal",
  880. "bignum",
  881. "bignumber",
  882. "brick",
  883. "decimal",
  884. "integer",
  885. "math",
  886. "mathematics",
  887. "rational"
  888. ],
  889. "support": {
  890. "issues": "https://github.com/brick/math/issues",
  891. "source": "https://github.com/brick/math/tree/0.12.3"
  892. },
  893. "funding": [
  894. {
  895. "url": "https://github.com/BenMorel",
  896. "type": "github"
  897. }
  898. ],
  899. "time": "2025-02-28T13:11:00+00:00"
  900. },
  901. {
  902. "name": "carbonphp/carbon-doctrine-types",
  903. "version": "3.2.0",
  904. "source": {
  905. "type": "git",
  906. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  907. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  908. },
  909. "dist": {
  910. "type": "zip",
  911. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  912. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  913. "shasum": ""
  914. },
  915. "require": {
  916. "php": "^8.1"
  917. },
  918. "conflict": {
  919. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  920. },
  921. "require-dev": {
  922. "doctrine/dbal": "^4.0.0",
  923. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  924. "phpunit/phpunit": "^10.3"
  925. },
  926. "type": "library",
  927. "autoload": {
  928. "psr-4": {
  929. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  930. }
  931. },
  932. "notification-url": "https://packagist.org/downloads/",
  933. "license": [
  934. "MIT"
  935. ],
  936. "authors": [
  937. {
  938. "name": "KyleKatarn",
  939. "email": "[email protected]"
  940. }
  941. ],
  942. "description": "Types to use Carbon in Doctrine",
  943. "keywords": [
  944. "carbon",
  945. "date",
  946. "datetime",
  947. "doctrine",
  948. "time"
  949. ],
  950. "support": {
  951. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  952. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  953. },
  954. "funding": [
  955. {
  956. "url": "https://github.com/kylekatarnls",
  957. "type": "github"
  958. },
  959. {
  960. "url": "https://opencollective.com/Carbon",
  961. "type": "open_collective"
  962. },
  963. {
  964. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  965. "type": "tidelift"
  966. }
  967. ],
  968. "time": "2024-02-09T16:56:22+00:00"
  969. },
  970. {
  971. "name": "clue/stream-filter",
  972. "version": "v1.7.0",
  973. "source": {
  974. "type": "git",
  975. "url": "https://github.com/clue/stream-filter.git",
  976. "reference": "049509fef80032cb3f051595029ab75b49a3c2f7"
  977. },
  978. "dist": {
  979. "type": "zip",
  980. "url": "https://api.github.com/repos/clue/stream-filter/zipball/049509fef80032cb3f051595029ab75b49a3c2f7",
  981. "reference": "049509fef80032cb3f051595029ab75b49a3c2f7",
  982. "shasum": ""
  983. },
  984. "require": {
  985. "php": ">=5.3"
  986. },
  987. "require-dev": {
  988. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  989. },
  990. "type": "library",
  991. "autoload": {
  992. "files": [
  993. "src/functions_include.php"
  994. ],
  995. "psr-4": {
  996. "Clue\\StreamFilter\\": "src/"
  997. }
  998. },
  999. "notification-url": "https://packagist.org/downloads/",
  1000. "license": [
  1001. "MIT"
  1002. ],
  1003. "authors": [
  1004. {
  1005. "name": "Christian Lück",
  1006. "email": "[email protected]"
  1007. }
  1008. ],
  1009. "description": "A simple and modern approach to stream filtering in PHP",
  1010. "homepage": "https://github.com/clue/stream-filter",
  1011. "keywords": [
  1012. "bucket brigade",
  1013. "callback",
  1014. "filter",
  1015. "php_user_filter",
  1016. "stream",
  1017. "stream_filter_append",
  1018. "stream_filter_register"
  1019. ],
  1020. "support": {
  1021. "issues": "https://github.com/clue/stream-filter/issues",
  1022. "source": "https://github.com/clue/stream-filter/tree/v1.7.0"
  1023. },
  1024. "funding": [
  1025. {
  1026. "url": "https://clue.engineering/support",
  1027. "type": "custom"
  1028. },
  1029. {
  1030. "url": "https://github.com/clue",
  1031. "type": "github"
  1032. }
  1033. ],
  1034. "time": "2023-12-20T15:40:13+00:00"
  1035. },
  1036. {
  1037. "name": "composer/ca-bundle",
  1038. "version": "1.5.7",
  1039. "source": {
  1040. "type": "git",
  1041. "url": "https://github.com/composer/ca-bundle.git",
  1042. "reference": "d665d22c417056996c59019579f1967dfe5c1e82"
  1043. },
  1044. "dist": {
  1045. "type": "zip",
  1046. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/d665d22c417056996c59019579f1967dfe5c1e82",
  1047. "reference": "d665d22c417056996c59019579f1967dfe5c1e82",
  1048. "shasum": ""
  1049. },
  1050. "require": {
  1051. "ext-openssl": "*",
  1052. "ext-pcre": "*",
  1053. "php": "^7.2 || ^8.0"
  1054. },
  1055. "require-dev": {
  1056. "phpstan/phpstan": "^1.10",
  1057. "phpunit/phpunit": "^8 || ^9",
  1058. "psr/log": "^1.0 || ^2.0 || ^3.0",
  1059. "symfony/process": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  1060. },
  1061. "type": "library",
  1062. "extra": {
  1063. "branch-alias": {
  1064. "dev-main": "1.x-dev"
  1065. }
  1066. },
  1067. "autoload": {
  1068. "psr-4": {
  1069. "Composer\\CaBundle\\": "src"
  1070. }
  1071. },
  1072. "notification-url": "https://packagist.org/downloads/",
  1073. "license": [
  1074. "MIT"
  1075. ],
  1076. "authors": [
  1077. {
  1078. "name": "Jordi Boggiano",
  1079. "email": "[email protected]",
  1080. "homepage": "http://seld.be"
  1081. }
  1082. ],
  1083. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  1084. "keywords": [
  1085. "cabundle",
  1086. "cacert",
  1087. "certificate",
  1088. "ssl",
  1089. "tls"
  1090. ],
  1091. "support": {
  1092. "irc": "irc://irc.freenode.org/composer",
  1093. "issues": "https://github.com/composer/ca-bundle/issues",
  1094. "source": "https://github.com/composer/ca-bundle/tree/1.5.7"
  1095. },
  1096. "funding": [
  1097. {
  1098. "url": "https://packagist.com",
  1099. "type": "custom"
  1100. },
  1101. {
  1102. "url": "https://github.com/composer",
  1103. "type": "github"
  1104. },
  1105. {
  1106. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  1107. "type": "tidelift"
  1108. }
  1109. ],
  1110. "time": "2025-05-26T15:08:54+00:00"
  1111. },
  1112. {
  1113. "name": "danielsreichenbach/geoip2-update",
  1114. "version": "v2.5.1",
  1115. "source": {
  1116. "type": "git",
  1117. "url": "https://github.com/danielsreichenbach/geoip2-update.git",
  1118. "reference": "382bb3c60214da80330718d0e3290aae26683511"
  1119. },
  1120. "dist": {
  1121. "type": "zip",
  1122. "url": "https://api.github.com/repos/danielsreichenbach/geoip2-update/zipball/382bb3c60214da80330718d0e3290aae26683511",
  1123. "reference": "382bb3c60214da80330718d0e3290aae26683511",
  1124. "shasum": ""
  1125. },
  1126. "require": {
  1127. "composer-plugin-api": "^2",
  1128. "ext-curl": "*",
  1129. "ext-json": "*",
  1130. "php": "^7.2.5 || ^8.0"
  1131. },
  1132. "require-dev": {
  1133. "composer/composer": "^2",
  1134. "symfony/console": "^5.4 || ^6.0 || ^7.0"
  1135. },
  1136. "type": "library",
  1137. "autoload": {
  1138. "psr-4": {
  1139. "danielsreichenbach\\GeoIP2Update\\": "src/"
  1140. }
  1141. },
  1142. "notification-url": "https://packagist.org/downloads/",
  1143. "license": [
  1144. "MIT"
  1145. ],
  1146. "authors": [
  1147. {
  1148. "name": "Andrey Tronov",
  1149. "email": "[email protected]"
  1150. },
  1151. {
  1152. "name": "Daniel S. Reichenbach",
  1153. "email": "[email protected]"
  1154. }
  1155. ],
  1156. "description": "Update GeoIP2/GeoLite2 databases from your script, program or via composer.",
  1157. "keywords": [
  1158. "geoip",
  1159. "geoip2",
  1160. "geolite2",
  1161. "geolocation",
  1162. "maxmind"
  1163. ],
  1164. "support": {
  1165. "email": "[email protected]",
  1166. "issues": "https://github.com/danielsreichenbach/geoip2-update/issues",
  1167. "source": "https://github.com/danielsreichenbach/geoip2-update/tree/v2.5.1"
  1168. },
  1169. "time": "2025-06-30T06:38:25+00:00"
  1170. },
  1171. {
  1172. "name": "dasprid/enum",
  1173. "version": "1.0.6",
  1174. "source": {
  1175. "type": "git",
  1176. "url": "https://github.com/DASPRiD/Enum.git",
  1177. "reference": "8dfd07c6d2cf31c8da90c53b83c026c7696dda90"
  1178. },
  1179. "dist": {
  1180. "type": "zip",
  1181. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/8dfd07c6d2cf31c8da90c53b83c026c7696dda90",
  1182. "reference": "8dfd07c6d2cf31c8da90c53b83c026c7696dda90",
  1183. "shasum": ""
  1184. },
  1185. "require": {
  1186. "php": ">=7.1 <9.0"
  1187. },
  1188. "require-dev": {
  1189. "phpunit/phpunit": "^7 || ^8 || ^9 || ^10 || ^11",
  1190. "squizlabs/php_codesniffer": "*"
  1191. },
  1192. "type": "library",
  1193. "autoload": {
  1194. "psr-4": {
  1195. "DASPRiD\\Enum\\": "src/"
  1196. }
  1197. },
  1198. "notification-url": "https://packagist.org/downloads/",
  1199. "license": [
  1200. "BSD-2-Clause"
  1201. ],
  1202. "authors": [
  1203. {
  1204. "name": "Ben Scholzen 'DASPRiD'",
  1205. "email": "[email protected]",
  1206. "homepage": "https://dasprids.de/",
  1207. "role": "Developer"
  1208. }
  1209. ],
  1210. "description": "PHP 7.1 enum implementation",
  1211. "keywords": [
  1212. "enum",
  1213. "map"
  1214. ],
  1215. "support": {
  1216. "issues": "https://github.com/DASPRiD/Enum/issues",
  1217. "source": "https://github.com/DASPRiD/Enum/tree/1.0.6"
  1218. },
  1219. "time": "2024-08-09T14:30:48+00:00"
  1220. },
  1221. {
  1222. "name": "doctrine/deprecations",
  1223. "version": "1.1.5",
  1224. "source": {
  1225. "type": "git",
  1226. "url": "https://github.com/doctrine/deprecations.git",
  1227. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38"
  1228. },
  1229. "dist": {
  1230. "type": "zip",
  1231. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  1232. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  1233. "shasum": ""
  1234. },
  1235. "require": {
  1236. "php": "^7.1 || ^8.0"
  1237. },
  1238. "conflict": {
  1239. "phpunit/phpunit": "<=7.5 || >=13"
  1240. },
  1241. "require-dev": {
  1242. "doctrine/coding-standard": "^9 || ^12 || ^13",
  1243. "phpstan/phpstan": "1.4.10 || 2.1.11",
  1244. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  1245. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12",
  1246. "psr/log": "^1 || ^2 || ^3"
  1247. },
  1248. "suggest": {
  1249. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1250. },
  1251. "type": "library",
  1252. "autoload": {
  1253. "psr-4": {
  1254. "Doctrine\\Deprecations\\": "src"
  1255. }
  1256. },
  1257. "notification-url": "https://packagist.org/downloads/",
  1258. "license": [
  1259. "MIT"
  1260. ],
  1261. "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.",
  1262. "homepage": "https://www.doctrine-project.org/",
  1263. "support": {
  1264. "issues": "https://github.com/doctrine/deprecations/issues",
  1265. "source": "https://github.com/doctrine/deprecations/tree/1.1.5"
  1266. },
  1267. "time": "2025-04-07T20:06:18+00:00"
  1268. },
  1269. {
  1270. "name": "doctrine/inflector",
  1271. "version": "2.0.10",
  1272. "source": {
  1273. "type": "git",
  1274. "url": "https://github.com/doctrine/inflector.git",
  1275. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  1276. },
  1277. "dist": {
  1278. "type": "zip",
  1279. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1280. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1281. "shasum": ""
  1282. },
  1283. "require": {
  1284. "php": "^7.2 || ^8.0"
  1285. },
  1286. "require-dev": {
  1287. "doctrine/coding-standard": "^11.0",
  1288. "phpstan/phpstan": "^1.8",
  1289. "phpstan/phpstan-phpunit": "^1.1",
  1290. "phpstan/phpstan-strict-rules": "^1.3",
  1291. "phpunit/phpunit": "^8.5 || ^9.5",
  1292. "vimeo/psalm": "^4.25 || ^5.4"
  1293. },
  1294. "type": "library",
  1295. "autoload": {
  1296. "psr-4": {
  1297. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1298. }
  1299. },
  1300. "notification-url": "https://packagist.org/downloads/",
  1301. "license": [
  1302. "MIT"
  1303. ],
  1304. "authors": [
  1305. {
  1306. "name": "Guilherme Blanco",
  1307. "email": "[email protected]"
  1308. },
  1309. {
  1310. "name": "Roman Borschel",
  1311. "email": "[email protected]"
  1312. },
  1313. {
  1314. "name": "Benjamin Eberlei",
  1315. "email": "[email protected]"
  1316. },
  1317. {
  1318. "name": "Jonathan Wage",
  1319. "email": "[email protected]"
  1320. },
  1321. {
  1322. "name": "Johannes Schmitt",
  1323. "email": "[email protected]"
  1324. }
  1325. ],
  1326. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1327. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1328. "keywords": [
  1329. "inflection",
  1330. "inflector",
  1331. "lowercase",
  1332. "manipulation",
  1333. "php",
  1334. "plural",
  1335. "singular",
  1336. "strings",
  1337. "uppercase",
  1338. "words"
  1339. ],
  1340. "support": {
  1341. "issues": "https://github.com/doctrine/inflector/issues",
  1342. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  1343. },
  1344. "funding": [
  1345. {
  1346. "url": "https://www.doctrine-project.org/sponsorship.html",
  1347. "type": "custom"
  1348. },
  1349. {
  1350. "url": "https://www.patreon.com/phpdoctrine",
  1351. "type": "patreon"
  1352. },
  1353. {
  1354. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1355. "type": "tidelift"
  1356. }
  1357. ],
  1358. "time": "2024-02-18T20:23:39+00:00"
  1359. },
  1360. {
  1361. "name": "endroid/qr-code",
  1362. "version": "6.0.9",
  1363. "source": {
  1364. "type": "git",
  1365. "url": "https://github.com/endroid/qr-code.git",
  1366. "reference": "21e888e8597440b2205e2e5c484b6c8e556bcd1a"
  1367. },
  1368. "dist": {
  1369. "type": "zip",
  1370. "url": "https://api.github.com/repos/endroid/qr-code/zipball/21e888e8597440b2205e2e5c484b6c8e556bcd1a",
  1371. "reference": "21e888e8597440b2205e2e5c484b6c8e556bcd1a",
  1372. "shasum": ""
  1373. },
  1374. "require": {
  1375. "bacon/bacon-qr-code": "^3.0",
  1376. "php": "^8.2"
  1377. },
  1378. "require-dev": {
  1379. "endroid/quality": "dev-main",
  1380. "ext-gd": "*",
  1381. "khanamiryan/qrcode-detector-decoder": "^2.0.2",
  1382. "setasign/fpdf": "^1.8.2"
  1383. },
  1384. "suggest": {
  1385. "ext-gd": "Enables you to write PNG images",
  1386. "khanamiryan/qrcode-detector-decoder": "Enables you to use the image validator",
  1387. "roave/security-advisories": "Makes sure package versions with known security issues are not installed",
  1388. "setasign/fpdf": "Enables you to use the PDF writer"
  1389. },
  1390. "type": "library",
  1391. "extra": {
  1392. "branch-alias": {
  1393. "dev-main": "6.x-dev"
  1394. }
  1395. },
  1396. "autoload": {
  1397. "psr-4": {
  1398. "Endroid\\QrCode\\": "src/"
  1399. }
  1400. },
  1401. "notification-url": "https://packagist.org/downloads/",
  1402. "license": [
  1403. "MIT"
  1404. ],
  1405. "authors": [
  1406. {
  1407. "name": "Jeroen van den Enden",
  1408. "email": "[email protected]"
  1409. }
  1410. ],
  1411. "description": "Endroid QR Code",
  1412. "homepage": "https://github.com/endroid/qr-code",
  1413. "keywords": [
  1414. "code",
  1415. "endroid",
  1416. "php",
  1417. "qr",
  1418. "qrcode"
  1419. ],
  1420. "support": {
  1421. "issues": "https://github.com/endroid/qr-code/issues",
  1422. "source": "https://github.com/endroid/qr-code/tree/6.0.9"
  1423. },
  1424. "funding": [
  1425. {
  1426. "url": "https://github.com/endroid",
  1427. "type": "github"
  1428. }
  1429. ],
  1430. "time": "2025-07-13T19:59:45+00:00"
  1431. },
  1432. {
  1433. "name": "geoip2/geoip2",
  1434. "version": "v3.2.0",
  1435. "source": {
  1436. "type": "git",
  1437. "url": "https://github.com/maxmind/GeoIP2-php.git",
  1438. "reference": "b7aa58760a6bf89a608dd92ee2d9436b52557ce2"
  1439. },
  1440. "dist": {
  1441. "type": "zip",
  1442. "url": "https://api.github.com/repos/maxmind/GeoIP2-php/zipball/b7aa58760a6bf89a608dd92ee2d9436b52557ce2",
  1443. "reference": "b7aa58760a6bf89a608dd92ee2d9436b52557ce2",
  1444. "shasum": ""
  1445. },
  1446. "require": {
  1447. "ext-json": "*",
  1448. "maxmind-db/reader": "^1.12.1",
  1449. "maxmind/web-service-common": "~0.10",
  1450. "php": ">=8.1"
  1451. },
  1452. "require-dev": {
  1453. "friendsofphp/php-cs-fixer": "3.*",
  1454. "phpstan/phpstan": "*",
  1455. "phpunit/phpunit": "^10.0",
  1456. "squizlabs/php_codesniffer": "3.*"
  1457. },
  1458. "type": "library",
  1459. "autoload": {
  1460. "psr-4": {
  1461. "GeoIp2\\": "src"
  1462. }
  1463. },
  1464. "notification-url": "https://packagist.org/downloads/",
  1465. "license": [
  1466. "Apache-2.0"
  1467. ],
  1468. "authors": [
  1469. {
  1470. "name": "Gregory J. Oschwald",
  1471. "email": "[email protected]",
  1472. "homepage": "https://www.maxmind.com/"
  1473. }
  1474. ],
  1475. "description": "MaxMind GeoIP2 PHP API",
  1476. "homepage": "https://github.com/maxmind/GeoIP2-php",
  1477. "keywords": [
  1478. "IP",
  1479. "geoip",
  1480. "geoip2",
  1481. "geolocation",
  1482. "maxmind"
  1483. ],
  1484. "support": {
  1485. "issues": "https://github.com/maxmind/GeoIP2-php/issues",
  1486. "source": "https://github.com/maxmind/GeoIP2-php/tree/v3.2.0"
  1487. },
  1488. "time": "2025-05-05T21:18:27+00:00"
  1489. },
  1490. {
  1491. "name": "guzzlehttp/guzzle",
  1492. "version": "7.9.3",
  1493. "source": {
  1494. "type": "git",
  1495. "url": "https://github.com/guzzle/guzzle.git",
  1496. "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77"
  1497. },
  1498. "dist": {
  1499. "type": "zip",
  1500. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
  1501. "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
  1502. "shasum": ""
  1503. },
  1504. "require": {
  1505. "ext-json": "*",
  1506. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  1507. "guzzlehttp/psr7": "^2.7.0",
  1508. "php": "^7.2.5 || ^8.0",
  1509. "psr/http-client": "^1.0",
  1510. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1511. },
  1512. "provide": {
  1513. "psr/http-client-implementation": "1.0"
  1514. },
  1515. "require-dev": {
  1516. "bamarni/composer-bin-plugin": "^1.8.2",
  1517. "ext-curl": "*",
  1518. "guzzle/client-integration-tests": "3.0.2",
  1519. "php-http/message-factory": "^1.1",
  1520. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  1521. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1522. },
  1523. "suggest": {
  1524. "ext-curl": "Required for CURL handler support",
  1525. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1526. "psr/log": "Required for using the Log middleware"
  1527. },
  1528. "type": "library",
  1529. "extra": {
  1530. "bamarni-bin": {
  1531. "bin-links": true,
  1532. "forward-command": false
  1533. }
  1534. },
  1535. "autoload": {
  1536. "files": [
  1537. "src/functions_include.php"
  1538. ],
  1539. "psr-4": {
  1540. "GuzzleHttp\\": "src/"
  1541. }
  1542. },
  1543. "notification-url": "https://packagist.org/downloads/",
  1544. "license": [
  1545. "MIT"
  1546. ],
  1547. "authors": [
  1548. {
  1549. "name": "Graham Campbell",
  1550. "email": "[email protected]",
  1551. "homepage": "https://github.com/GrahamCampbell"
  1552. },
  1553. {
  1554. "name": "Michael Dowling",
  1555. "email": "[email protected]",
  1556. "homepage": "https://github.com/mtdowling"
  1557. },
  1558. {
  1559. "name": "Jeremy Lindblom",
  1560. "email": "[email protected]",
  1561. "homepage": "https://github.com/jeremeamia"
  1562. },
  1563. {
  1564. "name": "George Mponos",
  1565. "email": "[email protected]",
  1566. "homepage": "https://github.com/gmponos"
  1567. },
  1568. {
  1569. "name": "Tobias Nyholm",
  1570. "email": "[email protected]",
  1571. "homepage": "https://github.com/Nyholm"
  1572. },
  1573. {
  1574. "name": "Márk Sági-Kazár",
  1575. "email": "[email protected]",
  1576. "homepage": "https://github.com/sagikazarmark"
  1577. },
  1578. {
  1579. "name": "Tobias Schultze",
  1580. "email": "[email protected]",
  1581. "homepage": "https://github.com/Tobion"
  1582. }
  1583. ],
  1584. "description": "Guzzle is a PHP HTTP client library",
  1585. "keywords": [
  1586. "client",
  1587. "curl",
  1588. "framework",
  1589. "http",
  1590. "http client",
  1591. "psr-18",
  1592. "psr-7",
  1593. "rest",
  1594. "web service"
  1595. ],
  1596. "support": {
  1597. "issues": "https://github.com/guzzle/guzzle/issues",
  1598. "source": "https://github.com/guzzle/guzzle/tree/7.9.3"
  1599. },
  1600. "funding": [
  1601. {
  1602. "url": "https://github.com/GrahamCampbell",
  1603. "type": "github"
  1604. },
  1605. {
  1606. "url": "https://github.com/Nyholm",
  1607. "type": "github"
  1608. },
  1609. {
  1610. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1611. "type": "tidelift"
  1612. }
  1613. ],
  1614. "time": "2025-03-27T13:37:11+00:00"
  1615. },
  1616. {
  1617. "name": "guzzlehttp/promises",
  1618. "version": "2.2.0",
  1619. "source": {
  1620. "type": "git",
  1621. "url": "https://github.com/guzzle/promises.git",
  1622. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c"
  1623. },
  1624. "dist": {
  1625. "type": "zip",
  1626. "url": "https://api.github.com/repos/guzzle/promises/zipball/7c69f28996b0a6920945dd20b3857e499d9ca96c",
  1627. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c",
  1628. "shasum": ""
  1629. },
  1630. "require": {
  1631. "php": "^7.2.5 || ^8.0"
  1632. },
  1633. "require-dev": {
  1634. "bamarni/composer-bin-plugin": "^1.8.2",
  1635. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1636. },
  1637. "type": "library",
  1638. "extra": {
  1639. "bamarni-bin": {
  1640. "bin-links": true,
  1641. "forward-command": false
  1642. }
  1643. },
  1644. "autoload": {
  1645. "psr-4": {
  1646. "GuzzleHttp\\Promise\\": "src/"
  1647. }
  1648. },
  1649. "notification-url": "https://packagist.org/downloads/",
  1650. "license": [
  1651. "MIT"
  1652. ],
  1653. "authors": [
  1654. {
  1655. "name": "Graham Campbell",
  1656. "email": "[email protected]",
  1657. "homepage": "https://github.com/GrahamCampbell"
  1658. },
  1659. {
  1660. "name": "Michael Dowling",
  1661. "email": "[email protected]",
  1662. "homepage": "https://github.com/mtdowling"
  1663. },
  1664. {
  1665. "name": "Tobias Nyholm",
  1666. "email": "[email protected]",
  1667. "homepage": "https://github.com/Nyholm"
  1668. },
  1669. {
  1670. "name": "Tobias Schultze",
  1671. "email": "[email protected]",
  1672. "homepage": "https://github.com/Tobion"
  1673. }
  1674. ],
  1675. "description": "Guzzle promises library",
  1676. "keywords": [
  1677. "promise"
  1678. ],
  1679. "support": {
  1680. "issues": "https://github.com/guzzle/promises/issues",
  1681. "source": "https://github.com/guzzle/promises/tree/2.2.0"
  1682. },
  1683. "funding": [
  1684. {
  1685. "url": "https://github.com/GrahamCampbell",
  1686. "type": "github"
  1687. },
  1688. {
  1689. "url": "https://github.com/Nyholm",
  1690. "type": "github"
  1691. },
  1692. {
  1693. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1694. "type": "tidelift"
  1695. }
  1696. ],
  1697. "time": "2025-03-27T13:27:01+00:00"
  1698. },
  1699. {
  1700. "name": "guzzlehttp/psr7",
  1701. "version": "2.7.1",
  1702. "source": {
  1703. "type": "git",
  1704. "url": "https://github.com/guzzle/psr7.git",
  1705. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16"
  1706. },
  1707. "dist": {
  1708. "type": "zip",
  1709. "url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  1710. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  1711. "shasum": ""
  1712. },
  1713. "require": {
  1714. "php": "^7.2.5 || ^8.0",
  1715. "psr/http-factory": "^1.0",
  1716. "psr/http-message": "^1.1 || ^2.0",
  1717. "ralouphie/getallheaders": "^3.0"
  1718. },
  1719. "provide": {
  1720. "psr/http-factory-implementation": "1.0",
  1721. "psr/http-message-implementation": "1.0"
  1722. },
  1723. "require-dev": {
  1724. "bamarni/composer-bin-plugin": "^1.8.2",
  1725. "http-interop/http-factory-tests": "0.9.0",
  1726. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1727. },
  1728. "suggest": {
  1729. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1730. },
  1731. "type": "library",
  1732. "extra": {
  1733. "bamarni-bin": {
  1734. "bin-links": true,
  1735. "forward-command": false
  1736. }
  1737. },
  1738. "autoload": {
  1739. "psr-4": {
  1740. "GuzzleHttp\\Psr7\\": "src/"
  1741. }
  1742. },
  1743. "notification-url": "https://packagist.org/downloads/",
  1744. "license": [
  1745. "MIT"
  1746. ],
  1747. "authors": [
  1748. {
  1749. "name": "Graham Campbell",
  1750. "email": "[email protected]",
  1751. "homepage": "https://github.com/GrahamCampbell"
  1752. },
  1753. {
  1754. "name": "Michael Dowling",
  1755. "email": "[email protected]",
  1756. "homepage": "https://github.com/mtdowling"
  1757. },
  1758. {
  1759. "name": "George Mponos",
  1760. "email": "[email protected]",
  1761. "homepage": "https://github.com/gmponos"
  1762. },
  1763. {
  1764. "name": "Tobias Nyholm",
  1765. "email": "[email protected]",
  1766. "homepage": "https://github.com/Nyholm"
  1767. },
  1768. {
  1769. "name": "Márk Sági-Kazár",
  1770. "email": "[email protected]",
  1771. "homepage": "https://github.com/sagikazarmark"
  1772. },
  1773. {
  1774. "name": "Tobias Schultze",
  1775. "email": "[email protected]",
  1776. "homepage": "https://github.com/Tobion"
  1777. },
  1778. {
  1779. "name": "Márk Sági-Kazár",
  1780. "email": "[email protected]",
  1781. "homepage": "https://sagikazarmark.hu"
  1782. }
  1783. ],
  1784. "description": "PSR-7 message implementation that also provides common utility methods",
  1785. "keywords": [
  1786. "http",
  1787. "message",
  1788. "psr-7",
  1789. "request",
  1790. "response",
  1791. "stream",
  1792. "uri",
  1793. "url"
  1794. ],
  1795. "support": {
  1796. "issues": "https://github.com/guzzle/psr7/issues",
  1797. "source": "https://github.com/guzzle/psr7/tree/2.7.1"
  1798. },
  1799. "funding": [
  1800. {
  1801. "url": "https://github.com/GrahamCampbell",
  1802. "type": "github"
  1803. },
  1804. {
  1805. "url": "https://github.com/Nyholm",
  1806. "type": "github"
  1807. },
  1808. {
  1809. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1810. "type": "tidelift"
  1811. }
  1812. ],
  1813. "time": "2025-03-27T12:30:47+00:00"
  1814. },
  1815. {
  1816. "name": "illuminate/collections",
  1817. "version": "v11.45.1",
  1818. "source": {
  1819. "type": "git",
  1820. "url": "https://github.com/illuminate/collections.git",
  1821. "reference": "856b1da953e46281ba61d7c82d337072d3ee1825"
  1822. },
  1823. "dist": {
  1824. "type": "zip",
  1825. "url": "https://api.github.com/repos/illuminate/collections/zipball/856b1da953e46281ba61d7c82d337072d3ee1825",
  1826. "reference": "856b1da953e46281ba61d7c82d337072d3ee1825",
  1827. "shasum": ""
  1828. },
  1829. "require": {
  1830. "illuminate/conditionable": "^11.0",
  1831. "illuminate/contracts": "^11.0",
  1832. "illuminate/macroable": "^11.0",
  1833. "php": "^8.2"
  1834. },
  1835. "suggest": {
  1836. "symfony/var-dumper": "Required to use the dump method (^7.0)."
  1837. },
  1838. "type": "library",
  1839. "extra": {
  1840. "branch-alias": {
  1841. "dev-master": "11.x-dev"
  1842. }
  1843. },
  1844. "autoload": {
  1845. "files": [
  1846. "functions.php",
  1847. "helpers.php"
  1848. ],
  1849. "psr-4": {
  1850. "Illuminate\\Support\\": ""
  1851. }
  1852. },
  1853. "notification-url": "https://packagist.org/downloads/",
  1854. "license": [
  1855. "MIT"
  1856. ],
  1857. "authors": [
  1858. {
  1859. "name": "Taylor Otwell",
  1860. "email": "[email protected]"
  1861. }
  1862. ],
  1863. "description": "The Illuminate Collections package.",
  1864. "homepage": "https://laravel.com",
  1865. "support": {
  1866. "issues": "https://github.com/laravel/framework/issues",
  1867. "source": "https://github.com/laravel/framework"
  1868. },
  1869. "time": "2025-03-24T11:54:20+00:00"
  1870. },
  1871. {
  1872. "name": "illuminate/conditionable",
  1873. "version": "v11.45.1",
  1874. "source": {
  1875. "type": "git",
  1876. "url": "https://github.com/illuminate/conditionable.git",
  1877. "reference": "319b717e0587bd7c8a3b44464f0e27867b4bcda9"
  1878. },
  1879. "dist": {
  1880. "type": "zip",
  1881. "url": "https://api.github.com/repos/illuminate/conditionable/zipball/319b717e0587bd7c8a3b44464f0e27867b4bcda9",
  1882. "reference": "319b717e0587bd7c8a3b44464f0e27867b4bcda9",
  1883. "shasum": ""
  1884. },
  1885. "require": {
  1886. "php": "^8.0.2"
  1887. },
  1888. "type": "library",
  1889. "extra": {
  1890. "branch-alias": {
  1891. "dev-master": "11.x-dev"
  1892. }
  1893. },
  1894. "autoload": {
  1895. "psr-4": {
  1896. "Illuminate\\Support\\": ""
  1897. }
  1898. },
  1899. "notification-url": "https://packagist.org/downloads/",
  1900. "license": [
  1901. "MIT"
  1902. ],
  1903. "authors": [
  1904. {
  1905. "name": "Taylor Otwell",
  1906. "email": "[email protected]"
  1907. }
  1908. ],
  1909. "description": "The Illuminate Conditionable package.",
  1910. "homepage": "https://laravel.com",
  1911. "support": {
  1912. "issues": "https://github.com/laravel/framework/issues",
  1913. "source": "https://github.com/laravel/framework"
  1914. },
  1915. "time": "2025-03-24T11:54:20+00:00"
  1916. },
  1917. {
  1918. "name": "illuminate/container",
  1919. "version": "v11.45.1",
  1920. "source": {
  1921. "type": "git",
  1922. "url": "https://github.com/illuminate/container.git",
  1923. "reference": "79bf9149ad7ddd7e14326ebcdd41197d2c4ee36a"
  1924. },
  1925. "dist": {
  1926. "type": "zip",
  1927. "url": "https://api.github.com/repos/illuminate/container/zipball/79bf9149ad7ddd7e14326ebcdd41197d2c4ee36a",
  1928. "reference": "79bf9149ad7ddd7e14326ebcdd41197d2c4ee36a",
  1929. "shasum": ""
  1930. },
  1931. "require": {
  1932. "illuminate/contracts": "^11.0",
  1933. "php": "^8.2",
  1934. "psr/container": "^1.1.1|^2.0.1"
  1935. },
  1936. "provide": {
  1937. "psr/container-implementation": "1.1|2.0"
  1938. },
  1939. "type": "library",
  1940. "extra": {
  1941. "branch-alias": {
  1942. "dev-master": "11.x-dev"
  1943. }
  1944. },
  1945. "autoload": {
  1946. "psr-4": {
  1947. "Illuminate\\Container\\": ""
  1948. }
  1949. },
  1950. "notification-url": "https://packagist.org/downloads/",
  1951. "license": [
  1952. "MIT"
  1953. ],
  1954. "authors": [
  1955. {
  1956. "name": "Taylor Otwell",
  1957. "email": "[email protected]"
  1958. }
  1959. ],
  1960. "description": "The Illuminate Container package.",
  1961. "homepage": "https://laravel.com",
  1962. "support": {
  1963. "issues": "https://github.com/laravel/framework/issues",
  1964. "source": "https://github.com/laravel/framework"
  1965. },
  1966. "time": "2025-03-24T11:54:20+00:00"
  1967. },
  1968. {
  1969. "name": "illuminate/contracts",
  1970. "version": "v11.45.1",
  1971. "source": {
  1972. "type": "git",
  1973. "url": "https://github.com/illuminate/contracts.git",
  1974. "reference": "4b2a67d1663f50085bc91e6371492697a5d2d4e8"
  1975. },
  1976. "dist": {
  1977. "type": "zip",
  1978. "url": "https://api.github.com/repos/illuminate/contracts/zipball/4b2a67d1663f50085bc91e6371492697a5d2d4e8",
  1979. "reference": "4b2a67d1663f50085bc91e6371492697a5d2d4e8",
  1980. "shasum": ""
  1981. },
  1982. "require": {
  1983. "php": "^8.2",
  1984. "psr/container": "^1.1.1|^2.0.1",
  1985. "psr/simple-cache": "^1.0|^2.0|^3.0"
  1986. },
  1987. "type": "library",
  1988. "extra": {
  1989. "branch-alias": {
  1990. "dev-master": "11.x-dev"
  1991. }
  1992. },
  1993. "autoload": {
  1994. "psr-4": {
  1995. "Illuminate\\Contracts\\": ""
  1996. }
  1997. },
  1998. "notification-url": "https://packagist.org/downloads/",
  1999. "license": [
  2000. "MIT"
  2001. ],
  2002. "authors": [
  2003. {
  2004. "name": "Taylor Otwell",
  2005. "email": "[email protected]"
  2006. }
  2007. ],
  2008. "description": "The Illuminate Contracts package.",
  2009. "homepage": "https://laravel.com",
  2010. "support": {
  2011. "issues": "https://github.com/laravel/framework/issues",
  2012. "source": "https://github.com/laravel/framework"
  2013. },
  2014. "time": "2025-03-24T11:54:20+00:00"
  2015. },
  2016. {
  2017. "name": "illuminate/database",
  2018. "version": "v11.45.1",
  2019. "source": {
  2020. "type": "git",
  2021. "url": "https://github.com/illuminate/database.git",
  2022. "reference": "0b3a1d429fb44c8bc2ed6afcc431872cbf3a85b2"
  2023. },
  2024. "dist": {
  2025. "type": "zip",
  2026. "url": "https://api.github.com/repos/illuminate/database/zipball/0b3a1d429fb44c8bc2ed6afcc431872cbf3a85b2",
  2027. "reference": "0b3a1d429fb44c8bc2ed6afcc431872cbf3a85b2",
  2028. "shasum": ""
  2029. },
  2030. "require": {
  2031. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  2032. "ext-pdo": "*",
  2033. "illuminate/collections": "^11.0",
  2034. "illuminate/container": "^11.0",
  2035. "illuminate/contracts": "^11.0",
  2036. "illuminate/macroable": "^11.0",
  2037. "illuminate/support": "^11.0",
  2038. "laravel/serializable-closure": "^1.3|^2.0",
  2039. "php": "^8.2"
  2040. },
  2041. "suggest": {
  2042. "ext-filter": "Required to use the Postgres database driver.",
  2043. "fakerphp/faker": "Required to use the eloquent factory builder (^1.24).",
  2044. "illuminate/console": "Required to use the database commands (^11.0).",
  2045. "illuminate/events": "Required to use the observers with Eloquent (^11.0).",
  2046. "illuminate/filesystem": "Required to use the migrations (^11.0).",
  2047. "illuminate/pagination": "Required to paginate the result set (^11.0).",
  2048. "symfony/finder": "Required to use Eloquent model factories (^7.0)."
  2049. },
  2050. "type": "library",
  2051. "extra": {
  2052. "branch-alias": {
  2053. "dev-master": "11.x-dev"
  2054. }
  2055. },
  2056. "autoload": {
  2057. "psr-4": {
  2058. "Illuminate\\Database\\": ""
  2059. }
  2060. },
  2061. "notification-url": "https://packagist.org/downloads/",
  2062. "license": [
  2063. "MIT"
  2064. ],
  2065. "authors": [
  2066. {
  2067. "name": "Taylor Otwell",
  2068. "email": "[email protected]"
  2069. }
  2070. ],
  2071. "description": "The Illuminate Database package.",
  2072. "homepage": "https://laravel.com",
  2073. "keywords": [
  2074. "database",
  2075. "laravel",
  2076. "orm",
  2077. "sql"
  2078. ],
  2079. "support": {
  2080. "issues": "https://github.com/laravel/framework/issues",
  2081. "source": "https://github.com/laravel/framework"
  2082. },
  2083. "time": "2025-03-24T11:54:20+00:00"
  2084. },
  2085. {
  2086. "name": "illuminate/macroable",
  2087. "version": "v11.45.1",
  2088. "source": {
  2089. "type": "git",
  2090. "url": "https://github.com/illuminate/macroable.git",
  2091. "reference": "e1cb9e51b9ed5d3c9bc1ab431d0a52fe42a990ed"
  2092. },
  2093. "dist": {
  2094. "type": "zip",
  2095. "url": "https://api.github.com/repos/illuminate/macroable/zipball/e1cb9e51b9ed5d3c9bc1ab431d0a52fe42a990ed",
  2096. "reference": "e1cb9e51b9ed5d3c9bc1ab431d0a52fe42a990ed",
  2097. "shasum": ""
  2098. },
  2099. "require": {
  2100. "php": "^8.2"
  2101. },
  2102. "type": "library",
  2103. "extra": {
  2104. "branch-alias": {
  2105. "dev-master": "11.x-dev"
  2106. }
  2107. },
  2108. "autoload": {
  2109. "psr-4": {
  2110. "Illuminate\\Support\\": ""
  2111. }
  2112. },
  2113. "notification-url": "https://packagist.org/downloads/",
  2114. "license": [
  2115. "MIT"
  2116. ],
  2117. "authors": [
  2118. {
  2119. "name": "Taylor Otwell",
  2120. "email": "[email protected]"
  2121. }
  2122. ],
  2123. "description": "The Illuminate Macroable package.",
  2124. "homepage": "https://laravel.com",
  2125. "support": {
  2126. "issues": "https://github.com/laravel/framework/issues",
  2127. "source": "https://github.com/laravel/framework"
  2128. },
  2129. "time": "2024-06-28T20:10:30+00:00"
  2130. },
  2131. {
  2132. "name": "illuminate/pagination",
  2133. "version": "v11.45.1",
  2134. "source": {
  2135. "type": "git",
  2136. "url": "https://github.com/illuminate/pagination.git",
  2137. "reference": "2c4970463f7ede55be207fbdc27608b4c4178380"
  2138. },
  2139. "dist": {
  2140. "type": "zip",
  2141. "url": "https://api.github.com/repos/illuminate/pagination/zipball/2c4970463f7ede55be207fbdc27608b4c4178380",
  2142. "reference": "2c4970463f7ede55be207fbdc27608b4c4178380",
  2143. "shasum": ""
  2144. },
  2145. "require": {
  2146. "ext-filter": "*",
  2147. "illuminate/collections": "^11.0",
  2148. "illuminate/contracts": "^11.0",
  2149. "illuminate/support": "^11.0",
  2150. "php": "^8.2"
  2151. },
  2152. "type": "library",
  2153. "extra": {
  2154. "branch-alias": {
  2155. "dev-master": "11.x-dev"
  2156. }
  2157. },
  2158. "autoload": {
  2159. "psr-4": {
  2160. "Illuminate\\Pagination\\": ""
  2161. }
  2162. },
  2163. "notification-url": "https://packagist.org/downloads/",
  2164. "license": [
  2165. "MIT"
  2166. ],
  2167. "authors": [
  2168. {
  2169. "name": "Taylor Otwell",
  2170. "email": "[email protected]"
  2171. }
  2172. ],
  2173. "description": "The Illuminate Pagination package.",
  2174. "homepage": "https://laravel.com",
  2175. "support": {
  2176. "issues": "https://github.com/laravel/framework/issues",
  2177. "source": "https://github.com/laravel/framework"
  2178. },
  2179. "time": "2025-02-14T15:33:00+00:00"
  2180. },
  2181. {
  2182. "name": "illuminate/support",
  2183. "version": "v11.45.1",
  2184. "source": {
  2185. "type": "git",
  2186. "url": "https://github.com/illuminate/support.git",
  2187. "reference": "9732f41d7a9836a2c466ab06460efc732aeb417a"
  2188. },
  2189. "dist": {
  2190. "type": "zip",
  2191. "url": "https://api.github.com/repos/illuminate/support/zipball/9732f41d7a9836a2c466ab06460efc732aeb417a",
  2192. "reference": "9732f41d7a9836a2c466ab06460efc732aeb417a",
  2193. "shasum": ""
  2194. },
  2195. "require": {
  2196. "doctrine/inflector": "^2.0",
  2197. "ext-ctype": "*",
  2198. "ext-filter": "*",
  2199. "ext-mbstring": "*",
  2200. "illuminate/collections": "^11.0",
  2201. "illuminate/conditionable": "^11.0",
  2202. "illuminate/contracts": "^11.0",
  2203. "illuminate/macroable": "^11.0",
  2204. "nesbot/carbon": "^2.72.6|^3.8.4",
  2205. "php": "^8.2",
  2206. "voku/portable-ascii": "^2.0.2"
  2207. },
  2208. "conflict": {
  2209. "tightenco/collect": "<5.5.33"
  2210. },
  2211. "replace": {
  2212. "spatie/once": "*"
  2213. },
  2214. "suggest": {
  2215. "illuminate/filesystem": "Required to use the Composer class (^11.0).",
  2216. "laravel/serializable-closure": "Required to use the once function (^1.3|^2.0).",
  2217. "league/commonmark": "Required to use Str::markdown() and Stringable::markdown() (^2.7).",
  2218. "league/uri": "Required to use the Uri class (^7.5.1).",
  2219. "ramsey/uuid": "Required to use Str::uuid() (^4.7).",
  2220. "symfony/process": "Required to use the Composer class (^7.0).",
  2221. "symfony/uid": "Required to use Str::ulid() (^7.0).",
  2222. "symfony/var-dumper": "Required to use the dd function (^7.0).",
  2223. "vlucas/phpdotenv": "Required to use the Env class and env helper (^5.6.1)."
  2224. },
  2225. "type": "library",
  2226. "extra": {
  2227. "branch-alias": {
  2228. "dev-master": "11.x-dev"
  2229. }
  2230. },
  2231. "autoload": {
  2232. "files": [
  2233. "functions.php",
  2234. "helpers.php"
  2235. ],
  2236. "psr-4": {
  2237. "Illuminate\\Support\\": ""
  2238. }
  2239. },
  2240. "notification-url": "https://packagist.org/downloads/",
  2241. "license": [
  2242. "MIT"
  2243. ],
  2244. "authors": [
  2245. {
  2246. "name": "Taylor Otwell",
  2247. "email": "[email protected]"
  2248. }
  2249. ],
  2250. "description": "The Illuminate Support package.",
  2251. "homepage": "https://laravel.com",
  2252. "support": {
  2253. "issues": "https://github.com/laravel/framework/issues",
  2254. "source": "https://github.com/laravel/framework"
  2255. },
  2256. "time": "2025-05-11T20:47:08+00:00"
  2257. },
  2258. {
  2259. "name": "irazasyed/telegram-bot-sdk",
  2260. "version": "v3.15.0",
  2261. "source": {
  2262. "type": "git",
  2263. "url": "https://github.com/irazasyed/telegram-bot-sdk.git",
  2264. "reference": "07146018d173dedfd520fb8f18a50f31e27b1e60"
  2265. },
  2266. "dist": {
  2267. "type": "zip",
  2268. "url": "https://api.github.com/repos/irazasyed/telegram-bot-sdk/zipball/07146018d173dedfd520fb8f18a50f31e27b1e60",
  2269. "reference": "07146018d173dedfd520fb8f18a50f31e27b1e60",
  2270. "shasum": ""
  2271. },
  2272. "require": {
  2273. "ext-json": "*",
  2274. "guzzlehttp/guzzle": "^7.5.1",
  2275. "guzzlehttp/psr7": "^2.5",
  2276. "illuminate/support": "9 - 12",
  2277. "league/event": "^2.2 || ^3.0",
  2278. "php": ">=8.0",
  2279. "psr/container": "^1.1 || ^2.0",
  2280. "psr/event-dispatcher": "^1.0"
  2281. },
  2282. "require-dev": {
  2283. "irazasyed/docgen": "^0.2",
  2284. "pestphp/pest": "^1.22 || ^2.0 || ^3.0",
  2285. "php-parallel-lint/php-parallel-lint": "^1.3",
  2286. "phpspec/prophecy": "^1.17",
  2287. "phpspec/prophecy-phpunit": "^2.0",
  2288. "rector/rector": "^0.16.0 || ^0.17.0 || ^0.18.0 || ^0.19.0 || ^1.0.0 || ^2.0.0"
  2289. },
  2290. "suggest": {
  2291. "illuminate/container": "Hold dependencies to be injected in commands constructors",
  2292. "irazasyed/larasupport": "Allows you to use any Laravel Package in Lumen by adding support!"
  2293. },
  2294. "type": "library",
  2295. "extra": {
  2296. "laravel": {
  2297. "aliases": {
  2298. "Telegram": "Telegram\\Bot\\Laravel\\Facades\\Telegram"
  2299. },
  2300. "providers": [
  2301. "Telegram\\Bot\\Laravel\\TelegramServiceProvider"
  2302. ]
  2303. },
  2304. "branch-alias": {
  2305. "dev-master": "3.0-dev"
  2306. }
  2307. },
  2308. "autoload": {
  2309. "psr-4": {
  2310. "Telegram\\Bot\\": "src/"
  2311. }
  2312. },
  2313. "notification-url": "https://packagist.org/downloads/",
  2314. "license": [
  2315. "BSD-3-Clause"
  2316. ],
  2317. "authors": [
  2318. {
  2319. "name": "Irfaq Syed",
  2320. "email": "[email protected]",
  2321. "homepage": "https://github.com/irazasyed"
  2322. }
  2323. ],
  2324. "description": "The Unofficial Telegram Bot API PHP SDK",
  2325. "homepage": "https://github.com/irazasyed/telegram-bot-sdk",
  2326. "keywords": [
  2327. "laravel",
  2328. "laravel telegram",
  2329. "telegram",
  2330. "telegram bot",
  2331. "telegram bot api",
  2332. "telegram php",
  2333. "telegram sdk"
  2334. ],
  2335. "support": {
  2336. "issues": "https://github.com/irazasyed/telegram-bot-sdk/issues",
  2337. "source": "https://github.com/irazasyed/telegram-bot-sdk/tree/v3.15.0"
  2338. },
  2339. "time": "2025-02-18T19:03:24+00:00"
  2340. },
  2341. {
  2342. "name": "jean85/pretty-package-versions",
  2343. "version": "2.1.1",
  2344. "source": {
  2345. "type": "git",
  2346. "url": "https://github.com/Jean85/pretty-package-versions.git",
  2347. "reference": "4d7aa5dab42e2a76d99559706022885de0e18e1a"
  2348. },
  2349. "dist": {
  2350. "type": "zip",
  2351. "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/4d7aa5dab42e2a76d99559706022885de0e18e1a",
  2352. "reference": "4d7aa5dab42e2a76d99559706022885de0e18e1a",
  2353. "shasum": ""
  2354. },
  2355. "require": {
  2356. "composer-runtime-api": "^2.1.0",
  2357. "php": "^7.4|^8.0"
  2358. },
  2359. "require-dev": {
  2360. "friendsofphp/php-cs-fixer": "^3.2",
  2361. "jean85/composer-provided-replaced-stub-package": "^1.0",
  2362. "phpstan/phpstan": "^2.0",
  2363. "phpunit/phpunit": "^7.5|^8.5|^9.6",
  2364. "rector/rector": "^2.0",
  2365. "vimeo/psalm": "^4.3 || ^5.0"
  2366. },
  2367. "type": "library",
  2368. "extra": {
  2369. "branch-alias": {
  2370. "dev-master": "1.x-dev"
  2371. }
  2372. },
  2373. "autoload": {
  2374. "psr-4": {
  2375. "Jean85\\": "src/"
  2376. }
  2377. },
  2378. "notification-url": "https://packagist.org/downloads/",
  2379. "license": [
  2380. "MIT"
  2381. ],
  2382. "authors": [
  2383. {
  2384. "name": "Alessandro Lai",
  2385. "email": "[email protected]"
  2386. }
  2387. ],
  2388. "description": "A library to get pretty versions strings of installed dependencies",
  2389. "keywords": [
  2390. "composer",
  2391. "package",
  2392. "release",
  2393. "versions"
  2394. ],
  2395. "support": {
  2396. "issues": "https://github.com/Jean85/pretty-package-versions/issues",
  2397. "source": "https://github.com/Jean85/pretty-package-versions/tree/2.1.1"
  2398. },
  2399. "time": "2025-03-19T14:43:43+00:00"
  2400. },
  2401. {
  2402. "name": "laravel/serializable-closure",
  2403. "version": "v2.0.4",
  2404. "source": {
  2405. "type": "git",
  2406. "url": "https://github.com/laravel/serializable-closure.git",
  2407. "reference": "b352cf0534aa1ae6b4d825d1e762e35d43f8a841"
  2408. },
  2409. "dist": {
  2410. "type": "zip",
  2411. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/b352cf0534aa1ae6b4d825d1e762e35d43f8a841",
  2412. "reference": "b352cf0534aa1ae6b4d825d1e762e35d43f8a841",
  2413. "shasum": ""
  2414. },
  2415. "require": {
  2416. "php": "^8.1"
  2417. },
  2418. "require-dev": {
  2419. "illuminate/support": "^10.0|^11.0|^12.0",
  2420. "nesbot/carbon": "^2.67|^3.0",
  2421. "pestphp/pest": "^2.36|^3.0",
  2422. "phpstan/phpstan": "^2.0",
  2423. "symfony/var-dumper": "^6.2.0|^7.0.0"
  2424. },
  2425. "type": "library",
  2426. "extra": {
  2427. "branch-alias": {
  2428. "dev-master": "2.x-dev"
  2429. }
  2430. },
  2431. "autoload": {
  2432. "psr-4": {
  2433. "Laravel\\SerializableClosure\\": "src/"
  2434. }
  2435. },
  2436. "notification-url": "https://packagist.org/downloads/",
  2437. "license": [
  2438. "MIT"
  2439. ],
  2440. "authors": [
  2441. {
  2442. "name": "Taylor Otwell",
  2443. "email": "[email protected]"
  2444. },
  2445. {
  2446. "name": "Nuno Maduro",
  2447. "email": "[email protected]"
  2448. }
  2449. ],
  2450. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2451. "keywords": [
  2452. "closure",
  2453. "laravel",
  2454. "serializable"
  2455. ],
  2456. "support": {
  2457. "issues": "https://github.com/laravel/serializable-closure/issues",
  2458. "source": "https://github.com/laravel/serializable-closure"
  2459. },
  2460. "time": "2025-03-19T13:51:03+00:00"
  2461. },
  2462. {
  2463. "name": "lcobucci/jwt",
  2464. "version": "5.5.0",
  2465. "source": {
  2466. "type": "git",
  2467. "url": "https://github.com/lcobucci/jwt.git",
  2468. "reference": "a835af59b030d3f2967725697cf88300f579088e"
  2469. },
  2470. "dist": {
  2471. "type": "zip",
  2472. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/a835af59b030d3f2967725697cf88300f579088e",
  2473. "reference": "a835af59b030d3f2967725697cf88300f579088e",
  2474. "shasum": ""
  2475. },
  2476. "require": {
  2477. "ext-openssl": "*",
  2478. "ext-sodium": "*",
  2479. "php": "~8.2.0 || ~8.3.0 || ~8.4.0",
  2480. "psr/clock": "^1.0"
  2481. },
  2482. "require-dev": {
  2483. "infection/infection": "^0.29",
  2484. "lcobucci/clock": "^3.2",
  2485. "lcobucci/coding-standard": "^11.0",
  2486. "phpbench/phpbench": "^1.2",
  2487. "phpstan/extension-installer": "^1.2",
  2488. "phpstan/phpstan": "^1.10.7",
  2489. "phpstan/phpstan-deprecation-rules": "^1.1.3",
  2490. "phpstan/phpstan-phpunit": "^1.3.10",
  2491. "phpstan/phpstan-strict-rules": "^1.5.0",
  2492. "phpunit/phpunit": "^11.1"
  2493. },
  2494. "suggest": {
  2495. "lcobucci/clock": ">= 3.2"
  2496. },
  2497. "type": "library",
  2498. "autoload": {
  2499. "psr-4": {
  2500. "Lcobucci\\JWT\\": "src"
  2501. }
  2502. },
  2503. "notification-url": "https://packagist.org/downloads/",
  2504. "license": [
  2505. "BSD-3-Clause"
  2506. ],
  2507. "authors": [
  2508. {
  2509. "name": "Luís Cobucci",
  2510. "email": "[email protected]",
  2511. "role": "Developer"
  2512. }
  2513. ],
  2514. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2515. "keywords": [
  2516. "JWS",
  2517. "jwt"
  2518. ],
  2519. "support": {
  2520. "issues": "https://github.com/lcobucci/jwt/issues",
  2521. "source": "https://github.com/lcobucci/jwt/tree/5.5.0"
  2522. },
  2523. "funding": [
  2524. {
  2525. "url": "https://github.com/lcobucci",
  2526. "type": "github"
  2527. },
  2528. {
  2529. "url": "https://www.patreon.com/lcobucci",
  2530. "type": "patreon"
  2531. }
  2532. ],
  2533. "time": "2025-01-26T21:29:45+00:00"
  2534. },
  2535. {
  2536. "name": "league/event",
  2537. "version": "3.0.3",
  2538. "source": {
  2539. "type": "git",
  2540. "url": "https://github.com/thephpleague/event.git",
  2541. "reference": "ec38ff7ea10cad7d99a79ac937fbcffb9334c210"
  2542. },
  2543. "dist": {
  2544. "type": "zip",
  2545. "url": "https://api.github.com/repos/thephpleague/event/zipball/ec38ff7ea10cad7d99a79ac937fbcffb9334c210",
  2546. "reference": "ec38ff7ea10cad7d99a79ac937fbcffb9334c210",
  2547. "shasum": ""
  2548. },
  2549. "require": {
  2550. "php": ">=7.2.0",
  2551. "psr/event-dispatcher": "^1.0"
  2552. },
  2553. "provide": {
  2554. "psr/event-dispatcher-implementation": "1.0"
  2555. },
  2556. "require-dev": {
  2557. "friendsofphp/php-cs-fixer": "^2.16",
  2558. "phpstan/phpstan": "^0.12.45",
  2559. "phpunit/phpunit": "^8.5"
  2560. },
  2561. "type": "library",
  2562. "extra": {
  2563. "branch-alias": {
  2564. "dev-master": "3.0-dev"
  2565. }
  2566. },
  2567. "autoload": {
  2568. "psr-4": {
  2569. "League\\Event\\": "src/"
  2570. }
  2571. },
  2572. "notification-url": "https://packagist.org/downloads/",
  2573. "license": [
  2574. "MIT"
  2575. ],
  2576. "authors": [
  2577. {
  2578. "name": "Frank de Jonge",
  2579. "email": "[email protected]"
  2580. }
  2581. ],
  2582. "description": "Event package",
  2583. "keywords": [
  2584. "emitter",
  2585. "event",
  2586. "listener"
  2587. ],
  2588. "support": {
  2589. "issues": "https://github.com/thephpleague/event/issues",
  2590. "source": "https://github.com/thephpleague/event/tree/3.0.3"
  2591. },
  2592. "time": "2024-09-04T16:06:53+00:00"
  2593. },
  2594. {
  2595. "name": "league/html-to-markdown",
  2596. "version": "5.1.1",
  2597. "source": {
  2598. "type": "git",
  2599. "url": "https://github.com/thephpleague/html-to-markdown.git",
  2600. "reference": "0b4066eede55c48f38bcee4fb8f0aa85654390fd"
  2601. },
  2602. "dist": {
  2603. "type": "zip",
  2604. "url": "https://api.github.com/repos/thephpleague/html-to-markdown/zipball/0b4066eede55c48f38bcee4fb8f0aa85654390fd",
  2605. "reference": "0b4066eede55c48f38bcee4fb8f0aa85654390fd",
  2606. "shasum": ""
  2607. },
  2608. "require": {
  2609. "ext-dom": "*",
  2610. "ext-xml": "*",
  2611. "php": "^7.2.5 || ^8.0"
  2612. },
  2613. "require-dev": {
  2614. "mikehaertl/php-shellcommand": "^1.1.0",
  2615. "phpstan/phpstan": "^1.8.8",
  2616. "phpunit/phpunit": "^8.5 || ^9.2",
  2617. "scrutinizer/ocular": "^1.6",
  2618. "unleashedtech/php-coding-standard": "^2.7 || ^3.0",
  2619. "vimeo/psalm": "^4.22 || ^5.0"
  2620. },
  2621. "bin": [
  2622. "bin/html-to-markdown"
  2623. ],
  2624. "type": "library",
  2625. "extra": {
  2626. "branch-alias": {
  2627. "dev-master": "5.2-dev"
  2628. }
  2629. },
  2630. "autoload": {
  2631. "psr-4": {
  2632. "League\\HTMLToMarkdown\\": "src/"
  2633. }
  2634. },
  2635. "notification-url": "https://packagist.org/downloads/",
  2636. "license": [
  2637. "MIT"
  2638. ],
  2639. "authors": [
  2640. {
  2641. "name": "Colin O'Dell",
  2642. "email": "[email protected]",
  2643. "homepage": "https://www.colinodell.com",
  2644. "role": "Lead Developer"
  2645. },
  2646. {
  2647. "name": "Nick Cernis",
  2648. "email": "[email protected]",
  2649. "homepage": "http://modernnerd.net",
  2650. "role": "Original Author"
  2651. }
  2652. ],
  2653. "description": "An HTML-to-markdown conversion helper for PHP",
  2654. "homepage": "https://github.com/thephpleague/html-to-markdown",
  2655. "keywords": [
  2656. "html",
  2657. "markdown"
  2658. ],
  2659. "support": {
  2660. "issues": "https://github.com/thephpleague/html-to-markdown/issues",
  2661. "source": "https://github.com/thephpleague/html-to-markdown/tree/5.1.1"
  2662. },
  2663. "funding": [
  2664. {
  2665. "url": "https://www.colinodell.com/sponsor",
  2666. "type": "custom"
  2667. },
  2668. {
  2669. "url": "https://www.paypal.me/colinpodell/10.00",
  2670. "type": "custom"
  2671. },
  2672. {
  2673. "url": "https://github.com/colinodell",
  2674. "type": "github"
  2675. },
  2676. {
  2677. "url": "https://tidelift.com/funding/github/packagist/league/html-to-markdown",
  2678. "type": "tidelift"
  2679. }
  2680. ],
  2681. "time": "2023-07-12T21:21:09+00:00"
  2682. },
  2683. {
  2684. "name": "lizhichao/one-sm",
  2685. "version": "1.10",
  2686. "source": {
  2687. "type": "git",
  2688. "url": "https://github.com/lizhichao/sm.git",
  2689. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a"
  2690. },
  2691. "dist": {
  2692. "type": "zip",
  2693. "url": "https://api.github.com/repos/lizhichao/sm/zipball/687a012a44a5bfd4d9143a0234e1060543be455a",
  2694. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a",
  2695. "shasum": ""
  2696. },
  2697. "require": {
  2698. "php": ">=5.6"
  2699. },
  2700. "type": "library",
  2701. "autoload": {
  2702. "psr-4": {
  2703. "OneSm\\": "src/"
  2704. }
  2705. },
  2706. "notification-url": "https://packagist.org/downloads/",
  2707. "license": [
  2708. "Apache-2.0"
  2709. ],
  2710. "authors": [
  2711. {
  2712. "name": "tanszhe",
  2713. "email": "[email protected]"
  2714. }
  2715. ],
  2716. "description": "国密sm3",
  2717. "keywords": [
  2718. "php",
  2719. "sm3"
  2720. ],
  2721. "support": {
  2722. "issues": "https://github.com/lizhichao/sm/issues",
  2723. "source": "https://github.com/lizhichao/sm/tree/1.10"
  2724. },
  2725. "funding": [
  2726. {
  2727. "url": "https://www.vicsdf.com/img/w.jpg",
  2728. "type": "custom"
  2729. },
  2730. {
  2731. "url": "https://www.vicsdf.com/img/z.jpg",
  2732. "type": "custom"
  2733. }
  2734. ],
  2735. "time": "2021-05-26T06:19:22+00:00"
  2736. },
  2737. {
  2738. "name": "mailchimp/transactional",
  2739. "version": "1.0.59",
  2740. "source": {
  2741. "type": "git",
  2742. "url": "https://github.com/mailchimp/mailchimp-transactional-php.git",
  2743. "reference": "1783927027820dc1c624fd04abf5012a57f96feb"
  2744. },
  2745. "dist": {
  2746. "type": "zip",
  2747. "url": "https://api.github.com/repos/mailchimp/mailchimp-transactional-php/zipball/1783927027820dc1c624fd04abf5012a57f96feb",
  2748. "reference": "1783927027820dc1c624fd04abf5012a57f96feb",
  2749. "shasum": ""
  2750. },
  2751. "require": {
  2752. "ext-curl": "*",
  2753. "ext-json": "*",
  2754. "ext-mbstring": "*",
  2755. "guzzlehttp/guzzle": "^6.4 || ^7.2",
  2756. "php": ">=7.2"
  2757. },
  2758. "require-dev": {
  2759. "friendsofphp/php-cs-fixer": "~2.12",
  2760. "phpunit/phpunit": "^7",
  2761. "squizlabs/php_codesniffer": "~2.6"
  2762. },
  2763. "type": "library",
  2764. "autoload": {
  2765. "psr-4": {
  2766. "MailchimpTransactional\\": "lib/"
  2767. }
  2768. },
  2769. "notification-url": "https://packagist.org/downloads/",
  2770. "license": [
  2771. "proprietary"
  2772. ],
  2773. "authors": [
  2774. {
  2775. "name": "Mailchimp",
  2776. "homepage": "https://github.com/mailchimp/mailchimp-transactional-php"
  2777. }
  2778. ],
  2779. "homepage": "http://swagger.io",
  2780. "keywords": [
  2781. "api",
  2782. "php",
  2783. "sdk",
  2784. "swagger"
  2785. ],
  2786. "support": {
  2787. "source": "https://github.com/mailchimp/mailchimp-transactional-php/tree/v1.0.59"
  2788. },
  2789. "time": "2024-02-10T01:12:26+00:00"
  2790. },
  2791. {
  2792. "name": "mailgun/mailgun-php",
  2793. "version": "v4.3.5",
  2794. "source": {
  2795. "type": "git",
  2796. "url": "https://github.com/mailgun/mailgun-php.git",
  2797. "reference": "3b1e971a572e55efa3d97b6a3f48c9e3683dcae6"
  2798. },
  2799. "dist": {
  2800. "type": "zip",
  2801. "url": "https://api.github.com/repos/mailgun/mailgun-php/zipball/3b1e971a572e55efa3d97b6a3f48c9e3683dcae6",
  2802. "reference": "3b1e971a572e55efa3d97b6a3f48c9e3683dcae6",
  2803. "shasum": ""
  2804. },
  2805. "require": {
  2806. "php": "^7.4 || ^8.0",
  2807. "php-http/client-common": "^2.2.1",
  2808. "php-http/discovery": "^1.19",
  2809. "php-http/multipart-stream-builder": "^1.1.2",
  2810. "psr/http-client": "^1.0",
  2811. "webmozart/assert": "^1.9.1"
  2812. },
  2813. "require-dev": {
  2814. "ergebnis/composer-normalize": "^2.43",
  2815. "nyholm/nsa": "^1.2.1",
  2816. "nyholm/psr7": "^1.3.1",
  2817. "phpcompatibility/php-compatibility": "^9.3",
  2818. "phpunit/phpunit": "^9.3",
  2819. "squizlabs/php_codesniffer": "^3.7",
  2820. "symfony/http-client": "^5.4 || ^6.3",
  2821. "vimeo/psalm": "^4.0 || ^5.25"
  2822. },
  2823. "suggest": {
  2824. "nyholm/psr7": "PSR-7 message implementation",
  2825. "symfony/http-client": "HTTP client"
  2826. },
  2827. "type": "library",
  2828. "extra": {
  2829. "branch-alias": {
  2830. "dev-master": "3.0-dev"
  2831. }
  2832. },
  2833. "autoload": {
  2834. "psr-4": {
  2835. "Mailgun\\": "src/"
  2836. }
  2837. },
  2838. "notification-url": "https://packagist.org/downloads/",
  2839. "license": [
  2840. "MIT"
  2841. ],
  2842. "authors": [
  2843. {
  2844. "name": "Travis Swientek",
  2845. "email": "[email protected]"
  2846. }
  2847. ],
  2848. "description": "The Mailgun SDK provides methods for all API functions.",
  2849. "support": {
  2850. "issues": "https://github.com/mailgun/mailgun-php/issues",
  2851. "source": "https://github.com/mailgun/mailgun-php/tree/v4.3.5"
  2852. },
  2853. "time": "2025-04-06T12:36:45+00:00"
  2854. },
  2855. {
  2856. "name": "maxmind-db/reader",
  2857. "version": "v1.12.1",
  2858. "source": {
  2859. "type": "git",
  2860. "url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git",
  2861. "reference": "815939e006b7e68062b540ec9e86aaa8be2b6ce4"
  2862. },
  2863. "dist": {
  2864. "type": "zip",
  2865. "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/815939e006b7e68062b540ec9e86aaa8be2b6ce4",
  2866. "reference": "815939e006b7e68062b540ec9e86aaa8be2b6ce4",
  2867. "shasum": ""
  2868. },
  2869. "require": {
  2870. "php": ">=7.2"
  2871. },
  2872. "conflict": {
  2873. "ext-maxminddb": "<1.11.1 || >=2.0.0"
  2874. },
  2875. "require-dev": {
  2876. "friendsofphp/php-cs-fixer": "3.*",
  2877. "phpstan/phpstan": "*",
  2878. "phpunit/phpunit": ">=8.0.0,<10.0.0",
  2879. "squizlabs/php_codesniffer": "3.*"
  2880. },
  2881. "suggest": {
  2882. "ext-bcmath": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2883. "ext-gmp": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2884. "ext-maxminddb": "A C-based database decoder that provides significantly faster lookups"
  2885. },
  2886. "type": "library",
  2887. "autoload": {
  2888. "psr-4": {
  2889. "MaxMind\\Db\\": "src/MaxMind/Db"
  2890. }
  2891. },
  2892. "notification-url": "https://packagist.org/downloads/",
  2893. "license": [
  2894. "Apache-2.0"
  2895. ],
  2896. "authors": [
  2897. {
  2898. "name": "Gregory J. Oschwald",
  2899. "email": "[email protected]",
  2900. "homepage": "https://www.maxmind.com/"
  2901. }
  2902. ],
  2903. "description": "MaxMind DB Reader API",
  2904. "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php",
  2905. "keywords": [
  2906. "database",
  2907. "geoip",
  2908. "geoip2",
  2909. "geolocation",
  2910. "maxmind"
  2911. ],
  2912. "support": {
  2913. "issues": "https://github.com/maxmind/MaxMind-DB-Reader-php/issues",
  2914. "source": "https://github.com/maxmind/MaxMind-DB-Reader-php/tree/v1.12.1"
  2915. },
  2916. "time": "2025-05-05T20:56:32+00:00"
  2917. },
  2918. {
  2919. "name": "maxmind/web-service-common",
  2920. "version": "v0.10.0",
  2921. "source": {
  2922. "type": "git",
  2923. "url": "https://github.com/maxmind/web-service-common-php.git",
  2924. "reference": "d7c7c42fc31bff26e0ded73a6e187bcfb193f9c4"
  2925. },
  2926. "dist": {
  2927. "type": "zip",
  2928. "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/d7c7c42fc31bff26e0ded73a6e187bcfb193f9c4",
  2929. "reference": "d7c7c42fc31bff26e0ded73a6e187bcfb193f9c4",
  2930. "shasum": ""
  2931. },
  2932. "require": {
  2933. "composer/ca-bundle": "^1.0.3",
  2934. "ext-curl": "*",
  2935. "ext-json": "*",
  2936. "php": ">=8.1"
  2937. },
  2938. "require-dev": {
  2939. "friendsofphp/php-cs-fixer": "3.*",
  2940. "phpstan/phpstan": "*",
  2941. "phpunit/phpunit": "^8.0 || ^9.0",
  2942. "squizlabs/php_codesniffer": "3.*"
  2943. },
  2944. "type": "library",
  2945. "autoload": {
  2946. "psr-4": {
  2947. "MaxMind\\Exception\\": "src/Exception",
  2948. "MaxMind\\WebService\\": "src/WebService"
  2949. }
  2950. },
  2951. "notification-url": "https://packagist.org/downloads/",
  2952. "license": [
  2953. "Apache-2.0"
  2954. ],
  2955. "authors": [
  2956. {
  2957. "name": "Gregory Oschwald",
  2958. "email": "[email protected]"
  2959. }
  2960. ],
  2961. "description": "Internal MaxMind Web Service API",
  2962. "homepage": "https://github.com/maxmind/web-service-common-php",
  2963. "support": {
  2964. "issues": "https://github.com/maxmind/web-service-common-php/issues",
  2965. "source": "https://github.com/maxmind/web-service-common-php/tree/v0.10.0"
  2966. },
  2967. "time": "2024-11-14T23:14:52+00:00"
  2968. },
  2969. {
  2970. "name": "monolog/monolog",
  2971. "version": "3.9.0",
  2972. "source": {
  2973. "type": "git",
  2974. "url": "https://github.com/Seldaek/monolog.git",
  2975. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6"
  2976. },
  2977. "dist": {
  2978. "type": "zip",
  2979. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/10d85740180ecba7896c87e06a166e0c95a0e3b6",
  2980. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6",
  2981. "shasum": ""
  2982. },
  2983. "require": {
  2984. "php": ">=8.1",
  2985. "psr/log": "^2.0 || ^3.0"
  2986. },
  2987. "provide": {
  2988. "psr/log-implementation": "3.0.0"
  2989. },
  2990. "require-dev": {
  2991. "aws/aws-sdk-php": "^3.0",
  2992. "doctrine/couchdb": "~1.0@dev",
  2993. "elasticsearch/elasticsearch": "^7 || ^8",
  2994. "ext-json": "*",
  2995. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  2996. "guzzlehttp/guzzle": "^7.4.5",
  2997. "guzzlehttp/psr7": "^2.2",
  2998. "mongodb/mongodb": "^1.8",
  2999. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3000. "php-console/php-console": "^3.1.8",
  3001. "phpstan/phpstan": "^2",
  3002. "phpstan/phpstan-deprecation-rules": "^2",
  3003. "phpstan/phpstan-strict-rules": "^2",
  3004. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  3005. "predis/predis": "^1.1 || ^2",
  3006. "rollbar/rollbar": "^4.0",
  3007. "ruflin/elastica": "^7 || ^8",
  3008. "symfony/mailer": "^5.4 || ^6",
  3009. "symfony/mime": "^5.4 || ^6"
  3010. },
  3011. "suggest": {
  3012. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3013. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3014. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3015. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3016. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3017. "ext-mbstring": "Allow to work properly with unicode symbols",
  3018. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3019. "ext-openssl": "Required to send log messages using SSL",
  3020. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3021. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3022. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3023. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3024. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3025. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3026. },
  3027. "type": "library",
  3028. "extra": {
  3029. "branch-alias": {
  3030. "dev-main": "3.x-dev"
  3031. }
  3032. },
  3033. "autoload": {
  3034. "psr-4": {
  3035. "Monolog\\": "src/Monolog"
  3036. }
  3037. },
  3038. "notification-url": "https://packagist.org/downloads/",
  3039. "license": [
  3040. "MIT"
  3041. ],
  3042. "authors": [
  3043. {
  3044. "name": "Jordi Boggiano",
  3045. "email": "[email protected]",
  3046. "homepage": "https://seld.be"
  3047. }
  3048. ],
  3049. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3050. "homepage": "https://github.com/Seldaek/monolog",
  3051. "keywords": [
  3052. "log",
  3053. "logging",
  3054. "psr-3"
  3055. ],
  3056. "support": {
  3057. "issues": "https://github.com/Seldaek/monolog/issues",
  3058. "source": "https://github.com/Seldaek/monolog/tree/3.9.0"
  3059. },
  3060. "funding": [
  3061. {
  3062. "url": "https://github.com/Seldaek",
  3063. "type": "github"
  3064. },
  3065. {
  3066. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3067. "type": "tidelift"
  3068. }
  3069. ],
  3070. "time": "2025-03-24T10:02:05+00:00"
  3071. },
  3072. {
  3073. "name": "mtdowling/jmespath.php",
  3074. "version": "2.8.0",
  3075. "source": {
  3076. "type": "git",
  3077. "url": "https://github.com/jmespath/jmespath.php.git",
  3078. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc"
  3079. },
  3080. "dist": {
  3081. "type": "zip",
  3082. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  3083. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  3084. "shasum": ""
  3085. },
  3086. "require": {
  3087. "php": "^7.2.5 || ^8.0",
  3088. "symfony/polyfill-mbstring": "^1.17"
  3089. },
  3090. "require-dev": {
  3091. "composer/xdebug-handler": "^3.0.3",
  3092. "phpunit/phpunit": "^8.5.33"
  3093. },
  3094. "bin": [
  3095. "bin/jp.php"
  3096. ],
  3097. "type": "library",
  3098. "extra": {
  3099. "branch-alias": {
  3100. "dev-master": "2.8-dev"
  3101. }
  3102. },
  3103. "autoload": {
  3104. "files": [
  3105. "src/JmesPath.php"
  3106. ],
  3107. "psr-4": {
  3108. "JmesPath\\": "src/"
  3109. }
  3110. },
  3111. "notification-url": "https://packagist.org/downloads/",
  3112. "license": [
  3113. "MIT"
  3114. ],
  3115. "authors": [
  3116. {
  3117. "name": "Graham Campbell",
  3118. "email": "[email protected]",
  3119. "homepage": "https://github.com/GrahamCampbell"
  3120. },
  3121. {
  3122. "name": "Michael Dowling",
  3123. "email": "[email protected]",
  3124. "homepage": "https://github.com/mtdowling"
  3125. }
  3126. ],
  3127. "description": "Declaratively specify how to extract elements from a JSON document",
  3128. "keywords": [
  3129. "json",
  3130. "jsonpath"
  3131. ],
  3132. "support": {
  3133. "issues": "https://github.com/jmespath/jmespath.php/issues",
  3134. "source": "https://github.com/jmespath/jmespath.php/tree/2.8.0"
  3135. },
  3136. "time": "2024-09-04T18:46:31+00:00"
  3137. },
  3138. {
  3139. "name": "nesbot/carbon",
  3140. "version": "3.10.2",
  3141. "source": {
  3142. "type": "git",
  3143. "url": "https://github.com/CarbonPHP/carbon.git",
  3144. "reference": "76b5c07b8a9d2025ed1610e14cef1f3fd6ad2c24"
  3145. },
  3146. "dist": {
  3147. "type": "zip",
  3148. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/76b5c07b8a9d2025ed1610e14cef1f3fd6ad2c24",
  3149. "reference": "76b5c07b8a9d2025ed1610e14cef1f3fd6ad2c24",
  3150. "shasum": ""
  3151. },
  3152. "require": {
  3153. "carbonphp/carbon-doctrine-types": "<100.0",
  3154. "ext-json": "*",
  3155. "php": "^8.1",
  3156. "psr/clock": "^1.0",
  3157. "symfony/clock": "^6.3.12 || ^7.0",
  3158. "symfony/polyfill-mbstring": "^1.0",
  3159. "symfony/translation": "^4.4.18 || ^5.2.1 || ^6.0 || ^7.0"
  3160. },
  3161. "provide": {
  3162. "psr/clock-implementation": "1.0"
  3163. },
  3164. "require-dev": {
  3165. "doctrine/dbal": "^3.6.3 || ^4.0",
  3166. "doctrine/orm": "^2.15.2 || ^3.0",
  3167. "friendsofphp/php-cs-fixer": "^3.75.0",
  3168. "kylekatarnls/multi-tester": "^2.5.3",
  3169. "phpmd/phpmd": "^2.15.0",
  3170. "phpstan/extension-installer": "^1.4.3",
  3171. "phpstan/phpstan": "^2.1.17",
  3172. "phpunit/phpunit": "^10.5.46",
  3173. "squizlabs/php_codesniffer": "^3.13.0"
  3174. },
  3175. "bin": [
  3176. "bin/carbon"
  3177. ],
  3178. "type": "library",
  3179. "extra": {
  3180. "laravel": {
  3181. "providers": [
  3182. "Carbon\\Laravel\\ServiceProvider"
  3183. ]
  3184. },
  3185. "phpstan": {
  3186. "includes": [
  3187. "extension.neon"
  3188. ]
  3189. },
  3190. "branch-alias": {
  3191. "dev-2.x": "2.x-dev",
  3192. "dev-master": "3.x-dev"
  3193. }
  3194. },
  3195. "autoload": {
  3196. "psr-4": {
  3197. "Carbon\\": "src/Carbon/"
  3198. }
  3199. },
  3200. "notification-url": "https://packagist.org/downloads/",
  3201. "license": [
  3202. "MIT"
  3203. ],
  3204. "authors": [
  3205. {
  3206. "name": "Brian Nesbitt",
  3207. "email": "[email protected]",
  3208. "homepage": "https://markido.com"
  3209. },
  3210. {
  3211. "name": "kylekatarnls",
  3212. "homepage": "https://github.com/kylekatarnls"
  3213. }
  3214. ],
  3215. "description": "An API extension for DateTime that supports 281 different languages.",
  3216. "homepage": "https://carbon.nesbot.com",
  3217. "keywords": [
  3218. "date",
  3219. "datetime",
  3220. "time"
  3221. ],
  3222. "support": {
  3223. "docs": "https://carbon.nesbot.com/docs",
  3224. "issues": "https://github.com/CarbonPHP/carbon/issues",
  3225. "source": "https://github.com/CarbonPHP/carbon"
  3226. },
  3227. "funding": [
  3228. {
  3229. "url": "https://github.com/sponsors/kylekatarnls",
  3230. "type": "github"
  3231. },
  3232. {
  3233. "url": "https://opencollective.com/Carbon#sponsor",
  3234. "type": "opencollective"
  3235. },
  3236. {
  3237. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3238. "type": "tidelift"
  3239. }
  3240. ],
  3241. "time": "2025-08-02T09:36:06+00:00"
  3242. },
  3243. {
  3244. "name": "nikic/fast-route",
  3245. "version": "v1.3.0",
  3246. "source": {
  3247. "type": "git",
  3248. "url": "https://github.com/nikic/FastRoute.git",
  3249. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  3250. },
  3251. "dist": {
  3252. "type": "zip",
  3253. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  3254. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  3255. "shasum": ""
  3256. },
  3257. "require": {
  3258. "php": ">=5.4.0"
  3259. },
  3260. "require-dev": {
  3261. "phpunit/phpunit": "^4.8.35|~5.7"
  3262. },
  3263. "type": "library",
  3264. "autoload": {
  3265. "files": [
  3266. "src/functions.php"
  3267. ],
  3268. "psr-4": {
  3269. "FastRoute\\": "src/"
  3270. }
  3271. },
  3272. "notification-url": "https://packagist.org/downloads/",
  3273. "license": [
  3274. "BSD-3-Clause"
  3275. ],
  3276. "authors": [
  3277. {
  3278. "name": "Nikita Popov",
  3279. "email": "[email protected]"
  3280. }
  3281. ],
  3282. "description": "Fast request router for PHP",
  3283. "keywords": [
  3284. "router",
  3285. "routing"
  3286. ],
  3287. "support": {
  3288. "issues": "https://github.com/nikic/FastRoute/issues",
  3289. "source": "https://github.com/nikic/FastRoute/tree/master"
  3290. },
  3291. "time": "2018-02-13T20:26:39+00:00"
  3292. },
  3293. {
  3294. "name": "nikolaposa/rate-limit",
  3295. "version": "3.2.0",
  3296. "source": {
  3297. "type": "git",
  3298. "url": "https://github.com/nikolaposa/rate-limit.git",
  3299. "reference": "80a1badf8157c6f206074defd752bd00f9cf08e9"
  3300. },
  3301. "dist": {
  3302. "type": "zip",
  3303. "url": "https://api.github.com/repos/nikolaposa/rate-limit/zipball/80a1badf8157c6f206074defd752bd00f9cf08e9",
  3304. "reference": "80a1badf8157c6f206074defd752bd00f9cf08e9",
  3305. "shasum": ""
  3306. },
  3307. "require": {
  3308. "beberlei/assert": "^3.2",
  3309. "php": "^8.1"
  3310. },
  3311. "require-dev": {
  3312. "ext-apcu": ">=5.1.12",
  3313. "ext-redis": "*",
  3314. "friendsofphp/php-cs-fixer": "3.44",
  3315. "phpstan/phpstan": "^1.10",
  3316. "phpstan/phpstan-beberlei-assert": "^1.1",
  3317. "phpstan/phpstan-phpunit": "^1.3",
  3318. "phpunit/phpunit": "^10.5",
  3319. "predis/predis": "^1.1"
  3320. },
  3321. "suggest": {
  3322. "ext-apcu": "In order to use ApcuRateLimiter",
  3323. "ext-memcached": "In order to use MemcachedRateLimiter",
  3324. "ext-redis": "In order to use RedisRateLimiter",
  3325. "predis/predis": "In order to use PredisRateLimiter"
  3326. },
  3327. "type": "library",
  3328. "extra": {
  3329. "branch-alias": {
  3330. "dev-master": "3.2.x-dev"
  3331. }
  3332. },
  3333. "autoload": {
  3334. "psr-4": {
  3335. "RateLimit\\": "src/"
  3336. }
  3337. },
  3338. "notification-url": "https://packagist.org/downloads/",
  3339. "license": [
  3340. "MIT"
  3341. ],
  3342. "authors": [
  3343. {
  3344. "name": "Nikola Poša",
  3345. "email": "[email protected]",
  3346. "homepage": "https://www.nikolaposa.in.rs"
  3347. }
  3348. ],
  3349. "description": "General purpose rate limiter implementation.",
  3350. "keywords": [
  3351. "rate limit",
  3352. "redis"
  3353. ],
  3354. "support": {
  3355. "issues": "https://github.com/nikolaposa/rate-limit/issues",
  3356. "source": "https://github.com/nikolaposa/rate-limit/tree/3.2.0"
  3357. },
  3358. "time": "2024-05-17T14:39:51+00:00"
  3359. },
  3360. {
  3361. "name": "openai-php/client",
  3362. "version": "v0.14.0",
  3363. "source": {
  3364. "type": "git",
  3365. "url": "https://github.com/openai-php/client.git",
  3366. "reference": "c176c964902272649c10f092e2513bc12179161f"
  3367. },
  3368. "dist": {
  3369. "type": "zip",
  3370. "url": "https://api.github.com/repos/openai-php/client/zipball/c176c964902272649c10f092e2513bc12179161f",
  3371. "reference": "c176c964902272649c10f092e2513bc12179161f",
  3372. "shasum": ""
  3373. },
  3374. "require": {
  3375. "php": "^8.2.0",
  3376. "php-http/discovery": "^1.20.0",
  3377. "php-http/multipart-stream-builder": "^1.4.2",
  3378. "psr/http-client": "^1.0.3",
  3379. "psr/http-client-implementation": "^1.0.1",
  3380. "psr/http-factory-implementation": "*",
  3381. "psr/http-message": "^1.1.0|^2.0.0"
  3382. },
  3383. "require-dev": {
  3384. "guzzlehttp/guzzle": "^7.9.3",
  3385. "guzzlehttp/psr7": "^2.7.1",
  3386. "laravel/pint": "^1.22.0",
  3387. "mockery/mockery": "^1.6.12",
  3388. "nunomaduro/collision": "^8.8.0",
  3389. "pestphp/pest": "^3.8.2|^4.0.0",
  3390. "pestphp/pest-plugin-arch": "^3.1.1|^4.0.0",
  3391. "pestphp/pest-plugin-type-coverage": "^3.5.1|^4.0.0",
  3392. "phpstan/phpstan": "^1.12.25",
  3393. "symfony/var-dumper": "^7.2.6"
  3394. },
  3395. "type": "library",
  3396. "autoload": {
  3397. "files": [
  3398. "src/OpenAI.php"
  3399. ],
  3400. "psr-4": {
  3401. "OpenAI\\": "src/"
  3402. }
  3403. },
  3404. "notification-url": "https://packagist.org/downloads/",
  3405. "license": [
  3406. "MIT"
  3407. ],
  3408. "authors": [
  3409. {
  3410. "name": "Nuno Maduro",
  3411. "email": "[email protected]"
  3412. },
  3413. {
  3414. "name": "Sandro Gehri"
  3415. }
  3416. ],
  3417. "description": "OpenAI PHP is a supercharged PHP API client that allows you to interact with the Open AI API",
  3418. "keywords": [
  3419. "GPT-3",
  3420. "api",
  3421. "client",
  3422. "codex",
  3423. "dall-e",
  3424. "language",
  3425. "natural",
  3426. "openai",
  3427. "php",
  3428. "processing",
  3429. "sdk"
  3430. ],
  3431. "support": {
  3432. "issues": "https://github.com/openai-php/client/issues",
  3433. "source": "https://github.com/openai-php/client/tree/v0.14.0"
  3434. },
  3435. "funding": [
  3436. {
  3437. "url": "https://www.paypal.com/paypalme/enunomaduro",
  3438. "type": "custom"
  3439. },
  3440. {
  3441. "url": "https://github.com/gehrisandro",
  3442. "type": "github"
  3443. },
  3444. {
  3445. "url": "https://github.com/nunomaduro",
  3446. "type": "github"
  3447. }
  3448. ],
  3449. "time": "2025-06-24T10:49:48+00:00"
  3450. },
  3451. {
  3452. "name": "paragonie/constant_time_encoding",
  3453. "version": "v3.0.0",
  3454. "source": {
  3455. "type": "git",
  3456. "url": "https://github.com/paragonie/constant_time_encoding.git",
  3457. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  3458. },
  3459. "dist": {
  3460. "type": "zip",
  3461. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  3462. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  3463. "shasum": ""
  3464. },
  3465. "require": {
  3466. "php": "^8"
  3467. },
  3468. "require-dev": {
  3469. "phpunit/phpunit": "^9",
  3470. "vimeo/psalm": "^4|^5"
  3471. },
  3472. "type": "library",
  3473. "autoload": {
  3474. "psr-4": {
  3475. "ParagonIE\\ConstantTime\\": "src/"
  3476. }
  3477. },
  3478. "notification-url": "https://packagist.org/downloads/",
  3479. "license": [
  3480. "MIT"
  3481. ],
  3482. "authors": [
  3483. {
  3484. "name": "Paragon Initiative Enterprises",
  3485. "email": "[email protected]",
  3486. "homepage": "https://paragonie.com",
  3487. "role": "Maintainer"
  3488. },
  3489. {
  3490. "name": "Steve 'Sc00bz' Thomas",
  3491. "email": "[email protected]",
  3492. "homepage": "https://www.tobtu.com",
  3493. "role": "Original Developer"
  3494. }
  3495. ],
  3496. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  3497. "keywords": [
  3498. "base16",
  3499. "base32",
  3500. "base32_decode",
  3501. "base32_encode",
  3502. "base64",
  3503. "base64_decode",
  3504. "base64_encode",
  3505. "bin2hex",
  3506. "encoding",
  3507. "hex",
  3508. "hex2bin",
  3509. "rfc4648"
  3510. ],
  3511. "support": {
  3512. "email": "[email protected]",
  3513. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  3514. "source": "https://github.com/paragonie/constant_time_encoding"
  3515. },
  3516. "time": "2024-05-08T12:36:18+00:00"
  3517. },
  3518. {
  3519. "name": "php-http/client-common",
  3520. "version": "2.7.2",
  3521. "source": {
  3522. "type": "git",
  3523. "url": "https://github.com/php-http/client-common.git",
  3524. "reference": "0cfe9858ab9d3b213041b947c881d5b19ceeca46"
  3525. },
  3526. "dist": {
  3527. "type": "zip",
  3528. "url": "https://api.github.com/repos/php-http/client-common/zipball/0cfe9858ab9d3b213041b947c881d5b19ceeca46",
  3529. "reference": "0cfe9858ab9d3b213041b947c881d5b19ceeca46",
  3530. "shasum": ""
  3531. },
  3532. "require": {
  3533. "php": "^7.1 || ^8.0",
  3534. "php-http/httplug": "^2.0",
  3535. "php-http/message": "^1.6",
  3536. "psr/http-client": "^1.0",
  3537. "psr/http-factory": "^1.0",
  3538. "psr/http-message": "^1.0 || ^2.0",
  3539. "symfony/options-resolver": "~4.0.15 || ~4.1.9 || ^4.2.1 || ^5.0 || ^6.0 || ^7.0",
  3540. "symfony/polyfill-php80": "^1.17"
  3541. },
  3542. "require-dev": {
  3543. "doctrine/instantiator": "^1.1",
  3544. "guzzlehttp/psr7": "^1.4",
  3545. "nyholm/psr7": "^1.2",
  3546. "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1",
  3547. "phpspec/prophecy": "^1.10.2",
  3548. "phpunit/phpunit": "^7.5.20 || ^8.5.33 || ^9.6.7"
  3549. },
  3550. "suggest": {
  3551. "ext-json": "To detect JSON responses with the ContentTypePlugin",
  3552. "ext-libxml": "To detect XML responses with the ContentTypePlugin",
  3553. "php-http/cache-plugin": "PSR-6 Cache plugin",
  3554. "php-http/logger-plugin": "PSR-3 Logger plugin",
  3555. "php-http/stopwatch-plugin": "Symfony Stopwatch plugin"
  3556. },
  3557. "type": "library",
  3558. "autoload": {
  3559. "psr-4": {
  3560. "Http\\Client\\Common\\": "src/"
  3561. }
  3562. },
  3563. "notification-url": "https://packagist.org/downloads/",
  3564. "license": [
  3565. "MIT"
  3566. ],
  3567. "authors": [
  3568. {
  3569. "name": "Márk Sági-Kazár",
  3570. "email": "[email protected]"
  3571. }
  3572. ],
  3573. "description": "Common HTTP Client implementations and tools for HTTPlug",
  3574. "homepage": "http://httplug.io",
  3575. "keywords": [
  3576. "client",
  3577. "common",
  3578. "http",
  3579. "httplug"
  3580. ],
  3581. "support": {
  3582. "issues": "https://github.com/php-http/client-common/issues",
  3583. "source": "https://github.com/php-http/client-common/tree/2.7.2"
  3584. },
  3585. "time": "2024-09-24T06:21:48+00:00"
  3586. },
  3587. {
  3588. "name": "php-http/discovery",
  3589. "version": "1.20.0",
  3590. "source": {
  3591. "type": "git",
  3592. "url": "https://github.com/php-http/discovery.git",
  3593. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d"
  3594. },
  3595. "dist": {
  3596. "type": "zip",
  3597. "url": "https://api.github.com/repos/php-http/discovery/zipball/82fe4c73ef3363caed49ff8dd1539ba06044910d",
  3598. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d",
  3599. "shasum": ""
  3600. },
  3601. "require": {
  3602. "composer-plugin-api": "^1.0|^2.0",
  3603. "php": "^7.1 || ^8.0"
  3604. },
  3605. "conflict": {
  3606. "nyholm/psr7": "<1.0",
  3607. "zendframework/zend-diactoros": "*"
  3608. },
  3609. "provide": {
  3610. "php-http/async-client-implementation": "*",
  3611. "php-http/client-implementation": "*",
  3612. "psr/http-client-implementation": "*",
  3613. "psr/http-factory-implementation": "*",
  3614. "psr/http-message-implementation": "*"
  3615. },
  3616. "require-dev": {
  3617. "composer/composer": "^1.0.2|^2.0",
  3618. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  3619. "php-http/httplug": "^1.0 || ^2.0",
  3620. "php-http/message-factory": "^1.0",
  3621. "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3",
  3622. "sebastian/comparator": "^3.0.5 || ^4.0.8",
  3623. "symfony/phpunit-bridge": "^6.4.4 || ^7.0.1"
  3624. },
  3625. "type": "composer-plugin",
  3626. "extra": {
  3627. "class": "Http\\Discovery\\Composer\\Plugin",
  3628. "plugin-optional": true
  3629. },
  3630. "autoload": {
  3631. "psr-4": {
  3632. "Http\\Discovery\\": "src/"
  3633. },
  3634. "exclude-from-classmap": [
  3635. "src/Composer/Plugin.php"
  3636. ]
  3637. },
  3638. "notification-url": "https://packagist.org/downloads/",
  3639. "license": [
  3640. "MIT"
  3641. ],
  3642. "authors": [
  3643. {
  3644. "name": "Márk Sági-Kazár",
  3645. "email": "[email protected]"
  3646. }
  3647. ],
  3648. "description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations",
  3649. "homepage": "http://php-http.org",
  3650. "keywords": [
  3651. "adapter",
  3652. "client",
  3653. "discovery",
  3654. "factory",
  3655. "http",
  3656. "message",
  3657. "psr17",
  3658. "psr7"
  3659. ],
  3660. "support": {
  3661. "issues": "https://github.com/php-http/discovery/issues",
  3662. "source": "https://github.com/php-http/discovery/tree/1.20.0"
  3663. },
  3664. "time": "2024-10-02T11:20:13+00:00"
  3665. },
  3666. {
  3667. "name": "php-http/httplug",
  3668. "version": "2.4.1",
  3669. "source": {
  3670. "type": "git",
  3671. "url": "https://github.com/php-http/httplug.git",
  3672. "reference": "5cad731844891a4c282f3f3e1b582c46839d22f4"
  3673. },
  3674. "dist": {
  3675. "type": "zip",
  3676. "url": "https://api.github.com/repos/php-http/httplug/zipball/5cad731844891a4c282f3f3e1b582c46839d22f4",
  3677. "reference": "5cad731844891a4c282f3f3e1b582c46839d22f4",
  3678. "shasum": ""
  3679. },
  3680. "require": {
  3681. "php": "^7.1 || ^8.0",
  3682. "php-http/promise": "^1.1",
  3683. "psr/http-client": "^1.0",
  3684. "psr/http-message": "^1.0 || ^2.0"
  3685. },
  3686. "require-dev": {
  3687. "friends-of-phpspec/phpspec-code-coverage": "^4.1 || ^5.0 || ^6.0",
  3688. "phpspec/phpspec": "^5.1 || ^6.0 || ^7.0"
  3689. },
  3690. "type": "library",
  3691. "autoload": {
  3692. "psr-4": {
  3693. "Http\\Client\\": "src/"
  3694. }
  3695. },
  3696. "notification-url": "https://packagist.org/downloads/",
  3697. "license": [
  3698. "MIT"
  3699. ],
  3700. "authors": [
  3701. {
  3702. "name": "Eric GELOEN",
  3703. "email": "[email protected]"
  3704. },
  3705. {
  3706. "name": "Márk Sági-Kazár",
  3707. "email": "[email protected]",
  3708. "homepage": "https://sagikazarmark.hu"
  3709. }
  3710. ],
  3711. "description": "HTTPlug, the HTTP client abstraction for PHP",
  3712. "homepage": "http://httplug.io",
  3713. "keywords": [
  3714. "client",
  3715. "http"
  3716. ],
  3717. "support": {
  3718. "issues": "https://github.com/php-http/httplug/issues",
  3719. "source": "https://github.com/php-http/httplug/tree/2.4.1"
  3720. },
  3721. "time": "2024-09-23T11:39:58+00:00"
  3722. },
  3723. {
  3724. "name": "php-http/message",
  3725. "version": "1.16.2",
  3726. "source": {
  3727. "type": "git",
  3728. "url": "https://github.com/php-http/message.git",
  3729. "reference": "06dd5e8562f84e641bf929bfe699ee0f5ce8080a"
  3730. },
  3731. "dist": {
  3732. "type": "zip",
  3733. "url": "https://api.github.com/repos/php-http/message/zipball/06dd5e8562f84e641bf929bfe699ee0f5ce8080a",
  3734. "reference": "06dd5e8562f84e641bf929bfe699ee0f5ce8080a",
  3735. "shasum": ""
  3736. },
  3737. "require": {
  3738. "clue/stream-filter": "^1.5",
  3739. "php": "^7.2 || ^8.0",
  3740. "psr/http-message": "^1.1 || ^2.0"
  3741. },
  3742. "provide": {
  3743. "php-http/message-factory-implementation": "1.0"
  3744. },
  3745. "require-dev": {
  3746. "ergebnis/composer-normalize": "^2.6",
  3747. "ext-zlib": "*",
  3748. "guzzlehttp/psr7": "^1.0 || ^2.0",
  3749. "laminas/laminas-diactoros": "^2.0 || ^3.0",
  3750. "php-http/message-factory": "^1.0.2",
  3751. "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1",
  3752. "slim/slim": "^3.0"
  3753. },
  3754. "suggest": {
  3755. "ext-zlib": "Used with compressor/decompressor streams",
  3756. "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories",
  3757. "laminas/laminas-diactoros": "Used with Diactoros Factories",
  3758. "slim/slim": "Used with Slim Framework PSR-7 implementation"
  3759. },
  3760. "type": "library",
  3761. "autoload": {
  3762. "files": [
  3763. "src/filters.php"
  3764. ],
  3765. "psr-4": {
  3766. "Http\\Message\\": "src/"
  3767. }
  3768. },
  3769. "notification-url": "https://packagist.org/downloads/",
  3770. "license": [
  3771. "MIT"
  3772. ],
  3773. "authors": [
  3774. {
  3775. "name": "Márk Sági-Kazár",
  3776. "email": "[email protected]"
  3777. }
  3778. ],
  3779. "description": "HTTP Message related tools",
  3780. "homepage": "http://php-http.org",
  3781. "keywords": [
  3782. "http",
  3783. "message",
  3784. "psr-7"
  3785. ],
  3786. "support": {
  3787. "issues": "https://github.com/php-http/message/issues",
  3788. "source": "https://github.com/php-http/message/tree/1.16.2"
  3789. },
  3790. "time": "2024-10-02T11:34:13+00:00"
  3791. },
  3792. {
  3793. "name": "php-http/multipart-stream-builder",
  3794. "version": "1.4.2",
  3795. "source": {
  3796. "type": "git",
  3797. "url": "https://github.com/php-http/multipart-stream-builder.git",
  3798. "reference": "10086e6de6f53489cca5ecc45b6f468604d3460e"
  3799. },
  3800. "dist": {
  3801. "type": "zip",
  3802. "url": "https://api.github.com/repos/php-http/multipart-stream-builder/zipball/10086e6de6f53489cca5ecc45b6f468604d3460e",
  3803. "reference": "10086e6de6f53489cca5ecc45b6f468604d3460e",
  3804. "shasum": ""
  3805. },
  3806. "require": {
  3807. "php": "^7.1 || ^8.0",
  3808. "php-http/discovery": "^1.15",
  3809. "psr/http-factory-implementation": "^1.0"
  3810. },
  3811. "require-dev": {
  3812. "nyholm/psr7": "^1.0",
  3813. "php-http/message": "^1.5",
  3814. "php-http/message-factory": "^1.0.2",
  3815. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.3"
  3816. },
  3817. "type": "library",
  3818. "autoload": {
  3819. "psr-4": {
  3820. "Http\\Message\\MultipartStream\\": "src/"
  3821. }
  3822. },
  3823. "notification-url": "https://packagist.org/downloads/",
  3824. "license": [
  3825. "MIT"
  3826. ],
  3827. "authors": [
  3828. {
  3829. "name": "Tobias Nyholm",
  3830. "email": "[email protected]"
  3831. }
  3832. ],
  3833. "description": "A builder class that help you create a multipart stream",
  3834. "homepage": "http://php-http.org",
  3835. "keywords": [
  3836. "factory",
  3837. "http",
  3838. "message",
  3839. "multipart stream",
  3840. "stream"
  3841. ],
  3842. "support": {
  3843. "issues": "https://github.com/php-http/multipart-stream-builder/issues",
  3844. "source": "https://github.com/php-http/multipart-stream-builder/tree/1.4.2"
  3845. },
  3846. "time": "2024-09-04T13:22:54+00:00"
  3847. },
  3848. {
  3849. "name": "php-http/promise",
  3850. "version": "1.3.1",
  3851. "source": {
  3852. "type": "git",
  3853. "url": "https://github.com/php-http/promise.git",
  3854. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83"
  3855. },
  3856. "dist": {
  3857. "type": "zip",
  3858. "url": "https://api.github.com/repos/php-http/promise/zipball/fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  3859. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  3860. "shasum": ""
  3861. },
  3862. "require": {
  3863. "php": "^7.1 || ^8.0"
  3864. },
  3865. "require-dev": {
  3866. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2 || ^6.3",
  3867. "phpspec/phpspec": "^5.1.2 || ^6.2 || ^7.4"
  3868. },
  3869. "type": "library",
  3870. "autoload": {
  3871. "psr-4": {
  3872. "Http\\Promise\\": "src/"
  3873. }
  3874. },
  3875. "notification-url": "https://packagist.org/downloads/",
  3876. "license": [
  3877. "MIT"
  3878. ],
  3879. "authors": [
  3880. {
  3881. "name": "Joel Wurtz",
  3882. "email": "[email protected]"
  3883. },
  3884. {
  3885. "name": "Márk Sági-Kazár",
  3886. "email": "[email protected]"
  3887. }
  3888. ],
  3889. "description": "Promise used for asynchronous HTTP requests",
  3890. "homepage": "http://httplug.io",
  3891. "keywords": [
  3892. "promise"
  3893. ],
  3894. "support": {
  3895. "issues": "https://github.com/php-http/promise/issues",
  3896. "source": "https://github.com/php-http/promise/tree/1.3.1"
  3897. },
  3898. "time": "2024-03-15T13:55:21+00:00"
  3899. },
  3900. {
  3901. "name": "phpdocumentor/reflection-common",
  3902. "version": "2.2.0",
  3903. "source": {
  3904. "type": "git",
  3905. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  3906. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  3907. },
  3908. "dist": {
  3909. "type": "zip",
  3910. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  3911. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  3912. "shasum": ""
  3913. },
  3914. "require": {
  3915. "php": "^7.2 || ^8.0"
  3916. },
  3917. "type": "library",
  3918. "extra": {
  3919. "branch-alias": {
  3920. "dev-2.x": "2.x-dev"
  3921. }
  3922. },
  3923. "autoload": {
  3924. "psr-4": {
  3925. "phpDocumentor\\Reflection\\": "src/"
  3926. }
  3927. },
  3928. "notification-url": "https://packagist.org/downloads/",
  3929. "license": [
  3930. "MIT"
  3931. ],
  3932. "authors": [
  3933. {
  3934. "name": "Jaap van Otterdijk",
  3935. "email": "[email protected]"
  3936. }
  3937. ],
  3938. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  3939. "homepage": "http://www.phpdoc.org",
  3940. "keywords": [
  3941. "FQSEN",
  3942. "phpDocumentor",
  3943. "phpdoc",
  3944. "reflection",
  3945. "static analysis"
  3946. ],
  3947. "support": {
  3948. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  3949. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  3950. },
  3951. "time": "2020-06-27T09:03:43+00:00"
  3952. },
  3953. {
  3954. "name": "phpdocumentor/reflection-docblock",
  3955. "version": "5.6.2",
  3956. "source": {
  3957. "type": "git",
  3958. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  3959. "reference": "92dde6a5919e34835c506ac8c523ef095a95ed62"
  3960. },
  3961. "dist": {
  3962. "type": "zip",
  3963. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/92dde6a5919e34835c506ac8c523ef095a95ed62",
  3964. "reference": "92dde6a5919e34835c506ac8c523ef095a95ed62",
  3965. "shasum": ""
  3966. },
  3967. "require": {
  3968. "doctrine/deprecations": "^1.1",
  3969. "ext-filter": "*",
  3970. "php": "^7.4 || ^8.0",
  3971. "phpdocumentor/reflection-common": "^2.2",
  3972. "phpdocumentor/type-resolver": "^1.7",
  3973. "phpstan/phpdoc-parser": "^1.7|^2.0",
  3974. "webmozart/assert": "^1.9.1"
  3975. },
  3976. "require-dev": {
  3977. "mockery/mockery": "~1.3.5 || ~1.6.0",
  3978. "phpstan/extension-installer": "^1.1",
  3979. "phpstan/phpstan": "^1.8",
  3980. "phpstan/phpstan-mockery": "^1.1",
  3981. "phpstan/phpstan-webmozart-assert": "^1.2",
  3982. "phpunit/phpunit": "^9.5",
  3983. "psalm/phar": "^5.26"
  3984. },
  3985. "type": "library",
  3986. "extra": {
  3987. "branch-alias": {
  3988. "dev-master": "5.x-dev"
  3989. }
  3990. },
  3991. "autoload": {
  3992. "psr-4": {
  3993. "phpDocumentor\\Reflection\\": "src"
  3994. }
  3995. },
  3996. "notification-url": "https://packagist.org/downloads/",
  3997. "license": [
  3998. "MIT"
  3999. ],
  4000. "authors": [
  4001. {
  4002. "name": "Mike van Riel",
  4003. "email": "[email protected]"
  4004. },
  4005. {
  4006. "name": "Jaap van Otterdijk",
  4007. "email": "[email protected]"
  4008. }
  4009. ],
  4010. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  4011. "support": {
  4012. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  4013. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.2"
  4014. },
  4015. "time": "2025-04-13T19:20:35+00:00"
  4016. },
  4017. {
  4018. "name": "phpdocumentor/type-resolver",
  4019. "version": "1.10.0",
  4020. "source": {
  4021. "type": "git",
  4022. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  4023. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
  4024. },
  4025. "dist": {
  4026. "type": "zip",
  4027. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  4028. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  4029. "shasum": ""
  4030. },
  4031. "require": {
  4032. "doctrine/deprecations": "^1.0",
  4033. "php": "^7.3 || ^8.0",
  4034. "phpdocumentor/reflection-common": "^2.0",
  4035. "phpstan/phpdoc-parser": "^1.18|^2.0"
  4036. },
  4037. "require-dev": {
  4038. "ext-tokenizer": "*",
  4039. "phpbench/phpbench": "^1.2",
  4040. "phpstan/extension-installer": "^1.1",
  4041. "phpstan/phpstan": "^1.8",
  4042. "phpstan/phpstan-phpunit": "^1.1",
  4043. "phpunit/phpunit": "^9.5",
  4044. "rector/rector": "^0.13.9",
  4045. "vimeo/psalm": "^4.25"
  4046. },
  4047. "type": "library",
  4048. "extra": {
  4049. "branch-alias": {
  4050. "dev-1.x": "1.x-dev"
  4051. }
  4052. },
  4053. "autoload": {
  4054. "psr-4": {
  4055. "phpDocumentor\\Reflection\\": "src"
  4056. }
  4057. },
  4058. "notification-url": "https://packagist.org/downloads/",
  4059. "license": [
  4060. "MIT"
  4061. ],
  4062. "authors": [
  4063. {
  4064. "name": "Mike van Riel",
  4065. "email": "[email protected]"
  4066. }
  4067. ],
  4068. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  4069. "support": {
  4070. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  4071. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
  4072. },
  4073. "time": "2024-11-09T15:12:26+00:00"
  4074. },
  4075. {
  4076. "name": "phpmailer/phpmailer",
  4077. "version": "v6.10.0",
  4078. "source": {
  4079. "type": "git",
  4080. "url": "https://github.com/PHPMailer/PHPMailer.git",
  4081. "reference": "bf74d75a1fde6beaa34a0ddae2ec5fce0f72a144"
  4082. },
  4083. "dist": {
  4084. "type": "zip",
  4085. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/bf74d75a1fde6beaa34a0ddae2ec5fce0f72a144",
  4086. "reference": "bf74d75a1fde6beaa34a0ddae2ec5fce0f72a144",
  4087. "shasum": ""
  4088. },
  4089. "require": {
  4090. "ext-ctype": "*",
  4091. "ext-filter": "*",
  4092. "ext-hash": "*",
  4093. "php": ">=5.5.0"
  4094. },
  4095. "require-dev": {
  4096. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  4097. "doctrine/annotations": "^1.2.6 || ^1.13.3",
  4098. "php-parallel-lint/php-console-highlighter": "^1.0.0",
  4099. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  4100. "phpcompatibility/php-compatibility": "^9.3.5",
  4101. "roave/security-advisories": "dev-latest",
  4102. "squizlabs/php_codesniffer": "^3.7.2",
  4103. "yoast/phpunit-polyfills": "^1.0.4"
  4104. },
  4105. "suggest": {
  4106. "decomplexity/SendOauth2": "Adapter for using XOAUTH2 authentication",
  4107. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  4108. "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
  4109. "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
  4110. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  4111. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  4112. "psr/log": "For optional PSR-3 debug logging",
  4113. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
  4114. "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
  4115. },
  4116. "type": "library",
  4117. "autoload": {
  4118. "psr-4": {
  4119. "PHPMailer\\PHPMailer\\": "src/"
  4120. }
  4121. },
  4122. "notification-url": "https://packagist.org/downloads/",
  4123. "license": [
  4124. "LGPL-2.1-only"
  4125. ],
  4126. "authors": [
  4127. {
  4128. "name": "Marcus Bointon",
  4129. "email": "[email protected]"
  4130. },
  4131. {
  4132. "name": "Jim Jagielski",
  4133. "email": "[email protected]"
  4134. },
  4135. {
  4136. "name": "Andy Prevost",
  4137. "email": "[email protected]"
  4138. },
  4139. {
  4140. "name": "Brent R. Matzelle"
  4141. }
  4142. ],
  4143. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  4144. "support": {
  4145. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  4146. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.10.0"
  4147. },
  4148. "funding": [
  4149. {
  4150. "url": "https://github.com/Synchro",
  4151. "type": "github"
  4152. }
  4153. ],
  4154. "time": "2025-04-24T15:19:31+00:00"
  4155. },
  4156. {
  4157. "name": "phpstan/phpdoc-parser",
  4158. "version": "2.2.0",
  4159. "source": {
  4160. "type": "git",
  4161. "url": "https://github.com/phpstan/phpdoc-parser.git",
  4162. "reference": "b9e61a61e39e02dd90944e9115241c7f7e76bfd8"
  4163. },
  4164. "dist": {
  4165. "type": "zip",
  4166. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/b9e61a61e39e02dd90944e9115241c7f7e76bfd8",
  4167. "reference": "b9e61a61e39e02dd90944e9115241c7f7e76bfd8",
  4168. "shasum": ""
  4169. },
  4170. "require": {
  4171. "php": "^7.4 || ^8.0"
  4172. },
  4173. "require-dev": {
  4174. "doctrine/annotations": "^2.0",
  4175. "nikic/php-parser": "^5.3.0",
  4176. "php-parallel-lint/php-parallel-lint": "^1.2",
  4177. "phpstan/extension-installer": "^1.0",
  4178. "phpstan/phpstan": "^2.0",
  4179. "phpstan/phpstan-phpunit": "^2.0",
  4180. "phpstan/phpstan-strict-rules": "^2.0",
  4181. "phpunit/phpunit": "^9.6",
  4182. "symfony/process": "^5.2"
  4183. },
  4184. "type": "library",
  4185. "autoload": {
  4186. "psr-4": {
  4187. "PHPStan\\PhpDocParser\\": [
  4188. "src/"
  4189. ]
  4190. }
  4191. },
  4192. "notification-url": "https://packagist.org/downloads/",
  4193. "license": [
  4194. "MIT"
  4195. ],
  4196. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  4197. "support": {
  4198. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  4199. "source": "https://github.com/phpstan/phpdoc-parser/tree/2.2.0"
  4200. },
  4201. "time": "2025-07-13T07:04:09+00:00"
  4202. },
  4203. {
  4204. "name": "postal/postal",
  4205. "version": "v2.0.2",
  4206. "source": {
  4207. "type": "git",
  4208. "url": "https://github.com/postalserver/postal-php.git",
  4209. "reference": "bb664406d35f763d9a7420fb7eeac67f34279b13"
  4210. },
  4211. "dist": {
  4212. "type": "zip",
  4213. "url": "https://api.github.com/repos/postalserver/postal-php/zipball/bb664406d35f763d9a7420fb7eeac67f34279b13",
  4214. "reference": "bb664406d35f763d9a7420fb7eeac67f34279b13",
  4215. "shasum": ""
  4216. },
  4217. "require": {
  4218. "guzzlehttp/guzzle": "^6 || ^7",
  4219. "php": "^7.4 || ^8.0"
  4220. },
  4221. "require-dev": {
  4222. "phpstan/phpstan": "^1.10",
  4223. "phpunit/phpunit": "^9.6",
  4224. "symplify/easy-coding-standard": "^11.3"
  4225. },
  4226. "type": "library",
  4227. "autoload": {
  4228. "psr-4": {
  4229. "Postal\\": "src/"
  4230. }
  4231. },
  4232. "notification-url": "https://packagist.org/downloads/",
  4233. "license": [
  4234. "MIT"
  4235. ],
  4236. "authors": [
  4237. {
  4238. "name": "Adam Cooke",
  4239. "email": "[email protected]"
  4240. },
  4241. {
  4242. "name": "Josh Grant",
  4243. "email": "[email protected]"
  4244. },
  4245. {
  4246. "name": "William Hall",
  4247. "email": "[email protected]"
  4248. }
  4249. ],
  4250. "description": "Postal for PHP library.",
  4251. "homepage": "https://github.com/atech/postal",
  4252. "keywords": [
  4253. "mail",
  4254. "postal"
  4255. ],
  4256. "support": {
  4257. "issues": "https://github.com/postalserver/postal-php/issues",
  4258. "source": "https://github.com/postalserver/postal-php/tree/v2.0.2"
  4259. },
  4260. "time": "2024-10-01T13:17:12+00:00"
  4261. },
  4262. {
  4263. "name": "psr/cache",
  4264. "version": "3.0.0",
  4265. "source": {
  4266. "type": "git",
  4267. "url": "https://github.com/php-fig/cache.git",
  4268. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  4269. },
  4270. "dist": {
  4271. "type": "zip",
  4272. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4273. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4274. "shasum": ""
  4275. },
  4276. "require": {
  4277. "php": ">=8.0.0"
  4278. },
  4279. "type": "library",
  4280. "extra": {
  4281. "branch-alias": {
  4282. "dev-master": "1.0.x-dev"
  4283. }
  4284. },
  4285. "autoload": {
  4286. "psr-4": {
  4287. "Psr\\Cache\\": "src/"
  4288. }
  4289. },
  4290. "notification-url": "https://packagist.org/downloads/",
  4291. "license": [
  4292. "MIT"
  4293. ],
  4294. "authors": [
  4295. {
  4296. "name": "PHP-FIG",
  4297. "homepage": "https://www.php-fig.org/"
  4298. }
  4299. ],
  4300. "description": "Common interface for caching libraries",
  4301. "keywords": [
  4302. "cache",
  4303. "psr",
  4304. "psr-6"
  4305. ],
  4306. "support": {
  4307. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  4308. },
  4309. "time": "2021-02-03T23:26:27+00:00"
  4310. },
  4311. {
  4312. "name": "psr/clock",
  4313. "version": "1.0.0",
  4314. "source": {
  4315. "type": "git",
  4316. "url": "https://github.com/php-fig/clock.git",
  4317. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  4318. },
  4319. "dist": {
  4320. "type": "zip",
  4321. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4322. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4323. "shasum": ""
  4324. },
  4325. "require": {
  4326. "php": "^7.0 || ^8.0"
  4327. },
  4328. "type": "library",
  4329. "autoload": {
  4330. "psr-4": {
  4331. "Psr\\Clock\\": "src/"
  4332. }
  4333. },
  4334. "notification-url": "https://packagist.org/downloads/",
  4335. "license": [
  4336. "MIT"
  4337. ],
  4338. "authors": [
  4339. {
  4340. "name": "PHP-FIG",
  4341. "homepage": "https://www.php-fig.org/"
  4342. }
  4343. ],
  4344. "description": "Common interface for reading the clock.",
  4345. "homepage": "https://github.com/php-fig/clock",
  4346. "keywords": [
  4347. "clock",
  4348. "now",
  4349. "psr",
  4350. "psr-20",
  4351. "time"
  4352. ],
  4353. "support": {
  4354. "issues": "https://github.com/php-fig/clock/issues",
  4355. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  4356. },
  4357. "time": "2022-11-25T14:36:26+00:00"
  4358. },
  4359. {
  4360. "name": "psr/container",
  4361. "version": "2.0.2",
  4362. "source": {
  4363. "type": "git",
  4364. "url": "https://github.com/php-fig/container.git",
  4365. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  4366. },
  4367. "dist": {
  4368. "type": "zip",
  4369. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4370. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4371. "shasum": ""
  4372. },
  4373. "require": {
  4374. "php": ">=7.4.0"
  4375. },
  4376. "type": "library",
  4377. "extra": {
  4378. "branch-alias": {
  4379. "dev-master": "2.0.x-dev"
  4380. }
  4381. },
  4382. "autoload": {
  4383. "psr-4": {
  4384. "Psr\\Container\\": "src/"
  4385. }
  4386. },
  4387. "notification-url": "https://packagist.org/downloads/",
  4388. "license": [
  4389. "MIT"
  4390. ],
  4391. "authors": [
  4392. {
  4393. "name": "PHP-FIG",
  4394. "homepage": "https://www.php-fig.org/"
  4395. }
  4396. ],
  4397. "description": "Common Container Interface (PHP FIG PSR-11)",
  4398. "homepage": "https://github.com/php-fig/container",
  4399. "keywords": [
  4400. "PSR-11",
  4401. "container",
  4402. "container-interface",
  4403. "container-interop",
  4404. "psr"
  4405. ],
  4406. "support": {
  4407. "issues": "https://github.com/php-fig/container/issues",
  4408. "source": "https://github.com/php-fig/container/tree/2.0.2"
  4409. },
  4410. "time": "2021-11-05T16:47:00+00:00"
  4411. },
  4412. {
  4413. "name": "psr/event-dispatcher",
  4414. "version": "1.0.0",
  4415. "source": {
  4416. "type": "git",
  4417. "url": "https://github.com/php-fig/event-dispatcher.git",
  4418. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4419. },
  4420. "dist": {
  4421. "type": "zip",
  4422. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4423. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4424. "shasum": ""
  4425. },
  4426. "require": {
  4427. "php": ">=7.2.0"
  4428. },
  4429. "type": "library",
  4430. "extra": {
  4431. "branch-alias": {
  4432. "dev-master": "1.0.x-dev"
  4433. }
  4434. },
  4435. "autoload": {
  4436. "psr-4": {
  4437. "Psr\\EventDispatcher\\": "src/"
  4438. }
  4439. },
  4440. "notification-url": "https://packagist.org/downloads/",
  4441. "license": [
  4442. "MIT"
  4443. ],
  4444. "authors": [
  4445. {
  4446. "name": "PHP-FIG",
  4447. "homepage": "http://www.php-fig.org/"
  4448. }
  4449. ],
  4450. "description": "Standard interfaces for event handling.",
  4451. "keywords": [
  4452. "events",
  4453. "psr",
  4454. "psr-14"
  4455. ],
  4456. "support": {
  4457. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4458. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4459. },
  4460. "time": "2019-01-08T18:20:26+00:00"
  4461. },
  4462. {
  4463. "name": "psr/http-client",
  4464. "version": "1.0.3",
  4465. "source": {
  4466. "type": "git",
  4467. "url": "https://github.com/php-fig/http-client.git",
  4468. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  4469. },
  4470. "dist": {
  4471. "type": "zip",
  4472. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4473. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4474. "shasum": ""
  4475. },
  4476. "require": {
  4477. "php": "^7.0 || ^8.0",
  4478. "psr/http-message": "^1.0 || ^2.0"
  4479. },
  4480. "type": "library",
  4481. "extra": {
  4482. "branch-alias": {
  4483. "dev-master": "1.0.x-dev"
  4484. }
  4485. },
  4486. "autoload": {
  4487. "psr-4": {
  4488. "Psr\\Http\\Client\\": "src/"
  4489. }
  4490. },
  4491. "notification-url": "https://packagist.org/downloads/",
  4492. "license": [
  4493. "MIT"
  4494. ],
  4495. "authors": [
  4496. {
  4497. "name": "PHP-FIG",
  4498. "homepage": "https://www.php-fig.org/"
  4499. }
  4500. ],
  4501. "description": "Common interface for HTTP clients",
  4502. "homepage": "https://github.com/php-fig/http-client",
  4503. "keywords": [
  4504. "http",
  4505. "http-client",
  4506. "psr",
  4507. "psr-18"
  4508. ],
  4509. "support": {
  4510. "source": "https://github.com/php-fig/http-client"
  4511. },
  4512. "time": "2023-09-23T14:17:50+00:00"
  4513. },
  4514. {
  4515. "name": "psr/http-factory",
  4516. "version": "1.1.0",
  4517. "source": {
  4518. "type": "git",
  4519. "url": "https://github.com/php-fig/http-factory.git",
  4520. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  4521. },
  4522. "dist": {
  4523. "type": "zip",
  4524. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  4525. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  4526. "shasum": ""
  4527. },
  4528. "require": {
  4529. "php": ">=7.1",
  4530. "psr/http-message": "^1.0 || ^2.0"
  4531. },
  4532. "type": "library",
  4533. "extra": {
  4534. "branch-alias": {
  4535. "dev-master": "1.0.x-dev"
  4536. }
  4537. },
  4538. "autoload": {
  4539. "psr-4": {
  4540. "Psr\\Http\\Message\\": "src/"
  4541. }
  4542. },
  4543. "notification-url": "https://packagist.org/downloads/",
  4544. "license": [
  4545. "MIT"
  4546. ],
  4547. "authors": [
  4548. {
  4549. "name": "PHP-FIG",
  4550. "homepage": "https://www.php-fig.org/"
  4551. }
  4552. ],
  4553. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  4554. "keywords": [
  4555. "factory",
  4556. "http",
  4557. "message",
  4558. "psr",
  4559. "psr-17",
  4560. "psr-7",
  4561. "request",
  4562. "response"
  4563. ],
  4564. "support": {
  4565. "source": "https://github.com/php-fig/http-factory"
  4566. },
  4567. "time": "2024-04-15T12:06:14+00:00"
  4568. },
  4569. {
  4570. "name": "psr/http-message",
  4571. "version": "2.0",
  4572. "source": {
  4573. "type": "git",
  4574. "url": "https://github.com/php-fig/http-message.git",
  4575. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  4576. },
  4577. "dist": {
  4578. "type": "zip",
  4579. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4580. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4581. "shasum": ""
  4582. },
  4583. "require": {
  4584. "php": "^7.2 || ^8.0"
  4585. },
  4586. "type": "library",
  4587. "extra": {
  4588. "branch-alias": {
  4589. "dev-master": "2.0.x-dev"
  4590. }
  4591. },
  4592. "autoload": {
  4593. "psr-4": {
  4594. "Psr\\Http\\Message\\": "src/"
  4595. }
  4596. },
  4597. "notification-url": "https://packagist.org/downloads/",
  4598. "license": [
  4599. "MIT"
  4600. ],
  4601. "authors": [
  4602. {
  4603. "name": "PHP-FIG",
  4604. "homepage": "https://www.php-fig.org/"
  4605. }
  4606. ],
  4607. "description": "Common interface for HTTP messages",
  4608. "homepage": "https://github.com/php-fig/http-message",
  4609. "keywords": [
  4610. "http",
  4611. "http-message",
  4612. "psr",
  4613. "psr-7",
  4614. "request",
  4615. "response"
  4616. ],
  4617. "support": {
  4618. "source": "https://github.com/php-fig/http-message/tree/2.0"
  4619. },
  4620. "time": "2023-04-04T09:54:51+00:00"
  4621. },
  4622. {
  4623. "name": "psr/http-server-handler",
  4624. "version": "1.0.2",
  4625. "source": {
  4626. "type": "git",
  4627. "url": "https://github.com/php-fig/http-server-handler.git",
  4628. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  4629. },
  4630. "dist": {
  4631. "type": "zip",
  4632. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  4633. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  4634. "shasum": ""
  4635. },
  4636. "require": {
  4637. "php": ">=7.0",
  4638. "psr/http-message": "^1.0 || ^2.0"
  4639. },
  4640. "type": "library",
  4641. "extra": {
  4642. "branch-alias": {
  4643. "dev-master": "1.0.x-dev"
  4644. }
  4645. },
  4646. "autoload": {
  4647. "psr-4": {
  4648. "Psr\\Http\\Server\\": "src/"
  4649. }
  4650. },
  4651. "notification-url": "https://packagist.org/downloads/",
  4652. "license": [
  4653. "MIT"
  4654. ],
  4655. "authors": [
  4656. {
  4657. "name": "PHP-FIG",
  4658. "homepage": "https://www.php-fig.org/"
  4659. }
  4660. ],
  4661. "description": "Common interface for HTTP server-side request handler",
  4662. "keywords": [
  4663. "handler",
  4664. "http",
  4665. "http-interop",
  4666. "psr",
  4667. "psr-15",
  4668. "psr-7",
  4669. "request",
  4670. "response",
  4671. "server"
  4672. ],
  4673. "support": {
  4674. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  4675. },
  4676. "time": "2023-04-10T20:06:20+00:00"
  4677. },
  4678. {
  4679. "name": "psr/http-server-middleware",
  4680. "version": "1.0.2",
  4681. "source": {
  4682. "type": "git",
  4683. "url": "https://github.com/php-fig/http-server-middleware.git",
  4684. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  4685. },
  4686. "dist": {
  4687. "type": "zip",
  4688. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  4689. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  4690. "shasum": ""
  4691. },
  4692. "require": {
  4693. "php": ">=7.0",
  4694. "psr/http-message": "^1.0 || ^2.0",
  4695. "psr/http-server-handler": "^1.0"
  4696. },
  4697. "type": "library",
  4698. "extra": {
  4699. "branch-alias": {
  4700. "dev-master": "1.0.x-dev"
  4701. }
  4702. },
  4703. "autoload": {
  4704. "psr-4": {
  4705. "Psr\\Http\\Server\\": "src/"
  4706. }
  4707. },
  4708. "notification-url": "https://packagist.org/downloads/",
  4709. "license": [
  4710. "MIT"
  4711. ],
  4712. "authors": [
  4713. {
  4714. "name": "PHP-FIG",
  4715. "homepage": "https://www.php-fig.org/"
  4716. }
  4717. ],
  4718. "description": "Common interface for HTTP server-side middleware",
  4719. "keywords": [
  4720. "http",
  4721. "http-interop",
  4722. "middleware",
  4723. "psr",
  4724. "psr-15",
  4725. "psr-7",
  4726. "request",
  4727. "response"
  4728. ],
  4729. "support": {
  4730. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  4731. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  4732. },
  4733. "time": "2023-04-11T06:14:47+00:00"
  4734. },
  4735. {
  4736. "name": "psr/log",
  4737. "version": "3.0.2",
  4738. "source": {
  4739. "type": "git",
  4740. "url": "https://github.com/php-fig/log.git",
  4741. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  4742. },
  4743. "dist": {
  4744. "type": "zip",
  4745. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  4746. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  4747. "shasum": ""
  4748. },
  4749. "require": {
  4750. "php": ">=8.0.0"
  4751. },
  4752. "type": "library",
  4753. "extra": {
  4754. "branch-alias": {
  4755. "dev-master": "3.x-dev"
  4756. }
  4757. },
  4758. "autoload": {
  4759. "psr-4": {
  4760. "Psr\\Log\\": "src"
  4761. }
  4762. },
  4763. "notification-url": "https://packagist.org/downloads/",
  4764. "license": [
  4765. "MIT"
  4766. ],
  4767. "authors": [
  4768. {
  4769. "name": "PHP-FIG",
  4770. "homepage": "https://www.php-fig.org/"
  4771. }
  4772. ],
  4773. "description": "Common interface for logging libraries",
  4774. "homepage": "https://github.com/php-fig/log",
  4775. "keywords": [
  4776. "log",
  4777. "psr",
  4778. "psr-3"
  4779. ],
  4780. "support": {
  4781. "source": "https://github.com/php-fig/log/tree/3.0.2"
  4782. },
  4783. "time": "2024-09-11T13:17:53+00:00"
  4784. },
  4785. {
  4786. "name": "psr/simple-cache",
  4787. "version": "3.0.0",
  4788. "source": {
  4789. "type": "git",
  4790. "url": "https://github.com/php-fig/simple-cache.git",
  4791. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  4792. },
  4793. "dist": {
  4794. "type": "zip",
  4795. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4796. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4797. "shasum": ""
  4798. },
  4799. "require": {
  4800. "php": ">=8.0.0"
  4801. },
  4802. "type": "library",
  4803. "extra": {
  4804. "branch-alias": {
  4805. "dev-master": "3.0.x-dev"
  4806. }
  4807. },
  4808. "autoload": {
  4809. "psr-4": {
  4810. "Psr\\SimpleCache\\": "src/"
  4811. }
  4812. },
  4813. "notification-url": "https://packagist.org/downloads/",
  4814. "license": [
  4815. "MIT"
  4816. ],
  4817. "authors": [
  4818. {
  4819. "name": "PHP-FIG",
  4820. "homepage": "https://www.php-fig.org/"
  4821. }
  4822. ],
  4823. "description": "Common interfaces for simple caching",
  4824. "keywords": [
  4825. "cache",
  4826. "caching",
  4827. "psr",
  4828. "psr-16",
  4829. "simple-cache"
  4830. ],
  4831. "support": {
  4832. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  4833. },
  4834. "time": "2021-10-29T13:26:27+00:00"
  4835. },
  4836. {
  4837. "name": "ralouphie/getallheaders",
  4838. "version": "3.0.3",
  4839. "source": {
  4840. "type": "git",
  4841. "url": "https://github.com/ralouphie/getallheaders.git",
  4842. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4843. },
  4844. "dist": {
  4845. "type": "zip",
  4846. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4847. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4848. "shasum": ""
  4849. },
  4850. "require": {
  4851. "php": ">=5.6"
  4852. },
  4853. "require-dev": {
  4854. "php-coveralls/php-coveralls": "^2.1",
  4855. "phpunit/phpunit": "^5 || ^6.5"
  4856. },
  4857. "type": "library",
  4858. "autoload": {
  4859. "files": [
  4860. "src/getallheaders.php"
  4861. ]
  4862. },
  4863. "notification-url": "https://packagist.org/downloads/",
  4864. "license": [
  4865. "MIT"
  4866. ],
  4867. "authors": [
  4868. {
  4869. "name": "Ralph Khattar",
  4870. "email": "[email protected]"
  4871. }
  4872. ],
  4873. "description": "A polyfill for getallheaders.",
  4874. "support": {
  4875. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4876. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4877. },
  4878. "time": "2019-03-08T08:55:37+00:00"
  4879. },
  4880. {
  4881. "name": "ramsey/collection",
  4882. "version": "2.1.1",
  4883. "source": {
  4884. "type": "git",
  4885. "url": "https://github.com/ramsey/collection.git",
  4886. "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2"
  4887. },
  4888. "dist": {
  4889. "type": "zip",
  4890. "url": "https://api.github.com/repos/ramsey/collection/zipball/344572933ad0181accbf4ba763e85a0306a8c5e2",
  4891. "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2",
  4892. "shasum": ""
  4893. },
  4894. "require": {
  4895. "php": "^8.1"
  4896. },
  4897. "require-dev": {
  4898. "captainhook/plugin-composer": "^5.3",
  4899. "ergebnis/composer-normalize": "^2.45",
  4900. "fakerphp/faker": "^1.24",
  4901. "hamcrest/hamcrest-php": "^2.0",
  4902. "jangregor/phpstan-prophecy": "^2.1",
  4903. "mockery/mockery": "^1.6",
  4904. "php-parallel-lint/php-console-highlighter": "^1.0",
  4905. "php-parallel-lint/php-parallel-lint": "^1.4",
  4906. "phpspec/prophecy-phpunit": "^2.3",
  4907. "phpstan/extension-installer": "^1.4",
  4908. "phpstan/phpstan": "^2.1",
  4909. "phpstan/phpstan-mockery": "^2.0",
  4910. "phpstan/phpstan-phpunit": "^2.0",
  4911. "phpunit/phpunit": "^10.5",
  4912. "ramsey/coding-standard": "^2.3",
  4913. "ramsey/conventional-commits": "^1.6",
  4914. "roave/security-advisories": "dev-latest"
  4915. },
  4916. "type": "library",
  4917. "extra": {
  4918. "captainhook": {
  4919. "force-install": true
  4920. },
  4921. "ramsey/conventional-commits": {
  4922. "configFile": "conventional-commits.json"
  4923. }
  4924. },
  4925. "autoload": {
  4926. "psr-4": {
  4927. "Ramsey\\Collection\\": "src/"
  4928. }
  4929. },
  4930. "notification-url": "https://packagist.org/downloads/",
  4931. "license": [
  4932. "MIT"
  4933. ],
  4934. "authors": [
  4935. {
  4936. "name": "Ben Ramsey",
  4937. "email": "[email protected]",
  4938. "homepage": "https://benramsey.com"
  4939. }
  4940. ],
  4941. "description": "A PHP library for representing and manipulating collections.",
  4942. "keywords": [
  4943. "array",
  4944. "collection",
  4945. "hash",
  4946. "map",
  4947. "queue",
  4948. "set"
  4949. ],
  4950. "support": {
  4951. "issues": "https://github.com/ramsey/collection/issues",
  4952. "source": "https://github.com/ramsey/collection/tree/2.1.1"
  4953. },
  4954. "time": "2025-03-22T05:38:12+00:00"
  4955. },
  4956. {
  4957. "name": "ramsey/uuid",
  4958. "version": "4.9.0",
  4959. "source": {
  4960. "type": "git",
  4961. "url": "https://github.com/ramsey/uuid.git",
  4962. "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0"
  4963. },
  4964. "dist": {
  4965. "type": "zip",
  4966. "url": "https://api.github.com/repos/ramsey/uuid/zipball/4e0e23cc785f0724a0e838279a9eb03f28b092a0",
  4967. "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0",
  4968. "shasum": ""
  4969. },
  4970. "require": {
  4971. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13",
  4972. "php": "^8.0",
  4973. "ramsey/collection": "^1.2 || ^2.0"
  4974. },
  4975. "replace": {
  4976. "rhumsaa/uuid": "self.version"
  4977. },
  4978. "require-dev": {
  4979. "captainhook/captainhook": "^5.25",
  4980. "captainhook/plugin-composer": "^5.3",
  4981. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  4982. "ergebnis/composer-normalize": "^2.47",
  4983. "mockery/mockery": "^1.6",
  4984. "paragonie/random-lib": "^2",
  4985. "php-mock/php-mock": "^2.6",
  4986. "php-mock/php-mock-mockery": "^1.5",
  4987. "php-parallel-lint/php-parallel-lint": "^1.4.0",
  4988. "phpbench/phpbench": "^1.2.14",
  4989. "phpstan/extension-installer": "^1.4",
  4990. "phpstan/phpstan": "^2.1",
  4991. "phpstan/phpstan-mockery": "^2.0",
  4992. "phpstan/phpstan-phpunit": "^2.0",
  4993. "phpunit/phpunit": "^9.6",
  4994. "slevomat/coding-standard": "^8.18",
  4995. "squizlabs/php_codesniffer": "^3.13"
  4996. },
  4997. "suggest": {
  4998. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4999. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  5000. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  5001. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  5002. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  5003. },
  5004. "type": "library",
  5005. "extra": {
  5006. "captainhook": {
  5007. "force-install": true
  5008. }
  5009. },
  5010. "autoload": {
  5011. "files": [
  5012. "src/functions.php"
  5013. ],
  5014. "psr-4": {
  5015. "Ramsey\\Uuid\\": "src/"
  5016. }
  5017. },
  5018. "notification-url": "https://packagist.org/downloads/",
  5019. "license": [
  5020. "MIT"
  5021. ],
  5022. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  5023. "keywords": [
  5024. "guid",
  5025. "identifier",
  5026. "uuid"
  5027. ],
  5028. "support": {
  5029. "issues": "https://github.com/ramsey/uuid/issues",
  5030. "source": "https://github.com/ramsey/uuid/tree/4.9.0"
  5031. },
  5032. "time": "2025-06-25T14:20:11+00:00"
  5033. },
  5034. {
  5035. "name": "resend/resend-php",
  5036. "version": "v0.18.1",
  5037. "source": {
  5038. "type": "git",
  5039. "url": "https://github.com/resend/resend-php.git",
  5040. "reference": "f20a9a50a7f705294af1662995c93bfd806fed3e"
  5041. },
  5042. "dist": {
  5043. "type": "zip",
  5044. "url": "https://api.github.com/repos/resend/resend-php/zipball/f20a9a50a7f705294af1662995c93bfd806fed3e",
  5045. "reference": "f20a9a50a7f705294af1662995c93bfd806fed3e",
  5046. "shasum": ""
  5047. },
  5048. "require": {
  5049. "guzzlehttp/guzzle": "^7.5",
  5050. "php": "^8.1.0"
  5051. },
  5052. "require-dev": {
  5053. "friendsofphp/php-cs-fixer": "^3.13",
  5054. "mockery/mockery": "^1.6",
  5055. "pestphp/pest": "^2.0"
  5056. },
  5057. "type": "library",
  5058. "autoload": {
  5059. "files": [
  5060. "src/Resend.php"
  5061. ],
  5062. "psr-4": {
  5063. "Resend\\": "src/"
  5064. }
  5065. },
  5066. "notification-url": "https://packagist.org/downloads/",
  5067. "license": [
  5068. "MIT"
  5069. ],
  5070. "authors": [
  5071. {
  5072. "name": "Resend and contributors",
  5073. "homepage": "https://github.com/resend/resend-php/contributors"
  5074. }
  5075. ],
  5076. "description": "Resend PHP library.",
  5077. "homepage": "https://resend.com/",
  5078. "keywords": [
  5079. "api",
  5080. "client",
  5081. "php",
  5082. "resend",
  5083. "sdk"
  5084. ],
  5085. "support": {
  5086. "issues": "https://github.com/resend/resend-php/issues",
  5087. "source": "https://github.com/resend/resend-php/tree/v0.18.1"
  5088. },
  5089. "time": "2025-07-04T00:12:53+00:00"
  5090. },
  5091. {
  5092. "name": "sendgrid/php-http-client",
  5093. "version": "4.1.3",
  5094. "source": {
  5095. "type": "git",
  5096. "url": "https://github.com/sendgrid/php-http-client.git",
  5097. "reference": "3002e9c8d21dcf664936ced4e5802ba8581a52c2"
  5098. },
  5099. "dist": {
  5100. "type": "zip",
  5101. "url": "https://api.github.com/repos/sendgrid/php-http-client/zipball/3002e9c8d21dcf664936ced4e5802ba8581a52c2",
  5102. "reference": "3002e9c8d21dcf664936ced4e5802ba8581a52c2",
  5103. "shasum": ""
  5104. },
  5105. "require": {
  5106. "ext-curl": "*",
  5107. "ext-json": "*",
  5108. "ext-mbstring": "*",
  5109. "php": ">=7.3"
  5110. },
  5111. "require-dev": {
  5112. "friendsofphp/php-cs-fixer": "^2.16",
  5113. "phpunit/phpunit": "^9",
  5114. "squizlabs/php_codesniffer": "~2.0"
  5115. },
  5116. "suggest": {
  5117. "composer/ca-bundle": "Including this library will ensure that a valid CA bundle is available for secure connections"
  5118. },
  5119. "type": "library",
  5120. "autoload": {
  5121. "psr-4": {
  5122. "SendGrid\\": "lib/"
  5123. }
  5124. },
  5125. "notification-url": "https://packagist.org/downloads/",
  5126. "license": [
  5127. "MIT"
  5128. ],
  5129. "authors": [
  5130. {
  5131. "name": "Matt Bernier",
  5132. "email": "[email protected]"
  5133. },
  5134. {
  5135. "name": "Elmer Thomas",
  5136. "email": "[email protected]"
  5137. }
  5138. ],
  5139. "description": "HTTP REST client, simplified for PHP",
  5140. "homepage": "http://github.com/sendgrid/php-http-client",
  5141. "keywords": [
  5142. "api",
  5143. "fluent",
  5144. "http",
  5145. "rest",
  5146. "sendgrid"
  5147. ],
  5148. "support": {
  5149. "issues": "https://github.com/sendgrid/php-http-client/issues",
  5150. "source": "https://github.com/sendgrid/php-http-client/tree/4.1.3"
  5151. },
  5152. "time": "2025-04-11T10:34:13+00:00"
  5153. },
  5154. {
  5155. "name": "sendgrid/sendgrid",
  5156. "version": "8.1.11",
  5157. "source": {
  5158. "type": "git",
  5159. "url": "https://github.com/sendgrid/sendgrid-php.git",
  5160. "reference": "1ed29bffffaec0216dc1330bb437d3b305428a11"
  5161. },
  5162. "dist": {
  5163. "type": "zip",
  5164. "url": "https://api.github.com/repos/sendgrid/sendgrid-php/zipball/1ed29bffffaec0216dc1330bb437d3b305428a11",
  5165. "reference": "1ed29bffffaec0216dc1330bb437d3b305428a11",
  5166. "shasum": ""
  5167. },
  5168. "require": {
  5169. "ext-curl": "*",
  5170. "ext-gmp": "*",
  5171. "ext-json": "*",
  5172. "ext-mbstring": "*",
  5173. "ext-openssl": "*",
  5174. "php": ">=7.3",
  5175. "sendgrid/php-http-client": "~4.1",
  5176. "starkbank/ecdsa": "^2.1.0"
  5177. },
  5178. "replace": {
  5179. "sendgrid/sendgrid-php": "*"
  5180. },
  5181. "require-dev": {
  5182. "phpstan/phpstan": "^1.5",
  5183. "phpunit/phpunit": "^9",
  5184. "squizlabs/php_codesniffer": "3.*",
  5185. "swaggest/json-diff": "^3.4"
  5186. },
  5187. "type": "library",
  5188. "autoload": {
  5189. "psr-4": {
  5190. "SendGrid\\Mail\\": "lib/mail/",
  5191. "SendGrid\\Stats\\": "lib/stats/",
  5192. "SendGrid\\Helper\\": "lib/helper/",
  5193. "SendGrid\\Contacts\\": "lib/contacts/",
  5194. "SendGrid\\EventWebhook\\": "lib/eventwebhook/"
  5195. },
  5196. "classmap": [
  5197. "lib/BaseSendGridClientInterface.php",
  5198. "lib/SendGrid.php",
  5199. "lib/TwilioEmail.php"
  5200. ]
  5201. },
  5202. "notification-url": "https://packagist.org/downloads/",
  5203. "license": [
  5204. "MIT"
  5205. ],
  5206. "description": "This library allows you to quickly and easily send emails through Twilio SendGrid using PHP.",
  5207. "homepage": "http://github.com/sendgrid/sendgrid-php",
  5208. "keywords": [
  5209. "email",
  5210. "grid",
  5211. "send",
  5212. "sendgrid",
  5213. "twilio sendgrid"
  5214. ],
  5215. "support": {
  5216. "issues": "https://github.com/sendgrid/sendgrid-php/issues",
  5217. "source": "https://github.com/sendgrid/sendgrid-php/tree/8.1.11"
  5218. },
  5219. "time": "2025-02-22T09:34:11+00:00"
  5220. },
  5221. {
  5222. "name": "sentry/sdk",
  5223. "version": "4.0.0",
  5224. "source": {
  5225. "type": "git",
  5226. "url": "https://github.com/getsentry/sentry-php-sdk.git",
  5227. "reference": "fcbca864e8d1dc712f3ecfaa95ea89d024fb2e53"
  5228. },
  5229. "dist": {
  5230. "type": "zip",
  5231. "url": "https://api.github.com/repos/getsentry/sentry-php-sdk/zipball/fcbca864e8d1dc712f3ecfaa95ea89d024fb2e53",
  5232. "reference": "fcbca864e8d1dc712f3ecfaa95ea89d024fb2e53",
  5233. "shasum": ""
  5234. },
  5235. "require": {
  5236. "sentry/sentry": "^4.0"
  5237. },
  5238. "type": "metapackage",
  5239. "notification-url": "https://packagist.org/downloads/",
  5240. "license": [
  5241. "MIT"
  5242. ],
  5243. "authors": [
  5244. {
  5245. "name": "Sentry",
  5246. "email": "[email protected]"
  5247. }
  5248. ],
  5249. "description": "This is a meta package of sentry/sentry. We recommend using sentry/sentry directly.",
  5250. "homepage": "http://sentry.io",
  5251. "keywords": [
  5252. "crash-reporting",
  5253. "crash-reports",
  5254. "error-handler",
  5255. "error-monitoring",
  5256. "log",
  5257. "logging",
  5258. "sentry"
  5259. ],
  5260. "support": {
  5261. "issues": "https://github.com/getsentry/sentry-php-sdk/issues",
  5262. "source": "https://github.com/getsentry/sentry-php-sdk/tree/4.0.0"
  5263. },
  5264. "funding": [
  5265. {
  5266. "url": "https://sentry.io/",
  5267. "type": "custom"
  5268. },
  5269. {
  5270. "url": "https://sentry.io/pricing/",
  5271. "type": "custom"
  5272. }
  5273. ],
  5274. "time": "2023-11-06T10:23:19+00:00"
  5275. },
  5276. {
  5277. "name": "sentry/sentry",
  5278. "version": "4.14.2",
  5279. "source": {
  5280. "type": "git",
  5281. "url": "https://github.com/getsentry/sentry-php.git",
  5282. "reference": "bfeec74303d60d3f8bc33701ab3e86f8a8729f17"
  5283. },
  5284. "dist": {
  5285. "type": "zip",
  5286. "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/bfeec74303d60d3f8bc33701ab3e86f8a8729f17",
  5287. "reference": "bfeec74303d60d3f8bc33701ab3e86f8a8729f17",
  5288. "shasum": ""
  5289. },
  5290. "require": {
  5291. "ext-curl": "*",
  5292. "ext-json": "*",
  5293. "ext-mbstring": "*",
  5294. "guzzlehttp/psr7": "^1.8.4|^2.1.1",
  5295. "jean85/pretty-package-versions": "^1.5|^2.0.4",
  5296. "php": "^7.2|^8.0",
  5297. "psr/log": "^1.0|^2.0|^3.0",
  5298. "symfony/options-resolver": "^4.4.30|^5.0.11|^6.0|^7.0"
  5299. },
  5300. "conflict": {
  5301. "raven/raven": "*"
  5302. },
  5303. "require-dev": {
  5304. "friendsofphp/php-cs-fixer": "^3.4",
  5305. "guzzlehttp/promises": "^2.0.3",
  5306. "guzzlehttp/psr7": "^1.8.4|^2.1.1",
  5307. "monolog/monolog": "^1.6|^2.0|^3.0",
  5308. "phpbench/phpbench": "^1.0",
  5309. "phpstan/phpstan": "^1.3",
  5310. "phpunit/phpunit": "^8.5|^9.6",
  5311. "symfony/phpunit-bridge": "^5.2|^6.0|^7.0",
  5312. "vimeo/psalm": "^4.17"
  5313. },
  5314. "suggest": {
  5315. "monolog/monolog": "Allow sending log messages to Sentry by using the included Monolog handler."
  5316. },
  5317. "type": "library",
  5318. "autoload": {
  5319. "files": [
  5320. "src/functions.php"
  5321. ],
  5322. "psr-4": {
  5323. "Sentry\\": "src/"
  5324. }
  5325. },
  5326. "notification-url": "https://packagist.org/downloads/",
  5327. "license": [
  5328. "MIT"
  5329. ],
  5330. "authors": [
  5331. {
  5332. "name": "Sentry",
  5333. "email": "[email protected]"
  5334. }
  5335. ],
  5336. "description": "PHP SDK for Sentry (http://sentry.io)",
  5337. "homepage": "http://sentry.io",
  5338. "keywords": [
  5339. "crash-reporting",
  5340. "crash-reports",
  5341. "error-handler",
  5342. "error-monitoring",
  5343. "log",
  5344. "logging",
  5345. "profiling",
  5346. "sentry",
  5347. "tracing"
  5348. ],
  5349. "support": {
  5350. "issues": "https://github.com/getsentry/sentry-php/issues",
  5351. "source": "https://github.com/getsentry/sentry-php/tree/4.14.2"
  5352. },
  5353. "funding": [
  5354. {
  5355. "url": "https://sentry.io/",
  5356. "type": "custom"
  5357. },
  5358. {
  5359. "url": "https://sentry.io/pricing/",
  5360. "type": "custom"
  5361. }
  5362. ],
  5363. "time": "2025-07-21T08:28:29+00:00"
  5364. },
  5365. {
  5366. "name": "slim/http",
  5367. "version": "1.4.0",
  5368. "source": {
  5369. "type": "git",
  5370. "url": "https://github.com/slimphp/Slim-Http.git",
  5371. "reference": "a8def7b8e9eabd0cdc21654ad4a82606942e066a"
  5372. },
  5373. "dist": {
  5374. "type": "zip",
  5375. "url": "https://api.github.com/repos/slimphp/Slim-Http/zipball/a8def7b8e9eabd0cdc21654ad4a82606942e066a",
  5376. "reference": "a8def7b8e9eabd0cdc21654ad4a82606942e066a",
  5377. "shasum": ""
  5378. },
  5379. "require": {
  5380. "ext-fileinfo": "*",
  5381. "ext-json": "*",
  5382. "ext-libxml": "*",
  5383. "ext-simplexml": "*",
  5384. "php": "^8.0",
  5385. "psr/http-factory": "^1.0",
  5386. "psr/http-message": "^1.1 || ^2.0"
  5387. },
  5388. "require-dev": {
  5389. "adriansuter/php-autoload-override": "^1.4",
  5390. "doctrine/instantiator": "^1.3.1",
  5391. "laminas/laminas-diactoros": "^3.1.0",
  5392. "nyholm/psr7": "^1.8.1",
  5393. "php-http/psr7-integration-tests": "^1.3.0",
  5394. "phpstan/phpstan": "^1.10",
  5395. "phpunit/phpunit": "^9.6",
  5396. "squizlabs/php_codesniffer": "^3.9"
  5397. },
  5398. "type": "library",
  5399. "autoload": {
  5400. "psr-4": {
  5401. "Slim\\Http\\": "src/"
  5402. }
  5403. },
  5404. "notification-url": "https://packagist.org/downloads/",
  5405. "license": [
  5406. "MIT"
  5407. ],
  5408. "authors": [
  5409. {
  5410. "name": "Josh Lockhart",
  5411. "email": "[email protected]",
  5412. "homepage": "http://joshlockhart.com"
  5413. },
  5414. {
  5415. "name": "Andrew Smith",
  5416. "email": "[email protected]",
  5417. "homepage": "http://silentworks.co.uk"
  5418. },
  5419. {
  5420. "name": "Rob Allen",
  5421. "email": "[email protected]",
  5422. "homepage": "http://akrabat.com"
  5423. },
  5424. {
  5425. "name": "Pierre Berube",
  5426. "email": "[email protected]",
  5427. "homepage": "http://www.lgse.com"
  5428. }
  5429. ],
  5430. "description": "Slim PSR-7 Object Decorators",
  5431. "homepage": "http://slimframework.com",
  5432. "keywords": [
  5433. "http",
  5434. "psr-7",
  5435. "psr7"
  5436. ],
  5437. "support": {
  5438. "issues": "https://github.com/slimphp/Slim-Http/issues",
  5439. "source": "https://github.com/slimphp/Slim-Http/tree/1.4.0"
  5440. },
  5441. "time": "2024-06-24T18:27:41+00:00"
  5442. },
  5443. {
  5444. "name": "slim/slim",
  5445. "version": "4.14.0",
  5446. "source": {
  5447. "type": "git",
  5448. "url": "https://github.com/slimphp/Slim.git",
  5449. "reference": "5943393b88716eb9e82c4161caa956af63423913"
  5450. },
  5451. "dist": {
  5452. "type": "zip",
  5453. "url": "https://api.github.com/repos/slimphp/Slim/zipball/5943393b88716eb9e82c4161caa956af63423913",
  5454. "reference": "5943393b88716eb9e82c4161caa956af63423913",
  5455. "shasum": ""
  5456. },
  5457. "require": {
  5458. "ext-json": "*",
  5459. "nikic/fast-route": "^1.3",
  5460. "php": "^7.4 || ^8.0",
  5461. "psr/container": "^1.0 || ^2.0",
  5462. "psr/http-factory": "^1.1",
  5463. "psr/http-message": "^1.1 || ^2.0",
  5464. "psr/http-server-handler": "^1.0",
  5465. "psr/http-server-middleware": "^1.0",
  5466. "psr/log": "^1.1 || ^2.0 || ^3.0"
  5467. },
  5468. "require-dev": {
  5469. "adriansuter/php-autoload-override": "^1.4",
  5470. "ext-simplexml": "*",
  5471. "guzzlehttp/psr7": "^2.6",
  5472. "httpsoft/http-message": "^1.1",
  5473. "httpsoft/http-server-request": "^1.1",
  5474. "laminas/laminas-diactoros": "^2.17 || ^3",
  5475. "nyholm/psr7": "^1.8",
  5476. "nyholm/psr7-server": "^1.1",
  5477. "phpspec/prophecy": "^1.19",
  5478. "phpspec/prophecy-phpunit": "^2.1",
  5479. "phpstan/phpstan": "^1.11",
  5480. "phpunit/phpunit": "^9.6",
  5481. "slim/http": "^1.3",
  5482. "slim/psr7": "^1.6",
  5483. "squizlabs/php_codesniffer": "^3.10",
  5484. "vimeo/psalm": "^5.24"
  5485. },
  5486. "suggest": {
  5487. "ext-simplexml": "Needed to support XML format in BodyParsingMiddleware",
  5488. "ext-xml": "Needed to support XML format in BodyParsingMiddleware",
  5489. "php-di/php-di": "PHP-DI is the recommended container library to be used with Slim",
  5490. "slim/psr7": "Slim PSR-7 implementation. See https://www.slimframework.com/docs/v4/start/installation.html for more information."
  5491. },
  5492. "type": "library",
  5493. "autoload": {
  5494. "psr-4": {
  5495. "Slim\\": "Slim"
  5496. }
  5497. },
  5498. "notification-url": "https://packagist.org/downloads/",
  5499. "license": [
  5500. "MIT"
  5501. ],
  5502. "authors": [
  5503. {
  5504. "name": "Josh Lockhart",
  5505. "email": "[email protected]",
  5506. "homepage": "https://joshlockhart.com"
  5507. },
  5508. {
  5509. "name": "Andrew Smith",
  5510. "email": "[email protected]",
  5511. "homepage": "http://silentworks.co.uk"
  5512. },
  5513. {
  5514. "name": "Rob Allen",
  5515. "email": "[email protected]",
  5516. "homepage": "http://akrabat.com"
  5517. },
  5518. {
  5519. "name": "Pierre Berube",
  5520. "email": "[email protected]",
  5521. "homepage": "http://www.lgse.com"
  5522. },
  5523. {
  5524. "name": "Gabriel Manricks",
  5525. "email": "[email protected]",
  5526. "homepage": "http://gabrielmanricks.com"
  5527. }
  5528. ],
  5529. "description": "Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs",
  5530. "homepage": "https://www.slimframework.com",
  5531. "keywords": [
  5532. "api",
  5533. "framework",
  5534. "micro",
  5535. "router"
  5536. ],
  5537. "support": {
  5538. "docs": "https://www.slimframework.com/docs/v4/",
  5539. "forum": "https://discourse.slimframework.com/",
  5540. "irc": "irc://irc.freenode.net:6667/slimphp",
  5541. "issues": "https://github.com/slimphp/Slim/issues",
  5542. "rss": "https://www.slimframework.com/blog/feed.rss",
  5543. "slack": "https://slimphp.slack.com/",
  5544. "source": "https://github.com/slimphp/Slim",
  5545. "wiki": "https://github.com/slimphp/Slim/wiki"
  5546. },
  5547. "funding": [
  5548. {
  5549. "url": "https://opencollective.com/slimphp",
  5550. "type": "open_collective"
  5551. },
  5552. {
  5553. "url": "https://tidelift.com/funding/github/packagist/slim/slim",
  5554. "type": "tidelift"
  5555. }
  5556. ],
  5557. "time": "2024-06-13T08:54:48+00:00"
  5558. },
  5559. {
  5560. "name": "smarty/smarty",
  5561. "version": "v5.5.1",
  5562. "source": {
  5563. "type": "git",
  5564. "url": "https://github.com/smarty-php/smarty.git",
  5565. "reference": "cbcd66e1de017ae3bcbf8b5fa2a34858f5e2adbc"
  5566. },
  5567. "dist": {
  5568. "type": "zip",
  5569. "url": "https://api.github.com/repos/smarty-php/smarty/zipball/cbcd66e1de017ae3bcbf8b5fa2a34858f5e2adbc",
  5570. "reference": "cbcd66e1de017ae3bcbf8b5fa2a34858f5e2adbc",
  5571. "shasum": ""
  5572. },
  5573. "require": {
  5574. "php": "^7.2 || ^8.0",
  5575. "symfony/polyfill-mbstring": "^1.27"
  5576. },
  5577. "require-dev": {
  5578. "phpunit/phpunit": "^8.5 || ^7.5",
  5579. "smarty/smarty-lexer": "^4.0.2"
  5580. },
  5581. "type": "library",
  5582. "extra": {
  5583. "branch-alias": {
  5584. "dev-master": "5.0.x-dev"
  5585. }
  5586. },
  5587. "autoload": {
  5588. "files": [
  5589. "src/functions.php"
  5590. ],
  5591. "psr-4": {
  5592. "Smarty\\": "src/"
  5593. }
  5594. },
  5595. "notification-url": "https://packagist.org/downloads/",
  5596. "license": [
  5597. "LGPL-3.0"
  5598. ],
  5599. "authors": [
  5600. {
  5601. "name": "Monte Ohrt",
  5602. "email": "[email protected]"
  5603. },
  5604. {
  5605. "name": "Uwe Tews",
  5606. "email": "[email protected]"
  5607. },
  5608. {
  5609. "name": "Rodney Rehm",
  5610. "email": "[email protected]"
  5611. },
  5612. {
  5613. "name": "Simon Wisselink",
  5614. "homepage": "https://www.iwink.nl/"
  5615. }
  5616. ],
  5617. "description": "Smarty - the compiling PHP template engine",
  5618. "homepage": "https://smarty-php.github.io/smarty/",
  5619. "keywords": [
  5620. "templating"
  5621. ],
  5622. "support": {
  5623. "forum": "https://github.com/smarty-php/smarty/discussions",
  5624. "issues": "https://github.com/smarty-php/smarty/issues",
  5625. "source": "https://github.com/smarty-php/smarty/tree/v5.5.1"
  5626. },
  5627. "funding": [
  5628. {
  5629. "url": "https://github.com/wisskid",
  5630. "type": "github"
  5631. }
  5632. ],
  5633. "time": "2025-05-19T09:29:42+00:00"
  5634. },
  5635. {
  5636. "name": "spomky-labs/cbor-php",
  5637. "version": "3.1.1",
  5638. "source": {
  5639. "type": "git",
  5640. "url": "https://github.com/Spomky-Labs/cbor-php.git",
  5641. "reference": "5404f3e21cbe72f5cf612aa23db2b922fd2f43bf"
  5642. },
  5643. "dist": {
  5644. "type": "zip",
  5645. "url": "https://api.github.com/repos/Spomky-Labs/cbor-php/zipball/5404f3e21cbe72f5cf612aa23db2b922fd2f43bf",
  5646. "reference": "5404f3e21cbe72f5cf612aa23db2b922fd2f43bf",
  5647. "shasum": ""
  5648. },
  5649. "require": {
  5650. "brick/math": "^0.9|^0.10|^0.11|^0.12|^0.13",
  5651. "ext-mbstring": "*",
  5652. "php": ">=8.0"
  5653. },
  5654. "require-dev": {
  5655. "deptrac/deptrac": "^3.0",
  5656. "ekino/phpstan-banned-code": "^1.0|^2.0|^3.0",
  5657. "ext-json": "*",
  5658. "infection/infection": "^0.29",
  5659. "php-parallel-lint/php-parallel-lint": "^1.3",
  5660. "phpstan/extension-installer": "^1.1",
  5661. "phpstan/phpstan": "^1.0|^2.0",
  5662. "phpstan/phpstan-beberlei-assert": "^1.0|^2.0",
  5663. "phpstan/phpstan-deprecation-rules": "^1.0|^2.0",
  5664. "phpstan/phpstan-phpunit": "^1.0|^2.0",
  5665. "phpstan/phpstan-strict-rules": "^1.0|^2.0",
  5666. "phpunit/phpunit": "^10.1|^11.0|^12.0",
  5667. "rector/rector": "^1.0|^2.0",
  5668. "roave/security-advisories": "dev-latest",
  5669. "symfony/var-dumper": "^6.0|^7.0",
  5670. "symplify/easy-coding-standard": "^12.0"
  5671. },
  5672. "suggest": {
  5673. "ext-bcmath": "GMP or BCMath extensions will drastically improve the library performance. BCMath extension needed to handle the Big Float and Decimal Fraction Tags",
  5674. "ext-gmp": "GMP or BCMath extensions will drastically improve the library performance"
  5675. },
  5676. "type": "library",
  5677. "autoload": {
  5678. "psr-4": {
  5679. "CBOR\\": "src/"
  5680. }
  5681. },
  5682. "notification-url": "https://packagist.org/downloads/",
  5683. "license": [
  5684. "MIT"
  5685. ],
  5686. "authors": [
  5687. {
  5688. "name": "Florent Morselli",
  5689. "homepage": "https://github.com/Spomky"
  5690. },
  5691. {
  5692. "name": "All contributors",
  5693. "homepage": "https://github.com/Spomky-Labs/cbor-php/contributors"
  5694. }
  5695. ],
  5696. "description": "CBOR Encoder/Decoder for PHP",
  5697. "keywords": [
  5698. "Concise Binary Object Representation",
  5699. "RFC7049",
  5700. "cbor"
  5701. ],
  5702. "support": {
  5703. "issues": "https://github.com/Spomky-Labs/cbor-php/issues",
  5704. "source": "https://github.com/Spomky-Labs/cbor-php/tree/3.1.1"
  5705. },
  5706. "funding": [
  5707. {
  5708. "url": "https://github.com/Spomky",
  5709. "type": "github"
  5710. },
  5711. {
  5712. "url": "https://www.patreon.com/FlorentMorselli",
  5713. "type": "patreon"
  5714. }
  5715. ],
  5716. "time": "2025-06-13T11:57:55+00:00"
  5717. },
  5718. {
  5719. "name": "spomky-labs/pki-framework",
  5720. "version": "1.3.0",
  5721. "source": {
  5722. "type": "git",
  5723. "url": "https://github.com/Spomky-Labs/pki-framework.git",
  5724. "reference": "eced5b5ce70518b983ff2be486e902bbd15135ae"
  5725. },
  5726. "dist": {
  5727. "type": "zip",
  5728. "url": "https://api.github.com/repos/Spomky-Labs/pki-framework/zipball/eced5b5ce70518b983ff2be486e902bbd15135ae",
  5729. "reference": "eced5b5ce70518b983ff2be486e902bbd15135ae",
  5730. "shasum": ""
  5731. },
  5732. "require": {
  5733. "brick/math": "^0.10|^0.11|^0.12|^0.13",
  5734. "ext-mbstring": "*",
  5735. "php": ">=8.1"
  5736. },
  5737. "require-dev": {
  5738. "ekino/phpstan-banned-code": "^1.0|^2.0|^3.0",
  5739. "ext-gmp": "*",
  5740. "ext-openssl": "*",
  5741. "infection/infection": "^0.28|^0.29",
  5742. "php-parallel-lint/php-parallel-lint": "^1.3",
  5743. "phpstan/extension-installer": "^1.3|^2.0",
  5744. "phpstan/phpstan": "^1.8|^2.0",
  5745. "phpstan/phpstan-deprecation-rules": "^1.0|^2.0",
  5746. "phpstan/phpstan-phpunit": "^1.1|^2.0",
  5747. "phpstan/phpstan-strict-rules": "^1.3|^2.0",
  5748. "phpunit/phpunit": "^10.1|^11.0|^12.0",
  5749. "rector/rector": "^1.0|^2.0",
  5750. "roave/security-advisories": "dev-latest",
  5751. "symfony/string": "^6.4|^7.0",
  5752. "symfony/var-dumper": "^6.4|^7.0",
  5753. "symplify/easy-coding-standard": "^12.0"
  5754. },
  5755. "suggest": {
  5756. "ext-bcmath": "For better performance (or GMP)",
  5757. "ext-gmp": "For better performance (or BCMath)",
  5758. "ext-openssl": "For OpenSSL based cyphering"
  5759. },
  5760. "type": "library",
  5761. "autoload": {
  5762. "psr-4": {
  5763. "SpomkyLabs\\Pki\\": "src/"
  5764. }
  5765. },
  5766. "notification-url": "https://packagist.org/downloads/",
  5767. "license": [
  5768. "MIT"
  5769. ],
  5770. "authors": [
  5771. {
  5772. "name": "Joni Eskelinen",
  5773. "email": "[email protected]",
  5774. "role": "Original developer"
  5775. },
  5776. {
  5777. "name": "Florent Morselli",
  5778. "email": "[email protected]",
  5779. "role": "Spomky-Labs PKI Framework developer"
  5780. }
  5781. ],
  5782. "description": "A PHP framework for managing Public Key Infrastructures. It comprises X.509 public key certificates, attribute certificates, certification requests and certification path validation.",
  5783. "homepage": "https://github.com/spomky-labs/pki-framework",
  5784. "keywords": [
  5785. "DER",
  5786. "Private Key",
  5787. "ac",
  5788. "algorithm identifier",
  5789. "asn.1",
  5790. "asn1",
  5791. "attribute certificate",
  5792. "certificate",
  5793. "certification request",
  5794. "cryptography",
  5795. "csr",
  5796. "decrypt",
  5797. "ec",
  5798. "encrypt",
  5799. "pem",
  5800. "pkcs",
  5801. "public key",
  5802. "rsa",
  5803. "sign",
  5804. "signature",
  5805. "verify",
  5806. "x.509",
  5807. "x.690",
  5808. "x509",
  5809. "x690"
  5810. ],
  5811. "support": {
  5812. "issues": "https://github.com/Spomky-Labs/pki-framework/issues",
  5813. "source": "https://github.com/Spomky-Labs/pki-framework/tree/1.3.0"
  5814. },
  5815. "funding": [
  5816. {
  5817. "url": "https://github.com/Spomky",
  5818. "type": "github"
  5819. },
  5820. {
  5821. "url": "https://www.patreon.com/FlorentMorselli",
  5822. "type": "patreon"
  5823. }
  5824. ],
  5825. "time": "2025-06-13T08:35:04+00:00"
  5826. },
  5827. {
  5828. "name": "srmklive/paypal",
  5829. "version": "3.0.40",
  5830. "source": {
  5831. "type": "git",
  5832. "url": "https://github.com/srmklive/laravel-paypal.git",
  5833. "reference": "1ddc49fd836a4785933ab953452152f3fedbac63"
  5834. },
  5835. "dist": {
  5836. "type": "zip",
  5837. "url": "https://api.github.com/repos/srmklive/laravel-paypal/zipball/1ddc49fd836a4785933ab953452152f3fedbac63",
  5838. "reference": "1ddc49fd836a4785933ab953452152f3fedbac63",
  5839. "shasum": ""
  5840. },
  5841. "require": {
  5842. "ext-curl": "*",
  5843. "guzzlehttp/guzzle": "~7.0",
  5844. "illuminate/support": "~6.0|~7.0|~8.0|~9.0|^10.0|^11.0|^12.0",
  5845. "nesbot/carbon": "~2.0|^3.0",
  5846. "php": ">=7.2|^8.0"
  5847. },
  5848. "require-dev": {
  5849. "phpstan/phpstan": "^1.10",
  5850. "phpunit/phpunit": "^8.0|^9.0|^10.0|^11.0",
  5851. "symfony/var-dumper": "~5.0|^6.0|^7.0"
  5852. },
  5853. "type": "library",
  5854. "extra": {
  5855. "laravel": {
  5856. "aliases": {
  5857. "PayPal": "Srmklive\\PayPal\\Facades\\PayPal"
  5858. },
  5859. "providers": [
  5860. "Srmklive\\PayPal\\Providers\\PayPalServiceProvider"
  5861. ]
  5862. }
  5863. },
  5864. "autoload": {
  5865. "psr-4": {
  5866. "Srmklive\\PayPal\\": "src/"
  5867. }
  5868. },
  5869. "notification-url": "https://packagist.org/downloads/",
  5870. "license": [
  5871. "MIT"
  5872. ],
  5873. "authors": [
  5874. {
  5875. "name": "Raza Mehdi",
  5876. "email": "[email protected]"
  5877. }
  5878. ],
  5879. "description": "Laravel plugin For Processing Payments Through Paypal Express Checkout. Can Be Used Independently With Other Applications.",
  5880. "keywords": [
  5881. "http",
  5882. "laravel paypal",
  5883. "paypal",
  5884. "rest",
  5885. "web service"
  5886. ],
  5887. "support": {
  5888. "issues": "https://github.com/srmklive/laravel-paypal/issues",
  5889. "source": "https://github.com/srmklive/laravel-paypal/tree/3.0.40"
  5890. },
  5891. "time": "2025-02-25T21:38:18+00:00"
  5892. },
  5893. {
  5894. "name": "starkbank/ecdsa",
  5895. "version": "2.1.0",
  5896. "source": {
  5897. "type": "git",
  5898. "url": "https://github.com/starkbank/ecdsa-php.git",
  5899. "reference": "4a227c48b179544abb73b20f17440b4654e07041"
  5900. },
  5901. "dist": {
  5902. "type": "zip",
  5903. "url": "https://api.github.com/repos/starkbank/ecdsa-php/zipball/4a227c48b179544abb73b20f17440b4654e07041",
  5904. "reference": "4a227c48b179544abb73b20f17440b4654e07041",
  5905. "shasum": ""
  5906. },
  5907. "require": {
  5908. "ext-gmp": "*",
  5909. "php": ">=7.0"
  5910. },
  5911. "type": "library",
  5912. "autoload": {
  5913. "files": [
  5914. "src/ellipticcurve.php"
  5915. ],
  5916. "psr-4": {
  5917. "EllipticCurve\\": "src/"
  5918. },
  5919. "classmap": [
  5920. "src/"
  5921. ]
  5922. },
  5923. "notification-url": "https://packagist.org/downloads/",
  5924. "license": [
  5925. "MIT"
  5926. ],
  5927. "authors": [
  5928. {
  5929. "name": "StarkBank",
  5930. "email": "[email protected]",
  5931. "homepage": "https://starkbank.com",
  5932. "role": "Developer"
  5933. }
  5934. ],
  5935. "description": "fast openSSL-compatible implementation of the Elliptic Curve Digital Signature Algorithm (ECDSA)",
  5936. "homepage": "https://github.com/starkbank/ecdsa-php",
  5937. "support": {
  5938. "issues": "https://github.com/starkbank/ecdsa-php/issues",
  5939. "source": "https://github.com/starkbank/ecdsa-php/tree/v2.1.0"
  5940. },
  5941. "time": "2023-09-06T22:09:08+00:00"
  5942. },
  5943. {
  5944. "name": "stripe/stripe-php",
  5945. "version": "v17.5.0",
  5946. "source": {
  5947. "type": "git",
  5948. "url": "https://github.com/stripe/stripe-php.git",
  5949. "reference": "313c7e3ed6af1d6948dc4262d2b9c6ee6b30394b"
  5950. },
  5951. "dist": {
  5952. "type": "zip",
  5953. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/313c7e3ed6af1d6948dc4262d2b9c6ee6b30394b",
  5954. "reference": "313c7e3ed6af1d6948dc4262d2b9c6ee6b30394b",
  5955. "shasum": ""
  5956. },
  5957. "require": {
  5958. "ext-curl": "*",
  5959. "ext-json": "*",
  5960. "ext-mbstring": "*",
  5961. "php": ">=5.6.0"
  5962. },
  5963. "require-dev": {
  5964. "friendsofphp/php-cs-fixer": "3.72.0",
  5965. "phpstan/phpstan": "^1.2",
  5966. "phpunit/phpunit": "^5.7 || ^9.0"
  5967. },
  5968. "type": "library",
  5969. "extra": {
  5970. "branch-alias": {
  5971. "dev-master": "2.0-dev"
  5972. }
  5973. },
  5974. "autoload": {
  5975. "psr-4": {
  5976. "Stripe\\": "lib/"
  5977. }
  5978. },
  5979. "notification-url": "https://packagist.org/downloads/",
  5980. "license": [
  5981. "MIT"
  5982. ],
  5983. "authors": [
  5984. {
  5985. "name": "Stripe and contributors",
  5986. "homepage": "https://github.com/stripe/stripe-php/contributors"
  5987. }
  5988. ],
  5989. "description": "Stripe PHP Library",
  5990. "homepage": "https://stripe.com/",
  5991. "keywords": [
  5992. "api",
  5993. "payment processing",
  5994. "stripe"
  5995. ],
  5996. "support": {
  5997. "issues": "https://github.com/stripe/stripe-php/issues",
  5998. "source": "https://github.com/stripe/stripe-php/tree/v17.5.0"
  5999. },
  6000. "time": "2025-07-30T17:16:57+00:00"
  6001. },
  6002. {
  6003. "name": "symfony/cache",
  6004. "version": "v7.3.2",
  6005. "source": {
  6006. "type": "git",
  6007. "url": "https://github.com/symfony/cache.git",
  6008. "reference": "6621a2bee5373e3e972b2ae5dbedd5ac899d8cb6"
  6009. },
  6010. "dist": {
  6011. "type": "zip",
  6012. "url": "https://api.github.com/repos/symfony/cache/zipball/6621a2bee5373e3e972b2ae5dbedd5ac899d8cb6",
  6013. "reference": "6621a2bee5373e3e972b2ae5dbedd5ac899d8cb6",
  6014. "shasum": ""
  6015. },
  6016. "require": {
  6017. "php": ">=8.2",
  6018. "psr/cache": "^2.0|^3.0",
  6019. "psr/log": "^1.1|^2|^3",
  6020. "symfony/cache-contracts": "^3.6",
  6021. "symfony/deprecation-contracts": "^2.5|^3.0",
  6022. "symfony/service-contracts": "^2.5|^3",
  6023. "symfony/var-exporter": "^6.4|^7.0"
  6024. },
  6025. "conflict": {
  6026. "doctrine/dbal": "<3.6",
  6027. "symfony/dependency-injection": "<6.4",
  6028. "symfony/http-kernel": "<6.4",
  6029. "symfony/var-dumper": "<6.4"
  6030. },
  6031. "provide": {
  6032. "psr/cache-implementation": "2.0|3.0",
  6033. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  6034. "symfony/cache-implementation": "1.1|2.0|3.0"
  6035. },
  6036. "require-dev": {
  6037. "cache/integration-tests": "dev-master",
  6038. "doctrine/dbal": "^3.6|^4",
  6039. "predis/predis": "^1.1|^2.0",
  6040. "psr/simple-cache": "^1.0|^2.0|^3.0",
  6041. "symfony/clock": "^6.4|^7.0",
  6042. "symfony/config": "^6.4|^7.0",
  6043. "symfony/dependency-injection": "^6.4|^7.0",
  6044. "symfony/filesystem": "^6.4|^7.0",
  6045. "symfony/http-kernel": "^6.4|^7.0",
  6046. "symfony/messenger": "^6.4|^7.0",
  6047. "symfony/var-dumper": "^6.4|^7.0"
  6048. },
  6049. "type": "library",
  6050. "autoload": {
  6051. "psr-4": {
  6052. "Symfony\\Component\\Cache\\": ""
  6053. },
  6054. "classmap": [
  6055. "Traits/ValueWrapper.php"
  6056. ],
  6057. "exclude-from-classmap": [
  6058. "/Tests/"
  6059. ]
  6060. },
  6061. "notification-url": "https://packagist.org/downloads/",
  6062. "license": [
  6063. "MIT"
  6064. ],
  6065. "authors": [
  6066. {
  6067. "name": "Nicolas Grekas",
  6068. "email": "[email protected]"
  6069. },
  6070. {
  6071. "name": "Symfony Community",
  6072. "homepage": "https://symfony.com/contributors"
  6073. }
  6074. ],
  6075. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  6076. "homepage": "https://symfony.com",
  6077. "keywords": [
  6078. "caching",
  6079. "psr6"
  6080. ],
  6081. "support": {
  6082. "source": "https://github.com/symfony/cache/tree/v7.3.2"
  6083. },
  6084. "funding": [
  6085. {
  6086. "url": "https://symfony.com/sponsor",
  6087. "type": "custom"
  6088. },
  6089. {
  6090. "url": "https://github.com/fabpot",
  6091. "type": "github"
  6092. },
  6093. {
  6094. "url": "https://github.com/nicolas-grekas",
  6095. "type": "github"
  6096. },
  6097. {
  6098. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6099. "type": "tidelift"
  6100. }
  6101. ],
  6102. "time": "2025-07-30T17:13:41+00:00"
  6103. },
  6104. {
  6105. "name": "symfony/cache-contracts",
  6106. "version": "v3.6.0",
  6107. "source": {
  6108. "type": "git",
  6109. "url": "https://github.com/symfony/cache-contracts.git",
  6110. "reference": "5d68a57d66910405e5c0b63d6f0af941e66fc868"
  6111. },
  6112. "dist": {
  6113. "type": "zip",
  6114. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/5d68a57d66910405e5c0b63d6f0af941e66fc868",
  6115. "reference": "5d68a57d66910405e5c0b63d6f0af941e66fc868",
  6116. "shasum": ""
  6117. },
  6118. "require": {
  6119. "php": ">=8.1",
  6120. "psr/cache": "^3.0"
  6121. },
  6122. "type": "library",
  6123. "extra": {
  6124. "thanks": {
  6125. "url": "https://github.com/symfony/contracts",
  6126. "name": "symfony/contracts"
  6127. },
  6128. "branch-alias": {
  6129. "dev-main": "3.6-dev"
  6130. }
  6131. },
  6132. "autoload": {
  6133. "psr-4": {
  6134. "Symfony\\Contracts\\Cache\\": ""
  6135. }
  6136. },
  6137. "notification-url": "https://packagist.org/downloads/",
  6138. "license": [
  6139. "MIT"
  6140. ],
  6141. "authors": [
  6142. {
  6143. "name": "Nicolas Grekas",
  6144. "email": "[email protected]"
  6145. },
  6146. {
  6147. "name": "Symfony Community",
  6148. "homepage": "https://symfony.com/contributors"
  6149. }
  6150. ],
  6151. "description": "Generic abstractions related to caching",
  6152. "homepage": "https://symfony.com",
  6153. "keywords": [
  6154. "abstractions",
  6155. "contracts",
  6156. "decoupling",
  6157. "interfaces",
  6158. "interoperability",
  6159. "standards"
  6160. ],
  6161. "support": {
  6162. "source": "https://github.com/symfony/cache-contracts/tree/v3.6.0"
  6163. },
  6164. "funding": [
  6165. {
  6166. "url": "https://symfony.com/sponsor",
  6167. "type": "custom"
  6168. },
  6169. {
  6170. "url": "https://github.com/fabpot",
  6171. "type": "github"
  6172. },
  6173. {
  6174. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6175. "type": "tidelift"
  6176. }
  6177. ],
  6178. "time": "2025-03-13T15:25:07+00:00"
  6179. },
  6180. {
  6181. "name": "symfony/clock",
  6182. "version": "v7.3.0",
  6183. "source": {
  6184. "type": "git",
  6185. "url": "https://github.com/symfony/clock.git",
  6186. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24"
  6187. },
  6188. "dist": {
  6189. "type": "zip",
  6190. "url": "https://api.github.com/repos/symfony/clock/zipball/b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  6191. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  6192. "shasum": ""
  6193. },
  6194. "require": {
  6195. "php": ">=8.2",
  6196. "psr/clock": "^1.0",
  6197. "symfony/polyfill-php83": "^1.28"
  6198. },
  6199. "provide": {
  6200. "psr/clock-implementation": "1.0"
  6201. },
  6202. "type": "library",
  6203. "autoload": {
  6204. "files": [
  6205. "Resources/now.php"
  6206. ],
  6207. "psr-4": {
  6208. "Symfony\\Component\\Clock\\": ""
  6209. },
  6210. "exclude-from-classmap": [
  6211. "/Tests/"
  6212. ]
  6213. },
  6214. "notification-url": "https://packagist.org/downloads/",
  6215. "license": [
  6216. "MIT"
  6217. ],
  6218. "authors": [
  6219. {
  6220. "name": "Nicolas Grekas",
  6221. "email": "[email protected]"
  6222. },
  6223. {
  6224. "name": "Symfony Community",
  6225. "homepage": "https://symfony.com/contributors"
  6226. }
  6227. ],
  6228. "description": "Decouples applications from the system clock",
  6229. "homepage": "https://symfony.com",
  6230. "keywords": [
  6231. "clock",
  6232. "psr20",
  6233. "time"
  6234. ],
  6235. "support": {
  6236. "source": "https://github.com/symfony/clock/tree/v7.3.0"
  6237. },
  6238. "funding": [
  6239. {
  6240. "url": "https://symfony.com/sponsor",
  6241. "type": "custom"
  6242. },
  6243. {
  6244. "url": "https://github.com/fabpot",
  6245. "type": "github"
  6246. },
  6247. {
  6248. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6249. "type": "tidelift"
  6250. }
  6251. ],
  6252. "time": "2024-09-25T14:21:43+00:00"
  6253. },
  6254. {
  6255. "name": "symfony/config",
  6256. "version": "v7.3.2",
  6257. "source": {
  6258. "type": "git",
  6259. "url": "https://github.com/symfony/config.git",
  6260. "reference": "faef36e271bbeb74a9d733be4b56419b157762e2"
  6261. },
  6262. "dist": {
  6263. "type": "zip",
  6264. "url": "https://api.github.com/repos/symfony/config/zipball/faef36e271bbeb74a9d733be4b56419b157762e2",
  6265. "reference": "faef36e271bbeb74a9d733be4b56419b157762e2",
  6266. "shasum": ""
  6267. },
  6268. "require": {
  6269. "php": ">=8.2",
  6270. "symfony/deprecation-contracts": "^2.5|^3",
  6271. "symfony/filesystem": "^7.1",
  6272. "symfony/polyfill-ctype": "~1.8"
  6273. },
  6274. "conflict": {
  6275. "symfony/finder": "<6.4",
  6276. "symfony/service-contracts": "<2.5"
  6277. },
  6278. "require-dev": {
  6279. "symfony/event-dispatcher": "^6.4|^7.0",
  6280. "symfony/finder": "^6.4|^7.0",
  6281. "symfony/messenger": "^6.4|^7.0",
  6282. "symfony/service-contracts": "^2.5|^3",
  6283. "symfony/yaml": "^6.4|^7.0"
  6284. },
  6285. "type": "library",
  6286. "autoload": {
  6287. "psr-4": {
  6288. "Symfony\\Component\\Config\\": ""
  6289. },
  6290. "exclude-from-classmap": [
  6291. "/Tests/"
  6292. ]
  6293. },
  6294. "notification-url": "https://packagist.org/downloads/",
  6295. "license": [
  6296. "MIT"
  6297. ],
  6298. "authors": [
  6299. {
  6300. "name": "Fabien Potencier",
  6301. "email": "[email protected]"
  6302. },
  6303. {
  6304. "name": "Symfony Community",
  6305. "homepage": "https://symfony.com/contributors"
  6306. }
  6307. ],
  6308. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  6309. "homepage": "https://symfony.com",
  6310. "support": {
  6311. "source": "https://github.com/symfony/config/tree/v7.3.2"
  6312. },
  6313. "funding": [
  6314. {
  6315. "url": "https://symfony.com/sponsor",
  6316. "type": "custom"
  6317. },
  6318. {
  6319. "url": "https://github.com/fabpot",
  6320. "type": "github"
  6321. },
  6322. {
  6323. "url": "https://github.com/nicolas-grekas",
  6324. "type": "github"
  6325. },
  6326. {
  6327. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6328. "type": "tidelift"
  6329. }
  6330. ],
  6331. "time": "2025-07-26T13:55:06+00:00"
  6332. },
  6333. {
  6334. "name": "symfony/dependency-injection",
  6335. "version": "v7.3.2",
  6336. "source": {
  6337. "type": "git",
  6338. "url": "https://github.com/symfony/dependency-injection.git",
  6339. "reference": "6cd2a1a77e8a0676a26e8bcddf10acfe7b0ba352"
  6340. },
  6341. "dist": {
  6342. "type": "zip",
  6343. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/6cd2a1a77e8a0676a26e8bcddf10acfe7b0ba352",
  6344. "reference": "6cd2a1a77e8a0676a26e8bcddf10acfe7b0ba352",
  6345. "shasum": ""
  6346. },
  6347. "require": {
  6348. "php": ">=8.2",
  6349. "psr/container": "^1.1|^2.0",
  6350. "symfony/deprecation-contracts": "^2.5|^3",
  6351. "symfony/service-contracts": "^3.5",
  6352. "symfony/var-exporter": "^6.4.20|^7.2.5"
  6353. },
  6354. "conflict": {
  6355. "ext-psr": "<1.1|>=2",
  6356. "symfony/config": "<6.4",
  6357. "symfony/finder": "<6.4",
  6358. "symfony/yaml": "<6.4"
  6359. },
  6360. "provide": {
  6361. "psr/container-implementation": "1.1|2.0",
  6362. "symfony/service-implementation": "1.1|2.0|3.0"
  6363. },
  6364. "require-dev": {
  6365. "symfony/config": "^6.4|^7.0",
  6366. "symfony/expression-language": "^6.4|^7.0",
  6367. "symfony/yaml": "^6.4|^7.0"
  6368. },
  6369. "type": "library",
  6370. "autoload": {
  6371. "psr-4": {
  6372. "Symfony\\Component\\DependencyInjection\\": ""
  6373. },
  6374. "exclude-from-classmap": [
  6375. "/Tests/"
  6376. ]
  6377. },
  6378. "notification-url": "https://packagist.org/downloads/",
  6379. "license": [
  6380. "MIT"
  6381. ],
  6382. "authors": [
  6383. {
  6384. "name": "Fabien Potencier",
  6385. "email": "[email protected]"
  6386. },
  6387. {
  6388. "name": "Symfony Community",
  6389. "homepage": "https://symfony.com/contributors"
  6390. }
  6391. ],
  6392. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  6393. "homepage": "https://symfony.com",
  6394. "support": {
  6395. "source": "https://github.com/symfony/dependency-injection/tree/v7.3.2"
  6396. },
  6397. "funding": [
  6398. {
  6399. "url": "https://symfony.com/sponsor",
  6400. "type": "custom"
  6401. },
  6402. {
  6403. "url": "https://github.com/fabpot",
  6404. "type": "github"
  6405. },
  6406. {
  6407. "url": "https://github.com/nicolas-grekas",
  6408. "type": "github"
  6409. },
  6410. {
  6411. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6412. "type": "tidelift"
  6413. }
  6414. ],
  6415. "time": "2025-07-30T17:31:46+00:00"
  6416. },
  6417. {
  6418. "name": "symfony/deprecation-contracts",
  6419. "version": "v3.6.0",
  6420. "source": {
  6421. "type": "git",
  6422. "url": "https://github.com/symfony/deprecation-contracts.git",
  6423. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  6424. },
  6425. "dist": {
  6426. "type": "zip",
  6427. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  6428. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  6429. "shasum": ""
  6430. },
  6431. "require": {
  6432. "php": ">=8.1"
  6433. },
  6434. "type": "library",
  6435. "extra": {
  6436. "thanks": {
  6437. "url": "https://github.com/symfony/contracts",
  6438. "name": "symfony/contracts"
  6439. },
  6440. "branch-alias": {
  6441. "dev-main": "3.6-dev"
  6442. }
  6443. },
  6444. "autoload": {
  6445. "files": [
  6446. "function.php"
  6447. ]
  6448. },
  6449. "notification-url": "https://packagist.org/downloads/",
  6450. "license": [
  6451. "MIT"
  6452. ],
  6453. "authors": [
  6454. {
  6455. "name": "Nicolas Grekas",
  6456. "email": "[email protected]"
  6457. },
  6458. {
  6459. "name": "Symfony Community",
  6460. "homepage": "https://symfony.com/contributors"
  6461. }
  6462. ],
  6463. "description": "A generic function and convention to trigger deprecation notices",
  6464. "homepage": "https://symfony.com",
  6465. "support": {
  6466. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  6467. },
  6468. "funding": [
  6469. {
  6470. "url": "https://symfony.com/sponsor",
  6471. "type": "custom"
  6472. },
  6473. {
  6474. "url": "https://github.com/fabpot",
  6475. "type": "github"
  6476. },
  6477. {
  6478. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6479. "type": "tidelift"
  6480. }
  6481. ],
  6482. "time": "2024-09-25T14:21:43+00:00"
  6483. },
  6484. {
  6485. "name": "symfony/error-handler",
  6486. "version": "v7.3.2",
  6487. "source": {
  6488. "type": "git",
  6489. "url": "https://github.com/symfony/error-handler.git",
  6490. "reference": "0b31a944fcd8759ae294da4d2808cbc53aebd0c3"
  6491. },
  6492. "dist": {
  6493. "type": "zip",
  6494. "url": "https://api.github.com/repos/symfony/error-handler/zipball/0b31a944fcd8759ae294da4d2808cbc53aebd0c3",
  6495. "reference": "0b31a944fcd8759ae294da4d2808cbc53aebd0c3",
  6496. "shasum": ""
  6497. },
  6498. "require": {
  6499. "php": ">=8.2",
  6500. "psr/log": "^1|^2|^3",
  6501. "symfony/var-dumper": "^6.4|^7.0"
  6502. },
  6503. "conflict": {
  6504. "symfony/deprecation-contracts": "<2.5",
  6505. "symfony/http-kernel": "<6.4"
  6506. },
  6507. "require-dev": {
  6508. "symfony/console": "^6.4|^7.0",
  6509. "symfony/deprecation-contracts": "^2.5|^3",
  6510. "symfony/http-kernel": "^6.4|^7.0",
  6511. "symfony/serializer": "^6.4|^7.0",
  6512. "symfony/webpack-encore-bundle": "^1.0|^2.0"
  6513. },
  6514. "bin": [
  6515. "Resources/bin/patch-type-declarations"
  6516. ],
  6517. "type": "library",
  6518. "autoload": {
  6519. "psr-4": {
  6520. "Symfony\\Component\\ErrorHandler\\": ""
  6521. },
  6522. "exclude-from-classmap": [
  6523. "/Tests/"
  6524. ]
  6525. },
  6526. "notification-url": "https://packagist.org/downloads/",
  6527. "license": [
  6528. "MIT"
  6529. ],
  6530. "authors": [
  6531. {
  6532. "name": "Fabien Potencier",
  6533. "email": "[email protected]"
  6534. },
  6535. {
  6536. "name": "Symfony Community",
  6537. "homepage": "https://symfony.com/contributors"
  6538. }
  6539. ],
  6540. "description": "Provides tools to manage errors and ease debugging PHP code",
  6541. "homepage": "https://symfony.com",
  6542. "support": {
  6543. "source": "https://github.com/symfony/error-handler/tree/v7.3.2"
  6544. },
  6545. "funding": [
  6546. {
  6547. "url": "https://symfony.com/sponsor",
  6548. "type": "custom"
  6549. },
  6550. {
  6551. "url": "https://github.com/fabpot",
  6552. "type": "github"
  6553. },
  6554. {
  6555. "url": "https://github.com/nicolas-grekas",
  6556. "type": "github"
  6557. },
  6558. {
  6559. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6560. "type": "tidelift"
  6561. }
  6562. ],
  6563. "time": "2025-07-07T08:17:57+00:00"
  6564. },
  6565. {
  6566. "name": "symfony/event-dispatcher",
  6567. "version": "v7.3.0",
  6568. "source": {
  6569. "type": "git",
  6570. "url": "https://github.com/symfony/event-dispatcher.git",
  6571. "reference": "497f73ac996a598c92409b44ac43b6690c4f666d"
  6572. },
  6573. "dist": {
  6574. "type": "zip",
  6575. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/497f73ac996a598c92409b44ac43b6690c4f666d",
  6576. "reference": "497f73ac996a598c92409b44ac43b6690c4f666d",
  6577. "shasum": ""
  6578. },
  6579. "require": {
  6580. "php": ">=8.2",
  6581. "symfony/event-dispatcher-contracts": "^2.5|^3"
  6582. },
  6583. "conflict": {
  6584. "symfony/dependency-injection": "<6.4",
  6585. "symfony/service-contracts": "<2.5"
  6586. },
  6587. "provide": {
  6588. "psr/event-dispatcher-implementation": "1.0",
  6589. "symfony/event-dispatcher-implementation": "2.0|3.0"
  6590. },
  6591. "require-dev": {
  6592. "psr/log": "^1|^2|^3",
  6593. "symfony/config": "^6.4|^7.0",
  6594. "symfony/dependency-injection": "^6.4|^7.0",
  6595. "symfony/error-handler": "^6.4|^7.0",
  6596. "symfony/expression-language": "^6.4|^7.0",
  6597. "symfony/http-foundation": "^6.4|^7.0",
  6598. "symfony/service-contracts": "^2.5|^3",
  6599. "symfony/stopwatch": "^6.4|^7.0"
  6600. },
  6601. "type": "library",
  6602. "autoload": {
  6603. "psr-4": {
  6604. "Symfony\\Component\\EventDispatcher\\": ""
  6605. },
  6606. "exclude-from-classmap": [
  6607. "/Tests/"
  6608. ]
  6609. },
  6610. "notification-url": "https://packagist.org/downloads/",
  6611. "license": [
  6612. "MIT"
  6613. ],
  6614. "authors": [
  6615. {
  6616. "name": "Fabien Potencier",
  6617. "email": "[email protected]"
  6618. },
  6619. {
  6620. "name": "Symfony Community",
  6621. "homepage": "https://symfony.com/contributors"
  6622. }
  6623. ],
  6624. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  6625. "homepage": "https://symfony.com",
  6626. "support": {
  6627. "source": "https://github.com/symfony/event-dispatcher/tree/v7.3.0"
  6628. },
  6629. "funding": [
  6630. {
  6631. "url": "https://symfony.com/sponsor",
  6632. "type": "custom"
  6633. },
  6634. {
  6635. "url": "https://github.com/fabpot",
  6636. "type": "github"
  6637. },
  6638. {
  6639. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6640. "type": "tidelift"
  6641. }
  6642. ],
  6643. "time": "2025-04-22T09:11:45+00:00"
  6644. },
  6645. {
  6646. "name": "symfony/event-dispatcher-contracts",
  6647. "version": "v3.6.0",
  6648. "source": {
  6649. "type": "git",
  6650. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  6651. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  6652. },
  6653. "dist": {
  6654. "type": "zip",
  6655. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  6656. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  6657. "shasum": ""
  6658. },
  6659. "require": {
  6660. "php": ">=8.1",
  6661. "psr/event-dispatcher": "^1"
  6662. },
  6663. "type": "library",
  6664. "extra": {
  6665. "thanks": {
  6666. "url": "https://github.com/symfony/contracts",
  6667. "name": "symfony/contracts"
  6668. },
  6669. "branch-alias": {
  6670. "dev-main": "3.6-dev"
  6671. }
  6672. },
  6673. "autoload": {
  6674. "psr-4": {
  6675. "Symfony\\Contracts\\EventDispatcher\\": ""
  6676. }
  6677. },
  6678. "notification-url": "https://packagist.org/downloads/",
  6679. "license": [
  6680. "MIT"
  6681. ],
  6682. "authors": [
  6683. {
  6684. "name": "Nicolas Grekas",
  6685. "email": "[email protected]"
  6686. },
  6687. {
  6688. "name": "Symfony Community",
  6689. "homepage": "https://symfony.com/contributors"
  6690. }
  6691. ],
  6692. "description": "Generic abstractions related to dispatching event",
  6693. "homepage": "https://symfony.com",
  6694. "keywords": [
  6695. "abstractions",
  6696. "contracts",
  6697. "decoupling",
  6698. "interfaces",
  6699. "interoperability",
  6700. "standards"
  6701. ],
  6702. "support": {
  6703. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  6704. },
  6705. "funding": [
  6706. {
  6707. "url": "https://symfony.com/sponsor",
  6708. "type": "custom"
  6709. },
  6710. {
  6711. "url": "https://github.com/fabpot",
  6712. "type": "github"
  6713. },
  6714. {
  6715. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6716. "type": "tidelift"
  6717. }
  6718. ],
  6719. "time": "2024-09-25T14:21:43+00:00"
  6720. },
  6721. {
  6722. "name": "symfony/filesystem",
  6723. "version": "v7.3.2",
  6724. "source": {
  6725. "type": "git",
  6726. "url": "https://github.com/symfony/filesystem.git",
  6727. "reference": "edcbb768a186b5c3f25d0643159a787d3e63b7fd"
  6728. },
  6729. "dist": {
  6730. "type": "zip",
  6731. "url": "https://api.github.com/repos/symfony/filesystem/zipball/edcbb768a186b5c3f25d0643159a787d3e63b7fd",
  6732. "reference": "edcbb768a186b5c3f25d0643159a787d3e63b7fd",
  6733. "shasum": ""
  6734. },
  6735. "require": {
  6736. "php": ">=8.2",
  6737. "symfony/polyfill-ctype": "~1.8",
  6738. "symfony/polyfill-mbstring": "~1.8"
  6739. },
  6740. "require-dev": {
  6741. "symfony/process": "^6.4|^7.0"
  6742. },
  6743. "type": "library",
  6744. "autoload": {
  6745. "psr-4": {
  6746. "Symfony\\Component\\Filesystem\\": ""
  6747. },
  6748. "exclude-from-classmap": [
  6749. "/Tests/"
  6750. ]
  6751. },
  6752. "notification-url": "https://packagist.org/downloads/",
  6753. "license": [
  6754. "MIT"
  6755. ],
  6756. "authors": [
  6757. {
  6758. "name": "Fabien Potencier",
  6759. "email": "[email protected]"
  6760. },
  6761. {
  6762. "name": "Symfony Community",
  6763. "homepage": "https://symfony.com/contributors"
  6764. }
  6765. ],
  6766. "description": "Provides basic utilities for the filesystem",
  6767. "homepage": "https://symfony.com",
  6768. "support": {
  6769. "source": "https://github.com/symfony/filesystem/tree/v7.3.2"
  6770. },
  6771. "funding": [
  6772. {
  6773. "url": "https://symfony.com/sponsor",
  6774. "type": "custom"
  6775. },
  6776. {
  6777. "url": "https://github.com/fabpot",
  6778. "type": "github"
  6779. },
  6780. {
  6781. "url": "https://github.com/nicolas-grekas",
  6782. "type": "github"
  6783. },
  6784. {
  6785. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6786. "type": "tidelift"
  6787. }
  6788. ],
  6789. "time": "2025-07-07T08:17:47+00:00"
  6790. },
  6791. {
  6792. "name": "symfony/finder",
  6793. "version": "v7.3.2",
  6794. "source": {
  6795. "type": "git",
  6796. "url": "https://github.com/symfony/finder.git",
  6797. "reference": "2a6614966ba1074fa93dae0bc804227422df4dfe"
  6798. },
  6799. "dist": {
  6800. "type": "zip",
  6801. "url": "https://api.github.com/repos/symfony/finder/zipball/2a6614966ba1074fa93dae0bc804227422df4dfe",
  6802. "reference": "2a6614966ba1074fa93dae0bc804227422df4dfe",
  6803. "shasum": ""
  6804. },
  6805. "require": {
  6806. "php": ">=8.2"
  6807. },
  6808. "require-dev": {
  6809. "symfony/filesystem": "^6.4|^7.0"
  6810. },
  6811. "type": "library",
  6812. "autoload": {
  6813. "psr-4": {
  6814. "Symfony\\Component\\Finder\\": ""
  6815. },
  6816. "exclude-from-classmap": [
  6817. "/Tests/"
  6818. ]
  6819. },
  6820. "notification-url": "https://packagist.org/downloads/",
  6821. "license": [
  6822. "MIT"
  6823. ],
  6824. "authors": [
  6825. {
  6826. "name": "Fabien Potencier",
  6827. "email": "[email protected]"
  6828. },
  6829. {
  6830. "name": "Symfony Community",
  6831. "homepage": "https://symfony.com/contributors"
  6832. }
  6833. ],
  6834. "description": "Finds files and directories via an intuitive fluent interface",
  6835. "homepage": "https://symfony.com",
  6836. "support": {
  6837. "source": "https://github.com/symfony/finder/tree/v7.3.2"
  6838. },
  6839. "funding": [
  6840. {
  6841. "url": "https://symfony.com/sponsor",
  6842. "type": "custom"
  6843. },
  6844. {
  6845. "url": "https://github.com/fabpot",
  6846. "type": "github"
  6847. },
  6848. {
  6849. "url": "https://github.com/nicolas-grekas",
  6850. "type": "github"
  6851. },
  6852. {
  6853. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6854. "type": "tidelift"
  6855. }
  6856. ],
  6857. "time": "2025-07-15T13:41:35+00:00"
  6858. },
  6859. {
  6860. "name": "symfony/framework-bundle",
  6861. "version": "v7.3.2",
  6862. "source": {
  6863. "type": "git",
  6864. "url": "https://github.com/symfony/framework-bundle.git",
  6865. "reference": "06c0f678129f99bda8b5cf8873b3d8ef5a0029e7"
  6866. },
  6867. "dist": {
  6868. "type": "zip",
  6869. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/06c0f678129f99bda8b5cf8873b3d8ef5a0029e7",
  6870. "reference": "06c0f678129f99bda8b5cf8873b3d8ef5a0029e7",
  6871. "shasum": ""
  6872. },
  6873. "require": {
  6874. "composer-runtime-api": ">=2.1",
  6875. "ext-xml": "*",
  6876. "php": ">=8.2",
  6877. "symfony/cache": "^6.4|^7.0",
  6878. "symfony/config": "^7.3",
  6879. "symfony/dependency-injection": "^7.2",
  6880. "symfony/deprecation-contracts": "^2.5|^3",
  6881. "symfony/error-handler": "^7.3",
  6882. "symfony/event-dispatcher": "^6.4|^7.0",
  6883. "symfony/filesystem": "^7.1",
  6884. "symfony/finder": "^6.4|^7.0",
  6885. "symfony/http-foundation": "^7.3",
  6886. "symfony/http-kernel": "^7.2",
  6887. "symfony/polyfill-mbstring": "~1.0",
  6888. "symfony/routing": "^6.4|^7.0"
  6889. },
  6890. "conflict": {
  6891. "doctrine/persistence": "<1.3",
  6892. "phpdocumentor/reflection-docblock": "<3.2.2",
  6893. "phpdocumentor/type-resolver": "<1.4.0",
  6894. "symfony/asset": "<6.4",
  6895. "symfony/asset-mapper": "<6.4",
  6896. "symfony/clock": "<6.4",
  6897. "symfony/console": "<6.4",
  6898. "symfony/dom-crawler": "<6.4",
  6899. "symfony/dotenv": "<6.4",
  6900. "symfony/form": "<6.4",
  6901. "symfony/http-client": "<6.4",
  6902. "symfony/json-streamer": ">=7.4",
  6903. "symfony/lock": "<6.4",
  6904. "symfony/mailer": "<6.4",
  6905. "symfony/messenger": "<6.4",
  6906. "symfony/mime": "<6.4",
  6907. "symfony/object-mapper": ">=7.4",
  6908. "symfony/property-access": "<6.4",
  6909. "symfony/property-info": "<6.4",
  6910. "symfony/runtime": "<6.4.13|>=7.0,<7.1.6",
  6911. "symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4",
  6912. "symfony/security-core": "<6.4",
  6913. "symfony/security-csrf": "<7.2",
  6914. "symfony/serializer": "<7.2.5",
  6915. "symfony/stopwatch": "<6.4",
  6916. "symfony/translation": "<7.3",
  6917. "symfony/twig-bridge": "<6.4",
  6918. "symfony/twig-bundle": "<6.4",
  6919. "symfony/validator": "<6.4",
  6920. "symfony/web-profiler-bundle": "<6.4",
  6921. "symfony/webhook": "<7.2",
  6922. "symfony/workflow": "<7.3.0-beta2"
  6923. },
  6924. "require-dev": {
  6925. "doctrine/persistence": "^1.3|^2|^3",
  6926. "dragonmantank/cron-expression": "^3.1",
  6927. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6928. "seld/jsonlint": "^1.10",
  6929. "symfony/asset": "^6.4|^7.0",
  6930. "symfony/asset-mapper": "^6.4|^7.0",
  6931. "symfony/browser-kit": "^6.4|^7.0",
  6932. "symfony/clock": "^6.4|^7.0",
  6933. "symfony/console": "^6.4|^7.0",
  6934. "symfony/css-selector": "^6.4|^7.0",
  6935. "symfony/dom-crawler": "^6.4|^7.0",
  6936. "symfony/dotenv": "^6.4|^7.0",
  6937. "symfony/expression-language": "^6.4|^7.0",
  6938. "symfony/form": "^6.4|^7.0",
  6939. "symfony/html-sanitizer": "^6.4|^7.0",
  6940. "symfony/http-client": "^6.4|^7.0",
  6941. "symfony/json-streamer": "7.3.*",
  6942. "symfony/lock": "^6.4|^7.0",
  6943. "symfony/mailer": "^6.4|^7.0",
  6944. "symfony/messenger": "^6.4|^7.0",
  6945. "symfony/mime": "^6.4|^7.0",
  6946. "symfony/notifier": "^6.4|^7.0",
  6947. "symfony/object-mapper": "^v7.3.0-beta2",
  6948. "symfony/polyfill-intl-icu": "~1.0",
  6949. "symfony/process": "^6.4|^7.0",
  6950. "symfony/property-info": "^6.4|^7.0",
  6951. "symfony/rate-limiter": "^6.4|^7.0",
  6952. "symfony/scheduler": "^6.4.4|^7.0.4",
  6953. "symfony/security-bundle": "^6.4|^7.0",
  6954. "symfony/semaphore": "^6.4|^7.0",
  6955. "symfony/serializer": "^7.2.5",
  6956. "symfony/stopwatch": "^6.4|^7.0",
  6957. "symfony/string": "^6.4|^7.0",
  6958. "symfony/translation": "^7.3",
  6959. "symfony/twig-bundle": "^6.4|^7.0",
  6960. "symfony/type-info": "^7.1.8",
  6961. "symfony/uid": "^6.4|^7.0",
  6962. "symfony/validator": "^6.4|^7.0",
  6963. "symfony/web-link": "^6.4|^7.0",
  6964. "symfony/webhook": "^7.2",
  6965. "symfony/workflow": "^7.3",
  6966. "symfony/yaml": "^6.4|^7.0",
  6967. "twig/twig": "^3.12"
  6968. },
  6969. "type": "symfony-bundle",
  6970. "autoload": {
  6971. "psr-4": {
  6972. "Symfony\\Bundle\\FrameworkBundle\\": ""
  6973. },
  6974. "exclude-from-classmap": [
  6975. "/Tests/"
  6976. ]
  6977. },
  6978. "notification-url": "https://packagist.org/downloads/",
  6979. "license": [
  6980. "MIT"
  6981. ],
  6982. "authors": [
  6983. {
  6984. "name": "Fabien Potencier",
  6985. "email": "[email protected]"
  6986. },
  6987. {
  6988. "name": "Symfony Community",
  6989. "homepage": "https://symfony.com/contributors"
  6990. }
  6991. ],
  6992. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  6993. "homepage": "https://symfony.com",
  6994. "support": {
  6995. "source": "https://github.com/symfony/framework-bundle/tree/v7.3.2"
  6996. },
  6997. "funding": [
  6998. {
  6999. "url": "https://symfony.com/sponsor",
  7000. "type": "custom"
  7001. },
  7002. {
  7003. "url": "https://github.com/fabpot",
  7004. "type": "github"
  7005. },
  7006. {
  7007. "url": "https://github.com/nicolas-grekas",
  7008. "type": "github"
  7009. },
  7010. {
  7011. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7012. "type": "tidelift"
  7013. }
  7014. ],
  7015. "time": "2025-07-30T17:13:41+00:00"
  7016. },
  7017. {
  7018. "name": "symfony/http-client",
  7019. "version": "v7.3.2",
  7020. "source": {
  7021. "type": "git",
  7022. "url": "https://github.com/symfony/http-client.git",
  7023. "reference": "1c064a0c67749923483216b081066642751cc2c7"
  7024. },
  7025. "dist": {
  7026. "type": "zip",
  7027. "url": "https://api.github.com/repos/symfony/http-client/zipball/1c064a0c67749923483216b081066642751cc2c7",
  7028. "reference": "1c064a0c67749923483216b081066642751cc2c7",
  7029. "shasum": ""
  7030. },
  7031. "require": {
  7032. "php": ">=8.2",
  7033. "psr/log": "^1|^2|^3",
  7034. "symfony/deprecation-contracts": "^2.5|^3",
  7035. "symfony/http-client-contracts": "~3.4.4|^3.5.2",
  7036. "symfony/service-contracts": "^2.5|^3"
  7037. },
  7038. "conflict": {
  7039. "amphp/amp": "<2.5",
  7040. "amphp/socket": "<1.1",
  7041. "php-http/discovery": "<1.15",
  7042. "symfony/http-foundation": "<6.4"
  7043. },
  7044. "provide": {
  7045. "php-http/async-client-implementation": "*",
  7046. "php-http/client-implementation": "*",
  7047. "psr/http-client-implementation": "1.0",
  7048. "symfony/http-client-implementation": "3.0"
  7049. },
  7050. "require-dev": {
  7051. "amphp/http-client": "^4.2.1|^5.0",
  7052. "amphp/http-tunnel": "^1.0|^2.0",
  7053. "guzzlehttp/promises": "^1.4|^2.0",
  7054. "nyholm/psr7": "^1.0",
  7055. "php-http/httplug": "^1.0|^2.0",
  7056. "psr/http-client": "^1.0",
  7057. "symfony/amphp-http-client-meta": "^1.0|^2.0",
  7058. "symfony/dependency-injection": "^6.4|^7.0",
  7059. "symfony/http-kernel": "^6.4|^7.0",
  7060. "symfony/messenger": "^6.4|^7.0",
  7061. "symfony/process": "^6.4|^7.0",
  7062. "symfony/rate-limiter": "^6.4|^7.0",
  7063. "symfony/stopwatch": "^6.4|^7.0"
  7064. },
  7065. "type": "library",
  7066. "autoload": {
  7067. "psr-4": {
  7068. "Symfony\\Component\\HttpClient\\": ""
  7069. },
  7070. "exclude-from-classmap": [
  7071. "/Tests/"
  7072. ]
  7073. },
  7074. "notification-url": "https://packagist.org/downloads/",
  7075. "license": [
  7076. "MIT"
  7077. ],
  7078. "authors": [
  7079. {
  7080. "name": "Nicolas Grekas",
  7081. "email": "[email protected]"
  7082. },
  7083. {
  7084. "name": "Symfony Community",
  7085. "homepage": "https://symfony.com/contributors"
  7086. }
  7087. ],
  7088. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  7089. "homepage": "https://symfony.com",
  7090. "keywords": [
  7091. "http"
  7092. ],
  7093. "support": {
  7094. "source": "https://github.com/symfony/http-client/tree/v7.3.2"
  7095. },
  7096. "funding": [
  7097. {
  7098. "url": "https://symfony.com/sponsor",
  7099. "type": "custom"
  7100. },
  7101. {
  7102. "url": "https://github.com/fabpot",
  7103. "type": "github"
  7104. },
  7105. {
  7106. "url": "https://github.com/nicolas-grekas",
  7107. "type": "github"
  7108. },
  7109. {
  7110. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7111. "type": "tidelift"
  7112. }
  7113. ],
  7114. "time": "2025-07-15T11:36:08+00:00"
  7115. },
  7116. {
  7117. "name": "symfony/http-client-contracts",
  7118. "version": "v3.6.0",
  7119. "source": {
  7120. "type": "git",
  7121. "url": "https://github.com/symfony/http-client-contracts.git",
  7122. "reference": "75d7043853a42837e68111812f4d964b01e5101c"
  7123. },
  7124. "dist": {
  7125. "type": "zip",
  7126. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/75d7043853a42837e68111812f4d964b01e5101c",
  7127. "reference": "75d7043853a42837e68111812f4d964b01e5101c",
  7128. "shasum": ""
  7129. },
  7130. "require": {
  7131. "php": ">=8.1"
  7132. },
  7133. "type": "library",
  7134. "extra": {
  7135. "thanks": {
  7136. "url": "https://github.com/symfony/contracts",
  7137. "name": "symfony/contracts"
  7138. },
  7139. "branch-alias": {
  7140. "dev-main": "3.6-dev"
  7141. }
  7142. },
  7143. "autoload": {
  7144. "psr-4": {
  7145. "Symfony\\Contracts\\HttpClient\\": ""
  7146. },
  7147. "exclude-from-classmap": [
  7148. "/Test/"
  7149. ]
  7150. },
  7151. "notification-url": "https://packagist.org/downloads/",
  7152. "license": [
  7153. "MIT"
  7154. ],
  7155. "authors": [
  7156. {
  7157. "name": "Nicolas Grekas",
  7158. "email": "[email protected]"
  7159. },
  7160. {
  7161. "name": "Symfony Community",
  7162. "homepage": "https://symfony.com/contributors"
  7163. }
  7164. ],
  7165. "description": "Generic abstractions related to HTTP clients",
  7166. "homepage": "https://symfony.com",
  7167. "keywords": [
  7168. "abstractions",
  7169. "contracts",
  7170. "decoupling",
  7171. "interfaces",
  7172. "interoperability",
  7173. "standards"
  7174. ],
  7175. "support": {
  7176. "source": "https://github.com/symfony/http-client-contracts/tree/v3.6.0"
  7177. },
  7178. "funding": [
  7179. {
  7180. "url": "https://symfony.com/sponsor",
  7181. "type": "custom"
  7182. },
  7183. {
  7184. "url": "https://github.com/fabpot",
  7185. "type": "github"
  7186. },
  7187. {
  7188. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7189. "type": "tidelift"
  7190. }
  7191. ],
  7192. "time": "2025-04-29T11:18:49+00:00"
  7193. },
  7194. {
  7195. "name": "symfony/http-foundation",
  7196. "version": "v7.3.2",
  7197. "source": {
  7198. "type": "git",
  7199. "url": "https://github.com/symfony/http-foundation.git",
  7200. "reference": "6877c122b3a6cc3695849622720054f6e6fa5fa6"
  7201. },
  7202. "dist": {
  7203. "type": "zip",
  7204. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/6877c122b3a6cc3695849622720054f6e6fa5fa6",
  7205. "reference": "6877c122b3a6cc3695849622720054f6e6fa5fa6",
  7206. "shasum": ""
  7207. },
  7208. "require": {
  7209. "php": ">=8.2",
  7210. "symfony/deprecation-contracts": "^2.5|^3.0",
  7211. "symfony/polyfill-mbstring": "~1.1",
  7212. "symfony/polyfill-php83": "^1.27"
  7213. },
  7214. "conflict": {
  7215. "doctrine/dbal": "<3.6",
  7216. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  7217. },
  7218. "require-dev": {
  7219. "doctrine/dbal": "^3.6|^4",
  7220. "predis/predis": "^1.1|^2.0",
  7221. "symfony/cache": "^6.4.12|^7.1.5",
  7222. "symfony/clock": "^6.4|^7.0",
  7223. "symfony/dependency-injection": "^6.4|^7.0",
  7224. "symfony/expression-language": "^6.4|^7.0",
  7225. "symfony/http-kernel": "^6.4|^7.0",
  7226. "symfony/mime": "^6.4|^7.0",
  7227. "symfony/rate-limiter": "^6.4|^7.0"
  7228. },
  7229. "type": "library",
  7230. "autoload": {
  7231. "psr-4": {
  7232. "Symfony\\Component\\HttpFoundation\\": ""
  7233. },
  7234. "exclude-from-classmap": [
  7235. "/Tests/"
  7236. ]
  7237. },
  7238. "notification-url": "https://packagist.org/downloads/",
  7239. "license": [
  7240. "MIT"
  7241. ],
  7242. "authors": [
  7243. {
  7244. "name": "Fabien Potencier",
  7245. "email": "[email protected]"
  7246. },
  7247. {
  7248. "name": "Symfony Community",
  7249. "homepage": "https://symfony.com/contributors"
  7250. }
  7251. ],
  7252. "description": "Defines an object-oriented layer for the HTTP specification",
  7253. "homepage": "https://symfony.com",
  7254. "support": {
  7255. "source": "https://github.com/symfony/http-foundation/tree/v7.3.2"
  7256. },
  7257. "funding": [
  7258. {
  7259. "url": "https://symfony.com/sponsor",
  7260. "type": "custom"
  7261. },
  7262. {
  7263. "url": "https://github.com/fabpot",
  7264. "type": "github"
  7265. },
  7266. {
  7267. "url": "https://github.com/nicolas-grekas",
  7268. "type": "github"
  7269. },
  7270. {
  7271. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7272. "type": "tidelift"
  7273. }
  7274. ],
  7275. "time": "2025-07-10T08:47:49+00:00"
  7276. },
  7277. {
  7278. "name": "symfony/http-kernel",
  7279. "version": "v7.3.2",
  7280. "source": {
  7281. "type": "git",
  7282. "url": "https://github.com/symfony/http-kernel.git",
  7283. "reference": "6ecc895559ec0097e221ed2fd5eb44d5fede083c"
  7284. },
  7285. "dist": {
  7286. "type": "zip",
  7287. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6ecc895559ec0097e221ed2fd5eb44d5fede083c",
  7288. "reference": "6ecc895559ec0097e221ed2fd5eb44d5fede083c",
  7289. "shasum": ""
  7290. },
  7291. "require": {
  7292. "php": ">=8.2",
  7293. "psr/log": "^1|^2|^3",
  7294. "symfony/deprecation-contracts": "^2.5|^3",
  7295. "symfony/error-handler": "^6.4|^7.0",
  7296. "symfony/event-dispatcher": "^7.3",
  7297. "symfony/http-foundation": "^7.3",
  7298. "symfony/polyfill-ctype": "^1.8"
  7299. },
  7300. "conflict": {
  7301. "symfony/browser-kit": "<6.4",
  7302. "symfony/cache": "<6.4",
  7303. "symfony/config": "<6.4",
  7304. "symfony/console": "<6.4",
  7305. "symfony/dependency-injection": "<6.4",
  7306. "symfony/doctrine-bridge": "<6.4",
  7307. "symfony/form": "<6.4",
  7308. "symfony/http-client": "<6.4",
  7309. "symfony/http-client-contracts": "<2.5",
  7310. "symfony/mailer": "<6.4",
  7311. "symfony/messenger": "<6.4",
  7312. "symfony/translation": "<6.4",
  7313. "symfony/translation-contracts": "<2.5",
  7314. "symfony/twig-bridge": "<6.4",
  7315. "symfony/validator": "<6.4",
  7316. "symfony/var-dumper": "<6.4",
  7317. "twig/twig": "<3.12"
  7318. },
  7319. "provide": {
  7320. "psr/log-implementation": "1.0|2.0|3.0"
  7321. },
  7322. "require-dev": {
  7323. "psr/cache": "^1.0|^2.0|^3.0",
  7324. "symfony/browser-kit": "^6.4|^7.0",
  7325. "symfony/clock": "^6.4|^7.0",
  7326. "symfony/config": "^6.4|^7.0",
  7327. "symfony/console": "^6.4|^7.0",
  7328. "symfony/css-selector": "^6.4|^7.0",
  7329. "symfony/dependency-injection": "^6.4|^7.0",
  7330. "symfony/dom-crawler": "^6.4|^7.0",
  7331. "symfony/expression-language": "^6.4|^7.0",
  7332. "symfony/finder": "^6.4|^7.0",
  7333. "symfony/http-client-contracts": "^2.5|^3",
  7334. "symfony/process": "^6.4|^7.0",
  7335. "symfony/property-access": "^7.1",
  7336. "symfony/routing": "^6.4|^7.0",
  7337. "symfony/serializer": "^7.1",
  7338. "symfony/stopwatch": "^6.4|^7.0",
  7339. "symfony/translation": "^6.4|^7.0",
  7340. "symfony/translation-contracts": "^2.5|^3",
  7341. "symfony/uid": "^6.4|^7.0",
  7342. "symfony/validator": "^6.4|^7.0",
  7343. "symfony/var-dumper": "^6.4|^7.0",
  7344. "symfony/var-exporter": "^6.4|^7.0",
  7345. "twig/twig": "^3.12"
  7346. },
  7347. "type": "library",
  7348. "autoload": {
  7349. "psr-4": {
  7350. "Symfony\\Component\\HttpKernel\\": ""
  7351. },
  7352. "exclude-from-classmap": [
  7353. "/Tests/"
  7354. ]
  7355. },
  7356. "notification-url": "https://packagist.org/downloads/",
  7357. "license": [
  7358. "MIT"
  7359. ],
  7360. "authors": [
  7361. {
  7362. "name": "Fabien Potencier",
  7363. "email": "[email protected]"
  7364. },
  7365. {
  7366. "name": "Symfony Community",
  7367. "homepage": "https://symfony.com/contributors"
  7368. }
  7369. ],
  7370. "description": "Provides a structured process for converting a Request into a Response",
  7371. "homepage": "https://symfony.com",
  7372. "support": {
  7373. "source": "https://github.com/symfony/http-kernel/tree/v7.3.2"
  7374. },
  7375. "funding": [
  7376. {
  7377. "url": "https://symfony.com/sponsor",
  7378. "type": "custom"
  7379. },
  7380. {
  7381. "url": "https://github.com/fabpot",
  7382. "type": "github"
  7383. },
  7384. {
  7385. "url": "https://github.com/nicolas-grekas",
  7386. "type": "github"
  7387. },
  7388. {
  7389. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7390. "type": "tidelift"
  7391. }
  7392. ],
  7393. "time": "2025-07-31T10:45:04+00:00"
  7394. },
  7395. {
  7396. "name": "symfony/options-resolver",
  7397. "version": "v7.3.2",
  7398. "source": {
  7399. "type": "git",
  7400. "url": "https://github.com/symfony/options-resolver.git",
  7401. "reference": "119bcf13e67dbd188e5dbc74228b1686f66acd37"
  7402. },
  7403. "dist": {
  7404. "type": "zip",
  7405. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/119bcf13e67dbd188e5dbc74228b1686f66acd37",
  7406. "reference": "119bcf13e67dbd188e5dbc74228b1686f66acd37",
  7407. "shasum": ""
  7408. },
  7409. "require": {
  7410. "php": ">=8.2",
  7411. "symfony/deprecation-contracts": "^2.5|^3"
  7412. },
  7413. "type": "library",
  7414. "autoload": {
  7415. "psr-4": {
  7416. "Symfony\\Component\\OptionsResolver\\": ""
  7417. },
  7418. "exclude-from-classmap": [
  7419. "/Tests/"
  7420. ]
  7421. },
  7422. "notification-url": "https://packagist.org/downloads/",
  7423. "license": [
  7424. "MIT"
  7425. ],
  7426. "authors": [
  7427. {
  7428. "name": "Fabien Potencier",
  7429. "email": "[email protected]"
  7430. },
  7431. {
  7432. "name": "Symfony Community",
  7433. "homepage": "https://symfony.com/contributors"
  7434. }
  7435. ],
  7436. "description": "Provides an improved replacement for the array_replace PHP function",
  7437. "homepage": "https://symfony.com",
  7438. "keywords": [
  7439. "config",
  7440. "configuration",
  7441. "options"
  7442. ],
  7443. "support": {
  7444. "source": "https://github.com/symfony/options-resolver/tree/v7.3.2"
  7445. },
  7446. "funding": [
  7447. {
  7448. "url": "https://symfony.com/sponsor",
  7449. "type": "custom"
  7450. },
  7451. {
  7452. "url": "https://github.com/fabpot",
  7453. "type": "github"
  7454. },
  7455. {
  7456. "url": "https://github.com/nicolas-grekas",
  7457. "type": "github"
  7458. },
  7459. {
  7460. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7461. "type": "tidelift"
  7462. }
  7463. ],
  7464. "time": "2025-07-15T11:36:08+00:00"
  7465. },
  7466. {
  7467. "name": "symfony/password-hasher",
  7468. "version": "v7.3.0",
  7469. "source": {
  7470. "type": "git",
  7471. "url": "https://github.com/symfony/password-hasher.git",
  7472. "reference": "31fbe66af859582a20b803f38be96be8accdf2c3"
  7473. },
  7474. "dist": {
  7475. "type": "zip",
  7476. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/31fbe66af859582a20b803f38be96be8accdf2c3",
  7477. "reference": "31fbe66af859582a20b803f38be96be8accdf2c3",
  7478. "shasum": ""
  7479. },
  7480. "require": {
  7481. "php": ">=8.2"
  7482. },
  7483. "conflict": {
  7484. "symfony/security-core": "<6.4"
  7485. },
  7486. "require-dev": {
  7487. "symfony/console": "^6.4|^7.0",
  7488. "symfony/security-core": "^6.4|^7.0"
  7489. },
  7490. "type": "library",
  7491. "autoload": {
  7492. "psr-4": {
  7493. "Symfony\\Component\\PasswordHasher\\": ""
  7494. },
  7495. "exclude-from-classmap": [
  7496. "/Tests/"
  7497. ]
  7498. },
  7499. "notification-url": "https://packagist.org/downloads/",
  7500. "license": [
  7501. "MIT"
  7502. ],
  7503. "authors": [
  7504. {
  7505. "name": "Robin Chalas",
  7506. "email": "[email protected]"
  7507. },
  7508. {
  7509. "name": "Symfony Community",
  7510. "homepage": "https://symfony.com/contributors"
  7511. }
  7512. ],
  7513. "description": "Provides password hashing utilities",
  7514. "homepage": "https://symfony.com",
  7515. "keywords": [
  7516. "hashing",
  7517. "password"
  7518. ],
  7519. "support": {
  7520. "source": "https://github.com/symfony/password-hasher/tree/v7.3.0"
  7521. },
  7522. "funding": [
  7523. {
  7524. "url": "https://symfony.com/sponsor",
  7525. "type": "custom"
  7526. },
  7527. {
  7528. "url": "https://github.com/fabpot",
  7529. "type": "github"
  7530. },
  7531. {
  7532. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7533. "type": "tidelift"
  7534. }
  7535. ],
  7536. "time": "2025-02-04T08:22:58+00:00"
  7537. },
  7538. {
  7539. "name": "symfony/polyfill-ctype",
  7540. "version": "v1.32.0",
  7541. "source": {
  7542. "type": "git",
  7543. "url": "https://github.com/symfony/polyfill-ctype.git",
  7544. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  7545. },
  7546. "dist": {
  7547. "type": "zip",
  7548. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  7549. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  7550. "shasum": ""
  7551. },
  7552. "require": {
  7553. "php": ">=7.2"
  7554. },
  7555. "provide": {
  7556. "ext-ctype": "*"
  7557. },
  7558. "suggest": {
  7559. "ext-ctype": "For best performance"
  7560. },
  7561. "type": "library",
  7562. "extra": {
  7563. "thanks": {
  7564. "url": "https://github.com/symfony/polyfill",
  7565. "name": "symfony/polyfill"
  7566. }
  7567. },
  7568. "autoload": {
  7569. "files": [
  7570. "bootstrap.php"
  7571. ],
  7572. "psr-4": {
  7573. "Symfony\\Polyfill\\Ctype\\": ""
  7574. }
  7575. },
  7576. "notification-url": "https://packagist.org/downloads/",
  7577. "license": [
  7578. "MIT"
  7579. ],
  7580. "authors": [
  7581. {
  7582. "name": "Gert de Pagter",
  7583. "email": "[email protected]"
  7584. },
  7585. {
  7586. "name": "Symfony Community",
  7587. "homepage": "https://symfony.com/contributors"
  7588. }
  7589. ],
  7590. "description": "Symfony polyfill for ctype functions",
  7591. "homepage": "https://symfony.com",
  7592. "keywords": [
  7593. "compatibility",
  7594. "ctype",
  7595. "polyfill",
  7596. "portable"
  7597. ],
  7598. "support": {
  7599. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.32.0"
  7600. },
  7601. "funding": [
  7602. {
  7603. "url": "https://symfony.com/sponsor",
  7604. "type": "custom"
  7605. },
  7606. {
  7607. "url": "https://github.com/fabpot",
  7608. "type": "github"
  7609. },
  7610. {
  7611. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7612. "type": "tidelift"
  7613. }
  7614. ],
  7615. "time": "2024-09-09T11:45:10+00:00"
  7616. },
  7617. {
  7618. "name": "symfony/polyfill-iconv",
  7619. "version": "v1.32.0",
  7620. "source": {
  7621. "type": "git",
  7622. "url": "https://github.com/symfony/polyfill-iconv.git",
  7623. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa"
  7624. },
  7625. "dist": {
  7626. "type": "zip",
  7627. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  7628. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  7629. "shasum": ""
  7630. },
  7631. "require": {
  7632. "php": ">=7.2"
  7633. },
  7634. "provide": {
  7635. "ext-iconv": "*"
  7636. },
  7637. "suggest": {
  7638. "ext-iconv": "For best performance"
  7639. },
  7640. "type": "library",
  7641. "extra": {
  7642. "thanks": {
  7643. "url": "https://github.com/symfony/polyfill",
  7644. "name": "symfony/polyfill"
  7645. }
  7646. },
  7647. "autoload": {
  7648. "files": [
  7649. "bootstrap.php"
  7650. ],
  7651. "psr-4": {
  7652. "Symfony\\Polyfill\\Iconv\\": ""
  7653. }
  7654. },
  7655. "notification-url": "https://packagist.org/downloads/",
  7656. "license": [
  7657. "MIT"
  7658. ],
  7659. "authors": [
  7660. {
  7661. "name": "Nicolas Grekas",
  7662. "email": "[email protected]"
  7663. },
  7664. {
  7665. "name": "Symfony Community",
  7666. "homepage": "https://symfony.com/contributors"
  7667. }
  7668. ],
  7669. "description": "Symfony polyfill for the Iconv extension",
  7670. "homepage": "https://symfony.com",
  7671. "keywords": [
  7672. "compatibility",
  7673. "iconv",
  7674. "polyfill",
  7675. "portable",
  7676. "shim"
  7677. ],
  7678. "support": {
  7679. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.32.0"
  7680. },
  7681. "funding": [
  7682. {
  7683. "url": "https://symfony.com/sponsor",
  7684. "type": "custom"
  7685. },
  7686. {
  7687. "url": "https://github.com/fabpot",
  7688. "type": "github"
  7689. },
  7690. {
  7691. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7692. "type": "tidelift"
  7693. }
  7694. ],
  7695. "time": "2024-09-17T14:58:18+00:00"
  7696. },
  7697. {
  7698. "name": "symfony/polyfill-intl-grapheme",
  7699. "version": "v1.32.0",
  7700. "source": {
  7701. "type": "git",
  7702. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7703. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  7704. },
  7705. "dist": {
  7706. "type": "zip",
  7707. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7708. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7709. "shasum": ""
  7710. },
  7711. "require": {
  7712. "php": ">=7.2"
  7713. },
  7714. "suggest": {
  7715. "ext-intl": "For best performance"
  7716. },
  7717. "type": "library",
  7718. "extra": {
  7719. "thanks": {
  7720. "url": "https://github.com/symfony/polyfill",
  7721. "name": "symfony/polyfill"
  7722. }
  7723. },
  7724. "autoload": {
  7725. "files": [
  7726. "bootstrap.php"
  7727. ],
  7728. "psr-4": {
  7729. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7730. }
  7731. },
  7732. "notification-url": "https://packagist.org/downloads/",
  7733. "license": [
  7734. "MIT"
  7735. ],
  7736. "authors": [
  7737. {
  7738. "name": "Nicolas Grekas",
  7739. "email": "[email protected]"
  7740. },
  7741. {
  7742. "name": "Symfony Community",
  7743. "homepage": "https://symfony.com/contributors"
  7744. }
  7745. ],
  7746. "description": "Symfony polyfill for intl's grapheme_* functions",
  7747. "homepage": "https://symfony.com",
  7748. "keywords": [
  7749. "compatibility",
  7750. "grapheme",
  7751. "intl",
  7752. "polyfill",
  7753. "portable",
  7754. "shim"
  7755. ],
  7756. "support": {
  7757. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.32.0"
  7758. },
  7759. "funding": [
  7760. {
  7761. "url": "https://symfony.com/sponsor",
  7762. "type": "custom"
  7763. },
  7764. {
  7765. "url": "https://github.com/fabpot",
  7766. "type": "github"
  7767. },
  7768. {
  7769. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7770. "type": "tidelift"
  7771. }
  7772. ],
  7773. "time": "2024-09-09T11:45:10+00:00"
  7774. },
  7775. {
  7776. "name": "symfony/polyfill-intl-normalizer",
  7777. "version": "v1.32.0",
  7778. "source": {
  7779. "type": "git",
  7780. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7781. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  7782. },
  7783. "dist": {
  7784. "type": "zip",
  7785. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  7786. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  7787. "shasum": ""
  7788. },
  7789. "require": {
  7790. "php": ">=7.2"
  7791. },
  7792. "suggest": {
  7793. "ext-intl": "For best performance"
  7794. },
  7795. "type": "library",
  7796. "extra": {
  7797. "thanks": {
  7798. "url": "https://github.com/symfony/polyfill",
  7799. "name": "symfony/polyfill"
  7800. }
  7801. },
  7802. "autoload": {
  7803. "files": [
  7804. "bootstrap.php"
  7805. ],
  7806. "psr-4": {
  7807. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7808. },
  7809. "classmap": [
  7810. "Resources/stubs"
  7811. ]
  7812. },
  7813. "notification-url": "https://packagist.org/downloads/",
  7814. "license": [
  7815. "MIT"
  7816. ],
  7817. "authors": [
  7818. {
  7819. "name": "Nicolas Grekas",
  7820. "email": "[email protected]"
  7821. },
  7822. {
  7823. "name": "Symfony Community",
  7824. "homepage": "https://symfony.com/contributors"
  7825. }
  7826. ],
  7827. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7828. "homepage": "https://symfony.com",
  7829. "keywords": [
  7830. "compatibility",
  7831. "intl",
  7832. "normalizer",
  7833. "polyfill",
  7834. "portable",
  7835. "shim"
  7836. ],
  7837. "support": {
  7838. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.32.0"
  7839. },
  7840. "funding": [
  7841. {
  7842. "url": "https://symfony.com/sponsor",
  7843. "type": "custom"
  7844. },
  7845. {
  7846. "url": "https://github.com/fabpot",
  7847. "type": "github"
  7848. },
  7849. {
  7850. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7851. "type": "tidelift"
  7852. }
  7853. ],
  7854. "time": "2024-09-09T11:45:10+00:00"
  7855. },
  7856. {
  7857. "name": "symfony/polyfill-mbstring",
  7858. "version": "v1.32.0",
  7859. "source": {
  7860. "type": "git",
  7861. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7862. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  7863. },
  7864. "dist": {
  7865. "type": "zip",
  7866. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  7867. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  7868. "shasum": ""
  7869. },
  7870. "require": {
  7871. "ext-iconv": "*",
  7872. "php": ">=7.2"
  7873. },
  7874. "provide": {
  7875. "ext-mbstring": "*"
  7876. },
  7877. "suggest": {
  7878. "ext-mbstring": "For best performance"
  7879. },
  7880. "type": "library",
  7881. "extra": {
  7882. "thanks": {
  7883. "url": "https://github.com/symfony/polyfill",
  7884. "name": "symfony/polyfill"
  7885. }
  7886. },
  7887. "autoload": {
  7888. "files": [
  7889. "bootstrap.php"
  7890. ],
  7891. "psr-4": {
  7892. "Symfony\\Polyfill\\Mbstring\\": ""
  7893. }
  7894. },
  7895. "notification-url": "https://packagist.org/downloads/",
  7896. "license": [
  7897. "MIT"
  7898. ],
  7899. "authors": [
  7900. {
  7901. "name": "Nicolas Grekas",
  7902. "email": "[email protected]"
  7903. },
  7904. {
  7905. "name": "Symfony Community",
  7906. "homepage": "https://symfony.com/contributors"
  7907. }
  7908. ],
  7909. "description": "Symfony polyfill for the Mbstring extension",
  7910. "homepage": "https://symfony.com",
  7911. "keywords": [
  7912. "compatibility",
  7913. "mbstring",
  7914. "polyfill",
  7915. "portable",
  7916. "shim"
  7917. ],
  7918. "support": {
  7919. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0"
  7920. },
  7921. "funding": [
  7922. {
  7923. "url": "https://symfony.com/sponsor",
  7924. "type": "custom"
  7925. },
  7926. {
  7927. "url": "https://github.com/fabpot",
  7928. "type": "github"
  7929. },
  7930. {
  7931. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7932. "type": "tidelift"
  7933. }
  7934. ],
  7935. "time": "2024-12-23T08:48:59+00:00"
  7936. },
  7937. {
  7938. "name": "symfony/polyfill-php72",
  7939. "version": "v1.31.0",
  7940. "source": {
  7941. "type": "git",
  7942. "url": "https://github.com/symfony/polyfill-php72.git",
  7943. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce"
  7944. },
  7945. "dist": {
  7946. "type": "zip",
  7947. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  7948. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  7949. "shasum": ""
  7950. },
  7951. "require": {
  7952. "php": ">=7.2"
  7953. },
  7954. "type": "metapackage",
  7955. "extra": {
  7956. "thanks": {
  7957. "url": "https://github.com/symfony/polyfill",
  7958. "name": "symfony/polyfill"
  7959. }
  7960. },
  7961. "notification-url": "https://packagist.org/downloads/",
  7962. "license": [
  7963. "MIT"
  7964. ],
  7965. "authors": [
  7966. {
  7967. "name": "Nicolas Grekas",
  7968. "email": "[email protected]"
  7969. },
  7970. {
  7971. "name": "Symfony Community",
  7972. "homepage": "https://symfony.com/contributors"
  7973. }
  7974. ],
  7975. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  7976. "homepage": "https://symfony.com",
  7977. "keywords": [
  7978. "compatibility",
  7979. "polyfill",
  7980. "portable",
  7981. "shim"
  7982. ],
  7983. "support": {
  7984. "source": "https://github.com/symfony/polyfill-php72/tree/v1.31.0"
  7985. },
  7986. "funding": [
  7987. {
  7988. "url": "https://symfony.com/sponsor",
  7989. "type": "custom"
  7990. },
  7991. {
  7992. "url": "https://github.com/fabpot",
  7993. "type": "github"
  7994. },
  7995. {
  7996. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7997. "type": "tidelift"
  7998. }
  7999. ],
  8000. "time": "2024-09-09T11:45:10+00:00"
  8001. },
  8002. {
  8003. "name": "symfony/polyfill-php80",
  8004. "version": "v1.32.0",
  8005. "source": {
  8006. "type": "git",
  8007. "url": "https://github.com/symfony/polyfill-php80.git",
  8008. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  8009. },
  8010. "dist": {
  8011. "type": "zip",
  8012. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  8013. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  8014. "shasum": ""
  8015. },
  8016. "require": {
  8017. "php": ">=7.2"
  8018. },
  8019. "type": "library",
  8020. "extra": {
  8021. "thanks": {
  8022. "url": "https://github.com/symfony/polyfill",
  8023. "name": "symfony/polyfill"
  8024. }
  8025. },
  8026. "autoload": {
  8027. "files": [
  8028. "bootstrap.php"
  8029. ],
  8030. "psr-4": {
  8031. "Symfony\\Polyfill\\Php80\\": ""
  8032. },
  8033. "classmap": [
  8034. "Resources/stubs"
  8035. ]
  8036. },
  8037. "notification-url": "https://packagist.org/downloads/",
  8038. "license": [
  8039. "MIT"
  8040. ],
  8041. "authors": [
  8042. {
  8043. "name": "Ion Bazan",
  8044. "email": "[email protected]"
  8045. },
  8046. {
  8047. "name": "Nicolas Grekas",
  8048. "email": "[email protected]"
  8049. },
  8050. {
  8051. "name": "Symfony Community",
  8052. "homepage": "https://symfony.com/contributors"
  8053. }
  8054. ],
  8055. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8056. "homepage": "https://symfony.com",
  8057. "keywords": [
  8058. "compatibility",
  8059. "polyfill",
  8060. "portable",
  8061. "shim"
  8062. ],
  8063. "support": {
  8064. "source": "https://github.com/symfony/polyfill-php80/tree/v1.32.0"
  8065. },
  8066. "funding": [
  8067. {
  8068. "url": "https://symfony.com/sponsor",
  8069. "type": "custom"
  8070. },
  8071. {
  8072. "url": "https://github.com/fabpot",
  8073. "type": "github"
  8074. },
  8075. {
  8076. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8077. "type": "tidelift"
  8078. }
  8079. ],
  8080. "time": "2025-01-02T08:10:11+00:00"
  8081. },
  8082. {
  8083. "name": "symfony/polyfill-php83",
  8084. "version": "v1.32.0",
  8085. "source": {
  8086. "type": "git",
  8087. "url": "https://github.com/symfony/polyfill-php83.git",
  8088. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  8089. },
  8090. "dist": {
  8091. "type": "zip",
  8092. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  8093. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  8094. "shasum": ""
  8095. },
  8096. "require": {
  8097. "php": ">=7.2"
  8098. },
  8099. "type": "library",
  8100. "extra": {
  8101. "thanks": {
  8102. "url": "https://github.com/symfony/polyfill",
  8103. "name": "symfony/polyfill"
  8104. }
  8105. },
  8106. "autoload": {
  8107. "files": [
  8108. "bootstrap.php"
  8109. ],
  8110. "psr-4": {
  8111. "Symfony\\Polyfill\\Php83\\": ""
  8112. },
  8113. "classmap": [
  8114. "Resources/stubs"
  8115. ]
  8116. },
  8117. "notification-url": "https://packagist.org/downloads/",
  8118. "license": [
  8119. "MIT"
  8120. ],
  8121. "authors": [
  8122. {
  8123. "name": "Nicolas Grekas",
  8124. "email": "[email protected]"
  8125. },
  8126. {
  8127. "name": "Symfony Community",
  8128. "homepage": "https://symfony.com/contributors"
  8129. }
  8130. ],
  8131. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  8132. "homepage": "https://symfony.com",
  8133. "keywords": [
  8134. "compatibility",
  8135. "polyfill",
  8136. "portable",
  8137. "shim"
  8138. ],
  8139. "support": {
  8140. "source": "https://github.com/symfony/polyfill-php83/tree/v1.32.0"
  8141. },
  8142. "funding": [
  8143. {
  8144. "url": "https://symfony.com/sponsor",
  8145. "type": "custom"
  8146. },
  8147. {
  8148. "url": "https://github.com/fabpot",
  8149. "type": "github"
  8150. },
  8151. {
  8152. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8153. "type": "tidelift"
  8154. }
  8155. ],
  8156. "time": "2024-09-09T11:45:10+00:00"
  8157. },
  8158. {
  8159. "name": "symfony/polyfill-uuid",
  8160. "version": "v1.32.0",
  8161. "source": {
  8162. "type": "git",
  8163. "url": "https://github.com/symfony/polyfill-uuid.git",
  8164. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  8165. },
  8166. "dist": {
  8167. "type": "zip",
  8168. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  8169. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  8170. "shasum": ""
  8171. },
  8172. "require": {
  8173. "php": ">=7.2"
  8174. },
  8175. "provide": {
  8176. "ext-uuid": "*"
  8177. },
  8178. "suggest": {
  8179. "ext-uuid": "For best performance"
  8180. },
  8181. "type": "library",
  8182. "extra": {
  8183. "thanks": {
  8184. "url": "https://github.com/symfony/polyfill",
  8185. "name": "symfony/polyfill"
  8186. }
  8187. },
  8188. "autoload": {
  8189. "files": [
  8190. "bootstrap.php"
  8191. ],
  8192. "psr-4": {
  8193. "Symfony\\Polyfill\\Uuid\\": ""
  8194. }
  8195. },
  8196. "notification-url": "https://packagist.org/downloads/",
  8197. "license": [
  8198. "MIT"
  8199. ],
  8200. "authors": [
  8201. {
  8202. "name": "Grégoire Pineau",
  8203. "email": "[email protected]"
  8204. },
  8205. {
  8206. "name": "Symfony Community",
  8207. "homepage": "https://symfony.com/contributors"
  8208. }
  8209. ],
  8210. "description": "Symfony polyfill for uuid functions",
  8211. "homepage": "https://symfony.com",
  8212. "keywords": [
  8213. "compatibility",
  8214. "polyfill",
  8215. "portable",
  8216. "uuid"
  8217. ],
  8218. "support": {
  8219. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.32.0"
  8220. },
  8221. "funding": [
  8222. {
  8223. "url": "https://symfony.com/sponsor",
  8224. "type": "custom"
  8225. },
  8226. {
  8227. "url": "https://github.com/fabpot",
  8228. "type": "github"
  8229. },
  8230. {
  8231. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8232. "type": "tidelift"
  8233. }
  8234. ],
  8235. "time": "2024-09-09T11:45:10+00:00"
  8236. },
  8237. {
  8238. "name": "symfony/property-access",
  8239. "version": "v7.3.2",
  8240. "source": {
  8241. "type": "git",
  8242. "url": "https://github.com/symfony/property-access.git",
  8243. "reference": "317916e49b2577a1908f321796f2b67984e61eab"
  8244. },
  8245. "dist": {
  8246. "type": "zip",
  8247. "url": "https://api.github.com/repos/symfony/property-access/zipball/317916e49b2577a1908f321796f2b67984e61eab",
  8248. "reference": "317916e49b2577a1908f321796f2b67984e61eab",
  8249. "shasum": ""
  8250. },
  8251. "require": {
  8252. "php": ">=8.2",
  8253. "symfony/property-info": "^6.4|^7.0"
  8254. },
  8255. "require-dev": {
  8256. "symfony/cache": "^6.4|^7.0"
  8257. },
  8258. "type": "library",
  8259. "autoload": {
  8260. "psr-4": {
  8261. "Symfony\\Component\\PropertyAccess\\": ""
  8262. },
  8263. "exclude-from-classmap": [
  8264. "/Tests/"
  8265. ]
  8266. },
  8267. "notification-url": "https://packagist.org/downloads/",
  8268. "license": [
  8269. "MIT"
  8270. ],
  8271. "authors": [
  8272. {
  8273. "name": "Fabien Potencier",
  8274. "email": "[email protected]"
  8275. },
  8276. {
  8277. "name": "Symfony Community",
  8278. "homepage": "https://symfony.com/contributors"
  8279. }
  8280. ],
  8281. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  8282. "homepage": "https://symfony.com",
  8283. "keywords": [
  8284. "access",
  8285. "array",
  8286. "extraction",
  8287. "index",
  8288. "injection",
  8289. "object",
  8290. "property",
  8291. "property-path",
  8292. "reflection"
  8293. ],
  8294. "support": {
  8295. "source": "https://github.com/symfony/property-access/tree/v7.3.2"
  8296. },
  8297. "funding": [
  8298. {
  8299. "url": "https://symfony.com/sponsor",
  8300. "type": "custom"
  8301. },
  8302. {
  8303. "url": "https://github.com/fabpot",
  8304. "type": "github"
  8305. },
  8306. {
  8307. "url": "https://github.com/nicolas-grekas",
  8308. "type": "github"
  8309. },
  8310. {
  8311. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8312. "type": "tidelift"
  8313. }
  8314. ],
  8315. "time": "2025-07-15T17:58:03+00:00"
  8316. },
  8317. {
  8318. "name": "symfony/property-info",
  8319. "version": "v7.3.1",
  8320. "source": {
  8321. "type": "git",
  8322. "url": "https://github.com/symfony/property-info.git",
  8323. "reference": "90586acbf2a6dd13bee4f09f09111c8bd4773970"
  8324. },
  8325. "dist": {
  8326. "type": "zip",
  8327. "url": "https://api.github.com/repos/symfony/property-info/zipball/90586acbf2a6dd13bee4f09f09111c8bd4773970",
  8328. "reference": "90586acbf2a6dd13bee4f09f09111c8bd4773970",
  8329. "shasum": ""
  8330. },
  8331. "require": {
  8332. "php": ">=8.2",
  8333. "symfony/deprecation-contracts": "^2.5|^3",
  8334. "symfony/string": "^6.4|^7.0",
  8335. "symfony/type-info": "~7.2.8|^7.3.1"
  8336. },
  8337. "conflict": {
  8338. "phpdocumentor/reflection-docblock": "<5.2",
  8339. "phpdocumentor/type-resolver": "<1.5.1",
  8340. "symfony/cache": "<6.4",
  8341. "symfony/dependency-injection": "<6.4",
  8342. "symfony/serializer": "<6.4"
  8343. },
  8344. "require-dev": {
  8345. "phpdocumentor/reflection-docblock": "^5.2",
  8346. "phpstan/phpdoc-parser": "^1.0|^2.0",
  8347. "symfony/cache": "^6.4|^7.0",
  8348. "symfony/dependency-injection": "^6.4|^7.0",
  8349. "symfony/serializer": "^6.4|^7.0"
  8350. },
  8351. "type": "library",
  8352. "autoload": {
  8353. "psr-4": {
  8354. "Symfony\\Component\\PropertyInfo\\": ""
  8355. },
  8356. "exclude-from-classmap": [
  8357. "/Tests/"
  8358. ]
  8359. },
  8360. "notification-url": "https://packagist.org/downloads/",
  8361. "license": [
  8362. "MIT"
  8363. ],
  8364. "authors": [
  8365. {
  8366. "name": "Kévin Dunglas",
  8367. "email": "[email protected]"
  8368. },
  8369. {
  8370. "name": "Symfony Community",
  8371. "homepage": "https://symfony.com/contributors"
  8372. }
  8373. ],
  8374. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  8375. "homepage": "https://symfony.com",
  8376. "keywords": [
  8377. "doctrine",
  8378. "phpdoc",
  8379. "property",
  8380. "symfony",
  8381. "type",
  8382. "validator"
  8383. ],
  8384. "support": {
  8385. "source": "https://github.com/symfony/property-info/tree/v7.3.1"
  8386. },
  8387. "funding": [
  8388. {
  8389. "url": "https://symfony.com/sponsor",
  8390. "type": "custom"
  8391. },
  8392. {
  8393. "url": "https://github.com/fabpot",
  8394. "type": "github"
  8395. },
  8396. {
  8397. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8398. "type": "tidelift"
  8399. }
  8400. ],
  8401. "time": "2025-06-27T19:55:54+00:00"
  8402. },
  8403. {
  8404. "name": "symfony/routing",
  8405. "version": "v7.3.2",
  8406. "source": {
  8407. "type": "git",
  8408. "url": "https://github.com/symfony/routing.git",
  8409. "reference": "7614b8ca5fa89b9cd233e21b627bfc5774f586e4"
  8410. },
  8411. "dist": {
  8412. "type": "zip",
  8413. "url": "https://api.github.com/repos/symfony/routing/zipball/7614b8ca5fa89b9cd233e21b627bfc5774f586e4",
  8414. "reference": "7614b8ca5fa89b9cd233e21b627bfc5774f586e4",
  8415. "shasum": ""
  8416. },
  8417. "require": {
  8418. "php": ">=8.2",
  8419. "symfony/deprecation-contracts": "^2.5|^3"
  8420. },
  8421. "conflict": {
  8422. "symfony/config": "<6.4",
  8423. "symfony/dependency-injection": "<6.4",
  8424. "symfony/yaml": "<6.4"
  8425. },
  8426. "require-dev": {
  8427. "psr/log": "^1|^2|^3",
  8428. "symfony/config": "^6.4|^7.0",
  8429. "symfony/dependency-injection": "^6.4|^7.0",
  8430. "symfony/expression-language": "^6.4|^7.0",
  8431. "symfony/http-foundation": "^6.4|^7.0",
  8432. "symfony/yaml": "^6.4|^7.0"
  8433. },
  8434. "type": "library",
  8435. "autoload": {
  8436. "psr-4": {
  8437. "Symfony\\Component\\Routing\\": ""
  8438. },
  8439. "exclude-from-classmap": [
  8440. "/Tests/"
  8441. ]
  8442. },
  8443. "notification-url": "https://packagist.org/downloads/",
  8444. "license": [
  8445. "MIT"
  8446. ],
  8447. "authors": [
  8448. {
  8449. "name": "Fabien Potencier",
  8450. "email": "[email protected]"
  8451. },
  8452. {
  8453. "name": "Symfony Community",
  8454. "homepage": "https://symfony.com/contributors"
  8455. }
  8456. ],
  8457. "description": "Maps an HTTP request to a set of configuration variables",
  8458. "homepage": "https://symfony.com",
  8459. "keywords": [
  8460. "router",
  8461. "routing",
  8462. "uri",
  8463. "url"
  8464. ],
  8465. "support": {
  8466. "source": "https://github.com/symfony/routing/tree/v7.3.2"
  8467. },
  8468. "funding": [
  8469. {
  8470. "url": "https://symfony.com/sponsor",
  8471. "type": "custom"
  8472. },
  8473. {
  8474. "url": "https://github.com/fabpot",
  8475. "type": "github"
  8476. },
  8477. {
  8478. "url": "https://github.com/nicolas-grekas",
  8479. "type": "github"
  8480. },
  8481. {
  8482. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8483. "type": "tidelift"
  8484. }
  8485. ],
  8486. "time": "2025-07-15T11:36:08+00:00"
  8487. },
  8488. {
  8489. "name": "symfony/security-bundle",
  8490. "version": "v7.3.2",
  8491. "source": {
  8492. "type": "git",
  8493. "url": "https://github.com/symfony/security-bundle.git",
  8494. "reference": "d8278a973b305c0b79b162f265d8ce1e96703236"
  8495. },
  8496. "dist": {
  8497. "type": "zip",
  8498. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/d8278a973b305c0b79b162f265d8ce1e96703236",
  8499. "reference": "d8278a973b305c0b79b162f265d8ce1e96703236",
  8500. "shasum": ""
  8501. },
  8502. "require": {
  8503. "composer-runtime-api": ">=2.1",
  8504. "ext-xml": "*",
  8505. "php": ">=8.2",
  8506. "symfony/clock": "^6.4|^7.0",
  8507. "symfony/config": "^7.3",
  8508. "symfony/dependency-injection": "^6.4.11|^7.1.4",
  8509. "symfony/event-dispatcher": "^6.4|^7.0",
  8510. "symfony/http-foundation": "^6.4|^7.0",
  8511. "symfony/http-kernel": "^6.4|^7.0",
  8512. "symfony/password-hasher": "^6.4|^7.0",
  8513. "symfony/security-core": "^7.3",
  8514. "symfony/security-csrf": "^6.4|^7.0",
  8515. "symfony/security-http": "^7.3",
  8516. "symfony/service-contracts": "^2.5|^3"
  8517. },
  8518. "conflict": {
  8519. "symfony/browser-kit": "<6.4",
  8520. "symfony/console": "<6.4",
  8521. "symfony/framework-bundle": "<6.4",
  8522. "symfony/http-client": "<6.4",
  8523. "symfony/ldap": "<6.4",
  8524. "symfony/serializer": "<6.4",
  8525. "symfony/twig-bundle": "<6.4",
  8526. "symfony/validator": "<6.4"
  8527. },
  8528. "require-dev": {
  8529. "symfony/asset": "^6.4|^7.0",
  8530. "symfony/browser-kit": "^6.4|^7.0",
  8531. "symfony/console": "^6.4|^7.0",
  8532. "symfony/css-selector": "^6.4|^7.0",
  8533. "symfony/dom-crawler": "^6.4|^7.0",
  8534. "symfony/expression-language": "^6.4|^7.0",
  8535. "symfony/form": "^6.4|^7.0",
  8536. "symfony/framework-bundle": "^6.4|^7.0",
  8537. "symfony/http-client": "^6.4|^7.0",
  8538. "symfony/ldap": "^6.4|^7.0",
  8539. "symfony/process": "^6.4|^7.0",
  8540. "symfony/rate-limiter": "^6.4|^7.0",
  8541. "symfony/serializer": "^6.4|^7.0",
  8542. "symfony/translation": "^6.4|^7.0",
  8543. "symfony/twig-bridge": "^6.4|^7.0",
  8544. "symfony/twig-bundle": "^6.4|^7.0",
  8545. "symfony/validator": "^6.4|^7.0",
  8546. "symfony/yaml": "^6.4|^7.0",
  8547. "twig/twig": "^3.12",
  8548. "web-token/jwt-library": "^3.3.2|^4.0"
  8549. },
  8550. "type": "symfony-bundle",
  8551. "autoload": {
  8552. "psr-4": {
  8553. "Symfony\\Bundle\\SecurityBundle\\": ""
  8554. },
  8555. "exclude-from-classmap": [
  8556. "/Tests/"
  8557. ]
  8558. },
  8559. "notification-url": "https://packagist.org/downloads/",
  8560. "license": [
  8561. "MIT"
  8562. ],
  8563. "authors": [
  8564. {
  8565. "name": "Fabien Potencier",
  8566. "email": "[email protected]"
  8567. },
  8568. {
  8569. "name": "Symfony Community",
  8570. "homepage": "https://symfony.com/contributors"
  8571. }
  8572. ],
  8573. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  8574. "homepage": "https://symfony.com",
  8575. "support": {
  8576. "source": "https://github.com/symfony/security-bundle/tree/v7.3.2"
  8577. },
  8578. "funding": [
  8579. {
  8580. "url": "https://symfony.com/sponsor",
  8581. "type": "custom"
  8582. },
  8583. {
  8584. "url": "https://github.com/fabpot",
  8585. "type": "github"
  8586. },
  8587. {
  8588. "url": "https://github.com/nicolas-grekas",
  8589. "type": "github"
  8590. },
  8591. {
  8592. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8593. "type": "tidelift"
  8594. }
  8595. ],
  8596. "time": "2025-07-22T08:15:39+00:00"
  8597. },
  8598. {
  8599. "name": "symfony/security-core",
  8600. "version": "v7.3.2",
  8601. "source": {
  8602. "type": "git",
  8603. "url": "https://github.com/symfony/security-core.git",
  8604. "reference": "d8e1bb0de26266e2e4525beda0aed7f774e9c80d"
  8605. },
  8606. "dist": {
  8607. "type": "zip",
  8608. "url": "https://api.github.com/repos/symfony/security-core/zipball/d8e1bb0de26266e2e4525beda0aed7f774e9c80d",
  8609. "reference": "d8e1bb0de26266e2e4525beda0aed7f774e9c80d",
  8610. "shasum": ""
  8611. },
  8612. "require": {
  8613. "php": ">=8.2",
  8614. "symfony/deprecation-contracts": "^2.5|^3",
  8615. "symfony/event-dispatcher-contracts": "^2.5|^3",
  8616. "symfony/password-hasher": "^6.4|^7.0",
  8617. "symfony/service-contracts": "^2.5|^3"
  8618. },
  8619. "conflict": {
  8620. "symfony/dependency-injection": "<6.4",
  8621. "symfony/event-dispatcher": "<6.4",
  8622. "symfony/http-foundation": "<6.4",
  8623. "symfony/ldap": "<6.4",
  8624. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  8625. "symfony/validator": "<6.4"
  8626. },
  8627. "require-dev": {
  8628. "psr/cache": "^1.0|^2.0|^3.0",
  8629. "psr/container": "^1.1|^2.0",
  8630. "psr/log": "^1|^2|^3",
  8631. "symfony/cache": "^6.4|^7.0",
  8632. "symfony/dependency-injection": "^6.4|^7.0",
  8633. "symfony/event-dispatcher": "^6.4|^7.0",
  8634. "symfony/expression-language": "^6.4|^7.0",
  8635. "symfony/http-foundation": "^6.4|^7.0",
  8636. "symfony/ldap": "^6.4|^7.0",
  8637. "symfony/string": "^6.4|^7.0",
  8638. "symfony/translation": "^6.4.3|^7.0.3",
  8639. "symfony/validator": "^6.4|^7.0"
  8640. },
  8641. "type": "library",
  8642. "autoload": {
  8643. "psr-4": {
  8644. "Symfony\\Component\\Security\\Core\\": ""
  8645. },
  8646. "exclude-from-classmap": [
  8647. "/Tests/"
  8648. ]
  8649. },
  8650. "notification-url": "https://packagist.org/downloads/",
  8651. "license": [
  8652. "MIT"
  8653. ],
  8654. "authors": [
  8655. {
  8656. "name": "Fabien Potencier",
  8657. "email": "[email protected]"
  8658. },
  8659. {
  8660. "name": "Symfony Community",
  8661. "homepage": "https://symfony.com/contributors"
  8662. }
  8663. ],
  8664. "description": "Symfony Security Component - Core Library",
  8665. "homepage": "https://symfony.com",
  8666. "support": {
  8667. "source": "https://github.com/symfony/security-core/tree/v7.3.2"
  8668. },
  8669. "funding": [
  8670. {
  8671. "url": "https://symfony.com/sponsor",
  8672. "type": "custom"
  8673. },
  8674. {
  8675. "url": "https://github.com/fabpot",
  8676. "type": "github"
  8677. },
  8678. {
  8679. "url": "https://github.com/nicolas-grekas",
  8680. "type": "github"
  8681. },
  8682. {
  8683. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8684. "type": "tidelift"
  8685. }
  8686. ],
  8687. "time": "2025-07-23T09:11:24+00:00"
  8688. },
  8689. {
  8690. "name": "symfony/security-csrf",
  8691. "version": "v7.3.0",
  8692. "source": {
  8693. "type": "git",
  8694. "url": "https://github.com/symfony/security-csrf.git",
  8695. "reference": "2b4b0c46c901729e4e90719eacd980381f53e0a3"
  8696. },
  8697. "dist": {
  8698. "type": "zip",
  8699. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/2b4b0c46c901729e4e90719eacd980381f53e0a3",
  8700. "reference": "2b4b0c46c901729e4e90719eacd980381f53e0a3",
  8701. "shasum": ""
  8702. },
  8703. "require": {
  8704. "php": ">=8.2",
  8705. "symfony/security-core": "^6.4|^7.0"
  8706. },
  8707. "conflict": {
  8708. "symfony/http-foundation": "<6.4"
  8709. },
  8710. "require-dev": {
  8711. "psr/log": "^1|^2|^3",
  8712. "symfony/http-foundation": "^6.4|^7.0",
  8713. "symfony/http-kernel": "^6.4|^7.0"
  8714. },
  8715. "type": "library",
  8716. "autoload": {
  8717. "psr-4": {
  8718. "Symfony\\Component\\Security\\Csrf\\": ""
  8719. },
  8720. "exclude-from-classmap": [
  8721. "/Tests/"
  8722. ]
  8723. },
  8724. "notification-url": "https://packagist.org/downloads/",
  8725. "license": [
  8726. "MIT"
  8727. ],
  8728. "authors": [
  8729. {
  8730. "name": "Fabien Potencier",
  8731. "email": "[email protected]"
  8732. },
  8733. {
  8734. "name": "Symfony Community",
  8735. "homepage": "https://symfony.com/contributors"
  8736. }
  8737. ],
  8738. "description": "Symfony Security Component - CSRF Library",
  8739. "homepage": "https://symfony.com",
  8740. "support": {
  8741. "source": "https://github.com/symfony/security-csrf/tree/v7.3.0"
  8742. },
  8743. "funding": [
  8744. {
  8745. "url": "https://symfony.com/sponsor",
  8746. "type": "custom"
  8747. },
  8748. {
  8749. "url": "https://github.com/fabpot",
  8750. "type": "github"
  8751. },
  8752. {
  8753. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8754. "type": "tidelift"
  8755. }
  8756. ],
  8757. "time": "2025-01-02T18:42:10+00:00"
  8758. },
  8759. {
  8760. "name": "symfony/security-http",
  8761. "version": "v7.3.2",
  8762. "source": {
  8763. "type": "git",
  8764. "url": "https://github.com/symfony/security-http.git",
  8765. "reference": "ca8d92035a5c8d31012458589bdaef30ef3c54d6"
  8766. },
  8767. "dist": {
  8768. "type": "zip",
  8769. "url": "https://api.github.com/repos/symfony/security-http/zipball/ca8d92035a5c8d31012458589bdaef30ef3c54d6",
  8770. "reference": "ca8d92035a5c8d31012458589bdaef30ef3c54d6",
  8771. "shasum": ""
  8772. },
  8773. "require": {
  8774. "php": ">=8.2",
  8775. "symfony/deprecation-contracts": "^2.5|^3",
  8776. "symfony/http-foundation": "^6.4|^7.0",
  8777. "symfony/http-kernel": "^6.4|^7.0",
  8778. "symfony/polyfill-mbstring": "~1.0",
  8779. "symfony/property-access": "^6.4|^7.0",
  8780. "symfony/security-core": "^7.3",
  8781. "symfony/service-contracts": "^2.5|^3"
  8782. },
  8783. "conflict": {
  8784. "symfony/clock": "<6.4",
  8785. "symfony/event-dispatcher": "<6.4",
  8786. "symfony/http-client-contracts": "<3.0",
  8787. "symfony/security-bundle": "<6.4",
  8788. "symfony/security-csrf": "<6.4"
  8789. },
  8790. "require-dev": {
  8791. "psr/log": "^1|^2|^3",
  8792. "symfony/cache": "^6.4|^7.0",
  8793. "symfony/clock": "^6.4|^7.0",
  8794. "symfony/expression-language": "^6.4|^7.0",
  8795. "symfony/http-client": "^6.4|^7.0",
  8796. "symfony/http-client-contracts": "^3.0",
  8797. "symfony/rate-limiter": "^6.4|^7.0",
  8798. "symfony/routing": "^6.4|^7.0",
  8799. "symfony/security-csrf": "^6.4|^7.0",
  8800. "symfony/translation": "^6.4|^7.0",
  8801. "web-token/jwt-library": "^3.3.2|^4.0"
  8802. },
  8803. "type": "library",
  8804. "autoload": {
  8805. "psr-4": {
  8806. "Symfony\\Component\\Security\\Http\\": ""
  8807. },
  8808. "exclude-from-classmap": [
  8809. "/Tests/"
  8810. ]
  8811. },
  8812. "notification-url": "https://packagist.org/downloads/",
  8813. "license": [
  8814. "MIT"
  8815. ],
  8816. "authors": [
  8817. {
  8818. "name": "Fabien Potencier",
  8819. "email": "[email protected]"
  8820. },
  8821. {
  8822. "name": "Symfony Community",
  8823. "homepage": "https://symfony.com/contributors"
  8824. }
  8825. ],
  8826. "description": "Symfony Security Component - HTTP Integration",
  8827. "homepage": "https://symfony.com",
  8828. "support": {
  8829. "source": "https://github.com/symfony/security-http/tree/v7.3.2"
  8830. },
  8831. "funding": [
  8832. {
  8833. "url": "https://symfony.com/sponsor",
  8834. "type": "custom"
  8835. },
  8836. {
  8837. "url": "https://github.com/fabpot",
  8838. "type": "github"
  8839. },
  8840. {
  8841. "url": "https://github.com/nicolas-grekas",
  8842. "type": "github"
  8843. },
  8844. {
  8845. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8846. "type": "tidelift"
  8847. }
  8848. ],
  8849. "time": "2025-07-10T08:47:49+00:00"
  8850. },
  8851. {
  8852. "name": "symfony/serializer",
  8853. "version": "v7.3.2",
  8854. "source": {
  8855. "type": "git",
  8856. "url": "https://github.com/symfony/serializer.git",
  8857. "reference": "0ed011583fd24899fa003abf77c45d4a901714da"
  8858. },
  8859. "dist": {
  8860. "type": "zip",
  8861. "url": "https://api.github.com/repos/symfony/serializer/zipball/0ed011583fd24899fa003abf77c45d4a901714da",
  8862. "reference": "0ed011583fd24899fa003abf77c45d4a901714da",
  8863. "shasum": ""
  8864. },
  8865. "require": {
  8866. "php": ">=8.2",
  8867. "symfony/deprecation-contracts": "^2.5|^3",
  8868. "symfony/polyfill-ctype": "~1.8"
  8869. },
  8870. "conflict": {
  8871. "phpdocumentor/reflection-docblock": "<3.2.2",
  8872. "phpdocumentor/type-resolver": "<1.4.0",
  8873. "symfony/dependency-injection": "<6.4",
  8874. "symfony/property-access": "<6.4",
  8875. "symfony/property-info": "<6.4",
  8876. "symfony/uid": "<6.4",
  8877. "symfony/validator": "<6.4",
  8878. "symfony/yaml": "<6.4"
  8879. },
  8880. "require-dev": {
  8881. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  8882. "phpstan/phpdoc-parser": "^1.0|^2.0",
  8883. "seld/jsonlint": "^1.10",
  8884. "symfony/cache": "^6.4|^7.0",
  8885. "symfony/config": "^6.4|^7.0",
  8886. "symfony/console": "^6.4|^7.0",
  8887. "symfony/dependency-injection": "^7.2",
  8888. "symfony/error-handler": "^6.4|^7.0",
  8889. "symfony/filesystem": "^6.4|^7.0",
  8890. "symfony/form": "^6.4|^7.0",
  8891. "symfony/http-foundation": "^6.4|^7.0",
  8892. "symfony/http-kernel": "^6.4|^7.0",
  8893. "symfony/messenger": "^6.4|^7.0",
  8894. "symfony/mime": "^6.4|^7.0",
  8895. "symfony/property-access": "^6.4|^7.0",
  8896. "symfony/property-info": "^6.4|^7.0",
  8897. "symfony/translation-contracts": "^2.5|^3",
  8898. "symfony/type-info": "^7.1.8",
  8899. "symfony/uid": "^6.4|^7.0",
  8900. "symfony/validator": "^6.4|^7.0",
  8901. "symfony/var-dumper": "^6.4|^7.0",
  8902. "symfony/var-exporter": "^6.4|^7.0",
  8903. "symfony/yaml": "^6.4|^7.0"
  8904. },
  8905. "type": "library",
  8906. "autoload": {
  8907. "psr-4": {
  8908. "Symfony\\Component\\Serializer\\": ""
  8909. },
  8910. "exclude-from-classmap": [
  8911. "/Tests/"
  8912. ]
  8913. },
  8914. "notification-url": "https://packagist.org/downloads/",
  8915. "license": [
  8916. "MIT"
  8917. ],
  8918. "authors": [
  8919. {
  8920. "name": "Fabien Potencier",
  8921. "email": "[email protected]"
  8922. },
  8923. {
  8924. "name": "Symfony Community",
  8925. "homepage": "https://symfony.com/contributors"
  8926. }
  8927. ],
  8928. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  8929. "homepage": "https://symfony.com",
  8930. "support": {
  8931. "source": "https://github.com/symfony/serializer/tree/v7.3.2"
  8932. },
  8933. "funding": [
  8934. {
  8935. "url": "https://symfony.com/sponsor",
  8936. "type": "custom"
  8937. },
  8938. {
  8939. "url": "https://github.com/fabpot",
  8940. "type": "github"
  8941. },
  8942. {
  8943. "url": "https://github.com/nicolas-grekas",
  8944. "type": "github"
  8945. },
  8946. {
  8947. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8948. "type": "tidelift"
  8949. }
  8950. ],
  8951. "time": "2025-07-26T13:07:17+00:00"
  8952. },
  8953. {
  8954. "name": "symfony/service-contracts",
  8955. "version": "v3.6.0",
  8956. "source": {
  8957. "type": "git",
  8958. "url": "https://github.com/symfony/service-contracts.git",
  8959. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4"
  8960. },
  8961. "dist": {
  8962. "type": "zip",
  8963. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  8964. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  8965. "shasum": ""
  8966. },
  8967. "require": {
  8968. "php": ">=8.1",
  8969. "psr/container": "^1.1|^2.0",
  8970. "symfony/deprecation-contracts": "^2.5|^3"
  8971. },
  8972. "conflict": {
  8973. "ext-psr": "<1.1|>=2"
  8974. },
  8975. "type": "library",
  8976. "extra": {
  8977. "thanks": {
  8978. "url": "https://github.com/symfony/contracts",
  8979. "name": "symfony/contracts"
  8980. },
  8981. "branch-alias": {
  8982. "dev-main": "3.6-dev"
  8983. }
  8984. },
  8985. "autoload": {
  8986. "psr-4": {
  8987. "Symfony\\Contracts\\Service\\": ""
  8988. },
  8989. "exclude-from-classmap": [
  8990. "/Test/"
  8991. ]
  8992. },
  8993. "notification-url": "https://packagist.org/downloads/",
  8994. "license": [
  8995. "MIT"
  8996. ],
  8997. "authors": [
  8998. {
  8999. "name": "Nicolas Grekas",
  9000. "email": "[email protected]"
  9001. },
  9002. {
  9003. "name": "Symfony Community",
  9004. "homepage": "https://symfony.com/contributors"
  9005. }
  9006. ],
  9007. "description": "Generic abstractions related to writing services",
  9008. "homepage": "https://symfony.com",
  9009. "keywords": [
  9010. "abstractions",
  9011. "contracts",
  9012. "decoupling",
  9013. "interfaces",
  9014. "interoperability",
  9015. "standards"
  9016. ],
  9017. "support": {
  9018. "source": "https://github.com/symfony/service-contracts/tree/v3.6.0"
  9019. },
  9020. "funding": [
  9021. {
  9022. "url": "https://symfony.com/sponsor",
  9023. "type": "custom"
  9024. },
  9025. {
  9026. "url": "https://github.com/fabpot",
  9027. "type": "github"
  9028. },
  9029. {
  9030. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9031. "type": "tidelift"
  9032. }
  9033. ],
  9034. "time": "2025-04-25T09:37:31+00:00"
  9035. },
  9036. {
  9037. "name": "symfony/string",
  9038. "version": "v7.3.2",
  9039. "source": {
  9040. "type": "git",
  9041. "url": "https://github.com/symfony/string.git",
  9042. "reference": "42f505aff654e62ac7ac2ce21033818297ca89ca"
  9043. },
  9044. "dist": {
  9045. "type": "zip",
  9046. "url": "https://api.github.com/repos/symfony/string/zipball/42f505aff654e62ac7ac2ce21033818297ca89ca",
  9047. "reference": "42f505aff654e62ac7ac2ce21033818297ca89ca",
  9048. "shasum": ""
  9049. },
  9050. "require": {
  9051. "php": ">=8.2",
  9052. "symfony/polyfill-ctype": "~1.8",
  9053. "symfony/polyfill-intl-grapheme": "~1.0",
  9054. "symfony/polyfill-intl-normalizer": "~1.0",
  9055. "symfony/polyfill-mbstring": "~1.0"
  9056. },
  9057. "conflict": {
  9058. "symfony/translation-contracts": "<2.5"
  9059. },
  9060. "require-dev": {
  9061. "symfony/emoji": "^7.1",
  9062. "symfony/error-handler": "^6.4|^7.0",
  9063. "symfony/http-client": "^6.4|^7.0",
  9064. "symfony/intl": "^6.4|^7.0",
  9065. "symfony/translation-contracts": "^2.5|^3.0",
  9066. "symfony/var-exporter": "^6.4|^7.0"
  9067. },
  9068. "type": "library",
  9069. "autoload": {
  9070. "files": [
  9071. "Resources/functions.php"
  9072. ],
  9073. "psr-4": {
  9074. "Symfony\\Component\\String\\": ""
  9075. },
  9076. "exclude-from-classmap": [
  9077. "/Tests/"
  9078. ]
  9079. },
  9080. "notification-url": "https://packagist.org/downloads/",
  9081. "license": [
  9082. "MIT"
  9083. ],
  9084. "authors": [
  9085. {
  9086. "name": "Nicolas Grekas",
  9087. "email": "[email protected]"
  9088. },
  9089. {
  9090. "name": "Symfony Community",
  9091. "homepage": "https://symfony.com/contributors"
  9092. }
  9093. ],
  9094. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  9095. "homepage": "https://symfony.com",
  9096. "keywords": [
  9097. "grapheme",
  9098. "i18n",
  9099. "string",
  9100. "unicode",
  9101. "utf-8",
  9102. "utf8"
  9103. ],
  9104. "support": {
  9105. "source": "https://github.com/symfony/string/tree/v7.3.2"
  9106. },
  9107. "funding": [
  9108. {
  9109. "url": "https://symfony.com/sponsor",
  9110. "type": "custom"
  9111. },
  9112. {
  9113. "url": "https://github.com/fabpot",
  9114. "type": "github"
  9115. },
  9116. {
  9117. "url": "https://github.com/nicolas-grekas",
  9118. "type": "github"
  9119. },
  9120. {
  9121. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9122. "type": "tidelift"
  9123. }
  9124. ],
  9125. "time": "2025-07-10T08:47:49+00:00"
  9126. },
  9127. {
  9128. "name": "symfony/translation",
  9129. "version": "v7.3.2",
  9130. "source": {
  9131. "type": "git",
  9132. "url": "https://github.com/symfony/translation.git",
  9133. "reference": "81b48f4daa96272efcce9c7a6c4b58e629df3c90"
  9134. },
  9135. "dist": {
  9136. "type": "zip",
  9137. "url": "https://api.github.com/repos/symfony/translation/zipball/81b48f4daa96272efcce9c7a6c4b58e629df3c90",
  9138. "reference": "81b48f4daa96272efcce9c7a6c4b58e629df3c90",
  9139. "shasum": ""
  9140. },
  9141. "require": {
  9142. "php": ">=8.2",
  9143. "symfony/deprecation-contracts": "^2.5|^3",
  9144. "symfony/polyfill-mbstring": "~1.0",
  9145. "symfony/translation-contracts": "^2.5|^3.0"
  9146. },
  9147. "conflict": {
  9148. "nikic/php-parser": "<5.0",
  9149. "symfony/config": "<6.4",
  9150. "symfony/console": "<6.4",
  9151. "symfony/dependency-injection": "<6.4",
  9152. "symfony/http-client-contracts": "<2.5",
  9153. "symfony/http-kernel": "<6.4",
  9154. "symfony/service-contracts": "<2.5",
  9155. "symfony/twig-bundle": "<6.4",
  9156. "symfony/yaml": "<6.4"
  9157. },
  9158. "provide": {
  9159. "symfony/translation-implementation": "2.3|3.0"
  9160. },
  9161. "require-dev": {
  9162. "nikic/php-parser": "^5.0",
  9163. "psr/log": "^1|^2|^3",
  9164. "symfony/config": "^6.4|^7.0",
  9165. "symfony/console": "^6.4|^7.0",
  9166. "symfony/dependency-injection": "^6.4|^7.0",
  9167. "symfony/finder": "^6.4|^7.0",
  9168. "symfony/http-client-contracts": "^2.5|^3.0",
  9169. "symfony/http-kernel": "^6.4|^7.0",
  9170. "symfony/intl": "^6.4|^7.0",
  9171. "symfony/polyfill-intl-icu": "^1.21",
  9172. "symfony/routing": "^6.4|^7.0",
  9173. "symfony/service-contracts": "^2.5|^3",
  9174. "symfony/yaml": "^6.4|^7.0"
  9175. },
  9176. "type": "library",
  9177. "autoload": {
  9178. "files": [
  9179. "Resources/functions.php"
  9180. ],
  9181. "psr-4": {
  9182. "Symfony\\Component\\Translation\\": ""
  9183. },
  9184. "exclude-from-classmap": [
  9185. "/Tests/"
  9186. ]
  9187. },
  9188. "notification-url": "https://packagist.org/downloads/",
  9189. "license": [
  9190. "MIT"
  9191. ],
  9192. "authors": [
  9193. {
  9194. "name": "Fabien Potencier",
  9195. "email": "[email protected]"
  9196. },
  9197. {
  9198. "name": "Symfony Community",
  9199. "homepage": "https://symfony.com/contributors"
  9200. }
  9201. ],
  9202. "description": "Provides tools to internationalize your application",
  9203. "homepage": "https://symfony.com",
  9204. "support": {
  9205. "source": "https://github.com/symfony/translation/tree/v7.3.2"
  9206. },
  9207. "funding": [
  9208. {
  9209. "url": "https://symfony.com/sponsor",
  9210. "type": "custom"
  9211. },
  9212. {
  9213. "url": "https://github.com/fabpot",
  9214. "type": "github"
  9215. },
  9216. {
  9217. "url": "https://github.com/nicolas-grekas",
  9218. "type": "github"
  9219. },
  9220. {
  9221. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9222. "type": "tidelift"
  9223. }
  9224. ],
  9225. "time": "2025-07-30T17:31:46+00:00"
  9226. },
  9227. {
  9228. "name": "symfony/translation-contracts",
  9229. "version": "v3.6.0",
  9230. "source": {
  9231. "type": "git",
  9232. "url": "https://github.com/symfony/translation-contracts.git",
  9233. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d"
  9234. },
  9235. "dist": {
  9236. "type": "zip",
  9237. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  9238. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  9239. "shasum": ""
  9240. },
  9241. "require": {
  9242. "php": ">=8.1"
  9243. },
  9244. "type": "library",
  9245. "extra": {
  9246. "thanks": {
  9247. "url": "https://github.com/symfony/contracts",
  9248. "name": "symfony/contracts"
  9249. },
  9250. "branch-alias": {
  9251. "dev-main": "3.6-dev"
  9252. }
  9253. },
  9254. "autoload": {
  9255. "psr-4": {
  9256. "Symfony\\Contracts\\Translation\\": ""
  9257. },
  9258. "exclude-from-classmap": [
  9259. "/Test/"
  9260. ]
  9261. },
  9262. "notification-url": "https://packagist.org/downloads/",
  9263. "license": [
  9264. "MIT"
  9265. ],
  9266. "authors": [
  9267. {
  9268. "name": "Nicolas Grekas",
  9269. "email": "[email protected]"
  9270. },
  9271. {
  9272. "name": "Symfony Community",
  9273. "homepage": "https://symfony.com/contributors"
  9274. }
  9275. ],
  9276. "description": "Generic abstractions related to translation",
  9277. "homepage": "https://symfony.com",
  9278. "keywords": [
  9279. "abstractions",
  9280. "contracts",
  9281. "decoupling",
  9282. "interfaces",
  9283. "interoperability",
  9284. "standards"
  9285. ],
  9286. "support": {
  9287. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.0"
  9288. },
  9289. "funding": [
  9290. {
  9291. "url": "https://symfony.com/sponsor",
  9292. "type": "custom"
  9293. },
  9294. {
  9295. "url": "https://github.com/fabpot",
  9296. "type": "github"
  9297. },
  9298. {
  9299. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9300. "type": "tidelift"
  9301. }
  9302. ],
  9303. "time": "2024-09-27T08:32:26+00:00"
  9304. },
  9305. {
  9306. "name": "symfony/type-info",
  9307. "version": "v7.3.2",
  9308. "source": {
  9309. "type": "git",
  9310. "url": "https://github.com/symfony/type-info.git",
  9311. "reference": "b72d44c7d6638480fce101b7c4cd3abea4c2efba"
  9312. },
  9313. "dist": {
  9314. "type": "zip",
  9315. "url": "https://api.github.com/repos/symfony/type-info/zipball/b72d44c7d6638480fce101b7c4cd3abea4c2efba",
  9316. "reference": "b72d44c7d6638480fce101b7c4cd3abea4c2efba",
  9317. "shasum": ""
  9318. },
  9319. "require": {
  9320. "php": ">=8.2",
  9321. "psr/container": "^1.1|^2.0",
  9322. "symfony/deprecation-contracts": "^2.5|^3"
  9323. },
  9324. "conflict": {
  9325. "phpstan/phpdoc-parser": "<1.30"
  9326. },
  9327. "require-dev": {
  9328. "phpstan/phpdoc-parser": "^1.30|^2.0"
  9329. },
  9330. "type": "library",
  9331. "autoload": {
  9332. "psr-4": {
  9333. "Symfony\\Component\\TypeInfo\\": ""
  9334. },
  9335. "exclude-from-classmap": [
  9336. "/Tests/"
  9337. ]
  9338. },
  9339. "notification-url": "https://packagist.org/downloads/",
  9340. "license": [
  9341. "MIT"
  9342. ],
  9343. "authors": [
  9344. {
  9345. "name": "Mathias Arlaud",
  9346. "email": "[email protected]"
  9347. },
  9348. {
  9349. "name": "Baptiste LEDUC",
  9350. "email": "[email protected]"
  9351. },
  9352. {
  9353. "name": "Symfony Community",
  9354. "homepage": "https://symfony.com/contributors"
  9355. }
  9356. ],
  9357. "description": "Extracts PHP types information.",
  9358. "homepage": "https://symfony.com",
  9359. "keywords": [
  9360. "PHPStan",
  9361. "phpdoc",
  9362. "symfony",
  9363. "type"
  9364. ],
  9365. "support": {
  9366. "source": "https://github.com/symfony/type-info/tree/v7.3.2"
  9367. },
  9368. "funding": [
  9369. {
  9370. "url": "https://symfony.com/sponsor",
  9371. "type": "custom"
  9372. },
  9373. {
  9374. "url": "https://github.com/fabpot",
  9375. "type": "github"
  9376. },
  9377. {
  9378. "url": "https://github.com/nicolas-grekas",
  9379. "type": "github"
  9380. },
  9381. {
  9382. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9383. "type": "tidelift"
  9384. }
  9385. ],
  9386. "time": "2025-07-10T05:39:45+00:00"
  9387. },
  9388. {
  9389. "name": "symfony/uid",
  9390. "version": "v7.3.1",
  9391. "source": {
  9392. "type": "git",
  9393. "url": "https://github.com/symfony/uid.git",
  9394. "reference": "a69f69f3159b852651a6bf45a9fdd149520525bb"
  9395. },
  9396. "dist": {
  9397. "type": "zip",
  9398. "url": "https://api.github.com/repos/symfony/uid/zipball/a69f69f3159b852651a6bf45a9fdd149520525bb",
  9399. "reference": "a69f69f3159b852651a6bf45a9fdd149520525bb",
  9400. "shasum": ""
  9401. },
  9402. "require": {
  9403. "php": ">=8.2",
  9404. "symfony/polyfill-uuid": "^1.15"
  9405. },
  9406. "require-dev": {
  9407. "symfony/console": "^6.4|^7.0"
  9408. },
  9409. "type": "library",
  9410. "autoload": {
  9411. "psr-4": {
  9412. "Symfony\\Component\\Uid\\": ""
  9413. },
  9414. "exclude-from-classmap": [
  9415. "/Tests/"
  9416. ]
  9417. },
  9418. "notification-url": "https://packagist.org/downloads/",
  9419. "license": [
  9420. "MIT"
  9421. ],
  9422. "authors": [
  9423. {
  9424. "name": "Grégoire Pineau",
  9425. "email": "[email protected]"
  9426. },
  9427. {
  9428. "name": "Nicolas Grekas",
  9429. "email": "[email protected]"
  9430. },
  9431. {
  9432. "name": "Symfony Community",
  9433. "homepage": "https://symfony.com/contributors"
  9434. }
  9435. ],
  9436. "description": "Provides an object-oriented API to generate and represent UIDs",
  9437. "homepage": "https://symfony.com",
  9438. "keywords": [
  9439. "UID",
  9440. "ulid",
  9441. "uuid"
  9442. ],
  9443. "support": {
  9444. "source": "https://github.com/symfony/uid/tree/v7.3.1"
  9445. },
  9446. "funding": [
  9447. {
  9448. "url": "https://symfony.com/sponsor",
  9449. "type": "custom"
  9450. },
  9451. {
  9452. "url": "https://github.com/fabpot",
  9453. "type": "github"
  9454. },
  9455. {
  9456. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9457. "type": "tidelift"
  9458. }
  9459. ],
  9460. "time": "2025-06-27T19:55:54+00:00"
  9461. },
  9462. {
  9463. "name": "symfony/validator",
  9464. "version": "v7.3.2",
  9465. "source": {
  9466. "type": "git",
  9467. "url": "https://github.com/symfony/validator.git",
  9468. "reference": "e5cc60fd44aab8e1d662fc0d954da322c2e08b43"
  9469. },
  9470. "dist": {
  9471. "type": "zip",
  9472. "url": "https://api.github.com/repos/symfony/validator/zipball/e5cc60fd44aab8e1d662fc0d954da322c2e08b43",
  9473. "reference": "e5cc60fd44aab8e1d662fc0d954da322c2e08b43",
  9474. "shasum": ""
  9475. },
  9476. "require": {
  9477. "php": ">=8.2",
  9478. "symfony/deprecation-contracts": "^2.5|^3",
  9479. "symfony/polyfill-ctype": "~1.8",
  9480. "symfony/polyfill-mbstring": "~1.0",
  9481. "symfony/polyfill-php83": "^1.27",
  9482. "symfony/translation-contracts": "^2.5|^3"
  9483. },
  9484. "conflict": {
  9485. "doctrine/lexer": "<1.1",
  9486. "symfony/dependency-injection": "<6.4",
  9487. "symfony/doctrine-bridge": "<7.0",
  9488. "symfony/expression-language": "<6.4",
  9489. "symfony/http-kernel": "<6.4",
  9490. "symfony/intl": "<6.4",
  9491. "symfony/property-info": "<6.4",
  9492. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  9493. "symfony/yaml": "<6.4"
  9494. },
  9495. "require-dev": {
  9496. "egulias/email-validator": "^2.1.10|^3|^4",
  9497. "symfony/cache": "^6.4|^7.0",
  9498. "symfony/config": "^6.4|^7.0",
  9499. "symfony/console": "^6.4|^7.0",
  9500. "symfony/dependency-injection": "^6.4|^7.0",
  9501. "symfony/expression-language": "^6.4|^7.0",
  9502. "symfony/finder": "^6.4|^7.0",
  9503. "symfony/http-client": "^6.4|^7.0",
  9504. "symfony/http-foundation": "^6.4|^7.0",
  9505. "symfony/http-kernel": "^6.4|^7.0",
  9506. "symfony/intl": "^6.4|^7.0",
  9507. "symfony/mime": "^6.4|^7.0",
  9508. "symfony/property-access": "^6.4|^7.0",
  9509. "symfony/property-info": "^6.4|^7.0",
  9510. "symfony/string": "^6.4|^7.0",
  9511. "symfony/translation": "^6.4.3|^7.0.3",
  9512. "symfony/type-info": "^7.1.8",
  9513. "symfony/yaml": "^6.4|^7.0"
  9514. },
  9515. "type": "library",
  9516. "autoload": {
  9517. "psr-4": {
  9518. "Symfony\\Component\\Validator\\": ""
  9519. },
  9520. "exclude-from-classmap": [
  9521. "/Tests/",
  9522. "/Resources/bin/"
  9523. ]
  9524. },
  9525. "notification-url": "https://packagist.org/downloads/",
  9526. "license": [
  9527. "MIT"
  9528. ],
  9529. "authors": [
  9530. {
  9531. "name": "Fabien Potencier",
  9532. "email": "[email protected]"
  9533. },
  9534. {
  9535. "name": "Symfony Community",
  9536. "homepage": "https://symfony.com/contributors"
  9537. }
  9538. ],
  9539. "description": "Provides tools to validate values",
  9540. "homepage": "https://symfony.com",
  9541. "support": {
  9542. "source": "https://github.com/symfony/validator/tree/v7.3.2"
  9543. },
  9544. "funding": [
  9545. {
  9546. "url": "https://symfony.com/sponsor",
  9547. "type": "custom"
  9548. },
  9549. {
  9550. "url": "https://github.com/fabpot",
  9551. "type": "github"
  9552. },
  9553. {
  9554. "url": "https://github.com/nicolas-grekas",
  9555. "type": "github"
  9556. },
  9557. {
  9558. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9559. "type": "tidelift"
  9560. }
  9561. ],
  9562. "time": "2025-07-29T20:02:46+00:00"
  9563. },
  9564. {
  9565. "name": "symfony/var-dumper",
  9566. "version": "v7.3.2",
  9567. "source": {
  9568. "type": "git",
  9569. "url": "https://github.com/symfony/var-dumper.git",
  9570. "reference": "53205bea27450dc5c65377518b3275e126d45e75"
  9571. },
  9572. "dist": {
  9573. "type": "zip",
  9574. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/53205bea27450dc5c65377518b3275e126d45e75",
  9575. "reference": "53205bea27450dc5c65377518b3275e126d45e75",
  9576. "shasum": ""
  9577. },
  9578. "require": {
  9579. "php": ">=8.2",
  9580. "symfony/deprecation-contracts": "^2.5|^3",
  9581. "symfony/polyfill-mbstring": "~1.0"
  9582. },
  9583. "conflict": {
  9584. "symfony/console": "<6.4"
  9585. },
  9586. "require-dev": {
  9587. "symfony/console": "^6.4|^7.0",
  9588. "symfony/http-kernel": "^6.4|^7.0",
  9589. "symfony/process": "^6.4|^7.0",
  9590. "symfony/uid": "^6.4|^7.0",
  9591. "twig/twig": "^3.12"
  9592. },
  9593. "bin": [
  9594. "Resources/bin/var-dump-server"
  9595. ],
  9596. "type": "library",
  9597. "autoload": {
  9598. "files": [
  9599. "Resources/functions/dump.php"
  9600. ],
  9601. "psr-4": {
  9602. "Symfony\\Component\\VarDumper\\": ""
  9603. },
  9604. "exclude-from-classmap": [
  9605. "/Tests/"
  9606. ]
  9607. },
  9608. "notification-url": "https://packagist.org/downloads/",
  9609. "license": [
  9610. "MIT"
  9611. ],
  9612. "authors": [
  9613. {
  9614. "name": "Nicolas Grekas",
  9615. "email": "[email protected]"
  9616. },
  9617. {
  9618. "name": "Symfony Community",
  9619. "homepage": "https://symfony.com/contributors"
  9620. }
  9621. ],
  9622. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9623. "homepage": "https://symfony.com",
  9624. "keywords": [
  9625. "debug",
  9626. "dump"
  9627. ],
  9628. "support": {
  9629. "source": "https://github.com/symfony/var-dumper/tree/v7.3.2"
  9630. },
  9631. "funding": [
  9632. {
  9633. "url": "https://symfony.com/sponsor",
  9634. "type": "custom"
  9635. },
  9636. {
  9637. "url": "https://github.com/fabpot",
  9638. "type": "github"
  9639. },
  9640. {
  9641. "url": "https://github.com/nicolas-grekas",
  9642. "type": "github"
  9643. },
  9644. {
  9645. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9646. "type": "tidelift"
  9647. }
  9648. ],
  9649. "time": "2025-07-29T20:02:46+00:00"
  9650. },
  9651. {
  9652. "name": "symfony/var-exporter",
  9653. "version": "v7.3.2",
  9654. "source": {
  9655. "type": "git",
  9656. "url": "https://github.com/symfony/var-exporter.git",
  9657. "reference": "05b3e90654c097817325d6abd284f7938b05f467"
  9658. },
  9659. "dist": {
  9660. "type": "zip",
  9661. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/05b3e90654c097817325d6abd284f7938b05f467",
  9662. "reference": "05b3e90654c097817325d6abd284f7938b05f467",
  9663. "shasum": ""
  9664. },
  9665. "require": {
  9666. "php": ">=8.2",
  9667. "symfony/deprecation-contracts": "^2.5|^3"
  9668. },
  9669. "require-dev": {
  9670. "symfony/property-access": "^6.4|^7.0",
  9671. "symfony/serializer": "^6.4|^7.0",
  9672. "symfony/var-dumper": "^6.4|^7.0"
  9673. },
  9674. "type": "library",
  9675. "autoload": {
  9676. "psr-4": {
  9677. "Symfony\\Component\\VarExporter\\": ""
  9678. },
  9679. "exclude-from-classmap": [
  9680. "/Tests/"
  9681. ]
  9682. },
  9683. "notification-url": "https://packagist.org/downloads/",
  9684. "license": [
  9685. "MIT"
  9686. ],
  9687. "authors": [
  9688. {
  9689. "name": "Nicolas Grekas",
  9690. "email": "[email protected]"
  9691. },
  9692. {
  9693. "name": "Symfony Community",
  9694. "homepage": "https://symfony.com/contributors"
  9695. }
  9696. ],
  9697. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  9698. "homepage": "https://symfony.com",
  9699. "keywords": [
  9700. "clone",
  9701. "construct",
  9702. "export",
  9703. "hydrate",
  9704. "instantiate",
  9705. "lazy-loading",
  9706. "proxy",
  9707. "serialize"
  9708. ],
  9709. "support": {
  9710. "source": "https://github.com/symfony/var-exporter/tree/v7.3.2"
  9711. },
  9712. "funding": [
  9713. {
  9714. "url": "https://symfony.com/sponsor",
  9715. "type": "custom"
  9716. },
  9717. {
  9718. "url": "https://github.com/fabpot",
  9719. "type": "github"
  9720. },
  9721. {
  9722. "url": "https://github.com/nicolas-grekas",
  9723. "type": "github"
  9724. },
  9725. {
  9726. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9727. "type": "tidelift"
  9728. }
  9729. ],
  9730. "time": "2025-07-10T08:47:49+00:00"
  9731. },
  9732. {
  9733. "name": "twig/twig",
  9734. "version": "v3.21.1",
  9735. "source": {
  9736. "type": "git",
  9737. "url": "https://github.com/twigphp/Twig.git",
  9738. "reference": "285123877d4dd97dd7c11842ac5fb7e86e60d81d"
  9739. },
  9740. "dist": {
  9741. "type": "zip",
  9742. "url": "https://api.github.com/repos/twigphp/Twig/zipball/285123877d4dd97dd7c11842ac5fb7e86e60d81d",
  9743. "reference": "285123877d4dd97dd7c11842ac5fb7e86e60d81d",
  9744. "shasum": ""
  9745. },
  9746. "require": {
  9747. "php": ">=8.1.0",
  9748. "symfony/deprecation-contracts": "^2.5|^3",
  9749. "symfony/polyfill-ctype": "^1.8",
  9750. "symfony/polyfill-mbstring": "^1.3"
  9751. },
  9752. "require-dev": {
  9753. "phpstan/phpstan": "^2.0",
  9754. "psr/container": "^1.0|^2.0",
  9755. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  9756. },
  9757. "type": "library",
  9758. "autoload": {
  9759. "files": [
  9760. "src/Resources/core.php",
  9761. "src/Resources/debug.php",
  9762. "src/Resources/escaper.php",
  9763. "src/Resources/string_loader.php"
  9764. ],
  9765. "psr-4": {
  9766. "Twig\\": "src/"
  9767. }
  9768. },
  9769. "notification-url": "https://packagist.org/downloads/",
  9770. "license": [
  9771. "BSD-3-Clause"
  9772. ],
  9773. "authors": [
  9774. {
  9775. "name": "Fabien Potencier",
  9776. "email": "[email protected]",
  9777. "homepage": "http://fabien.potencier.org",
  9778. "role": "Lead Developer"
  9779. },
  9780. {
  9781. "name": "Twig Team",
  9782. "role": "Contributors"
  9783. },
  9784. {
  9785. "name": "Armin Ronacher",
  9786. "email": "[email protected]",
  9787. "role": "Project Founder"
  9788. }
  9789. ],
  9790. "description": "Twig, the flexible, fast, and secure template language for PHP",
  9791. "homepage": "https://twig.symfony.com",
  9792. "keywords": [
  9793. "templating"
  9794. ],
  9795. "support": {
  9796. "issues": "https://github.com/twigphp/Twig/issues",
  9797. "source": "https://github.com/twigphp/Twig/tree/v3.21.1"
  9798. },
  9799. "funding": [
  9800. {
  9801. "url": "https://github.com/fabpot",
  9802. "type": "github"
  9803. },
  9804. {
  9805. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  9806. "type": "tidelift"
  9807. }
  9808. ],
  9809. "time": "2025-05-03T07:21:55+00:00"
  9810. },
  9811. {
  9812. "name": "vectorface/googleauthenticator",
  9813. "version": "v3.4",
  9814. "source": {
  9815. "type": "git",
  9816. "url": "https://github.com/Vectorface/GoogleAuthenticator.git",
  9817. "reference": "48f5571e1496a6421e7975d9884860cb3cc918d8"
  9818. },
  9819. "dist": {
  9820. "type": "zip",
  9821. "url": "https://api.github.com/repos/Vectorface/GoogleAuthenticator/zipball/48f5571e1496a6421e7975d9884860cb3cc918d8",
  9822. "reference": "48f5571e1496a6421e7975d9884860cb3cc918d8",
  9823. "shasum": ""
  9824. },
  9825. "require": {
  9826. "endroid/qr-code": "^6.0.0",
  9827. "php": ">=8.2"
  9828. },
  9829. "require-dev": {
  9830. "phpunit/phpunit": "^9"
  9831. },
  9832. "type": "library",
  9833. "autoload": {
  9834. "psr-4": {
  9835. "Vectorface\\": "src/"
  9836. }
  9837. },
  9838. "notification-url": "https://packagist.org/downloads/",
  9839. "license": [
  9840. "BSD-2-Clause"
  9841. ],
  9842. "authors": [
  9843. {
  9844. "name": "Michael Kliewe",
  9845. "email": "[email protected]",
  9846. "homepage": "http://www.phpgangsta.de/",
  9847. "role": "Developer"
  9848. },
  9849. {
  9850. "name": "Francis Lavoie",
  9851. "email": "[email protected]",
  9852. "homepage": "http://vectorface.com/",
  9853. "role": "Developer"
  9854. }
  9855. ],
  9856. "description": "Google Authenticator 2-factor authentication",
  9857. "keywords": [
  9858. "googleauthenticator",
  9859. "rfc6238",
  9860. "totp"
  9861. ],
  9862. "support": {
  9863. "issues": "https://github.com/Vectorface/GoogleAuthenticator/issues",
  9864. "source": "https://github.com/Vectorface/GoogleAuthenticator"
  9865. },
  9866. "time": "2025-07-23T17:32:36+00:00"
  9867. },
  9868. {
  9869. "name": "voku/anti-xss",
  9870. "version": "4.1.42",
  9871. "source": {
  9872. "type": "git",
  9873. "url": "https://github.com/voku/anti-xss.git",
  9874. "reference": "bca1f8607e55a3c5077483615cd93bd8f11bd675"
  9875. },
  9876. "dist": {
  9877. "type": "zip",
  9878. "url": "https://api.github.com/repos/voku/anti-xss/zipball/bca1f8607e55a3c5077483615cd93bd8f11bd675",
  9879. "reference": "bca1f8607e55a3c5077483615cd93bd8f11bd675",
  9880. "shasum": ""
  9881. },
  9882. "require": {
  9883. "php": ">=7.0.0",
  9884. "voku/portable-utf8": "~6.0.2"
  9885. },
  9886. "require-dev": {
  9887. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  9888. },
  9889. "type": "library",
  9890. "extra": {
  9891. "branch-alias": {
  9892. "dev-master": "4.1.x-dev"
  9893. }
  9894. },
  9895. "autoload": {
  9896. "psr-4": {
  9897. "voku\\helper\\": "src/voku/helper/"
  9898. }
  9899. },
  9900. "notification-url": "https://packagist.org/downloads/",
  9901. "license": [
  9902. "MIT"
  9903. ],
  9904. "authors": [
  9905. {
  9906. "name": "EllisLab Dev Team",
  9907. "homepage": "http://ellislab.com/"
  9908. },
  9909. {
  9910. "name": "Lars Moelleken",
  9911. "email": "[email protected]",
  9912. "homepage": "https://www.moelleken.org/"
  9913. }
  9914. ],
  9915. "description": "anti xss-library",
  9916. "homepage": "https://github.com/voku/anti-xss",
  9917. "keywords": [
  9918. "anti-xss",
  9919. "clean",
  9920. "security",
  9921. "xss"
  9922. ],
  9923. "support": {
  9924. "issues": "https://github.com/voku/anti-xss/issues",
  9925. "source": "https://github.com/voku/anti-xss/tree/4.1.42"
  9926. },
  9927. "funding": [
  9928. {
  9929. "url": "https://www.paypal.me/moelleken",
  9930. "type": "custom"
  9931. },
  9932. {
  9933. "url": "https://github.com/voku",
  9934. "type": "github"
  9935. },
  9936. {
  9937. "url": "https://opencollective.com/anti-xss",
  9938. "type": "open_collective"
  9939. },
  9940. {
  9941. "url": "https://www.patreon.com/voku",
  9942. "type": "patreon"
  9943. },
  9944. {
  9945. "url": "https://tidelift.com/funding/github/packagist/voku/anti-xss",
  9946. "type": "tidelift"
  9947. }
  9948. ],
  9949. "time": "2023-07-03T14:40:46+00:00"
  9950. },
  9951. {
  9952. "name": "voku/portable-ascii",
  9953. "version": "2.0.3",
  9954. "source": {
  9955. "type": "git",
  9956. "url": "https://github.com/voku/portable-ascii.git",
  9957. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d"
  9958. },
  9959. "dist": {
  9960. "type": "zip",
  9961. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  9962. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  9963. "shasum": ""
  9964. },
  9965. "require": {
  9966. "php": ">=7.0.0"
  9967. },
  9968. "require-dev": {
  9969. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  9970. },
  9971. "suggest": {
  9972. "ext-intl": "Use Intl for transliterator_transliterate() support"
  9973. },
  9974. "type": "library",
  9975. "autoload": {
  9976. "psr-4": {
  9977. "voku\\": "src/voku/"
  9978. }
  9979. },
  9980. "notification-url": "https://packagist.org/downloads/",
  9981. "license": [
  9982. "MIT"
  9983. ],
  9984. "authors": [
  9985. {
  9986. "name": "Lars Moelleken",
  9987. "homepage": "https://www.moelleken.org/"
  9988. }
  9989. ],
  9990. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  9991. "homepage": "https://github.com/voku/portable-ascii",
  9992. "keywords": [
  9993. "ascii",
  9994. "clean",
  9995. "php"
  9996. ],
  9997. "support": {
  9998. "issues": "https://github.com/voku/portable-ascii/issues",
  9999. "source": "https://github.com/voku/portable-ascii/tree/2.0.3"
  10000. },
  10001. "funding": [
  10002. {
  10003. "url": "https://www.paypal.me/moelleken",
  10004. "type": "custom"
  10005. },
  10006. {
  10007. "url": "https://github.com/voku",
  10008. "type": "github"
  10009. },
  10010. {
  10011. "url": "https://opencollective.com/portable-ascii",
  10012. "type": "open_collective"
  10013. },
  10014. {
  10015. "url": "https://www.patreon.com/voku",
  10016. "type": "patreon"
  10017. },
  10018. {
  10019. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  10020. "type": "tidelift"
  10021. }
  10022. ],
  10023. "time": "2024-11-21T01:49:47+00:00"
  10024. },
  10025. {
  10026. "name": "voku/portable-utf8",
  10027. "version": "6.0.13",
  10028. "source": {
  10029. "type": "git",
  10030. "url": "https://github.com/voku/portable-utf8.git",
  10031. "reference": "b8ce36bf26593e5c2e81b1850ef0ffb299d2043f"
  10032. },
  10033. "dist": {
  10034. "type": "zip",
  10035. "url": "https://api.github.com/repos/voku/portable-utf8/zipball/b8ce36bf26593e5c2e81b1850ef0ffb299d2043f",
  10036. "reference": "b8ce36bf26593e5c2e81b1850ef0ffb299d2043f",
  10037. "shasum": ""
  10038. },
  10039. "require": {
  10040. "php": ">=7.0.0",
  10041. "symfony/polyfill-iconv": "~1.0",
  10042. "symfony/polyfill-intl-grapheme": "~1.0",
  10043. "symfony/polyfill-intl-normalizer": "~1.0",
  10044. "symfony/polyfill-mbstring": "~1.0",
  10045. "symfony/polyfill-php72": "~1.0",
  10046. "voku/portable-ascii": "~2.0.0"
  10047. },
  10048. "require-dev": {
  10049. "phpstan/phpstan": "1.9.*@dev",
  10050. "phpstan/phpstan-strict-rules": "1.4.*@dev",
  10051. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0",
  10052. "thecodingmachine/phpstan-strict-rules": "1.0.*@dev",
  10053. "voku/phpstan-rules": "3.1.*@dev"
  10054. },
  10055. "suggest": {
  10056. "ext-ctype": "Use Ctype for e.g. hexadecimal digit detection",
  10057. "ext-fileinfo": "Use Fileinfo for better binary file detection",
  10058. "ext-iconv": "Use iconv for best performance",
  10059. "ext-intl": "Use Intl for best performance",
  10060. "ext-json": "Use JSON for string detection",
  10061. "ext-mbstring": "Use Mbstring for best performance"
  10062. },
  10063. "type": "library",
  10064. "autoload": {
  10065. "files": [
  10066. "bootstrap.php"
  10067. ],
  10068. "psr-4": {
  10069. "voku\\": "src/voku/"
  10070. }
  10071. },
  10072. "notification-url": "https://packagist.org/downloads/",
  10073. "license": [
  10074. "(Apache-2.0 or GPL-2.0)"
  10075. ],
  10076. "authors": [
  10077. {
  10078. "name": "Nicolas Grekas",
  10079. "email": "[email protected]"
  10080. },
  10081. {
  10082. "name": "Hamid Sarfraz",
  10083. "homepage": "http://pageconfig.com/"
  10084. },
  10085. {
  10086. "name": "Lars Moelleken",
  10087. "homepage": "http://www.moelleken.org/"
  10088. }
  10089. ],
  10090. "description": "Portable UTF-8 library - performance optimized (unicode) string functions for php.",
  10091. "homepage": "https://github.com/voku/portable-utf8",
  10092. "keywords": [
  10093. "UTF",
  10094. "clean",
  10095. "php",
  10096. "unicode",
  10097. "utf-8",
  10098. "utf8"
  10099. ],
  10100. "support": {
  10101. "issues": "https://github.com/voku/portable-utf8/issues",
  10102. "source": "https://github.com/voku/portable-utf8/tree/6.0.13"
  10103. },
  10104. "funding": [
  10105. {
  10106. "url": "https://www.paypal.me/moelleken",
  10107. "type": "custom"
  10108. },
  10109. {
  10110. "url": "https://github.com/voku",
  10111. "type": "github"
  10112. },
  10113. {
  10114. "url": "https://opencollective.com/portable-utf8",
  10115. "type": "open_collective"
  10116. },
  10117. {
  10118. "url": "https://www.patreon.com/voku",
  10119. "type": "patreon"
  10120. },
  10121. {
  10122. "url": "https://tidelift.com/funding/github/packagist/voku/portable-utf8",
  10123. "type": "tidelift"
  10124. }
  10125. ],
  10126. "time": "2023-03-08T08:35:38+00:00"
  10127. },
  10128. {
  10129. "name": "web-auth/cose-lib",
  10130. "version": "4.4.1",
  10131. "source": {
  10132. "type": "git",
  10133. "url": "https://github.com/web-auth/cose-lib.git",
  10134. "reference": "b095f160a8c8fa7e53d0e36307093e34c26e7787"
  10135. },
  10136. "dist": {
  10137. "type": "zip",
  10138. "url": "https://api.github.com/repos/web-auth/cose-lib/zipball/b095f160a8c8fa7e53d0e36307093e34c26e7787",
  10139. "reference": "b095f160a8c8fa7e53d0e36307093e34c26e7787",
  10140. "shasum": ""
  10141. },
  10142. "require": {
  10143. "brick/math": "^0.9|^0.10|^0.11|^0.12|^0.13",
  10144. "ext-json": "*",
  10145. "ext-openssl": "*",
  10146. "php": ">=8.1",
  10147. "spomky-labs/pki-framework": "^1.0"
  10148. },
  10149. "require-dev": {
  10150. "deptrac/deptrac": "^3.0",
  10151. "ekino/phpstan-banned-code": "^1.0|^2.0|^3.0",
  10152. "infection/infection": "^0.29",
  10153. "php-parallel-lint/php-parallel-lint": "^1.3",
  10154. "phpstan/extension-installer": "^1.3",
  10155. "phpstan/phpstan": "^1.7|^2.0",
  10156. "phpstan/phpstan-deprecation-rules": "^1.0|^2.0",
  10157. "phpstan/phpstan-phpunit": "^1.1|^2.0",
  10158. "phpstan/phpstan-strict-rules": "^1.0|^2.0",
  10159. "phpunit/phpunit": "^10.1|^11.0|^12.0",
  10160. "rector/rector": "^2.0",
  10161. "symfony/phpunit-bridge": "^6.4|^7.0",
  10162. "symplify/easy-coding-standard": "^12.0"
  10163. },
  10164. "suggest": {
  10165. "ext-bcmath": "For better performance, please install either GMP (recommended) or BCMath extension",
  10166. "ext-gmp": "For better performance, please install either GMP (recommended) or BCMath extension"
  10167. },
  10168. "type": "library",
  10169. "autoload": {
  10170. "psr-4": {
  10171. "Cose\\": "src/"
  10172. }
  10173. },
  10174. "notification-url": "https://packagist.org/downloads/",
  10175. "license": [
  10176. "MIT"
  10177. ],
  10178. "authors": [
  10179. {
  10180. "name": "Florent Morselli",
  10181. "homepage": "https://github.com/Spomky"
  10182. },
  10183. {
  10184. "name": "All contributors",
  10185. "homepage": "https://github.com/web-auth/cose/contributors"
  10186. }
  10187. ],
  10188. "description": "CBOR Object Signing and Encryption (COSE) For PHP",
  10189. "homepage": "https://github.com/web-auth",
  10190. "keywords": [
  10191. "COSE",
  10192. "RFC8152"
  10193. ],
  10194. "support": {
  10195. "issues": "https://github.com/web-auth/cose-lib/issues",
  10196. "source": "https://github.com/web-auth/cose-lib/tree/4.4.1"
  10197. },
  10198. "funding": [
  10199. {
  10200. "url": "https://github.com/Spomky",
  10201. "type": "github"
  10202. },
  10203. {
  10204. "url": "https://www.patreon.com/FlorentMorselli",
  10205. "type": "patreon"
  10206. }
  10207. ],
  10208. "time": "2025-06-13T11:35:45+00:00"
  10209. },
  10210. {
  10211. "name": "web-auth/webauthn-framework",
  10212. "version": "5.2.2",
  10213. "source": {
  10214. "type": "git",
  10215. "url": "https://github.com/web-auth/webauthn-framework.git",
  10216. "reference": "cb78e7a2c93d4f7717b417790f78a55634ab4c42"
  10217. },
  10218. "dist": {
  10219. "type": "zip",
  10220. "url": "https://api.github.com/repos/web-auth/webauthn-framework/zipball/cb78e7a2c93d4f7717b417790f78a55634ab4c42",
  10221. "reference": "cb78e7a2c93d4f7717b417790f78a55634ab4c42",
  10222. "shasum": ""
  10223. },
  10224. "require": {
  10225. "ext-json": "*",
  10226. "ext-openssl": "*",
  10227. "paragonie/constant_time_encoding": "^2.6|^3.0",
  10228. "php": ">=8.2",
  10229. "phpdocumentor/reflection-docblock": "^5.3",
  10230. "psr/clock": "^1.0",
  10231. "psr/event-dispatcher": "^1.0",
  10232. "psr/log": "^1.0|^2.0|^3.0",
  10233. "spomky-labs/cbor-php": "^3.0",
  10234. "spomky-labs/pki-framework": "^1.0",
  10235. "symfony/clock": "^6.4|^7.0",
  10236. "symfony/config": "^6.4|^7.0",
  10237. "symfony/dependency-injection": "^6.4|^7.0",
  10238. "symfony/deprecation-contracts": "^3.2",
  10239. "symfony/framework-bundle": "^6.4|^7.0",
  10240. "symfony/http-client": "^6.4|^7.0",
  10241. "symfony/property-access": "^6.4|^7.0",
  10242. "symfony/property-info": "^6.4|^7.0",
  10243. "symfony/security-bundle": "^6.4|^7.0",
  10244. "symfony/security-core": "^6.4|^7.0",
  10245. "symfony/security-http": "^6.4|^7.0",
  10246. "symfony/serializer": "^6.4|^7.0",
  10247. "symfony/uid": "^6.4|^7.0",
  10248. "symfony/validator": "^6.4|^7.0",
  10249. "web-auth/cose-lib": "^4.2.3"
  10250. },
  10251. "replace": {
  10252. "web-auth/metadata-service": "self.version",
  10253. "web-auth/webauthn-lib": "self.version",
  10254. "web-auth/webauthn-stimulus": "self.version",
  10255. "web-auth/webauthn-symfony-bundle": "self.version"
  10256. },
  10257. "require-dev": {
  10258. "doctrine/dbal": "^3.8|^4.0",
  10259. "doctrine/doctrine-bundle": "^2.12",
  10260. "doctrine/orm": "^2.14|^3.0",
  10261. "doctrine/persistence": "^3.1|^4.0",
  10262. "ekino/phpstan-banned-code": "^3.0",
  10263. "ergebnis/phpunit-slow-test-detector": "^2.18",
  10264. "infection/infection": "^0.29",
  10265. "matthiasnoback/symfony-dependency-injection-test": "^5.1|^6.0",
  10266. "php-parallel-lint/php-parallel-lint": "^1.3",
  10267. "phpstan/extension-installer": "^1.4",
  10268. "phpstan/phpstan": "^2.0",
  10269. "phpstan/phpstan-deprecation-rules": "^2.0",
  10270. "phpstan/phpstan-doctrine": "^2.0",
  10271. "phpstan/phpstan-phpunit": "^2.0",
  10272. "phpstan/phpstan-strict-rules": "^2.0",
  10273. "phpstan/phpstan-symfony": "^2.0",
  10274. "phpunit/phpunit": "^11.5",
  10275. "psr/http-client": "^1.0",
  10276. "psr/http-factory": "^1.1",
  10277. "psr/http-message": "^2.0",
  10278. "qossmic/deptrac": "^2.0",
  10279. "rector/rector": "^2.0",
  10280. "roave/security-advisories": "dev-latest",
  10281. "staabm/phpstan-todo-by": "^0.2",
  10282. "struggle-for-php/sfp-phpstan-psr-log": "^0.23",
  10283. "symfony/asset": "^6.4|^7.0",
  10284. "symfony/asset-mapper": "^6.4|^7.0",
  10285. "symfony/browser-kit": "^6.4|^7.0",
  10286. "symfony/filesystem": "^6.4|^7.0",
  10287. "symfony/finder": "^6.4|^7.0",
  10288. "symfony/monolog-bundle": "^3.8",
  10289. "symfony/twig-bundle": "^6.4|^7.0",
  10290. "symfony/var-dumper": "^6.4|^7.0",
  10291. "symfony/yaml": "^6.4|^7.0",
  10292. "symplify/easy-coding-standard": "^12.0",
  10293. "web-token/jwt-library": "^4.0"
  10294. },
  10295. "suggest": {
  10296. "psr/log-implementation": "Recommended to receive logs from the library",
  10297. "symfony/event-dispatcher": "Recommended to use dispatched events",
  10298. "symfony/security-bundle": "Symfony firewall using a JSON API (perfect for script applications)",
  10299. "web-token/jwt-library": "Mandatory for fetching Metadata Statement from distant sources"
  10300. },
  10301. "type": "symfony-bundle",
  10302. "extra": {
  10303. "thanks": {
  10304. "url": "https://github.com/web-auth/webauthn-framework",
  10305. "name": "web-auth/webauthn-framework"
  10306. }
  10307. },
  10308. "autoload": {
  10309. "psr-4": {
  10310. "Webauthn\\": "src/webauthn/src/",
  10311. "Webauthn\\Bundle\\": "src/symfony/src/",
  10312. "Webauthn\\Stimulus\\": "src/stimulus/src/"
  10313. }
  10314. },
  10315. "notification-url": "https://packagist.org/downloads/",
  10316. "license": [
  10317. "MIT"
  10318. ],
  10319. "authors": [
  10320. {
  10321. "name": "Florent Morselli",
  10322. "homepage": "https://github.com/Spomky"
  10323. },
  10324. {
  10325. "name": "All contributors",
  10326. "homepage": "https://github.com/web-auth/webauthn-framework/contributors"
  10327. }
  10328. ],
  10329. "description": "FIDO2/Webauthn library for PHP and Symfony Bundle.",
  10330. "homepage": "https://github.com/web-auth/webauthn-framework",
  10331. "keywords": [
  10332. "FIDO2",
  10333. "bundle",
  10334. "fido",
  10335. "symfony",
  10336. "symfony-bundle",
  10337. "symfony-ux",
  10338. "webauthn"
  10339. ],
  10340. "support": {
  10341. "issues": "https://github.com/web-auth/webauthn-framework/issues",
  10342. "source": "https://github.com/web-auth/webauthn-framework/tree/5.2.2"
  10343. },
  10344. "funding": [
  10345. {
  10346. "url": "https://github.com/Spomky",
  10347. "type": "github"
  10348. },
  10349. {
  10350. "url": "https://www.patreon.com/FlorentMorselli",
  10351. "type": "patreon"
  10352. }
  10353. ],
  10354. "time": "2025-03-24T12:03:24+00:00"
  10355. },
  10356. {
  10357. "name": "webmozart/assert",
  10358. "version": "1.11.0",
  10359. "source": {
  10360. "type": "git",
  10361. "url": "https://github.com/webmozarts/assert.git",
  10362. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  10363. },
  10364. "dist": {
  10365. "type": "zip",
  10366. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10367. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10368. "shasum": ""
  10369. },
  10370. "require": {
  10371. "ext-ctype": "*",
  10372. "php": "^7.2 || ^8.0"
  10373. },
  10374. "conflict": {
  10375. "phpstan/phpstan": "<0.12.20",
  10376. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10377. },
  10378. "require-dev": {
  10379. "phpunit/phpunit": "^8.5.13"
  10380. },
  10381. "type": "library",
  10382. "extra": {
  10383. "branch-alias": {
  10384. "dev-master": "1.10-dev"
  10385. }
  10386. },
  10387. "autoload": {
  10388. "psr-4": {
  10389. "Webmozart\\Assert\\": "src/"
  10390. }
  10391. },
  10392. "notification-url": "https://packagist.org/downloads/",
  10393. "license": [
  10394. "MIT"
  10395. ],
  10396. "authors": [
  10397. {
  10398. "name": "Bernhard Schussek",
  10399. "email": "[email protected]"
  10400. }
  10401. ],
  10402. "description": "Assertions to validate method input/output with nice error messages.",
  10403. "keywords": [
  10404. "assert",
  10405. "check",
  10406. "validate"
  10407. ],
  10408. "support": {
  10409. "issues": "https://github.com/webmozarts/assert/issues",
  10410. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  10411. },
  10412. "time": "2022-06-03T18:03:27+00:00"
  10413. }
  10414. ],
  10415. "packages-dev": [
  10416. {
  10417. "name": "clue/ndjson-react",
  10418. "version": "v1.3.0",
  10419. "source": {
  10420. "type": "git",
  10421. "url": "https://github.com/clue/reactphp-ndjson.git",
  10422. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  10423. },
  10424. "dist": {
  10425. "type": "zip",
  10426. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  10427. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  10428. "shasum": ""
  10429. },
  10430. "require": {
  10431. "php": ">=5.3",
  10432. "react/stream": "^1.2"
  10433. },
  10434. "require-dev": {
  10435. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  10436. "react/event-loop": "^1.2"
  10437. },
  10438. "type": "library",
  10439. "autoload": {
  10440. "psr-4": {
  10441. "Clue\\React\\NDJson\\": "src/"
  10442. }
  10443. },
  10444. "notification-url": "https://packagist.org/downloads/",
  10445. "license": [
  10446. "MIT"
  10447. ],
  10448. "authors": [
  10449. {
  10450. "name": "Christian Lück",
  10451. "email": "[email protected]"
  10452. }
  10453. ],
  10454. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  10455. "homepage": "https://github.com/clue/reactphp-ndjson",
  10456. "keywords": [
  10457. "NDJSON",
  10458. "json",
  10459. "jsonlines",
  10460. "newline",
  10461. "reactphp",
  10462. "streaming"
  10463. ],
  10464. "support": {
  10465. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  10466. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  10467. },
  10468. "funding": [
  10469. {
  10470. "url": "https://clue.engineering/support",
  10471. "type": "custom"
  10472. },
  10473. {
  10474. "url": "https://github.com/clue",
  10475. "type": "github"
  10476. }
  10477. ],
  10478. "time": "2022-12-23T10:58:28+00:00"
  10479. },
  10480. {
  10481. "name": "cmgmyr/phploc",
  10482. "version": "8.0.6",
  10483. "source": {
  10484. "type": "git",
  10485. "url": "https://github.com/cmgmyr/phploc.git",
  10486. "reference": "5d785f8fc8b891483cdbee3fb25f2b348c50c03f"
  10487. },
  10488. "dist": {
  10489. "type": "zip",
  10490. "url": "https://api.github.com/repos/cmgmyr/phploc/zipball/5d785f8fc8b891483cdbee3fb25f2b348c50c03f",
  10491. "reference": "5d785f8fc8b891483cdbee3fb25f2b348c50c03f",
  10492. "shasum": ""
  10493. },
  10494. "require": {
  10495. "ext-dom": "*",
  10496. "ext-json": "*",
  10497. "php": "^7.4 || ^8.0",
  10498. "phpunit/php-file-iterator": "^3.0|^4.0|^5.0|^6.0",
  10499. "sebastian/cli-parser": "^1.0|^2.0|^3.0|^4.0"
  10500. },
  10501. "require-dev": {
  10502. "friendsofphp/php-cs-fixer": "^3.2",
  10503. "phpunit/phpunit": "^9.0|^10.0",
  10504. "vimeo/psalm": "^5.7"
  10505. },
  10506. "bin": [
  10507. "phploc"
  10508. ],
  10509. "type": "library",
  10510. "extra": {
  10511. "branch-alias": {
  10512. "dev-main": "8.0-dev"
  10513. }
  10514. },
  10515. "autoload": {
  10516. "classmap": [
  10517. "src/"
  10518. ]
  10519. },
  10520. "notification-url": "https://packagist.org/downloads/",
  10521. "license": [
  10522. "BSD-3-Clause"
  10523. ],
  10524. "authors": [
  10525. {
  10526. "name": "Chris Gmyr",
  10527. "email": "[email protected]",
  10528. "role": "lead"
  10529. }
  10530. ],
  10531. "description": "A tool for quickly measuring the size of a PHP project.",
  10532. "homepage": "https://github.com/cmgmyr/phploc",
  10533. "support": {
  10534. "issues": "https://github.com/cmgmyr/phploc/issues",
  10535. "source": "https://github.com/cmgmyr/phploc/tree/8.0.6"
  10536. },
  10537. "funding": [
  10538. {
  10539. "url": "https://github.com/cmgmyr",
  10540. "type": "github"
  10541. }
  10542. ],
  10543. "time": "2025-03-29T16:41:46+00:00"
  10544. },
  10545. {
  10546. "name": "composer/pcre",
  10547. "version": "3.3.2",
  10548. "source": {
  10549. "type": "git",
  10550. "url": "https://github.com/composer/pcre.git",
  10551. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  10552. },
  10553. "dist": {
  10554. "type": "zip",
  10555. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  10556. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  10557. "shasum": ""
  10558. },
  10559. "require": {
  10560. "php": "^7.4 || ^8.0"
  10561. },
  10562. "conflict": {
  10563. "phpstan/phpstan": "<1.11.10"
  10564. },
  10565. "require-dev": {
  10566. "phpstan/phpstan": "^1.12 || ^2",
  10567. "phpstan/phpstan-strict-rules": "^1 || ^2",
  10568. "phpunit/phpunit": "^8 || ^9"
  10569. },
  10570. "type": "library",
  10571. "extra": {
  10572. "phpstan": {
  10573. "includes": [
  10574. "extension.neon"
  10575. ]
  10576. },
  10577. "branch-alias": {
  10578. "dev-main": "3.x-dev"
  10579. }
  10580. },
  10581. "autoload": {
  10582. "psr-4": {
  10583. "Composer\\Pcre\\": "src"
  10584. }
  10585. },
  10586. "notification-url": "https://packagist.org/downloads/",
  10587. "license": [
  10588. "MIT"
  10589. ],
  10590. "authors": [
  10591. {
  10592. "name": "Jordi Boggiano",
  10593. "email": "[email protected]",
  10594. "homepage": "http://seld.be"
  10595. }
  10596. ],
  10597. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  10598. "keywords": [
  10599. "PCRE",
  10600. "preg",
  10601. "regex",
  10602. "regular expression"
  10603. ],
  10604. "support": {
  10605. "issues": "https://github.com/composer/pcre/issues",
  10606. "source": "https://github.com/composer/pcre/tree/3.3.2"
  10607. },
  10608. "funding": [
  10609. {
  10610. "url": "https://packagist.com",
  10611. "type": "custom"
  10612. },
  10613. {
  10614. "url": "https://github.com/composer",
  10615. "type": "github"
  10616. },
  10617. {
  10618. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  10619. "type": "tidelift"
  10620. }
  10621. ],
  10622. "time": "2024-11-12T16:29:46+00:00"
  10623. },
  10624. {
  10625. "name": "composer/semver",
  10626. "version": "3.4.3",
  10627. "source": {
  10628. "type": "git",
  10629. "url": "https://github.com/composer/semver.git",
  10630. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  10631. },
  10632. "dist": {
  10633. "type": "zip",
  10634. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  10635. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  10636. "shasum": ""
  10637. },
  10638. "require": {
  10639. "php": "^5.3.2 || ^7.0 || ^8.0"
  10640. },
  10641. "require-dev": {
  10642. "phpstan/phpstan": "^1.11",
  10643. "symfony/phpunit-bridge": "^3 || ^7"
  10644. },
  10645. "type": "library",
  10646. "extra": {
  10647. "branch-alias": {
  10648. "dev-main": "3.x-dev"
  10649. }
  10650. },
  10651. "autoload": {
  10652. "psr-4": {
  10653. "Composer\\Semver\\": "src"
  10654. }
  10655. },
  10656. "notification-url": "https://packagist.org/downloads/",
  10657. "license": [
  10658. "MIT"
  10659. ],
  10660. "authors": [
  10661. {
  10662. "name": "Nils Adermann",
  10663. "email": "[email protected]",
  10664. "homepage": "http://www.naderman.de"
  10665. },
  10666. {
  10667. "name": "Jordi Boggiano",
  10668. "email": "[email protected]",
  10669. "homepage": "http://seld.be"
  10670. },
  10671. {
  10672. "name": "Rob Bast",
  10673. "email": "[email protected]",
  10674. "homepage": "http://robbast.nl"
  10675. }
  10676. ],
  10677. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  10678. "keywords": [
  10679. "semantic",
  10680. "semver",
  10681. "validation",
  10682. "versioning"
  10683. ],
  10684. "support": {
  10685. "irc": "ircs://irc.libera.chat:6697/composer",
  10686. "issues": "https://github.com/composer/semver/issues",
  10687. "source": "https://github.com/composer/semver/tree/3.4.3"
  10688. },
  10689. "funding": [
  10690. {
  10691. "url": "https://packagist.com",
  10692. "type": "custom"
  10693. },
  10694. {
  10695. "url": "https://github.com/composer",
  10696. "type": "github"
  10697. },
  10698. {
  10699. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  10700. "type": "tidelift"
  10701. }
  10702. ],
  10703. "time": "2024-09-19T14:15:21+00:00"
  10704. },
  10705. {
  10706. "name": "composer/xdebug-handler",
  10707. "version": "3.0.5",
  10708. "source": {
  10709. "type": "git",
  10710. "url": "https://github.com/composer/xdebug-handler.git",
  10711. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  10712. },
  10713. "dist": {
  10714. "type": "zip",
  10715. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  10716. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  10717. "shasum": ""
  10718. },
  10719. "require": {
  10720. "composer/pcre": "^1 || ^2 || ^3",
  10721. "php": "^7.2.5 || ^8.0",
  10722. "psr/log": "^1 || ^2 || ^3"
  10723. },
  10724. "require-dev": {
  10725. "phpstan/phpstan": "^1.0",
  10726. "phpstan/phpstan-strict-rules": "^1.1",
  10727. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  10728. },
  10729. "type": "library",
  10730. "autoload": {
  10731. "psr-4": {
  10732. "Composer\\XdebugHandler\\": "src"
  10733. }
  10734. },
  10735. "notification-url": "https://packagist.org/downloads/",
  10736. "license": [
  10737. "MIT"
  10738. ],
  10739. "authors": [
  10740. {
  10741. "name": "John Stevenson",
  10742. "email": "[email protected]"
  10743. }
  10744. ],
  10745. "description": "Restarts a process without Xdebug.",
  10746. "keywords": [
  10747. "Xdebug",
  10748. "performance"
  10749. ],
  10750. "support": {
  10751. "irc": "ircs://irc.libera.chat:6697/composer",
  10752. "issues": "https://github.com/composer/xdebug-handler/issues",
  10753. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  10754. },
  10755. "funding": [
  10756. {
  10757. "url": "https://packagist.com",
  10758. "type": "custom"
  10759. },
  10760. {
  10761. "url": "https://github.com/composer",
  10762. "type": "github"
  10763. },
  10764. {
  10765. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  10766. "type": "tidelift"
  10767. }
  10768. ],
  10769. "time": "2024-05-06T16:37:16+00:00"
  10770. },
  10771. {
  10772. "name": "dealerdirect/phpcodesniffer-composer-installer",
  10773. "version": "v1.1.2",
  10774. "source": {
  10775. "type": "git",
  10776. "url": "https://github.com/PHPCSStandards/composer-installer.git",
  10777. "reference": "e9cf5e4bbf7eeaf9ef5db34938942602838fc2b1"
  10778. },
  10779. "dist": {
  10780. "type": "zip",
  10781. "url": "https://api.github.com/repos/PHPCSStandards/composer-installer/zipball/e9cf5e4bbf7eeaf9ef5db34938942602838fc2b1",
  10782. "reference": "e9cf5e4bbf7eeaf9ef5db34938942602838fc2b1",
  10783. "shasum": ""
  10784. },
  10785. "require": {
  10786. "composer-plugin-api": "^2.2",
  10787. "php": ">=5.4",
  10788. "squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0"
  10789. },
  10790. "require-dev": {
  10791. "composer/composer": "^2.2",
  10792. "ext-json": "*",
  10793. "ext-zip": "*",
  10794. "php-parallel-lint/php-parallel-lint": "^1.4.0",
  10795. "phpcompatibility/php-compatibility": "^9.0",
  10796. "yoast/phpunit-polyfills": "^1.0"
  10797. },
  10798. "type": "composer-plugin",
  10799. "extra": {
  10800. "class": "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
  10801. },
  10802. "autoload": {
  10803. "psr-4": {
  10804. "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
  10805. }
  10806. },
  10807. "notification-url": "https://packagist.org/downloads/",
  10808. "license": [
  10809. "MIT"
  10810. ],
  10811. "authors": [
  10812. {
  10813. "name": "Franck Nijhof",
  10814. "email": "[email protected]",
  10815. "homepage": "https://frenck.dev",
  10816. "role": "Open source developer"
  10817. },
  10818. {
  10819. "name": "Contributors",
  10820. "homepage": "https://github.com/PHPCSStandards/composer-installer/graphs/contributors"
  10821. }
  10822. ],
  10823. "description": "PHP_CodeSniffer Standards Composer Installer Plugin",
  10824. "keywords": [
  10825. "PHPCodeSniffer",
  10826. "PHP_CodeSniffer",
  10827. "code quality",
  10828. "codesniffer",
  10829. "composer",
  10830. "installer",
  10831. "phpcbf",
  10832. "phpcs",
  10833. "plugin",
  10834. "qa",
  10835. "quality",
  10836. "standard",
  10837. "standards",
  10838. "style guide",
  10839. "stylecheck",
  10840. "tests"
  10841. ],
  10842. "support": {
  10843. "issues": "https://github.com/PHPCSStandards/composer-installer/issues",
  10844. "security": "https://github.com/PHPCSStandards/composer-installer/security/policy",
  10845. "source": "https://github.com/PHPCSStandards/composer-installer"
  10846. },
  10847. "funding": [
  10848. {
  10849. "url": "https://github.com/PHPCSStandards",
  10850. "type": "github"
  10851. },
  10852. {
  10853. "url": "https://github.com/jrfnl",
  10854. "type": "github"
  10855. },
  10856. {
  10857. "url": "https://opencollective.com/php_codesniffer",
  10858. "type": "open_collective"
  10859. },
  10860. {
  10861. "url": "https://thanks.dev/u/gh/phpcsstandards",
  10862. "type": "thanks_dev"
  10863. }
  10864. ],
  10865. "time": "2025-07-17T20:45:56+00:00"
  10866. },
  10867. {
  10868. "name": "dg/bypass-finals",
  10869. "version": "v1.9.0",
  10870. "source": {
  10871. "type": "git",
  10872. "url": "https://github.com/dg/bypass-finals.git",
  10873. "reference": "920a7da2f3c1422fd83f9ec4df007af53dc4018b"
  10874. },
  10875. "dist": {
  10876. "type": "zip",
  10877. "url": "https://api.github.com/repos/dg/bypass-finals/zipball/920a7da2f3c1422fd83f9ec4df007af53dc4018b",
  10878. "reference": "920a7da2f3c1422fd83f9ec4df007af53dc4018b",
  10879. "shasum": ""
  10880. },
  10881. "require": {
  10882. "php": ">=7.1"
  10883. },
  10884. "require-dev": {
  10885. "nette/tester": "^2.3",
  10886. "phpstan/phpstan": "^0.12"
  10887. },
  10888. "type": "library",
  10889. "autoload": {
  10890. "classmap": [
  10891. "src/"
  10892. ]
  10893. },
  10894. "notification-url": "https://packagist.org/downloads/",
  10895. "license": [
  10896. "BSD-3-Clause",
  10897. "GPL-2.0-only",
  10898. "GPL-3.0-only"
  10899. ],
  10900. "authors": [
  10901. {
  10902. "name": "David Grudl",
  10903. "homepage": "https://davidgrudl.com"
  10904. }
  10905. ],
  10906. "description": "Removes final keyword from source code on-the-fly and allows mocking of final methods and classes",
  10907. "keywords": [
  10908. "finals",
  10909. "mocking",
  10910. "phpunit",
  10911. "testing",
  10912. "unit"
  10913. ],
  10914. "support": {
  10915. "issues": "https://github.com/dg/bypass-finals/issues",
  10916. "source": "https://github.com/dg/bypass-finals/tree/v1.9.0"
  10917. },
  10918. "time": "2025-01-16T00:46:05+00:00"
  10919. },
  10920. {
  10921. "name": "evenement/evenement",
  10922. "version": "v3.0.2",
  10923. "source": {
  10924. "type": "git",
  10925. "url": "https://github.com/igorw/evenement.git",
  10926. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  10927. },
  10928. "dist": {
  10929. "type": "zip",
  10930. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  10931. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  10932. "shasum": ""
  10933. },
  10934. "require": {
  10935. "php": ">=7.0"
  10936. },
  10937. "require-dev": {
  10938. "phpunit/phpunit": "^9 || ^6"
  10939. },
  10940. "type": "library",
  10941. "autoload": {
  10942. "psr-4": {
  10943. "Evenement\\": "src/"
  10944. }
  10945. },
  10946. "notification-url": "https://packagist.org/downloads/",
  10947. "license": [
  10948. "MIT"
  10949. ],
  10950. "authors": [
  10951. {
  10952. "name": "Igor Wiedler",
  10953. "email": "[email protected]"
  10954. }
  10955. ],
  10956. "description": "Événement is a very simple event dispatching library for PHP",
  10957. "keywords": [
  10958. "event-dispatcher",
  10959. "event-emitter"
  10960. ],
  10961. "support": {
  10962. "issues": "https://github.com/igorw/evenement/issues",
  10963. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  10964. },
  10965. "time": "2023-08-08T05:53:35+00:00"
  10966. },
  10967. {
  10968. "name": "fidry/cpu-core-counter",
  10969. "version": "1.2.0",
  10970. "source": {
  10971. "type": "git",
  10972. "url": "https://github.com/theofidry/cpu-core-counter.git",
  10973. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  10974. },
  10975. "dist": {
  10976. "type": "zip",
  10977. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  10978. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  10979. "shasum": ""
  10980. },
  10981. "require": {
  10982. "php": "^7.2 || ^8.0"
  10983. },
  10984. "require-dev": {
  10985. "fidry/makefile": "^0.2.0",
  10986. "fidry/php-cs-fixer-config": "^1.1.2",
  10987. "phpstan/extension-installer": "^1.2.0",
  10988. "phpstan/phpstan": "^1.9.2",
  10989. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  10990. "phpstan/phpstan-phpunit": "^1.2.2",
  10991. "phpstan/phpstan-strict-rules": "^1.4.4",
  10992. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  10993. "webmozarts/strict-phpunit": "^7.5"
  10994. },
  10995. "type": "library",
  10996. "autoload": {
  10997. "psr-4": {
  10998. "Fidry\\CpuCoreCounter\\": "src/"
  10999. }
  11000. },
  11001. "notification-url": "https://packagist.org/downloads/",
  11002. "license": [
  11003. "MIT"
  11004. ],
  11005. "authors": [
  11006. {
  11007. "name": "Théo FIDRY",
  11008. "email": "[email protected]"
  11009. }
  11010. ],
  11011. "description": "Tiny utility to get the number of CPU cores.",
  11012. "keywords": [
  11013. "CPU",
  11014. "core"
  11015. ],
  11016. "support": {
  11017. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  11018. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  11019. },
  11020. "funding": [
  11021. {
  11022. "url": "https://github.com/theofidry",
  11023. "type": "github"
  11024. }
  11025. ],
  11026. "time": "2024-08-06T10:04:20+00:00"
  11027. },
  11028. {
  11029. "name": "friendsofphp/php-cs-fixer",
  11030. "version": "v3.85.1",
  11031. "source": {
  11032. "type": "git",
  11033. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  11034. "reference": "2fb6d7f6c3398dca5786a1635b27405d73a417ba"
  11035. },
  11036. "dist": {
  11037. "type": "zip",
  11038. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/2fb6d7f6c3398dca5786a1635b27405d73a417ba",
  11039. "reference": "2fb6d7f6c3398dca5786a1635b27405d73a417ba",
  11040. "shasum": ""
  11041. },
  11042. "require": {
  11043. "clue/ndjson-react": "^1.3",
  11044. "composer/semver": "^3.4",
  11045. "composer/xdebug-handler": "^3.0.5",
  11046. "ext-filter": "*",
  11047. "ext-hash": "*",
  11048. "ext-json": "*",
  11049. "ext-tokenizer": "*",
  11050. "fidry/cpu-core-counter": "^1.2",
  11051. "php": "^7.4 || ^8.0",
  11052. "react/child-process": "^0.6.6",
  11053. "react/event-loop": "^1.5",
  11054. "react/promise": "^3.2",
  11055. "react/socket": "^1.16",
  11056. "react/stream": "^1.4",
  11057. "sebastian/diff": "^4.0.6 || ^5.1.1 || ^6.0.2 || ^7.0",
  11058. "symfony/console": "^5.4.47 || ^6.4.13 || ^7.0",
  11059. "symfony/event-dispatcher": "^5.4.45 || ^6.4.13 || ^7.0",
  11060. "symfony/filesystem": "^5.4.45 || ^6.4.13 || ^7.0",
  11061. "symfony/finder": "^5.4.45 || ^6.4.17 || ^7.0",
  11062. "symfony/options-resolver": "^5.4.45 || ^6.4.16 || ^7.0",
  11063. "symfony/polyfill-mbstring": "^1.32",
  11064. "symfony/polyfill-php80": "^1.32",
  11065. "symfony/polyfill-php81": "^1.32",
  11066. "symfony/process": "^5.4.47 || ^6.4.20 || ^7.2",
  11067. "symfony/stopwatch": "^5.4.45 || ^6.4.19 || ^7.0"
  11068. },
  11069. "require-dev": {
  11070. "facile-it/paraunit": "^1.3.1 || ^2.6",
  11071. "infection/infection": "^0.29.14",
  11072. "justinrainbow/json-schema": "^5.3 || ^6.4",
  11073. "keradus/cli-executor": "^2.2",
  11074. "mikey179/vfsstream": "^1.6.12",
  11075. "php-coveralls/php-coveralls": "^2.8",
  11076. "php-cs-fixer/accessible-object": "^1.1",
  11077. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.6",
  11078. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.6",
  11079. "phpunit/phpunit": "^9.6.23 || ^10.5.47 || ^11.5.25",
  11080. "symfony/polyfill-php84": "^1.32",
  11081. "symfony/var-dumper": "^5.4.48 || ^6.4.23 || ^7.3.1",
  11082. "symfony/yaml": "^5.4.45 || ^6.4.23 || ^7.3.1"
  11083. },
  11084. "suggest": {
  11085. "ext-dom": "For handling output formats in XML",
  11086. "ext-mbstring": "For handling non-UTF8 characters."
  11087. },
  11088. "bin": [
  11089. "php-cs-fixer"
  11090. ],
  11091. "type": "application",
  11092. "autoload": {
  11093. "psr-4": {
  11094. "PhpCsFixer\\": "src/"
  11095. },
  11096. "exclude-from-classmap": [
  11097. "src/Fixer/Internal/*"
  11098. ]
  11099. },
  11100. "notification-url": "https://packagist.org/downloads/",
  11101. "license": [
  11102. "MIT"
  11103. ],
  11104. "authors": [
  11105. {
  11106. "name": "Fabien Potencier",
  11107. "email": "[email protected]"
  11108. },
  11109. {
  11110. "name": "Dariusz Rumiński",
  11111. "email": "[email protected]"
  11112. }
  11113. ],
  11114. "description": "A tool to automatically fix PHP code style",
  11115. "keywords": [
  11116. "Static code analysis",
  11117. "fixer",
  11118. "standards",
  11119. "static analysis"
  11120. ],
  11121. "support": {
  11122. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  11123. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.85.1"
  11124. },
  11125. "funding": [
  11126. {
  11127. "url": "https://github.com/keradus",
  11128. "type": "github"
  11129. }
  11130. ],
  11131. "time": "2025-07-29T22:22:50+00:00"
  11132. },
  11133. {
  11134. "name": "justinrainbow/json-schema",
  11135. "version": "6.4.2",
  11136. "source": {
  11137. "type": "git",
  11138. "url": "https://github.com/jsonrainbow/json-schema.git",
  11139. "reference": "ce1fd2d47799bb60668643bc6220f6278a4c1d02"
  11140. },
  11141. "dist": {
  11142. "type": "zip",
  11143. "url": "https://api.github.com/repos/jsonrainbow/json-schema/zipball/ce1fd2d47799bb60668643bc6220f6278a4c1d02",
  11144. "reference": "ce1fd2d47799bb60668643bc6220f6278a4c1d02",
  11145. "shasum": ""
  11146. },
  11147. "require": {
  11148. "ext-json": "*",
  11149. "marc-mabe/php-enum": "^4.0",
  11150. "php": "^7.2 || ^8.0"
  11151. },
  11152. "require-dev": {
  11153. "friendsofphp/php-cs-fixer": "3.3.0",
  11154. "json-schema/json-schema-test-suite": "1.2.0",
  11155. "marc-mabe/php-enum-phpstan": "^2.0",
  11156. "phpspec/prophecy": "^1.19",
  11157. "phpstan/phpstan": "^1.12",
  11158. "phpunit/phpunit": "^8.5"
  11159. },
  11160. "bin": [
  11161. "bin/validate-json"
  11162. ],
  11163. "type": "library",
  11164. "extra": {
  11165. "branch-alias": {
  11166. "dev-master": "6.x-dev"
  11167. }
  11168. },
  11169. "autoload": {
  11170. "psr-4": {
  11171. "JsonSchema\\": "src/JsonSchema/"
  11172. }
  11173. },
  11174. "notification-url": "https://packagist.org/downloads/",
  11175. "license": [
  11176. "MIT"
  11177. ],
  11178. "authors": [
  11179. {
  11180. "name": "Bruno Prieto Reis",
  11181. "email": "[email protected]"
  11182. },
  11183. {
  11184. "name": "Justin Rainbow",
  11185. "email": "[email protected]"
  11186. },
  11187. {
  11188. "name": "Igor Wiedler",
  11189. "email": "[email protected]"
  11190. },
  11191. {
  11192. "name": "Robert Schönthal",
  11193. "email": "[email protected]"
  11194. }
  11195. ],
  11196. "description": "A library to validate a json schema.",
  11197. "homepage": "https://github.com/jsonrainbow/json-schema",
  11198. "keywords": [
  11199. "json",
  11200. "schema"
  11201. ],
  11202. "support": {
  11203. "issues": "https://github.com/jsonrainbow/json-schema/issues",
  11204. "source": "https://github.com/jsonrainbow/json-schema/tree/6.4.2"
  11205. },
  11206. "time": "2025-06-03T18:27:04+00:00"
  11207. },
  11208. {
  11209. "name": "league/container",
  11210. "version": "5.1.0",
  11211. "source": {
  11212. "type": "git",
  11213. "url": "https://github.com/thephpleague/container.git",
  11214. "reference": "041c52d266763887fff2256fb5dc9392d808f8f3"
  11215. },
  11216. "dist": {
  11217. "type": "zip",
  11218. "url": "https://api.github.com/repos/thephpleague/container/zipball/041c52d266763887fff2256fb5dc9392d808f8f3",
  11219. "reference": "041c52d266763887fff2256fb5dc9392d808f8f3",
  11220. "shasum": ""
  11221. },
  11222. "require": {
  11223. "php": "^8.1",
  11224. "psr/container": "^2.0.2"
  11225. },
  11226. "provide": {
  11227. "psr/container-implementation": "^1.0"
  11228. },
  11229. "replace": {
  11230. "orno/di": "~2.0"
  11231. },
  11232. "require-dev": {
  11233. "nette/php-generator": "^4.1",
  11234. "nikic/php-parser": "^5.0",
  11235. "phpstan/phpstan": "^2.1.11",
  11236. "phpunit/phpunit": "^10.5.45|^11.5.15|^12.0",
  11237. "roave/security-advisories": "dev-latest",
  11238. "scrutinizer/ocular": "^1.9",
  11239. "squizlabs/php_codesniffer": "^3.9"
  11240. },
  11241. "type": "library",
  11242. "extra": {
  11243. "branch-alias": {
  11244. "dev-1.x": "1.x-dev",
  11245. "dev-2.x": "2.x-dev",
  11246. "dev-3.x": "3.x-dev",
  11247. "dev-4.x": "4.x-dev",
  11248. "dev-5.x": "5.x-dev",
  11249. "dev-master": "5.x-dev"
  11250. }
  11251. },
  11252. "autoload": {
  11253. "psr-4": {
  11254. "League\\Container\\": "src"
  11255. }
  11256. },
  11257. "notification-url": "https://packagist.org/downloads/",
  11258. "license": [
  11259. "MIT"
  11260. ],
  11261. "authors": [
  11262. {
  11263. "name": "Phil Bennett",
  11264. "email": "[email protected]",
  11265. "role": "Developer"
  11266. }
  11267. ],
  11268. "description": "A fast and intuitive dependency injection container.",
  11269. "homepage": "https://github.com/thephpleague/container",
  11270. "keywords": [
  11271. "container",
  11272. "dependency",
  11273. "di",
  11274. "injection",
  11275. "league",
  11276. "provider",
  11277. "service"
  11278. ],
  11279. "support": {
  11280. "issues": "https://github.com/thephpleague/container/issues",
  11281. "source": "https://github.com/thephpleague/container/tree/5.1.0"
  11282. },
  11283. "funding": [
  11284. {
  11285. "url": "https://github.com/philipobenito",
  11286. "type": "github"
  11287. }
  11288. ],
  11289. "time": "2025-05-28T07:37:56+00:00"
  11290. },
  11291. {
  11292. "name": "marc-mabe/php-enum",
  11293. "version": "v4.7.1",
  11294. "source": {
  11295. "type": "git",
  11296. "url": "https://github.com/marc-mabe/php-enum.git",
  11297. "reference": "7159809e5cfa041dca28e61f7f7ae58063aae8ed"
  11298. },
  11299. "dist": {
  11300. "type": "zip",
  11301. "url": "https://api.github.com/repos/marc-mabe/php-enum/zipball/7159809e5cfa041dca28e61f7f7ae58063aae8ed",
  11302. "reference": "7159809e5cfa041dca28e61f7f7ae58063aae8ed",
  11303. "shasum": ""
  11304. },
  11305. "require": {
  11306. "ext-reflection": "*",
  11307. "php": "^7.1 | ^8.0"
  11308. },
  11309. "require-dev": {
  11310. "phpbench/phpbench": "^0.16.10 || ^1.0.4",
  11311. "phpstan/phpstan": "^1.3.1",
  11312. "phpunit/phpunit": "^7.5.20 | ^8.5.22 | ^9.5.11",
  11313. "vimeo/psalm": "^4.17.0 | ^5.26.1"
  11314. },
  11315. "type": "library",
  11316. "extra": {
  11317. "branch-alias": {
  11318. "dev-3.x": "3.2-dev",
  11319. "dev-master": "4.7-dev"
  11320. }
  11321. },
  11322. "autoload": {
  11323. "psr-4": {
  11324. "MabeEnum\\": "src/"
  11325. },
  11326. "classmap": [
  11327. "stubs/Stringable.php"
  11328. ]
  11329. },
  11330. "notification-url": "https://packagist.org/downloads/",
  11331. "license": [
  11332. "BSD-3-Clause"
  11333. ],
  11334. "authors": [
  11335. {
  11336. "name": "Marc Bennewitz",
  11337. "email": "[email protected]",
  11338. "homepage": "https://mabe.berlin/",
  11339. "role": "Lead"
  11340. }
  11341. ],
  11342. "description": "Simple and fast implementation of enumerations with native PHP",
  11343. "homepage": "https://github.com/marc-mabe/php-enum",
  11344. "keywords": [
  11345. "enum",
  11346. "enum-map",
  11347. "enum-set",
  11348. "enumeration",
  11349. "enumerator",
  11350. "enummap",
  11351. "enumset",
  11352. "map",
  11353. "set",
  11354. "type",
  11355. "type-hint",
  11356. "typehint"
  11357. ],
  11358. "support": {
  11359. "issues": "https://github.com/marc-mabe/php-enum/issues",
  11360. "source": "https://github.com/marc-mabe/php-enum/tree/v4.7.1"
  11361. },
  11362. "time": "2024-11-28T04:54:44+00:00"
  11363. },
  11364. {
  11365. "name": "myclabs/deep-copy",
  11366. "version": "1.13.4",
  11367. "source": {
  11368. "type": "git",
  11369. "url": "https://github.com/myclabs/DeepCopy.git",
  11370. "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a"
  11371. },
  11372. "dist": {
  11373. "type": "zip",
  11374. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a",
  11375. "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a",
  11376. "shasum": ""
  11377. },
  11378. "require": {
  11379. "php": "^7.1 || ^8.0"
  11380. },
  11381. "conflict": {
  11382. "doctrine/collections": "<1.6.8",
  11383. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  11384. },
  11385. "require-dev": {
  11386. "doctrine/collections": "^1.6.8",
  11387. "doctrine/common": "^2.13.3 || ^3.2.2",
  11388. "phpspec/prophecy": "^1.10",
  11389. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  11390. },
  11391. "type": "library",
  11392. "autoload": {
  11393. "files": [
  11394. "src/DeepCopy/deep_copy.php"
  11395. ],
  11396. "psr-4": {
  11397. "DeepCopy\\": "src/DeepCopy/"
  11398. }
  11399. },
  11400. "notification-url": "https://packagist.org/downloads/",
  11401. "license": [
  11402. "MIT"
  11403. ],
  11404. "description": "Create deep copies (clones) of your objects",
  11405. "keywords": [
  11406. "clone",
  11407. "copy",
  11408. "duplicate",
  11409. "object",
  11410. "object graph"
  11411. ],
  11412. "support": {
  11413. "issues": "https://github.com/myclabs/DeepCopy/issues",
  11414. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.4"
  11415. },
  11416. "funding": [
  11417. {
  11418. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  11419. "type": "tidelift"
  11420. }
  11421. ],
  11422. "time": "2025-08-01T08:46:24+00:00"
  11423. },
  11424. {
  11425. "name": "nikic/php-parser",
  11426. "version": "v5.6.0",
  11427. "source": {
  11428. "type": "git",
  11429. "url": "https://github.com/nikic/PHP-Parser.git",
  11430. "reference": "221b0d0fdf1369c71047ad1d18bb5880017bbc56"
  11431. },
  11432. "dist": {
  11433. "type": "zip",
  11434. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/221b0d0fdf1369c71047ad1d18bb5880017bbc56",
  11435. "reference": "221b0d0fdf1369c71047ad1d18bb5880017bbc56",
  11436. "shasum": ""
  11437. },
  11438. "require": {
  11439. "ext-ctype": "*",
  11440. "ext-json": "*",
  11441. "ext-tokenizer": "*",
  11442. "php": ">=7.4"
  11443. },
  11444. "require-dev": {
  11445. "ircmaxell/php-yacc": "^0.0.7",
  11446. "phpunit/phpunit": "^9.0"
  11447. },
  11448. "bin": [
  11449. "bin/php-parse"
  11450. ],
  11451. "type": "library",
  11452. "extra": {
  11453. "branch-alias": {
  11454. "dev-master": "5.0-dev"
  11455. }
  11456. },
  11457. "autoload": {
  11458. "psr-4": {
  11459. "PhpParser\\": "lib/PhpParser"
  11460. }
  11461. },
  11462. "notification-url": "https://packagist.org/downloads/",
  11463. "license": [
  11464. "BSD-3-Clause"
  11465. ],
  11466. "authors": [
  11467. {
  11468. "name": "Nikita Popov"
  11469. }
  11470. ],
  11471. "description": "A PHP parser written in PHP",
  11472. "keywords": [
  11473. "parser",
  11474. "php"
  11475. ],
  11476. "support": {
  11477. "issues": "https://github.com/nikic/PHP-Parser/issues",
  11478. "source": "https://github.com/nikic/PHP-Parser/tree/v5.6.0"
  11479. },
  11480. "time": "2025-07-27T20:03:57+00:00"
  11481. },
  11482. {
  11483. "name": "nunomaduro/phpinsights",
  11484. "version": "v2.13.1",
  11485. "source": {
  11486. "type": "git",
  11487. "url": "https://github.com/nunomaduro/phpinsights.git",
  11488. "reference": "77572bb0d3a6fbbd36aa000a619fd5c89b10d3df"
  11489. },
  11490. "dist": {
  11491. "type": "zip",
  11492. "url": "https://api.github.com/repos/nunomaduro/phpinsights/zipball/77572bb0d3a6fbbd36aa000a619fd5c89b10d3df",
  11493. "reference": "77572bb0d3a6fbbd36aa000a619fd5c89b10d3df",
  11494. "shasum": ""
  11495. },
  11496. "require": {
  11497. "cmgmyr/phploc": "^8.0.6",
  11498. "composer/semver": "^3.4.3",
  11499. "ext-iconv": "*",
  11500. "ext-json": "*",
  11501. "ext-mbstring": "*",
  11502. "ext-tokenizer": "*",
  11503. "friendsofphp/php-cs-fixer": "^3.74.0",
  11504. "justinrainbow/json-schema": "^6.3.1",
  11505. "league/container": "^5.0.1",
  11506. "php": "^8.1",
  11507. "php-parallel-lint/php-parallel-lint": "^1.4.0",
  11508. "psr/container": "^2.0.2",
  11509. "psr/simple-cache": "^2.0|^3.0",
  11510. "sebastian/diff": "^5.1.1|^6.0.2|^7.0.0",
  11511. "slevomat/coding-standard": "^8.16.2",
  11512. "squizlabs/php_codesniffer": "^3.12.0",
  11513. "symfony/cache": "^6.4.20|^7.2.5",
  11514. "symfony/console": "^6.4.20|^7.2.5",
  11515. "symfony/finder": "^6.4.17|^7.2.2",
  11516. "symfony/http-client": "^6.4.19|^7.2.4",
  11517. "symfony/process": "^6.4.20|^7.2.5"
  11518. },
  11519. "require-dev": {
  11520. "illuminate/console": "^10.48.28|^11.44.2|^12.4",
  11521. "illuminate/support": "^10.48.28|^11.44.2|^12.4",
  11522. "mockery/mockery": "^1.6.12",
  11523. "phpstan/phpstan": "^2.1.11",
  11524. "phpunit/phpunit": "^10.5.45|^11.5.15",
  11525. "symfony/var-dumper": "^6.4.18|^7.2.3"
  11526. },
  11527. "suggest": {
  11528. "ext-simplexml": "It is needed for the checkstyle formatter"
  11529. },
  11530. "bin": [
  11531. "bin/phpinsights"
  11532. ],
  11533. "type": "library",
  11534. "extra": {
  11535. "laravel": {
  11536. "providers": [
  11537. "NunoMaduro\\PhpInsights\\Application\\Adapters\\Laravel\\InsightsServiceProvider"
  11538. ]
  11539. }
  11540. },
  11541. "autoload": {
  11542. "psr-4": {
  11543. "NunoMaduro\\PhpInsights\\": "src"
  11544. }
  11545. },
  11546. "notification-url": "https://packagist.org/downloads/",
  11547. "license": [
  11548. "MIT"
  11549. ],
  11550. "authors": [
  11551. {
  11552. "name": "Nuno Maduro",
  11553. "email": "[email protected]"
  11554. }
  11555. ],
  11556. "description": "Instant PHP quality checks from your console.",
  11557. "keywords": [
  11558. "Insights",
  11559. "code",
  11560. "console",
  11561. "php",
  11562. "quality",
  11563. "source"
  11564. ],
  11565. "support": {
  11566. "issues": "https://github.com/nunomaduro/phpinsights/issues",
  11567. "source": "https://github.com/nunomaduro/phpinsights/tree/v2.13.1"
  11568. },
  11569. "funding": [
  11570. {
  11571. "url": "https://github.com/nunomaduro",
  11572. "type": "github"
  11573. }
  11574. ],
  11575. "time": "2025-03-30T15:28:32+00:00"
  11576. },
  11577. {
  11578. "name": "phar-io/manifest",
  11579. "version": "2.0.4",
  11580. "source": {
  11581. "type": "git",
  11582. "url": "https://github.com/phar-io/manifest.git",
  11583. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  11584. },
  11585. "dist": {
  11586. "type": "zip",
  11587. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  11588. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  11589. "shasum": ""
  11590. },
  11591. "require": {
  11592. "ext-dom": "*",
  11593. "ext-libxml": "*",
  11594. "ext-phar": "*",
  11595. "ext-xmlwriter": "*",
  11596. "phar-io/version": "^3.0.1",
  11597. "php": "^7.2 || ^8.0"
  11598. },
  11599. "type": "library",
  11600. "extra": {
  11601. "branch-alias": {
  11602. "dev-master": "2.0.x-dev"
  11603. }
  11604. },
  11605. "autoload": {
  11606. "classmap": [
  11607. "src/"
  11608. ]
  11609. },
  11610. "notification-url": "https://packagist.org/downloads/",
  11611. "license": [
  11612. "BSD-3-Clause"
  11613. ],
  11614. "authors": [
  11615. {
  11616. "name": "Arne Blankerts",
  11617. "email": "[email protected]",
  11618. "role": "Developer"
  11619. },
  11620. {
  11621. "name": "Sebastian Heuer",
  11622. "email": "[email protected]",
  11623. "role": "Developer"
  11624. },
  11625. {
  11626. "name": "Sebastian Bergmann",
  11627. "email": "[email protected]",
  11628. "role": "Developer"
  11629. }
  11630. ],
  11631. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  11632. "support": {
  11633. "issues": "https://github.com/phar-io/manifest/issues",
  11634. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  11635. },
  11636. "funding": [
  11637. {
  11638. "url": "https://github.com/theseer",
  11639. "type": "github"
  11640. }
  11641. ],
  11642. "time": "2024-03-03T12:33:53+00:00"
  11643. },
  11644. {
  11645. "name": "phar-io/version",
  11646. "version": "3.2.1",
  11647. "source": {
  11648. "type": "git",
  11649. "url": "https://github.com/phar-io/version.git",
  11650. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  11651. },
  11652. "dist": {
  11653. "type": "zip",
  11654. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  11655. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  11656. "shasum": ""
  11657. },
  11658. "require": {
  11659. "php": "^7.2 || ^8.0"
  11660. },
  11661. "type": "library",
  11662. "autoload": {
  11663. "classmap": [
  11664. "src/"
  11665. ]
  11666. },
  11667. "notification-url": "https://packagist.org/downloads/",
  11668. "license": [
  11669. "BSD-3-Clause"
  11670. ],
  11671. "authors": [
  11672. {
  11673. "name": "Arne Blankerts",
  11674. "email": "[email protected]",
  11675. "role": "Developer"
  11676. },
  11677. {
  11678. "name": "Sebastian Heuer",
  11679. "email": "[email protected]",
  11680. "role": "Developer"
  11681. },
  11682. {
  11683. "name": "Sebastian Bergmann",
  11684. "email": "[email protected]",
  11685. "role": "Developer"
  11686. }
  11687. ],
  11688. "description": "Library for handling version information and constraints",
  11689. "support": {
  11690. "issues": "https://github.com/phar-io/version/issues",
  11691. "source": "https://github.com/phar-io/version/tree/3.2.1"
  11692. },
  11693. "time": "2022-02-21T01:04:05+00:00"
  11694. },
  11695. {
  11696. "name": "php-parallel-lint/php-parallel-lint",
  11697. "version": "v1.4.0",
  11698. "source": {
  11699. "type": "git",
  11700. "url": "https://github.com/php-parallel-lint/PHP-Parallel-Lint.git",
  11701. "reference": "6db563514f27e19595a19f45a4bf757b6401194e"
  11702. },
  11703. "dist": {
  11704. "type": "zip",
  11705. "url": "https://api.github.com/repos/php-parallel-lint/PHP-Parallel-Lint/zipball/6db563514f27e19595a19f45a4bf757b6401194e",
  11706. "reference": "6db563514f27e19595a19f45a4bf757b6401194e",
  11707. "shasum": ""
  11708. },
  11709. "require": {
  11710. "ext-json": "*",
  11711. "php": ">=5.3.0"
  11712. },
  11713. "replace": {
  11714. "grogy/php-parallel-lint": "*",
  11715. "jakub-onderka/php-parallel-lint": "*"
  11716. },
  11717. "require-dev": {
  11718. "nette/tester": "^1.3 || ^2.0",
  11719. "php-parallel-lint/php-console-highlighter": "0.* || ^1.0",
  11720. "squizlabs/php_codesniffer": "^3.6"
  11721. },
  11722. "suggest": {
  11723. "php-parallel-lint/php-console-highlighter": "Highlight syntax in code snippet"
  11724. },
  11725. "bin": [
  11726. "parallel-lint"
  11727. ],
  11728. "type": "library",
  11729. "autoload": {
  11730. "classmap": [
  11731. "./src/"
  11732. ]
  11733. },
  11734. "notification-url": "https://packagist.org/downloads/",
  11735. "license": [
  11736. "BSD-2-Clause"
  11737. ],
  11738. "authors": [
  11739. {
  11740. "name": "Jakub Onderka",
  11741. "email": "[email protected]"
  11742. }
  11743. ],
  11744. "description": "This tool checks the syntax of PHP files about 20x faster than serial check.",
  11745. "homepage": "https://github.com/php-parallel-lint/PHP-Parallel-Lint",
  11746. "keywords": [
  11747. "lint",
  11748. "static analysis"
  11749. ],
  11750. "support": {
  11751. "issues": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/issues",
  11752. "source": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/tree/v1.4.0"
  11753. },
  11754. "time": "2024-03-27T12:14:49+00:00"
  11755. },
  11756. {
  11757. "name": "phpunit/php-code-coverage",
  11758. "version": "11.0.10",
  11759. "source": {
  11760. "type": "git",
  11761. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  11762. "reference": "1a800a7446add2d79cc6b3c01c45381810367d76"
  11763. },
  11764. "dist": {
  11765. "type": "zip",
  11766. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/1a800a7446add2d79cc6b3c01c45381810367d76",
  11767. "reference": "1a800a7446add2d79cc6b3c01c45381810367d76",
  11768. "shasum": ""
  11769. },
  11770. "require": {
  11771. "ext-dom": "*",
  11772. "ext-libxml": "*",
  11773. "ext-xmlwriter": "*",
  11774. "nikic/php-parser": "^5.4.0",
  11775. "php": ">=8.2",
  11776. "phpunit/php-file-iterator": "^5.1.0",
  11777. "phpunit/php-text-template": "^4.0.1",
  11778. "sebastian/code-unit-reverse-lookup": "^4.0.1",
  11779. "sebastian/complexity": "^4.0.1",
  11780. "sebastian/environment": "^7.2.0",
  11781. "sebastian/lines-of-code": "^3.0.1",
  11782. "sebastian/version": "^5.0.2",
  11783. "theseer/tokenizer": "^1.2.3"
  11784. },
  11785. "require-dev": {
  11786. "phpunit/phpunit": "^11.5.2"
  11787. },
  11788. "suggest": {
  11789. "ext-pcov": "PHP extension that provides line coverage",
  11790. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  11791. },
  11792. "type": "library",
  11793. "extra": {
  11794. "branch-alias": {
  11795. "dev-main": "11.0.x-dev"
  11796. }
  11797. },
  11798. "autoload": {
  11799. "classmap": [
  11800. "src/"
  11801. ]
  11802. },
  11803. "notification-url": "https://packagist.org/downloads/",
  11804. "license": [
  11805. "BSD-3-Clause"
  11806. ],
  11807. "authors": [
  11808. {
  11809. "name": "Sebastian Bergmann",
  11810. "email": "[email protected]",
  11811. "role": "lead"
  11812. }
  11813. ],
  11814. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  11815. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  11816. "keywords": [
  11817. "coverage",
  11818. "testing",
  11819. "xunit"
  11820. ],
  11821. "support": {
  11822. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  11823. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  11824. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/show"
  11825. },
  11826. "funding": [
  11827. {
  11828. "url": "https://github.com/sebastianbergmann",
  11829. "type": "github"
  11830. },
  11831. {
  11832. "url": "https://liberapay.com/sebastianbergmann",
  11833. "type": "liberapay"
  11834. },
  11835. {
  11836. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  11837. "type": "thanks_dev"
  11838. },
  11839. {
  11840. "url": "https://tidelift.com/funding/github/packagist/phpunit/php-code-coverage",
  11841. "type": "tidelift"
  11842. }
  11843. ],
  11844. "time": "2025-06-18T08:56:18+00:00"
  11845. },
  11846. {
  11847. "name": "phpunit/php-file-iterator",
  11848. "version": "5.1.0",
  11849. "source": {
  11850. "type": "git",
  11851. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  11852. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6"
  11853. },
  11854. "dist": {
  11855. "type": "zip",
  11856. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6",
  11857. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6",
  11858. "shasum": ""
  11859. },
  11860. "require": {
  11861. "php": ">=8.2"
  11862. },
  11863. "require-dev": {
  11864. "phpunit/phpunit": "^11.0"
  11865. },
  11866. "type": "library",
  11867. "extra": {
  11868. "branch-alias": {
  11869. "dev-main": "5.0-dev"
  11870. }
  11871. },
  11872. "autoload": {
  11873. "classmap": [
  11874. "src/"
  11875. ]
  11876. },
  11877. "notification-url": "https://packagist.org/downloads/",
  11878. "license": [
  11879. "BSD-3-Clause"
  11880. ],
  11881. "authors": [
  11882. {
  11883. "name": "Sebastian Bergmann",
  11884. "email": "[email protected]",
  11885. "role": "lead"
  11886. }
  11887. ],
  11888. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  11889. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  11890. "keywords": [
  11891. "filesystem",
  11892. "iterator"
  11893. ],
  11894. "support": {
  11895. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  11896. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  11897. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0"
  11898. },
  11899. "funding": [
  11900. {
  11901. "url": "https://github.com/sebastianbergmann",
  11902. "type": "github"
  11903. }
  11904. ],
  11905. "time": "2024-08-27T05:02:59+00:00"
  11906. },
  11907. {
  11908. "name": "phpunit/php-invoker",
  11909. "version": "5.0.1",
  11910. "source": {
  11911. "type": "git",
  11912. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  11913. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
  11914. },
  11915. "dist": {
  11916. "type": "zip",
  11917. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
  11918. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
  11919. "shasum": ""
  11920. },
  11921. "require": {
  11922. "php": ">=8.2"
  11923. },
  11924. "require-dev": {
  11925. "ext-pcntl": "*",
  11926. "phpunit/phpunit": "^11.0"
  11927. },
  11928. "suggest": {
  11929. "ext-pcntl": "*"
  11930. },
  11931. "type": "library",
  11932. "extra": {
  11933. "branch-alias": {
  11934. "dev-main": "5.0-dev"
  11935. }
  11936. },
  11937. "autoload": {
  11938. "classmap": [
  11939. "src/"
  11940. ]
  11941. },
  11942. "notification-url": "https://packagist.org/downloads/",
  11943. "license": [
  11944. "BSD-3-Clause"
  11945. ],
  11946. "authors": [
  11947. {
  11948. "name": "Sebastian Bergmann",
  11949. "email": "[email protected]",
  11950. "role": "lead"
  11951. }
  11952. ],
  11953. "description": "Invoke callables with a timeout",
  11954. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  11955. "keywords": [
  11956. "process"
  11957. ],
  11958. "support": {
  11959. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  11960. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  11961. "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
  11962. },
  11963. "funding": [
  11964. {
  11965. "url": "https://github.com/sebastianbergmann",
  11966. "type": "github"
  11967. }
  11968. ],
  11969. "time": "2024-07-03T05:07:44+00:00"
  11970. },
  11971. {
  11972. "name": "phpunit/php-text-template",
  11973. "version": "4.0.1",
  11974. "source": {
  11975. "type": "git",
  11976. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  11977. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
  11978. },
  11979. "dist": {
  11980. "type": "zip",
  11981. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  11982. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  11983. "shasum": ""
  11984. },
  11985. "require": {
  11986. "php": ">=8.2"
  11987. },
  11988. "require-dev": {
  11989. "phpunit/phpunit": "^11.0"
  11990. },
  11991. "type": "library",
  11992. "extra": {
  11993. "branch-alias": {
  11994. "dev-main": "4.0-dev"
  11995. }
  11996. },
  11997. "autoload": {
  11998. "classmap": [
  11999. "src/"
  12000. ]
  12001. },
  12002. "notification-url": "https://packagist.org/downloads/",
  12003. "license": [
  12004. "BSD-3-Clause"
  12005. ],
  12006. "authors": [
  12007. {
  12008. "name": "Sebastian Bergmann",
  12009. "email": "[email protected]",
  12010. "role": "lead"
  12011. }
  12012. ],
  12013. "description": "Simple template engine.",
  12014. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  12015. "keywords": [
  12016. "template"
  12017. ],
  12018. "support": {
  12019. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  12020. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  12021. "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
  12022. },
  12023. "funding": [
  12024. {
  12025. "url": "https://github.com/sebastianbergmann",
  12026. "type": "github"
  12027. }
  12028. ],
  12029. "time": "2024-07-03T05:08:43+00:00"
  12030. },
  12031. {
  12032. "name": "phpunit/php-timer",
  12033. "version": "7.0.1",
  12034. "source": {
  12035. "type": "git",
  12036. "url": "https://github.com/sebastianbergmann/php-timer.git",
  12037. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
  12038. },
  12039. "dist": {
  12040. "type": "zip",
  12041. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  12042. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  12043. "shasum": ""
  12044. },
  12045. "require": {
  12046. "php": ">=8.2"
  12047. },
  12048. "require-dev": {
  12049. "phpunit/phpunit": "^11.0"
  12050. },
  12051. "type": "library",
  12052. "extra": {
  12053. "branch-alias": {
  12054. "dev-main": "7.0-dev"
  12055. }
  12056. },
  12057. "autoload": {
  12058. "classmap": [
  12059. "src/"
  12060. ]
  12061. },
  12062. "notification-url": "https://packagist.org/downloads/",
  12063. "license": [
  12064. "BSD-3-Clause"
  12065. ],
  12066. "authors": [
  12067. {
  12068. "name": "Sebastian Bergmann",
  12069. "email": "[email protected]",
  12070. "role": "lead"
  12071. }
  12072. ],
  12073. "description": "Utility class for timing",
  12074. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  12075. "keywords": [
  12076. "timer"
  12077. ],
  12078. "support": {
  12079. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  12080. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  12081. "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
  12082. },
  12083. "funding": [
  12084. {
  12085. "url": "https://github.com/sebastianbergmann",
  12086. "type": "github"
  12087. }
  12088. ],
  12089. "time": "2024-07-03T05:09:35+00:00"
  12090. },
  12091. {
  12092. "name": "phpunit/phpunit",
  12093. "version": "11.5.28",
  12094. "source": {
  12095. "type": "git",
  12096. "url": "https://github.com/sebastianbergmann/phpunit.git",
  12097. "reference": "93f30aa3889e785ac63493d4976df0ae9fdecb60"
  12098. },
  12099. "dist": {
  12100. "type": "zip",
  12101. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/93f30aa3889e785ac63493d4976df0ae9fdecb60",
  12102. "reference": "93f30aa3889e785ac63493d4976df0ae9fdecb60",
  12103. "shasum": ""
  12104. },
  12105. "require": {
  12106. "ext-dom": "*",
  12107. "ext-json": "*",
  12108. "ext-libxml": "*",
  12109. "ext-mbstring": "*",
  12110. "ext-xml": "*",
  12111. "ext-xmlwriter": "*",
  12112. "myclabs/deep-copy": "^1.13.3",
  12113. "phar-io/manifest": "^2.0.4",
  12114. "phar-io/version": "^3.2.1",
  12115. "php": ">=8.2",
  12116. "phpunit/php-code-coverage": "^11.0.10",
  12117. "phpunit/php-file-iterator": "^5.1.0",
  12118. "phpunit/php-invoker": "^5.0.1",
  12119. "phpunit/php-text-template": "^4.0.1",
  12120. "phpunit/php-timer": "^7.0.1",
  12121. "sebastian/cli-parser": "^3.0.2",
  12122. "sebastian/code-unit": "^3.0.3",
  12123. "sebastian/comparator": "^6.3.1",
  12124. "sebastian/diff": "^6.0.2",
  12125. "sebastian/environment": "^7.2.1",
  12126. "sebastian/exporter": "^6.3.0",
  12127. "sebastian/global-state": "^7.0.2",
  12128. "sebastian/object-enumerator": "^6.0.1",
  12129. "sebastian/type": "^5.1.2",
  12130. "sebastian/version": "^5.0.2",
  12131. "staabm/side-effects-detector": "^1.0.5"
  12132. },
  12133. "suggest": {
  12134. "ext-soap": "To be able to generate mocks based on WSDL files"
  12135. },
  12136. "bin": [
  12137. "phpunit"
  12138. ],
  12139. "type": "library",
  12140. "extra": {
  12141. "branch-alias": {
  12142. "dev-main": "11.5-dev"
  12143. }
  12144. },
  12145. "autoload": {
  12146. "files": [
  12147. "src/Framework/Assert/Functions.php"
  12148. ],
  12149. "classmap": [
  12150. "src/"
  12151. ]
  12152. },
  12153. "notification-url": "https://packagist.org/downloads/",
  12154. "license": [
  12155. "BSD-3-Clause"
  12156. ],
  12157. "authors": [
  12158. {
  12159. "name": "Sebastian Bergmann",
  12160. "email": "[email protected]",
  12161. "role": "lead"
  12162. }
  12163. ],
  12164. "description": "The PHP Unit Testing framework.",
  12165. "homepage": "https://phpunit.de/",
  12166. "keywords": [
  12167. "phpunit",
  12168. "testing",
  12169. "xunit"
  12170. ],
  12171. "support": {
  12172. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  12173. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  12174. "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.28"
  12175. },
  12176. "funding": [
  12177. {
  12178. "url": "https://phpunit.de/sponsors.html",
  12179. "type": "custom"
  12180. },
  12181. {
  12182. "url": "https://github.com/sebastianbergmann",
  12183. "type": "github"
  12184. },
  12185. {
  12186. "url": "https://liberapay.com/sebastianbergmann",
  12187. "type": "liberapay"
  12188. },
  12189. {
  12190. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  12191. "type": "thanks_dev"
  12192. },
  12193. {
  12194. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  12195. "type": "tidelift"
  12196. }
  12197. ],
  12198. "time": "2025-07-31T07:10:28+00:00"
  12199. },
  12200. {
  12201. "name": "react/cache",
  12202. "version": "v1.2.0",
  12203. "source": {
  12204. "type": "git",
  12205. "url": "https://github.com/reactphp/cache.git",
  12206. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  12207. },
  12208. "dist": {
  12209. "type": "zip",
  12210. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  12211. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  12212. "shasum": ""
  12213. },
  12214. "require": {
  12215. "php": ">=5.3.0",
  12216. "react/promise": "^3.0 || ^2.0 || ^1.1"
  12217. },
  12218. "require-dev": {
  12219. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  12220. },
  12221. "type": "library",
  12222. "autoload": {
  12223. "psr-4": {
  12224. "React\\Cache\\": "src/"
  12225. }
  12226. },
  12227. "notification-url": "https://packagist.org/downloads/",
  12228. "license": [
  12229. "MIT"
  12230. ],
  12231. "authors": [
  12232. {
  12233. "name": "Christian Lück",
  12234. "email": "[email protected]",
  12235. "homepage": "https://clue.engineering/"
  12236. },
  12237. {
  12238. "name": "Cees-Jan Kiewiet",
  12239. "email": "[email protected]",
  12240. "homepage": "https://wyrihaximus.net/"
  12241. },
  12242. {
  12243. "name": "Jan Sorgalla",
  12244. "email": "[email protected]",
  12245. "homepage": "https://sorgalla.com/"
  12246. },
  12247. {
  12248. "name": "Chris Boden",
  12249. "email": "[email protected]",
  12250. "homepage": "https://cboden.dev/"
  12251. }
  12252. ],
  12253. "description": "Async, Promise-based cache interface for ReactPHP",
  12254. "keywords": [
  12255. "cache",
  12256. "caching",
  12257. "promise",
  12258. "reactphp"
  12259. ],
  12260. "support": {
  12261. "issues": "https://github.com/reactphp/cache/issues",
  12262. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  12263. },
  12264. "funding": [
  12265. {
  12266. "url": "https://opencollective.com/reactphp",
  12267. "type": "open_collective"
  12268. }
  12269. ],
  12270. "time": "2022-11-30T15:59:55+00:00"
  12271. },
  12272. {
  12273. "name": "react/child-process",
  12274. "version": "v0.6.6",
  12275. "source": {
  12276. "type": "git",
  12277. "url": "https://github.com/reactphp/child-process.git",
  12278. "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159"
  12279. },
  12280. "dist": {
  12281. "type": "zip",
  12282. "url": "https://api.github.com/repos/reactphp/child-process/zipball/1721e2b93d89b745664353b9cfc8f155ba8a6159",
  12283. "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159",
  12284. "shasum": ""
  12285. },
  12286. "require": {
  12287. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  12288. "php": ">=5.3.0",
  12289. "react/event-loop": "^1.2",
  12290. "react/stream": "^1.4"
  12291. },
  12292. "require-dev": {
  12293. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  12294. "react/socket": "^1.16",
  12295. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  12296. },
  12297. "type": "library",
  12298. "autoload": {
  12299. "psr-4": {
  12300. "React\\ChildProcess\\": "src/"
  12301. }
  12302. },
  12303. "notification-url": "https://packagist.org/downloads/",
  12304. "license": [
  12305. "MIT"
  12306. ],
  12307. "authors": [
  12308. {
  12309. "name": "Christian Lück",
  12310. "email": "[email protected]",
  12311. "homepage": "https://clue.engineering/"
  12312. },
  12313. {
  12314. "name": "Cees-Jan Kiewiet",
  12315. "email": "[email protected]",
  12316. "homepage": "https://wyrihaximus.net/"
  12317. },
  12318. {
  12319. "name": "Jan Sorgalla",
  12320. "email": "[email protected]",
  12321. "homepage": "https://sorgalla.com/"
  12322. },
  12323. {
  12324. "name": "Chris Boden",
  12325. "email": "[email protected]",
  12326. "homepage": "https://cboden.dev/"
  12327. }
  12328. ],
  12329. "description": "Event-driven library for executing child processes with ReactPHP.",
  12330. "keywords": [
  12331. "event-driven",
  12332. "process",
  12333. "reactphp"
  12334. ],
  12335. "support": {
  12336. "issues": "https://github.com/reactphp/child-process/issues",
  12337. "source": "https://github.com/reactphp/child-process/tree/v0.6.6"
  12338. },
  12339. "funding": [
  12340. {
  12341. "url": "https://opencollective.com/reactphp",
  12342. "type": "open_collective"
  12343. }
  12344. ],
  12345. "time": "2025-01-01T16:37:48+00:00"
  12346. },
  12347. {
  12348. "name": "react/dns",
  12349. "version": "v1.13.0",
  12350. "source": {
  12351. "type": "git",
  12352. "url": "https://github.com/reactphp/dns.git",
  12353. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  12354. },
  12355. "dist": {
  12356. "type": "zip",
  12357. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  12358. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  12359. "shasum": ""
  12360. },
  12361. "require": {
  12362. "php": ">=5.3.0",
  12363. "react/cache": "^1.0 || ^0.6 || ^0.5",
  12364. "react/event-loop": "^1.2",
  12365. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  12366. },
  12367. "require-dev": {
  12368. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  12369. "react/async": "^4.3 || ^3 || ^2",
  12370. "react/promise-timer": "^1.11"
  12371. },
  12372. "type": "library",
  12373. "autoload": {
  12374. "psr-4": {
  12375. "React\\Dns\\": "src/"
  12376. }
  12377. },
  12378. "notification-url": "https://packagist.org/downloads/",
  12379. "license": [
  12380. "MIT"
  12381. ],
  12382. "authors": [
  12383. {
  12384. "name": "Christian Lück",
  12385. "email": "[email protected]",
  12386. "homepage": "https://clue.engineering/"
  12387. },
  12388. {
  12389. "name": "Cees-Jan Kiewiet",
  12390. "email": "[email protected]",
  12391. "homepage": "https://wyrihaximus.net/"
  12392. },
  12393. {
  12394. "name": "Jan Sorgalla",
  12395. "email": "[email protected]",
  12396. "homepage": "https://sorgalla.com/"
  12397. },
  12398. {
  12399. "name": "Chris Boden",
  12400. "email": "[email protected]",
  12401. "homepage": "https://cboden.dev/"
  12402. }
  12403. ],
  12404. "description": "Async DNS resolver for ReactPHP",
  12405. "keywords": [
  12406. "async",
  12407. "dns",
  12408. "dns-resolver",
  12409. "reactphp"
  12410. ],
  12411. "support": {
  12412. "issues": "https://github.com/reactphp/dns/issues",
  12413. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  12414. },
  12415. "funding": [
  12416. {
  12417. "url": "https://opencollective.com/reactphp",
  12418. "type": "open_collective"
  12419. }
  12420. ],
  12421. "time": "2024-06-13T14:18:03+00:00"
  12422. },
  12423. {
  12424. "name": "react/event-loop",
  12425. "version": "v1.5.0",
  12426. "source": {
  12427. "type": "git",
  12428. "url": "https://github.com/reactphp/event-loop.git",
  12429. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  12430. },
  12431. "dist": {
  12432. "type": "zip",
  12433. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  12434. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  12435. "shasum": ""
  12436. },
  12437. "require": {
  12438. "php": ">=5.3.0"
  12439. },
  12440. "require-dev": {
  12441. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  12442. },
  12443. "suggest": {
  12444. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  12445. },
  12446. "type": "library",
  12447. "autoload": {
  12448. "psr-4": {
  12449. "React\\EventLoop\\": "src/"
  12450. }
  12451. },
  12452. "notification-url": "https://packagist.org/downloads/",
  12453. "license": [
  12454. "MIT"
  12455. ],
  12456. "authors": [
  12457. {
  12458. "name": "Christian Lück",
  12459. "email": "[email protected]",
  12460. "homepage": "https://clue.engineering/"
  12461. },
  12462. {
  12463. "name": "Cees-Jan Kiewiet",
  12464. "email": "[email protected]",
  12465. "homepage": "https://wyrihaximus.net/"
  12466. },
  12467. {
  12468. "name": "Jan Sorgalla",
  12469. "email": "[email protected]",
  12470. "homepage": "https://sorgalla.com/"
  12471. },
  12472. {
  12473. "name": "Chris Boden",
  12474. "email": "[email protected]",
  12475. "homepage": "https://cboden.dev/"
  12476. }
  12477. ],
  12478. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  12479. "keywords": [
  12480. "asynchronous",
  12481. "event-loop"
  12482. ],
  12483. "support": {
  12484. "issues": "https://github.com/reactphp/event-loop/issues",
  12485. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  12486. },
  12487. "funding": [
  12488. {
  12489. "url": "https://opencollective.com/reactphp",
  12490. "type": "open_collective"
  12491. }
  12492. ],
  12493. "time": "2023-11-13T13:48:05+00:00"
  12494. },
  12495. {
  12496. "name": "react/promise",
  12497. "version": "v3.2.0",
  12498. "source": {
  12499. "type": "git",
  12500. "url": "https://github.com/reactphp/promise.git",
  12501. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  12502. },
  12503. "dist": {
  12504. "type": "zip",
  12505. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  12506. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  12507. "shasum": ""
  12508. },
  12509. "require": {
  12510. "php": ">=7.1.0"
  12511. },
  12512. "require-dev": {
  12513. "phpstan/phpstan": "1.10.39 || 1.4.10",
  12514. "phpunit/phpunit": "^9.6 || ^7.5"
  12515. },
  12516. "type": "library",
  12517. "autoload": {
  12518. "files": [
  12519. "src/functions_include.php"
  12520. ],
  12521. "psr-4": {
  12522. "React\\Promise\\": "src/"
  12523. }
  12524. },
  12525. "notification-url": "https://packagist.org/downloads/",
  12526. "license": [
  12527. "MIT"
  12528. ],
  12529. "authors": [
  12530. {
  12531. "name": "Jan Sorgalla",
  12532. "email": "[email protected]",
  12533. "homepage": "https://sorgalla.com/"
  12534. },
  12535. {
  12536. "name": "Christian Lück",
  12537. "email": "[email protected]",
  12538. "homepage": "https://clue.engineering/"
  12539. },
  12540. {
  12541. "name": "Cees-Jan Kiewiet",
  12542. "email": "[email protected]",
  12543. "homepage": "https://wyrihaximus.net/"
  12544. },
  12545. {
  12546. "name": "Chris Boden",
  12547. "email": "[email protected]",
  12548. "homepage": "https://cboden.dev/"
  12549. }
  12550. ],
  12551. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  12552. "keywords": [
  12553. "promise",
  12554. "promises"
  12555. ],
  12556. "support": {
  12557. "issues": "https://github.com/reactphp/promise/issues",
  12558. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  12559. },
  12560. "funding": [
  12561. {
  12562. "url": "https://opencollective.com/reactphp",
  12563. "type": "open_collective"
  12564. }
  12565. ],
  12566. "time": "2024-05-24T10:39:05+00:00"
  12567. },
  12568. {
  12569. "name": "react/socket",
  12570. "version": "v1.16.0",
  12571. "source": {
  12572. "type": "git",
  12573. "url": "https://github.com/reactphp/socket.git",
  12574. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  12575. },
  12576. "dist": {
  12577. "type": "zip",
  12578. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  12579. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  12580. "shasum": ""
  12581. },
  12582. "require": {
  12583. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  12584. "php": ">=5.3.0",
  12585. "react/dns": "^1.13",
  12586. "react/event-loop": "^1.2",
  12587. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  12588. "react/stream": "^1.4"
  12589. },
  12590. "require-dev": {
  12591. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  12592. "react/async": "^4.3 || ^3.3 || ^2",
  12593. "react/promise-stream": "^1.4",
  12594. "react/promise-timer": "^1.11"
  12595. },
  12596. "type": "library",
  12597. "autoload": {
  12598. "psr-4": {
  12599. "React\\Socket\\": "src/"
  12600. }
  12601. },
  12602. "notification-url": "https://packagist.org/downloads/",
  12603. "license": [
  12604. "MIT"
  12605. ],
  12606. "authors": [
  12607. {
  12608. "name": "Christian Lück",
  12609. "email": "[email protected]",
  12610. "homepage": "https://clue.engineering/"
  12611. },
  12612. {
  12613. "name": "Cees-Jan Kiewiet",
  12614. "email": "[email protected]",
  12615. "homepage": "https://wyrihaximus.net/"
  12616. },
  12617. {
  12618. "name": "Jan Sorgalla",
  12619. "email": "[email protected]",
  12620. "homepage": "https://sorgalla.com/"
  12621. },
  12622. {
  12623. "name": "Chris Boden",
  12624. "email": "[email protected]",
  12625. "homepage": "https://cboden.dev/"
  12626. }
  12627. ],
  12628. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  12629. "keywords": [
  12630. "Connection",
  12631. "Socket",
  12632. "async",
  12633. "reactphp",
  12634. "stream"
  12635. ],
  12636. "support": {
  12637. "issues": "https://github.com/reactphp/socket/issues",
  12638. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  12639. },
  12640. "funding": [
  12641. {
  12642. "url": "https://opencollective.com/reactphp",
  12643. "type": "open_collective"
  12644. }
  12645. ],
  12646. "time": "2024-07-26T10:38:09+00:00"
  12647. },
  12648. {
  12649. "name": "react/stream",
  12650. "version": "v1.4.0",
  12651. "source": {
  12652. "type": "git",
  12653. "url": "https://github.com/reactphp/stream.git",
  12654. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  12655. },
  12656. "dist": {
  12657. "type": "zip",
  12658. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  12659. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  12660. "shasum": ""
  12661. },
  12662. "require": {
  12663. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  12664. "php": ">=5.3.8",
  12665. "react/event-loop": "^1.2"
  12666. },
  12667. "require-dev": {
  12668. "clue/stream-filter": "~1.2",
  12669. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  12670. },
  12671. "type": "library",
  12672. "autoload": {
  12673. "psr-4": {
  12674. "React\\Stream\\": "src/"
  12675. }
  12676. },
  12677. "notification-url": "https://packagist.org/downloads/",
  12678. "license": [
  12679. "MIT"
  12680. ],
  12681. "authors": [
  12682. {
  12683. "name": "Christian Lück",
  12684. "email": "[email protected]",
  12685. "homepage": "https://clue.engineering/"
  12686. },
  12687. {
  12688. "name": "Cees-Jan Kiewiet",
  12689. "email": "[email protected]",
  12690. "homepage": "https://wyrihaximus.net/"
  12691. },
  12692. {
  12693. "name": "Jan Sorgalla",
  12694. "email": "[email protected]",
  12695. "homepage": "https://sorgalla.com/"
  12696. },
  12697. {
  12698. "name": "Chris Boden",
  12699. "email": "[email protected]",
  12700. "homepage": "https://cboden.dev/"
  12701. }
  12702. ],
  12703. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  12704. "keywords": [
  12705. "event-driven",
  12706. "io",
  12707. "non-blocking",
  12708. "pipe",
  12709. "reactphp",
  12710. "readable",
  12711. "stream",
  12712. "writable"
  12713. ],
  12714. "support": {
  12715. "issues": "https://github.com/reactphp/stream/issues",
  12716. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  12717. },
  12718. "funding": [
  12719. {
  12720. "url": "https://opencollective.com/reactphp",
  12721. "type": "open_collective"
  12722. }
  12723. ],
  12724. "time": "2024-06-11T12:45:25+00:00"
  12725. },
  12726. {
  12727. "name": "sebastian/cli-parser",
  12728. "version": "3.0.2",
  12729. "source": {
  12730. "type": "git",
  12731. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  12732. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
  12733. },
  12734. "dist": {
  12735. "type": "zip",
  12736. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
  12737. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
  12738. "shasum": ""
  12739. },
  12740. "require": {
  12741. "php": ">=8.2"
  12742. },
  12743. "require-dev": {
  12744. "phpunit/phpunit": "^11.0"
  12745. },
  12746. "type": "library",
  12747. "extra": {
  12748. "branch-alias": {
  12749. "dev-main": "3.0-dev"
  12750. }
  12751. },
  12752. "autoload": {
  12753. "classmap": [
  12754. "src/"
  12755. ]
  12756. },
  12757. "notification-url": "https://packagist.org/downloads/",
  12758. "license": [
  12759. "BSD-3-Clause"
  12760. ],
  12761. "authors": [
  12762. {
  12763. "name": "Sebastian Bergmann",
  12764. "email": "[email protected]",
  12765. "role": "lead"
  12766. }
  12767. ],
  12768. "description": "Library for parsing CLI options",
  12769. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  12770. "support": {
  12771. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  12772. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  12773. "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
  12774. },
  12775. "funding": [
  12776. {
  12777. "url": "https://github.com/sebastianbergmann",
  12778. "type": "github"
  12779. }
  12780. ],
  12781. "time": "2024-07-03T04:41:36+00:00"
  12782. },
  12783. {
  12784. "name": "sebastian/code-unit",
  12785. "version": "3.0.3",
  12786. "source": {
  12787. "type": "git",
  12788. "url": "https://github.com/sebastianbergmann/code-unit.git",
  12789. "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64"
  12790. },
  12791. "dist": {
  12792. "type": "zip",
  12793. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/54391c61e4af8078e5b276ab082b6d3c54c9ad64",
  12794. "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64",
  12795. "shasum": ""
  12796. },
  12797. "require": {
  12798. "php": ">=8.2"
  12799. },
  12800. "require-dev": {
  12801. "phpunit/phpunit": "^11.5"
  12802. },
  12803. "type": "library",
  12804. "extra": {
  12805. "branch-alias": {
  12806. "dev-main": "3.0-dev"
  12807. }
  12808. },
  12809. "autoload": {
  12810. "classmap": [
  12811. "src/"
  12812. ]
  12813. },
  12814. "notification-url": "https://packagist.org/downloads/",
  12815. "license": [
  12816. "BSD-3-Clause"
  12817. ],
  12818. "authors": [
  12819. {
  12820. "name": "Sebastian Bergmann",
  12821. "email": "[email protected]",
  12822. "role": "lead"
  12823. }
  12824. ],
  12825. "description": "Collection of value objects that represent the PHP code units",
  12826. "homepage": "https://github.com/sebastianbergmann/code-unit",
  12827. "support": {
  12828. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  12829. "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
  12830. "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.3"
  12831. },
  12832. "funding": [
  12833. {
  12834. "url": "https://github.com/sebastianbergmann",
  12835. "type": "github"
  12836. }
  12837. ],
  12838. "time": "2025-03-19T07:56:08+00:00"
  12839. },
  12840. {
  12841. "name": "sebastian/code-unit-reverse-lookup",
  12842. "version": "4.0.1",
  12843. "source": {
  12844. "type": "git",
  12845. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  12846. "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
  12847. },
  12848. "dist": {
  12849. "type": "zip",
  12850. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
  12851. "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
  12852. "shasum": ""
  12853. },
  12854. "require": {
  12855. "php": ">=8.2"
  12856. },
  12857. "require-dev": {
  12858. "phpunit/phpunit": "^11.0"
  12859. },
  12860. "type": "library",
  12861. "extra": {
  12862. "branch-alias": {
  12863. "dev-main": "4.0-dev"
  12864. }
  12865. },
  12866. "autoload": {
  12867. "classmap": [
  12868. "src/"
  12869. ]
  12870. },
  12871. "notification-url": "https://packagist.org/downloads/",
  12872. "license": [
  12873. "BSD-3-Clause"
  12874. ],
  12875. "authors": [
  12876. {
  12877. "name": "Sebastian Bergmann",
  12878. "email": "[email protected]"
  12879. }
  12880. ],
  12881. "description": "Looks up which function or method a line of code belongs to",
  12882. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  12883. "support": {
  12884. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  12885. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
  12886. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
  12887. },
  12888. "funding": [
  12889. {
  12890. "url": "https://github.com/sebastianbergmann",
  12891. "type": "github"
  12892. }
  12893. ],
  12894. "time": "2024-07-03T04:45:54+00:00"
  12895. },
  12896. {
  12897. "name": "sebastian/comparator",
  12898. "version": "6.3.1",
  12899. "source": {
  12900. "type": "git",
  12901. "url": "https://github.com/sebastianbergmann/comparator.git",
  12902. "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959"
  12903. },
  12904. "dist": {
  12905. "type": "zip",
  12906. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/24b8fbc2c8e201bb1308e7b05148d6ab393b6959",
  12907. "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959",
  12908. "shasum": ""
  12909. },
  12910. "require": {
  12911. "ext-dom": "*",
  12912. "ext-mbstring": "*",
  12913. "php": ">=8.2",
  12914. "sebastian/diff": "^6.0",
  12915. "sebastian/exporter": "^6.0"
  12916. },
  12917. "require-dev": {
  12918. "phpunit/phpunit": "^11.4"
  12919. },
  12920. "suggest": {
  12921. "ext-bcmath": "For comparing BcMath\\Number objects"
  12922. },
  12923. "type": "library",
  12924. "extra": {
  12925. "branch-alias": {
  12926. "dev-main": "6.3-dev"
  12927. }
  12928. },
  12929. "autoload": {
  12930. "classmap": [
  12931. "src/"
  12932. ]
  12933. },
  12934. "notification-url": "https://packagist.org/downloads/",
  12935. "license": [
  12936. "BSD-3-Clause"
  12937. ],
  12938. "authors": [
  12939. {
  12940. "name": "Sebastian Bergmann",
  12941. "email": "[email protected]"
  12942. },
  12943. {
  12944. "name": "Jeff Welch",
  12945. "email": "[email protected]"
  12946. },
  12947. {
  12948. "name": "Volker Dusch",
  12949. "email": "[email protected]"
  12950. },
  12951. {
  12952. "name": "Bernhard Schussek",
  12953. "email": "[email protected]"
  12954. }
  12955. ],
  12956. "description": "Provides the functionality to compare PHP values for equality",
  12957. "homepage": "https://github.com/sebastianbergmann/comparator",
  12958. "keywords": [
  12959. "comparator",
  12960. "compare",
  12961. "equality"
  12962. ],
  12963. "support": {
  12964. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  12965. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  12966. "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.1"
  12967. },
  12968. "funding": [
  12969. {
  12970. "url": "https://github.com/sebastianbergmann",
  12971. "type": "github"
  12972. }
  12973. ],
  12974. "time": "2025-03-07T06:57:01+00:00"
  12975. },
  12976. {
  12977. "name": "sebastian/complexity",
  12978. "version": "4.0.1",
  12979. "source": {
  12980. "type": "git",
  12981. "url": "https://github.com/sebastianbergmann/complexity.git",
  12982. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
  12983. },
  12984. "dist": {
  12985. "type": "zip",
  12986. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
  12987. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
  12988. "shasum": ""
  12989. },
  12990. "require": {
  12991. "nikic/php-parser": "^5.0",
  12992. "php": ">=8.2"
  12993. },
  12994. "require-dev": {
  12995. "phpunit/phpunit": "^11.0"
  12996. },
  12997. "type": "library",
  12998. "extra": {
  12999. "branch-alias": {
  13000. "dev-main": "4.0-dev"
  13001. }
  13002. },
  13003. "autoload": {
  13004. "classmap": [
  13005. "src/"
  13006. ]
  13007. },
  13008. "notification-url": "https://packagist.org/downloads/",
  13009. "license": [
  13010. "BSD-3-Clause"
  13011. ],
  13012. "authors": [
  13013. {
  13014. "name": "Sebastian Bergmann",
  13015. "email": "[email protected]",
  13016. "role": "lead"
  13017. }
  13018. ],
  13019. "description": "Library for calculating the complexity of PHP code units",
  13020. "homepage": "https://github.com/sebastianbergmann/complexity",
  13021. "support": {
  13022. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  13023. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  13024. "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
  13025. },
  13026. "funding": [
  13027. {
  13028. "url": "https://github.com/sebastianbergmann",
  13029. "type": "github"
  13030. }
  13031. ],
  13032. "time": "2024-07-03T04:49:50+00:00"
  13033. },
  13034. {
  13035. "name": "sebastian/diff",
  13036. "version": "6.0.2",
  13037. "source": {
  13038. "type": "git",
  13039. "url": "https://github.com/sebastianbergmann/diff.git",
  13040. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
  13041. },
  13042. "dist": {
  13043. "type": "zip",
  13044. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
  13045. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
  13046. "shasum": ""
  13047. },
  13048. "require": {
  13049. "php": ">=8.2"
  13050. },
  13051. "require-dev": {
  13052. "phpunit/phpunit": "^11.0",
  13053. "symfony/process": "^4.2 || ^5"
  13054. },
  13055. "type": "library",
  13056. "extra": {
  13057. "branch-alias": {
  13058. "dev-main": "6.0-dev"
  13059. }
  13060. },
  13061. "autoload": {
  13062. "classmap": [
  13063. "src/"
  13064. ]
  13065. },
  13066. "notification-url": "https://packagist.org/downloads/",
  13067. "license": [
  13068. "BSD-3-Clause"
  13069. ],
  13070. "authors": [
  13071. {
  13072. "name": "Sebastian Bergmann",
  13073. "email": "[email protected]"
  13074. },
  13075. {
  13076. "name": "Kore Nordmann",
  13077. "email": "[email protected]"
  13078. }
  13079. ],
  13080. "description": "Diff implementation",
  13081. "homepage": "https://github.com/sebastianbergmann/diff",
  13082. "keywords": [
  13083. "diff",
  13084. "udiff",
  13085. "unidiff",
  13086. "unified diff"
  13087. ],
  13088. "support": {
  13089. "issues": "https://github.com/sebastianbergmann/diff/issues",
  13090. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  13091. "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
  13092. },
  13093. "funding": [
  13094. {
  13095. "url": "https://github.com/sebastianbergmann",
  13096. "type": "github"
  13097. }
  13098. ],
  13099. "time": "2024-07-03T04:53:05+00:00"
  13100. },
  13101. {
  13102. "name": "sebastian/environment",
  13103. "version": "7.2.1",
  13104. "source": {
  13105. "type": "git",
  13106. "url": "https://github.com/sebastianbergmann/environment.git",
  13107. "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4"
  13108. },
  13109. "dist": {
  13110. "type": "zip",
  13111. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/a5c75038693ad2e8d4b6c15ba2403532647830c4",
  13112. "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4",
  13113. "shasum": ""
  13114. },
  13115. "require": {
  13116. "php": ">=8.2"
  13117. },
  13118. "require-dev": {
  13119. "phpunit/phpunit": "^11.3"
  13120. },
  13121. "suggest": {
  13122. "ext-posix": "*"
  13123. },
  13124. "type": "library",
  13125. "extra": {
  13126. "branch-alias": {
  13127. "dev-main": "7.2-dev"
  13128. }
  13129. },
  13130. "autoload": {
  13131. "classmap": [
  13132. "src/"
  13133. ]
  13134. },
  13135. "notification-url": "https://packagist.org/downloads/",
  13136. "license": [
  13137. "BSD-3-Clause"
  13138. ],
  13139. "authors": [
  13140. {
  13141. "name": "Sebastian Bergmann",
  13142. "email": "[email protected]"
  13143. }
  13144. ],
  13145. "description": "Provides functionality to handle HHVM/PHP environments",
  13146. "homepage": "https://github.com/sebastianbergmann/environment",
  13147. "keywords": [
  13148. "Xdebug",
  13149. "environment",
  13150. "hhvm"
  13151. ],
  13152. "support": {
  13153. "issues": "https://github.com/sebastianbergmann/environment/issues",
  13154. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  13155. "source": "https://github.com/sebastianbergmann/environment/tree/7.2.1"
  13156. },
  13157. "funding": [
  13158. {
  13159. "url": "https://github.com/sebastianbergmann",
  13160. "type": "github"
  13161. },
  13162. {
  13163. "url": "https://liberapay.com/sebastianbergmann",
  13164. "type": "liberapay"
  13165. },
  13166. {
  13167. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  13168. "type": "thanks_dev"
  13169. },
  13170. {
  13171. "url": "https://tidelift.com/funding/github/packagist/sebastian/environment",
  13172. "type": "tidelift"
  13173. }
  13174. ],
  13175. "time": "2025-05-21T11:55:47+00:00"
  13176. },
  13177. {
  13178. "name": "sebastian/exporter",
  13179. "version": "6.3.0",
  13180. "source": {
  13181. "type": "git",
  13182. "url": "https://github.com/sebastianbergmann/exporter.git",
  13183. "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3"
  13184. },
  13185. "dist": {
  13186. "type": "zip",
  13187. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/3473f61172093b2da7de1fb5782e1f24cc036dc3",
  13188. "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3",
  13189. "shasum": ""
  13190. },
  13191. "require": {
  13192. "ext-mbstring": "*",
  13193. "php": ">=8.2",
  13194. "sebastian/recursion-context": "^6.0"
  13195. },
  13196. "require-dev": {
  13197. "phpunit/phpunit": "^11.3"
  13198. },
  13199. "type": "library",
  13200. "extra": {
  13201. "branch-alias": {
  13202. "dev-main": "6.1-dev"
  13203. }
  13204. },
  13205. "autoload": {
  13206. "classmap": [
  13207. "src/"
  13208. ]
  13209. },
  13210. "notification-url": "https://packagist.org/downloads/",
  13211. "license": [
  13212. "BSD-3-Clause"
  13213. ],
  13214. "authors": [
  13215. {
  13216. "name": "Sebastian Bergmann",
  13217. "email": "[email protected]"
  13218. },
  13219. {
  13220. "name": "Jeff Welch",
  13221. "email": "[email protected]"
  13222. },
  13223. {
  13224. "name": "Volker Dusch",
  13225. "email": "[email protected]"
  13226. },
  13227. {
  13228. "name": "Adam Harvey",
  13229. "email": "[email protected]"
  13230. },
  13231. {
  13232. "name": "Bernhard Schussek",
  13233. "email": "[email protected]"
  13234. }
  13235. ],
  13236. "description": "Provides the functionality to export PHP variables for visualization",
  13237. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  13238. "keywords": [
  13239. "export",
  13240. "exporter"
  13241. ],
  13242. "support": {
  13243. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  13244. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  13245. "source": "https://github.com/sebastianbergmann/exporter/tree/6.3.0"
  13246. },
  13247. "funding": [
  13248. {
  13249. "url": "https://github.com/sebastianbergmann",
  13250. "type": "github"
  13251. }
  13252. ],
  13253. "time": "2024-12-05T09:17:50+00:00"
  13254. },
  13255. {
  13256. "name": "sebastian/global-state",
  13257. "version": "7.0.2",
  13258. "source": {
  13259. "type": "git",
  13260. "url": "https://github.com/sebastianbergmann/global-state.git",
  13261. "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
  13262. },
  13263. "dist": {
  13264. "type": "zip",
  13265. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
  13266. "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
  13267. "shasum": ""
  13268. },
  13269. "require": {
  13270. "php": ">=8.2",
  13271. "sebastian/object-reflector": "^4.0",
  13272. "sebastian/recursion-context": "^6.0"
  13273. },
  13274. "require-dev": {
  13275. "ext-dom": "*",
  13276. "phpunit/phpunit": "^11.0"
  13277. },
  13278. "type": "library",
  13279. "extra": {
  13280. "branch-alias": {
  13281. "dev-main": "7.0-dev"
  13282. }
  13283. },
  13284. "autoload": {
  13285. "classmap": [
  13286. "src/"
  13287. ]
  13288. },
  13289. "notification-url": "https://packagist.org/downloads/",
  13290. "license": [
  13291. "BSD-3-Clause"
  13292. ],
  13293. "authors": [
  13294. {
  13295. "name": "Sebastian Bergmann",
  13296. "email": "[email protected]"
  13297. }
  13298. ],
  13299. "description": "Snapshotting of global state",
  13300. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  13301. "keywords": [
  13302. "global state"
  13303. ],
  13304. "support": {
  13305. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  13306. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  13307. "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
  13308. },
  13309. "funding": [
  13310. {
  13311. "url": "https://github.com/sebastianbergmann",
  13312. "type": "github"
  13313. }
  13314. ],
  13315. "time": "2024-07-03T04:57:36+00:00"
  13316. },
  13317. {
  13318. "name": "sebastian/lines-of-code",
  13319. "version": "3.0.1",
  13320. "source": {
  13321. "type": "git",
  13322. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  13323. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
  13324. },
  13325. "dist": {
  13326. "type": "zip",
  13327. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  13328. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  13329. "shasum": ""
  13330. },
  13331. "require": {
  13332. "nikic/php-parser": "^5.0",
  13333. "php": ">=8.2"
  13334. },
  13335. "require-dev": {
  13336. "phpunit/phpunit": "^11.0"
  13337. },
  13338. "type": "library",
  13339. "extra": {
  13340. "branch-alias": {
  13341. "dev-main": "3.0-dev"
  13342. }
  13343. },
  13344. "autoload": {
  13345. "classmap": [
  13346. "src/"
  13347. ]
  13348. },
  13349. "notification-url": "https://packagist.org/downloads/",
  13350. "license": [
  13351. "BSD-3-Clause"
  13352. ],
  13353. "authors": [
  13354. {
  13355. "name": "Sebastian Bergmann",
  13356. "email": "[email protected]",
  13357. "role": "lead"
  13358. }
  13359. ],
  13360. "description": "Library for counting the lines of code in PHP source code",
  13361. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  13362. "support": {
  13363. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  13364. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  13365. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
  13366. },
  13367. "funding": [
  13368. {
  13369. "url": "https://github.com/sebastianbergmann",
  13370. "type": "github"
  13371. }
  13372. ],
  13373. "time": "2024-07-03T04:58:38+00:00"
  13374. },
  13375. {
  13376. "name": "sebastian/object-enumerator",
  13377. "version": "6.0.1",
  13378. "source": {
  13379. "type": "git",
  13380. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  13381. "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
  13382. },
  13383. "dist": {
  13384. "type": "zip",
  13385. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
  13386. "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
  13387. "shasum": ""
  13388. },
  13389. "require": {
  13390. "php": ">=8.2",
  13391. "sebastian/object-reflector": "^4.0",
  13392. "sebastian/recursion-context": "^6.0"
  13393. },
  13394. "require-dev": {
  13395. "phpunit/phpunit": "^11.0"
  13396. },
  13397. "type": "library",
  13398. "extra": {
  13399. "branch-alias": {
  13400. "dev-main": "6.0-dev"
  13401. }
  13402. },
  13403. "autoload": {
  13404. "classmap": [
  13405. "src/"
  13406. ]
  13407. },
  13408. "notification-url": "https://packagist.org/downloads/",
  13409. "license": [
  13410. "BSD-3-Clause"
  13411. ],
  13412. "authors": [
  13413. {
  13414. "name": "Sebastian Bergmann",
  13415. "email": "[email protected]"
  13416. }
  13417. ],
  13418. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  13419. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  13420. "support": {
  13421. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  13422. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  13423. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
  13424. },
  13425. "funding": [
  13426. {
  13427. "url": "https://github.com/sebastianbergmann",
  13428. "type": "github"
  13429. }
  13430. ],
  13431. "time": "2024-07-03T05:00:13+00:00"
  13432. },
  13433. {
  13434. "name": "sebastian/object-reflector",
  13435. "version": "4.0.1",
  13436. "source": {
  13437. "type": "git",
  13438. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  13439. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
  13440. },
  13441. "dist": {
  13442. "type": "zip",
  13443. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  13444. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  13445. "shasum": ""
  13446. },
  13447. "require": {
  13448. "php": ">=8.2"
  13449. },
  13450. "require-dev": {
  13451. "phpunit/phpunit": "^11.0"
  13452. },
  13453. "type": "library",
  13454. "extra": {
  13455. "branch-alias": {
  13456. "dev-main": "4.0-dev"
  13457. }
  13458. },
  13459. "autoload": {
  13460. "classmap": [
  13461. "src/"
  13462. ]
  13463. },
  13464. "notification-url": "https://packagist.org/downloads/",
  13465. "license": [
  13466. "BSD-3-Clause"
  13467. ],
  13468. "authors": [
  13469. {
  13470. "name": "Sebastian Bergmann",
  13471. "email": "[email protected]"
  13472. }
  13473. ],
  13474. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  13475. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  13476. "support": {
  13477. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  13478. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  13479. "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
  13480. },
  13481. "funding": [
  13482. {
  13483. "url": "https://github.com/sebastianbergmann",
  13484. "type": "github"
  13485. }
  13486. ],
  13487. "time": "2024-07-03T05:01:32+00:00"
  13488. },
  13489. {
  13490. "name": "sebastian/recursion-context",
  13491. "version": "6.0.2",
  13492. "source": {
  13493. "type": "git",
  13494. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  13495. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16"
  13496. },
  13497. "dist": {
  13498. "type": "zip",
  13499. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16",
  13500. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16",
  13501. "shasum": ""
  13502. },
  13503. "require": {
  13504. "php": ">=8.2"
  13505. },
  13506. "require-dev": {
  13507. "phpunit/phpunit": "^11.0"
  13508. },
  13509. "type": "library",
  13510. "extra": {
  13511. "branch-alias": {
  13512. "dev-main": "6.0-dev"
  13513. }
  13514. },
  13515. "autoload": {
  13516. "classmap": [
  13517. "src/"
  13518. ]
  13519. },
  13520. "notification-url": "https://packagist.org/downloads/",
  13521. "license": [
  13522. "BSD-3-Clause"
  13523. ],
  13524. "authors": [
  13525. {
  13526. "name": "Sebastian Bergmann",
  13527. "email": "[email protected]"
  13528. },
  13529. {
  13530. "name": "Jeff Welch",
  13531. "email": "[email protected]"
  13532. },
  13533. {
  13534. "name": "Adam Harvey",
  13535. "email": "[email protected]"
  13536. }
  13537. ],
  13538. "description": "Provides functionality to recursively process PHP variables",
  13539. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  13540. "support": {
  13541. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  13542. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  13543. "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2"
  13544. },
  13545. "funding": [
  13546. {
  13547. "url": "https://github.com/sebastianbergmann",
  13548. "type": "github"
  13549. }
  13550. ],
  13551. "time": "2024-07-03T05:10:34+00:00"
  13552. },
  13553. {
  13554. "name": "sebastian/type",
  13555. "version": "5.1.2",
  13556. "source": {
  13557. "type": "git",
  13558. "url": "https://github.com/sebastianbergmann/type.git",
  13559. "reference": "a8a7e30534b0eb0c77cd9d07e82de1a114389f5e"
  13560. },
  13561. "dist": {
  13562. "type": "zip",
  13563. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/a8a7e30534b0eb0c77cd9d07e82de1a114389f5e",
  13564. "reference": "a8a7e30534b0eb0c77cd9d07e82de1a114389f5e",
  13565. "shasum": ""
  13566. },
  13567. "require": {
  13568. "php": ">=8.2"
  13569. },
  13570. "require-dev": {
  13571. "phpunit/phpunit": "^11.3"
  13572. },
  13573. "type": "library",
  13574. "extra": {
  13575. "branch-alias": {
  13576. "dev-main": "5.1-dev"
  13577. }
  13578. },
  13579. "autoload": {
  13580. "classmap": [
  13581. "src/"
  13582. ]
  13583. },
  13584. "notification-url": "https://packagist.org/downloads/",
  13585. "license": [
  13586. "BSD-3-Clause"
  13587. ],
  13588. "authors": [
  13589. {
  13590. "name": "Sebastian Bergmann",
  13591. "email": "[email protected]",
  13592. "role": "lead"
  13593. }
  13594. ],
  13595. "description": "Collection of value objects that represent the types of the PHP type system",
  13596. "homepage": "https://github.com/sebastianbergmann/type",
  13597. "support": {
  13598. "issues": "https://github.com/sebastianbergmann/type/issues",
  13599. "security": "https://github.com/sebastianbergmann/type/security/policy",
  13600. "source": "https://github.com/sebastianbergmann/type/tree/5.1.2"
  13601. },
  13602. "funding": [
  13603. {
  13604. "url": "https://github.com/sebastianbergmann",
  13605. "type": "github"
  13606. }
  13607. ],
  13608. "time": "2025-03-18T13:35:50+00:00"
  13609. },
  13610. {
  13611. "name": "sebastian/version",
  13612. "version": "5.0.2",
  13613. "source": {
  13614. "type": "git",
  13615. "url": "https://github.com/sebastianbergmann/version.git",
  13616. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
  13617. },
  13618. "dist": {
  13619. "type": "zip",
  13620. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
  13621. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
  13622. "shasum": ""
  13623. },
  13624. "require": {
  13625. "php": ">=8.2"
  13626. },
  13627. "type": "library",
  13628. "extra": {
  13629. "branch-alias": {
  13630. "dev-main": "5.0-dev"
  13631. }
  13632. },
  13633. "autoload": {
  13634. "classmap": [
  13635. "src/"
  13636. ]
  13637. },
  13638. "notification-url": "https://packagist.org/downloads/",
  13639. "license": [
  13640. "BSD-3-Clause"
  13641. ],
  13642. "authors": [
  13643. {
  13644. "name": "Sebastian Bergmann",
  13645. "email": "[email protected]",
  13646. "role": "lead"
  13647. }
  13648. ],
  13649. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  13650. "homepage": "https://github.com/sebastianbergmann/version",
  13651. "support": {
  13652. "issues": "https://github.com/sebastianbergmann/version/issues",
  13653. "security": "https://github.com/sebastianbergmann/version/security/policy",
  13654. "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
  13655. },
  13656. "funding": [
  13657. {
  13658. "url": "https://github.com/sebastianbergmann",
  13659. "type": "github"
  13660. }
  13661. ],
  13662. "time": "2024-10-09T05:16:32+00:00"
  13663. },
  13664. {
  13665. "name": "slevomat/coding-standard",
  13666. "version": "8.20.0",
  13667. "source": {
  13668. "type": "git",
  13669. "url": "https://github.com/slevomat/coding-standard.git",
  13670. "reference": "b4f9f02edd4e6a586777f0cabe8d05574323f3eb"
  13671. },
  13672. "dist": {
  13673. "type": "zip",
  13674. "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/b4f9f02edd4e6a586777f0cabe8d05574323f3eb",
  13675. "reference": "b4f9f02edd4e6a586777f0cabe8d05574323f3eb",
  13676. "shasum": ""
  13677. },
  13678. "require": {
  13679. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7 || ^1.1.2",
  13680. "php": "^7.4 || ^8.0",
  13681. "phpstan/phpdoc-parser": "^2.2.0",
  13682. "squizlabs/php_codesniffer": "^3.13.2"
  13683. },
  13684. "require-dev": {
  13685. "phing/phing": "3.0.1|3.1.0",
  13686. "php-parallel-lint/php-parallel-lint": "1.4.0",
  13687. "phpstan/phpstan": "2.1.19",
  13688. "phpstan/phpstan-deprecation-rules": "2.0.3",
  13689. "phpstan/phpstan-phpunit": "2.0.7",
  13690. "phpstan/phpstan-strict-rules": "2.0.6",
  13691. "phpunit/phpunit": "9.6.8|10.5.48|11.4.4|11.5.27|12.2.7"
  13692. },
  13693. "type": "phpcodesniffer-standard",
  13694. "extra": {
  13695. "branch-alias": {
  13696. "dev-master": "8.x-dev"
  13697. }
  13698. },
  13699. "autoload": {
  13700. "psr-4": {
  13701. "SlevomatCodingStandard\\": "SlevomatCodingStandard/"
  13702. }
  13703. },
  13704. "notification-url": "https://packagist.org/downloads/",
  13705. "license": [
  13706. "MIT"
  13707. ],
  13708. "description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.",
  13709. "keywords": [
  13710. "dev",
  13711. "phpcs"
  13712. ],
  13713. "support": {
  13714. "issues": "https://github.com/slevomat/coding-standard/issues",
  13715. "source": "https://github.com/slevomat/coding-standard/tree/8.20.0"
  13716. },
  13717. "funding": [
  13718. {
  13719. "url": "https://github.com/kukulich",
  13720. "type": "github"
  13721. },
  13722. {
  13723. "url": "https://tidelift.com/funding/github/packagist/slevomat/coding-standard",
  13724. "type": "tidelift"
  13725. }
  13726. ],
  13727. "time": "2025-07-26T15:35:10+00:00"
  13728. },
  13729. {
  13730. "name": "squizlabs/php_codesniffer",
  13731. "version": "3.13.2",
  13732. "source": {
  13733. "type": "git",
  13734. "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git",
  13735. "reference": "5b5e3821314f947dd040c70f7992a64eac89025c"
  13736. },
  13737. "dist": {
  13738. "type": "zip",
  13739. "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/5b5e3821314f947dd040c70f7992a64eac89025c",
  13740. "reference": "5b5e3821314f947dd040c70f7992a64eac89025c",
  13741. "shasum": ""
  13742. },
  13743. "require": {
  13744. "ext-simplexml": "*",
  13745. "ext-tokenizer": "*",
  13746. "ext-xmlwriter": "*",
  13747. "php": ">=5.4.0"
  13748. },
  13749. "require-dev": {
  13750. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4"
  13751. },
  13752. "bin": [
  13753. "bin/phpcbf",
  13754. "bin/phpcs"
  13755. ],
  13756. "type": "library",
  13757. "extra": {
  13758. "branch-alias": {
  13759. "dev-master": "3.x-dev"
  13760. }
  13761. },
  13762. "notification-url": "https://packagist.org/downloads/",
  13763. "license": [
  13764. "BSD-3-Clause"
  13765. ],
  13766. "authors": [
  13767. {
  13768. "name": "Greg Sherwood",
  13769. "role": "Former lead"
  13770. },
  13771. {
  13772. "name": "Juliette Reinders Folmer",
  13773. "role": "Current lead"
  13774. },
  13775. {
  13776. "name": "Contributors",
  13777. "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer/graphs/contributors"
  13778. }
  13779. ],
  13780. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  13781. "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
  13782. "keywords": [
  13783. "phpcs",
  13784. "standards",
  13785. "static analysis"
  13786. ],
  13787. "support": {
  13788. "issues": "https://github.com/PHPCSStandards/PHP_CodeSniffer/issues",
  13789. "security": "https://github.com/PHPCSStandards/PHP_CodeSniffer/security/policy",
  13790. "source": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
  13791. "wiki": "https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki"
  13792. },
  13793. "funding": [
  13794. {
  13795. "url": "https://github.com/PHPCSStandards",
  13796. "type": "github"
  13797. },
  13798. {
  13799. "url": "https://github.com/jrfnl",
  13800. "type": "github"
  13801. },
  13802. {
  13803. "url": "https://opencollective.com/php_codesniffer",
  13804. "type": "open_collective"
  13805. },
  13806. {
  13807. "url": "https://thanks.dev/u/gh/phpcsstandards",
  13808. "type": "thanks_dev"
  13809. }
  13810. ],
  13811. "time": "2025-06-17T22:17:01+00:00"
  13812. },
  13813. {
  13814. "name": "staabm/side-effects-detector",
  13815. "version": "1.0.5",
  13816. "source": {
  13817. "type": "git",
  13818. "url": "https://github.com/staabm/side-effects-detector.git",
  13819. "reference": "d8334211a140ce329c13726d4a715adbddd0a163"
  13820. },
  13821. "dist": {
  13822. "type": "zip",
  13823. "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163",
  13824. "reference": "d8334211a140ce329c13726d4a715adbddd0a163",
  13825. "shasum": ""
  13826. },
  13827. "require": {
  13828. "ext-tokenizer": "*",
  13829. "php": "^7.4 || ^8.0"
  13830. },
  13831. "require-dev": {
  13832. "phpstan/extension-installer": "^1.4.3",
  13833. "phpstan/phpstan": "^1.12.6",
  13834. "phpunit/phpunit": "^9.6.21",
  13835. "symfony/var-dumper": "^5.4.43",
  13836. "tomasvotruba/type-coverage": "1.0.0",
  13837. "tomasvotruba/unused-public": "1.0.0"
  13838. },
  13839. "type": "library",
  13840. "autoload": {
  13841. "classmap": [
  13842. "lib/"
  13843. ]
  13844. },
  13845. "notification-url": "https://packagist.org/downloads/",
  13846. "license": [
  13847. "MIT"
  13848. ],
  13849. "description": "A static analysis tool to detect side effects in PHP code",
  13850. "keywords": [
  13851. "static analysis"
  13852. ],
  13853. "support": {
  13854. "issues": "https://github.com/staabm/side-effects-detector/issues",
  13855. "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5"
  13856. },
  13857. "funding": [
  13858. {
  13859. "url": "https://github.com/staabm",
  13860. "type": "github"
  13861. }
  13862. ],
  13863. "time": "2024-10-20T05:08:20+00:00"
  13864. },
  13865. {
  13866. "name": "symfony/console",
  13867. "version": "v7.3.2",
  13868. "source": {
  13869. "type": "git",
  13870. "url": "https://github.com/symfony/console.git",
  13871. "reference": "5f360ebc65c55265a74d23d7fe27f957870158a1"
  13872. },
  13873. "dist": {
  13874. "type": "zip",
  13875. "url": "https://api.github.com/repos/symfony/console/zipball/5f360ebc65c55265a74d23d7fe27f957870158a1",
  13876. "reference": "5f360ebc65c55265a74d23d7fe27f957870158a1",
  13877. "shasum": ""
  13878. },
  13879. "require": {
  13880. "php": ">=8.2",
  13881. "symfony/deprecation-contracts": "^2.5|^3",
  13882. "symfony/polyfill-mbstring": "~1.0",
  13883. "symfony/service-contracts": "^2.5|^3",
  13884. "symfony/string": "^7.2"
  13885. },
  13886. "conflict": {
  13887. "symfony/dependency-injection": "<6.4",
  13888. "symfony/dotenv": "<6.4",
  13889. "symfony/event-dispatcher": "<6.4",
  13890. "symfony/lock": "<6.4",
  13891. "symfony/process": "<6.4"
  13892. },
  13893. "provide": {
  13894. "psr/log-implementation": "1.0|2.0|3.0"
  13895. },
  13896. "require-dev": {
  13897. "psr/log": "^1|^2|^3",
  13898. "symfony/config": "^6.4|^7.0",
  13899. "symfony/dependency-injection": "^6.4|^7.0",
  13900. "symfony/event-dispatcher": "^6.4|^7.0",
  13901. "symfony/http-foundation": "^6.4|^7.0",
  13902. "symfony/http-kernel": "^6.4|^7.0",
  13903. "symfony/lock": "^6.4|^7.0",
  13904. "symfony/messenger": "^6.4|^7.0",
  13905. "symfony/process": "^6.4|^7.0",
  13906. "symfony/stopwatch": "^6.4|^7.0",
  13907. "symfony/var-dumper": "^6.4|^7.0"
  13908. },
  13909. "type": "library",
  13910. "autoload": {
  13911. "psr-4": {
  13912. "Symfony\\Component\\Console\\": ""
  13913. },
  13914. "exclude-from-classmap": [
  13915. "/Tests/"
  13916. ]
  13917. },
  13918. "notification-url": "https://packagist.org/downloads/",
  13919. "license": [
  13920. "MIT"
  13921. ],
  13922. "authors": [
  13923. {
  13924. "name": "Fabien Potencier",
  13925. "email": "[email protected]"
  13926. },
  13927. {
  13928. "name": "Symfony Community",
  13929. "homepage": "https://symfony.com/contributors"
  13930. }
  13931. ],
  13932. "description": "Eases the creation of beautiful and testable command line interfaces",
  13933. "homepage": "https://symfony.com",
  13934. "keywords": [
  13935. "cli",
  13936. "command-line",
  13937. "console",
  13938. "terminal"
  13939. ],
  13940. "support": {
  13941. "source": "https://github.com/symfony/console/tree/v7.3.2"
  13942. },
  13943. "funding": [
  13944. {
  13945. "url": "https://symfony.com/sponsor",
  13946. "type": "custom"
  13947. },
  13948. {
  13949. "url": "https://github.com/fabpot",
  13950. "type": "github"
  13951. },
  13952. {
  13953. "url": "https://github.com/nicolas-grekas",
  13954. "type": "github"
  13955. },
  13956. {
  13957. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13958. "type": "tidelift"
  13959. }
  13960. ],
  13961. "time": "2025-07-30T17:13:41+00:00"
  13962. },
  13963. {
  13964. "name": "symfony/polyfill-php81",
  13965. "version": "v1.32.0",
  13966. "source": {
  13967. "type": "git",
  13968. "url": "https://github.com/symfony/polyfill-php81.git",
  13969. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  13970. },
  13971. "dist": {
  13972. "type": "zip",
  13973. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  13974. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  13975. "shasum": ""
  13976. },
  13977. "require": {
  13978. "php": ">=7.2"
  13979. },
  13980. "type": "library",
  13981. "extra": {
  13982. "thanks": {
  13983. "url": "https://github.com/symfony/polyfill",
  13984. "name": "symfony/polyfill"
  13985. }
  13986. },
  13987. "autoload": {
  13988. "files": [
  13989. "bootstrap.php"
  13990. ],
  13991. "psr-4": {
  13992. "Symfony\\Polyfill\\Php81\\": ""
  13993. },
  13994. "classmap": [
  13995. "Resources/stubs"
  13996. ]
  13997. },
  13998. "notification-url": "https://packagist.org/downloads/",
  13999. "license": [
  14000. "MIT"
  14001. ],
  14002. "authors": [
  14003. {
  14004. "name": "Nicolas Grekas",
  14005. "email": "[email protected]"
  14006. },
  14007. {
  14008. "name": "Symfony Community",
  14009. "homepage": "https://symfony.com/contributors"
  14010. }
  14011. ],
  14012. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  14013. "homepage": "https://symfony.com",
  14014. "keywords": [
  14015. "compatibility",
  14016. "polyfill",
  14017. "portable",
  14018. "shim"
  14019. ],
  14020. "support": {
  14021. "source": "https://github.com/symfony/polyfill-php81/tree/v1.32.0"
  14022. },
  14023. "funding": [
  14024. {
  14025. "url": "https://symfony.com/sponsor",
  14026. "type": "custom"
  14027. },
  14028. {
  14029. "url": "https://github.com/fabpot",
  14030. "type": "github"
  14031. },
  14032. {
  14033. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  14034. "type": "tidelift"
  14035. }
  14036. ],
  14037. "time": "2024-09-09T11:45:10+00:00"
  14038. },
  14039. {
  14040. "name": "symfony/process",
  14041. "version": "v7.3.0",
  14042. "source": {
  14043. "type": "git",
  14044. "url": "https://github.com/symfony/process.git",
  14045. "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af"
  14046. },
  14047. "dist": {
  14048. "type": "zip",
  14049. "url": "https://api.github.com/repos/symfony/process/zipball/40c295f2deb408d5e9d2d32b8ba1dd61e36f05af",
  14050. "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af",
  14051. "shasum": ""
  14052. },
  14053. "require": {
  14054. "php": ">=8.2"
  14055. },
  14056. "type": "library",
  14057. "autoload": {
  14058. "psr-4": {
  14059. "Symfony\\Component\\Process\\": ""
  14060. },
  14061. "exclude-from-classmap": [
  14062. "/Tests/"
  14063. ]
  14064. },
  14065. "notification-url": "https://packagist.org/downloads/",
  14066. "license": [
  14067. "MIT"
  14068. ],
  14069. "authors": [
  14070. {
  14071. "name": "Fabien Potencier",
  14072. "email": "[email protected]"
  14073. },
  14074. {
  14075. "name": "Symfony Community",
  14076. "homepage": "https://symfony.com/contributors"
  14077. }
  14078. ],
  14079. "description": "Executes commands in sub-processes",
  14080. "homepage": "https://symfony.com",
  14081. "support": {
  14082. "source": "https://github.com/symfony/process/tree/v7.3.0"
  14083. },
  14084. "funding": [
  14085. {
  14086. "url": "https://symfony.com/sponsor",
  14087. "type": "custom"
  14088. },
  14089. {
  14090. "url": "https://github.com/fabpot",
  14091. "type": "github"
  14092. },
  14093. {
  14094. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  14095. "type": "tidelift"
  14096. }
  14097. ],
  14098. "time": "2025-04-17T09:11:12+00:00"
  14099. },
  14100. {
  14101. "name": "symfony/stopwatch",
  14102. "version": "v7.3.0",
  14103. "source": {
  14104. "type": "git",
  14105. "url": "https://github.com/symfony/stopwatch.git",
  14106. "reference": "5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd"
  14107. },
  14108. "dist": {
  14109. "type": "zip",
  14110. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd",
  14111. "reference": "5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd",
  14112. "shasum": ""
  14113. },
  14114. "require": {
  14115. "php": ">=8.2",
  14116. "symfony/service-contracts": "^2.5|^3"
  14117. },
  14118. "type": "library",
  14119. "autoload": {
  14120. "psr-4": {
  14121. "Symfony\\Component\\Stopwatch\\": ""
  14122. },
  14123. "exclude-from-classmap": [
  14124. "/Tests/"
  14125. ]
  14126. },
  14127. "notification-url": "https://packagist.org/downloads/",
  14128. "license": [
  14129. "MIT"
  14130. ],
  14131. "authors": [
  14132. {
  14133. "name": "Fabien Potencier",
  14134. "email": "[email protected]"
  14135. },
  14136. {
  14137. "name": "Symfony Community",
  14138. "homepage": "https://symfony.com/contributors"
  14139. }
  14140. ],
  14141. "description": "Provides a way to profile code",
  14142. "homepage": "https://symfony.com",
  14143. "support": {
  14144. "source": "https://github.com/symfony/stopwatch/tree/v7.3.0"
  14145. },
  14146. "funding": [
  14147. {
  14148. "url": "https://symfony.com/sponsor",
  14149. "type": "custom"
  14150. },
  14151. {
  14152. "url": "https://github.com/fabpot",
  14153. "type": "github"
  14154. },
  14155. {
  14156. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  14157. "type": "tidelift"
  14158. }
  14159. ],
  14160. "time": "2025-02-24T10:49:57+00:00"
  14161. },
  14162. {
  14163. "name": "theseer/tokenizer",
  14164. "version": "1.2.3",
  14165. "source": {
  14166. "type": "git",
  14167. "url": "https://github.com/theseer/tokenizer.git",
  14168. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  14169. },
  14170. "dist": {
  14171. "type": "zip",
  14172. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  14173. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  14174. "shasum": ""
  14175. },
  14176. "require": {
  14177. "ext-dom": "*",
  14178. "ext-tokenizer": "*",
  14179. "ext-xmlwriter": "*",
  14180. "php": "^7.2 || ^8.0"
  14181. },
  14182. "type": "library",
  14183. "autoload": {
  14184. "classmap": [
  14185. "src/"
  14186. ]
  14187. },
  14188. "notification-url": "https://packagist.org/downloads/",
  14189. "license": [
  14190. "BSD-3-Clause"
  14191. ],
  14192. "authors": [
  14193. {
  14194. "name": "Arne Blankerts",
  14195. "email": "[email protected]",
  14196. "role": "Developer"
  14197. }
  14198. ],
  14199. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  14200. "support": {
  14201. "issues": "https://github.com/theseer/tokenizer/issues",
  14202. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  14203. },
  14204. "funding": [
  14205. {
  14206. "url": "https://github.com/theseer",
  14207. "type": "github"
  14208. }
  14209. ],
  14210. "time": "2024-03-03T12:36:25+00:00"
  14211. }
  14212. ],
  14213. "aliases": [],
  14214. "minimum-stability": "stable",
  14215. "stability-flags": {
  14216. "alipaysdk/openapi": 20
  14217. },
  14218. "prefer-stable": false,
  14219. "prefer-lowest": false,
  14220. "platform": {
  14221. "php": "^8.2",
  14222. "ext-bcmath": "*",
  14223. "ext-curl": "*",
  14224. "ext-fileinfo": "*",
  14225. "ext-json": "*",
  14226. "ext-mbstring": "*",
  14227. "ext-mysqli": "*",
  14228. "ext-openssl": "*",
  14229. "ext-pdo": "*",
  14230. "ext-posix": "*",
  14231. "ext-redis": "*",
  14232. "ext-xml": "*",
  14233. "ext-yaml": "*",
  14234. "ext-zip": "*"
  14235. },
  14236. "platform-dev": [],
  14237. "plugin-api-version": "2.3.0"
  14238. }