composer.lock 372 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449
  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": "bb79de1b57be0eca9cd7fa5c4c2e1e6c",
  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.1.5",
  65. "source": {
  66. "type": "git",
  67. "url": "https://github.com/aliyun/credentials-php.git",
  68. "reference": "1d8383ceef695974a88a3859c42e235fd2e3981a"
  69. },
  70. "dist": {
  71. "type": "zip",
  72. "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/1d8383ceef695974a88a3859c42e235fd2e3981a",
  73. "reference": "1d8383ceef695974a88a3859c42e235fd2e3981a",
  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|^7.5",
  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": "2023-04-11T02:12:12+00:00"
  141. },
  142. {
  143. "name": "alibabacloud/darabonba-openapi",
  144. "version": "0.2.10",
  145. "source": {
  146. "type": "git",
  147. "url": "https://github.com/alibabacloud-sdk-php/darabonba-openapi.git",
  148. "reference": "88f42443e1b5c9d086d0444baa4a874f8636f7bb"
  149. },
  150. "dist": {
  151. "type": "zip",
  152. "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba-openapi/zipball/88f42443e1b5c9d086d0444baa4a874f8636f7bb",
  153. "reference": "88f42443e1b5c9d086d0444baa4a874f8636f7bb",
  154. "shasum": ""
  155. },
  156. "require": {
  157. "alibabacloud/credentials": "^1.1",
  158. "alibabacloud/gateway-spi": "^1",
  159. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  160. "alibabacloud/tea-utils": "^0.2.19",
  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.10"
  184. },
  185. "time": "2023-11-23T07:01:20+00:00"
  186. },
  187. {
  188. "name": "alibabacloud/dm-20170622",
  189. "version": "1.2.2",
  190. "source": {
  191. "type": "git",
  192. "url": "https://github.com/alibabacloud-sdk-php/dm-20170622.git",
  193. "reference": "400f9de65896f7fd2b854bb6a6c51bfe5d56e324"
  194. },
  195. "dist": {
  196. "type": "zip",
  197. "url": "https://api.github.com/repos/alibabacloud-sdk-php/dm-20170622/zipball/400f9de65896f7fd2b854bb6a6c51bfe5d56e324",
  198. "reference": "400f9de65896f7fd2b854bb6a6c51bfe5d56e324",
  199. "shasum": ""
  200. },
  201. "require": {
  202. "alibabacloud/darabonba-openapi": "^0.2.10",
  203. "alibabacloud/endpoint-util": "^0.1.0",
  204. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  205. "alibabacloud/tea-utils": "^0.2.19",
  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.2"
  227. },
  228. "time": "2024-04-10T17:15:45+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.19",
  426. "source": {
  427. "type": "git",
  428. "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git",
  429. "reference": "8dfc1a93e9415818e93a621b644abbb84981aea4"
  430. },
  431. "dist": {
  432. "type": "zip",
  433. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/8dfc1a93e9415818e93a621b644abbb84981aea4",
  434. "reference": "8dfc1a93e9415818e93a621b644abbb84981aea4",
  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": "2023-06-26T09:49:19+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": "0f286297fe8bdd05594b11714ff4521e49a1e738"
  514. },
  515. "dist": {
  516. "type": "zip",
  517. "url": "https://api.github.com/repos/alipay/alipay-sdk-php-all/zipball/0f286297fe8bdd05594b11714ff4521e49a1e738",
  518. "reference": "0f286297fe8bdd05594b11714ff4521e49a1e738",
  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": "2024-04-16T07:11:33+00:00"
  568. },
  569. {
  570. "name": "aws/aws-crt-php",
  571. "version": "v1.2.4",
  572. "source": {
  573. "type": "git",
  574. "url": "https://github.com/awslabs/aws-crt-php.git",
  575. "reference": "eb0c6e4e142224a10b08f49ebf87f32611d162b2"
  576. },
  577. "dist": {
  578. "type": "zip",
  579. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/eb0c6e4e142224a10b08f49ebf87f32611d162b2",
  580. "reference": "eb0c6e4e142224a10b08f49ebf87f32611d162b2",
  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.4"
  620. },
  621. "time": "2023-11-08T00:42:13+00:00"
  622. },
  623. {
  624. "name": "aws/aws-sdk-php",
  625. "version": "3.304.6",
  626. "source": {
  627. "type": "git",
  628. "url": "https://github.com/aws/aws-sdk-php.git",
  629. "reference": "02abf9b8e2afbdf281e28757c582049d3db16df7"
  630. },
  631. "dist": {
  632. "type": "zip",
  633. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/02abf9b8e2afbdf281e28757c582049d3db16df7",
  634. "reference": "02abf9b8e2afbdf281e28757c582049d3db16df7",
  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": "^6.5.8 || ^7.4.5",
  643. "guzzlehttp/promises": "^1.4.0 || ^2.0",
  644. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  645. "mtdowling/jmespath.php": "^2.6",
  646. "php": ">=7.2.5",
  647. "psr/http-message": "^1.0 || ^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": "^1.10.22",
  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. "nette/neon": "^2.3",
  661. "paragonie/random_compat": ">= 2",
  662. "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
  663. "psr/cache": "^1.0",
  664. "psr/simple-cache": "^1.0",
  665. "sebastian/comparator": "^1.2.3 || ^4.0",
  666. "yoast/phpunit-polyfills": "^1.0"
  667. },
  668. "suggest": {
  669. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  670. "doctrine/cache": "To use the DoctrineCacheAdapter",
  671. "ext-curl": "To send requests using cURL",
  672. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  673. "ext-sockets": "To use client-side monitoring"
  674. },
  675. "type": "library",
  676. "extra": {
  677. "branch-alias": {
  678. "dev-master": "3.0-dev"
  679. }
  680. },
  681. "autoload": {
  682. "files": [
  683. "src/functions.php"
  684. ],
  685. "psr-4": {
  686. "Aws\\": "src/"
  687. }
  688. },
  689. "notification-url": "https://packagist.org/downloads/",
  690. "license": [
  691. "Apache-2.0"
  692. ],
  693. "authors": [
  694. {
  695. "name": "Amazon Web Services",
  696. "homepage": "http://aws.amazon.com"
  697. }
  698. ],
  699. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  700. "homepage": "http://aws.amazon.com/sdkforphp",
  701. "keywords": [
  702. "amazon",
  703. "aws",
  704. "cloud",
  705. "dynamodb",
  706. "ec2",
  707. "glacier",
  708. "s3",
  709. "sdk"
  710. ],
  711. "support": {
  712. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  713. "issues": "https://github.com/aws/aws-sdk-php/issues",
  714. "source": "https://github.com/aws/aws-sdk-php/tree/3.304.6"
  715. },
  716. "time": "2024-04-17T18:27:31+00:00"
  717. },
  718. {
  719. "name": "bacon/bacon-qr-code",
  720. "version": "2.0.8",
  721. "source": {
  722. "type": "git",
  723. "url": "https://github.com/Bacon/BaconQrCode.git",
  724. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22"
  725. },
  726. "dist": {
  727. "type": "zip",
  728. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22",
  729. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22",
  730. "shasum": ""
  731. },
  732. "require": {
  733. "dasprid/enum": "^1.0.3",
  734. "ext-iconv": "*",
  735. "php": "^7.1 || ^8.0"
  736. },
  737. "require-dev": {
  738. "phly/keep-a-changelog": "^2.1",
  739. "phpunit/phpunit": "^7 | ^8 | ^9",
  740. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  741. "squizlabs/php_codesniffer": "^3.4"
  742. },
  743. "suggest": {
  744. "ext-imagick": "to generate QR code images"
  745. },
  746. "type": "library",
  747. "autoload": {
  748. "psr-4": {
  749. "BaconQrCode\\": "src/"
  750. }
  751. },
  752. "notification-url": "https://packagist.org/downloads/",
  753. "license": [
  754. "BSD-2-Clause"
  755. ],
  756. "authors": [
  757. {
  758. "name": "Ben Scholzen 'DASPRiD'",
  759. "email": "[email protected]",
  760. "homepage": "https://dasprids.de/",
  761. "role": "Developer"
  762. }
  763. ],
  764. "description": "BaconQrCode is a QR code generator for PHP.",
  765. "homepage": "https://github.com/Bacon/BaconQrCode",
  766. "support": {
  767. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  768. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.8"
  769. },
  770. "time": "2022-12-07T17:46:57+00:00"
  771. },
  772. {
  773. "name": "beberlei/assert",
  774. "version": "v3.3.2",
  775. "source": {
  776. "type": "git",
  777. "url": "https://github.com/beberlei/assert.git",
  778. "reference": "cb70015c04be1baee6f5f5c953703347c0ac1655"
  779. },
  780. "dist": {
  781. "type": "zip",
  782. "url": "https://api.github.com/repos/beberlei/assert/zipball/cb70015c04be1baee6f5f5c953703347c0ac1655",
  783. "reference": "cb70015c04be1baee6f5f5c953703347c0ac1655",
  784. "shasum": ""
  785. },
  786. "require": {
  787. "ext-ctype": "*",
  788. "ext-json": "*",
  789. "ext-mbstring": "*",
  790. "ext-simplexml": "*",
  791. "php": "^7.0 || ^8.0"
  792. },
  793. "require-dev": {
  794. "friendsofphp/php-cs-fixer": "*",
  795. "phpstan/phpstan": "*",
  796. "phpunit/phpunit": ">=6.0.0",
  797. "yoast/phpunit-polyfills": "^0.1.0"
  798. },
  799. "suggest": {
  800. "ext-intl": "Needed to allow Assertion::count(), Assertion::isCountable(), Assertion::minCount(), and Assertion::maxCount() to operate on ResourceBundles"
  801. },
  802. "type": "library",
  803. "autoload": {
  804. "files": [
  805. "lib/Assert/functions.php"
  806. ],
  807. "psr-4": {
  808. "Assert\\": "lib/Assert"
  809. }
  810. },
  811. "notification-url": "https://packagist.org/downloads/",
  812. "license": [
  813. "BSD-2-Clause"
  814. ],
  815. "authors": [
  816. {
  817. "name": "Benjamin Eberlei",
  818. "email": "[email protected]",
  819. "role": "Lead Developer"
  820. },
  821. {
  822. "name": "Richard Quadling",
  823. "email": "[email protected]",
  824. "role": "Collaborator"
  825. }
  826. ],
  827. "description": "Thin assertion library for input validation in business models.",
  828. "keywords": [
  829. "assert",
  830. "assertion",
  831. "validation"
  832. ],
  833. "support": {
  834. "issues": "https://github.com/beberlei/assert/issues",
  835. "source": "https://github.com/beberlei/assert/tree/v3.3.2"
  836. },
  837. "time": "2021-12-16T21:41:27+00:00"
  838. },
  839. {
  840. "name": "brick/math",
  841. "version": "0.11.0",
  842. "source": {
  843. "type": "git",
  844. "url": "https://github.com/brick/math.git",
  845. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  846. },
  847. "dist": {
  848. "type": "zip",
  849. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  850. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  851. "shasum": ""
  852. },
  853. "require": {
  854. "php": "^8.0"
  855. },
  856. "require-dev": {
  857. "php-coveralls/php-coveralls": "^2.2",
  858. "phpunit/phpunit": "^9.0",
  859. "vimeo/psalm": "5.0.0"
  860. },
  861. "type": "library",
  862. "autoload": {
  863. "psr-4": {
  864. "Brick\\Math\\": "src/"
  865. }
  866. },
  867. "notification-url": "https://packagist.org/downloads/",
  868. "license": [
  869. "MIT"
  870. ],
  871. "description": "Arbitrary-precision arithmetic library",
  872. "keywords": [
  873. "Arbitrary-precision",
  874. "BigInteger",
  875. "BigRational",
  876. "arithmetic",
  877. "bigdecimal",
  878. "bignum",
  879. "brick",
  880. "math"
  881. ],
  882. "support": {
  883. "issues": "https://github.com/brick/math/issues",
  884. "source": "https://github.com/brick/math/tree/0.11.0"
  885. },
  886. "funding": [
  887. {
  888. "url": "https://github.com/BenMorel",
  889. "type": "github"
  890. }
  891. ],
  892. "time": "2023-01-15T23:15:59+00:00"
  893. },
  894. {
  895. "name": "carbonphp/carbon-doctrine-types",
  896. "version": "3.2.0",
  897. "source": {
  898. "type": "git",
  899. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  900. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  901. },
  902. "dist": {
  903. "type": "zip",
  904. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  905. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  906. "shasum": ""
  907. },
  908. "require": {
  909. "php": "^8.1"
  910. },
  911. "conflict": {
  912. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  913. },
  914. "require-dev": {
  915. "doctrine/dbal": "^4.0.0",
  916. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  917. "phpunit/phpunit": "^10.3"
  918. },
  919. "type": "library",
  920. "autoload": {
  921. "psr-4": {
  922. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  923. }
  924. },
  925. "notification-url": "https://packagist.org/downloads/",
  926. "license": [
  927. "MIT"
  928. ],
  929. "authors": [
  930. {
  931. "name": "KyleKatarn",
  932. "email": "[email protected]"
  933. }
  934. ],
  935. "description": "Types to use Carbon in Doctrine",
  936. "keywords": [
  937. "carbon",
  938. "date",
  939. "datetime",
  940. "doctrine",
  941. "time"
  942. ],
  943. "support": {
  944. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  945. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  946. },
  947. "funding": [
  948. {
  949. "url": "https://github.com/kylekatarnls",
  950. "type": "github"
  951. },
  952. {
  953. "url": "https://opencollective.com/Carbon",
  954. "type": "open_collective"
  955. },
  956. {
  957. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  958. "type": "tidelift"
  959. }
  960. ],
  961. "time": "2024-02-09T16:56:22+00:00"
  962. },
  963. {
  964. "name": "clue/stream-filter",
  965. "version": "v1.7.0",
  966. "source": {
  967. "type": "git",
  968. "url": "https://github.com/clue/stream-filter.git",
  969. "reference": "049509fef80032cb3f051595029ab75b49a3c2f7"
  970. },
  971. "dist": {
  972. "type": "zip",
  973. "url": "https://api.github.com/repos/clue/stream-filter/zipball/049509fef80032cb3f051595029ab75b49a3c2f7",
  974. "reference": "049509fef80032cb3f051595029ab75b49a3c2f7",
  975. "shasum": ""
  976. },
  977. "require": {
  978. "php": ">=5.3"
  979. },
  980. "require-dev": {
  981. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  982. },
  983. "type": "library",
  984. "autoload": {
  985. "files": [
  986. "src/functions_include.php"
  987. ],
  988. "psr-4": {
  989. "Clue\\StreamFilter\\": "src/"
  990. }
  991. },
  992. "notification-url": "https://packagist.org/downloads/",
  993. "license": [
  994. "MIT"
  995. ],
  996. "authors": [
  997. {
  998. "name": "Christian Lück",
  999. "email": "[email protected]"
  1000. }
  1001. ],
  1002. "description": "A simple and modern approach to stream filtering in PHP",
  1003. "homepage": "https://github.com/clue/stream-filter",
  1004. "keywords": [
  1005. "bucket brigade",
  1006. "callback",
  1007. "filter",
  1008. "php_user_filter",
  1009. "stream",
  1010. "stream_filter_append",
  1011. "stream_filter_register"
  1012. ],
  1013. "support": {
  1014. "issues": "https://github.com/clue/stream-filter/issues",
  1015. "source": "https://github.com/clue/stream-filter/tree/v1.7.0"
  1016. },
  1017. "funding": [
  1018. {
  1019. "url": "https://clue.engineering/support",
  1020. "type": "custom"
  1021. },
  1022. {
  1023. "url": "https://github.com/clue",
  1024. "type": "github"
  1025. }
  1026. ],
  1027. "time": "2023-12-20T15:40:13+00:00"
  1028. },
  1029. {
  1030. "name": "composer/ca-bundle",
  1031. "version": "1.5.0",
  1032. "source": {
  1033. "type": "git",
  1034. "url": "https://github.com/composer/ca-bundle.git",
  1035. "reference": "0c5ccfcfea312b5c5a190a21ac5cef93f74baf99"
  1036. },
  1037. "dist": {
  1038. "type": "zip",
  1039. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/0c5ccfcfea312b5c5a190a21ac5cef93f74baf99",
  1040. "reference": "0c5ccfcfea312b5c5a190a21ac5cef93f74baf99",
  1041. "shasum": ""
  1042. },
  1043. "require": {
  1044. "ext-openssl": "*",
  1045. "ext-pcre": "*",
  1046. "php": "^7.2 || ^8.0"
  1047. },
  1048. "require-dev": {
  1049. "phpstan/phpstan": "^1.10",
  1050. "psr/log": "^1.0",
  1051. "symfony/phpunit-bridge": "^4.2 || ^5",
  1052. "symfony/process": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  1053. },
  1054. "type": "library",
  1055. "extra": {
  1056. "branch-alias": {
  1057. "dev-main": "1.x-dev"
  1058. }
  1059. },
  1060. "autoload": {
  1061. "psr-4": {
  1062. "Composer\\CaBundle\\": "src"
  1063. }
  1064. },
  1065. "notification-url": "https://packagist.org/downloads/",
  1066. "license": [
  1067. "MIT"
  1068. ],
  1069. "authors": [
  1070. {
  1071. "name": "Jordi Boggiano",
  1072. "email": "[email protected]",
  1073. "homepage": "http://seld.be"
  1074. }
  1075. ],
  1076. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  1077. "keywords": [
  1078. "cabundle",
  1079. "cacert",
  1080. "certificate",
  1081. "ssl",
  1082. "tls"
  1083. ],
  1084. "support": {
  1085. "irc": "irc://irc.freenode.org/composer",
  1086. "issues": "https://github.com/composer/ca-bundle/issues",
  1087. "source": "https://github.com/composer/ca-bundle/tree/1.5.0"
  1088. },
  1089. "funding": [
  1090. {
  1091. "url": "https://packagist.com",
  1092. "type": "custom"
  1093. },
  1094. {
  1095. "url": "https://github.com/composer",
  1096. "type": "github"
  1097. },
  1098. {
  1099. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  1100. "type": "tidelift"
  1101. }
  1102. ],
  1103. "time": "2024-03-15T14:00:32+00:00"
  1104. },
  1105. {
  1106. "name": "dasprid/enum",
  1107. "version": "1.0.5",
  1108. "source": {
  1109. "type": "git",
  1110. "url": "https://github.com/DASPRiD/Enum.git",
  1111. "reference": "6faf451159fb8ba4126b925ed2d78acfce0dc016"
  1112. },
  1113. "dist": {
  1114. "type": "zip",
  1115. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/6faf451159fb8ba4126b925ed2d78acfce0dc016",
  1116. "reference": "6faf451159fb8ba4126b925ed2d78acfce0dc016",
  1117. "shasum": ""
  1118. },
  1119. "require": {
  1120. "php": ">=7.1 <9.0"
  1121. },
  1122. "require-dev": {
  1123. "phpunit/phpunit": "^7 | ^8 | ^9",
  1124. "squizlabs/php_codesniffer": "*"
  1125. },
  1126. "type": "library",
  1127. "autoload": {
  1128. "psr-4": {
  1129. "DASPRiD\\Enum\\": "src/"
  1130. }
  1131. },
  1132. "notification-url": "https://packagist.org/downloads/",
  1133. "license": [
  1134. "BSD-2-Clause"
  1135. ],
  1136. "authors": [
  1137. {
  1138. "name": "Ben Scholzen 'DASPRiD'",
  1139. "email": "[email protected]",
  1140. "homepage": "https://dasprids.de/",
  1141. "role": "Developer"
  1142. }
  1143. ],
  1144. "description": "PHP 7.1 enum implementation",
  1145. "keywords": [
  1146. "enum",
  1147. "map"
  1148. ],
  1149. "support": {
  1150. "issues": "https://github.com/DASPRiD/Enum/issues",
  1151. "source": "https://github.com/DASPRiD/Enum/tree/1.0.5"
  1152. },
  1153. "time": "2023-08-25T16:18:39+00:00"
  1154. },
  1155. {
  1156. "name": "doctrine/inflector",
  1157. "version": "2.0.10",
  1158. "source": {
  1159. "type": "git",
  1160. "url": "https://github.com/doctrine/inflector.git",
  1161. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  1162. },
  1163. "dist": {
  1164. "type": "zip",
  1165. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1166. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1167. "shasum": ""
  1168. },
  1169. "require": {
  1170. "php": "^7.2 || ^8.0"
  1171. },
  1172. "require-dev": {
  1173. "doctrine/coding-standard": "^11.0",
  1174. "phpstan/phpstan": "^1.8",
  1175. "phpstan/phpstan-phpunit": "^1.1",
  1176. "phpstan/phpstan-strict-rules": "^1.3",
  1177. "phpunit/phpunit": "^8.5 || ^9.5",
  1178. "vimeo/psalm": "^4.25 || ^5.4"
  1179. },
  1180. "type": "library",
  1181. "autoload": {
  1182. "psr-4": {
  1183. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1184. }
  1185. },
  1186. "notification-url": "https://packagist.org/downloads/",
  1187. "license": [
  1188. "MIT"
  1189. ],
  1190. "authors": [
  1191. {
  1192. "name": "Guilherme Blanco",
  1193. "email": "[email protected]"
  1194. },
  1195. {
  1196. "name": "Roman Borschel",
  1197. "email": "[email protected]"
  1198. },
  1199. {
  1200. "name": "Benjamin Eberlei",
  1201. "email": "[email protected]"
  1202. },
  1203. {
  1204. "name": "Jonathan Wage",
  1205. "email": "[email protected]"
  1206. },
  1207. {
  1208. "name": "Johannes Schmitt",
  1209. "email": "[email protected]"
  1210. }
  1211. ],
  1212. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1213. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1214. "keywords": [
  1215. "inflection",
  1216. "inflector",
  1217. "lowercase",
  1218. "manipulation",
  1219. "php",
  1220. "plural",
  1221. "singular",
  1222. "strings",
  1223. "uppercase",
  1224. "words"
  1225. ],
  1226. "support": {
  1227. "issues": "https://github.com/doctrine/inflector/issues",
  1228. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  1229. },
  1230. "funding": [
  1231. {
  1232. "url": "https://www.doctrine-project.org/sponsorship.html",
  1233. "type": "custom"
  1234. },
  1235. {
  1236. "url": "https://www.patreon.com/phpdoctrine",
  1237. "type": "patreon"
  1238. },
  1239. {
  1240. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1241. "type": "tidelift"
  1242. }
  1243. ],
  1244. "time": "2024-02-18T20:23:39+00:00"
  1245. },
  1246. {
  1247. "name": "endroid/qr-code",
  1248. "version": "5.0.7",
  1249. "source": {
  1250. "type": "git",
  1251. "url": "https://github.com/endroid/qr-code.git",
  1252. "reference": "0cc00f0626b73bc71a1ea17af01387d0ac75e046"
  1253. },
  1254. "dist": {
  1255. "type": "zip",
  1256. "url": "https://api.github.com/repos/endroid/qr-code/zipball/0cc00f0626b73bc71a1ea17af01387d0ac75e046",
  1257. "reference": "0cc00f0626b73bc71a1ea17af01387d0ac75e046",
  1258. "shasum": ""
  1259. },
  1260. "require": {
  1261. "bacon/bacon-qr-code": "^2.0.5",
  1262. "php": "^8.1"
  1263. },
  1264. "conflict": {
  1265. "khanamiryan/qrcode-detector-decoder": "^1.0.6"
  1266. },
  1267. "require-dev": {
  1268. "endroid/quality": "dev-main",
  1269. "ext-gd": "*",
  1270. "khanamiryan/qrcode-detector-decoder": "^1.0.4||^2.0.2",
  1271. "setasign/fpdf": "^1.8.2"
  1272. },
  1273. "suggest": {
  1274. "ext-gd": "Enables you to write PNG images",
  1275. "khanamiryan/qrcode-detector-decoder": "Enables you to use the image validator",
  1276. "roave/security-advisories": "Makes sure package versions with known security issues are not installed",
  1277. "setasign/fpdf": "Enables you to use the PDF writer"
  1278. },
  1279. "type": "library",
  1280. "extra": {
  1281. "branch-alias": {
  1282. "dev-main": "5.x-dev"
  1283. }
  1284. },
  1285. "autoload": {
  1286. "psr-4": {
  1287. "Endroid\\QrCode\\": "src/"
  1288. }
  1289. },
  1290. "notification-url": "https://packagist.org/downloads/",
  1291. "license": [
  1292. "MIT"
  1293. ],
  1294. "authors": [
  1295. {
  1296. "name": "Jeroen van den Enden",
  1297. "email": "[email protected]"
  1298. }
  1299. ],
  1300. "description": "Endroid QR Code",
  1301. "homepage": "https://github.com/endroid/qr-code",
  1302. "keywords": [
  1303. "code",
  1304. "endroid",
  1305. "php",
  1306. "qr",
  1307. "qrcode"
  1308. ],
  1309. "support": {
  1310. "issues": "https://github.com/endroid/qr-code/issues",
  1311. "source": "https://github.com/endroid/qr-code/tree/5.0.7"
  1312. },
  1313. "funding": [
  1314. {
  1315. "url": "https://github.com/endroid",
  1316. "type": "github"
  1317. }
  1318. ],
  1319. "time": "2024-03-08T11:24:40+00:00"
  1320. },
  1321. {
  1322. "name": "geoip2/geoip2",
  1323. "version": "v3.0.0",
  1324. "source": {
  1325. "type": "git",
  1326. "url": "https://github.com/maxmind/GeoIP2-php.git",
  1327. "reference": "1a802ce9356cdd1c6b681c030fd9563750e11e6a"
  1328. },
  1329. "dist": {
  1330. "type": "zip",
  1331. "url": "https://api.github.com/repos/maxmind/GeoIP2-php/zipball/1a802ce9356cdd1c6b681c030fd9563750e11e6a",
  1332. "reference": "1a802ce9356cdd1c6b681c030fd9563750e11e6a",
  1333. "shasum": ""
  1334. },
  1335. "require": {
  1336. "ext-json": "*",
  1337. "maxmind-db/reader": "^1.11.1",
  1338. "maxmind/web-service-common": "~0.8",
  1339. "php": ">=8.1"
  1340. },
  1341. "require-dev": {
  1342. "friendsofphp/php-cs-fixer": "3.*",
  1343. "phpstan/phpstan": "*",
  1344. "phpunit/phpunit": "^10.0",
  1345. "squizlabs/php_codesniffer": "3.*"
  1346. },
  1347. "type": "library",
  1348. "autoload": {
  1349. "psr-4": {
  1350. "GeoIp2\\": "src"
  1351. }
  1352. },
  1353. "notification-url": "https://packagist.org/downloads/",
  1354. "license": [
  1355. "Apache-2.0"
  1356. ],
  1357. "authors": [
  1358. {
  1359. "name": "Gregory J. Oschwald",
  1360. "email": "[email protected]",
  1361. "homepage": "https://www.maxmind.com/"
  1362. }
  1363. ],
  1364. "description": "MaxMind GeoIP2 PHP API",
  1365. "homepage": "https://github.com/maxmind/GeoIP2-php",
  1366. "keywords": [
  1367. "IP",
  1368. "geoip",
  1369. "geoip2",
  1370. "geolocation",
  1371. "maxmind"
  1372. ],
  1373. "support": {
  1374. "issues": "https://github.com/maxmind/GeoIP2-php/issues",
  1375. "source": "https://github.com/maxmind/GeoIP2-php/tree/v3.0.0"
  1376. },
  1377. "time": "2023-12-04T17:16:34+00:00"
  1378. },
  1379. {
  1380. "name": "guzzlehttp/guzzle",
  1381. "version": "7.8.1",
  1382. "source": {
  1383. "type": "git",
  1384. "url": "https://github.com/guzzle/guzzle.git",
  1385. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  1386. },
  1387. "dist": {
  1388. "type": "zip",
  1389. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  1390. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  1391. "shasum": ""
  1392. },
  1393. "require": {
  1394. "ext-json": "*",
  1395. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  1396. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  1397. "php": "^7.2.5 || ^8.0",
  1398. "psr/http-client": "^1.0",
  1399. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1400. },
  1401. "provide": {
  1402. "psr/http-client-implementation": "1.0"
  1403. },
  1404. "require-dev": {
  1405. "bamarni/composer-bin-plugin": "^1.8.2",
  1406. "ext-curl": "*",
  1407. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  1408. "php-http/message-factory": "^1.1",
  1409. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  1410. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1411. },
  1412. "suggest": {
  1413. "ext-curl": "Required for CURL handler support",
  1414. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1415. "psr/log": "Required for using the Log middleware"
  1416. },
  1417. "type": "library",
  1418. "extra": {
  1419. "bamarni-bin": {
  1420. "bin-links": true,
  1421. "forward-command": false
  1422. }
  1423. },
  1424. "autoload": {
  1425. "files": [
  1426. "src/functions_include.php"
  1427. ],
  1428. "psr-4": {
  1429. "GuzzleHttp\\": "src/"
  1430. }
  1431. },
  1432. "notification-url": "https://packagist.org/downloads/",
  1433. "license": [
  1434. "MIT"
  1435. ],
  1436. "authors": [
  1437. {
  1438. "name": "Graham Campbell",
  1439. "email": "[email protected]",
  1440. "homepage": "https://github.com/GrahamCampbell"
  1441. },
  1442. {
  1443. "name": "Michael Dowling",
  1444. "email": "[email protected]",
  1445. "homepage": "https://github.com/mtdowling"
  1446. },
  1447. {
  1448. "name": "Jeremy Lindblom",
  1449. "email": "[email protected]",
  1450. "homepage": "https://github.com/jeremeamia"
  1451. },
  1452. {
  1453. "name": "George Mponos",
  1454. "email": "[email protected]",
  1455. "homepage": "https://github.com/gmponos"
  1456. },
  1457. {
  1458. "name": "Tobias Nyholm",
  1459. "email": "[email protected]",
  1460. "homepage": "https://github.com/Nyholm"
  1461. },
  1462. {
  1463. "name": "Márk Sági-Kazár",
  1464. "email": "[email protected]",
  1465. "homepage": "https://github.com/sagikazarmark"
  1466. },
  1467. {
  1468. "name": "Tobias Schultze",
  1469. "email": "[email protected]",
  1470. "homepage": "https://github.com/Tobion"
  1471. }
  1472. ],
  1473. "description": "Guzzle is a PHP HTTP client library",
  1474. "keywords": [
  1475. "client",
  1476. "curl",
  1477. "framework",
  1478. "http",
  1479. "http client",
  1480. "psr-18",
  1481. "psr-7",
  1482. "rest",
  1483. "web service"
  1484. ],
  1485. "support": {
  1486. "issues": "https://github.com/guzzle/guzzle/issues",
  1487. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  1488. },
  1489. "funding": [
  1490. {
  1491. "url": "https://github.com/GrahamCampbell",
  1492. "type": "github"
  1493. },
  1494. {
  1495. "url": "https://github.com/Nyholm",
  1496. "type": "github"
  1497. },
  1498. {
  1499. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1500. "type": "tidelift"
  1501. }
  1502. ],
  1503. "time": "2023-12-03T20:35:24+00:00"
  1504. },
  1505. {
  1506. "name": "guzzlehttp/promises",
  1507. "version": "2.0.2",
  1508. "source": {
  1509. "type": "git",
  1510. "url": "https://github.com/guzzle/promises.git",
  1511. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  1512. },
  1513. "dist": {
  1514. "type": "zip",
  1515. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  1516. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  1517. "shasum": ""
  1518. },
  1519. "require": {
  1520. "php": "^7.2.5 || ^8.0"
  1521. },
  1522. "require-dev": {
  1523. "bamarni/composer-bin-plugin": "^1.8.2",
  1524. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  1525. },
  1526. "type": "library",
  1527. "extra": {
  1528. "bamarni-bin": {
  1529. "bin-links": true,
  1530. "forward-command": false
  1531. }
  1532. },
  1533. "autoload": {
  1534. "psr-4": {
  1535. "GuzzleHttp\\Promise\\": "src/"
  1536. }
  1537. },
  1538. "notification-url": "https://packagist.org/downloads/",
  1539. "license": [
  1540. "MIT"
  1541. ],
  1542. "authors": [
  1543. {
  1544. "name": "Graham Campbell",
  1545. "email": "[email protected]",
  1546. "homepage": "https://github.com/GrahamCampbell"
  1547. },
  1548. {
  1549. "name": "Michael Dowling",
  1550. "email": "[email protected]",
  1551. "homepage": "https://github.com/mtdowling"
  1552. },
  1553. {
  1554. "name": "Tobias Nyholm",
  1555. "email": "[email protected]",
  1556. "homepage": "https://github.com/Nyholm"
  1557. },
  1558. {
  1559. "name": "Tobias Schultze",
  1560. "email": "[email protected]",
  1561. "homepage": "https://github.com/Tobion"
  1562. }
  1563. ],
  1564. "description": "Guzzle promises library",
  1565. "keywords": [
  1566. "promise"
  1567. ],
  1568. "support": {
  1569. "issues": "https://github.com/guzzle/promises/issues",
  1570. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  1571. },
  1572. "funding": [
  1573. {
  1574. "url": "https://github.com/GrahamCampbell",
  1575. "type": "github"
  1576. },
  1577. {
  1578. "url": "https://github.com/Nyholm",
  1579. "type": "github"
  1580. },
  1581. {
  1582. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1583. "type": "tidelift"
  1584. }
  1585. ],
  1586. "time": "2023-12-03T20:19:20+00:00"
  1587. },
  1588. {
  1589. "name": "guzzlehttp/psr7",
  1590. "version": "2.6.2",
  1591. "source": {
  1592. "type": "git",
  1593. "url": "https://github.com/guzzle/psr7.git",
  1594. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  1595. },
  1596. "dist": {
  1597. "type": "zip",
  1598. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  1599. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  1600. "shasum": ""
  1601. },
  1602. "require": {
  1603. "php": "^7.2.5 || ^8.0",
  1604. "psr/http-factory": "^1.0",
  1605. "psr/http-message": "^1.1 || ^2.0",
  1606. "ralouphie/getallheaders": "^3.0"
  1607. },
  1608. "provide": {
  1609. "psr/http-factory-implementation": "1.0",
  1610. "psr/http-message-implementation": "1.0"
  1611. },
  1612. "require-dev": {
  1613. "bamarni/composer-bin-plugin": "^1.8.2",
  1614. "http-interop/http-factory-tests": "^0.9",
  1615. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  1616. },
  1617. "suggest": {
  1618. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1619. },
  1620. "type": "library",
  1621. "extra": {
  1622. "bamarni-bin": {
  1623. "bin-links": true,
  1624. "forward-command": false
  1625. }
  1626. },
  1627. "autoload": {
  1628. "psr-4": {
  1629. "GuzzleHttp\\Psr7\\": "src/"
  1630. }
  1631. },
  1632. "notification-url": "https://packagist.org/downloads/",
  1633. "license": [
  1634. "MIT"
  1635. ],
  1636. "authors": [
  1637. {
  1638. "name": "Graham Campbell",
  1639. "email": "[email protected]",
  1640. "homepage": "https://github.com/GrahamCampbell"
  1641. },
  1642. {
  1643. "name": "Michael Dowling",
  1644. "email": "[email protected]",
  1645. "homepage": "https://github.com/mtdowling"
  1646. },
  1647. {
  1648. "name": "George Mponos",
  1649. "email": "[email protected]",
  1650. "homepage": "https://github.com/gmponos"
  1651. },
  1652. {
  1653. "name": "Tobias Nyholm",
  1654. "email": "[email protected]",
  1655. "homepage": "https://github.com/Nyholm"
  1656. },
  1657. {
  1658. "name": "Márk Sági-Kazár",
  1659. "email": "[email protected]",
  1660. "homepage": "https://github.com/sagikazarmark"
  1661. },
  1662. {
  1663. "name": "Tobias Schultze",
  1664. "email": "[email protected]",
  1665. "homepage": "https://github.com/Tobion"
  1666. },
  1667. {
  1668. "name": "Márk Sági-Kazár",
  1669. "email": "[email protected]",
  1670. "homepage": "https://sagikazarmark.hu"
  1671. }
  1672. ],
  1673. "description": "PSR-7 message implementation that also provides common utility methods",
  1674. "keywords": [
  1675. "http",
  1676. "message",
  1677. "psr-7",
  1678. "request",
  1679. "response",
  1680. "stream",
  1681. "uri",
  1682. "url"
  1683. ],
  1684. "support": {
  1685. "issues": "https://github.com/guzzle/psr7/issues",
  1686. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  1687. },
  1688. "funding": [
  1689. {
  1690. "url": "https://github.com/GrahamCampbell",
  1691. "type": "github"
  1692. },
  1693. {
  1694. "url": "https://github.com/Nyholm",
  1695. "type": "github"
  1696. },
  1697. {
  1698. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1699. "type": "tidelift"
  1700. }
  1701. ],
  1702. "time": "2023-12-03T20:05:35+00:00"
  1703. },
  1704. {
  1705. "name": "illuminate/collections",
  1706. "version": "v11.4.0",
  1707. "source": {
  1708. "type": "git",
  1709. "url": "https://github.com/illuminate/collections.git",
  1710. "reference": "19c6554c7eba0efabc3f8aa4c434815b7f6b4b7d"
  1711. },
  1712. "dist": {
  1713. "type": "zip",
  1714. "url": "https://api.github.com/repos/illuminate/collections/zipball/19c6554c7eba0efabc3f8aa4c434815b7f6b4b7d",
  1715. "reference": "19c6554c7eba0efabc3f8aa4c434815b7f6b4b7d",
  1716. "shasum": ""
  1717. },
  1718. "require": {
  1719. "illuminate/conditionable": "^11.0",
  1720. "illuminate/contracts": "^11.0",
  1721. "illuminate/macroable": "^11.0",
  1722. "php": "^8.2"
  1723. },
  1724. "suggest": {
  1725. "symfony/var-dumper": "Required to use the dump method (^7.0)."
  1726. },
  1727. "type": "library",
  1728. "extra": {
  1729. "branch-alias": {
  1730. "dev-master": "11.x-dev"
  1731. }
  1732. },
  1733. "autoload": {
  1734. "files": [
  1735. "helpers.php"
  1736. ],
  1737. "psr-4": {
  1738. "Illuminate\\Support\\": ""
  1739. }
  1740. },
  1741. "notification-url": "https://packagist.org/downloads/",
  1742. "license": [
  1743. "MIT"
  1744. ],
  1745. "authors": [
  1746. {
  1747. "name": "Taylor Otwell",
  1748. "email": "[email protected]"
  1749. }
  1750. ],
  1751. "description": "The Illuminate Collections package.",
  1752. "homepage": "https://laravel.com",
  1753. "support": {
  1754. "issues": "https://github.com/laravel/framework/issues",
  1755. "source": "https://github.com/laravel/framework"
  1756. },
  1757. "time": "2024-04-15T15:26:05+00:00"
  1758. },
  1759. {
  1760. "name": "illuminate/conditionable",
  1761. "version": "v11.4.0",
  1762. "source": {
  1763. "type": "git",
  1764. "url": "https://github.com/illuminate/conditionable.git",
  1765. "reference": "8a558fec063b6a63da1c3af1d219c0f998edffeb"
  1766. },
  1767. "dist": {
  1768. "type": "zip",
  1769. "url": "https://api.github.com/repos/illuminate/conditionable/zipball/8a558fec063b6a63da1c3af1d219c0f998edffeb",
  1770. "reference": "8a558fec063b6a63da1c3af1d219c0f998edffeb",
  1771. "shasum": ""
  1772. },
  1773. "require": {
  1774. "php": "^8.0.2"
  1775. },
  1776. "type": "library",
  1777. "extra": {
  1778. "branch-alias": {
  1779. "dev-master": "11.x-dev"
  1780. }
  1781. },
  1782. "autoload": {
  1783. "psr-4": {
  1784. "Illuminate\\Support\\": ""
  1785. }
  1786. },
  1787. "notification-url": "https://packagist.org/downloads/",
  1788. "license": [
  1789. "MIT"
  1790. ],
  1791. "authors": [
  1792. {
  1793. "name": "Taylor Otwell",
  1794. "email": "[email protected]"
  1795. }
  1796. ],
  1797. "description": "The Illuminate Conditionable package.",
  1798. "homepage": "https://laravel.com",
  1799. "support": {
  1800. "issues": "https://github.com/laravel/framework/issues",
  1801. "source": "https://github.com/laravel/framework"
  1802. },
  1803. "time": "2024-04-04T17:36:49+00:00"
  1804. },
  1805. {
  1806. "name": "illuminate/container",
  1807. "version": "v11.4.0",
  1808. "source": {
  1809. "type": "git",
  1810. "url": "https://github.com/illuminate/container.git",
  1811. "reference": "af979ecfd6dfa6583eae5dfe2e9a8840358f4ca7"
  1812. },
  1813. "dist": {
  1814. "type": "zip",
  1815. "url": "https://api.github.com/repos/illuminate/container/zipball/af979ecfd6dfa6583eae5dfe2e9a8840358f4ca7",
  1816. "reference": "af979ecfd6dfa6583eae5dfe2e9a8840358f4ca7",
  1817. "shasum": ""
  1818. },
  1819. "require": {
  1820. "illuminate/contracts": "^11.0",
  1821. "php": "^8.2",
  1822. "psr/container": "^1.1.1|^2.0.1"
  1823. },
  1824. "provide": {
  1825. "psr/container-implementation": "1.1|2.0"
  1826. },
  1827. "type": "library",
  1828. "extra": {
  1829. "branch-alias": {
  1830. "dev-master": "11.x-dev"
  1831. }
  1832. },
  1833. "autoload": {
  1834. "psr-4": {
  1835. "Illuminate\\Container\\": ""
  1836. }
  1837. },
  1838. "notification-url": "https://packagist.org/downloads/",
  1839. "license": [
  1840. "MIT"
  1841. ],
  1842. "authors": [
  1843. {
  1844. "name": "Taylor Otwell",
  1845. "email": "[email protected]"
  1846. }
  1847. ],
  1848. "description": "The Illuminate Container package.",
  1849. "homepage": "https://laravel.com",
  1850. "support": {
  1851. "issues": "https://github.com/laravel/framework/issues",
  1852. "source": "https://github.com/laravel/framework"
  1853. },
  1854. "time": "2024-04-04T17:36:49+00:00"
  1855. },
  1856. {
  1857. "name": "illuminate/contracts",
  1858. "version": "v11.4.0",
  1859. "source": {
  1860. "type": "git",
  1861. "url": "https://github.com/illuminate/contracts.git",
  1862. "reference": "28bc6fb6fe3debb27a19b12a59288ed2d1bd4008"
  1863. },
  1864. "dist": {
  1865. "type": "zip",
  1866. "url": "https://api.github.com/repos/illuminate/contracts/zipball/28bc6fb6fe3debb27a19b12a59288ed2d1bd4008",
  1867. "reference": "28bc6fb6fe3debb27a19b12a59288ed2d1bd4008",
  1868. "shasum": ""
  1869. },
  1870. "require": {
  1871. "php": "^8.2",
  1872. "psr/container": "^1.1.1|^2.0.1",
  1873. "psr/simple-cache": "^1.0|^2.0|^3.0"
  1874. },
  1875. "type": "library",
  1876. "extra": {
  1877. "branch-alias": {
  1878. "dev-master": "11.x-dev"
  1879. }
  1880. },
  1881. "autoload": {
  1882. "psr-4": {
  1883. "Illuminate\\Contracts\\": ""
  1884. }
  1885. },
  1886. "notification-url": "https://packagist.org/downloads/",
  1887. "license": [
  1888. "MIT"
  1889. ],
  1890. "authors": [
  1891. {
  1892. "name": "Taylor Otwell",
  1893. "email": "[email protected]"
  1894. }
  1895. ],
  1896. "description": "The Illuminate Contracts package.",
  1897. "homepage": "https://laravel.com",
  1898. "support": {
  1899. "issues": "https://github.com/laravel/framework/issues",
  1900. "source": "https://github.com/laravel/framework"
  1901. },
  1902. "time": "2024-04-04T17:36:49+00:00"
  1903. },
  1904. {
  1905. "name": "illuminate/database",
  1906. "version": "v11.4.0",
  1907. "source": {
  1908. "type": "git",
  1909. "url": "https://github.com/illuminate/database.git",
  1910. "reference": "aa4171c74d3bac4500128aedc6084377e2e4b950"
  1911. },
  1912. "dist": {
  1913. "type": "zip",
  1914. "url": "https://api.github.com/repos/illuminate/database/zipball/aa4171c74d3bac4500128aedc6084377e2e4b950",
  1915. "reference": "aa4171c74d3bac4500128aedc6084377e2e4b950",
  1916. "shasum": ""
  1917. },
  1918. "require": {
  1919. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  1920. "ext-pdo": "*",
  1921. "illuminate/collections": "^11.0",
  1922. "illuminate/container": "^11.0",
  1923. "illuminate/contracts": "^11.0",
  1924. "illuminate/macroable": "^11.0",
  1925. "illuminate/support": "^11.0",
  1926. "php": "^8.2"
  1927. },
  1928. "suggest": {
  1929. "ext-filter": "Required to use the Postgres database driver.",
  1930. "fakerphp/faker": "Required to use the eloquent factory builder (^1.21).",
  1931. "illuminate/console": "Required to use the database commands (^11.0).",
  1932. "illuminate/events": "Required to use the observers with Eloquent (^11.0).",
  1933. "illuminate/filesystem": "Required to use the migrations (^11.0).",
  1934. "illuminate/pagination": "Required to paginate the result set (^11.0).",
  1935. "symfony/finder": "Required to use Eloquent model factories (^7.0)."
  1936. },
  1937. "type": "library",
  1938. "extra": {
  1939. "branch-alias": {
  1940. "dev-master": "11.x-dev"
  1941. }
  1942. },
  1943. "autoload": {
  1944. "psr-4": {
  1945. "Illuminate\\Database\\": ""
  1946. }
  1947. },
  1948. "notification-url": "https://packagist.org/downloads/",
  1949. "license": [
  1950. "MIT"
  1951. ],
  1952. "authors": [
  1953. {
  1954. "name": "Taylor Otwell",
  1955. "email": "[email protected]"
  1956. }
  1957. ],
  1958. "description": "The Illuminate Database package.",
  1959. "homepage": "https://laravel.com",
  1960. "keywords": [
  1961. "database",
  1962. "laravel",
  1963. "orm",
  1964. "sql"
  1965. ],
  1966. "support": {
  1967. "issues": "https://github.com/laravel/framework/issues",
  1968. "source": "https://github.com/laravel/framework"
  1969. },
  1970. "time": "2024-04-16T14:29:11+00:00"
  1971. },
  1972. {
  1973. "name": "illuminate/macroable",
  1974. "version": "v11.4.0",
  1975. "source": {
  1976. "type": "git",
  1977. "url": "https://github.com/illuminate/macroable.git",
  1978. "reference": "e1be58f9b2af73f242dc6a9add1f376b3ec89eef"
  1979. },
  1980. "dist": {
  1981. "type": "zip",
  1982. "url": "https://api.github.com/repos/illuminate/macroable/zipball/e1be58f9b2af73f242dc6a9add1f376b3ec89eef",
  1983. "reference": "e1be58f9b2af73f242dc6a9add1f376b3ec89eef",
  1984. "shasum": ""
  1985. },
  1986. "require": {
  1987. "php": "^8.2"
  1988. },
  1989. "type": "library",
  1990. "extra": {
  1991. "branch-alias": {
  1992. "dev-master": "11.x-dev"
  1993. }
  1994. },
  1995. "autoload": {
  1996. "psr-4": {
  1997. "Illuminate\\Support\\": ""
  1998. }
  1999. },
  2000. "notification-url": "https://packagist.org/downloads/",
  2001. "license": [
  2002. "MIT"
  2003. ],
  2004. "authors": [
  2005. {
  2006. "name": "Taylor Otwell",
  2007. "email": "[email protected]"
  2008. }
  2009. ],
  2010. "description": "The Illuminate Macroable package.",
  2011. "homepage": "https://laravel.com",
  2012. "support": {
  2013. "issues": "https://github.com/laravel/framework/issues",
  2014. "source": "https://github.com/laravel/framework"
  2015. },
  2016. "time": "2023-06-08T14:08:27+00:00"
  2017. },
  2018. {
  2019. "name": "illuminate/pagination",
  2020. "version": "v11.4.0",
  2021. "source": {
  2022. "type": "git",
  2023. "url": "https://github.com/illuminate/pagination.git",
  2024. "reference": "0752b63f17105b7de8fa3dea12acd3c4099db21e"
  2025. },
  2026. "dist": {
  2027. "type": "zip",
  2028. "url": "https://api.github.com/repos/illuminate/pagination/zipball/0752b63f17105b7de8fa3dea12acd3c4099db21e",
  2029. "reference": "0752b63f17105b7de8fa3dea12acd3c4099db21e",
  2030. "shasum": ""
  2031. },
  2032. "require": {
  2033. "ext-filter": "*",
  2034. "illuminate/collections": "^11.0",
  2035. "illuminate/contracts": "^11.0",
  2036. "illuminate/support": "^11.0",
  2037. "php": "^8.2"
  2038. },
  2039. "type": "library",
  2040. "extra": {
  2041. "branch-alias": {
  2042. "dev-master": "11.x-dev"
  2043. }
  2044. },
  2045. "autoload": {
  2046. "psr-4": {
  2047. "Illuminate\\Pagination\\": ""
  2048. }
  2049. },
  2050. "notification-url": "https://packagist.org/downloads/",
  2051. "license": [
  2052. "MIT"
  2053. ],
  2054. "authors": [
  2055. {
  2056. "name": "Taylor Otwell",
  2057. "email": "[email protected]"
  2058. }
  2059. ],
  2060. "description": "The Illuminate Pagination package.",
  2061. "homepage": "https://laravel.com",
  2062. "support": {
  2063. "issues": "https://github.com/laravel/framework/issues",
  2064. "source": "https://github.com/laravel/framework"
  2065. },
  2066. "time": "2024-04-16T14:29:11+00:00"
  2067. },
  2068. {
  2069. "name": "illuminate/support",
  2070. "version": "v11.4.0",
  2071. "source": {
  2072. "type": "git",
  2073. "url": "https://github.com/illuminate/support.git",
  2074. "reference": "e7de8b8aa7658c827c48c99212927695848540b8"
  2075. },
  2076. "dist": {
  2077. "type": "zip",
  2078. "url": "https://api.github.com/repos/illuminate/support/zipball/e7de8b8aa7658c827c48c99212927695848540b8",
  2079. "reference": "e7de8b8aa7658c827c48c99212927695848540b8",
  2080. "shasum": ""
  2081. },
  2082. "require": {
  2083. "doctrine/inflector": "^2.0",
  2084. "ext-ctype": "*",
  2085. "ext-filter": "*",
  2086. "ext-mbstring": "*",
  2087. "illuminate/collections": "^11.0",
  2088. "illuminate/conditionable": "^11.0",
  2089. "illuminate/contracts": "^11.0",
  2090. "illuminate/macroable": "^11.0",
  2091. "nesbot/carbon": "^2.72.2|^3.0",
  2092. "php": "^8.2",
  2093. "voku/portable-ascii": "^2.0"
  2094. },
  2095. "conflict": {
  2096. "tightenco/collect": "<5.5.33"
  2097. },
  2098. "replace": {
  2099. "spatie/once": "*"
  2100. },
  2101. "suggest": {
  2102. "illuminate/filesystem": "Required to use the composer class (^11.0).",
  2103. "league/commonmark": "Required to use Str::markdown() and Stringable::markdown() (^2.0.2).",
  2104. "ramsey/uuid": "Required to use Str::uuid() (^4.7).",
  2105. "symfony/process": "Required to use the composer class (^7.0).",
  2106. "symfony/uid": "Required to use Str::ulid() (^7.0).",
  2107. "symfony/var-dumper": "Required to use the dd function (^7.0).",
  2108. "vlucas/phpdotenv": "Required to use the Env class and env helper (^5.4.1)."
  2109. },
  2110. "type": "library",
  2111. "extra": {
  2112. "branch-alias": {
  2113. "dev-master": "11.x-dev"
  2114. }
  2115. },
  2116. "autoload": {
  2117. "files": [
  2118. "helpers.php"
  2119. ],
  2120. "psr-4": {
  2121. "Illuminate\\Support\\": ""
  2122. }
  2123. },
  2124. "notification-url": "https://packagist.org/downloads/",
  2125. "license": [
  2126. "MIT"
  2127. ],
  2128. "authors": [
  2129. {
  2130. "name": "Taylor Otwell",
  2131. "email": "[email protected]"
  2132. }
  2133. ],
  2134. "description": "The Illuminate Support package.",
  2135. "homepage": "https://laravel.com",
  2136. "support": {
  2137. "issues": "https://github.com/laravel/framework/issues",
  2138. "source": "https://github.com/laravel/framework"
  2139. },
  2140. "time": "2024-04-15T12:21:59+00:00"
  2141. },
  2142. {
  2143. "name": "irazasyed/telegram-bot-sdk",
  2144. "version": "v3.14.0",
  2145. "source": {
  2146. "type": "git",
  2147. "url": "https://github.com/irazasyed/telegram-bot-sdk.git",
  2148. "reference": "c72ef585556578105c4d5cc56324575ef3677fd2"
  2149. },
  2150. "dist": {
  2151. "type": "zip",
  2152. "url": "https://api.github.com/repos/irazasyed/telegram-bot-sdk/zipball/c72ef585556578105c4d5cc56324575ef3677fd2",
  2153. "reference": "c72ef585556578105c4d5cc56324575ef3677fd2",
  2154. "shasum": ""
  2155. },
  2156. "require": {
  2157. "ext-json": "*",
  2158. "guzzlehttp/guzzle": "^7.5.1",
  2159. "guzzlehttp/psr7": "^2.5",
  2160. "illuminate/support": "9 - 11",
  2161. "league/event": "^2.2 || ^3.0",
  2162. "php": ">=8.0",
  2163. "psr/container": "^1.1 || ^2.0",
  2164. "psr/event-dispatcher": "^1.0"
  2165. },
  2166. "require-dev": {
  2167. "irazasyed/docgen": "^0.2",
  2168. "pestphp/pest": "^1.22 || ^2.0",
  2169. "php-parallel-lint/php-parallel-lint": "^1.3",
  2170. "phpspec/prophecy": "^1.17",
  2171. "phpspec/prophecy-phpunit": "^2.0",
  2172. "rector/rector": "^0.16.0 || ^0.17.0 || ^0.18.0 || ^0.19.0 || ^1.0.0"
  2173. },
  2174. "suggest": {
  2175. "illuminate/container": "Hold dependencies to be injected in commands constructors",
  2176. "irazasyed/larasupport": "Allows you to use any Laravel Package in Lumen by adding support!"
  2177. },
  2178. "type": "library",
  2179. "extra": {
  2180. "branch-alias": {
  2181. "dev-master": "3.0-dev"
  2182. },
  2183. "laravel": {
  2184. "aliases": {
  2185. "Telegram": "Telegram\\Bot\\Laravel\\Facades\\Telegram"
  2186. },
  2187. "providers": [
  2188. "Telegram\\Bot\\Laravel\\TelegramServiceProvider"
  2189. ]
  2190. }
  2191. },
  2192. "autoload": {
  2193. "psr-4": {
  2194. "Telegram\\Bot\\": "src/"
  2195. }
  2196. },
  2197. "notification-url": "https://packagist.org/downloads/",
  2198. "license": [
  2199. "BSD-3-Clause"
  2200. ],
  2201. "authors": [
  2202. {
  2203. "name": "Irfaq Syed",
  2204. "email": "[email protected]",
  2205. "homepage": "https://github.com/irazasyed"
  2206. }
  2207. ],
  2208. "description": "The Unofficial Telegram Bot API PHP SDK",
  2209. "homepage": "https://github.com/irazasyed/telegram-bot-sdk",
  2210. "keywords": [
  2211. "laravel",
  2212. "laravel telegram",
  2213. "telegram",
  2214. "telegram bot",
  2215. "telegram bot api",
  2216. "telegram php",
  2217. "telegram sdk"
  2218. ],
  2219. "support": {
  2220. "issues": "https://github.com/irazasyed/telegram-bot-sdk/issues",
  2221. "source": "https://github.com/irazasyed/telegram-bot-sdk/tree/v3.14.0"
  2222. },
  2223. "time": "2024-03-11T03:11:26+00:00"
  2224. },
  2225. {
  2226. "name": "jean85/pretty-package-versions",
  2227. "version": "2.0.6",
  2228. "source": {
  2229. "type": "git",
  2230. "url": "https://github.com/Jean85/pretty-package-versions.git",
  2231. "reference": "f9fdd29ad8e6d024f52678b570e5593759b550b4"
  2232. },
  2233. "dist": {
  2234. "type": "zip",
  2235. "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/f9fdd29ad8e6d024f52678b570e5593759b550b4",
  2236. "reference": "f9fdd29ad8e6d024f52678b570e5593759b550b4",
  2237. "shasum": ""
  2238. },
  2239. "require": {
  2240. "composer-runtime-api": "^2.0.0",
  2241. "php": "^7.1|^8.0"
  2242. },
  2243. "require-dev": {
  2244. "friendsofphp/php-cs-fixer": "^3.2",
  2245. "jean85/composer-provided-replaced-stub-package": "^1.0",
  2246. "phpstan/phpstan": "^1.4",
  2247. "phpunit/phpunit": "^7.5|^8.5|^9.4",
  2248. "vimeo/psalm": "^4.3"
  2249. },
  2250. "type": "library",
  2251. "extra": {
  2252. "branch-alias": {
  2253. "dev-master": "1.x-dev"
  2254. }
  2255. },
  2256. "autoload": {
  2257. "psr-4": {
  2258. "Jean85\\": "src/"
  2259. }
  2260. },
  2261. "notification-url": "https://packagist.org/downloads/",
  2262. "license": [
  2263. "MIT"
  2264. ],
  2265. "authors": [
  2266. {
  2267. "name": "Alessandro Lai",
  2268. "email": "[email protected]"
  2269. }
  2270. ],
  2271. "description": "A library to get pretty versions strings of installed dependencies",
  2272. "keywords": [
  2273. "composer",
  2274. "package",
  2275. "release",
  2276. "versions"
  2277. ],
  2278. "support": {
  2279. "issues": "https://github.com/Jean85/pretty-package-versions/issues",
  2280. "source": "https://github.com/Jean85/pretty-package-versions/tree/2.0.6"
  2281. },
  2282. "time": "2024-03-08T09:58:59+00:00"
  2283. },
  2284. {
  2285. "name": "lcobucci/jwt",
  2286. "version": "5.3.0",
  2287. "source": {
  2288. "type": "git",
  2289. "url": "https://github.com/lcobucci/jwt.git",
  2290. "reference": "08071d8d2c7f4b00222cc4b1fb6aa46990a80f83"
  2291. },
  2292. "dist": {
  2293. "type": "zip",
  2294. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/08071d8d2c7f4b00222cc4b1fb6aa46990a80f83",
  2295. "reference": "08071d8d2c7f4b00222cc4b1fb6aa46990a80f83",
  2296. "shasum": ""
  2297. },
  2298. "require": {
  2299. "ext-openssl": "*",
  2300. "ext-sodium": "*",
  2301. "php": "~8.1.0 || ~8.2.0 || ~8.3.0",
  2302. "psr/clock": "^1.0"
  2303. },
  2304. "require-dev": {
  2305. "infection/infection": "^0.27.0",
  2306. "lcobucci/clock": "^3.0",
  2307. "lcobucci/coding-standard": "^11.0",
  2308. "phpbench/phpbench": "^1.2.9",
  2309. "phpstan/extension-installer": "^1.2",
  2310. "phpstan/phpstan": "^1.10.7",
  2311. "phpstan/phpstan-deprecation-rules": "^1.1.3",
  2312. "phpstan/phpstan-phpunit": "^1.3.10",
  2313. "phpstan/phpstan-strict-rules": "^1.5.0",
  2314. "phpunit/phpunit": "^10.2.6"
  2315. },
  2316. "suggest": {
  2317. "lcobucci/clock": ">= 3.0"
  2318. },
  2319. "type": "library",
  2320. "autoload": {
  2321. "psr-4": {
  2322. "Lcobucci\\JWT\\": "src"
  2323. }
  2324. },
  2325. "notification-url": "https://packagist.org/downloads/",
  2326. "license": [
  2327. "BSD-3-Clause"
  2328. ],
  2329. "authors": [
  2330. {
  2331. "name": "Luís Cobucci",
  2332. "email": "[email protected]",
  2333. "role": "Developer"
  2334. }
  2335. ],
  2336. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2337. "keywords": [
  2338. "JWS",
  2339. "jwt"
  2340. ],
  2341. "support": {
  2342. "issues": "https://github.com/lcobucci/jwt/issues",
  2343. "source": "https://github.com/lcobucci/jwt/tree/5.3.0"
  2344. },
  2345. "funding": [
  2346. {
  2347. "url": "https://github.com/lcobucci",
  2348. "type": "github"
  2349. },
  2350. {
  2351. "url": "https://www.patreon.com/lcobucci",
  2352. "type": "patreon"
  2353. }
  2354. ],
  2355. "time": "2024-04-11T23:07:54+00:00"
  2356. },
  2357. {
  2358. "name": "league/event",
  2359. "version": "3.0.2",
  2360. "source": {
  2361. "type": "git",
  2362. "url": "https://github.com/thephpleague/event.git",
  2363. "reference": "221867a61087ee265ca07bd39aa757879afca820"
  2364. },
  2365. "dist": {
  2366. "type": "zip",
  2367. "url": "https://api.github.com/repos/thephpleague/event/zipball/221867a61087ee265ca07bd39aa757879afca820",
  2368. "reference": "221867a61087ee265ca07bd39aa757879afca820",
  2369. "shasum": ""
  2370. },
  2371. "require": {
  2372. "php": ">=7.2.0",
  2373. "psr/event-dispatcher": "^1.0"
  2374. },
  2375. "provide": {
  2376. "psr/event-dispatcher-implementation": "1.0"
  2377. },
  2378. "require-dev": {
  2379. "friendsofphp/php-cs-fixer": "^2.16",
  2380. "phpstan/phpstan": "^0.12.45",
  2381. "phpunit/phpunit": "^8.5"
  2382. },
  2383. "type": "library",
  2384. "extra": {
  2385. "branch-alias": {
  2386. "dev-master": "3.0-dev"
  2387. }
  2388. },
  2389. "autoload": {
  2390. "psr-4": {
  2391. "League\\Event\\": "src/"
  2392. }
  2393. },
  2394. "notification-url": "https://packagist.org/downloads/",
  2395. "license": [
  2396. "MIT"
  2397. ],
  2398. "authors": [
  2399. {
  2400. "name": "Frank de Jonge",
  2401. "email": "[email protected]"
  2402. }
  2403. ],
  2404. "description": "Event package",
  2405. "keywords": [
  2406. "emitter",
  2407. "event",
  2408. "listener"
  2409. ],
  2410. "support": {
  2411. "issues": "https://github.com/thephpleague/event/issues",
  2412. "source": "https://github.com/thephpleague/event/tree/3.0.2"
  2413. },
  2414. "time": "2022-10-29T09:31:25+00:00"
  2415. },
  2416. {
  2417. "name": "lizhichao/one-sm",
  2418. "version": "1.10",
  2419. "source": {
  2420. "type": "git",
  2421. "url": "https://github.com/lizhichao/sm.git",
  2422. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a"
  2423. },
  2424. "dist": {
  2425. "type": "zip",
  2426. "url": "https://api.github.com/repos/lizhichao/sm/zipball/687a012a44a5bfd4d9143a0234e1060543be455a",
  2427. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a",
  2428. "shasum": ""
  2429. },
  2430. "require": {
  2431. "php": ">=5.6"
  2432. },
  2433. "type": "library",
  2434. "autoload": {
  2435. "psr-4": {
  2436. "OneSm\\": "src/"
  2437. }
  2438. },
  2439. "notification-url": "https://packagist.org/downloads/",
  2440. "license": [
  2441. "Apache-2.0"
  2442. ],
  2443. "authors": [
  2444. {
  2445. "name": "tanszhe",
  2446. "email": "[email protected]"
  2447. }
  2448. ],
  2449. "description": "国密sm3",
  2450. "keywords": [
  2451. "php",
  2452. "sm3"
  2453. ],
  2454. "support": {
  2455. "issues": "https://github.com/lizhichao/sm/issues",
  2456. "source": "https://github.com/lizhichao/sm/tree/1.10"
  2457. },
  2458. "funding": [
  2459. {
  2460. "url": "https://www.vicsdf.com/img/w.jpg",
  2461. "type": "custom"
  2462. },
  2463. {
  2464. "url": "https://www.vicsdf.com/img/z.jpg",
  2465. "type": "custom"
  2466. }
  2467. ],
  2468. "time": "2021-05-26T06:19:22+00:00"
  2469. },
  2470. {
  2471. "name": "mailchimp/transactional",
  2472. "version": "1.0.59",
  2473. "source": {
  2474. "type": "git",
  2475. "url": "https://github.com/mailchimp/mailchimp-transactional-php.git",
  2476. "reference": "1783927027820dc1c624fd04abf5012a57f96feb"
  2477. },
  2478. "dist": {
  2479. "type": "zip",
  2480. "url": "https://api.github.com/repos/mailchimp/mailchimp-transactional-php/zipball/1783927027820dc1c624fd04abf5012a57f96feb",
  2481. "reference": "1783927027820dc1c624fd04abf5012a57f96feb",
  2482. "shasum": ""
  2483. },
  2484. "require": {
  2485. "ext-curl": "*",
  2486. "ext-json": "*",
  2487. "ext-mbstring": "*",
  2488. "guzzlehttp/guzzle": "^6.4 || ^7.2",
  2489. "php": ">=7.2"
  2490. },
  2491. "require-dev": {
  2492. "friendsofphp/php-cs-fixer": "~2.12",
  2493. "phpunit/phpunit": "^7",
  2494. "squizlabs/php_codesniffer": "~2.6"
  2495. },
  2496. "type": "library",
  2497. "autoload": {
  2498. "psr-4": {
  2499. "MailchimpTransactional\\": "lib/"
  2500. }
  2501. },
  2502. "notification-url": "https://packagist.org/downloads/",
  2503. "license": [
  2504. "proprietary"
  2505. ],
  2506. "authors": [
  2507. {
  2508. "name": "Mailchimp",
  2509. "homepage": "https://github.com/mailchimp/mailchimp-transactional-php"
  2510. }
  2511. ],
  2512. "homepage": "http://swagger.io",
  2513. "keywords": [
  2514. "api",
  2515. "php",
  2516. "sdk",
  2517. "swagger"
  2518. ],
  2519. "support": {
  2520. "source": "https://github.com/mailchimp/mailchimp-transactional-php/tree/v1.0.59"
  2521. },
  2522. "time": "2024-02-10T01:12:26+00:00"
  2523. },
  2524. {
  2525. "name": "mailgun/mailgun-php",
  2526. "version": "v4.2.0",
  2527. "source": {
  2528. "type": "git",
  2529. "url": "https://github.com/mailgun/mailgun-php.git",
  2530. "reference": "6e31693370a254522118b9961ca675823c76c3c0"
  2531. },
  2532. "dist": {
  2533. "type": "zip",
  2534. "url": "https://api.github.com/repos/mailgun/mailgun-php/zipball/6e31693370a254522118b9961ca675823c76c3c0",
  2535. "reference": "6e31693370a254522118b9961ca675823c76c3c0",
  2536. "shasum": ""
  2537. },
  2538. "require": {
  2539. "php": "^7.3 || ^8.0",
  2540. "php-http/client-common": "^2.2.1",
  2541. "php-http/discovery": "^1.19",
  2542. "php-http/multipart-stream-builder": "^1.1.2",
  2543. "psr/http-client": "^1.0",
  2544. "webmozart/assert": "^1.9.1"
  2545. },
  2546. "require-dev": {
  2547. "nyholm/nsa": "^1.2.1",
  2548. "nyholm/psr7": "^1.3.1",
  2549. "phpunit/phpunit": "^9.3",
  2550. "squizlabs/php_codesniffer": "^3.7",
  2551. "symfony/http-client": "^5.4 || ^6.3"
  2552. },
  2553. "suggest": {
  2554. "nyholm/psr7": "PSR-7 message implementation",
  2555. "symfony/http-client": "HTTP client"
  2556. },
  2557. "type": "library",
  2558. "extra": {
  2559. "branch-alias": {
  2560. "dev-master": "3.0-dev"
  2561. }
  2562. },
  2563. "autoload": {
  2564. "psr-4": {
  2565. "Mailgun\\": "src/"
  2566. }
  2567. },
  2568. "notification-url": "https://packagist.org/downloads/",
  2569. "license": [
  2570. "MIT"
  2571. ],
  2572. "authors": [
  2573. {
  2574. "name": "Travis Swientek",
  2575. "email": "[email protected]"
  2576. }
  2577. ],
  2578. "description": "The Mailgun SDK provides methods for all API functions.",
  2579. "support": {
  2580. "issues": "https://github.com/mailgun/mailgun-php/issues",
  2581. "source": "https://github.com/mailgun/mailgun-php/tree/v4.2.0"
  2582. },
  2583. "time": "2024-03-09T11:07:21+00:00"
  2584. },
  2585. {
  2586. "name": "maxmind-db/reader",
  2587. "version": "v1.11.1",
  2588. "source": {
  2589. "type": "git",
  2590. "url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git",
  2591. "reference": "1e66f73ffcf25e17c7a910a1317e9720a95497c7"
  2592. },
  2593. "dist": {
  2594. "type": "zip",
  2595. "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/1e66f73ffcf25e17c7a910a1317e9720a95497c7",
  2596. "reference": "1e66f73ffcf25e17c7a910a1317e9720a95497c7",
  2597. "shasum": ""
  2598. },
  2599. "require": {
  2600. "php": ">=7.2"
  2601. },
  2602. "conflict": {
  2603. "ext-maxminddb": "<1.11.1,>=2.0.0"
  2604. },
  2605. "require-dev": {
  2606. "friendsofphp/php-cs-fixer": "3.*",
  2607. "php-coveralls/php-coveralls": "^2.1",
  2608. "phpstan/phpstan": "*",
  2609. "phpunit/phpcov": ">=6.0.0",
  2610. "phpunit/phpunit": ">=8.0.0,<10.0.0",
  2611. "squizlabs/php_codesniffer": "3.*"
  2612. },
  2613. "suggest": {
  2614. "ext-bcmath": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2615. "ext-gmp": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2616. "ext-maxminddb": "A C-based database decoder that provides significantly faster lookups"
  2617. },
  2618. "type": "library",
  2619. "autoload": {
  2620. "psr-4": {
  2621. "MaxMind\\Db\\": "src/MaxMind/Db"
  2622. }
  2623. },
  2624. "notification-url": "https://packagist.org/downloads/",
  2625. "license": [
  2626. "Apache-2.0"
  2627. ],
  2628. "authors": [
  2629. {
  2630. "name": "Gregory J. Oschwald",
  2631. "email": "[email protected]",
  2632. "homepage": "https://www.maxmind.com/"
  2633. }
  2634. ],
  2635. "description": "MaxMind DB Reader API",
  2636. "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php",
  2637. "keywords": [
  2638. "database",
  2639. "geoip",
  2640. "geoip2",
  2641. "geolocation",
  2642. "maxmind"
  2643. ],
  2644. "support": {
  2645. "issues": "https://github.com/maxmind/MaxMind-DB-Reader-php/issues",
  2646. "source": "https://github.com/maxmind/MaxMind-DB-Reader-php/tree/v1.11.1"
  2647. },
  2648. "time": "2023-12-02T00:09:23+00:00"
  2649. },
  2650. {
  2651. "name": "maxmind/web-service-common",
  2652. "version": "v0.9.0",
  2653. "source": {
  2654. "type": "git",
  2655. "url": "https://github.com/maxmind/web-service-common-php.git",
  2656. "reference": "4dc5a3e8df38aea4ca3b1096cee3a038094e9b53"
  2657. },
  2658. "dist": {
  2659. "type": "zip",
  2660. "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/4dc5a3e8df38aea4ca3b1096cee3a038094e9b53",
  2661. "reference": "4dc5a3e8df38aea4ca3b1096cee3a038094e9b53",
  2662. "shasum": ""
  2663. },
  2664. "require": {
  2665. "composer/ca-bundle": "^1.0.3",
  2666. "ext-curl": "*",
  2667. "ext-json": "*",
  2668. "php": ">=7.2"
  2669. },
  2670. "require-dev": {
  2671. "friendsofphp/php-cs-fixer": "3.*",
  2672. "phpstan/phpstan": "*",
  2673. "phpunit/phpunit": "^8.0 || ^9.0",
  2674. "squizlabs/php_codesniffer": "3.*"
  2675. },
  2676. "type": "library",
  2677. "autoload": {
  2678. "psr-4": {
  2679. "MaxMind\\Exception\\": "src/Exception",
  2680. "MaxMind\\WebService\\": "src/WebService"
  2681. }
  2682. },
  2683. "notification-url": "https://packagist.org/downloads/",
  2684. "license": [
  2685. "Apache-2.0"
  2686. ],
  2687. "authors": [
  2688. {
  2689. "name": "Gregory Oschwald",
  2690. "email": "[email protected]"
  2691. }
  2692. ],
  2693. "description": "Internal MaxMind Web Service API",
  2694. "homepage": "https://github.com/maxmind/web-service-common-php",
  2695. "support": {
  2696. "issues": "https://github.com/maxmind/web-service-common-php/issues",
  2697. "source": "https://github.com/maxmind/web-service-common-php/tree/v0.9.0"
  2698. },
  2699. "time": "2022-03-28T17:43:20+00:00"
  2700. },
  2701. {
  2702. "name": "mtdowling/jmespath.php",
  2703. "version": "2.7.0",
  2704. "source": {
  2705. "type": "git",
  2706. "url": "https://github.com/jmespath/jmespath.php.git",
  2707. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b"
  2708. },
  2709. "dist": {
  2710. "type": "zip",
  2711. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/bbb69a935c2cbb0c03d7f481a238027430f6440b",
  2712. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b",
  2713. "shasum": ""
  2714. },
  2715. "require": {
  2716. "php": "^7.2.5 || ^8.0",
  2717. "symfony/polyfill-mbstring": "^1.17"
  2718. },
  2719. "require-dev": {
  2720. "composer/xdebug-handler": "^3.0.3",
  2721. "phpunit/phpunit": "^8.5.33"
  2722. },
  2723. "bin": [
  2724. "bin/jp.php"
  2725. ],
  2726. "type": "library",
  2727. "extra": {
  2728. "branch-alias": {
  2729. "dev-master": "2.7-dev"
  2730. }
  2731. },
  2732. "autoload": {
  2733. "files": [
  2734. "src/JmesPath.php"
  2735. ],
  2736. "psr-4": {
  2737. "JmesPath\\": "src/"
  2738. }
  2739. },
  2740. "notification-url": "https://packagist.org/downloads/",
  2741. "license": [
  2742. "MIT"
  2743. ],
  2744. "authors": [
  2745. {
  2746. "name": "Graham Campbell",
  2747. "email": "[email protected]",
  2748. "homepage": "https://github.com/GrahamCampbell"
  2749. },
  2750. {
  2751. "name": "Michael Dowling",
  2752. "email": "[email protected]",
  2753. "homepage": "https://github.com/mtdowling"
  2754. }
  2755. ],
  2756. "description": "Declaratively specify how to extract elements from a JSON document",
  2757. "keywords": [
  2758. "json",
  2759. "jsonpath"
  2760. ],
  2761. "support": {
  2762. "issues": "https://github.com/jmespath/jmespath.php/issues",
  2763. "source": "https://github.com/jmespath/jmespath.php/tree/2.7.0"
  2764. },
  2765. "time": "2023-08-25T10:54:48+00:00"
  2766. },
  2767. {
  2768. "name": "nesbot/carbon",
  2769. "version": "3.2.4",
  2770. "source": {
  2771. "type": "git",
  2772. "url": "https://github.com/briannesbitt/Carbon.git",
  2773. "reference": "82c28278c1c8f7b82dcdab25692237f052ffc8d8"
  2774. },
  2775. "dist": {
  2776. "type": "zip",
  2777. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/82c28278c1c8f7b82dcdab25692237f052ffc8d8",
  2778. "reference": "82c28278c1c8f7b82dcdab25692237f052ffc8d8",
  2779. "shasum": ""
  2780. },
  2781. "require": {
  2782. "carbonphp/carbon-doctrine-types": "*",
  2783. "ext-json": "*",
  2784. "php": "^8.1",
  2785. "psr/clock": "^1.0",
  2786. "symfony/clock": "^6.3 || ^7.0",
  2787. "symfony/polyfill-mbstring": "^1.0",
  2788. "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0"
  2789. },
  2790. "provide": {
  2791. "psr/clock-implementation": "1.0"
  2792. },
  2793. "require-dev": {
  2794. "doctrine/dbal": "^3.6.3 || ^4.0",
  2795. "doctrine/orm": "^2.15.2 || ^3.0",
  2796. "friendsofphp/php-cs-fixer": "^3.52.1",
  2797. "kylekatarnls/multi-tester": "^2.5.3",
  2798. "ondrejmirtes/better-reflection": "^6.25.0.4",
  2799. "phpmd/phpmd": "^2.15.0",
  2800. "phpstan/extension-installer": "^1.3.1",
  2801. "phpstan/phpstan": "^1.10.65",
  2802. "phpunit/phpunit": "^10.5.15",
  2803. "squizlabs/php_codesniffer": "^3.9.0"
  2804. },
  2805. "bin": [
  2806. "bin/carbon"
  2807. ],
  2808. "type": "library",
  2809. "extra": {
  2810. "branch-alias": {
  2811. "dev-master": "3.x-dev",
  2812. "dev-2.x": "2.x-dev"
  2813. },
  2814. "laravel": {
  2815. "providers": [
  2816. "Carbon\\Laravel\\ServiceProvider"
  2817. ]
  2818. },
  2819. "phpstan": {
  2820. "includes": [
  2821. "extension.neon"
  2822. ]
  2823. }
  2824. },
  2825. "autoload": {
  2826. "psr-4": {
  2827. "Carbon\\": "src/Carbon/"
  2828. }
  2829. },
  2830. "notification-url": "https://packagist.org/downloads/",
  2831. "license": [
  2832. "MIT"
  2833. ],
  2834. "authors": [
  2835. {
  2836. "name": "Brian Nesbitt",
  2837. "email": "[email protected]",
  2838. "homepage": "https://markido.com"
  2839. },
  2840. {
  2841. "name": "kylekatarnls",
  2842. "homepage": "https://github.com/kylekatarnls"
  2843. }
  2844. ],
  2845. "description": "An API extension for DateTime that supports 281 different languages.",
  2846. "homepage": "https://carbon.nesbot.com",
  2847. "keywords": [
  2848. "date",
  2849. "datetime",
  2850. "time"
  2851. ],
  2852. "support": {
  2853. "docs": "https://carbon.nesbot.com/docs",
  2854. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2855. "source": "https://github.com/briannesbitt/Carbon"
  2856. },
  2857. "funding": [
  2858. {
  2859. "url": "https://github.com/sponsors/kylekatarnls",
  2860. "type": "github"
  2861. },
  2862. {
  2863. "url": "https://opencollective.com/Carbon#sponsor",
  2864. "type": "opencollective"
  2865. },
  2866. {
  2867. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  2868. "type": "tidelift"
  2869. }
  2870. ],
  2871. "time": "2024-04-05T09:58:10+00:00"
  2872. },
  2873. {
  2874. "name": "nikic/fast-route",
  2875. "version": "v1.3.0",
  2876. "source": {
  2877. "type": "git",
  2878. "url": "https://github.com/nikic/FastRoute.git",
  2879. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  2880. },
  2881. "dist": {
  2882. "type": "zip",
  2883. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  2884. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  2885. "shasum": ""
  2886. },
  2887. "require": {
  2888. "php": ">=5.4.0"
  2889. },
  2890. "require-dev": {
  2891. "phpunit/phpunit": "^4.8.35|~5.7"
  2892. },
  2893. "type": "library",
  2894. "autoload": {
  2895. "files": [
  2896. "src/functions.php"
  2897. ],
  2898. "psr-4": {
  2899. "FastRoute\\": "src/"
  2900. }
  2901. },
  2902. "notification-url": "https://packagist.org/downloads/",
  2903. "license": [
  2904. "BSD-3-Clause"
  2905. ],
  2906. "authors": [
  2907. {
  2908. "name": "Nikita Popov",
  2909. "email": "[email protected]"
  2910. }
  2911. ],
  2912. "description": "Fast request router for PHP",
  2913. "keywords": [
  2914. "router",
  2915. "routing"
  2916. ],
  2917. "support": {
  2918. "issues": "https://github.com/nikic/FastRoute/issues",
  2919. "source": "https://github.com/nikic/FastRoute/tree/master"
  2920. },
  2921. "time": "2018-02-13T20:26:39+00:00"
  2922. },
  2923. {
  2924. "name": "nikolaposa/rate-limit",
  2925. "version": "3.1.0",
  2926. "source": {
  2927. "type": "git",
  2928. "url": "https://github.com/nikolaposa/rate-limit.git",
  2929. "reference": "fa5d32ff5a31566a8839fa556c51930c0a7b467e"
  2930. },
  2931. "dist": {
  2932. "type": "zip",
  2933. "url": "https://api.github.com/repos/nikolaposa/rate-limit/zipball/fa5d32ff5a31566a8839fa556c51930c0a7b467e",
  2934. "reference": "fa5d32ff5a31566a8839fa556c51930c0a7b467e",
  2935. "shasum": ""
  2936. },
  2937. "require": {
  2938. "beberlei/assert": "^3.2",
  2939. "php": "^8.1"
  2940. },
  2941. "require-dev": {
  2942. "ext-apcu": ">=5.1.12",
  2943. "ext-redis": "*",
  2944. "friendsofphp/php-cs-fixer": "3.44",
  2945. "phpstan/phpstan": "^1.10",
  2946. "phpstan/phpstan-beberlei-assert": "^1.1",
  2947. "phpstan/phpstan-phpunit": "^1.3",
  2948. "phpunit/phpunit": "^10.5",
  2949. "predis/predis": "^1.1"
  2950. },
  2951. "suggest": {
  2952. "ext-apcu": "In order to use ApcuRateLimiter",
  2953. "ext-memcached": "In order to use MemcachedRateLimiter",
  2954. "ext-redis": "In order to use RedisRateLimiter",
  2955. "predis/predis": "In order to use PredisRateLimiter"
  2956. },
  2957. "type": "library",
  2958. "extra": {
  2959. "branch-alias": {
  2960. "dev-master": "3.1.x-dev"
  2961. }
  2962. },
  2963. "autoload": {
  2964. "psr-4": {
  2965. "RateLimit\\": "src/"
  2966. }
  2967. },
  2968. "notification-url": "https://packagist.org/downloads/",
  2969. "license": [
  2970. "MIT"
  2971. ],
  2972. "authors": [
  2973. {
  2974. "name": "Nikola Poša",
  2975. "email": "[email protected]",
  2976. "homepage": "https://www.nikolaposa.in.rs"
  2977. }
  2978. ],
  2979. "description": "General purpose rate limiter implementation.",
  2980. "keywords": [
  2981. "rate limit",
  2982. "redis"
  2983. ],
  2984. "support": {
  2985. "issues": "https://github.com/nikolaposa/rate-limit/issues",
  2986. "source": "https://github.com/nikolaposa/rate-limit/tree/3.1.0"
  2987. },
  2988. "time": "2023-12-29T22:51:49+00:00"
  2989. },
  2990. {
  2991. "name": "openai-php/client",
  2992. "version": "v0.8.5",
  2993. "source": {
  2994. "type": "git",
  2995. "url": "https://github.com/openai-php/client.git",
  2996. "reference": "0f755fafa4d3f8d5c8ed964d3166d078fac0605a"
  2997. },
  2998. "dist": {
  2999. "type": "zip",
  3000. "url": "https://api.github.com/repos/openai-php/client/zipball/0f755fafa4d3f8d5c8ed964d3166d078fac0605a",
  3001. "reference": "0f755fafa4d3f8d5c8ed964d3166d078fac0605a",
  3002. "shasum": ""
  3003. },
  3004. "require": {
  3005. "php": "^8.1.0",
  3006. "php-http/discovery": "^1.19.4",
  3007. "php-http/multipart-stream-builder": "^1.3.0",
  3008. "psr/http-client": "^1.0.3",
  3009. "psr/http-client-implementation": "^1.0.1",
  3010. "psr/http-factory-implementation": "*",
  3011. "psr/http-message": "^1.1.0|^2.0.0"
  3012. },
  3013. "require-dev": {
  3014. "guzzlehttp/guzzle": "^7.8.1",
  3015. "guzzlehttp/psr7": "^2.6.2",
  3016. "laravel/pint": "^1.15.0",
  3017. "mockery/mockery": "^1.6.11",
  3018. "nunomaduro/collision": "^7.10.0",
  3019. "pestphp/pest": "^2.34.6",
  3020. "pestphp/pest-plugin-arch": "^2.7",
  3021. "pestphp/pest-plugin-type-coverage": "^2.8.1",
  3022. "phpstan/phpstan": "^1.10.66",
  3023. "rector/rector": "^1.0.4",
  3024. "symfony/var-dumper": "^6.4.4"
  3025. },
  3026. "type": "library",
  3027. "autoload": {
  3028. "files": [
  3029. "src/OpenAI.php"
  3030. ],
  3031. "psr-4": {
  3032. "OpenAI\\": "src/"
  3033. }
  3034. },
  3035. "notification-url": "https://packagist.org/downloads/",
  3036. "license": [
  3037. "MIT"
  3038. ],
  3039. "authors": [
  3040. {
  3041. "name": "Nuno Maduro",
  3042. "email": "[email protected]"
  3043. },
  3044. {
  3045. "name": "Sandro Gehri"
  3046. }
  3047. ],
  3048. "description": "OpenAI PHP is a supercharged PHP API client that allows you to interact with the Open AI API",
  3049. "keywords": [
  3050. "GPT-3",
  3051. "api",
  3052. "client",
  3053. "codex",
  3054. "dall-e",
  3055. "language",
  3056. "natural",
  3057. "openai",
  3058. "php",
  3059. "processing",
  3060. "sdk"
  3061. ],
  3062. "support": {
  3063. "issues": "https://github.com/openai-php/client/issues",
  3064. "source": "https://github.com/openai-php/client/tree/v0.8.5"
  3065. },
  3066. "funding": [
  3067. {
  3068. "url": "https://www.paypal.com/paypalme/enunomaduro",
  3069. "type": "custom"
  3070. },
  3071. {
  3072. "url": "https://github.com/gehrisandro",
  3073. "type": "github"
  3074. },
  3075. {
  3076. "url": "https://github.com/nunomaduro",
  3077. "type": "github"
  3078. }
  3079. ],
  3080. "time": "2024-04-15T19:11:23+00:00"
  3081. },
  3082. {
  3083. "name": "php-http/client-common",
  3084. "version": "2.7.1",
  3085. "source": {
  3086. "type": "git",
  3087. "url": "https://github.com/php-http/client-common.git",
  3088. "reference": "1e19c059b0e4d5f717bf5d524d616165aeab0612"
  3089. },
  3090. "dist": {
  3091. "type": "zip",
  3092. "url": "https://api.github.com/repos/php-http/client-common/zipball/1e19c059b0e4d5f717bf5d524d616165aeab0612",
  3093. "reference": "1e19c059b0e4d5f717bf5d524d616165aeab0612",
  3094. "shasum": ""
  3095. },
  3096. "require": {
  3097. "php": "^7.1 || ^8.0",
  3098. "php-http/httplug": "^2.0",
  3099. "php-http/message": "^1.6",
  3100. "psr/http-client": "^1.0",
  3101. "psr/http-factory": "^1.0",
  3102. "psr/http-message": "^1.0 || ^2.0",
  3103. "symfony/options-resolver": "~4.0.15 || ~4.1.9 || ^4.2.1 || ^5.0 || ^6.0 || ^7.0",
  3104. "symfony/polyfill-php80": "^1.17"
  3105. },
  3106. "require-dev": {
  3107. "doctrine/instantiator": "^1.1",
  3108. "guzzlehttp/psr7": "^1.4",
  3109. "nyholm/psr7": "^1.2",
  3110. "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1",
  3111. "phpspec/prophecy": "^1.10.2",
  3112. "phpunit/phpunit": "^7.5.20 || ^8.5.33 || ^9.6.7"
  3113. },
  3114. "suggest": {
  3115. "ext-json": "To detect JSON responses with the ContentTypePlugin",
  3116. "ext-libxml": "To detect XML responses with the ContentTypePlugin",
  3117. "php-http/cache-plugin": "PSR-6 Cache plugin",
  3118. "php-http/logger-plugin": "PSR-3 Logger plugin",
  3119. "php-http/stopwatch-plugin": "Symfony Stopwatch plugin"
  3120. },
  3121. "type": "library",
  3122. "autoload": {
  3123. "psr-4": {
  3124. "Http\\Client\\Common\\": "src/"
  3125. }
  3126. },
  3127. "notification-url": "https://packagist.org/downloads/",
  3128. "license": [
  3129. "MIT"
  3130. ],
  3131. "authors": [
  3132. {
  3133. "name": "Márk Sági-Kazár",
  3134. "email": "[email protected]"
  3135. }
  3136. ],
  3137. "description": "Common HTTP Client implementations and tools for HTTPlug",
  3138. "homepage": "http://httplug.io",
  3139. "keywords": [
  3140. "client",
  3141. "common",
  3142. "http",
  3143. "httplug"
  3144. ],
  3145. "support": {
  3146. "issues": "https://github.com/php-http/client-common/issues",
  3147. "source": "https://github.com/php-http/client-common/tree/2.7.1"
  3148. },
  3149. "time": "2023-11-30T10:31:25+00:00"
  3150. },
  3151. {
  3152. "name": "php-http/discovery",
  3153. "version": "1.19.4",
  3154. "source": {
  3155. "type": "git",
  3156. "url": "https://github.com/php-http/discovery.git",
  3157. "reference": "0700efda8d7526335132360167315fdab3aeb599"
  3158. },
  3159. "dist": {
  3160. "type": "zip",
  3161. "url": "https://api.github.com/repos/php-http/discovery/zipball/0700efda8d7526335132360167315fdab3aeb599",
  3162. "reference": "0700efda8d7526335132360167315fdab3aeb599",
  3163. "shasum": ""
  3164. },
  3165. "require": {
  3166. "composer-plugin-api": "^1.0|^2.0",
  3167. "php": "^7.1 || ^8.0"
  3168. },
  3169. "conflict": {
  3170. "nyholm/psr7": "<1.0",
  3171. "zendframework/zend-diactoros": "*"
  3172. },
  3173. "provide": {
  3174. "php-http/async-client-implementation": "*",
  3175. "php-http/client-implementation": "*",
  3176. "psr/http-client-implementation": "*",
  3177. "psr/http-factory-implementation": "*",
  3178. "psr/http-message-implementation": "*"
  3179. },
  3180. "require-dev": {
  3181. "composer/composer": "^1.0.2|^2.0",
  3182. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  3183. "php-http/httplug": "^1.0 || ^2.0",
  3184. "php-http/message-factory": "^1.0",
  3185. "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3",
  3186. "sebastian/comparator": "^3.0.5 || ^4.0.8",
  3187. "symfony/phpunit-bridge": "^6.4.4 || ^7.0.1"
  3188. },
  3189. "type": "composer-plugin",
  3190. "extra": {
  3191. "class": "Http\\Discovery\\Composer\\Plugin",
  3192. "plugin-optional": true
  3193. },
  3194. "autoload": {
  3195. "psr-4": {
  3196. "Http\\Discovery\\": "src/"
  3197. },
  3198. "exclude-from-classmap": [
  3199. "src/Composer/Plugin.php"
  3200. ]
  3201. },
  3202. "notification-url": "https://packagist.org/downloads/",
  3203. "license": [
  3204. "MIT"
  3205. ],
  3206. "authors": [
  3207. {
  3208. "name": "Márk Sági-Kazár",
  3209. "email": "[email protected]"
  3210. }
  3211. ],
  3212. "description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations",
  3213. "homepage": "http://php-http.org",
  3214. "keywords": [
  3215. "adapter",
  3216. "client",
  3217. "discovery",
  3218. "factory",
  3219. "http",
  3220. "message",
  3221. "psr17",
  3222. "psr7"
  3223. ],
  3224. "support": {
  3225. "issues": "https://github.com/php-http/discovery/issues",
  3226. "source": "https://github.com/php-http/discovery/tree/1.19.4"
  3227. },
  3228. "time": "2024-03-29T13:00:05+00:00"
  3229. },
  3230. {
  3231. "name": "php-http/httplug",
  3232. "version": "2.4.0",
  3233. "source": {
  3234. "type": "git",
  3235. "url": "https://github.com/php-http/httplug.git",
  3236. "reference": "625ad742c360c8ac580fcc647a1541d29e257f67"
  3237. },
  3238. "dist": {
  3239. "type": "zip",
  3240. "url": "https://api.github.com/repos/php-http/httplug/zipball/625ad742c360c8ac580fcc647a1541d29e257f67",
  3241. "reference": "625ad742c360c8ac580fcc647a1541d29e257f67",
  3242. "shasum": ""
  3243. },
  3244. "require": {
  3245. "php": "^7.1 || ^8.0",
  3246. "php-http/promise": "^1.1",
  3247. "psr/http-client": "^1.0",
  3248. "psr/http-message": "^1.0 || ^2.0"
  3249. },
  3250. "require-dev": {
  3251. "friends-of-phpspec/phpspec-code-coverage": "^4.1 || ^5.0 || ^6.0",
  3252. "phpspec/phpspec": "^5.1 || ^6.0 || ^7.0"
  3253. },
  3254. "type": "library",
  3255. "autoload": {
  3256. "psr-4": {
  3257. "Http\\Client\\": "src/"
  3258. }
  3259. },
  3260. "notification-url": "https://packagist.org/downloads/",
  3261. "license": [
  3262. "MIT"
  3263. ],
  3264. "authors": [
  3265. {
  3266. "name": "Eric GELOEN",
  3267. "email": "[email protected]"
  3268. },
  3269. {
  3270. "name": "Márk Sági-Kazár",
  3271. "email": "[email protected]",
  3272. "homepage": "https://sagikazarmark.hu"
  3273. }
  3274. ],
  3275. "description": "HTTPlug, the HTTP client abstraction for PHP",
  3276. "homepage": "http://httplug.io",
  3277. "keywords": [
  3278. "client",
  3279. "http"
  3280. ],
  3281. "support": {
  3282. "issues": "https://github.com/php-http/httplug/issues",
  3283. "source": "https://github.com/php-http/httplug/tree/2.4.0"
  3284. },
  3285. "time": "2023-04-14T15:10:03+00:00"
  3286. },
  3287. {
  3288. "name": "php-http/message",
  3289. "version": "1.16.1",
  3290. "source": {
  3291. "type": "git",
  3292. "url": "https://github.com/php-http/message.git",
  3293. "reference": "5997f3289332c699fa2545c427826272498a2088"
  3294. },
  3295. "dist": {
  3296. "type": "zip",
  3297. "url": "https://api.github.com/repos/php-http/message/zipball/5997f3289332c699fa2545c427826272498a2088",
  3298. "reference": "5997f3289332c699fa2545c427826272498a2088",
  3299. "shasum": ""
  3300. },
  3301. "require": {
  3302. "clue/stream-filter": "^1.5",
  3303. "php": "^7.2 || ^8.0",
  3304. "psr/http-message": "^1.1 || ^2.0"
  3305. },
  3306. "provide": {
  3307. "php-http/message-factory-implementation": "1.0"
  3308. },
  3309. "require-dev": {
  3310. "ergebnis/composer-normalize": "^2.6",
  3311. "ext-zlib": "*",
  3312. "guzzlehttp/psr7": "^1.0 || ^2.0",
  3313. "laminas/laminas-diactoros": "^2.0 || ^3.0",
  3314. "php-http/message-factory": "^1.0.2",
  3315. "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1",
  3316. "slim/slim": "^3.0"
  3317. },
  3318. "suggest": {
  3319. "ext-zlib": "Used with compressor/decompressor streams",
  3320. "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories",
  3321. "laminas/laminas-diactoros": "Used with Diactoros Factories",
  3322. "slim/slim": "Used with Slim Framework PSR-7 implementation"
  3323. },
  3324. "type": "library",
  3325. "autoload": {
  3326. "files": [
  3327. "src/filters.php"
  3328. ],
  3329. "psr-4": {
  3330. "Http\\Message\\": "src/"
  3331. }
  3332. },
  3333. "notification-url": "https://packagist.org/downloads/",
  3334. "license": [
  3335. "MIT"
  3336. ],
  3337. "authors": [
  3338. {
  3339. "name": "Márk Sági-Kazár",
  3340. "email": "[email protected]"
  3341. }
  3342. ],
  3343. "description": "HTTP Message related tools",
  3344. "homepage": "http://php-http.org",
  3345. "keywords": [
  3346. "http",
  3347. "message",
  3348. "psr-7"
  3349. ],
  3350. "support": {
  3351. "issues": "https://github.com/php-http/message/issues",
  3352. "source": "https://github.com/php-http/message/tree/1.16.1"
  3353. },
  3354. "time": "2024-03-07T13:22:09+00:00"
  3355. },
  3356. {
  3357. "name": "php-http/multipart-stream-builder",
  3358. "version": "1.3.0",
  3359. "source": {
  3360. "type": "git",
  3361. "url": "https://github.com/php-http/multipart-stream-builder.git",
  3362. "reference": "f5938fd135d9fa442cc297dc98481805acfe2b6a"
  3363. },
  3364. "dist": {
  3365. "type": "zip",
  3366. "url": "https://api.github.com/repos/php-http/multipart-stream-builder/zipball/f5938fd135d9fa442cc297dc98481805acfe2b6a",
  3367. "reference": "f5938fd135d9fa442cc297dc98481805acfe2b6a",
  3368. "shasum": ""
  3369. },
  3370. "require": {
  3371. "php": "^7.1 || ^8.0",
  3372. "php-http/discovery": "^1.15",
  3373. "psr/http-factory-implementation": "^1.0"
  3374. },
  3375. "require-dev": {
  3376. "nyholm/psr7": "^1.0",
  3377. "php-http/message": "^1.5",
  3378. "php-http/message-factory": "^1.0.2",
  3379. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.3"
  3380. },
  3381. "type": "library",
  3382. "autoload": {
  3383. "psr-4": {
  3384. "Http\\Message\\MultipartStream\\": "src/"
  3385. }
  3386. },
  3387. "notification-url": "https://packagist.org/downloads/",
  3388. "license": [
  3389. "MIT"
  3390. ],
  3391. "authors": [
  3392. {
  3393. "name": "Tobias Nyholm",
  3394. "email": "[email protected]"
  3395. }
  3396. ],
  3397. "description": "A builder class that help you create a multipart stream",
  3398. "homepage": "http://php-http.org",
  3399. "keywords": [
  3400. "factory",
  3401. "http",
  3402. "message",
  3403. "multipart stream",
  3404. "stream"
  3405. ],
  3406. "support": {
  3407. "issues": "https://github.com/php-http/multipart-stream-builder/issues",
  3408. "source": "https://github.com/php-http/multipart-stream-builder/tree/1.3.0"
  3409. },
  3410. "time": "2023-04-28T14:10:22+00:00"
  3411. },
  3412. {
  3413. "name": "php-http/promise",
  3414. "version": "1.3.1",
  3415. "source": {
  3416. "type": "git",
  3417. "url": "https://github.com/php-http/promise.git",
  3418. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83"
  3419. },
  3420. "dist": {
  3421. "type": "zip",
  3422. "url": "https://api.github.com/repos/php-http/promise/zipball/fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  3423. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  3424. "shasum": ""
  3425. },
  3426. "require": {
  3427. "php": "^7.1 || ^8.0"
  3428. },
  3429. "require-dev": {
  3430. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2 || ^6.3",
  3431. "phpspec/phpspec": "^5.1.2 || ^6.2 || ^7.4"
  3432. },
  3433. "type": "library",
  3434. "autoload": {
  3435. "psr-4": {
  3436. "Http\\Promise\\": "src/"
  3437. }
  3438. },
  3439. "notification-url": "https://packagist.org/downloads/",
  3440. "license": [
  3441. "MIT"
  3442. ],
  3443. "authors": [
  3444. {
  3445. "name": "Joel Wurtz",
  3446. "email": "[email protected]"
  3447. },
  3448. {
  3449. "name": "Márk Sági-Kazár",
  3450. "email": "[email protected]"
  3451. }
  3452. ],
  3453. "description": "Promise used for asynchronous HTTP requests",
  3454. "homepage": "http://httplug.io",
  3455. "keywords": [
  3456. "promise"
  3457. ],
  3458. "support": {
  3459. "issues": "https://github.com/php-http/promise/issues",
  3460. "source": "https://github.com/php-http/promise/tree/1.3.1"
  3461. },
  3462. "time": "2024-03-15T13:55:21+00:00"
  3463. },
  3464. {
  3465. "name": "phpmailer/phpmailer",
  3466. "version": "v6.9.1",
  3467. "source": {
  3468. "type": "git",
  3469. "url": "https://github.com/PHPMailer/PHPMailer.git",
  3470. "reference": "039de174cd9c17a8389754d3b877a2ed22743e18"
  3471. },
  3472. "dist": {
  3473. "type": "zip",
  3474. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/039de174cd9c17a8389754d3b877a2ed22743e18",
  3475. "reference": "039de174cd9c17a8389754d3b877a2ed22743e18",
  3476. "shasum": ""
  3477. },
  3478. "require": {
  3479. "ext-ctype": "*",
  3480. "ext-filter": "*",
  3481. "ext-hash": "*",
  3482. "php": ">=5.5.0"
  3483. },
  3484. "require-dev": {
  3485. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  3486. "doctrine/annotations": "^1.2.6 || ^1.13.3",
  3487. "php-parallel-lint/php-console-highlighter": "^1.0.0",
  3488. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  3489. "phpcompatibility/php-compatibility": "^9.3.5",
  3490. "roave/security-advisories": "dev-latest",
  3491. "squizlabs/php_codesniffer": "^3.7.2",
  3492. "yoast/phpunit-polyfills": "^1.0.4"
  3493. },
  3494. "suggest": {
  3495. "decomplexity/SendOauth2": "Adapter for using XOAUTH2 authentication",
  3496. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  3497. "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
  3498. "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
  3499. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  3500. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  3501. "psr/log": "For optional PSR-3 debug logging",
  3502. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
  3503. "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
  3504. },
  3505. "type": "library",
  3506. "autoload": {
  3507. "psr-4": {
  3508. "PHPMailer\\PHPMailer\\": "src/"
  3509. }
  3510. },
  3511. "notification-url": "https://packagist.org/downloads/",
  3512. "license": [
  3513. "LGPL-2.1-only"
  3514. ],
  3515. "authors": [
  3516. {
  3517. "name": "Marcus Bointon",
  3518. "email": "[email protected]"
  3519. },
  3520. {
  3521. "name": "Jim Jagielski",
  3522. "email": "[email protected]"
  3523. },
  3524. {
  3525. "name": "Andy Prevost",
  3526. "email": "[email protected]"
  3527. },
  3528. {
  3529. "name": "Brent R. Matzelle"
  3530. }
  3531. ],
  3532. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  3533. "support": {
  3534. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  3535. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.9.1"
  3536. },
  3537. "funding": [
  3538. {
  3539. "url": "https://github.com/Synchro",
  3540. "type": "github"
  3541. }
  3542. ],
  3543. "time": "2023-11-25T22:23:28+00:00"
  3544. },
  3545. {
  3546. "name": "postal/postal",
  3547. "version": "v2.0.1",
  3548. "source": {
  3549. "type": "git",
  3550. "url": "https://github.com/postalserver/postal-php.git",
  3551. "reference": "e361d11aadb724a482092784ebfe00461c492b5d"
  3552. },
  3553. "dist": {
  3554. "type": "zip",
  3555. "url": "https://api.github.com/repos/postalserver/postal-php/zipball/e361d11aadb724a482092784ebfe00461c492b5d",
  3556. "reference": "e361d11aadb724a482092784ebfe00461c492b5d",
  3557. "shasum": ""
  3558. },
  3559. "require": {
  3560. "guzzlehttp/guzzle": "^6 || ^7",
  3561. "php": "^7.4 || ^8.0"
  3562. },
  3563. "require-dev": {
  3564. "phpstan/phpstan": "^1.10",
  3565. "phpunit/phpunit": "^9.6",
  3566. "symplify/easy-coding-standard": "^11.3"
  3567. },
  3568. "type": "library",
  3569. "autoload": {
  3570. "psr-4": {
  3571. "Postal\\": "src/"
  3572. }
  3573. },
  3574. "notification-url": "https://packagist.org/downloads/",
  3575. "license": [
  3576. "MIT"
  3577. ],
  3578. "authors": [
  3579. {
  3580. "name": "Adam Cooke",
  3581. "email": "[email protected]"
  3582. },
  3583. {
  3584. "name": "Josh Grant",
  3585. "email": "[email protected]"
  3586. },
  3587. {
  3588. "name": "William Hall",
  3589. "email": "[email protected]"
  3590. }
  3591. ],
  3592. "description": "Postal for PHP library.",
  3593. "homepage": "https://github.com/atech/postal",
  3594. "keywords": [
  3595. "mail",
  3596. "postal"
  3597. ],
  3598. "support": {
  3599. "issues": "https://github.com/postalserver/postal-php/issues",
  3600. "source": "https://github.com/postalserver/postal-php/tree/v2.0.1"
  3601. },
  3602. "time": "2023-12-19T09:49:41+00:00"
  3603. },
  3604. {
  3605. "name": "psr/clock",
  3606. "version": "1.0.0",
  3607. "source": {
  3608. "type": "git",
  3609. "url": "https://github.com/php-fig/clock.git",
  3610. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  3611. },
  3612. "dist": {
  3613. "type": "zip",
  3614. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3615. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3616. "shasum": ""
  3617. },
  3618. "require": {
  3619. "php": "^7.0 || ^8.0"
  3620. },
  3621. "type": "library",
  3622. "autoload": {
  3623. "psr-4": {
  3624. "Psr\\Clock\\": "src/"
  3625. }
  3626. },
  3627. "notification-url": "https://packagist.org/downloads/",
  3628. "license": [
  3629. "MIT"
  3630. ],
  3631. "authors": [
  3632. {
  3633. "name": "PHP-FIG",
  3634. "homepage": "https://www.php-fig.org/"
  3635. }
  3636. ],
  3637. "description": "Common interface for reading the clock.",
  3638. "homepage": "https://github.com/php-fig/clock",
  3639. "keywords": [
  3640. "clock",
  3641. "now",
  3642. "psr",
  3643. "psr-20",
  3644. "time"
  3645. ],
  3646. "support": {
  3647. "issues": "https://github.com/php-fig/clock/issues",
  3648. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  3649. },
  3650. "time": "2022-11-25T14:36:26+00:00"
  3651. },
  3652. {
  3653. "name": "psr/container",
  3654. "version": "2.0.2",
  3655. "source": {
  3656. "type": "git",
  3657. "url": "https://github.com/php-fig/container.git",
  3658. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  3659. },
  3660. "dist": {
  3661. "type": "zip",
  3662. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3663. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3664. "shasum": ""
  3665. },
  3666. "require": {
  3667. "php": ">=7.4.0"
  3668. },
  3669. "type": "library",
  3670. "extra": {
  3671. "branch-alias": {
  3672. "dev-master": "2.0.x-dev"
  3673. }
  3674. },
  3675. "autoload": {
  3676. "psr-4": {
  3677. "Psr\\Container\\": "src/"
  3678. }
  3679. },
  3680. "notification-url": "https://packagist.org/downloads/",
  3681. "license": [
  3682. "MIT"
  3683. ],
  3684. "authors": [
  3685. {
  3686. "name": "PHP-FIG",
  3687. "homepage": "https://www.php-fig.org/"
  3688. }
  3689. ],
  3690. "description": "Common Container Interface (PHP FIG PSR-11)",
  3691. "homepage": "https://github.com/php-fig/container",
  3692. "keywords": [
  3693. "PSR-11",
  3694. "container",
  3695. "container-interface",
  3696. "container-interop",
  3697. "psr"
  3698. ],
  3699. "support": {
  3700. "issues": "https://github.com/php-fig/container/issues",
  3701. "source": "https://github.com/php-fig/container/tree/2.0.2"
  3702. },
  3703. "time": "2021-11-05T16:47:00+00:00"
  3704. },
  3705. {
  3706. "name": "psr/event-dispatcher",
  3707. "version": "1.0.0",
  3708. "source": {
  3709. "type": "git",
  3710. "url": "https://github.com/php-fig/event-dispatcher.git",
  3711. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3712. },
  3713. "dist": {
  3714. "type": "zip",
  3715. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3716. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3717. "shasum": ""
  3718. },
  3719. "require": {
  3720. "php": ">=7.2.0"
  3721. },
  3722. "type": "library",
  3723. "extra": {
  3724. "branch-alias": {
  3725. "dev-master": "1.0.x-dev"
  3726. }
  3727. },
  3728. "autoload": {
  3729. "psr-4": {
  3730. "Psr\\EventDispatcher\\": "src/"
  3731. }
  3732. },
  3733. "notification-url": "https://packagist.org/downloads/",
  3734. "license": [
  3735. "MIT"
  3736. ],
  3737. "authors": [
  3738. {
  3739. "name": "PHP-FIG",
  3740. "homepage": "http://www.php-fig.org/"
  3741. }
  3742. ],
  3743. "description": "Standard interfaces for event handling.",
  3744. "keywords": [
  3745. "events",
  3746. "psr",
  3747. "psr-14"
  3748. ],
  3749. "support": {
  3750. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3751. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3752. },
  3753. "time": "2019-01-08T18:20:26+00:00"
  3754. },
  3755. {
  3756. "name": "psr/http-client",
  3757. "version": "1.0.3",
  3758. "source": {
  3759. "type": "git",
  3760. "url": "https://github.com/php-fig/http-client.git",
  3761. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  3762. },
  3763. "dist": {
  3764. "type": "zip",
  3765. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3766. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3767. "shasum": ""
  3768. },
  3769. "require": {
  3770. "php": "^7.0 || ^8.0",
  3771. "psr/http-message": "^1.0 || ^2.0"
  3772. },
  3773. "type": "library",
  3774. "extra": {
  3775. "branch-alias": {
  3776. "dev-master": "1.0.x-dev"
  3777. }
  3778. },
  3779. "autoload": {
  3780. "psr-4": {
  3781. "Psr\\Http\\Client\\": "src/"
  3782. }
  3783. },
  3784. "notification-url": "https://packagist.org/downloads/",
  3785. "license": [
  3786. "MIT"
  3787. ],
  3788. "authors": [
  3789. {
  3790. "name": "PHP-FIG",
  3791. "homepage": "https://www.php-fig.org/"
  3792. }
  3793. ],
  3794. "description": "Common interface for HTTP clients",
  3795. "homepage": "https://github.com/php-fig/http-client",
  3796. "keywords": [
  3797. "http",
  3798. "http-client",
  3799. "psr",
  3800. "psr-18"
  3801. ],
  3802. "support": {
  3803. "source": "https://github.com/php-fig/http-client"
  3804. },
  3805. "time": "2023-09-23T14:17:50+00:00"
  3806. },
  3807. {
  3808. "name": "psr/http-factory",
  3809. "version": "1.0.2",
  3810. "source": {
  3811. "type": "git",
  3812. "url": "https://github.com/php-fig/http-factory.git",
  3813. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  3814. },
  3815. "dist": {
  3816. "type": "zip",
  3817. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  3818. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  3819. "shasum": ""
  3820. },
  3821. "require": {
  3822. "php": ">=7.0.0",
  3823. "psr/http-message": "^1.0 || ^2.0"
  3824. },
  3825. "type": "library",
  3826. "extra": {
  3827. "branch-alias": {
  3828. "dev-master": "1.0.x-dev"
  3829. }
  3830. },
  3831. "autoload": {
  3832. "psr-4": {
  3833. "Psr\\Http\\Message\\": "src/"
  3834. }
  3835. },
  3836. "notification-url": "https://packagist.org/downloads/",
  3837. "license": [
  3838. "MIT"
  3839. ],
  3840. "authors": [
  3841. {
  3842. "name": "PHP-FIG",
  3843. "homepage": "https://www.php-fig.org/"
  3844. }
  3845. ],
  3846. "description": "Common interfaces for PSR-7 HTTP message factories",
  3847. "keywords": [
  3848. "factory",
  3849. "http",
  3850. "message",
  3851. "psr",
  3852. "psr-17",
  3853. "psr-7",
  3854. "request",
  3855. "response"
  3856. ],
  3857. "support": {
  3858. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  3859. },
  3860. "time": "2023-04-10T20:10:41+00:00"
  3861. },
  3862. {
  3863. "name": "psr/http-message",
  3864. "version": "1.1",
  3865. "source": {
  3866. "type": "git",
  3867. "url": "https://github.com/php-fig/http-message.git",
  3868. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  3869. },
  3870. "dist": {
  3871. "type": "zip",
  3872. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  3873. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  3874. "shasum": ""
  3875. },
  3876. "require": {
  3877. "php": "^7.2 || ^8.0"
  3878. },
  3879. "type": "library",
  3880. "extra": {
  3881. "branch-alias": {
  3882. "dev-master": "1.1.x-dev"
  3883. }
  3884. },
  3885. "autoload": {
  3886. "psr-4": {
  3887. "Psr\\Http\\Message\\": "src/"
  3888. }
  3889. },
  3890. "notification-url": "https://packagist.org/downloads/",
  3891. "license": [
  3892. "MIT"
  3893. ],
  3894. "authors": [
  3895. {
  3896. "name": "PHP-FIG",
  3897. "homepage": "http://www.php-fig.org/"
  3898. }
  3899. ],
  3900. "description": "Common interface for HTTP messages",
  3901. "homepage": "https://github.com/php-fig/http-message",
  3902. "keywords": [
  3903. "http",
  3904. "http-message",
  3905. "psr",
  3906. "psr-7",
  3907. "request",
  3908. "response"
  3909. ],
  3910. "support": {
  3911. "source": "https://github.com/php-fig/http-message/tree/1.1"
  3912. },
  3913. "time": "2023-04-04T09:50:52+00:00"
  3914. },
  3915. {
  3916. "name": "psr/http-server-handler",
  3917. "version": "1.0.2",
  3918. "source": {
  3919. "type": "git",
  3920. "url": "https://github.com/php-fig/http-server-handler.git",
  3921. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  3922. },
  3923. "dist": {
  3924. "type": "zip",
  3925. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  3926. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  3927. "shasum": ""
  3928. },
  3929. "require": {
  3930. "php": ">=7.0",
  3931. "psr/http-message": "^1.0 || ^2.0"
  3932. },
  3933. "type": "library",
  3934. "extra": {
  3935. "branch-alias": {
  3936. "dev-master": "1.0.x-dev"
  3937. }
  3938. },
  3939. "autoload": {
  3940. "psr-4": {
  3941. "Psr\\Http\\Server\\": "src/"
  3942. }
  3943. },
  3944. "notification-url": "https://packagist.org/downloads/",
  3945. "license": [
  3946. "MIT"
  3947. ],
  3948. "authors": [
  3949. {
  3950. "name": "PHP-FIG",
  3951. "homepage": "https://www.php-fig.org/"
  3952. }
  3953. ],
  3954. "description": "Common interface for HTTP server-side request handler",
  3955. "keywords": [
  3956. "handler",
  3957. "http",
  3958. "http-interop",
  3959. "psr",
  3960. "psr-15",
  3961. "psr-7",
  3962. "request",
  3963. "response",
  3964. "server"
  3965. ],
  3966. "support": {
  3967. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  3968. },
  3969. "time": "2023-04-10T20:06:20+00:00"
  3970. },
  3971. {
  3972. "name": "psr/http-server-middleware",
  3973. "version": "1.0.2",
  3974. "source": {
  3975. "type": "git",
  3976. "url": "https://github.com/php-fig/http-server-middleware.git",
  3977. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  3978. },
  3979. "dist": {
  3980. "type": "zip",
  3981. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  3982. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  3983. "shasum": ""
  3984. },
  3985. "require": {
  3986. "php": ">=7.0",
  3987. "psr/http-message": "^1.0 || ^2.0",
  3988. "psr/http-server-handler": "^1.0"
  3989. },
  3990. "type": "library",
  3991. "extra": {
  3992. "branch-alias": {
  3993. "dev-master": "1.0.x-dev"
  3994. }
  3995. },
  3996. "autoload": {
  3997. "psr-4": {
  3998. "Psr\\Http\\Server\\": "src/"
  3999. }
  4000. },
  4001. "notification-url": "https://packagist.org/downloads/",
  4002. "license": [
  4003. "MIT"
  4004. ],
  4005. "authors": [
  4006. {
  4007. "name": "PHP-FIG",
  4008. "homepage": "https://www.php-fig.org/"
  4009. }
  4010. ],
  4011. "description": "Common interface for HTTP server-side middleware",
  4012. "keywords": [
  4013. "http",
  4014. "http-interop",
  4015. "middleware",
  4016. "psr",
  4017. "psr-15",
  4018. "psr-7",
  4019. "request",
  4020. "response"
  4021. ],
  4022. "support": {
  4023. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  4024. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  4025. },
  4026. "time": "2023-04-11T06:14:47+00:00"
  4027. },
  4028. {
  4029. "name": "psr/log",
  4030. "version": "3.0.0",
  4031. "source": {
  4032. "type": "git",
  4033. "url": "https://github.com/php-fig/log.git",
  4034. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  4035. },
  4036. "dist": {
  4037. "type": "zip",
  4038. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  4039. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  4040. "shasum": ""
  4041. },
  4042. "require": {
  4043. "php": ">=8.0.0"
  4044. },
  4045. "type": "library",
  4046. "extra": {
  4047. "branch-alias": {
  4048. "dev-master": "3.x-dev"
  4049. }
  4050. },
  4051. "autoload": {
  4052. "psr-4": {
  4053. "Psr\\Log\\": "src"
  4054. }
  4055. },
  4056. "notification-url": "https://packagist.org/downloads/",
  4057. "license": [
  4058. "MIT"
  4059. ],
  4060. "authors": [
  4061. {
  4062. "name": "PHP-FIG",
  4063. "homepage": "https://www.php-fig.org/"
  4064. }
  4065. ],
  4066. "description": "Common interface for logging libraries",
  4067. "homepage": "https://github.com/php-fig/log",
  4068. "keywords": [
  4069. "log",
  4070. "psr",
  4071. "psr-3"
  4072. ],
  4073. "support": {
  4074. "source": "https://github.com/php-fig/log/tree/3.0.0"
  4075. },
  4076. "time": "2021-07-14T16:46:02+00:00"
  4077. },
  4078. {
  4079. "name": "psr/simple-cache",
  4080. "version": "3.0.0",
  4081. "source": {
  4082. "type": "git",
  4083. "url": "https://github.com/php-fig/simple-cache.git",
  4084. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  4085. },
  4086. "dist": {
  4087. "type": "zip",
  4088. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4089. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4090. "shasum": ""
  4091. },
  4092. "require": {
  4093. "php": ">=8.0.0"
  4094. },
  4095. "type": "library",
  4096. "extra": {
  4097. "branch-alias": {
  4098. "dev-master": "3.0.x-dev"
  4099. }
  4100. },
  4101. "autoload": {
  4102. "psr-4": {
  4103. "Psr\\SimpleCache\\": "src/"
  4104. }
  4105. },
  4106. "notification-url": "https://packagist.org/downloads/",
  4107. "license": [
  4108. "MIT"
  4109. ],
  4110. "authors": [
  4111. {
  4112. "name": "PHP-FIG",
  4113. "homepage": "https://www.php-fig.org/"
  4114. }
  4115. ],
  4116. "description": "Common interfaces for simple caching",
  4117. "keywords": [
  4118. "cache",
  4119. "caching",
  4120. "psr",
  4121. "psr-16",
  4122. "simple-cache"
  4123. ],
  4124. "support": {
  4125. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  4126. },
  4127. "time": "2021-10-29T13:26:27+00:00"
  4128. },
  4129. {
  4130. "name": "ralouphie/getallheaders",
  4131. "version": "3.0.3",
  4132. "source": {
  4133. "type": "git",
  4134. "url": "https://github.com/ralouphie/getallheaders.git",
  4135. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4136. },
  4137. "dist": {
  4138. "type": "zip",
  4139. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4140. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4141. "shasum": ""
  4142. },
  4143. "require": {
  4144. "php": ">=5.6"
  4145. },
  4146. "require-dev": {
  4147. "php-coveralls/php-coveralls": "^2.1",
  4148. "phpunit/phpunit": "^5 || ^6.5"
  4149. },
  4150. "type": "library",
  4151. "autoload": {
  4152. "files": [
  4153. "src/getallheaders.php"
  4154. ]
  4155. },
  4156. "notification-url": "https://packagist.org/downloads/",
  4157. "license": [
  4158. "MIT"
  4159. ],
  4160. "authors": [
  4161. {
  4162. "name": "Ralph Khattar",
  4163. "email": "[email protected]"
  4164. }
  4165. ],
  4166. "description": "A polyfill for getallheaders.",
  4167. "support": {
  4168. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4169. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4170. },
  4171. "time": "2019-03-08T08:55:37+00:00"
  4172. },
  4173. {
  4174. "name": "ramsey/collection",
  4175. "version": "2.0.0",
  4176. "source": {
  4177. "type": "git",
  4178. "url": "https://github.com/ramsey/collection.git",
  4179. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  4180. },
  4181. "dist": {
  4182. "type": "zip",
  4183. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4184. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4185. "shasum": ""
  4186. },
  4187. "require": {
  4188. "php": "^8.1"
  4189. },
  4190. "require-dev": {
  4191. "captainhook/plugin-composer": "^5.3",
  4192. "ergebnis/composer-normalize": "^2.28.3",
  4193. "fakerphp/faker": "^1.21",
  4194. "hamcrest/hamcrest-php": "^2.0",
  4195. "jangregor/phpstan-prophecy": "^1.0",
  4196. "mockery/mockery": "^1.5",
  4197. "php-parallel-lint/php-console-highlighter": "^1.0",
  4198. "php-parallel-lint/php-parallel-lint": "^1.3",
  4199. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4200. "phpspec/prophecy-phpunit": "^2.0",
  4201. "phpstan/extension-installer": "^1.2",
  4202. "phpstan/phpstan": "^1.9",
  4203. "phpstan/phpstan-mockery": "^1.1",
  4204. "phpstan/phpstan-phpunit": "^1.3",
  4205. "phpunit/phpunit": "^9.5",
  4206. "psalm/plugin-mockery": "^1.1",
  4207. "psalm/plugin-phpunit": "^0.18.4",
  4208. "ramsey/coding-standard": "^2.0.3",
  4209. "ramsey/conventional-commits": "^1.3",
  4210. "vimeo/psalm": "^5.4"
  4211. },
  4212. "type": "library",
  4213. "extra": {
  4214. "captainhook": {
  4215. "force-install": true
  4216. },
  4217. "ramsey/conventional-commits": {
  4218. "configFile": "conventional-commits.json"
  4219. }
  4220. },
  4221. "autoload": {
  4222. "psr-4": {
  4223. "Ramsey\\Collection\\": "src/"
  4224. }
  4225. },
  4226. "notification-url": "https://packagist.org/downloads/",
  4227. "license": [
  4228. "MIT"
  4229. ],
  4230. "authors": [
  4231. {
  4232. "name": "Ben Ramsey",
  4233. "email": "[email protected]",
  4234. "homepage": "https://benramsey.com"
  4235. }
  4236. ],
  4237. "description": "A PHP library for representing and manipulating collections.",
  4238. "keywords": [
  4239. "array",
  4240. "collection",
  4241. "hash",
  4242. "map",
  4243. "queue",
  4244. "set"
  4245. ],
  4246. "support": {
  4247. "issues": "https://github.com/ramsey/collection/issues",
  4248. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  4249. },
  4250. "funding": [
  4251. {
  4252. "url": "https://github.com/ramsey",
  4253. "type": "github"
  4254. },
  4255. {
  4256. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4257. "type": "tidelift"
  4258. }
  4259. ],
  4260. "time": "2022-12-31T21:50:55+00:00"
  4261. },
  4262. {
  4263. "name": "ramsey/uuid",
  4264. "version": "4.7.5",
  4265. "source": {
  4266. "type": "git",
  4267. "url": "https://github.com/ramsey/uuid.git",
  4268. "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e"
  4269. },
  4270. "dist": {
  4271. "type": "zip",
  4272. "url": "https://api.github.com/repos/ramsey/uuid/zipball/5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
  4273. "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
  4274. "shasum": ""
  4275. },
  4276. "require": {
  4277. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  4278. "ext-json": "*",
  4279. "php": "^8.0",
  4280. "ramsey/collection": "^1.2 || ^2.0"
  4281. },
  4282. "replace": {
  4283. "rhumsaa/uuid": "self.version"
  4284. },
  4285. "require-dev": {
  4286. "captainhook/captainhook": "^5.10",
  4287. "captainhook/plugin-composer": "^5.3",
  4288. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4289. "doctrine/annotations": "^1.8",
  4290. "ergebnis/composer-normalize": "^2.15",
  4291. "mockery/mockery": "^1.3",
  4292. "paragonie/random-lib": "^2",
  4293. "php-mock/php-mock": "^2.2",
  4294. "php-mock/php-mock-mockery": "^1.3",
  4295. "php-parallel-lint/php-parallel-lint": "^1.1",
  4296. "phpbench/phpbench": "^1.0",
  4297. "phpstan/extension-installer": "^1.1",
  4298. "phpstan/phpstan": "^1.8",
  4299. "phpstan/phpstan-mockery": "^1.1",
  4300. "phpstan/phpstan-phpunit": "^1.1",
  4301. "phpunit/phpunit": "^8.5 || ^9",
  4302. "ramsey/composer-repl": "^1.4",
  4303. "slevomat/coding-standard": "^8.4",
  4304. "squizlabs/php_codesniffer": "^3.5",
  4305. "vimeo/psalm": "^4.9"
  4306. },
  4307. "suggest": {
  4308. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4309. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4310. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4311. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4312. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4313. },
  4314. "type": "library",
  4315. "extra": {
  4316. "captainhook": {
  4317. "force-install": true
  4318. }
  4319. },
  4320. "autoload": {
  4321. "files": [
  4322. "src/functions.php"
  4323. ],
  4324. "psr-4": {
  4325. "Ramsey\\Uuid\\": "src/"
  4326. }
  4327. },
  4328. "notification-url": "https://packagist.org/downloads/",
  4329. "license": [
  4330. "MIT"
  4331. ],
  4332. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4333. "keywords": [
  4334. "guid",
  4335. "identifier",
  4336. "uuid"
  4337. ],
  4338. "support": {
  4339. "issues": "https://github.com/ramsey/uuid/issues",
  4340. "source": "https://github.com/ramsey/uuid/tree/4.7.5"
  4341. },
  4342. "funding": [
  4343. {
  4344. "url": "https://github.com/ramsey",
  4345. "type": "github"
  4346. },
  4347. {
  4348. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4349. "type": "tidelift"
  4350. }
  4351. ],
  4352. "time": "2023-11-08T05:53:05+00:00"
  4353. },
  4354. {
  4355. "name": "sendgrid/php-http-client",
  4356. "version": "4.1.1",
  4357. "source": {
  4358. "type": "git",
  4359. "url": "https://github.com/sendgrid/php-http-client.git",
  4360. "reference": "ec09bcfccabeb21d69e245a1e1c0e51f2813fc35"
  4361. },
  4362. "dist": {
  4363. "type": "zip",
  4364. "url": "https://api.github.com/repos/sendgrid/php-http-client/zipball/ec09bcfccabeb21d69e245a1e1c0e51f2813fc35",
  4365. "reference": "ec09bcfccabeb21d69e245a1e1c0e51f2813fc35",
  4366. "shasum": ""
  4367. },
  4368. "require": {
  4369. "ext-curl": "*",
  4370. "ext-json": "*",
  4371. "ext-mbstring": "*",
  4372. "php": ">=7.3"
  4373. },
  4374. "require-dev": {
  4375. "friendsofphp/php-cs-fixer": "^2.16",
  4376. "phpunit/phpunit": "^9",
  4377. "squizlabs/php_codesniffer": "~2.0"
  4378. },
  4379. "suggest": {
  4380. "composer/ca-bundle": "Including this library will ensure that a valid CA bundle is available for secure connections"
  4381. },
  4382. "type": "library",
  4383. "autoload": {
  4384. "psr-4": {
  4385. "SendGrid\\": "lib/"
  4386. }
  4387. },
  4388. "notification-url": "https://packagist.org/downloads/",
  4389. "license": [
  4390. "MIT"
  4391. ],
  4392. "authors": [
  4393. {
  4394. "name": "Matt Bernier",
  4395. "email": "[email protected]"
  4396. },
  4397. {
  4398. "name": "Elmer Thomas",
  4399. "email": "[email protected]"
  4400. }
  4401. ],
  4402. "description": "HTTP REST client, simplified for PHP",
  4403. "homepage": "http://github.com/sendgrid/php-http-client",
  4404. "keywords": [
  4405. "api",
  4406. "fluent",
  4407. "http",
  4408. "rest",
  4409. "sendgrid"
  4410. ],
  4411. "support": {
  4412. "source": "https://github.com/sendgrid/php-http-client/tree/4.1.1"
  4413. },
  4414. "time": "2023-12-14T08:50:59+00:00"
  4415. },
  4416. {
  4417. "name": "sendgrid/sendgrid",
  4418. "version": "8.1.2",
  4419. "source": {
  4420. "type": "git",
  4421. "url": "https://github.com/sendgrid/sendgrid-php.git",
  4422. "reference": "6700d2cf50df38915fa2d9a03affbca58c48599f"
  4423. },
  4424. "dist": {
  4425. "type": "zip",
  4426. "url": "https://api.github.com/repos/sendgrid/sendgrid-php/zipball/6700d2cf50df38915fa2d9a03affbca58c48599f",
  4427. "reference": "6700d2cf50df38915fa2d9a03affbca58c48599f",
  4428. "shasum": ""
  4429. },
  4430. "require": {
  4431. "ext-curl": "*",
  4432. "ext-json": "*",
  4433. "ext-mbstring": "*",
  4434. "ext-openssl": "*",
  4435. "php": ">=7.3",
  4436. "sendgrid/php-http-client": "~4.1",
  4437. "starkbank/ecdsa": "0.*"
  4438. },
  4439. "replace": {
  4440. "sendgrid/sendgrid-php": "*"
  4441. },
  4442. "require-dev": {
  4443. "phpstan/phpstan": "^1.5",
  4444. "phpunit/phpunit": "^9",
  4445. "squizlabs/php_codesniffer": "3.*",
  4446. "swaggest/json-diff": "^3.4"
  4447. },
  4448. "type": "library",
  4449. "autoload": {
  4450. "psr-4": {
  4451. "SendGrid\\Mail\\": "lib/mail/",
  4452. "SendGrid\\Stats\\": "lib/stats/",
  4453. "SendGrid\\Helper\\": "lib/helper/",
  4454. "SendGrid\\Contacts\\": "lib/contacts/",
  4455. "SendGrid\\EventWebhook\\": "lib/eventwebhook/"
  4456. },
  4457. "classmap": [
  4458. "lib/BaseSendGridClientInterface.php",
  4459. "lib/SendGrid.php",
  4460. "lib/TwilioEmail.php"
  4461. ]
  4462. },
  4463. "notification-url": "https://packagist.org/downloads/",
  4464. "license": [
  4465. "MIT"
  4466. ],
  4467. "description": "This library allows you to quickly and easily send emails through Twilio SendGrid using PHP.",
  4468. "homepage": "http://github.com/sendgrid/sendgrid-php",
  4469. "keywords": [
  4470. "email",
  4471. "grid",
  4472. "send",
  4473. "sendgrid",
  4474. "twilio sendgrid"
  4475. ],
  4476. "support": {
  4477. "source": "https://github.com/sendgrid/sendgrid-php/tree/8.1.2"
  4478. },
  4479. "time": "2024-04-18T11:09:09+00:00"
  4480. },
  4481. {
  4482. "name": "sentry/sdk",
  4483. "version": "4.0.0",
  4484. "source": {
  4485. "type": "git",
  4486. "url": "https://github.com/getsentry/sentry-php-sdk.git",
  4487. "reference": "fcbca864e8d1dc712f3ecfaa95ea89d024fb2e53"
  4488. },
  4489. "dist": {
  4490. "type": "zip",
  4491. "url": "https://api.github.com/repos/getsentry/sentry-php-sdk/zipball/fcbca864e8d1dc712f3ecfaa95ea89d024fb2e53",
  4492. "reference": "fcbca864e8d1dc712f3ecfaa95ea89d024fb2e53",
  4493. "shasum": ""
  4494. },
  4495. "require": {
  4496. "sentry/sentry": "^4.0"
  4497. },
  4498. "type": "metapackage",
  4499. "notification-url": "https://packagist.org/downloads/",
  4500. "license": [
  4501. "MIT"
  4502. ],
  4503. "authors": [
  4504. {
  4505. "name": "Sentry",
  4506. "email": "[email protected]"
  4507. }
  4508. ],
  4509. "description": "This is a meta package of sentry/sentry. We recommend using sentry/sentry directly.",
  4510. "homepage": "http://sentry.io",
  4511. "keywords": [
  4512. "crash-reporting",
  4513. "crash-reports",
  4514. "error-handler",
  4515. "error-monitoring",
  4516. "log",
  4517. "logging",
  4518. "sentry"
  4519. ],
  4520. "support": {
  4521. "issues": "https://github.com/getsentry/sentry-php-sdk/issues",
  4522. "source": "https://github.com/getsentry/sentry-php-sdk/tree/4.0.0"
  4523. },
  4524. "funding": [
  4525. {
  4526. "url": "https://sentry.io/",
  4527. "type": "custom"
  4528. },
  4529. {
  4530. "url": "https://sentry.io/pricing/",
  4531. "type": "custom"
  4532. }
  4533. ],
  4534. "time": "2023-11-06T10:23:19+00:00"
  4535. },
  4536. {
  4537. "name": "sentry/sentry",
  4538. "version": "4.7.0",
  4539. "source": {
  4540. "type": "git",
  4541. "url": "https://github.com/getsentry/sentry-php.git",
  4542. "reference": "d6769b2a5e6bf19ed3bbfbf52328ceaf8e6fcb1f"
  4543. },
  4544. "dist": {
  4545. "type": "zip",
  4546. "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/d6769b2a5e6bf19ed3bbfbf52328ceaf8e6fcb1f",
  4547. "reference": "d6769b2a5e6bf19ed3bbfbf52328ceaf8e6fcb1f",
  4548. "shasum": ""
  4549. },
  4550. "require": {
  4551. "ext-curl": "*",
  4552. "ext-json": "*",
  4553. "ext-mbstring": "*",
  4554. "guzzlehttp/psr7": "^1.8.4|^2.1.1",
  4555. "jean85/pretty-package-versions": "^1.5|^2.0.4",
  4556. "php": "^7.2|^8.0",
  4557. "psr/log": "^1.0|^2.0|^3.0",
  4558. "symfony/options-resolver": "^4.4.30|^5.0.11|^6.0|^7.0"
  4559. },
  4560. "conflict": {
  4561. "raven/raven": "*"
  4562. },
  4563. "require-dev": {
  4564. "friendsofphp/php-cs-fixer": "^3.4",
  4565. "guzzlehttp/promises": "^1.0|^2.0",
  4566. "guzzlehttp/psr7": "^1.8.4|^2.1.1",
  4567. "monolog/monolog": "^1.6|^2.0|^3.0",
  4568. "phpbench/phpbench": "^1.0",
  4569. "phpstan/phpstan": "^1.3",
  4570. "phpunit/phpunit": "^8.5.14|^9.4",
  4571. "symfony/phpunit-bridge": "^5.2|^6.0|^7.0",
  4572. "vimeo/psalm": "^4.17"
  4573. },
  4574. "suggest": {
  4575. "monolog/monolog": "Allow sending log messages to Sentry by using the included Monolog handler."
  4576. },
  4577. "type": "library",
  4578. "autoload": {
  4579. "files": [
  4580. "src/functions.php"
  4581. ],
  4582. "psr-4": {
  4583. "Sentry\\": "src/"
  4584. }
  4585. },
  4586. "notification-url": "https://packagist.org/downloads/",
  4587. "license": [
  4588. "MIT"
  4589. ],
  4590. "authors": [
  4591. {
  4592. "name": "Sentry",
  4593. "email": "[email protected]"
  4594. }
  4595. ],
  4596. "description": "PHP SDK for Sentry (http://sentry.io)",
  4597. "homepage": "http://sentry.io",
  4598. "keywords": [
  4599. "crash-reporting",
  4600. "crash-reports",
  4601. "error-handler",
  4602. "error-monitoring",
  4603. "log",
  4604. "logging",
  4605. "profiling",
  4606. "sentry",
  4607. "tracing"
  4608. ],
  4609. "support": {
  4610. "issues": "https://github.com/getsentry/sentry-php/issues",
  4611. "source": "https://github.com/getsentry/sentry-php/tree/4.7.0"
  4612. },
  4613. "funding": [
  4614. {
  4615. "url": "https://sentry.io/",
  4616. "type": "custom"
  4617. },
  4618. {
  4619. "url": "https://sentry.io/pricing/",
  4620. "type": "custom"
  4621. }
  4622. ],
  4623. "time": "2024-04-10T13:22:13+00:00"
  4624. },
  4625. {
  4626. "name": "slim/http",
  4627. "version": "1.3",
  4628. "source": {
  4629. "type": "git",
  4630. "url": "https://github.com/slimphp/Slim-Http.git",
  4631. "reference": "9542edbe469b7c0f3084c2467efea972387f5beb"
  4632. },
  4633. "dist": {
  4634. "type": "zip",
  4635. "url": "https://api.github.com/repos/slimphp/Slim-Http/zipball/9542edbe469b7c0f3084c2467efea972387f5beb",
  4636. "reference": "9542edbe469b7c0f3084c2467efea972387f5beb",
  4637. "shasum": ""
  4638. },
  4639. "require": {
  4640. "ext-fileinfo": "*",
  4641. "ext-json": "*",
  4642. "ext-libxml": "*",
  4643. "ext-simplexml": "*",
  4644. "php": "^7.4 || ^8.0",
  4645. "psr/http-factory": "^1.0",
  4646. "psr/http-message": "^1.0"
  4647. },
  4648. "require-dev": {
  4649. "adriansuter/php-autoload-override": "^1.3",
  4650. "laminas/laminas-diactoros": "^2.17",
  4651. "nyholm/psr7": "^1.5",
  4652. "php-http/psr7-integration-tests": "dev-master",
  4653. "phpstan/phpstan": "^1.8",
  4654. "phpunit/phpunit": "^9.5",
  4655. "squizlabs/php_codesniffer": "^3.7"
  4656. },
  4657. "type": "library",
  4658. "autoload": {
  4659. "psr-4": {
  4660. "Slim\\Http\\": "src/"
  4661. }
  4662. },
  4663. "notification-url": "https://packagist.org/downloads/",
  4664. "license": [
  4665. "MIT"
  4666. ],
  4667. "authors": [
  4668. {
  4669. "name": "Josh Lockhart",
  4670. "email": "[email protected]",
  4671. "homepage": "http://joshlockhart.com"
  4672. },
  4673. {
  4674. "name": "Andrew Smith",
  4675. "email": "[email protected]",
  4676. "homepage": "http://silentworks.co.uk"
  4677. },
  4678. {
  4679. "name": "Rob Allen",
  4680. "email": "[email protected]",
  4681. "homepage": "http://akrabat.com"
  4682. },
  4683. {
  4684. "name": "Pierre Berube",
  4685. "email": "[email protected]",
  4686. "homepage": "http://www.lgse.com"
  4687. }
  4688. ],
  4689. "description": "Slim PSR-7 Object Decorators",
  4690. "homepage": "http://slimframework.com",
  4691. "keywords": [
  4692. "http",
  4693. "psr-7",
  4694. "psr7"
  4695. ],
  4696. "support": {
  4697. "issues": "https://github.com/slimphp/Slim-Http/issues",
  4698. "source": "https://github.com/slimphp/Slim-Http/tree/1.3"
  4699. },
  4700. "time": "2022-09-14T15:45:07+00:00"
  4701. },
  4702. {
  4703. "name": "slim/slim",
  4704. "version": "4.13.0",
  4705. "source": {
  4706. "type": "git",
  4707. "url": "https://github.com/slimphp/Slim.git",
  4708. "reference": "038fd5713d5a41636fdff0e8dcceedecdd17fc17"
  4709. },
  4710. "dist": {
  4711. "type": "zip",
  4712. "url": "https://api.github.com/repos/slimphp/Slim/zipball/038fd5713d5a41636fdff0e8dcceedecdd17fc17",
  4713. "reference": "038fd5713d5a41636fdff0e8dcceedecdd17fc17",
  4714. "shasum": ""
  4715. },
  4716. "require": {
  4717. "ext-json": "*",
  4718. "nikic/fast-route": "^1.3",
  4719. "php": "^7.4 || ^8.0",
  4720. "psr/container": "^1.0 || ^2.0",
  4721. "psr/http-factory": "^1.0",
  4722. "psr/http-message": "^1.1 || ^2.0",
  4723. "psr/http-server-handler": "^1.0",
  4724. "psr/http-server-middleware": "^1.0",
  4725. "psr/log": "^1.1 || ^2.0 || ^3.0"
  4726. },
  4727. "require-dev": {
  4728. "adriansuter/php-autoload-override": "^1.4",
  4729. "ext-simplexml": "*",
  4730. "guzzlehttp/psr7": "^2.6",
  4731. "httpsoft/http-message": "^1.1",
  4732. "httpsoft/http-server-request": "^1.1",
  4733. "laminas/laminas-diactoros": "^2.17 || ^3",
  4734. "nyholm/psr7": "^1.8",
  4735. "nyholm/psr7-server": "^1.1",
  4736. "phpspec/prophecy": "^1.19",
  4737. "phpspec/prophecy-phpunit": "^2.1",
  4738. "phpstan/phpstan": "^1.10",
  4739. "phpunit/phpunit": "^9.6",
  4740. "slim/http": "^1.3",
  4741. "slim/psr7": "^1.6",
  4742. "squizlabs/php_codesniffer": "^3.9"
  4743. },
  4744. "suggest": {
  4745. "ext-simplexml": "Needed to support XML format in BodyParsingMiddleware",
  4746. "ext-xml": "Needed to support XML format in BodyParsingMiddleware",
  4747. "php-di/php-di": "PHP-DI is the recommended container library to be used with Slim",
  4748. "slim/psr7": "Slim PSR-7 implementation. See https://www.slimframework.com/docs/v4/start/installation.html for more information."
  4749. },
  4750. "type": "library",
  4751. "autoload": {
  4752. "psr-4": {
  4753. "Slim\\": "Slim"
  4754. }
  4755. },
  4756. "notification-url": "https://packagist.org/downloads/",
  4757. "license": [
  4758. "MIT"
  4759. ],
  4760. "authors": [
  4761. {
  4762. "name": "Josh Lockhart",
  4763. "email": "[email protected]",
  4764. "homepage": "https://joshlockhart.com"
  4765. },
  4766. {
  4767. "name": "Andrew Smith",
  4768. "email": "[email protected]",
  4769. "homepage": "http://silentworks.co.uk"
  4770. },
  4771. {
  4772. "name": "Rob Allen",
  4773. "email": "[email protected]",
  4774. "homepage": "http://akrabat.com"
  4775. },
  4776. {
  4777. "name": "Pierre Berube",
  4778. "email": "[email protected]",
  4779. "homepage": "http://www.lgse.com"
  4780. },
  4781. {
  4782. "name": "Gabriel Manricks",
  4783. "email": "[email protected]",
  4784. "homepage": "http://gabrielmanricks.com"
  4785. }
  4786. ],
  4787. "description": "Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs",
  4788. "homepage": "https://www.slimframework.com",
  4789. "keywords": [
  4790. "api",
  4791. "framework",
  4792. "micro",
  4793. "router"
  4794. ],
  4795. "support": {
  4796. "docs": "https://www.slimframework.com/docs/v4/",
  4797. "forum": "https://discourse.slimframework.com/",
  4798. "irc": "irc://irc.freenode.net:6667/slimphp",
  4799. "issues": "https://github.com/slimphp/Slim/issues",
  4800. "rss": "https://www.slimframework.com/blog/feed.rss",
  4801. "slack": "https://slimphp.slack.com/",
  4802. "source": "https://github.com/slimphp/Slim",
  4803. "wiki": "https://github.com/slimphp/Slim/wiki"
  4804. },
  4805. "funding": [
  4806. {
  4807. "url": "https://opencollective.com/slimphp",
  4808. "type": "open_collective"
  4809. },
  4810. {
  4811. "url": "https://tidelift.com/funding/github/packagist/slim/slim",
  4812. "type": "tidelift"
  4813. }
  4814. ],
  4815. "time": "2024-03-03T21:25:30+00:00"
  4816. },
  4817. {
  4818. "name": "smarty/smarty",
  4819. "version": "v5.0.2",
  4820. "source": {
  4821. "type": "git",
  4822. "url": "https://github.com/smarty-php/smarty.git",
  4823. "reference": "bbd09c7bfaa6c2c091adc4568a944f765bb4f1d9"
  4824. },
  4825. "dist": {
  4826. "type": "zip",
  4827. "url": "https://api.github.com/repos/smarty-php/smarty/zipball/bbd09c7bfaa6c2c091adc4568a944f765bb4f1d9",
  4828. "reference": "bbd09c7bfaa6c2c091adc4568a944f765bb4f1d9",
  4829. "shasum": ""
  4830. },
  4831. "require": {
  4832. "php": "^7.2 || ^8.0",
  4833. "symfony/polyfill-mbstring": "^1.27"
  4834. },
  4835. "require-dev": {
  4836. "phpunit/phpunit": "^8.5 || ^7.5",
  4837. "smarty/smarty-lexer": "^4.0.2"
  4838. },
  4839. "type": "library",
  4840. "extra": {
  4841. "branch-alias": {
  4842. "dev-master": "5.0.x-dev"
  4843. }
  4844. },
  4845. "autoload": {
  4846. "files": [
  4847. "src/functions.php"
  4848. ],
  4849. "psr-4": {
  4850. "Smarty\\": "src/"
  4851. }
  4852. },
  4853. "notification-url": "https://packagist.org/downloads/",
  4854. "license": [
  4855. "LGPL-3.0"
  4856. ],
  4857. "authors": [
  4858. {
  4859. "name": "Monte Ohrt",
  4860. "email": "[email protected]"
  4861. },
  4862. {
  4863. "name": "Uwe Tews",
  4864. "email": "[email protected]"
  4865. },
  4866. {
  4867. "name": "Rodney Rehm",
  4868. "email": "[email protected]"
  4869. },
  4870. {
  4871. "name": "Simon Wisselink",
  4872. "homepage": "https://www.iwink.nl/"
  4873. }
  4874. ],
  4875. "description": "Smarty - the compiling PHP template engine",
  4876. "homepage": "https://smarty-php.github.io/smarty/",
  4877. "keywords": [
  4878. "templating"
  4879. ],
  4880. "support": {
  4881. "forum": "https://github.com/smarty-php/smarty/discussions",
  4882. "issues": "https://github.com/smarty-php/smarty/issues",
  4883. "source": "https://github.com/smarty-php/smarty/tree/v5.0.2"
  4884. },
  4885. "time": "2024-03-28T10:23:18+00:00"
  4886. },
  4887. {
  4888. "name": "srmklive/paypal",
  4889. "version": "3.0.30",
  4890. "source": {
  4891. "type": "git",
  4892. "url": "https://github.com/srmklive/laravel-paypal.git",
  4893. "reference": "d511038ff01f466e7bfca475c7417b5a6c4d38a5"
  4894. },
  4895. "dist": {
  4896. "type": "zip",
  4897. "url": "https://api.github.com/repos/srmklive/laravel-paypal/zipball/d511038ff01f466e7bfca475c7417b5a6c4d38a5",
  4898. "reference": "d511038ff01f466e7bfca475c7417b5a6c4d38a5",
  4899. "shasum": ""
  4900. },
  4901. "require": {
  4902. "ext-curl": "*",
  4903. "guzzlehttp/guzzle": "~7.0",
  4904. "illuminate/support": "~6.0|~7.0|~8.0|~9.0|^10.0|^11.0",
  4905. "nesbot/carbon": "~2.0|^3.0",
  4906. "php": ">=7.2|^8.0"
  4907. },
  4908. "require-dev": {
  4909. "phpstan/phpstan": "^1.10",
  4910. "phpunit/phpunit": "^8.0|^9.0|^10.0",
  4911. "symfony/var-dumper": "~5.0|^7.0"
  4912. },
  4913. "type": "library",
  4914. "extra": {
  4915. "laravel": {
  4916. "providers": [
  4917. "Srmklive\\PayPal\\Providers\\PayPalServiceProvider"
  4918. ],
  4919. "aliases": {
  4920. "PayPal": "Srmklive\\PayPal\\Facades\\PayPal"
  4921. }
  4922. }
  4923. },
  4924. "autoload": {
  4925. "psr-4": {
  4926. "Srmklive\\PayPal\\": "src/"
  4927. }
  4928. },
  4929. "notification-url": "https://packagist.org/downloads/",
  4930. "license": [
  4931. "MIT"
  4932. ],
  4933. "authors": [
  4934. {
  4935. "name": "Raza Mehdi",
  4936. "email": "[email protected]"
  4937. }
  4938. ],
  4939. "description": "Laravel plugin For Processing Payments Through Paypal Express Checkout. Can Be Used Independently With Other Applications.",
  4940. "keywords": [
  4941. "http",
  4942. "laravel paypal",
  4943. "paypal",
  4944. "rest",
  4945. "web service"
  4946. ],
  4947. "support": {
  4948. "issues": "https://github.com/srmklive/laravel-paypal/issues",
  4949. "source": "https://github.com/srmklive/laravel-paypal/tree/3.0.30"
  4950. },
  4951. "time": "2024-03-03T15:33:56+00:00"
  4952. },
  4953. {
  4954. "name": "starkbank/ecdsa",
  4955. "version": "0.0.5",
  4956. "source": {
  4957. "type": "git",
  4958. "url": "https://github.com/starkbank/ecdsa-php.git",
  4959. "reference": "484bedac47bac4012dc73df91da221f0a66845cb"
  4960. },
  4961. "dist": {
  4962. "type": "zip",
  4963. "url": "https://api.github.com/repos/starkbank/ecdsa-php/zipball/484bedac47bac4012dc73df91da221f0a66845cb",
  4964. "reference": "484bedac47bac4012dc73df91da221f0a66845cb",
  4965. "shasum": ""
  4966. },
  4967. "require": {
  4968. "php": ">=5.5"
  4969. },
  4970. "type": "library",
  4971. "autoload": {
  4972. "files": [
  4973. "src/ellipticcurve.php"
  4974. ]
  4975. },
  4976. "notification-url": "https://packagist.org/downloads/",
  4977. "license": [
  4978. "MIT"
  4979. ],
  4980. "authors": [
  4981. {
  4982. "name": "StarkBank",
  4983. "email": "[email protected]",
  4984. "homepage": "https://starkbank.com",
  4985. "role": "Developer"
  4986. }
  4987. ],
  4988. "description": "fast openSSL-compatible implementation of the Elliptic Curve Digital Signature Algorithm (ECDSA)",
  4989. "homepage": "https://github.com/starkbank/ecdsa-php",
  4990. "support": {
  4991. "issues": "https://github.com/starkbank/ecdsa-php/issues",
  4992. "source": "https://github.com/starkbank/ecdsa-php/tree/v0.0.5"
  4993. },
  4994. "time": "2021-06-06T22:24:49+00:00"
  4995. },
  4996. {
  4997. "name": "stripe/stripe-php",
  4998. "version": "v14.2.0",
  4999. "source": {
  5000. "type": "git",
  5001. "url": "https://github.com/stripe/stripe-php.git",
  5002. "reference": "6b77ba6b2f8791dabc5404befd6c0ead59203892"
  5003. },
  5004. "dist": {
  5005. "type": "zip",
  5006. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/6b77ba6b2f8791dabc5404befd6c0ead59203892",
  5007. "reference": "6b77ba6b2f8791dabc5404befd6c0ead59203892",
  5008. "shasum": ""
  5009. },
  5010. "require": {
  5011. "ext-curl": "*",
  5012. "ext-json": "*",
  5013. "ext-mbstring": "*",
  5014. "php": ">=5.6.0"
  5015. },
  5016. "require-dev": {
  5017. "friendsofphp/php-cs-fixer": "3.5.0",
  5018. "phpstan/phpstan": "^1.2",
  5019. "phpunit/phpunit": "^5.7 || ^9.0"
  5020. },
  5021. "type": "library",
  5022. "extra": {
  5023. "branch-alias": {
  5024. "dev-master": "2.0-dev"
  5025. }
  5026. },
  5027. "autoload": {
  5028. "psr-4": {
  5029. "Stripe\\": "lib/"
  5030. }
  5031. },
  5032. "notification-url": "https://packagist.org/downloads/",
  5033. "license": [
  5034. "MIT"
  5035. ],
  5036. "authors": [
  5037. {
  5038. "name": "Stripe and contributors",
  5039. "homepage": "https://github.com/stripe/stripe-php/contributors"
  5040. }
  5041. ],
  5042. "description": "Stripe PHP Library",
  5043. "homepage": "https://stripe.com/",
  5044. "keywords": [
  5045. "api",
  5046. "payment processing",
  5047. "stripe"
  5048. ],
  5049. "support": {
  5050. "issues": "https://github.com/stripe/stripe-php/issues",
  5051. "source": "https://github.com/stripe/stripe-php/tree/v14.2.0"
  5052. },
  5053. "time": "2024-04-16T15:58:21+00:00"
  5054. },
  5055. {
  5056. "name": "symfony/clock",
  5057. "version": "v7.0.5",
  5058. "source": {
  5059. "type": "git",
  5060. "url": "https://github.com/symfony/clock.git",
  5061. "reference": "8b9d08887353d627d5f6c3bf3373b398b49051c2"
  5062. },
  5063. "dist": {
  5064. "type": "zip",
  5065. "url": "https://api.github.com/repos/symfony/clock/zipball/8b9d08887353d627d5f6c3bf3373b398b49051c2",
  5066. "reference": "8b9d08887353d627d5f6c3bf3373b398b49051c2",
  5067. "shasum": ""
  5068. },
  5069. "require": {
  5070. "php": ">=8.2",
  5071. "psr/clock": "^1.0",
  5072. "symfony/polyfill-php83": "^1.28"
  5073. },
  5074. "provide": {
  5075. "psr/clock-implementation": "1.0"
  5076. },
  5077. "type": "library",
  5078. "autoload": {
  5079. "files": [
  5080. "Resources/now.php"
  5081. ],
  5082. "psr-4": {
  5083. "Symfony\\Component\\Clock\\": ""
  5084. },
  5085. "exclude-from-classmap": [
  5086. "/Tests/"
  5087. ]
  5088. },
  5089. "notification-url": "https://packagist.org/downloads/",
  5090. "license": [
  5091. "MIT"
  5092. ],
  5093. "authors": [
  5094. {
  5095. "name": "Nicolas Grekas",
  5096. "email": "[email protected]"
  5097. },
  5098. {
  5099. "name": "Symfony Community",
  5100. "homepage": "https://symfony.com/contributors"
  5101. }
  5102. ],
  5103. "description": "Decouples applications from the system clock",
  5104. "homepage": "https://symfony.com",
  5105. "keywords": [
  5106. "clock",
  5107. "psr20",
  5108. "time"
  5109. ],
  5110. "support": {
  5111. "source": "https://github.com/symfony/clock/tree/v7.0.5"
  5112. },
  5113. "funding": [
  5114. {
  5115. "url": "https://symfony.com/sponsor",
  5116. "type": "custom"
  5117. },
  5118. {
  5119. "url": "https://github.com/fabpot",
  5120. "type": "github"
  5121. },
  5122. {
  5123. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5124. "type": "tidelift"
  5125. }
  5126. ],
  5127. "time": "2024-03-02T12:46:12+00:00"
  5128. },
  5129. {
  5130. "name": "symfony/deprecation-contracts",
  5131. "version": "v3.4.0",
  5132. "source": {
  5133. "type": "git",
  5134. "url": "https://github.com/symfony/deprecation-contracts.git",
  5135. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  5136. },
  5137. "dist": {
  5138. "type": "zip",
  5139. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  5140. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  5141. "shasum": ""
  5142. },
  5143. "require": {
  5144. "php": ">=8.1"
  5145. },
  5146. "type": "library",
  5147. "extra": {
  5148. "branch-alias": {
  5149. "dev-main": "3.4-dev"
  5150. },
  5151. "thanks": {
  5152. "name": "symfony/contracts",
  5153. "url": "https://github.com/symfony/contracts"
  5154. }
  5155. },
  5156. "autoload": {
  5157. "files": [
  5158. "function.php"
  5159. ]
  5160. },
  5161. "notification-url": "https://packagist.org/downloads/",
  5162. "license": [
  5163. "MIT"
  5164. ],
  5165. "authors": [
  5166. {
  5167. "name": "Nicolas Grekas",
  5168. "email": "[email protected]"
  5169. },
  5170. {
  5171. "name": "Symfony Community",
  5172. "homepage": "https://symfony.com/contributors"
  5173. }
  5174. ],
  5175. "description": "A generic function and convention to trigger deprecation notices",
  5176. "homepage": "https://symfony.com",
  5177. "support": {
  5178. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0"
  5179. },
  5180. "funding": [
  5181. {
  5182. "url": "https://symfony.com/sponsor",
  5183. "type": "custom"
  5184. },
  5185. {
  5186. "url": "https://github.com/fabpot",
  5187. "type": "github"
  5188. },
  5189. {
  5190. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5191. "type": "tidelift"
  5192. }
  5193. ],
  5194. "time": "2023-05-23T14:45:45+00:00"
  5195. },
  5196. {
  5197. "name": "symfony/http-client",
  5198. "version": "v7.0.6",
  5199. "source": {
  5200. "type": "git",
  5201. "url": "https://github.com/symfony/http-client.git",
  5202. "reference": "6e70473909f46fe5dd3b994a0f1b20ecb6b2f858"
  5203. },
  5204. "dist": {
  5205. "type": "zip",
  5206. "url": "https://api.github.com/repos/symfony/http-client/zipball/6e70473909f46fe5dd3b994a0f1b20ecb6b2f858",
  5207. "reference": "6e70473909f46fe5dd3b994a0f1b20ecb6b2f858",
  5208. "shasum": ""
  5209. },
  5210. "require": {
  5211. "php": ">=8.2",
  5212. "psr/log": "^1|^2|^3",
  5213. "symfony/http-client-contracts": "^3.4.1",
  5214. "symfony/service-contracts": "^2.5|^3"
  5215. },
  5216. "conflict": {
  5217. "php-http/discovery": "<1.15",
  5218. "symfony/http-foundation": "<6.4"
  5219. },
  5220. "provide": {
  5221. "php-http/async-client-implementation": "*",
  5222. "php-http/client-implementation": "*",
  5223. "psr/http-client-implementation": "1.0",
  5224. "symfony/http-client-implementation": "3.0"
  5225. },
  5226. "require-dev": {
  5227. "amphp/amp": "^2.5",
  5228. "amphp/http-client": "^4.2.1",
  5229. "amphp/http-tunnel": "^1.0",
  5230. "amphp/socket": "^1.1",
  5231. "guzzlehttp/promises": "^1.4|^2.0",
  5232. "nyholm/psr7": "^1.0",
  5233. "php-http/httplug": "^1.0|^2.0",
  5234. "psr/http-client": "^1.0",
  5235. "symfony/dependency-injection": "^6.4|^7.0",
  5236. "symfony/http-kernel": "^6.4|^7.0",
  5237. "symfony/messenger": "^6.4|^7.0",
  5238. "symfony/process": "^6.4|^7.0",
  5239. "symfony/stopwatch": "^6.4|^7.0"
  5240. },
  5241. "type": "library",
  5242. "autoload": {
  5243. "psr-4": {
  5244. "Symfony\\Component\\HttpClient\\": ""
  5245. },
  5246. "exclude-from-classmap": [
  5247. "/Tests/"
  5248. ]
  5249. },
  5250. "notification-url": "https://packagist.org/downloads/",
  5251. "license": [
  5252. "MIT"
  5253. ],
  5254. "authors": [
  5255. {
  5256. "name": "Nicolas Grekas",
  5257. "email": "[email protected]"
  5258. },
  5259. {
  5260. "name": "Symfony Community",
  5261. "homepage": "https://symfony.com/contributors"
  5262. }
  5263. ],
  5264. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  5265. "homepage": "https://symfony.com",
  5266. "keywords": [
  5267. "http"
  5268. ],
  5269. "support": {
  5270. "source": "https://github.com/symfony/http-client/tree/v7.0.6"
  5271. },
  5272. "funding": [
  5273. {
  5274. "url": "https://symfony.com/sponsor",
  5275. "type": "custom"
  5276. },
  5277. {
  5278. "url": "https://github.com/fabpot",
  5279. "type": "github"
  5280. },
  5281. {
  5282. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5283. "type": "tidelift"
  5284. }
  5285. ],
  5286. "time": "2024-04-01T20:49:44+00:00"
  5287. },
  5288. {
  5289. "name": "symfony/http-client-contracts",
  5290. "version": "v3.4.2",
  5291. "source": {
  5292. "type": "git",
  5293. "url": "https://github.com/symfony/http-client-contracts.git",
  5294. "reference": "b6b5c876b3a4ed74460e2c5ac53bbce2f12e2a7e"
  5295. },
  5296. "dist": {
  5297. "type": "zip",
  5298. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/b6b5c876b3a4ed74460e2c5ac53bbce2f12e2a7e",
  5299. "reference": "b6b5c876b3a4ed74460e2c5ac53bbce2f12e2a7e",
  5300. "shasum": ""
  5301. },
  5302. "require": {
  5303. "php": ">=8.1"
  5304. },
  5305. "type": "library",
  5306. "extra": {
  5307. "branch-alias": {
  5308. "dev-main": "3.4-dev"
  5309. },
  5310. "thanks": {
  5311. "name": "symfony/contracts",
  5312. "url": "https://github.com/symfony/contracts"
  5313. }
  5314. },
  5315. "autoload": {
  5316. "psr-4": {
  5317. "Symfony\\Contracts\\HttpClient\\": ""
  5318. },
  5319. "exclude-from-classmap": [
  5320. "/Test/"
  5321. ]
  5322. },
  5323. "notification-url": "https://packagist.org/downloads/",
  5324. "license": [
  5325. "MIT"
  5326. ],
  5327. "authors": [
  5328. {
  5329. "name": "Nicolas Grekas",
  5330. "email": "[email protected]"
  5331. },
  5332. {
  5333. "name": "Symfony Community",
  5334. "homepage": "https://symfony.com/contributors"
  5335. }
  5336. ],
  5337. "description": "Generic abstractions related to HTTP clients",
  5338. "homepage": "https://symfony.com",
  5339. "keywords": [
  5340. "abstractions",
  5341. "contracts",
  5342. "decoupling",
  5343. "interfaces",
  5344. "interoperability",
  5345. "standards"
  5346. ],
  5347. "support": {
  5348. "source": "https://github.com/symfony/http-client-contracts/tree/v3.4.2"
  5349. },
  5350. "funding": [
  5351. {
  5352. "url": "https://symfony.com/sponsor",
  5353. "type": "custom"
  5354. },
  5355. {
  5356. "url": "https://github.com/fabpot",
  5357. "type": "github"
  5358. },
  5359. {
  5360. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5361. "type": "tidelift"
  5362. }
  5363. ],
  5364. "time": "2024-04-01T18:51:09+00:00"
  5365. },
  5366. {
  5367. "name": "symfony/options-resolver",
  5368. "version": "v7.0.0",
  5369. "source": {
  5370. "type": "git",
  5371. "url": "https://github.com/symfony/options-resolver.git",
  5372. "reference": "700ff4096e346f54cb628ea650767c8130f1001f"
  5373. },
  5374. "dist": {
  5375. "type": "zip",
  5376. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/700ff4096e346f54cb628ea650767c8130f1001f",
  5377. "reference": "700ff4096e346f54cb628ea650767c8130f1001f",
  5378. "shasum": ""
  5379. },
  5380. "require": {
  5381. "php": ">=8.2",
  5382. "symfony/deprecation-contracts": "^2.5|^3"
  5383. },
  5384. "type": "library",
  5385. "autoload": {
  5386. "psr-4": {
  5387. "Symfony\\Component\\OptionsResolver\\": ""
  5388. },
  5389. "exclude-from-classmap": [
  5390. "/Tests/"
  5391. ]
  5392. },
  5393. "notification-url": "https://packagist.org/downloads/",
  5394. "license": [
  5395. "MIT"
  5396. ],
  5397. "authors": [
  5398. {
  5399. "name": "Fabien Potencier",
  5400. "email": "[email protected]"
  5401. },
  5402. {
  5403. "name": "Symfony Community",
  5404. "homepage": "https://symfony.com/contributors"
  5405. }
  5406. ],
  5407. "description": "Provides an improved replacement for the array_replace PHP function",
  5408. "homepage": "https://symfony.com",
  5409. "keywords": [
  5410. "config",
  5411. "configuration",
  5412. "options"
  5413. ],
  5414. "support": {
  5415. "source": "https://github.com/symfony/options-resolver/tree/v7.0.0"
  5416. },
  5417. "funding": [
  5418. {
  5419. "url": "https://symfony.com/sponsor",
  5420. "type": "custom"
  5421. },
  5422. {
  5423. "url": "https://github.com/fabpot",
  5424. "type": "github"
  5425. },
  5426. {
  5427. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5428. "type": "tidelift"
  5429. }
  5430. ],
  5431. "time": "2023-08-08T10:20:21+00:00"
  5432. },
  5433. {
  5434. "name": "symfony/polyfill-ctype",
  5435. "version": "v1.29.0",
  5436. "source": {
  5437. "type": "git",
  5438. "url": "https://github.com/symfony/polyfill-ctype.git",
  5439. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
  5440. },
  5441. "dist": {
  5442. "type": "zip",
  5443. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
  5444. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
  5445. "shasum": ""
  5446. },
  5447. "require": {
  5448. "php": ">=7.1"
  5449. },
  5450. "provide": {
  5451. "ext-ctype": "*"
  5452. },
  5453. "suggest": {
  5454. "ext-ctype": "For best performance"
  5455. },
  5456. "type": "library",
  5457. "extra": {
  5458. "thanks": {
  5459. "name": "symfony/polyfill",
  5460. "url": "https://github.com/symfony/polyfill"
  5461. }
  5462. },
  5463. "autoload": {
  5464. "files": [
  5465. "bootstrap.php"
  5466. ],
  5467. "psr-4": {
  5468. "Symfony\\Polyfill\\Ctype\\": ""
  5469. }
  5470. },
  5471. "notification-url": "https://packagist.org/downloads/",
  5472. "license": [
  5473. "MIT"
  5474. ],
  5475. "authors": [
  5476. {
  5477. "name": "Gert de Pagter",
  5478. "email": "[email protected]"
  5479. },
  5480. {
  5481. "name": "Symfony Community",
  5482. "homepage": "https://symfony.com/contributors"
  5483. }
  5484. ],
  5485. "description": "Symfony polyfill for ctype functions",
  5486. "homepage": "https://symfony.com",
  5487. "keywords": [
  5488. "compatibility",
  5489. "ctype",
  5490. "polyfill",
  5491. "portable"
  5492. ],
  5493. "support": {
  5494. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
  5495. },
  5496. "funding": [
  5497. {
  5498. "url": "https://symfony.com/sponsor",
  5499. "type": "custom"
  5500. },
  5501. {
  5502. "url": "https://github.com/fabpot",
  5503. "type": "github"
  5504. },
  5505. {
  5506. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5507. "type": "tidelift"
  5508. }
  5509. ],
  5510. "time": "2024-01-29T20:11:03+00:00"
  5511. },
  5512. {
  5513. "name": "symfony/polyfill-iconv",
  5514. "version": "v1.29.0",
  5515. "source": {
  5516. "type": "git",
  5517. "url": "https://github.com/symfony/polyfill-iconv.git",
  5518. "reference": "cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f"
  5519. },
  5520. "dist": {
  5521. "type": "zip",
  5522. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f",
  5523. "reference": "cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f",
  5524. "shasum": ""
  5525. },
  5526. "require": {
  5527. "php": ">=7.1"
  5528. },
  5529. "provide": {
  5530. "ext-iconv": "*"
  5531. },
  5532. "suggest": {
  5533. "ext-iconv": "For best performance"
  5534. },
  5535. "type": "library",
  5536. "extra": {
  5537. "thanks": {
  5538. "name": "symfony/polyfill",
  5539. "url": "https://github.com/symfony/polyfill"
  5540. }
  5541. },
  5542. "autoload": {
  5543. "files": [
  5544. "bootstrap.php"
  5545. ],
  5546. "psr-4": {
  5547. "Symfony\\Polyfill\\Iconv\\": ""
  5548. }
  5549. },
  5550. "notification-url": "https://packagist.org/downloads/",
  5551. "license": [
  5552. "MIT"
  5553. ],
  5554. "authors": [
  5555. {
  5556. "name": "Nicolas Grekas",
  5557. "email": "[email protected]"
  5558. },
  5559. {
  5560. "name": "Symfony Community",
  5561. "homepage": "https://symfony.com/contributors"
  5562. }
  5563. ],
  5564. "description": "Symfony polyfill for the Iconv extension",
  5565. "homepage": "https://symfony.com",
  5566. "keywords": [
  5567. "compatibility",
  5568. "iconv",
  5569. "polyfill",
  5570. "portable",
  5571. "shim"
  5572. ],
  5573. "support": {
  5574. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.29.0"
  5575. },
  5576. "funding": [
  5577. {
  5578. "url": "https://symfony.com/sponsor",
  5579. "type": "custom"
  5580. },
  5581. {
  5582. "url": "https://github.com/fabpot",
  5583. "type": "github"
  5584. },
  5585. {
  5586. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5587. "type": "tidelift"
  5588. }
  5589. ],
  5590. "time": "2024-01-29T20:11:03+00:00"
  5591. },
  5592. {
  5593. "name": "symfony/polyfill-intl-grapheme",
  5594. "version": "v1.29.0",
  5595. "source": {
  5596. "type": "git",
  5597. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5598. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  5599. },
  5600. "dist": {
  5601. "type": "zip",
  5602. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  5603. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  5604. "shasum": ""
  5605. },
  5606. "require": {
  5607. "php": ">=7.1"
  5608. },
  5609. "suggest": {
  5610. "ext-intl": "For best performance"
  5611. },
  5612. "type": "library",
  5613. "extra": {
  5614. "thanks": {
  5615. "name": "symfony/polyfill",
  5616. "url": "https://github.com/symfony/polyfill"
  5617. }
  5618. },
  5619. "autoload": {
  5620. "files": [
  5621. "bootstrap.php"
  5622. ],
  5623. "psr-4": {
  5624. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5625. }
  5626. },
  5627. "notification-url": "https://packagist.org/downloads/",
  5628. "license": [
  5629. "MIT"
  5630. ],
  5631. "authors": [
  5632. {
  5633. "name": "Nicolas Grekas",
  5634. "email": "[email protected]"
  5635. },
  5636. {
  5637. "name": "Symfony Community",
  5638. "homepage": "https://symfony.com/contributors"
  5639. }
  5640. ],
  5641. "description": "Symfony polyfill for intl's grapheme_* functions",
  5642. "homepage": "https://symfony.com",
  5643. "keywords": [
  5644. "compatibility",
  5645. "grapheme",
  5646. "intl",
  5647. "polyfill",
  5648. "portable",
  5649. "shim"
  5650. ],
  5651. "support": {
  5652. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  5653. },
  5654. "funding": [
  5655. {
  5656. "url": "https://symfony.com/sponsor",
  5657. "type": "custom"
  5658. },
  5659. {
  5660. "url": "https://github.com/fabpot",
  5661. "type": "github"
  5662. },
  5663. {
  5664. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5665. "type": "tidelift"
  5666. }
  5667. ],
  5668. "time": "2024-01-29T20:11:03+00:00"
  5669. },
  5670. {
  5671. "name": "symfony/polyfill-intl-normalizer",
  5672. "version": "v1.29.0",
  5673. "source": {
  5674. "type": "git",
  5675. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5676. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
  5677. },
  5678. "dist": {
  5679. "type": "zip",
  5680. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
  5681. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
  5682. "shasum": ""
  5683. },
  5684. "require": {
  5685. "php": ">=7.1"
  5686. },
  5687. "suggest": {
  5688. "ext-intl": "For best performance"
  5689. },
  5690. "type": "library",
  5691. "extra": {
  5692. "thanks": {
  5693. "name": "symfony/polyfill",
  5694. "url": "https://github.com/symfony/polyfill"
  5695. }
  5696. },
  5697. "autoload": {
  5698. "files": [
  5699. "bootstrap.php"
  5700. ],
  5701. "psr-4": {
  5702. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5703. },
  5704. "classmap": [
  5705. "Resources/stubs"
  5706. ]
  5707. },
  5708. "notification-url": "https://packagist.org/downloads/",
  5709. "license": [
  5710. "MIT"
  5711. ],
  5712. "authors": [
  5713. {
  5714. "name": "Nicolas Grekas",
  5715. "email": "[email protected]"
  5716. },
  5717. {
  5718. "name": "Symfony Community",
  5719. "homepage": "https://symfony.com/contributors"
  5720. }
  5721. ],
  5722. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5723. "homepage": "https://symfony.com",
  5724. "keywords": [
  5725. "compatibility",
  5726. "intl",
  5727. "normalizer",
  5728. "polyfill",
  5729. "portable",
  5730. "shim"
  5731. ],
  5732. "support": {
  5733. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
  5734. },
  5735. "funding": [
  5736. {
  5737. "url": "https://symfony.com/sponsor",
  5738. "type": "custom"
  5739. },
  5740. {
  5741. "url": "https://github.com/fabpot",
  5742. "type": "github"
  5743. },
  5744. {
  5745. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5746. "type": "tidelift"
  5747. }
  5748. ],
  5749. "time": "2024-01-29T20:11:03+00:00"
  5750. },
  5751. {
  5752. "name": "symfony/polyfill-mbstring",
  5753. "version": "v1.29.0",
  5754. "source": {
  5755. "type": "git",
  5756. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5757. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  5758. },
  5759. "dist": {
  5760. "type": "zip",
  5761. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  5762. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  5763. "shasum": ""
  5764. },
  5765. "require": {
  5766. "php": ">=7.1"
  5767. },
  5768. "provide": {
  5769. "ext-mbstring": "*"
  5770. },
  5771. "suggest": {
  5772. "ext-mbstring": "For best performance"
  5773. },
  5774. "type": "library",
  5775. "extra": {
  5776. "thanks": {
  5777. "name": "symfony/polyfill",
  5778. "url": "https://github.com/symfony/polyfill"
  5779. }
  5780. },
  5781. "autoload": {
  5782. "files": [
  5783. "bootstrap.php"
  5784. ],
  5785. "psr-4": {
  5786. "Symfony\\Polyfill\\Mbstring\\": ""
  5787. }
  5788. },
  5789. "notification-url": "https://packagist.org/downloads/",
  5790. "license": [
  5791. "MIT"
  5792. ],
  5793. "authors": [
  5794. {
  5795. "name": "Nicolas Grekas",
  5796. "email": "[email protected]"
  5797. },
  5798. {
  5799. "name": "Symfony Community",
  5800. "homepage": "https://symfony.com/contributors"
  5801. }
  5802. ],
  5803. "description": "Symfony polyfill for the Mbstring extension",
  5804. "homepage": "https://symfony.com",
  5805. "keywords": [
  5806. "compatibility",
  5807. "mbstring",
  5808. "polyfill",
  5809. "portable",
  5810. "shim"
  5811. ],
  5812. "support": {
  5813. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  5814. },
  5815. "funding": [
  5816. {
  5817. "url": "https://symfony.com/sponsor",
  5818. "type": "custom"
  5819. },
  5820. {
  5821. "url": "https://github.com/fabpot",
  5822. "type": "github"
  5823. },
  5824. {
  5825. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5826. "type": "tidelift"
  5827. }
  5828. ],
  5829. "time": "2024-01-29T20:11:03+00:00"
  5830. },
  5831. {
  5832. "name": "symfony/polyfill-php72",
  5833. "version": "v1.29.0",
  5834. "source": {
  5835. "type": "git",
  5836. "url": "https://github.com/symfony/polyfill-php72.git",
  5837. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25"
  5838. },
  5839. "dist": {
  5840. "type": "zip",
  5841. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25",
  5842. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25",
  5843. "shasum": ""
  5844. },
  5845. "require": {
  5846. "php": ">=7.1"
  5847. },
  5848. "type": "library",
  5849. "extra": {
  5850. "thanks": {
  5851. "name": "symfony/polyfill",
  5852. "url": "https://github.com/symfony/polyfill"
  5853. }
  5854. },
  5855. "autoload": {
  5856. "files": [
  5857. "bootstrap.php"
  5858. ],
  5859. "psr-4": {
  5860. "Symfony\\Polyfill\\Php72\\": ""
  5861. }
  5862. },
  5863. "notification-url": "https://packagist.org/downloads/",
  5864. "license": [
  5865. "MIT"
  5866. ],
  5867. "authors": [
  5868. {
  5869. "name": "Nicolas Grekas",
  5870. "email": "[email protected]"
  5871. },
  5872. {
  5873. "name": "Symfony Community",
  5874. "homepage": "https://symfony.com/contributors"
  5875. }
  5876. ],
  5877. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5878. "homepage": "https://symfony.com",
  5879. "keywords": [
  5880. "compatibility",
  5881. "polyfill",
  5882. "portable",
  5883. "shim"
  5884. ],
  5885. "support": {
  5886. "source": "https://github.com/symfony/polyfill-php72/tree/v1.29.0"
  5887. },
  5888. "funding": [
  5889. {
  5890. "url": "https://symfony.com/sponsor",
  5891. "type": "custom"
  5892. },
  5893. {
  5894. "url": "https://github.com/fabpot",
  5895. "type": "github"
  5896. },
  5897. {
  5898. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5899. "type": "tidelift"
  5900. }
  5901. ],
  5902. "time": "2024-01-29T20:11:03+00:00"
  5903. },
  5904. {
  5905. "name": "symfony/polyfill-php80",
  5906. "version": "v1.29.0",
  5907. "source": {
  5908. "type": "git",
  5909. "url": "https://github.com/symfony/polyfill-php80.git",
  5910. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  5911. },
  5912. "dist": {
  5913. "type": "zip",
  5914. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  5915. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  5916. "shasum": ""
  5917. },
  5918. "require": {
  5919. "php": ">=7.1"
  5920. },
  5921. "type": "library",
  5922. "extra": {
  5923. "thanks": {
  5924. "name": "symfony/polyfill",
  5925. "url": "https://github.com/symfony/polyfill"
  5926. }
  5927. },
  5928. "autoload": {
  5929. "files": [
  5930. "bootstrap.php"
  5931. ],
  5932. "psr-4": {
  5933. "Symfony\\Polyfill\\Php80\\": ""
  5934. },
  5935. "classmap": [
  5936. "Resources/stubs"
  5937. ]
  5938. },
  5939. "notification-url": "https://packagist.org/downloads/",
  5940. "license": [
  5941. "MIT"
  5942. ],
  5943. "authors": [
  5944. {
  5945. "name": "Ion Bazan",
  5946. "email": "[email protected]"
  5947. },
  5948. {
  5949. "name": "Nicolas Grekas",
  5950. "email": "[email protected]"
  5951. },
  5952. {
  5953. "name": "Symfony Community",
  5954. "homepage": "https://symfony.com/contributors"
  5955. }
  5956. ],
  5957. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5958. "homepage": "https://symfony.com",
  5959. "keywords": [
  5960. "compatibility",
  5961. "polyfill",
  5962. "portable",
  5963. "shim"
  5964. ],
  5965. "support": {
  5966. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  5967. },
  5968. "funding": [
  5969. {
  5970. "url": "https://symfony.com/sponsor",
  5971. "type": "custom"
  5972. },
  5973. {
  5974. "url": "https://github.com/fabpot",
  5975. "type": "github"
  5976. },
  5977. {
  5978. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5979. "type": "tidelift"
  5980. }
  5981. ],
  5982. "time": "2024-01-29T20:11:03+00:00"
  5983. },
  5984. {
  5985. "name": "symfony/polyfill-php83",
  5986. "version": "v1.29.0",
  5987. "source": {
  5988. "type": "git",
  5989. "url": "https://github.com/symfony/polyfill-php83.git",
  5990. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff"
  5991. },
  5992. "dist": {
  5993. "type": "zip",
  5994. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff",
  5995. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff",
  5996. "shasum": ""
  5997. },
  5998. "require": {
  5999. "php": ">=7.1",
  6000. "symfony/polyfill-php80": "^1.14"
  6001. },
  6002. "type": "library",
  6003. "extra": {
  6004. "thanks": {
  6005. "name": "symfony/polyfill",
  6006. "url": "https://github.com/symfony/polyfill"
  6007. }
  6008. },
  6009. "autoload": {
  6010. "files": [
  6011. "bootstrap.php"
  6012. ],
  6013. "psr-4": {
  6014. "Symfony\\Polyfill\\Php83\\": ""
  6015. },
  6016. "classmap": [
  6017. "Resources/stubs"
  6018. ]
  6019. },
  6020. "notification-url": "https://packagist.org/downloads/",
  6021. "license": [
  6022. "MIT"
  6023. ],
  6024. "authors": [
  6025. {
  6026. "name": "Nicolas Grekas",
  6027. "email": "[email protected]"
  6028. },
  6029. {
  6030. "name": "Symfony Community",
  6031. "homepage": "https://symfony.com/contributors"
  6032. }
  6033. ],
  6034. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  6035. "homepage": "https://symfony.com",
  6036. "keywords": [
  6037. "compatibility",
  6038. "polyfill",
  6039. "portable",
  6040. "shim"
  6041. ],
  6042. "support": {
  6043. "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0"
  6044. },
  6045. "funding": [
  6046. {
  6047. "url": "https://symfony.com/sponsor",
  6048. "type": "custom"
  6049. },
  6050. {
  6051. "url": "https://github.com/fabpot",
  6052. "type": "github"
  6053. },
  6054. {
  6055. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6056. "type": "tidelift"
  6057. }
  6058. ],
  6059. "time": "2024-01-29T20:11:03+00:00"
  6060. },
  6061. {
  6062. "name": "symfony/service-contracts",
  6063. "version": "v3.4.2",
  6064. "source": {
  6065. "type": "git",
  6066. "url": "https://github.com/symfony/service-contracts.git",
  6067. "reference": "11bbf19a0fb7b36345861e85c5768844c552906e"
  6068. },
  6069. "dist": {
  6070. "type": "zip",
  6071. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/11bbf19a0fb7b36345861e85c5768844c552906e",
  6072. "reference": "11bbf19a0fb7b36345861e85c5768844c552906e",
  6073. "shasum": ""
  6074. },
  6075. "require": {
  6076. "php": ">=8.1",
  6077. "psr/container": "^1.1|^2.0"
  6078. },
  6079. "conflict": {
  6080. "ext-psr": "<1.1|>=2"
  6081. },
  6082. "type": "library",
  6083. "extra": {
  6084. "branch-alias": {
  6085. "dev-main": "3.4-dev"
  6086. },
  6087. "thanks": {
  6088. "name": "symfony/contracts",
  6089. "url": "https://github.com/symfony/contracts"
  6090. }
  6091. },
  6092. "autoload": {
  6093. "psr-4": {
  6094. "Symfony\\Contracts\\Service\\": ""
  6095. },
  6096. "exclude-from-classmap": [
  6097. "/Test/"
  6098. ]
  6099. },
  6100. "notification-url": "https://packagist.org/downloads/",
  6101. "license": [
  6102. "MIT"
  6103. ],
  6104. "authors": [
  6105. {
  6106. "name": "Nicolas Grekas",
  6107. "email": "[email protected]"
  6108. },
  6109. {
  6110. "name": "Symfony Community",
  6111. "homepage": "https://symfony.com/contributors"
  6112. }
  6113. ],
  6114. "description": "Generic abstractions related to writing services",
  6115. "homepage": "https://symfony.com",
  6116. "keywords": [
  6117. "abstractions",
  6118. "contracts",
  6119. "decoupling",
  6120. "interfaces",
  6121. "interoperability",
  6122. "standards"
  6123. ],
  6124. "support": {
  6125. "source": "https://github.com/symfony/service-contracts/tree/v3.4.2"
  6126. },
  6127. "funding": [
  6128. {
  6129. "url": "https://symfony.com/sponsor",
  6130. "type": "custom"
  6131. },
  6132. {
  6133. "url": "https://github.com/fabpot",
  6134. "type": "github"
  6135. },
  6136. {
  6137. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6138. "type": "tidelift"
  6139. }
  6140. ],
  6141. "time": "2023-12-19T21:51:00+00:00"
  6142. },
  6143. {
  6144. "name": "symfony/translation",
  6145. "version": "v7.0.4",
  6146. "source": {
  6147. "type": "git",
  6148. "url": "https://github.com/symfony/translation.git",
  6149. "reference": "5b75e872f7d135d7abb4613809fadc8d9f3d30a0"
  6150. },
  6151. "dist": {
  6152. "type": "zip",
  6153. "url": "https://api.github.com/repos/symfony/translation/zipball/5b75e872f7d135d7abb4613809fadc8d9f3d30a0",
  6154. "reference": "5b75e872f7d135d7abb4613809fadc8d9f3d30a0",
  6155. "shasum": ""
  6156. },
  6157. "require": {
  6158. "php": ">=8.2",
  6159. "symfony/polyfill-mbstring": "~1.0",
  6160. "symfony/translation-contracts": "^2.5|^3.0"
  6161. },
  6162. "conflict": {
  6163. "symfony/config": "<6.4",
  6164. "symfony/console": "<6.4",
  6165. "symfony/dependency-injection": "<6.4",
  6166. "symfony/http-client-contracts": "<2.5",
  6167. "symfony/http-kernel": "<6.4",
  6168. "symfony/service-contracts": "<2.5",
  6169. "symfony/twig-bundle": "<6.4",
  6170. "symfony/yaml": "<6.4"
  6171. },
  6172. "provide": {
  6173. "symfony/translation-implementation": "2.3|3.0"
  6174. },
  6175. "require-dev": {
  6176. "nikic/php-parser": "^4.18|^5.0",
  6177. "psr/log": "^1|^2|^3",
  6178. "symfony/config": "^6.4|^7.0",
  6179. "symfony/console": "^6.4|^7.0",
  6180. "symfony/dependency-injection": "^6.4|^7.0",
  6181. "symfony/finder": "^6.4|^7.0",
  6182. "symfony/http-client-contracts": "^2.5|^3.0",
  6183. "symfony/http-kernel": "^6.4|^7.0",
  6184. "symfony/intl": "^6.4|^7.0",
  6185. "symfony/polyfill-intl-icu": "^1.21",
  6186. "symfony/routing": "^6.4|^7.0",
  6187. "symfony/service-contracts": "^2.5|^3",
  6188. "symfony/yaml": "^6.4|^7.0"
  6189. },
  6190. "type": "library",
  6191. "autoload": {
  6192. "files": [
  6193. "Resources/functions.php"
  6194. ],
  6195. "psr-4": {
  6196. "Symfony\\Component\\Translation\\": ""
  6197. },
  6198. "exclude-from-classmap": [
  6199. "/Tests/"
  6200. ]
  6201. },
  6202. "notification-url": "https://packagist.org/downloads/",
  6203. "license": [
  6204. "MIT"
  6205. ],
  6206. "authors": [
  6207. {
  6208. "name": "Fabien Potencier",
  6209. "email": "[email protected]"
  6210. },
  6211. {
  6212. "name": "Symfony Community",
  6213. "homepage": "https://symfony.com/contributors"
  6214. }
  6215. ],
  6216. "description": "Provides tools to internationalize your application",
  6217. "homepage": "https://symfony.com",
  6218. "support": {
  6219. "source": "https://github.com/symfony/translation/tree/v7.0.4"
  6220. },
  6221. "funding": [
  6222. {
  6223. "url": "https://symfony.com/sponsor",
  6224. "type": "custom"
  6225. },
  6226. {
  6227. "url": "https://github.com/fabpot",
  6228. "type": "github"
  6229. },
  6230. {
  6231. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6232. "type": "tidelift"
  6233. }
  6234. ],
  6235. "time": "2024-02-22T20:27:20+00:00"
  6236. },
  6237. {
  6238. "name": "symfony/translation-contracts",
  6239. "version": "v3.4.2",
  6240. "source": {
  6241. "type": "git",
  6242. "url": "https://github.com/symfony/translation-contracts.git",
  6243. "reference": "43810bdb2ddb5400e5c5e778e27b210a0ca83b6b"
  6244. },
  6245. "dist": {
  6246. "type": "zip",
  6247. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/43810bdb2ddb5400e5c5e778e27b210a0ca83b6b",
  6248. "reference": "43810bdb2ddb5400e5c5e778e27b210a0ca83b6b",
  6249. "shasum": ""
  6250. },
  6251. "require": {
  6252. "php": ">=8.1"
  6253. },
  6254. "type": "library",
  6255. "extra": {
  6256. "branch-alias": {
  6257. "dev-main": "3.4-dev"
  6258. },
  6259. "thanks": {
  6260. "name": "symfony/contracts",
  6261. "url": "https://github.com/symfony/contracts"
  6262. }
  6263. },
  6264. "autoload": {
  6265. "psr-4": {
  6266. "Symfony\\Contracts\\Translation\\": ""
  6267. },
  6268. "exclude-from-classmap": [
  6269. "/Test/"
  6270. ]
  6271. },
  6272. "notification-url": "https://packagist.org/downloads/",
  6273. "license": [
  6274. "MIT"
  6275. ],
  6276. "authors": [
  6277. {
  6278. "name": "Nicolas Grekas",
  6279. "email": "[email protected]"
  6280. },
  6281. {
  6282. "name": "Symfony Community",
  6283. "homepage": "https://symfony.com/contributors"
  6284. }
  6285. ],
  6286. "description": "Generic abstractions related to translation",
  6287. "homepage": "https://symfony.com",
  6288. "keywords": [
  6289. "abstractions",
  6290. "contracts",
  6291. "decoupling",
  6292. "interfaces",
  6293. "interoperability",
  6294. "standards"
  6295. ],
  6296. "support": {
  6297. "source": "https://github.com/symfony/translation-contracts/tree/v3.4.2"
  6298. },
  6299. "funding": [
  6300. {
  6301. "url": "https://symfony.com/sponsor",
  6302. "type": "custom"
  6303. },
  6304. {
  6305. "url": "https://github.com/fabpot",
  6306. "type": "github"
  6307. },
  6308. {
  6309. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6310. "type": "tidelift"
  6311. }
  6312. ],
  6313. "time": "2024-01-23T14:51:35+00:00"
  6314. },
  6315. {
  6316. "name": "tronovav/geoip2-update",
  6317. "version": "v2.3.1",
  6318. "source": {
  6319. "type": "git",
  6320. "url": "https://github.com/tronovav/geoip2-update.git",
  6321. "reference": "86fddebc2bd277832846c8d6bb3b059fd093db06"
  6322. },
  6323. "dist": {
  6324. "type": "zip",
  6325. "url": "https://api.github.com/repos/tronovav/geoip2-update/zipball/86fddebc2bd277832846c8d6bb3b059fd093db06",
  6326. "reference": "86fddebc2bd277832846c8d6bb3b059fd093db06",
  6327. "shasum": ""
  6328. },
  6329. "require": {
  6330. "ext-curl": "*",
  6331. "ext-json": "*",
  6332. "php": ">=5.3"
  6333. },
  6334. "suggest": {
  6335. "ext-zip": "Required for updating the CSV databases."
  6336. },
  6337. "type": "library",
  6338. "autoload": {
  6339. "psr-4": {
  6340. "tronovav\\GeoIP2Update\\": "src/"
  6341. }
  6342. },
  6343. "notification-url": "https://packagist.org/downloads/",
  6344. "license": [
  6345. "MIT"
  6346. ],
  6347. "authors": [
  6348. {
  6349. "name": "Andrey Tronov",
  6350. "email": "[email protected]"
  6351. }
  6352. ],
  6353. "description": "Update GeoIP2/GeoLite2 databases from your script, program or via composer.",
  6354. "keywords": [
  6355. "geoip",
  6356. "geoip2",
  6357. "geolite2",
  6358. "geolocation",
  6359. "maxmind"
  6360. ],
  6361. "support": {
  6362. "email": "[email protected]",
  6363. "issues": "https://github.com/tronovav/geoip2-update/issues",
  6364. "source": "https://github.com/tronovav/geoip2-update/tree/v2.3.1"
  6365. },
  6366. "time": "2023-10-25T22:16:50+00:00"
  6367. },
  6368. {
  6369. "name": "twig/twig",
  6370. "version": "v3.9.3",
  6371. "source": {
  6372. "type": "git",
  6373. "url": "https://github.com/twigphp/Twig.git",
  6374. "reference": "a842d75fed59cdbcbd3a3ad7fb9eb768fc350d58"
  6375. },
  6376. "dist": {
  6377. "type": "zip",
  6378. "url": "https://api.github.com/repos/twigphp/Twig/zipball/a842d75fed59cdbcbd3a3ad7fb9eb768fc350d58",
  6379. "reference": "a842d75fed59cdbcbd3a3ad7fb9eb768fc350d58",
  6380. "shasum": ""
  6381. },
  6382. "require": {
  6383. "php": ">=7.2.5",
  6384. "symfony/deprecation-contracts": "^2.5|^3",
  6385. "symfony/polyfill-ctype": "^1.8",
  6386. "symfony/polyfill-mbstring": "^1.3",
  6387. "symfony/polyfill-php80": "^1.22"
  6388. },
  6389. "require-dev": {
  6390. "psr/container": "^1.0|^2.0",
  6391. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  6392. },
  6393. "type": "library",
  6394. "autoload": {
  6395. "files": [
  6396. "src/Resources/core.php",
  6397. "src/Resources/debug.php",
  6398. "src/Resources/escaper.php",
  6399. "src/Resources/string_loader.php"
  6400. ],
  6401. "psr-4": {
  6402. "Twig\\": "src/"
  6403. }
  6404. },
  6405. "notification-url": "https://packagist.org/downloads/",
  6406. "license": [
  6407. "BSD-3-Clause"
  6408. ],
  6409. "authors": [
  6410. {
  6411. "name": "Fabien Potencier",
  6412. "email": "[email protected]",
  6413. "homepage": "http://fabien.potencier.org",
  6414. "role": "Lead Developer"
  6415. },
  6416. {
  6417. "name": "Twig Team",
  6418. "role": "Contributors"
  6419. },
  6420. {
  6421. "name": "Armin Ronacher",
  6422. "email": "[email protected]",
  6423. "role": "Project Founder"
  6424. }
  6425. ],
  6426. "description": "Twig, the flexible, fast, and secure template language for PHP",
  6427. "homepage": "https://twig.symfony.com",
  6428. "keywords": [
  6429. "templating"
  6430. ],
  6431. "support": {
  6432. "issues": "https://github.com/twigphp/Twig/issues",
  6433. "source": "https://github.com/twigphp/Twig/tree/v3.9.3"
  6434. },
  6435. "funding": [
  6436. {
  6437. "url": "https://github.com/fabpot",
  6438. "type": "github"
  6439. },
  6440. {
  6441. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  6442. "type": "tidelift"
  6443. }
  6444. ],
  6445. "time": "2024-04-18T11:59:33+00:00"
  6446. },
  6447. {
  6448. "name": "vectorface/googleauthenticator",
  6449. "version": "v3.2",
  6450. "source": {
  6451. "type": "git",
  6452. "url": "https://github.com/Vectorface/GoogleAuthenticator.git",
  6453. "reference": "c98adc40a5a1df104693d16908de74b85e107a1d"
  6454. },
  6455. "dist": {
  6456. "type": "zip",
  6457. "url": "https://api.github.com/repos/Vectorface/GoogleAuthenticator/zipball/c98adc40a5a1df104693d16908de74b85e107a1d",
  6458. "reference": "c98adc40a5a1df104693d16908de74b85e107a1d",
  6459. "shasum": ""
  6460. },
  6461. "require": {
  6462. "endroid/qr-code": "^5.0.0",
  6463. "php": ">=8.1"
  6464. },
  6465. "require-dev": {
  6466. "phpunit/phpunit": "^9"
  6467. },
  6468. "type": "library",
  6469. "autoload": {
  6470. "psr-4": {
  6471. "Vectorface\\": "src/"
  6472. }
  6473. },
  6474. "notification-url": "https://packagist.org/downloads/",
  6475. "license": [
  6476. "BSD-2-Clause"
  6477. ],
  6478. "authors": [
  6479. {
  6480. "name": "Michael Kliewe",
  6481. "email": "[email protected]",
  6482. "homepage": "http://www.phpgangsta.de/",
  6483. "role": "Developer"
  6484. },
  6485. {
  6486. "name": "Francis Lavoie",
  6487. "email": "[email protected]",
  6488. "homepage": "http://vectorface.com/",
  6489. "role": "Developer"
  6490. }
  6491. ],
  6492. "description": "Google Authenticator 2-factor authentication",
  6493. "keywords": [
  6494. "googleauthenticator",
  6495. "rfc6238",
  6496. "totp"
  6497. ],
  6498. "support": {
  6499. "issues": "https://github.com/Vectorface/GoogleAuthenticator/issues",
  6500. "source": "https://github.com/Vectorface/GoogleAuthenticator"
  6501. },
  6502. "time": "2024-01-31T13:05:32+00:00"
  6503. },
  6504. {
  6505. "name": "voku/anti-xss",
  6506. "version": "4.1.42",
  6507. "source": {
  6508. "type": "git",
  6509. "url": "https://github.com/voku/anti-xss.git",
  6510. "reference": "bca1f8607e55a3c5077483615cd93bd8f11bd675"
  6511. },
  6512. "dist": {
  6513. "type": "zip",
  6514. "url": "https://api.github.com/repos/voku/anti-xss/zipball/bca1f8607e55a3c5077483615cd93bd8f11bd675",
  6515. "reference": "bca1f8607e55a3c5077483615cd93bd8f11bd675",
  6516. "shasum": ""
  6517. },
  6518. "require": {
  6519. "php": ">=7.0.0",
  6520. "voku/portable-utf8": "~6.0.2"
  6521. },
  6522. "require-dev": {
  6523. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  6524. },
  6525. "type": "library",
  6526. "extra": {
  6527. "branch-alias": {
  6528. "dev-master": "4.1.x-dev"
  6529. }
  6530. },
  6531. "autoload": {
  6532. "psr-4": {
  6533. "voku\\helper\\": "src/voku/helper/"
  6534. }
  6535. },
  6536. "notification-url": "https://packagist.org/downloads/",
  6537. "license": [
  6538. "MIT"
  6539. ],
  6540. "authors": [
  6541. {
  6542. "name": "EllisLab Dev Team",
  6543. "homepage": "http://ellislab.com/"
  6544. },
  6545. {
  6546. "name": "Lars Moelleken",
  6547. "email": "[email protected]",
  6548. "homepage": "https://www.moelleken.org/"
  6549. }
  6550. ],
  6551. "description": "anti xss-library",
  6552. "homepage": "https://github.com/voku/anti-xss",
  6553. "keywords": [
  6554. "anti-xss",
  6555. "clean",
  6556. "security",
  6557. "xss"
  6558. ],
  6559. "support": {
  6560. "issues": "https://github.com/voku/anti-xss/issues",
  6561. "source": "https://github.com/voku/anti-xss/tree/4.1.42"
  6562. },
  6563. "funding": [
  6564. {
  6565. "url": "https://www.paypal.me/moelleken",
  6566. "type": "custom"
  6567. },
  6568. {
  6569. "url": "https://github.com/voku",
  6570. "type": "github"
  6571. },
  6572. {
  6573. "url": "https://opencollective.com/anti-xss",
  6574. "type": "open_collective"
  6575. },
  6576. {
  6577. "url": "https://www.patreon.com/voku",
  6578. "type": "patreon"
  6579. },
  6580. {
  6581. "url": "https://tidelift.com/funding/github/packagist/voku/anti-xss",
  6582. "type": "tidelift"
  6583. }
  6584. ],
  6585. "time": "2023-07-03T14:40:46+00:00"
  6586. },
  6587. {
  6588. "name": "voku/portable-ascii",
  6589. "version": "2.0.1",
  6590. "source": {
  6591. "type": "git",
  6592. "url": "https://github.com/voku/portable-ascii.git",
  6593. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  6594. },
  6595. "dist": {
  6596. "type": "zip",
  6597. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  6598. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  6599. "shasum": ""
  6600. },
  6601. "require": {
  6602. "php": ">=7.0.0"
  6603. },
  6604. "require-dev": {
  6605. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  6606. },
  6607. "suggest": {
  6608. "ext-intl": "Use Intl for transliterator_transliterate() support"
  6609. },
  6610. "type": "library",
  6611. "autoload": {
  6612. "psr-4": {
  6613. "voku\\": "src/voku/"
  6614. }
  6615. },
  6616. "notification-url": "https://packagist.org/downloads/",
  6617. "license": [
  6618. "MIT"
  6619. ],
  6620. "authors": [
  6621. {
  6622. "name": "Lars Moelleken",
  6623. "homepage": "http://www.moelleken.org/"
  6624. }
  6625. ],
  6626. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  6627. "homepage": "https://github.com/voku/portable-ascii",
  6628. "keywords": [
  6629. "ascii",
  6630. "clean",
  6631. "php"
  6632. ],
  6633. "support": {
  6634. "issues": "https://github.com/voku/portable-ascii/issues",
  6635. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  6636. },
  6637. "funding": [
  6638. {
  6639. "url": "https://www.paypal.me/moelleken",
  6640. "type": "custom"
  6641. },
  6642. {
  6643. "url": "https://github.com/voku",
  6644. "type": "github"
  6645. },
  6646. {
  6647. "url": "https://opencollective.com/portable-ascii",
  6648. "type": "open_collective"
  6649. },
  6650. {
  6651. "url": "https://www.patreon.com/voku",
  6652. "type": "patreon"
  6653. },
  6654. {
  6655. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  6656. "type": "tidelift"
  6657. }
  6658. ],
  6659. "time": "2022-03-08T17:03:00+00:00"
  6660. },
  6661. {
  6662. "name": "voku/portable-utf8",
  6663. "version": "6.0.13",
  6664. "source": {
  6665. "type": "git",
  6666. "url": "https://github.com/voku/portable-utf8.git",
  6667. "reference": "b8ce36bf26593e5c2e81b1850ef0ffb299d2043f"
  6668. },
  6669. "dist": {
  6670. "type": "zip",
  6671. "url": "https://api.github.com/repos/voku/portable-utf8/zipball/b8ce36bf26593e5c2e81b1850ef0ffb299d2043f",
  6672. "reference": "b8ce36bf26593e5c2e81b1850ef0ffb299d2043f",
  6673. "shasum": ""
  6674. },
  6675. "require": {
  6676. "php": ">=7.0.0",
  6677. "symfony/polyfill-iconv": "~1.0",
  6678. "symfony/polyfill-intl-grapheme": "~1.0",
  6679. "symfony/polyfill-intl-normalizer": "~1.0",
  6680. "symfony/polyfill-mbstring": "~1.0",
  6681. "symfony/polyfill-php72": "~1.0",
  6682. "voku/portable-ascii": "~2.0.0"
  6683. },
  6684. "require-dev": {
  6685. "phpstan/phpstan": "1.9.*@dev",
  6686. "phpstan/phpstan-strict-rules": "1.4.*@dev",
  6687. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0",
  6688. "thecodingmachine/phpstan-strict-rules": "1.0.*@dev",
  6689. "voku/phpstan-rules": "3.1.*@dev"
  6690. },
  6691. "suggest": {
  6692. "ext-ctype": "Use Ctype for e.g. hexadecimal digit detection",
  6693. "ext-fileinfo": "Use Fileinfo for better binary file detection",
  6694. "ext-iconv": "Use iconv for best performance",
  6695. "ext-intl": "Use Intl for best performance",
  6696. "ext-json": "Use JSON for string detection",
  6697. "ext-mbstring": "Use Mbstring for best performance"
  6698. },
  6699. "type": "library",
  6700. "autoload": {
  6701. "files": [
  6702. "bootstrap.php"
  6703. ],
  6704. "psr-4": {
  6705. "voku\\": "src/voku/"
  6706. }
  6707. },
  6708. "notification-url": "https://packagist.org/downloads/",
  6709. "license": [
  6710. "(Apache-2.0 or GPL-2.0)"
  6711. ],
  6712. "authors": [
  6713. {
  6714. "name": "Nicolas Grekas",
  6715. "email": "[email protected]"
  6716. },
  6717. {
  6718. "name": "Hamid Sarfraz",
  6719. "homepage": "http://pageconfig.com/"
  6720. },
  6721. {
  6722. "name": "Lars Moelleken",
  6723. "homepage": "http://www.moelleken.org/"
  6724. }
  6725. ],
  6726. "description": "Portable UTF-8 library - performance optimized (unicode) string functions for php.",
  6727. "homepage": "https://github.com/voku/portable-utf8",
  6728. "keywords": [
  6729. "UTF",
  6730. "clean",
  6731. "php",
  6732. "unicode",
  6733. "utf-8",
  6734. "utf8"
  6735. ],
  6736. "support": {
  6737. "issues": "https://github.com/voku/portable-utf8/issues",
  6738. "source": "https://github.com/voku/portable-utf8/tree/6.0.13"
  6739. },
  6740. "funding": [
  6741. {
  6742. "url": "https://www.paypal.me/moelleken",
  6743. "type": "custom"
  6744. },
  6745. {
  6746. "url": "https://github.com/voku",
  6747. "type": "github"
  6748. },
  6749. {
  6750. "url": "https://opencollective.com/portable-utf8",
  6751. "type": "open_collective"
  6752. },
  6753. {
  6754. "url": "https://www.patreon.com/voku",
  6755. "type": "patreon"
  6756. },
  6757. {
  6758. "url": "https://tidelift.com/funding/github/packagist/voku/portable-utf8",
  6759. "type": "tidelift"
  6760. }
  6761. ],
  6762. "time": "2023-03-08T08:35:38+00:00"
  6763. },
  6764. {
  6765. "name": "webmozart/assert",
  6766. "version": "1.11.0",
  6767. "source": {
  6768. "type": "git",
  6769. "url": "https://github.com/webmozarts/assert.git",
  6770. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  6771. },
  6772. "dist": {
  6773. "type": "zip",
  6774. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  6775. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  6776. "shasum": ""
  6777. },
  6778. "require": {
  6779. "ext-ctype": "*",
  6780. "php": "^7.2 || ^8.0"
  6781. },
  6782. "conflict": {
  6783. "phpstan/phpstan": "<0.12.20",
  6784. "vimeo/psalm": "<4.6.1 || 4.6.2"
  6785. },
  6786. "require-dev": {
  6787. "phpunit/phpunit": "^8.5.13"
  6788. },
  6789. "type": "library",
  6790. "extra": {
  6791. "branch-alias": {
  6792. "dev-master": "1.10-dev"
  6793. }
  6794. },
  6795. "autoload": {
  6796. "psr-4": {
  6797. "Webmozart\\Assert\\": "src/"
  6798. }
  6799. },
  6800. "notification-url": "https://packagist.org/downloads/",
  6801. "license": [
  6802. "MIT"
  6803. ],
  6804. "authors": [
  6805. {
  6806. "name": "Bernhard Schussek",
  6807. "email": "[email protected]"
  6808. }
  6809. ],
  6810. "description": "Assertions to validate method input/output with nice error messages.",
  6811. "keywords": [
  6812. "assert",
  6813. "check",
  6814. "validate"
  6815. ],
  6816. "support": {
  6817. "issues": "https://github.com/webmozarts/assert/issues",
  6818. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  6819. },
  6820. "time": "2022-06-03T18:03:27+00:00"
  6821. }
  6822. ],
  6823. "packages-dev": [
  6824. {
  6825. "name": "cmgmyr/phploc",
  6826. "version": "8.0.3",
  6827. "source": {
  6828. "type": "git",
  6829. "url": "https://github.com/cmgmyr/phploc.git",
  6830. "reference": "e61d4729df46c5920ab61973bfa3f70f81a70b5f"
  6831. },
  6832. "dist": {
  6833. "type": "zip",
  6834. "url": "https://api.github.com/repos/cmgmyr/phploc/zipball/e61d4729df46c5920ab61973bfa3f70f81a70b5f",
  6835. "reference": "e61d4729df46c5920ab61973bfa3f70f81a70b5f",
  6836. "shasum": ""
  6837. },
  6838. "require": {
  6839. "ext-dom": "*",
  6840. "ext-json": "*",
  6841. "php": "^7.4 || ^8.0",
  6842. "phpunit/php-file-iterator": "^3.0|^4.0",
  6843. "sebastian/cli-parser": "^1.0|^2.0"
  6844. },
  6845. "require-dev": {
  6846. "friendsofphp/php-cs-fixer": "^3.2",
  6847. "phpunit/phpunit": "^9.0|^10.0",
  6848. "vimeo/psalm": "^5.7"
  6849. },
  6850. "bin": [
  6851. "phploc"
  6852. ],
  6853. "type": "library",
  6854. "extra": {
  6855. "branch-alias": {
  6856. "dev-main": "8.0-dev"
  6857. }
  6858. },
  6859. "autoload": {
  6860. "classmap": [
  6861. "src/"
  6862. ]
  6863. },
  6864. "notification-url": "https://packagist.org/downloads/",
  6865. "license": [
  6866. "BSD-3-Clause"
  6867. ],
  6868. "authors": [
  6869. {
  6870. "name": "Chris Gmyr",
  6871. "email": "[email protected]",
  6872. "role": "lead"
  6873. }
  6874. ],
  6875. "description": "A tool for quickly measuring the size of a PHP project.",
  6876. "homepage": "https://github.com/cmgmyr/phploc",
  6877. "support": {
  6878. "issues": "https://github.com/cmgmyr/phploc/issues",
  6879. "source": "https://github.com/cmgmyr/phploc/tree/8.0.3"
  6880. },
  6881. "funding": [
  6882. {
  6883. "url": "https://github.com/cmgmyr",
  6884. "type": "github"
  6885. }
  6886. ],
  6887. "time": "2023-08-05T16:49:39+00:00"
  6888. },
  6889. {
  6890. "name": "composer/pcre",
  6891. "version": "3.1.3",
  6892. "source": {
  6893. "type": "git",
  6894. "url": "https://github.com/composer/pcre.git",
  6895. "reference": "5b16e25a5355f1f3afdfc2f954a0a80aec4826a8"
  6896. },
  6897. "dist": {
  6898. "type": "zip",
  6899. "url": "https://api.github.com/repos/composer/pcre/zipball/5b16e25a5355f1f3afdfc2f954a0a80aec4826a8",
  6900. "reference": "5b16e25a5355f1f3afdfc2f954a0a80aec4826a8",
  6901. "shasum": ""
  6902. },
  6903. "require": {
  6904. "php": "^7.4 || ^8.0"
  6905. },
  6906. "require-dev": {
  6907. "phpstan/phpstan": "^1.3",
  6908. "phpstan/phpstan-strict-rules": "^1.1",
  6909. "symfony/phpunit-bridge": "^5"
  6910. },
  6911. "type": "library",
  6912. "extra": {
  6913. "branch-alias": {
  6914. "dev-main": "3.x-dev"
  6915. }
  6916. },
  6917. "autoload": {
  6918. "psr-4": {
  6919. "Composer\\Pcre\\": "src"
  6920. }
  6921. },
  6922. "notification-url": "https://packagist.org/downloads/",
  6923. "license": [
  6924. "MIT"
  6925. ],
  6926. "authors": [
  6927. {
  6928. "name": "Jordi Boggiano",
  6929. "email": "[email protected]",
  6930. "homepage": "http://seld.be"
  6931. }
  6932. ],
  6933. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  6934. "keywords": [
  6935. "PCRE",
  6936. "preg",
  6937. "regex",
  6938. "regular expression"
  6939. ],
  6940. "support": {
  6941. "issues": "https://github.com/composer/pcre/issues",
  6942. "source": "https://github.com/composer/pcre/tree/3.1.3"
  6943. },
  6944. "funding": [
  6945. {
  6946. "url": "https://packagist.com",
  6947. "type": "custom"
  6948. },
  6949. {
  6950. "url": "https://github.com/composer",
  6951. "type": "github"
  6952. },
  6953. {
  6954. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6955. "type": "tidelift"
  6956. }
  6957. ],
  6958. "time": "2024-03-19T10:26:25+00:00"
  6959. },
  6960. {
  6961. "name": "composer/semver",
  6962. "version": "3.4.0",
  6963. "source": {
  6964. "type": "git",
  6965. "url": "https://github.com/composer/semver.git",
  6966. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  6967. },
  6968. "dist": {
  6969. "type": "zip",
  6970. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  6971. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  6972. "shasum": ""
  6973. },
  6974. "require": {
  6975. "php": "^5.3.2 || ^7.0 || ^8.0"
  6976. },
  6977. "require-dev": {
  6978. "phpstan/phpstan": "^1.4",
  6979. "symfony/phpunit-bridge": "^4.2 || ^5"
  6980. },
  6981. "type": "library",
  6982. "extra": {
  6983. "branch-alias": {
  6984. "dev-main": "3.x-dev"
  6985. }
  6986. },
  6987. "autoload": {
  6988. "psr-4": {
  6989. "Composer\\Semver\\": "src"
  6990. }
  6991. },
  6992. "notification-url": "https://packagist.org/downloads/",
  6993. "license": [
  6994. "MIT"
  6995. ],
  6996. "authors": [
  6997. {
  6998. "name": "Nils Adermann",
  6999. "email": "[email protected]",
  7000. "homepage": "http://www.naderman.de"
  7001. },
  7002. {
  7003. "name": "Jordi Boggiano",
  7004. "email": "[email protected]",
  7005. "homepage": "http://seld.be"
  7006. },
  7007. {
  7008. "name": "Rob Bast",
  7009. "email": "[email protected]",
  7010. "homepage": "http://robbast.nl"
  7011. }
  7012. ],
  7013. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  7014. "keywords": [
  7015. "semantic",
  7016. "semver",
  7017. "validation",
  7018. "versioning"
  7019. ],
  7020. "support": {
  7021. "irc": "ircs://irc.libera.chat:6697/composer",
  7022. "issues": "https://github.com/composer/semver/issues",
  7023. "source": "https://github.com/composer/semver/tree/3.4.0"
  7024. },
  7025. "funding": [
  7026. {
  7027. "url": "https://packagist.com",
  7028. "type": "custom"
  7029. },
  7030. {
  7031. "url": "https://github.com/composer",
  7032. "type": "github"
  7033. },
  7034. {
  7035. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7036. "type": "tidelift"
  7037. }
  7038. ],
  7039. "time": "2023-08-31T09:50:34+00:00"
  7040. },
  7041. {
  7042. "name": "composer/xdebug-handler",
  7043. "version": "3.0.4",
  7044. "source": {
  7045. "type": "git",
  7046. "url": "https://github.com/composer/xdebug-handler.git",
  7047. "reference": "4f988f8fdf580d53bdb2d1278fe93d1ed5462255"
  7048. },
  7049. "dist": {
  7050. "type": "zip",
  7051. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/4f988f8fdf580d53bdb2d1278fe93d1ed5462255",
  7052. "reference": "4f988f8fdf580d53bdb2d1278fe93d1ed5462255",
  7053. "shasum": ""
  7054. },
  7055. "require": {
  7056. "composer/pcre": "^1 || ^2 || ^3",
  7057. "php": "^7.2.5 || ^8.0",
  7058. "psr/log": "^1 || ^2 || ^3"
  7059. },
  7060. "require-dev": {
  7061. "phpstan/phpstan": "^1.0",
  7062. "phpstan/phpstan-strict-rules": "^1.1",
  7063. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  7064. },
  7065. "type": "library",
  7066. "autoload": {
  7067. "psr-4": {
  7068. "Composer\\XdebugHandler\\": "src"
  7069. }
  7070. },
  7071. "notification-url": "https://packagist.org/downloads/",
  7072. "license": [
  7073. "MIT"
  7074. ],
  7075. "authors": [
  7076. {
  7077. "name": "John Stevenson",
  7078. "email": "[email protected]"
  7079. }
  7080. ],
  7081. "description": "Restarts a process without Xdebug.",
  7082. "keywords": [
  7083. "Xdebug",
  7084. "performance"
  7085. ],
  7086. "support": {
  7087. "irc": "ircs://irc.libera.chat:6697/composer",
  7088. "issues": "https://github.com/composer/xdebug-handler/issues",
  7089. "source": "https://github.com/composer/xdebug-handler/tree/3.0.4"
  7090. },
  7091. "funding": [
  7092. {
  7093. "url": "https://packagist.com",
  7094. "type": "custom"
  7095. },
  7096. {
  7097. "url": "https://github.com/composer",
  7098. "type": "github"
  7099. },
  7100. {
  7101. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7102. "type": "tidelift"
  7103. }
  7104. ],
  7105. "time": "2024-03-26T18:29:49+00:00"
  7106. },
  7107. {
  7108. "name": "dealerdirect/phpcodesniffer-composer-installer",
  7109. "version": "v1.0.0",
  7110. "source": {
  7111. "type": "git",
  7112. "url": "https://github.com/PHPCSStandards/composer-installer.git",
  7113. "reference": "4be43904336affa5c2f70744a348312336afd0da"
  7114. },
  7115. "dist": {
  7116. "type": "zip",
  7117. "url": "https://api.github.com/repos/PHPCSStandards/composer-installer/zipball/4be43904336affa5c2f70744a348312336afd0da",
  7118. "reference": "4be43904336affa5c2f70744a348312336afd0da",
  7119. "shasum": ""
  7120. },
  7121. "require": {
  7122. "composer-plugin-api": "^1.0 || ^2.0",
  7123. "php": ">=5.4",
  7124. "squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0"
  7125. },
  7126. "require-dev": {
  7127. "composer/composer": "*",
  7128. "ext-json": "*",
  7129. "ext-zip": "*",
  7130. "php-parallel-lint/php-parallel-lint": "^1.3.1",
  7131. "phpcompatibility/php-compatibility": "^9.0",
  7132. "yoast/phpunit-polyfills": "^1.0"
  7133. },
  7134. "type": "composer-plugin",
  7135. "extra": {
  7136. "class": "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
  7137. },
  7138. "autoload": {
  7139. "psr-4": {
  7140. "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
  7141. }
  7142. },
  7143. "notification-url": "https://packagist.org/downloads/",
  7144. "license": [
  7145. "MIT"
  7146. ],
  7147. "authors": [
  7148. {
  7149. "name": "Franck Nijhof",
  7150. "email": "[email protected]",
  7151. "homepage": "http://www.frenck.nl",
  7152. "role": "Developer / IT Manager"
  7153. },
  7154. {
  7155. "name": "Contributors",
  7156. "homepage": "https://github.com/PHPCSStandards/composer-installer/graphs/contributors"
  7157. }
  7158. ],
  7159. "description": "PHP_CodeSniffer Standards Composer Installer Plugin",
  7160. "homepage": "http://www.dealerdirect.com",
  7161. "keywords": [
  7162. "PHPCodeSniffer",
  7163. "PHP_CodeSniffer",
  7164. "code quality",
  7165. "codesniffer",
  7166. "composer",
  7167. "installer",
  7168. "phpcbf",
  7169. "phpcs",
  7170. "plugin",
  7171. "qa",
  7172. "quality",
  7173. "standard",
  7174. "standards",
  7175. "style guide",
  7176. "stylecheck",
  7177. "tests"
  7178. ],
  7179. "support": {
  7180. "issues": "https://github.com/PHPCSStandards/composer-installer/issues",
  7181. "source": "https://github.com/PHPCSStandards/composer-installer"
  7182. },
  7183. "time": "2023-01-05T11:28:13+00:00"
  7184. },
  7185. {
  7186. "name": "dg/bypass-finals",
  7187. "version": "v1.6.0",
  7188. "source": {
  7189. "type": "git",
  7190. "url": "https://github.com/dg/bypass-finals.git",
  7191. "reference": "efe2fe04bae9f0de271dd462afc049067889e6d1"
  7192. },
  7193. "dist": {
  7194. "type": "zip",
  7195. "url": "https://api.github.com/repos/dg/bypass-finals/zipball/efe2fe04bae9f0de271dd462afc049067889e6d1",
  7196. "reference": "efe2fe04bae9f0de271dd462afc049067889e6d1",
  7197. "shasum": ""
  7198. },
  7199. "require": {
  7200. "php": ">=7.1"
  7201. },
  7202. "require-dev": {
  7203. "nette/tester": "^2.3",
  7204. "phpstan/phpstan": "^0.12"
  7205. },
  7206. "type": "library",
  7207. "autoload": {
  7208. "classmap": [
  7209. "src/"
  7210. ]
  7211. },
  7212. "notification-url": "https://packagist.org/downloads/",
  7213. "license": [
  7214. "BSD-3-Clause",
  7215. "GPL-2.0",
  7216. "GPL-3.0"
  7217. ],
  7218. "authors": [
  7219. {
  7220. "name": "David Grudl",
  7221. "homepage": "https://davidgrudl.com"
  7222. }
  7223. ],
  7224. "description": "Removes final keyword from source code on-the-fly and allows mocking of final methods and classes",
  7225. "keywords": [
  7226. "finals",
  7227. "mocking",
  7228. "phpunit",
  7229. "testing",
  7230. "unit"
  7231. ],
  7232. "support": {
  7233. "issues": "https://github.com/dg/bypass-finals/issues",
  7234. "source": "https://github.com/dg/bypass-finals/tree/v1.6.0"
  7235. },
  7236. "time": "2023-11-19T22:19:30+00:00"
  7237. },
  7238. {
  7239. "name": "friendsofphp/php-cs-fixer",
  7240. "version": "v3.54.0",
  7241. "source": {
  7242. "type": "git",
  7243. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  7244. "reference": "2aecbc8640d7906c38777b3dcab6f4ca79004d08"
  7245. },
  7246. "dist": {
  7247. "type": "zip",
  7248. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/2aecbc8640d7906c38777b3dcab6f4ca79004d08",
  7249. "reference": "2aecbc8640d7906c38777b3dcab6f4ca79004d08",
  7250. "shasum": ""
  7251. },
  7252. "require": {
  7253. "composer/semver": "^3.4",
  7254. "composer/xdebug-handler": "^3.0.3",
  7255. "ext-filter": "*",
  7256. "ext-json": "*",
  7257. "ext-tokenizer": "*",
  7258. "php": "^7.4 || ^8.0",
  7259. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  7260. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  7261. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  7262. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  7263. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  7264. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  7265. "symfony/polyfill-mbstring": "^1.28",
  7266. "symfony/polyfill-php80": "^1.28",
  7267. "symfony/polyfill-php81": "^1.28",
  7268. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  7269. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  7270. },
  7271. "require-dev": {
  7272. "facile-it/paraunit": "^1.3 || ^2.0",
  7273. "infection/infection": "^0.27.11",
  7274. "justinrainbow/json-schema": "^5.2",
  7275. "keradus/cli-executor": "^2.1",
  7276. "mikey179/vfsstream": "^1.6.11",
  7277. "php-coveralls/php-coveralls": "^2.7",
  7278. "php-cs-fixer/accessible-object": "^1.1",
  7279. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.4",
  7280. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.4",
  7281. "phpunit/phpunit": "^9.6 || ^10.5.5 || ^11.0.2",
  7282. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  7283. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  7284. },
  7285. "suggest": {
  7286. "ext-dom": "For handling output formats in XML",
  7287. "ext-mbstring": "For handling non-UTF8 characters."
  7288. },
  7289. "bin": [
  7290. "php-cs-fixer"
  7291. ],
  7292. "type": "application",
  7293. "autoload": {
  7294. "psr-4": {
  7295. "PhpCsFixer\\": "src/"
  7296. }
  7297. },
  7298. "notification-url": "https://packagist.org/downloads/",
  7299. "license": [
  7300. "MIT"
  7301. ],
  7302. "authors": [
  7303. {
  7304. "name": "Fabien Potencier",
  7305. "email": "[email protected]"
  7306. },
  7307. {
  7308. "name": "Dariusz Rumiński",
  7309. "email": "[email protected]"
  7310. }
  7311. ],
  7312. "description": "A tool to automatically fix PHP code style",
  7313. "keywords": [
  7314. "Static code analysis",
  7315. "fixer",
  7316. "standards",
  7317. "static analysis"
  7318. ],
  7319. "support": {
  7320. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  7321. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.54.0"
  7322. },
  7323. "funding": [
  7324. {
  7325. "url": "https://github.com/keradus",
  7326. "type": "github"
  7327. }
  7328. ],
  7329. "time": "2024-04-17T08:12:13+00:00"
  7330. },
  7331. {
  7332. "name": "justinrainbow/json-schema",
  7333. "version": "v5.2.13",
  7334. "source": {
  7335. "type": "git",
  7336. "url": "https://github.com/justinrainbow/json-schema.git",
  7337. "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793"
  7338. },
  7339. "dist": {
  7340. "type": "zip",
  7341. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/fbbe7e5d79f618997bc3332a6f49246036c45793",
  7342. "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793",
  7343. "shasum": ""
  7344. },
  7345. "require": {
  7346. "php": ">=5.3.3"
  7347. },
  7348. "require-dev": {
  7349. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  7350. "json-schema/json-schema-test-suite": "1.2.0",
  7351. "phpunit/phpunit": "^4.8.35"
  7352. },
  7353. "bin": [
  7354. "bin/validate-json"
  7355. ],
  7356. "type": "library",
  7357. "extra": {
  7358. "branch-alias": {
  7359. "dev-master": "5.0.x-dev"
  7360. }
  7361. },
  7362. "autoload": {
  7363. "psr-4": {
  7364. "JsonSchema\\": "src/JsonSchema/"
  7365. }
  7366. },
  7367. "notification-url": "https://packagist.org/downloads/",
  7368. "license": [
  7369. "MIT"
  7370. ],
  7371. "authors": [
  7372. {
  7373. "name": "Bruno Prieto Reis",
  7374. "email": "[email protected]"
  7375. },
  7376. {
  7377. "name": "Justin Rainbow",
  7378. "email": "[email protected]"
  7379. },
  7380. {
  7381. "name": "Igor Wiedler",
  7382. "email": "[email protected]"
  7383. },
  7384. {
  7385. "name": "Robert Schönthal",
  7386. "email": "[email protected]"
  7387. }
  7388. ],
  7389. "description": "A library to validate a json schema.",
  7390. "homepage": "https://github.com/justinrainbow/json-schema",
  7391. "keywords": [
  7392. "json",
  7393. "schema"
  7394. ],
  7395. "support": {
  7396. "issues": "https://github.com/justinrainbow/json-schema/issues",
  7397. "source": "https://github.com/justinrainbow/json-schema/tree/v5.2.13"
  7398. },
  7399. "time": "2023-09-26T02:20:38+00:00"
  7400. },
  7401. {
  7402. "name": "league/container",
  7403. "version": "4.2.2",
  7404. "source": {
  7405. "type": "git",
  7406. "url": "https://github.com/thephpleague/container.git",
  7407. "reference": "ff346319ca1ff0e78277dc2311a42107cc1aab88"
  7408. },
  7409. "dist": {
  7410. "type": "zip",
  7411. "url": "https://api.github.com/repos/thephpleague/container/zipball/ff346319ca1ff0e78277dc2311a42107cc1aab88",
  7412. "reference": "ff346319ca1ff0e78277dc2311a42107cc1aab88",
  7413. "shasum": ""
  7414. },
  7415. "require": {
  7416. "php": "^7.2 || ^8.0",
  7417. "psr/container": "^1.1 || ^2.0"
  7418. },
  7419. "provide": {
  7420. "psr/container-implementation": "^1.0"
  7421. },
  7422. "replace": {
  7423. "orno/di": "~2.0"
  7424. },
  7425. "require-dev": {
  7426. "nette/php-generator": "^3.4",
  7427. "nikic/php-parser": "^4.10",
  7428. "phpstan/phpstan": "^0.12.47",
  7429. "phpunit/phpunit": "^8.5.17",
  7430. "roave/security-advisories": "dev-latest",
  7431. "scrutinizer/ocular": "^1.8",
  7432. "squizlabs/php_codesniffer": "^3.6"
  7433. },
  7434. "type": "library",
  7435. "extra": {
  7436. "branch-alias": {
  7437. "dev-master": "4.x-dev",
  7438. "dev-4.x": "4.x-dev",
  7439. "dev-3.x": "3.x-dev",
  7440. "dev-2.x": "2.x-dev",
  7441. "dev-1.x": "1.x-dev"
  7442. }
  7443. },
  7444. "autoload": {
  7445. "psr-4": {
  7446. "League\\Container\\": "src"
  7447. }
  7448. },
  7449. "notification-url": "https://packagist.org/downloads/",
  7450. "license": [
  7451. "MIT"
  7452. ],
  7453. "authors": [
  7454. {
  7455. "name": "Phil Bennett",
  7456. "email": "[email protected]",
  7457. "role": "Developer"
  7458. }
  7459. ],
  7460. "description": "A fast and intuitive dependency injection container.",
  7461. "homepage": "https://github.com/thephpleague/container",
  7462. "keywords": [
  7463. "container",
  7464. "dependency",
  7465. "di",
  7466. "injection",
  7467. "league",
  7468. "provider",
  7469. "service"
  7470. ],
  7471. "support": {
  7472. "issues": "https://github.com/thephpleague/container/issues",
  7473. "source": "https://github.com/thephpleague/container/tree/4.2.2"
  7474. },
  7475. "funding": [
  7476. {
  7477. "url": "https://github.com/philipobenito",
  7478. "type": "github"
  7479. }
  7480. ],
  7481. "time": "2024-03-13T13:12:53+00:00"
  7482. },
  7483. {
  7484. "name": "myclabs/deep-copy",
  7485. "version": "1.11.1",
  7486. "source": {
  7487. "type": "git",
  7488. "url": "https://github.com/myclabs/DeepCopy.git",
  7489. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  7490. },
  7491. "dist": {
  7492. "type": "zip",
  7493. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  7494. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  7495. "shasum": ""
  7496. },
  7497. "require": {
  7498. "php": "^7.1 || ^8.0"
  7499. },
  7500. "conflict": {
  7501. "doctrine/collections": "<1.6.8",
  7502. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  7503. },
  7504. "require-dev": {
  7505. "doctrine/collections": "^1.6.8",
  7506. "doctrine/common": "^2.13.3 || ^3.2.2",
  7507. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7508. },
  7509. "type": "library",
  7510. "autoload": {
  7511. "files": [
  7512. "src/DeepCopy/deep_copy.php"
  7513. ],
  7514. "psr-4": {
  7515. "DeepCopy\\": "src/DeepCopy/"
  7516. }
  7517. },
  7518. "notification-url": "https://packagist.org/downloads/",
  7519. "license": [
  7520. "MIT"
  7521. ],
  7522. "description": "Create deep copies (clones) of your objects",
  7523. "keywords": [
  7524. "clone",
  7525. "copy",
  7526. "duplicate",
  7527. "object",
  7528. "object graph"
  7529. ],
  7530. "support": {
  7531. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7532. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  7533. },
  7534. "funding": [
  7535. {
  7536. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7537. "type": "tidelift"
  7538. }
  7539. ],
  7540. "time": "2023-03-08T13:26:56+00:00"
  7541. },
  7542. {
  7543. "name": "nikic/php-parser",
  7544. "version": "v5.0.2",
  7545. "source": {
  7546. "type": "git",
  7547. "url": "https://github.com/nikic/PHP-Parser.git",
  7548. "reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13"
  7549. },
  7550. "dist": {
  7551. "type": "zip",
  7552. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/139676794dc1e9231bf7bcd123cfc0c99182cb13",
  7553. "reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13",
  7554. "shasum": ""
  7555. },
  7556. "require": {
  7557. "ext-ctype": "*",
  7558. "ext-json": "*",
  7559. "ext-tokenizer": "*",
  7560. "php": ">=7.4"
  7561. },
  7562. "require-dev": {
  7563. "ircmaxell/php-yacc": "^0.0.7",
  7564. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  7565. },
  7566. "bin": [
  7567. "bin/php-parse"
  7568. ],
  7569. "type": "library",
  7570. "extra": {
  7571. "branch-alias": {
  7572. "dev-master": "5.0-dev"
  7573. }
  7574. },
  7575. "autoload": {
  7576. "psr-4": {
  7577. "PhpParser\\": "lib/PhpParser"
  7578. }
  7579. },
  7580. "notification-url": "https://packagist.org/downloads/",
  7581. "license": [
  7582. "BSD-3-Clause"
  7583. ],
  7584. "authors": [
  7585. {
  7586. "name": "Nikita Popov"
  7587. }
  7588. ],
  7589. "description": "A PHP parser written in PHP",
  7590. "keywords": [
  7591. "parser",
  7592. "php"
  7593. ],
  7594. "support": {
  7595. "issues": "https://github.com/nikic/PHP-Parser/issues",
  7596. "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.2"
  7597. },
  7598. "time": "2024-03-05T20:51:40+00:00"
  7599. },
  7600. {
  7601. "name": "nunomaduro/phpinsights",
  7602. "version": "v2.11.0",
  7603. "source": {
  7604. "type": "git",
  7605. "url": "https://github.com/nunomaduro/phpinsights.git",
  7606. "reference": "f476219759a61aad988641476259465c77203383"
  7607. },
  7608. "dist": {
  7609. "type": "zip",
  7610. "url": "https://api.github.com/repos/nunomaduro/phpinsights/zipball/f476219759a61aad988641476259465c77203383",
  7611. "reference": "f476219759a61aad988641476259465c77203383",
  7612. "shasum": ""
  7613. },
  7614. "require": {
  7615. "cmgmyr/phploc": "^8.0.3",
  7616. "composer/semver": "^3.4",
  7617. "ext-iconv": "*",
  7618. "ext-json": "*",
  7619. "ext-mbstring": "*",
  7620. "ext-tokenizer": "*",
  7621. "friendsofphp/php-cs-fixer": "^3.40.0",
  7622. "justinrainbow/json-schema": "^5.2.13",
  7623. "league/container": "^3.2|^4.2",
  7624. "php": "^7.4|^8.0",
  7625. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  7626. "psr/container": "^1.0|^2.0.2",
  7627. "psr/simple-cache": "^1.0|^2.0|^3.0",
  7628. "sebastian/diff": "^4.0|^5.0.3",
  7629. "slevomat/coding-standard": "^8.14.1",
  7630. "squizlabs/php_codesniffer": "^3.7.2",
  7631. "symfony/cache": "^5.4|^6.0|^7.0",
  7632. "symfony/console": "^5.4|^6.4|^7.0",
  7633. "symfony/finder": "^5.4|^6.0|^7.0",
  7634. "symfony/http-client": "^5.4|^6.0|^7.0",
  7635. "symfony/process": "^5.4|^6.4|^7.0"
  7636. },
  7637. "require-dev": {
  7638. "ergebnis/phpstan-rules": "^0.15.3",
  7639. "illuminate/console": "^5.8|^6.0|^7.0|^8.0|^9.20|^10.0",
  7640. "illuminate/support": "^5.8|^6.0|^7.0|^8.0|^9.52.16|^10.0",
  7641. "mockery/mockery": "^1.6.6",
  7642. "phpstan/phpstan-strict-rules": "^0.12.11",
  7643. "phpunit/phpunit": "^8.0|^9.0|^10.4.2",
  7644. "rector/rector": "0.11.56",
  7645. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  7646. "thecodingmachine/phpstan-strict-rules": "^0.12.2"
  7647. },
  7648. "suggest": {
  7649. "ext-simplexml": "It is needed for the checkstyle formatter"
  7650. },
  7651. "bin": [
  7652. "bin/phpinsights"
  7653. ],
  7654. "type": "library",
  7655. "extra": {
  7656. "laravel": {
  7657. "providers": [
  7658. "NunoMaduro\\PhpInsights\\Application\\Adapters\\Laravel\\InsightsServiceProvider"
  7659. ]
  7660. }
  7661. },
  7662. "autoload": {
  7663. "psr-4": {
  7664. "NunoMaduro\\PhpInsights\\": "src"
  7665. }
  7666. },
  7667. "notification-url": "https://packagist.org/downloads/",
  7668. "license": [
  7669. "MIT"
  7670. ],
  7671. "authors": [
  7672. {
  7673. "name": "Nuno Maduro",
  7674. "email": "[email protected]"
  7675. }
  7676. ],
  7677. "description": "Instant PHP quality checks from your console.",
  7678. "keywords": [
  7679. "Insights",
  7680. "code",
  7681. "console",
  7682. "php",
  7683. "quality",
  7684. "source"
  7685. ],
  7686. "support": {
  7687. "issues": "https://github.com/nunomaduro/phpinsights/issues",
  7688. "source": "https://github.com/nunomaduro/phpinsights/tree/v2.11.0"
  7689. },
  7690. "funding": [
  7691. {
  7692. "url": "https://github.com/JustSteveKing",
  7693. "type": "github"
  7694. },
  7695. {
  7696. "url": "https://github.com/cmgmyr",
  7697. "type": "github"
  7698. },
  7699. {
  7700. "url": "https://github.com/nunomaduro",
  7701. "type": "github"
  7702. }
  7703. ],
  7704. "time": "2023-11-30T10:54:50+00:00"
  7705. },
  7706. {
  7707. "name": "phar-io/manifest",
  7708. "version": "2.0.4",
  7709. "source": {
  7710. "type": "git",
  7711. "url": "https://github.com/phar-io/manifest.git",
  7712. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  7713. },
  7714. "dist": {
  7715. "type": "zip",
  7716. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  7717. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  7718. "shasum": ""
  7719. },
  7720. "require": {
  7721. "ext-dom": "*",
  7722. "ext-libxml": "*",
  7723. "ext-phar": "*",
  7724. "ext-xmlwriter": "*",
  7725. "phar-io/version": "^3.0.1",
  7726. "php": "^7.2 || ^8.0"
  7727. },
  7728. "type": "library",
  7729. "extra": {
  7730. "branch-alias": {
  7731. "dev-master": "2.0.x-dev"
  7732. }
  7733. },
  7734. "autoload": {
  7735. "classmap": [
  7736. "src/"
  7737. ]
  7738. },
  7739. "notification-url": "https://packagist.org/downloads/",
  7740. "license": [
  7741. "BSD-3-Clause"
  7742. ],
  7743. "authors": [
  7744. {
  7745. "name": "Arne Blankerts",
  7746. "email": "[email protected]",
  7747. "role": "Developer"
  7748. },
  7749. {
  7750. "name": "Sebastian Heuer",
  7751. "email": "[email protected]",
  7752. "role": "Developer"
  7753. },
  7754. {
  7755. "name": "Sebastian Bergmann",
  7756. "email": "[email protected]",
  7757. "role": "Developer"
  7758. }
  7759. ],
  7760. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7761. "support": {
  7762. "issues": "https://github.com/phar-io/manifest/issues",
  7763. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  7764. },
  7765. "funding": [
  7766. {
  7767. "url": "https://github.com/theseer",
  7768. "type": "github"
  7769. }
  7770. ],
  7771. "time": "2024-03-03T12:33:53+00:00"
  7772. },
  7773. {
  7774. "name": "phar-io/version",
  7775. "version": "3.2.1",
  7776. "source": {
  7777. "type": "git",
  7778. "url": "https://github.com/phar-io/version.git",
  7779. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  7780. },
  7781. "dist": {
  7782. "type": "zip",
  7783. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7784. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7785. "shasum": ""
  7786. },
  7787. "require": {
  7788. "php": "^7.2 || ^8.0"
  7789. },
  7790. "type": "library",
  7791. "autoload": {
  7792. "classmap": [
  7793. "src/"
  7794. ]
  7795. },
  7796. "notification-url": "https://packagist.org/downloads/",
  7797. "license": [
  7798. "BSD-3-Clause"
  7799. ],
  7800. "authors": [
  7801. {
  7802. "name": "Arne Blankerts",
  7803. "email": "[email protected]",
  7804. "role": "Developer"
  7805. },
  7806. {
  7807. "name": "Sebastian Heuer",
  7808. "email": "[email protected]",
  7809. "role": "Developer"
  7810. },
  7811. {
  7812. "name": "Sebastian Bergmann",
  7813. "email": "[email protected]",
  7814. "role": "Developer"
  7815. }
  7816. ],
  7817. "description": "Library for handling version information and constraints",
  7818. "support": {
  7819. "issues": "https://github.com/phar-io/version/issues",
  7820. "source": "https://github.com/phar-io/version/tree/3.2.1"
  7821. },
  7822. "time": "2022-02-21T01:04:05+00:00"
  7823. },
  7824. {
  7825. "name": "php-parallel-lint/php-parallel-lint",
  7826. "version": "v1.4.0",
  7827. "source": {
  7828. "type": "git",
  7829. "url": "https://github.com/php-parallel-lint/PHP-Parallel-Lint.git",
  7830. "reference": "6db563514f27e19595a19f45a4bf757b6401194e"
  7831. },
  7832. "dist": {
  7833. "type": "zip",
  7834. "url": "https://api.github.com/repos/php-parallel-lint/PHP-Parallel-Lint/zipball/6db563514f27e19595a19f45a4bf757b6401194e",
  7835. "reference": "6db563514f27e19595a19f45a4bf757b6401194e",
  7836. "shasum": ""
  7837. },
  7838. "require": {
  7839. "ext-json": "*",
  7840. "php": ">=5.3.0"
  7841. },
  7842. "replace": {
  7843. "grogy/php-parallel-lint": "*",
  7844. "jakub-onderka/php-parallel-lint": "*"
  7845. },
  7846. "require-dev": {
  7847. "nette/tester": "^1.3 || ^2.0",
  7848. "php-parallel-lint/php-console-highlighter": "0.* || ^1.0",
  7849. "squizlabs/php_codesniffer": "^3.6"
  7850. },
  7851. "suggest": {
  7852. "php-parallel-lint/php-console-highlighter": "Highlight syntax in code snippet"
  7853. },
  7854. "bin": [
  7855. "parallel-lint"
  7856. ],
  7857. "type": "library",
  7858. "autoload": {
  7859. "classmap": [
  7860. "./src/"
  7861. ]
  7862. },
  7863. "notification-url": "https://packagist.org/downloads/",
  7864. "license": [
  7865. "BSD-2-Clause"
  7866. ],
  7867. "authors": [
  7868. {
  7869. "name": "Jakub Onderka",
  7870. "email": "[email protected]"
  7871. }
  7872. ],
  7873. "description": "This tool checks the syntax of PHP files about 20x faster than serial check.",
  7874. "homepage": "https://github.com/php-parallel-lint/PHP-Parallel-Lint",
  7875. "keywords": [
  7876. "lint",
  7877. "static analysis"
  7878. ],
  7879. "support": {
  7880. "issues": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/issues",
  7881. "source": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/tree/v1.4.0"
  7882. },
  7883. "time": "2024-03-27T12:14:49+00:00"
  7884. },
  7885. {
  7886. "name": "phpstan/phpdoc-parser",
  7887. "version": "1.28.0",
  7888. "source": {
  7889. "type": "git",
  7890. "url": "https://github.com/phpstan/phpdoc-parser.git",
  7891. "reference": "cd06d6b1a1b3c75b0b83f97577869fd85a3cd4fb"
  7892. },
  7893. "dist": {
  7894. "type": "zip",
  7895. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/cd06d6b1a1b3c75b0b83f97577869fd85a3cd4fb",
  7896. "reference": "cd06d6b1a1b3c75b0b83f97577869fd85a3cd4fb",
  7897. "shasum": ""
  7898. },
  7899. "require": {
  7900. "php": "^7.2 || ^8.0"
  7901. },
  7902. "require-dev": {
  7903. "doctrine/annotations": "^2.0",
  7904. "nikic/php-parser": "^4.15",
  7905. "php-parallel-lint/php-parallel-lint": "^1.2",
  7906. "phpstan/extension-installer": "^1.0",
  7907. "phpstan/phpstan": "^1.5",
  7908. "phpstan/phpstan-phpunit": "^1.1",
  7909. "phpstan/phpstan-strict-rules": "^1.0",
  7910. "phpunit/phpunit": "^9.5",
  7911. "symfony/process": "^5.2"
  7912. },
  7913. "type": "library",
  7914. "autoload": {
  7915. "psr-4": {
  7916. "PHPStan\\PhpDocParser\\": [
  7917. "src/"
  7918. ]
  7919. }
  7920. },
  7921. "notification-url": "https://packagist.org/downloads/",
  7922. "license": [
  7923. "MIT"
  7924. ],
  7925. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  7926. "support": {
  7927. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  7928. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.28.0"
  7929. },
  7930. "time": "2024-04-03T18:51:33+00:00"
  7931. },
  7932. {
  7933. "name": "phpunit/php-code-coverage",
  7934. "version": "10.1.14",
  7935. "source": {
  7936. "type": "git",
  7937. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7938. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b"
  7939. },
  7940. "dist": {
  7941. "type": "zip",
  7942. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  7943. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  7944. "shasum": ""
  7945. },
  7946. "require": {
  7947. "ext-dom": "*",
  7948. "ext-libxml": "*",
  7949. "ext-xmlwriter": "*",
  7950. "nikic/php-parser": "^4.18 || ^5.0",
  7951. "php": ">=8.1",
  7952. "phpunit/php-file-iterator": "^4.0",
  7953. "phpunit/php-text-template": "^3.0",
  7954. "sebastian/code-unit-reverse-lookup": "^3.0",
  7955. "sebastian/complexity": "^3.0",
  7956. "sebastian/environment": "^6.0",
  7957. "sebastian/lines-of-code": "^2.0",
  7958. "sebastian/version": "^4.0",
  7959. "theseer/tokenizer": "^1.2.0"
  7960. },
  7961. "require-dev": {
  7962. "phpunit/phpunit": "^10.1"
  7963. },
  7964. "suggest": {
  7965. "ext-pcov": "PHP extension that provides line coverage",
  7966. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  7967. },
  7968. "type": "library",
  7969. "extra": {
  7970. "branch-alias": {
  7971. "dev-main": "10.1-dev"
  7972. }
  7973. },
  7974. "autoload": {
  7975. "classmap": [
  7976. "src/"
  7977. ]
  7978. },
  7979. "notification-url": "https://packagist.org/downloads/",
  7980. "license": [
  7981. "BSD-3-Clause"
  7982. ],
  7983. "authors": [
  7984. {
  7985. "name": "Sebastian Bergmann",
  7986. "email": "[email protected]",
  7987. "role": "lead"
  7988. }
  7989. ],
  7990. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7991. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7992. "keywords": [
  7993. "coverage",
  7994. "testing",
  7995. "xunit"
  7996. ],
  7997. "support": {
  7998. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  7999. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8000. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.14"
  8001. },
  8002. "funding": [
  8003. {
  8004. "url": "https://github.com/sebastianbergmann",
  8005. "type": "github"
  8006. }
  8007. ],
  8008. "time": "2024-03-12T15:33:41+00:00"
  8009. },
  8010. {
  8011. "name": "phpunit/php-file-iterator",
  8012. "version": "4.1.0",
  8013. "source": {
  8014. "type": "git",
  8015. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8016. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  8017. },
  8018. "dist": {
  8019. "type": "zip",
  8020. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8021. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8022. "shasum": ""
  8023. },
  8024. "require": {
  8025. "php": ">=8.1"
  8026. },
  8027. "require-dev": {
  8028. "phpunit/phpunit": "^10.0"
  8029. },
  8030. "type": "library",
  8031. "extra": {
  8032. "branch-alias": {
  8033. "dev-main": "4.0-dev"
  8034. }
  8035. },
  8036. "autoload": {
  8037. "classmap": [
  8038. "src/"
  8039. ]
  8040. },
  8041. "notification-url": "https://packagist.org/downloads/",
  8042. "license": [
  8043. "BSD-3-Clause"
  8044. ],
  8045. "authors": [
  8046. {
  8047. "name": "Sebastian Bergmann",
  8048. "email": "[email protected]",
  8049. "role": "lead"
  8050. }
  8051. ],
  8052. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8053. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8054. "keywords": [
  8055. "filesystem",
  8056. "iterator"
  8057. ],
  8058. "support": {
  8059. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8060. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8061. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  8062. },
  8063. "funding": [
  8064. {
  8065. "url": "https://github.com/sebastianbergmann",
  8066. "type": "github"
  8067. }
  8068. ],
  8069. "time": "2023-08-31T06:24:48+00:00"
  8070. },
  8071. {
  8072. "name": "phpunit/php-invoker",
  8073. "version": "4.0.0",
  8074. "source": {
  8075. "type": "git",
  8076. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8077. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  8078. },
  8079. "dist": {
  8080. "type": "zip",
  8081. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8082. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8083. "shasum": ""
  8084. },
  8085. "require": {
  8086. "php": ">=8.1"
  8087. },
  8088. "require-dev": {
  8089. "ext-pcntl": "*",
  8090. "phpunit/phpunit": "^10.0"
  8091. },
  8092. "suggest": {
  8093. "ext-pcntl": "*"
  8094. },
  8095. "type": "library",
  8096. "extra": {
  8097. "branch-alias": {
  8098. "dev-main": "4.0-dev"
  8099. }
  8100. },
  8101. "autoload": {
  8102. "classmap": [
  8103. "src/"
  8104. ]
  8105. },
  8106. "notification-url": "https://packagist.org/downloads/",
  8107. "license": [
  8108. "BSD-3-Clause"
  8109. ],
  8110. "authors": [
  8111. {
  8112. "name": "Sebastian Bergmann",
  8113. "email": "[email protected]",
  8114. "role": "lead"
  8115. }
  8116. ],
  8117. "description": "Invoke callables with a timeout",
  8118. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8119. "keywords": [
  8120. "process"
  8121. ],
  8122. "support": {
  8123. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8124. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  8125. },
  8126. "funding": [
  8127. {
  8128. "url": "https://github.com/sebastianbergmann",
  8129. "type": "github"
  8130. }
  8131. ],
  8132. "time": "2023-02-03T06:56:09+00:00"
  8133. },
  8134. {
  8135. "name": "phpunit/php-text-template",
  8136. "version": "3.0.1",
  8137. "source": {
  8138. "type": "git",
  8139. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8140. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  8141. },
  8142. "dist": {
  8143. "type": "zip",
  8144. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8145. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8146. "shasum": ""
  8147. },
  8148. "require": {
  8149. "php": ">=8.1"
  8150. },
  8151. "require-dev": {
  8152. "phpunit/phpunit": "^10.0"
  8153. },
  8154. "type": "library",
  8155. "extra": {
  8156. "branch-alias": {
  8157. "dev-main": "3.0-dev"
  8158. }
  8159. },
  8160. "autoload": {
  8161. "classmap": [
  8162. "src/"
  8163. ]
  8164. },
  8165. "notification-url": "https://packagist.org/downloads/",
  8166. "license": [
  8167. "BSD-3-Clause"
  8168. ],
  8169. "authors": [
  8170. {
  8171. "name": "Sebastian Bergmann",
  8172. "email": "[email protected]",
  8173. "role": "lead"
  8174. }
  8175. ],
  8176. "description": "Simple template engine.",
  8177. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8178. "keywords": [
  8179. "template"
  8180. ],
  8181. "support": {
  8182. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8183. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  8184. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  8185. },
  8186. "funding": [
  8187. {
  8188. "url": "https://github.com/sebastianbergmann",
  8189. "type": "github"
  8190. }
  8191. ],
  8192. "time": "2023-08-31T14:07:24+00:00"
  8193. },
  8194. {
  8195. "name": "phpunit/php-timer",
  8196. "version": "6.0.0",
  8197. "source": {
  8198. "type": "git",
  8199. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8200. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  8201. },
  8202. "dist": {
  8203. "type": "zip",
  8204. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8205. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8206. "shasum": ""
  8207. },
  8208. "require": {
  8209. "php": ">=8.1"
  8210. },
  8211. "require-dev": {
  8212. "phpunit/phpunit": "^10.0"
  8213. },
  8214. "type": "library",
  8215. "extra": {
  8216. "branch-alias": {
  8217. "dev-main": "6.0-dev"
  8218. }
  8219. },
  8220. "autoload": {
  8221. "classmap": [
  8222. "src/"
  8223. ]
  8224. },
  8225. "notification-url": "https://packagist.org/downloads/",
  8226. "license": [
  8227. "BSD-3-Clause"
  8228. ],
  8229. "authors": [
  8230. {
  8231. "name": "Sebastian Bergmann",
  8232. "email": "[email protected]",
  8233. "role": "lead"
  8234. }
  8235. ],
  8236. "description": "Utility class for timing",
  8237. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8238. "keywords": [
  8239. "timer"
  8240. ],
  8241. "support": {
  8242. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8243. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  8244. },
  8245. "funding": [
  8246. {
  8247. "url": "https://github.com/sebastianbergmann",
  8248. "type": "github"
  8249. }
  8250. ],
  8251. "time": "2023-02-03T06:57:52+00:00"
  8252. },
  8253. {
  8254. "name": "phpunit/phpunit",
  8255. "version": "10.5.19",
  8256. "source": {
  8257. "type": "git",
  8258. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8259. "reference": "c726f0de022368f6ed103e452a765d3304a996a4"
  8260. },
  8261. "dist": {
  8262. "type": "zip",
  8263. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c726f0de022368f6ed103e452a765d3304a996a4",
  8264. "reference": "c726f0de022368f6ed103e452a765d3304a996a4",
  8265. "shasum": ""
  8266. },
  8267. "require": {
  8268. "ext-dom": "*",
  8269. "ext-json": "*",
  8270. "ext-libxml": "*",
  8271. "ext-mbstring": "*",
  8272. "ext-xml": "*",
  8273. "ext-xmlwriter": "*",
  8274. "myclabs/deep-copy": "^1.10.1",
  8275. "phar-io/manifest": "^2.0.3",
  8276. "phar-io/version": "^3.0.2",
  8277. "php": ">=8.1",
  8278. "phpunit/php-code-coverage": "^10.1.5",
  8279. "phpunit/php-file-iterator": "^4.0",
  8280. "phpunit/php-invoker": "^4.0",
  8281. "phpunit/php-text-template": "^3.0",
  8282. "phpunit/php-timer": "^6.0",
  8283. "sebastian/cli-parser": "^2.0",
  8284. "sebastian/code-unit": "^2.0",
  8285. "sebastian/comparator": "^5.0",
  8286. "sebastian/diff": "^5.0",
  8287. "sebastian/environment": "^6.0",
  8288. "sebastian/exporter": "^5.1",
  8289. "sebastian/global-state": "^6.0.1",
  8290. "sebastian/object-enumerator": "^5.0",
  8291. "sebastian/recursion-context": "^5.0",
  8292. "sebastian/type": "^4.0",
  8293. "sebastian/version": "^4.0"
  8294. },
  8295. "suggest": {
  8296. "ext-soap": "To be able to generate mocks based on WSDL files"
  8297. },
  8298. "bin": [
  8299. "phpunit"
  8300. ],
  8301. "type": "library",
  8302. "extra": {
  8303. "branch-alias": {
  8304. "dev-main": "10.5-dev"
  8305. }
  8306. },
  8307. "autoload": {
  8308. "files": [
  8309. "src/Framework/Assert/Functions.php"
  8310. ],
  8311. "classmap": [
  8312. "src/"
  8313. ]
  8314. },
  8315. "notification-url": "https://packagist.org/downloads/",
  8316. "license": [
  8317. "BSD-3-Clause"
  8318. ],
  8319. "authors": [
  8320. {
  8321. "name": "Sebastian Bergmann",
  8322. "email": "[email protected]",
  8323. "role": "lead"
  8324. }
  8325. ],
  8326. "description": "The PHP Unit Testing framework.",
  8327. "homepage": "https://phpunit.de/",
  8328. "keywords": [
  8329. "phpunit",
  8330. "testing",
  8331. "xunit"
  8332. ],
  8333. "support": {
  8334. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8335. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8336. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.19"
  8337. },
  8338. "funding": [
  8339. {
  8340. "url": "https://phpunit.de/sponsors.html",
  8341. "type": "custom"
  8342. },
  8343. {
  8344. "url": "https://github.com/sebastianbergmann",
  8345. "type": "github"
  8346. },
  8347. {
  8348. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8349. "type": "tidelift"
  8350. }
  8351. ],
  8352. "time": "2024-04-17T14:06:18+00:00"
  8353. },
  8354. {
  8355. "name": "psr/cache",
  8356. "version": "3.0.0",
  8357. "source": {
  8358. "type": "git",
  8359. "url": "https://github.com/php-fig/cache.git",
  8360. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  8361. },
  8362. "dist": {
  8363. "type": "zip",
  8364. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  8365. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  8366. "shasum": ""
  8367. },
  8368. "require": {
  8369. "php": ">=8.0.0"
  8370. },
  8371. "type": "library",
  8372. "extra": {
  8373. "branch-alias": {
  8374. "dev-master": "1.0.x-dev"
  8375. }
  8376. },
  8377. "autoload": {
  8378. "psr-4": {
  8379. "Psr\\Cache\\": "src/"
  8380. }
  8381. },
  8382. "notification-url": "https://packagist.org/downloads/",
  8383. "license": [
  8384. "MIT"
  8385. ],
  8386. "authors": [
  8387. {
  8388. "name": "PHP-FIG",
  8389. "homepage": "https://www.php-fig.org/"
  8390. }
  8391. ],
  8392. "description": "Common interface for caching libraries",
  8393. "keywords": [
  8394. "cache",
  8395. "psr",
  8396. "psr-6"
  8397. ],
  8398. "support": {
  8399. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  8400. },
  8401. "time": "2021-02-03T23:26:27+00:00"
  8402. },
  8403. {
  8404. "name": "sebastian/cli-parser",
  8405. "version": "2.0.1",
  8406. "source": {
  8407. "type": "git",
  8408. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8409. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  8410. },
  8411. "dist": {
  8412. "type": "zip",
  8413. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  8414. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  8415. "shasum": ""
  8416. },
  8417. "require": {
  8418. "php": ">=8.1"
  8419. },
  8420. "require-dev": {
  8421. "phpunit/phpunit": "^10.0"
  8422. },
  8423. "type": "library",
  8424. "extra": {
  8425. "branch-alias": {
  8426. "dev-main": "2.0-dev"
  8427. }
  8428. },
  8429. "autoload": {
  8430. "classmap": [
  8431. "src/"
  8432. ]
  8433. },
  8434. "notification-url": "https://packagist.org/downloads/",
  8435. "license": [
  8436. "BSD-3-Clause"
  8437. ],
  8438. "authors": [
  8439. {
  8440. "name": "Sebastian Bergmann",
  8441. "email": "[email protected]",
  8442. "role": "lead"
  8443. }
  8444. ],
  8445. "description": "Library for parsing CLI options",
  8446. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8447. "support": {
  8448. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8449. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  8450. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  8451. },
  8452. "funding": [
  8453. {
  8454. "url": "https://github.com/sebastianbergmann",
  8455. "type": "github"
  8456. }
  8457. ],
  8458. "time": "2024-03-02T07:12:49+00:00"
  8459. },
  8460. {
  8461. "name": "sebastian/code-unit",
  8462. "version": "2.0.0",
  8463. "source": {
  8464. "type": "git",
  8465. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8466. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  8467. },
  8468. "dist": {
  8469. "type": "zip",
  8470. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  8471. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  8472. "shasum": ""
  8473. },
  8474. "require": {
  8475. "php": ">=8.1"
  8476. },
  8477. "require-dev": {
  8478. "phpunit/phpunit": "^10.0"
  8479. },
  8480. "type": "library",
  8481. "extra": {
  8482. "branch-alias": {
  8483. "dev-main": "2.0-dev"
  8484. }
  8485. },
  8486. "autoload": {
  8487. "classmap": [
  8488. "src/"
  8489. ]
  8490. },
  8491. "notification-url": "https://packagist.org/downloads/",
  8492. "license": [
  8493. "BSD-3-Clause"
  8494. ],
  8495. "authors": [
  8496. {
  8497. "name": "Sebastian Bergmann",
  8498. "email": "[email protected]",
  8499. "role": "lead"
  8500. }
  8501. ],
  8502. "description": "Collection of value objects that represent the PHP code units",
  8503. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8504. "support": {
  8505. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  8506. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  8507. },
  8508. "funding": [
  8509. {
  8510. "url": "https://github.com/sebastianbergmann",
  8511. "type": "github"
  8512. }
  8513. ],
  8514. "time": "2023-02-03T06:58:43+00:00"
  8515. },
  8516. {
  8517. "name": "sebastian/code-unit-reverse-lookup",
  8518. "version": "3.0.0",
  8519. "source": {
  8520. "type": "git",
  8521. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8522. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  8523. },
  8524. "dist": {
  8525. "type": "zip",
  8526. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  8527. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  8528. "shasum": ""
  8529. },
  8530. "require": {
  8531. "php": ">=8.1"
  8532. },
  8533. "require-dev": {
  8534. "phpunit/phpunit": "^10.0"
  8535. },
  8536. "type": "library",
  8537. "extra": {
  8538. "branch-alias": {
  8539. "dev-main": "3.0-dev"
  8540. }
  8541. },
  8542. "autoload": {
  8543. "classmap": [
  8544. "src/"
  8545. ]
  8546. },
  8547. "notification-url": "https://packagist.org/downloads/",
  8548. "license": [
  8549. "BSD-3-Clause"
  8550. ],
  8551. "authors": [
  8552. {
  8553. "name": "Sebastian Bergmann",
  8554. "email": "[email protected]"
  8555. }
  8556. ],
  8557. "description": "Looks up which function or method a line of code belongs to",
  8558. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8559. "support": {
  8560. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  8561. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  8562. },
  8563. "funding": [
  8564. {
  8565. "url": "https://github.com/sebastianbergmann",
  8566. "type": "github"
  8567. }
  8568. ],
  8569. "time": "2023-02-03T06:59:15+00:00"
  8570. },
  8571. {
  8572. "name": "sebastian/comparator",
  8573. "version": "5.0.1",
  8574. "source": {
  8575. "type": "git",
  8576. "url": "https://github.com/sebastianbergmann/comparator.git",
  8577. "reference": "2db5010a484d53ebf536087a70b4a5423c102372"
  8578. },
  8579. "dist": {
  8580. "type": "zip",
  8581. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372",
  8582. "reference": "2db5010a484d53ebf536087a70b4a5423c102372",
  8583. "shasum": ""
  8584. },
  8585. "require": {
  8586. "ext-dom": "*",
  8587. "ext-mbstring": "*",
  8588. "php": ">=8.1",
  8589. "sebastian/diff": "^5.0",
  8590. "sebastian/exporter": "^5.0"
  8591. },
  8592. "require-dev": {
  8593. "phpunit/phpunit": "^10.3"
  8594. },
  8595. "type": "library",
  8596. "extra": {
  8597. "branch-alias": {
  8598. "dev-main": "5.0-dev"
  8599. }
  8600. },
  8601. "autoload": {
  8602. "classmap": [
  8603. "src/"
  8604. ]
  8605. },
  8606. "notification-url": "https://packagist.org/downloads/",
  8607. "license": [
  8608. "BSD-3-Clause"
  8609. ],
  8610. "authors": [
  8611. {
  8612. "name": "Sebastian Bergmann",
  8613. "email": "[email protected]"
  8614. },
  8615. {
  8616. "name": "Jeff Welch",
  8617. "email": "[email protected]"
  8618. },
  8619. {
  8620. "name": "Volker Dusch",
  8621. "email": "[email protected]"
  8622. },
  8623. {
  8624. "name": "Bernhard Schussek",
  8625. "email": "[email protected]"
  8626. }
  8627. ],
  8628. "description": "Provides the functionality to compare PHP values for equality",
  8629. "homepage": "https://github.com/sebastianbergmann/comparator",
  8630. "keywords": [
  8631. "comparator",
  8632. "compare",
  8633. "equality"
  8634. ],
  8635. "support": {
  8636. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  8637. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  8638. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1"
  8639. },
  8640. "funding": [
  8641. {
  8642. "url": "https://github.com/sebastianbergmann",
  8643. "type": "github"
  8644. }
  8645. ],
  8646. "time": "2023-08-14T13:18:12+00:00"
  8647. },
  8648. {
  8649. "name": "sebastian/complexity",
  8650. "version": "3.2.0",
  8651. "source": {
  8652. "type": "git",
  8653. "url": "https://github.com/sebastianbergmann/complexity.git",
  8654. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  8655. },
  8656. "dist": {
  8657. "type": "zip",
  8658. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  8659. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  8660. "shasum": ""
  8661. },
  8662. "require": {
  8663. "nikic/php-parser": "^4.18 || ^5.0",
  8664. "php": ">=8.1"
  8665. },
  8666. "require-dev": {
  8667. "phpunit/phpunit": "^10.0"
  8668. },
  8669. "type": "library",
  8670. "extra": {
  8671. "branch-alias": {
  8672. "dev-main": "3.2-dev"
  8673. }
  8674. },
  8675. "autoload": {
  8676. "classmap": [
  8677. "src/"
  8678. ]
  8679. },
  8680. "notification-url": "https://packagist.org/downloads/",
  8681. "license": [
  8682. "BSD-3-Clause"
  8683. ],
  8684. "authors": [
  8685. {
  8686. "name": "Sebastian Bergmann",
  8687. "email": "[email protected]",
  8688. "role": "lead"
  8689. }
  8690. ],
  8691. "description": "Library for calculating the complexity of PHP code units",
  8692. "homepage": "https://github.com/sebastianbergmann/complexity",
  8693. "support": {
  8694. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  8695. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  8696. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  8697. },
  8698. "funding": [
  8699. {
  8700. "url": "https://github.com/sebastianbergmann",
  8701. "type": "github"
  8702. }
  8703. ],
  8704. "time": "2023-12-21T08:37:17+00:00"
  8705. },
  8706. {
  8707. "name": "sebastian/diff",
  8708. "version": "5.1.1",
  8709. "source": {
  8710. "type": "git",
  8711. "url": "https://github.com/sebastianbergmann/diff.git",
  8712. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  8713. },
  8714. "dist": {
  8715. "type": "zip",
  8716. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  8717. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  8718. "shasum": ""
  8719. },
  8720. "require": {
  8721. "php": ">=8.1"
  8722. },
  8723. "require-dev": {
  8724. "phpunit/phpunit": "^10.0",
  8725. "symfony/process": "^6.4"
  8726. },
  8727. "type": "library",
  8728. "extra": {
  8729. "branch-alias": {
  8730. "dev-main": "5.1-dev"
  8731. }
  8732. },
  8733. "autoload": {
  8734. "classmap": [
  8735. "src/"
  8736. ]
  8737. },
  8738. "notification-url": "https://packagist.org/downloads/",
  8739. "license": [
  8740. "BSD-3-Clause"
  8741. ],
  8742. "authors": [
  8743. {
  8744. "name": "Sebastian Bergmann",
  8745. "email": "[email protected]"
  8746. },
  8747. {
  8748. "name": "Kore Nordmann",
  8749. "email": "[email protected]"
  8750. }
  8751. ],
  8752. "description": "Diff implementation",
  8753. "homepage": "https://github.com/sebastianbergmann/diff",
  8754. "keywords": [
  8755. "diff",
  8756. "udiff",
  8757. "unidiff",
  8758. "unified diff"
  8759. ],
  8760. "support": {
  8761. "issues": "https://github.com/sebastianbergmann/diff/issues",
  8762. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  8763. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  8764. },
  8765. "funding": [
  8766. {
  8767. "url": "https://github.com/sebastianbergmann",
  8768. "type": "github"
  8769. }
  8770. ],
  8771. "time": "2024-03-02T07:15:17+00:00"
  8772. },
  8773. {
  8774. "name": "sebastian/environment",
  8775. "version": "6.1.0",
  8776. "source": {
  8777. "type": "git",
  8778. "url": "https://github.com/sebastianbergmann/environment.git",
  8779. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  8780. },
  8781. "dist": {
  8782. "type": "zip",
  8783. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  8784. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  8785. "shasum": ""
  8786. },
  8787. "require": {
  8788. "php": ">=8.1"
  8789. },
  8790. "require-dev": {
  8791. "phpunit/phpunit": "^10.0"
  8792. },
  8793. "suggest": {
  8794. "ext-posix": "*"
  8795. },
  8796. "type": "library",
  8797. "extra": {
  8798. "branch-alias": {
  8799. "dev-main": "6.1-dev"
  8800. }
  8801. },
  8802. "autoload": {
  8803. "classmap": [
  8804. "src/"
  8805. ]
  8806. },
  8807. "notification-url": "https://packagist.org/downloads/",
  8808. "license": [
  8809. "BSD-3-Clause"
  8810. ],
  8811. "authors": [
  8812. {
  8813. "name": "Sebastian Bergmann",
  8814. "email": "[email protected]"
  8815. }
  8816. ],
  8817. "description": "Provides functionality to handle HHVM/PHP environments",
  8818. "homepage": "https://github.com/sebastianbergmann/environment",
  8819. "keywords": [
  8820. "Xdebug",
  8821. "environment",
  8822. "hhvm"
  8823. ],
  8824. "support": {
  8825. "issues": "https://github.com/sebastianbergmann/environment/issues",
  8826. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  8827. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  8828. },
  8829. "funding": [
  8830. {
  8831. "url": "https://github.com/sebastianbergmann",
  8832. "type": "github"
  8833. }
  8834. ],
  8835. "time": "2024-03-23T08:47:14+00:00"
  8836. },
  8837. {
  8838. "name": "sebastian/exporter",
  8839. "version": "5.1.2",
  8840. "source": {
  8841. "type": "git",
  8842. "url": "https://github.com/sebastianbergmann/exporter.git",
  8843. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  8844. },
  8845. "dist": {
  8846. "type": "zip",
  8847. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  8848. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  8849. "shasum": ""
  8850. },
  8851. "require": {
  8852. "ext-mbstring": "*",
  8853. "php": ">=8.1",
  8854. "sebastian/recursion-context": "^5.0"
  8855. },
  8856. "require-dev": {
  8857. "phpunit/phpunit": "^10.0"
  8858. },
  8859. "type": "library",
  8860. "extra": {
  8861. "branch-alias": {
  8862. "dev-main": "5.1-dev"
  8863. }
  8864. },
  8865. "autoload": {
  8866. "classmap": [
  8867. "src/"
  8868. ]
  8869. },
  8870. "notification-url": "https://packagist.org/downloads/",
  8871. "license": [
  8872. "BSD-3-Clause"
  8873. ],
  8874. "authors": [
  8875. {
  8876. "name": "Sebastian Bergmann",
  8877. "email": "[email protected]"
  8878. },
  8879. {
  8880. "name": "Jeff Welch",
  8881. "email": "[email protected]"
  8882. },
  8883. {
  8884. "name": "Volker Dusch",
  8885. "email": "[email protected]"
  8886. },
  8887. {
  8888. "name": "Adam Harvey",
  8889. "email": "[email protected]"
  8890. },
  8891. {
  8892. "name": "Bernhard Schussek",
  8893. "email": "[email protected]"
  8894. }
  8895. ],
  8896. "description": "Provides the functionality to export PHP variables for visualization",
  8897. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  8898. "keywords": [
  8899. "export",
  8900. "exporter"
  8901. ],
  8902. "support": {
  8903. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  8904. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  8905. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  8906. },
  8907. "funding": [
  8908. {
  8909. "url": "https://github.com/sebastianbergmann",
  8910. "type": "github"
  8911. }
  8912. ],
  8913. "time": "2024-03-02T07:17:12+00:00"
  8914. },
  8915. {
  8916. "name": "sebastian/global-state",
  8917. "version": "6.0.2",
  8918. "source": {
  8919. "type": "git",
  8920. "url": "https://github.com/sebastianbergmann/global-state.git",
  8921. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  8922. },
  8923. "dist": {
  8924. "type": "zip",
  8925. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  8926. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  8927. "shasum": ""
  8928. },
  8929. "require": {
  8930. "php": ">=8.1",
  8931. "sebastian/object-reflector": "^3.0",
  8932. "sebastian/recursion-context": "^5.0"
  8933. },
  8934. "require-dev": {
  8935. "ext-dom": "*",
  8936. "phpunit/phpunit": "^10.0"
  8937. },
  8938. "type": "library",
  8939. "extra": {
  8940. "branch-alias": {
  8941. "dev-main": "6.0-dev"
  8942. }
  8943. },
  8944. "autoload": {
  8945. "classmap": [
  8946. "src/"
  8947. ]
  8948. },
  8949. "notification-url": "https://packagist.org/downloads/",
  8950. "license": [
  8951. "BSD-3-Clause"
  8952. ],
  8953. "authors": [
  8954. {
  8955. "name": "Sebastian Bergmann",
  8956. "email": "[email protected]"
  8957. }
  8958. ],
  8959. "description": "Snapshotting of global state",
  8960. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  8961. "keywords": [
  8962. "global state"
  8963. ],
  8964. "support": {
  8965. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  8966. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  8967. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  8968. },
  8969. "funding": [
  8970. {
  8971. "url": "https://github.com/sebastianbergmann",
  8972. "type": "github"
  8973. }
  8974. ],
  8975. "time": "2024-03-02T07:19:19+00:00"
  8976. },
  8977. {
  8978. "name": "sebastian/lines-of-code",
  8979. "version": "2.0.2",
  8980. "source": {
  8981. "type": "git",
  8982. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  8983. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  8984. },
  8985. "dist": {
  8986. "type": "zip",
  8987. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  8988. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  8989. "shasum": ""
  8990. },
  8991. "require": {
  8992. "nikic/php-parser": "^4.18 || ^5.0",
  8993. "php": ">=8.1"
  8994. },
  8995. "require-dev": {
  8996. "phpunit/phpunit": "^10.0"
  8997. },
  8998. "type": "library",
  8999. "extra": {
  9000. "branch-alias": {
  9001. "dev-main": "2.0-dev"
  9002. }
  9003. },
  9004. "autoload": {
  9005. "classmap": [
  9006. "src/"
  9007. ]
  9008. },
  9009. "notification-url": "https://packagist.org/downloads/",
  9010. "license": [
  9011. "BSD-3-Clause"
  9012. ],
  9013. "authors": [
  9014. {
  9015. "name": "Sebastian Bergmann",
  9016. "email": "[email protected]",
  9017. "role": "lead"
  9018. }
  9019. ],
  9020. "description": "Library for counting the lines of code in PHP source code",
  9021. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9022. "support": {
  9023. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9024. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  9025. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  9026. },
  9027. "funding": [
  9028. {
  9029. "url": "https://github.com/sebastianbergmann",
  9030. "type": "github"
  9031. }
  9032. ],
  9033. "time": "2023-12-21T08:38:20+00:00"
  9034. },
  9035. {
  9036. "name": "sebastian/object-enumerator",
  9037. "version": "5.0.0",
  9038. "source": {
  9039. "type": "git",
  9040. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9041. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  9042. },
  9043. "dist": {
  9044. "type": "zip",
  9045. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  9046. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  9047. "shasum": ""
  9048. },
  9049. "require": {
  9050. "php": ">=8.1",
  9051. "sebastian/object-reflector": "^3.0",
  9052. "sebastian/recursion-context": "^5.0"
  9053. },
  9054. "require-dev": {
  9055. "phpunit/phpunit": "^10.0"
  9056. },
  9057. "type": "library",
  9058. "extra": {
  9059. "branch-alias": {
  9060. "dev-main": "5.0-dev"
  9061. }
  9062. },
  9063. "autoload": {
  9064. "classmap": [
  9065. "src/"
  9066. ]
  9067. },
  9068. "notification-url": "https://packagist.org/downloads/",
  9069. "license": [
  9070. "BSD-3-Clause"
  9071. ],
  9072. "authors": [
  9073. {
  9074. "name": "Sebastian Bergmann",
  9075. "email": "[email protected]"
  9076. }
  9077. ],
  9078. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9079. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9080. "support": {
  9081. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9082. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  9083. },
  9084. "funding": [
  9085. {
  9086. "url": "https://github.com/sebastianbergmann",
  9087. "type": "github"
  9088. }
  9089. ],
  9090. "time": "2023-02-03T07:08:32+00:00"
  9091. },
  9092. {
  9093. "name": "sebastian/object-reflector",
  9094. "version": "3.0.0",
  9095. "source": {
  9096. "type": "git",
  9097. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9098. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  9099. },
  9100. "dist": {
  9101. "type": "zip",
  9102. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  9103. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  9104. "shasum": ""
  9105. },
  9106. "require": {
  9107. "php": ">=8.1"
  9108. },
  9109. "require-dev": {
  9110. "phpunit/phpunit": "^10.0"
  9111. },
  9112. "type": "library",
  9113. "extra": {
  9114. "branch-alias": {
  9115. "dev-main": "3.0-dev"
  9116. }
  9117. },
  9118. "autoload": {
  9119. "classmap": [
  9120. "src/"
  9121. ]
  9122. },
  9123. "notification-url": "https://packagist.org/downloads/",
  9124. "license": [
  9125. "BSD-3-Clause"
  9126. ],
  9127. "authors": [
  9128. {
  9129. "name": "Sebastian Bergmann",
  9130. "email": "[email protected]"
  9131. }
  9132. ],
  9133. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9134. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9135. "support": {
  9136. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9137. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  9138. },
  9139. "funding": [
  9140. {
  9141. "url": "https://github.com/sebastianbergmann",
  9142. "type": "github"
  9143. }
  9144. ],
  9145. "time": "2023-02-03T07:06:18+00:00"
  9146. },
  9147. {
  9148. "name": "sebastian/recursion-context",
  9149. "version": "5.0.0",
  9150. "source": {
  9151. "type": "git",
  9152. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9153. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  9154. },
  9155. "dist": {
  9156. "type": "zip",
  9157. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  9158. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  9159. "shasum": ""
  9160. },
  9161. "require": {
  9162. "php": ">=8.1"
  9163. },
  9164. "require-dev": {
  9165. "phpunit/phpunit": "^10.0"
  9166. },
  9167. "type": "library",
  9168. "extra": {
  9169. "branch-alias": {
  9170. "dev-main": "5.0-dev"
  9171. }
  9172. },
  9173. "autoload": {
  9174. "classmap": [
  9175. "src/"
  9176. ]
  9177. },
  9178. "notification-url": "https://packagist.org/downloads/",
  9179. "license": [
  9180. "BSD-3-Clause"
  9181. ],
  9182. "authors": [
  9183. {
  9184. "name": "Sebastian Bergmann",
  9185. "email": "[email protected]"
  9186. },
  9187. {
  9188. "name": "Jeff Welch",
  9189. "email": "[email protected]"
  9190. },
  9191. {
  9192. "name": "Adam Harvey",
  9193. "email": "[email protected]"
  9194. }
  9195. ],
  9196. "description": "Provides functionality to recursively process PHP variables",
  9197. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9198. "support": {
  9199. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9200. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  9201. },
  9202. "funding": [
  9203. {
  9204. "url": "https://github.com/sebastianbergmann",
  9205. "type": "github"
  9206. }
  9207. ],
  9208. "time": "2023-02-03T07:05:40+00:00"
  9209. },
  9210. {
  9211. "name": "sebastian/type",
  9212. "version": "4.0.0",
  9213. "source": {
  9214. "type": "git",
  9215. "url": "https://github.com/sebastianbergmann/type.git",
  9216. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  9217. },
  9218. "dist": {
  9219. "type": "zip",
  9220. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  9221. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  9222. "shasum": ""
  9223. },
  9224. "require": {
  9225. "php": ">=8.1"
  9226. },
  9227. "require-dev": {
  9228. "phpunit/phpunit": "^10.0"
  9229. },
  9230. "type": "library",
  9231. "extra": {
  9232. "branch-alias": {
  9233. "dev-main": "4.0-dev"
  9234. }
  9235. },
  9236. "autoload": {
  9237. "classmap": [
  9238. "src/"
  9239. ]
  9240. },
  9241. "notification-url": "https://packagist.org/downloads/",
  9242. "license": [
  9243. "BSD-3-Clause"
  9244. ],
  9245. "authors": [
  9246. {
  9247. "name": "Sebastian Bergmann",
  9248. "email": "[email protected]",
  9249. "role": "lead"
  9250. }
  9251. ],
  9252. "description": "Collection of value objects that represent the types of the PHP type system",
  9253. "homepage": "https://github.com/sebastianbergmann/type",
  9254. "support": {
  9255. "issues": "https://github.com/sebastianbergmann/type/issues",
  9256. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  9257. },
  9258. "funding": [
  9259. {
  9260. "url": "https://github.com/sebastianbergmann",
  9261. "type": "github"
  9262. }
  9263. ],
  9264. "time": "2023-02-03T07:10:45+00:00"
  9265. },
  9266. {
  9267. "name": "sebastian/version",
  9268. "version": "4.0.1",
  9269. "source": {
  9270. "type": "git",
  9271. "url": "https://github.com/sebastianbergmann/version.git",
  9272. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  9273. },
  9274. "dist": {
  9275. "type": "zip",
  9276. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9277. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9278. "shasum": ""
  9279. },
  9280. "require": {
  9281. "php": ">=8.1"
  9282. },
  9283. "type": "library",
  9284. "extra": {
  9285. "branch-alias": {
  9286. "dev-main": "4.0-dev"
  9287. }
  9288. },
  9289. "autoload": {
  9290. "classmap": [
  9291. "src/"
  9292. ]
  9293. },
  9294. "notification-url": "https://packagist.org/downloads/",
  9295. "license": [
  9296. "BSD-3-Clause"
  9297. ],
  9298. "authors": [
  9299. {
  9300. "name": "Sebastian Bergmann",
  9301. "email": "[email protected]",
  9302. "role": "lead"
  9303. }
  9304. ],
  9305. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9306. "homepage": "https://github.com/sebastianbergmann/version",
  9307. "support": {
  9308. "issues": "https://github.com/sebastianbergmann/version/issues",
  9309. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  9310. },
  9311. "funding": [
  9312. {
  9313. "url": "https://github.com/sebastianbergmann",
  9314. "type": "github"
  9315. }
  9316. ],
  9317. "time": "2023-02-07T11:34:05+00:00"
  9318. },
  9319. {
  9320. "name": "slevomat/coding-standard",
  9321. "version": "8.15.0",
  9322. "source": {
  9323. "type": "git",
  9324. "url": "https://github.com/slevomat/coding-standard.git",
  9325. "reference": "7d1d957421618a3803b593ec31ace470177d7817"
  9326. },
  9327. "dist": {
  9328. "type": "zip",
  9329. "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/7d1d957421618a3803b593ec31ace470177d7817",
  9330. "reference": "7d1d957421618a3803b593ec31ace470177d7817",
  9331. "shasum": ""
  9332. },
  9333. "require": {
  9334. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7 || ^1.0",
  9335. "php": "^7.2 || ^8.0",
  9336. "phpstan/phpdoc-parser": "^1.23.1",
  9337. "squizlabs/php_codesniffer": "^3.9.0"
  9338. },
  9339. "require-dev": {
  9340. "phing/phing": "2.17.4",
  9341. "php-parallel-lint/php-parallel-lint": "1.3.2",
  9342. "phpstan/phpstan": "1.10.60",
  9343. "phpstan/phpstan-deprecation-rules": "1.1.4",
  9344. "phpstan/phpstan-phpunit": "1.3.16",
  9345. "phpstan/phpstan-strict-rules": "1.5.2",
  9346. "phpunit/phpunit": "8.5.21|9.6.8|10.5.11"
  9347. },
  9348. "type": "phpcodesniffer-standard",
  9349. "extra": {
  9350. "branch-alias": {
  9351. "dev-master": "8.x-dev"
  9352. }
  9353. },
  9354. "autoload": {
  9355. "psr-4": {
  9356. "SlevomatCodingStandard\\": "SlevomatCodingStandard/"
  9357. }
  9358. },
  9359. "notification-url": "https://packagist.org/downloads/",
  9360. "license": [
  9361. "MIT"
  9362. ],
  9363. "description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.",
  9364. "keywords": [
  9365. "dev",
  9366. "phpcs"
  9367. ],
  9368. "support": {
  9369. "issues": "https://github.com/slevomat/coding-standard/issues",
  9370. "source": "https://github.com/slevomat/coding-standard/tree/8.15.0"
  9371. },
  9372. "funding": [
  9373. {
  9374. "url": "https://github.com/kukulich",
  9375. "type": "github"
  9376. },
  9377. {
  9378. "url": "https://tidelift.com/funding/github/packagist/slevomat/coding-standard",
  9379. "type": "tidelift"
  9380. }
  9381. ],
  9382. "time": "2024-03-09T15:20:58+00:00"
  9383. },
  9384. {
  9385. "name": "squizlabs/php_codesniffer",
  9386. "version": "3.9.1",
  9387. "source": {
  9388. "type": "git",
  9389. "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git",
  9390. "reference": "267a4405fff1d9c847134db3a3c92f1ab7f77909"
  9391. },
  9392. "dist": {
  9393. "type": "zip",
  9394. "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/267a4405fff1d9c847134db3a3c92f1ab7f77909",
  9395. "reference": "267a4405fff1d9c847134db3a3c92f1ab7f77909",
  9396. "shasum": ""
  9397. },
  9398. "require": {
  9399. "ext-simplexml": "*",
  9400. "ext-tokenizer": "*",
  9401. "ext-xmlwriter": "*",
  9402. "php": ">=5.4.0"
  9403. },
  9404. "require-dev": {
  9405. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4"
  9406. },
  9407. "bin": [
  9408. "bin/phpcbf",
  9409. "bin/phpcs"
  9410. ],
  9411. "type": "library",
  9412. "extra": {
  9413. "branch-alias": {
  9414. "dev-master": "3.x-dev"
  9415. }
  9416. },
  9417. "notification-url": "https://packagist.org/downloads/",
  9418. "license": [
  9419. "BSD-3-Clause"
  9420. ],
  9421. "authors": [
  9422. {
  9423. "name": "Greg Sherwood",
  9424. "role": "Former lead"
  9425. },
  9426. {
  9427. "name": "Juliette Reinders Folmer",
  9428. "role": "Current lead"
  9429. },
  9430. {
  9431. "name": "Contributors",
  9432. "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer/graphs/contributors"
  9433. }
  9434. ],
  9435. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  9436. "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
  9437. "keywords": [
  9438. "phpcs",
  9439. "standards",
  9440. "static analysis"
  9441. ],
  9442. "support": {
  9443. "issues": "https://github.com/PHPCSStandards/PHP_CodeSniffer/issues",
  9444. "security": "https://github.com/PHPCSStandards/PHP_CodeSniffer/security/policy",
  9445. "source": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
  9446. "wiki": "https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki"
  9447. },
  9448. "funding": [
  9449. {
  9450. "url": "https://github.com/PHPCSStandards",
  9451. "type": "github"
  9452. },
  9453. {
  9454. "url": "https://github.com/jrfnl",
  9455. "type": "github"
  9456. },
  9457. {
  9458. "url": "https://opencollective.com/php_codesniffer",
  9459. "type": "open_collective"
  9460. }
  9461. ],
  9462. "time": "2024-03-31T21:03:09+00:00"
  9463. },
  9464. {
  9465. "name": "symfony/cache",
  9466. "version": "v7.0.6",
  9467. "source": {
  9468. "type": "git",
  9469. "url": "https://github.com/symfony/cache.git",
  9470. "reference": "2d0d3f92c74c445410d05374908b03e0a1131e2b"
  9471. },
  9472. "dist": {
  9473. "type": "zip",
  9474. "url": "https://api.github.com/repos/symfony/cache/zipball/2d0d3f92c74c445410d05374908b03e0a1131e2b",
  9475. "reference": "2d0d3f92c74c445410d05374908b03e0a1131e2b",
  9476. "shasum": ""
  9477. },
  9478. "require": {
  9479. "php": ">=8.2",
  9480. "psr/cache": "^2.0|^3.0",
  9481. "psr/log": "^1.1|^2|^3",
  9482. "symfony/cache-contracts": "^2.5|^3",
  9483. "symfony/service-contracts": "^2.5|^3",
  9484. "symfony/var-exporter": "^6.4|^7.0"
  9485. },
  9486. "conflict": {
  9487. "doctrine/dbal": "<3.6",
  9488. "symfony/dependency-injection": "<6.4",
  9489. "symfony/http-kernel": "<6.4",
  9490. "symfony/var-dumper": "<6.4"
  9491. },
  9492. "provide": {
  9493. "psr/cache-implementation": "2.0|3.0",
  9494. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  9495. "symfony/cache-implementation": "1.1|2.0|3.0"
  9496. },
  9497. "require-dev": {
  9498. "cache/integration-tests": "dev-master",
  9499. "doctrine/dbal": "^3.6|^4",
  9500. "predis/predis": "^1.1|^2.0",
  9501. "psr/simple-cache": "^1.0|^2.0|^3.0",
  9502. "symfony/config": "^6.4|^7.0",
  9503. "symfony/dependency-injection": "^6.4|^7.0",
  9504. "symfony/filesystem": "^6.4|^7.0",
  9505. "symfony/http-kernel": "^6.4|^7.0",
  9506. "symfony/messenger": "^6.4|^7.0",
  9507. "symfony/var-dumper": "^6.4|^7.0"
  9508. },
  9509. "type": "library",
  9510. "autoload": {
  9511. "psr-4": {
  9512. "Symfony\\Component\\Cache\\": ""
  9513. },
  9514. "classmap": [
  9515. "Traits/ValueWrapper.php"
  9516. ],
  9517. "exclude-from-classmap": [
  9518. "/Tests/"
  9519. ]
  9520. },
  9521. "notification-url": "https://packagist.org/downloads/",
  9522. "license": [
  9523. "MIT"
  9524. ],
  9525. "authors": [
  9526. {
  9527. "name": "Nicolas Grekas",
  9528. "email": "[email protected]"
  9529. },
  9530. {
  9531. "name": "Symfony Community",
  9532. "homepage": "https://symfony.com/contributors"
  9533. }
  9534. ],
  9535. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  9536. "homepage": "https://symfony.com",
  9537. "keywords": [
  9538. "caching",
  9539. "psr6"
  9540. ],
  9541. "support": {
  9542. "source": "https://github.com/symfony/cache/tree/v7.0.6"
  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://tidelift.com/funding/github/packagist/symfony/symfony",
  9555. "type": "tidelift"
  9556. }
  9557. ],
  9558. "time": "2024-03-27T19:55:25+00:00"
  9559. },
  9560. {
  9561. "name": "symfony/cache-contracts",
  9562. "version": "v3.4.2",
  9563. "source": {
  9564. "type": "git",
  9565. "url": "https://github.com/symfony/cache-contracts.git",
  9566. "reference": "2c9db6509a1b21dad229606897639d3284f54b2a"
  9567. },
  9568. "dist": {
  9569. "type": "zip",
  9570. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/2c9db6509a1b21dad229606897639d3284f54b2a",
  9571. "reference": "2c9db6509a1b21dad229606897639d3284f54b2a",
  9572. "shasum": ""
  9573. },
  9574. "require": {
  9575. "php": ">=8.1",
  9576. "psr/cache": "^3.0"
  9577. },
  9578. "type": "library",
  9579. "extra": {
  9580. "branch-alias": {
  9581. "dev-main": "3.4-dev"
  9582. },
  9583. "thanks": {
  9584. "name": "symfony/contracts",
  9585. "url": "https://github.com/symfony/contracts"
  9586. }
  9587. },
  9588. "autoload": {
  9589. "psr-4": {
  9590. "Symfony\\Contracts\\Cache\\": ""
  9591. }
  9592. },
  9593. "notification-url": "https://packagist.org/downloads/",
  9594. "license": [
  9595. "MIT"
  9596. ],
  9597. "authors": [
  9598. {
  9599. "name": "Nicolas Grekas",
  9600. "email": "[email protected]"
  9601. },
  9602. {
  9603. "name": "Symfony Community",
  9604. "homepage": "https://symfony.com/contributors"
  9605. }
  9606. ],
  9607. "description": "Generic abstractions related to caching",
  9608. "homepage": "https://symfony.com",
  9609. "keywords": [
  9610. "abstractions",
  9611. "contracts",
  9612. "decoupling",
  9613. "interfaces",
  9614. "interoperability",
  9615. "standards"
  9616. ],
  9617. "support": {
  9618. "source": "https://github.com/symfony/cache-contracts/tree/v3.4.2"
  9619. },
  9620. "funding": [
  9621. {
  9622. "url": "https://symfony.com/sponsor",
  9623. "type": "custom"
  9624. },
  9625. {
  9626. "url": "https://github.com/fabpot",
  9627. "type": "github"
  9628. },
  9629. {
  9630. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9631. "type": "tidelift"
  9632. }
  9633. ],
  9634. "time": "2024-01-23T14:51:35+00:00"
  9635. },
  9636. {
  9637. "name": "symfony/console",
  9638. "version": "v7.0.6",
  9639. "source": {
  9640. "type": "git",
  9641. "url": "https://github.com/symfony/console.git",
  9642. "reference": "fde915cd8e7eb99b3d531d3d5c09531429c3f9e5"
  9643. },
  9644. "dist": {
  9645. "type": "zip",
  9646. "url": "https://api.github.com/repos/symfony/console/zipball/fde915cd8e7eb99b3d531d3d5c09531429c3f9e5",
  9647. "reference": "fde915cd8e7eb99b3d531d3d5c09531429c3f9e5",
  9648. "shasum": ""
  9649. },
  9650. "require": {
  9651. "php": ">=8.2",
  9652. "symfony/polyfill-mbstring": "~1.0",
  9653. "symfony/service-contracts": "^2.5|^3",
  9654. "symfony/string": "^6.4|^7.0"
  9655. },
  9656. "conflict": {
  9657. "symfony/dependency-injection": "<6.4",
  9658. "symfony/dotenv": "<6.4",
  9659. "symfony/event-dispatcher": "<6.4",
  9660. "symfony/lock": "<6.4",
  9661. "symfony/process": "<6.4"
  9662. },
  9663. "provide": {
  9664. "psr/log-implementation": "1.0|2.0|3.0"
  9665. },
  9666. "require-dev": {
  9667. "psr/log": "^1|^2|^3",
  9668. "symfony/config": "^6.4|^7.0",
  9669. "symfony/dependency-injection": "^6.4|^7.0",
  9670. "symfony/event-dispatcher": "^6.4|^7.0",
  9671. "symfony/http-foundation": "^6.4|^7.0",
  9672. "symfony/http-kernel": "^6.4|^7.0",
  9673. "symfony/lock": "^6.4|^7.0",
  9674. "symfony/messenger": "^6.4|^7.0",
  9675. "symfony/process": "^6.4|^7.0",
  9676. "symfony/stopwatch": "^6.4|^7.0",
  9677. "symfony/var-dumper": "^6.4|^7.0"
  9678. },
  9679. "type": "library",
  9680. "autoload": {
  9681. "psr-4": {
  9682. "Symfony\\Component\\Console\\": ""
  9683. },
  9684. "exclude-from-classmap": [
  9685. "/Tests/"
  9686. ]
  9687. },
  9688. "notification-url": "https://packagist.org/downloads/",
  9689. "license": [
  9690. "MIT"
  9691. ],
  9692. "authors": [
  9693. {
  9694. "name": "Fabien Potencier",
  9695. "email": "[email protected]"
  9696. },
  9697. {
  9698. "name": "Symfony Community",
  9699. "homepage": "https://symfony.com/contributors"
  9700. }
  9701. ],
  9702. "description": "Eases the creation of beautiful and testable command line interfaces",
  9703. "homepage": "https://symfony.com",
  9704. "keywords": [
  9705. "cli",
  9706. "command-line",
  9707. "console",
  9708. "terminal"
  9709. ],
  9710. "support": {
  9711. "source": "https://github.com/symfony/console/tree/v7.0.6"
  9712. },
  9713. "funding": [
  9714. {
  9715. "url": "https://symfony.com/sponsor",
  9716. "type": "custom"
  9717. },
  9718. {
  9719. "url": "https://github.com/fabpot",
  9720. "type": "github"
  9721. },
  9722. {
  9723. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9724. "type": "tidelift"
  9725. }
  9726. ],
  9727. "time": "2024-04-01T11:04:53+00:00"
  9728. },
  9729. {
  9730. "name": "symfony/event-dispatcher",
  9731. "version": "v7.0.3",
  9732. "source": {
  9733. "type": "git",
  9734. "url": "https://github.com/symfony/event-dispatcher.git",
  9735. "reference": "834c28d533dd0636f910909d01b9ff45cc094b5e"
  9736. },
  9737. "dist": {
  9738. "type": "zip",
  9739. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/834c28d533dd0636f910909d01b9ff45cc094b5e",
  9740. "reference": "834c28d533dd0636f910909d01b9ff45cc094b5e",
  9741. "shasum": ""
  9742. },
  9743. "require": {
  9744. "php": ">=8.2",
  9745. "symfony/event-dispatcher-contracts": "^2.5|^3"
  9746. },
  9747. "conflict": {
  9748. "symfony/dependency-injection": "<6.4",
  9749. "symfony/service-contracts": "<2.5"
  9750. },
  9751. "provide": {
  9752. "psr/event-dispatcher-implementation": "1.0",
  9753. "symfony/event-dispatcher-implementation": "2.0|3.0"
  9754. },
  9755. "require-dev": {
  9756. "psr/log": "^1|^2|^3",
  9757. "symfony/config": "^6.4|^7.0",
  9758. "symfony/dependency-injection": "^6.4|^7.0",
  9759. "symfony/error-handler": "^6.4|^7.0",
  9760. "symfony/expression-language": "^6.4|^7.0",
  9761. "symfony/http-foundation": "^6.4|^7.0",
  9762. "symfony/service-contracts": "^2.5|^3",
  9763. "symfony/stopwatch": "^6.4|^7.0"
  9764. },
  9765. "type": "library",
  9766. "autoload": {
  9767. "psr-4": {
  9768. "Symfony\\Component\\EventDispatcher\\": ""
  9769. },
  9770. "exclude-from-classmap": [
  9771. "/Tests/"
  9772. ]
  9773. },
  9774. "notification-url": "https://packagist.org/downloads/",
  9775. "license": [
  9776. "MIT"
  9777. ],
  9778. "authors": [
  9779. {
  9780. "name": "Fabien Potencier",
  9781. "email": "[email protected]"
  9782. },
  9783. {
  9784. "name": "Symfony Community",
  9785. "homepage": "https://symfony.com/contributors"
  9786. }
  9787. ],
  9788. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  9789. "homepage": "https://symfony.com",
  9790. "support": {
  9791. "source": "https://github.com/symfony/event-dispatcher/tree/v7.0.3"
  9792. },
  9793. "funding": [
  9794. {
  9795. "url": "https://symfony.com/sponsor",
  9796. "type": "custom"
  9797. },
  9798. {
  9799. "url": "https://github.com/fabpot",
  9800. "type": "github"
  9801. },
  9802. {
  9803. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9804. "type": "tidelift"
  9805. }
  9806. ],
  9807. "time": "2024-01-23T15:02:46+00:00"
  9808. },
  9809. {
  9810. "name": "symfony/event-dispatcher-contracts",
  9811. "version": "v3.4.2",
  9812. "source": {
  9813. "type": "git",
  9814. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  9815. "reference": "4e64b49bf370ade88e567de29465762e316e4224"
  9816. },
  9817. "dist": {
  9818. "type": "zip",
  9819. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/4e64b49bf370ade88e567de29465762e316e4224",
  9820. "reference": "4e64b49bf370ade88e567de29465762e316e4224",
  9821. "shasum": ""
  9822. },
  9823. "require": {
  9824. "php": ">=8.1",
  9825. "psr/event-dispatcher": "^1"
  9826. },
  9827. "type": "library",
  9828. "extra": {
  9829. "branch-alias": {
  9830. "dev-main": "3.4-dev"
  9831. },
  9832. "thanks": {
  9833. "name": "symfony/contracts",
  9834. "url": "https://github.com/symfony/contracts"
  9835. }
  9836. },
  9837. "autoload": {
  9838. "psr-4": {
  9839. "Symfony\\Contracts\\EventDispatcher\\": ""
  9840. }
  9841. },
  9842. "notification-url": "https://packagist.org/downloads/",
  9843. "license": [
  9844. "MIT"
  9845. ],
  9846. "authors": [
  9847. {
  9848. "name": "Nicolas Grekas",
  9849. "email": "[email protected]"
  9850. },
  9851. {
  9852. "name": "Symfony Community",
  9853. "homepage": "https://symfony.com/contributors"
  9854. }
  9855. ],
  9856. "description": "Generic abstractions related to dispatching event",
  9857. "homepage": "https://symfony.com",
  9858. "keywords": [
  9859. "abstractions",
  9860. "contracts",
  9861. "decoupling",
  9862. "interfaces",
  9863. "interoperability",
  9864. "standards"
  9865. ],
  9866. "support": {
  9867. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.4.2"
  9868. },
  9869. "funding": [
  9870. {
  9871. "url": "https://symfony.com/sponsor",
  9872. "type": "custom"
  9873. },
  9874. {
  9875. "url": "https://github.com/fabpot",
  9876. "type": "github"
  9877. },
  9878. {
  9879. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9880. "type": "tidelift"
  9881. }
  9882. ],
  9883. "time": "2024-01-23T14:51:35+00:00"
  9884. },
  9885. {
  9886. "name": "symfony/filesystem",
  9887. "version": "v7.0.6",
  9888. "source": {
  9889. "type": "git",
  9890. "url": "https://github.com/symfony/filesystem.git",
  9891. "reference": "408105dff4c104454100730bdfd1a9cdd993f04d"
  9892. },
  9893. "dist": {
  9894. "type": "zip",
  9895. "url": "https://api.github.com/repos/symfony/filesystem/zipball/408105dff4c104454100730bdfd1a9cdd993f04d",
  9896. "reference": "408105dff4c104454100730bdfd1a9cdd993f04d",
  9897. "shasum": ""
  9898. },
  9899. "require": {
  9900. "php": ">=8.2",
  9901. "symfony/polyfill-ctype": "~1.8",
  9902. "symfony/polyfill-mbstring": "~1.8"
  9903. },
  9904. "type": "library",
  9905. "autoload": {
  9906. "psr-4": {
  9907. "Symfony\\Component\\Filesystem\\": ""
  9908. },
  9909. "exclude-from-classmap": [
  9910. "/Tests/"
  9911. ]
  9912. },
  9913. "notification-url": "https://packagist.org/downloads/",
  9914. "license": [
  9915. "MIT"
  9916. ],
  9917. "authors": [
  9918. {
  9919. "name": "Fabien Potencier",
  9920. "email": "[email protected]"
  9921. },
  9922. {
  9923. "name": "Symfony Community",
  9924. "homepage": "https://symfony.com/contributors"
  9925. }
  9926. ],
  9927. "description": "Provides basic utilities for the filesystem",
  9928. "homepage": "https://symfony.com",
  9929. "support": {
  9930. "source": "https://github.com/symfony/filesystem/tree/v7.0.6"
  9931. },
  9932. "funding": [
  9933. {
  9934. "url": "https://symfony.com/sponsor",
  9935. "type": "custom"
  9936. },
  9937. {
  9938. "url": "https://github.com/fabpot",
  9939. "type": "github"
  9940. },
  9941. {
  9942. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9943. "type": "tidelift"
  9944. }
  9945. ],
  9946. "time": "2024-03-21T19:37:36+00:00"
  9947. },
  9948. {
  9949. "name": "symfony/finder",
  9950. "version": "v7.0.0",
  9951. "source": {
  9952. "type": "git",
  9953. "url": "https://github.com/symfony/finder.git",
  9954. "reference": "6e5688d69f7cfc4ed4a511e96007e06c2d34ce56"
  9955. },
  9956. "dist": {
  9957. "type": "zip",
  9958. "url": "https://api.github.com/repos/symfony/finder/zipball/6e5688d69f7cfc4ed4a511e96007e06c2d34ce56",
  9959. "reference": "6e5688d69f7cfc4ed4a511e96007e06c2d34ce56",
  9960. "shasum": ""
  9961. },
  9962. "require": {
  9963. "php": ">=8.2"
  9964. },
  9965. "require-dev": {
  9966. "symfony/filesystem": "^6.4|^7.0"
  9967. },
  9968. "type": "library",
  9969. "autoload": {
  9970. "psr-4": {
  9971. "Symfony\\Component\\Finder\\": ""
  9972. },
  9973. "exclude-from-classmap": [
  9974. "/Tests/"
  9975. ]
  9976. },
  9977. "notification-url": "https://packagist.org/downloads/",
  9978. "license": [
  9979. "MIT"
  9980. ],
  9981. "authors": [
  9982. {
  9983. "name": "Fabien Potencier",
  9984. "email": "[email protected]"
  9985. },
  9986. {
  9987. "name": "Symfony Community",
  9988. "homepage": "https://symfony.com/contributors"
  9989. }
  9990. ],
  9991. "description": "Finds files and directories via an intuitive fluent interface",
  9992. "homepage": "https://symfony.com",
  9993. "support": {
  9994. "source": "https://github.com/symfony/finder/tree/v7.0.0"
  9995. },
  9996. "funding": [
  9997. {
  9998. "url": "https://symfony.com/sponsor",
  9999. "type": "custom"
  10000. },
  10001. {
  10002. "url": "https://github.com/fabpot",
  10003. "type": "github"
  10004. },
  10005. {
  10006. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10007. "type": "tidelift"
  10008. }
  10009. ],
  10010. "time": "2023-10-31T17:59:56+00:00"
  10011. },
  10012. {
  10013. "name": "symfony/polyfill-php81",
  10014. "version": "v1.29.0",
  10015. "source": {
  10016. "type": "git",
  10017. "url": "https://github.com/symfony/polyfill-php81.git",
  10018. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
  10019. },
  10020. "dist": {
  10021. "type": "zip",
  10022. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
  10023. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
  10024. "shasum": ""
  10025. },
  10026. "require": {
  10027. "php": ">=7.1"
  10028. },
  10029. "type": "library",
  10030. "extra": {
  10031. "thanks": {
  10032. "name": "symfony/polyfill",
  10033. "url": "https://github.com/symfony/polyfill"
  10034. }
  10035. },
  10036. "autoload": {
  10037. "files": [
  10038. "bootstrap.php"
  10039. ],
  10040. "psr-4": {
  10041. "Symfony\\Polyfill\\Php81\\": ""
  10042. },
  10043. "classmap": [
  10044. "Resources/stubs"
  10045. ]
  10046. },
  10047. "notification-url": "https://packagist.org/downloads/",
  10048. "license": [
  10049. "MIT"
  10050. ],
  10051. "authors": [
  10052. {
  10053. "name": "Nicolas Grekas",
  10054. "email": "[email protected]"
  10055. },
  10056. {
  10057. "name": "Symfony Community",
  10058. "homepage": "https://symfony.com/contributors"
  10059. }
  10060. ],
  10061. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  10062. "homepage": "https://symfony.com",
  10063. "keywords": [
  10064. "compatibility",
  10065. "polyfill",
  10066. "portable",
  10067. "shim"
  10068. ],
  10069. "support": {
  10070. "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0"
  10071. },
  10072. "funding": [
  10073. {
  10074. "url": "https://symfony.com/sponsor",
  10075. "type": "custom"
  10076. },
  10077. {
  10078. "url": "https://github.com/fabpot",
  10079. "type": "github"
  10080. },
  10081. {
  10082. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10083. "type": "tidelift"
  10084. }
  10085. ],
  10086. "time": "2024-01-29T20:11:03+00:00"
  10087. },
  10088. {
  10089. "name": "symfony/process",
  10090. "version": "v7.0.4",
  10091. "source": {
  10092. "type": "git",
  10093. "url": "https://github.com/symfony/process.git",
  10094. "reference": "0e7727191c3b71ebec6d529fa0e50a01ca5679e9"
  10095. },
  10096. "dist": {
  10097. "type": "zip",
  10098. "url": "https://api.github.com/repos/symfony/process/zipball/0e7727191c3b71ebec6d529fa0e50a01ca5679e9",
  10099. "reference": "0e7727191c3b71ebec6d529fa0e50a01ca5679e9",
  10100. "shasum": ""
  10101. },
  10102. "require": {
  10103. "php": ">=8.2"
  10104. },
  10105. "type": "library",
  10106. "autoload": {
  10107. "psr-4": {
  10108. "Symfony\\Component\\Process\\": ""
  10109. },
  10110. "exclude-from-classmap": [
  10111. "/Tests/"
  10112. ]
  10113. },
  10114. "notification-url": "https://packagist.org/downloads/",
  10115. "license": [
  10116. "MIT"
  10117. ],
  10118. "authors": [
  10119. {
  10120. "name": "Fabien Potencier",
  10121. "email": "[email protected]"
  10122. },
  10123. {
  10124. "name": "Symfony Community",
  10125. "homepage": "https://symfony.com/contributors"
  10126. }
  10127. ],
  10128. "description": "Executes commands in sub-processes",
  10129. "homepage": "https://symfony.com",
  10130. "support": {
  10131. "source": "https://github.com/symfony/process/tree/v7.0.4"
  10132. },
  10133. "funding": [
  10134. {
  10135. "url": "https://symfony.com/sponsor",
  10136. "type": "custom"
  10137. },
  10138. {
  10139. "url": "https://github.com/fabpot",
  10140. "type": "github"
  10141. },
  10142. {
  10143. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10144. "type": "tidelift"
  10145. }
  10146. ],
  10147. "time": "2024-02-22T20:27:20+00:00"
  10148. },
  10149. {
  10150. "name": "symfony/stopwatch",
  10151. "version": "v7.0.3",
  10152. "source": {
  10153. "type": "git",
  10154. "url": "https://github.com/symfony/stopwatch.git",
  10155. "reference": "983900d6fddf2b0cbaacacbbad07610854bd8112"
  10156. },
  10157. "dist": {
  10158. "type": "zip",
  10159. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/983900d6fddf2b0cbaacacbbad07610854bd8112",
  10160. "reference": "983900d6fddf2b0cbaacacbbad07610854bd8112",
  10161. "shasum": ""
  10162. },
  10163. "require": {
  10164. "php": ">=8.2",
  10165. "symfony/service-contracts": "^2.5|^3"
  10166. },
  10167. "type": "library",
  10168. "autoload": {
  10169. "psr-4": {
  10170. "Symfony\\Component\\Stopwatch\\": ""
  10171. },
  10172. "exclude-from-classmap": [
  10173. "/Tests/"
  10174. ]
  10175. },
  10176. "notification-url": "https://packagist.org/downloads/",
  10177. "license": [
  10178. "MIT"
  10179. ],
  10180. "authors": [
  10181. {
  10182. "name": "Fabien Potencier",
  10183. "email": "[email protected]"
  10184. },
  10185. {
  10186. "name": "Symfony Community",
  10187. "homepage": "https://symfony.com/contributors"
  10188. }
  10189. ],
  10190. "description": "Provides a way to profile code",
  10191. "homepage": "https://symfony.com",
  10192. "support": {
  10193. "source": "https://github.com/symfony/stopwatch/tree/v7.0.3"
  10194. },
  10195. "funding": [
  10196. {
  10197. "url": "https://symfony.com/sponsor",
  10198. "type": "custom"
  10199. },
  10200. {
  10201. "url": "https://github.com/fabpot",
  10202. "type": "github"
  10203. },
  10204. {
  10205. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10206. "type": "tidelift"
  10207. }
  10208. ],
  10209. "time": "2024-01-23T15:02:46+00:00"
  10210. },
  10211. {
  10212. "name": "symfony/string",
  10213. "version": "v7.0.4",
  10214. "source": {
  10215. "type": "git",
  10216. "url": "https://github.com/symfony/string.git",
  10217. "reference": "f5832521b998b0bec40bee688ad5de98d4cf111b"
  10218. },
  10219. "dist": {
  10220. "type": "zip",
  10221. "url": "https://api.github.com/repos/symfony/string/zipball/f5832521b998b0bec40bee688ad5de98d4cf111b",
  10222. "reference": "f5832521b998b0bec40bee688ad5de98d4cf111b",
  10223. "shasum": ""
  10224. },
  10225. "require": {
  10226. "php": ">=8.2",
  10227. "symfony/polyfill-ctype": "~1.8",
  10228. "symfony/polyfill-intl-grapheme": "~1.0",
  10229. "symfony/polyfill-intl-normalizer": "~1.0",
  10230. "symfony/polyfill-mbstring": "~1.0"
  10231. },
  10232. "conflict": {
  10233. "symfony/translation-contracts": "<2.5"
  10234. },
  10235. "require-dev": {
  10236. "symfony/error-handler": "^6.4|^7.0",
  10237. "symfony/http-client": "^6.4|^7.0",
  10238. "symfony/intl": "^6.4|^7.0",
  10239. "symfony/translation-contracts": "^2.5|^3.0",
  10240. "symfony/var-exporter": "^6.4|^7.0"
  10241. },
  10242. "type": "library",
  10243. "autoload": {
  10244. "files": [
  10245. "Resources/functions.php"
  10246. ],
  10247. "psr-4": {
  10248. "Symfony\\Component\\String\\": ""
  10249. },
  10250. "exclude-from-classmap": [
  10251. "/Tests/"
  10252. ]
  10253. },
  10254. "notification-url": "https://packagist.org/downloads/",
  10255. "license": [
  10256. "MIT"
  10257. ],
  10258. "authors": [
  10259. {
  10260. "name": "Nicolas Grekas",
  10261. "email": "[email protected]"
  10262. },
  10263. {
  10264. "name": "Symfony Community",
  10265. "homepage": "https://symfony.com/contributors"
  10266. }
  10267. ],
  10268. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  10269. "homepage": "https://symfony.com",
  10270. "keywords": [
  10271. "grapheme",
  10272. "i18n",
  10273. "string",
  10274. "unicode",
  10275. "utf-8",
  10276. "utf8"
  10277. ],
  10278. "support": {
  10279. "source": "https://github.com/symfony/string/tree/v7.0.4"
  10280. },
  10281. "funding": [
  10282. {
  10283. "url": "https://symfony.com/sponsor",
  10284. "type": "custom"
  10285. },
  10286. {
  10287. "url": "https://github.com/fabpot",
  10288. "type": "github"
  10289. },
  10290. {
  10291. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10292. "type": "tidelift"
  10293. }
  10294. ],
  10295. "time": "2024-02-01T13:17:36+00:00"
  10296. },
  10297. {
  10298. "name": "symfony/var-exporter",
  10299. "version": "v7.0.6",
  10300. "source": {
  10301. "type": "git",
  10302. "url": "https://github.com/symfony/var-exporter.git",
  10303. "reference": "c74c568d2a15a1d407cf40d61ea82bc2d521e27b"
  10304. },
  10305. "dist": {
  10306. "type": "zip",
  10307. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/c74c568d2a15a1d407cf40d61ea82bc2d521e27b",
  10308. "reference": "c74c568d2a15a1d407cf40d61ea82bc2d521e27b",
  10309. "shasum": ""
  10310. },
  10311. "require": {
  10312. "php": ">=8.2"
  10313. },
  10314. "require-dev": {
  10315. "symfony/property-access": "^6.4|^7.0",
  10316. "symfony/serializer": "^6.4|^7.0",
  10317. "symfony/var-dumper": "^6.4|^7.0"
  10318. },
  10319. "type": "library",
  10320. "autoload": {
  10321. "psr-4": {
  10322. "Symfony\\Component\\VarExporter\\": ""
  10323. },
  10324. "exclude-from-classmap": [
  10325. "/Tests/"
  10326. ]
  10327. },
  10328. "notification-url": "https://packagist.org/downloads/",
  10329. "license": [
  10330. "MIT"
  10331. ],
  10332. "authors": [
  10333. {
  10334. "name": "Nicolas Grekas",
  10335. "email": "[email protected]"
  10336. },
  10337. {
  10338. "name": "Symfony Community",
  10339. "homepage": "https://symfony.com/contributors"
  10340. }
  10341. ],
  10342. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  10343. "homepage": "https://symfony.com",
  10344. "keywords": [
  10345. "clone",
  10346. "construct",
  10347. "export",
  10348. "hydrate",
  10349. "instantiate",
  10350. "lazy-loading",
  10351. "proxy",
  10352. "serialize"
  10353. ],
  10354. "support": {
  10355. "source": "https://github.com/symfony/var-exporter/tree/v7.0.6"
  10356. },
  10357. "funding": [
  10358. {
  10359. "url": "https://symfony.com/sponsor",
  10360. "type": "custom"
  10361. },
  10362. {
  10363. "url": "https://github.com/fabpot",
  10364. "type": "github"
  10365. },
  10366. {
  10367. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10368. "type": "tidelift"
  10369. }
  10370. ],
  10371. "time": "2024-03-20T21:25:22+00:00"
  10372. },
  10373. {
  10374. "name": "theseer/tokenizer",
  10375. "version": "1.2.3",
  10376. "source": {
  10377. "type": "git",
  10378. "url": "https://github.com/theseer/tokenizer.git",
  10379. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10380. },
  10381. "dist": {
  10382. "type": "zip",
  10383. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10384. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10385. "shasum": ""
  10386. },
  10387. "require": {
  10388. "ext-dom": "*",
  10389. "ext-tokenizer": "*",
  10390. "ext-xmlwriter": "*",
  10391. "php": "^7.2 || ^8.0"
  10392. },
  10393. "type": "library",
  10394. "autoload": {
  10395. "classmap": [
  10396. "src/"
  10397. ]
  10398. },
  10399. "notification-url": "https://packagist.org/downloads/",
  10400. "license": [
  10401. "BSD-3-Clause"
  10402. ],
  10403. "authors": [
  10404. {
  10405. "name": "Arne Blankerts",
  10406. "email": "[email protected]",
  10407. "role": "Developer"
  10408. }
  10409. ],
  10410. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10411. "support": {
  10412. "issues": "https://github.com/theseer/tokenizer/issues",
  10413. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10414. },
  10415. "funding": [
  10416. {
  10417. "url": "https://github.com/theseer",
  10418. "type": "github"
  10419. }
  10420. ],
  10421. "time": "2024-03-03T12:36:25+00:00"
  10422. }
  10423. ],
  10424. "aliases": [],
  10425. "minimum-stability": "stable",
  10426. "stability-flags": {
  10427. "alipaysdk/openapi": 20
  10428. },
  10429. "prefer-stable": false,
  10430. "prefer-lowest": false,
  10431. "platform": {
  10432. "php": "^8.2",
  10433. "ext-bcmath": "*",
  10434. "ext-curl": "*",
  10435. "ext-fileinfo": "*",
  10436. "ext-json": "*",
  10437. "ext-mbstring": "*",
  10438. "ext-mysqli": "*",
  10439. "ext-openssl": "*",
  10440. "ext-pdo": "*",
  10441. "ext-posix": "*",
  10442. "ext-redis": "*",
  10443. "ext-xml": "*",
  10444. "ext-yaml": "*",
  10445. "ext-zip": "*"
  10446. },
  10447. "platform-dev": [],
  10448. "plugin-api-version": "2.6.0"
  10449. }