composer.lock 245 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807
  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": "42efa29f92d7a957b961fb1185458530",
  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. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "ext-json": "*",
  31. "php": "^5.5 || ^7.0 || ^8.0"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5",
  35. "squizlabs/php_codesniffer": "^3.6"
  36. },
  37. "type": "library",
  38. "autoload": {
  39. "files": [
  40. "src/helpers.php"
  41. ],
  42. "psr-4": {
  43. "Adbar\\": "src"
  44. }
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "MIT"
  49. ],
  50. "authors": [
  51. {
  52. "name": "Riku Särkinen",
  53. "email": "riku@adbar.io"
  54. }
  55. ],
  56. "description": "PHP dot notation access to arrays",
  57. "homepage": "https://github.com/adbario/php-dot-notation",
  58. "keywords": [
  59. "ArrayAccess",
  60. "dotnotation"
  61. ],
  62. "support": {
  63. "issues": "https://github.com/adbario/php-dot-notation/issues",
  64. "source": "https://github.com/adbario/php-dot-notation/tree/2.5.0"
  65. },
  66. "time": "2022-10-14T20:31:46+00:00"
  67. },
  68. {
  69. "name": "alibabacloud/credentials",
  70. "version": "1.2.0",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/aliyun/credentials-php.git",
  74. "reference": "ebcda2e628180b4df235b46a86e1d014c561f5d9"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/ebcda2e628180b4df235b46a86e1d014c561f5d9",
  79. "reference": "ebcda2e628180b4df235b46a86e1d014c561f5d9",
  80. "shasum": "",
  81. "mirrors": [
  82. {
  83. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  84. "preferred": true
  85. }
  86. ]
  87. },
  88. "require": {
  89. "adbario/php-dot-notation": "^2.2",
  90. "alibabacloud/tea": "^3.0",
  91. "ext-curl": "*",
  92. "ext-json": "*",
  93. "ext-libxml": "*",
  94. "ext-mbstring": "*",
  95. "ext-openssl": "*",
  96. "ext-simplexml": "*",
  97. "ext-xmlwriter": "*",
  98. "guzzlehttp/guzzle": "^6.3|^7.0",
  99. "php": ">=5.6"
  100. },
  101. "require-dev": {
  102. "composer/composer": "^1.8",
  103. "drupal/coder": "^8.3",
  104. "ext-dom": "*",
  105. "ext-pcre": "*",
  106. "ext-sockets": "*",
  107. "ext-spl": "*",
  108. "mikey179/vfsstream": "^1.6",
  109. "monolog/monolog": "^1.24",
  110. "phpunit/phpunit": "^5.7|^6.6|^9.3",
  111. "psr/cache": "^1.0",
  112. "symfony/dotenv": "^3.4",
  113. "symfony/var-dumper": "^3.4"
  114. },
  115. "suggest": {
  116. "ext-sockets": "To use client-side monitoring"
  117. },
  118. "type": "library",
  119. "autoload": {
  120. "psr-4": {
  121. "AlibabaCloud\\Credentials\\": "src"
  122. }
  123. },
  124. "notification-url": "https://packagist.org/downloads/",
  125. "license": [
  126. "Apache-2.0"
  127. ],
  128. "authors": [
  129. {
  130. "name": "Alibaba Cloud SDK",
  131. "email": "sdk-team@alibabacloud.com",
  132. "homepage": "http://www.alibabacloud.com"
  133. }
  134. ],
  135. "description": "Alibaba Cloud Credentials for PHP",
  136. "homepage": "https://www.alibabacloud.com/",
  137. "keywords": [
  138. "alibaba",
  139. "alibabacloud",
  140. "aliyun",
  141. "client",
  142. "cloud",
  143. "credentials",
  144. "library",
  145. "sdk",
  146. "tool"
  147. ],
  148. "support": {
  149. "issues": "https://github.com/aliyun/credentials-php/issues",
  150. "source": "https://github.com/aliyun/credentials-php"
  151. },
  152. "time": "2024-10-16T13:29:17+00:00"
  153. },
  154. {
  155. "name": "alibabacloud/darabonba-openapi",
  156. "version": "0.2.13",
  157. "source": {
  158. "type": "git",
  159. "url": "https://github.com/alibabacloud-sdk-php/darabonba-openapi.git",
  160. "reference": "0213396384e2c064eefd614f3dd53636a63f987f"
  161. },
  162. "dist": {
  163. "type": "zip",
  164. "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba-openapi/zipball/0213396384e2c064eefd614f3dd53636a63f987f",
  165. "reference": "0213396384e2c064eefd614f3dd53636a63f987f",
  166. "shasum": "",
  167. "mirrors": [
  168. {
  169. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  170. "preferred": true
  171. }
  172. ]
  173. },
  174. "require": {
  175. "alibabacloud/credentials": "^1.1",
  176. "alibabacloud/gateway-spi": "^1",
  177. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  178. "alibabacloud/tea-utils": "^0.2.21",
  179. "alibabacloud/tea-xml": "^0.2",
  180. "php": ">5.5"
  181. },
  182. "type": "library",
  183. "autoload": {
  184. "psr-4": {
  185. "Darabonba\\OpenApi\\": "src"
  186. }
  187. },
  188. "notification-url": "https://packagist.org/downloads/",
  189. "license": [
  190. "Apache-2.0"
  191. ],
  192. "authors": [
  193. {
  194. "name": "Alibaba Cloud SDK",
  195. "email": "sdk-team@alibabacloud.com"
  196. }
  197. ],
  198. "description": "Alibaba Cloud OpenApi Client",
  199. "support": {
  200. "issues": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/issues",
  201. "source": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/tree/0.2.13"
  202. },
  203. "time": "2024-07-15T13:11:36+00:00"
  204. },
  205. {
  206. "name": "alibabacloud/dysmsapi-20170525",
  207. "version": "3.1.0",
  208. "source": {
  209. "type": "git",
  210. "url": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525.git",
  211. "reference": "5f779cf8d6d8807b9835bff8d058dbab6d59bbf1"
  212. },
  213. "dist": {
  214. "type": "zip",
  215. "url": "https://api.github.com/repos/alibabacloud-sdk-php/Dysmsapi-20170525/zipball/5f779cf8d6d8807b9835bff8d058dbab6d59bbf1",
  216. "reference": "5f779cf8d6d8807b9835bff8d058dbab6d59bbf1",
  217. "shasum": "",
  218. "mirrors": [
  219. {
  220. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  221. "preferred": true
  222. }
  223. ]
  224. },
  225. "require": {
  226. "alibabacloud/darabonba-openapi": "^0.2.13",
  227. "alibabacloud/endpoint-util": "^0.1.0",
  228. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  229. "alibabacloud/tea-utils": "^0.2.21",
  230. "php": ">5.5"
  231. },
  232. "type": "library",
  233. "autoload": {
  234. "psr-4": {
  235. "AlibabaCloud\\SDK\\Dysmsapi\\V20170525\\": "src"
  236. }
  237. },
  238. "notification-url": "https://packagist.org/downloads/",
  239. "license": [
  240. "Apache-2.0"
  241. ],
  242. "authors": [
  243. {
  244. "name": "Alibaba Cloud SDK",
  245. "email": "sdk-team@alibabacloud.com"
  246. }
  247. ],
  248. "description": "Alibaba Cloud Dysmsapi (20170525) SDK Library for PHP",
  249. "support": {
  250. "source": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525/tree/3.1.0"
  251. },
  252. "time": "2024-10-24T17:19:34+00:00"
  253. },
  254. {
  255. "name": "alibabacloud/endpoint-util",
  256. "version": "0.1.1",
  257. "source": {
  258. "type": "git",
  259. "url": "https://github.com/alibabacloud-sdk-php/endpoint-util.git",
  260. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5"
  261. },
  262. "dist": {
  263. "type": "zip",
  264. "url": "https://api.github.com/repos/alibabacloud-sdk-php/endpoint-util/zipball/f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  265. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  266. "shasum": "",
  267. "mirrors": [
  268. {
  269. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  270. "preferred": true
  271. }
  272. ]
  273. },
  274. "require": {
  275. "php": ">5.5"
  276. },
  277. "require-dev": {
  278. "phpunit/phpunit": "^4.8.35|^5.4.3"
  279. },
  280. "type": "library",
  281. "autoload": {
  282. "psr-4": {
  283. "AlibabaCloud\\Endpoint\\": "src"
  284. }
  285. },
  286. "notification-url": "https://packagist.org/downloads/",
  287. "license": [
  288. "Apache-2.0"
  289. ],
  290. "authors": [
  291. {
  292. "name": "Alibaba Cloud SDK",
  293. "email": "sdk-team@alibabacloud.com"
  294. }
  295. ],
  296. "description": "Alibaba Cloud Endpoint Library for PHP",
  297. "support": {
  298. "source": "https://github.com/alibabacloud-sdk-php/endpoint-util/tree/0.1.1"
  299. },
  300. "time": "2020-06-04T10:57:15+00:00"
  301. },
  302. {
  303. "name": "alibabacloud/gateway-spi",
  304. "version": "1.0.0",
  305. "source": {
  306. "type": "git",
  307. "url": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi.git",
  308. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb"
  309. },
  310. "dist": {
  311. "type": "zip",
  312. "url": "https://api.github.com/repos/alibabacloud-sdk-php/alibabacloud-gateway-spi/zipball/7440f77750c329d8ab252db1d1d967314ccd1fcb",
  313. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb",
  314. "shasum": "",
  315. "mirrors": [
  316. {
  317. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  318. "preferred": true
  319. }
  320. ]
  321. },
  322. "require": {
  323. "alibabacloud/credentials": "^1.1",
  324. "php": ">5.5"
  325. },
  326. "type": "library",
  327. "autoload": {
  328. "psr-4": {
  329. "Darabonba\\GatewaySpi\\": "src"
  330. }
  331. },
  332. "notification-url": "https://packagist.org/downloads/",
  333. "license": [
  334. "Apache-2.0"
  335. ],
  336. "authors": [
  337. {
  338. "name": "Alibaba Cloud SDK",
  339. "email": "sdk-team@alibabacloud.com"
  340. }
  341. ],
  342. "description": "Alibaba Cloud Gateway SPI Client",
  343. "support": {
  344. "source": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi/tree/1.0.0"
  345. },
  346. "time": "2022-07-14T05:31:35+00:00"
  347. },
  348. {
  349. "name": "alibabacloud/openapi-util",
  350. "version": "0.2.1",
  351. "source": {
  352. "type": "git",
  353. "url": "https://github.com/alibabacloud-sdk-php/openapi-util.git",
  354. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a"
  355. },
  356. "dist": {
  357. "type": "zip",
  358. "url": "https://api.github.com/repos/alibabacloud-sdk-php/openapi-util/zipball/f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  359. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  360. "shasum": "",
  361. "mirrors": [
  362. {
  363. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  364. "preferred": true
  365. }
  366. ]
  367. },
  368. "require": {
  369. "alibabacloud/tea": "^3.1",
  370. "alibabacloud/tea-utils": "^0.2",
  371. "lizhichao/one-sm": "^1.5",
  372. "php": ">5.5"
  373. },
  374. "require-dev": {
  375. "phpunit/phpunit": "*"
  376. },
  377. "type": "library",
  378. "autoload": {
  379. "psr-4": {
  380. "AlibabaCloud\\OpenApiUtil\\": "src"
  381. }
  382. },
  383. "notification-url": "https://packagist.org/downloads/",
  384. "license": [
  385. "Apache-2.0"
  386. ],
  387. "authors": [
  388. {
  389. "name": "Alibaba Cloud SDK",
  390. "email": "sdk-team@alibabacloud.com"
  391. }
  392. ],
  393. "description": "Alibaba Cloud OpenApi Util",
  394. "support": {
  395. "issues": "https://github.com/alibabacloud-sdk-php/openapi-util/issues",
  396. "source": "https://github.com/alibabacloud-sdk-php/openapi-util/tree/0.2.1"
  397. },
  398. "time": "2023-01-10T09:10:10+00:00"
  399. },
  400. {
  401. "name": "alibabacloud/tea",
  402. "version": "3.2.1",
  403. "source": {
  404. "type": "git",
  405. "url": "https://github.com/aliyun/tea-php.git",
  406. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367"
  407. },
  408. "dist": {
  409. "type": "zip",
  410. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/1619cb96c158384f72b873e1f85de8b299c9c367",
  411. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367",
  412. "shasum": "",
  413. "mirrors": [
  414. {
  415. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  416. "preferred": true
  417. }
  418. ]
  419. },
  420. "require": {
  421. "adbario/php-dot-notation": "^2.4",
  422. "ext-curl": "*",
  423. "ext-json": "*",
  424. "ext-libxml": "*",
  425. "ext-mbstring": "*",
  426. "ext-openssl": "*",
  427. "ext-simplexml": "*",
  428. "ext-xmlwriter": "*",
  429. "guzzlehttp/guzzle": "^6.3|^7.0",
  430. "php": ">=5.5"
  431. },
  432. "require-dev": {
  433. "phpunit/phpunit": "*",
  434. "symfony/dotenv": "^3.4",
  435. "symfony/var-dumper": "^3.4"
  436. },
  437. "suggest": {
  438. "ext-sockets": "To use client-side monitoring"
  439. },
  440. "type": "library",
  441. "autoload": {
  442. "psr-4": {
  443. "AlibabaCloud\\Tea\\": "src"
  444. }
  445. },
  446. "notification-url": "https://packagist.org/downloads/",
  447. "license": [
  448. "Apache-2.0"
  449. ],
  450. "authors": [
  451. {
  452. "name": "Alibaba Cloud SDK",
  453. "email": "sdk-team@alibabacloud.com",
  454. "homepage": "http://www.alibabacloud.com"
  455. }
  456. ],
  457. "description": "Client of Tea for PHP",
  458. "homepage": "https://www.alibabacloud.com/",
  459. "keywords": [
  460. "alibabacloud",
  461. "client",
  462. "cloud",
  463. "tea"
  464. ],
  465. "support": {
  466. "issues": "https://github.com/aliyun/tea-php/issues",
  467. "source": "https://github.com/aliyun/tea-php"
  468. },
  469. "time": "2023-05-16T06:43:41+00:00"
  470. },
  471. {
  472. "name": "alibabacloud/tea-fileform",
  473. "version": "0.3.4",
  474. "source": {
  475. "type": "git",
  476. "url": "https://github.com/alibabacloud-sdk-php/tea-fileform.git",
  477. "reference": "4bf0c75a045c8115aa8cb1a394bd08d8bb833181"
  478. },
  479. "dist": {
  480. "type": "zip",
  481. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-fileform/zipball/4bf0c75a045c8115aa8cb1a394bd08d8bb833181",
  482. "reference": "4bf0c75a045c8115aa8cb1a394bd08d8bb833181",
  483. "shasum": "",
  484. "mirrors": [
  485. {
  486. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  487. "preferred": true
  488. }
  489. ]
  490. },
  491. "require": {
  492. "alibabacloud/tea": "^3.0",
  493. "php": ">5.5"
  494. },
  495. "require-dev": {
  496. "phpunit/phpunit": "^4.8.35|^5.4.3"
  497. },
  498. "type": "library",
  499. "autoload": {
  500. "psr-4": {
  501. "AlibabaCloud\\Tea\\FileForm\\": "src"
  502. }
  503. },
  504. "notification-url": "https://packagist.org/downloads/",
  505. "license": [
  506. "Apache-2.0"
  507. ],
  508. "authors": [
  509. {
  510. "name": "Alibaba Cloud SDK",
  511. "email": "sdk-team@alibabacloud.com"
  512. }
  513. ],
  514. "description": "Alibaba Cloud Tea File Library for PHP",
  515. "support": {
  516. "issues": "https://github.com/alibabacloud-sdk-php/tea-fileform/issues",
  517. "source": "https://github.com/alibabacloud-sdk-php/tea-fileform/tree/0.3.4"
  518. },
  519. "time": "2020-12-01T07:24:35+00:00"
  520. },
  521. {
  522. "name": "alibabacloud/tea-utils",
  523. "version": "0.2.21",
  524. "source": {
  525. "type": "git",
  526. "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git",
  527. "reference": "5039e45714c6456186d267f5d81a4b260a652495"
  528. },
  529. "dist": {
  530. "type": "zip",
  531. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/5039e45714c6456186d267f5d81a4b260a652495",
  532. "reference": "5039e45714c6456186d267f5d81a4b260a652495",
  533. "shasum": "",
  534. "mirrors": [
  535. {
  536. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  537. "preferred": true
  538. }
  539. ]
  540. },
  541. "require": {
  542. "alibabacloud/tea": "^3.1",
  543. "php": ">5.5"
  544. },
  545. "type": "library",
  546. "autoload": {
  547. "psr-4": {
  548. "AlibabaCloud\\Tea\\Utils\\": "src"
  549. }
  550. },
  551. "notification-url": "https://packagist.org/downloads/",
  552. "license": [
  553. "Apache-2.0"
  554. ],
  555. "authors": [
  556. {
  557. "name": "Alibaba Cloud SDK",
  558. "email": "sdk-team@alibabacloud.com"
  559. }
  560. ],
  561. "description": "Alibaba Cloud Tea Utils for PHP",
  562. "support": {
  563. "issues": "https://github.com/aliyun/tea-util/issues",
  564. "source": "https://github.com/aliyun/tea-util"
  565. },
  566. "time": "2024-07-05T06:05:54+00:00"
  567. },
  568. {
  569. "name": "alibabacloud/tea-xml",
  570. "version": "0.2.4",
  571. "source": {
  572. "type": "git",
  573. "url": "https://github.com/alibabacloud-sdk-php/tea-xml.git",
  574. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a"
  575. },
  576. "dist": {
  577. "type": "zip",
  578. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-xml/zipball/3e0c000bf536224eebbac913c371bef174c0a16a",
  579. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a",
  580. "shasum": "",
  581. "mirrors": [
  582. {
  583. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  584. "preferred": true
  585. }
  586. ]
  587. },
  588. "require": {
  589. "php": ">5.5"
  590. },
  591. "require-dev": {
  592. "phpunit/phpunit": "*",
  593. "symfony/var-dumper": "*"
  594. },
  595. "type": "library",
  596. "autoload": {
  597. "psr-4": {
  598. "AlibabaCloud\\Tea\\XML\\": "src"
  599. }
  600. },
  601. "notification-url": "https://packagist.org/downloads/",
  602. "license": [
  603. "Apache-2.0"
  604. ],
  605. "authors": [
  606. {
  607. "name": "Alibaba Cloud SDK",
  608. "email": "sdk-team@alibabacloud.com"
  609. }
  610. ],
  611. "description": "Alibaba Cloud Tea XML Library for PHP",
  612. "support": {
  613. "source": "https://github.com/alibabacloud-sdk-php/tea-xml/tree/0.2.4"
  614. },
  615. "time": "2022-08-02T04:12:58+00:00"
  616. },
  617. {
  618. "name": "alipaysdk/easysdk",
  619. "version": "2.2.3",
  620. "source": {
  621. "type": "git",
  622. "url": "https://github.com/alipay/alipay-easysdk.git",
  623. "reference": "c6008839a22a5fca08e9f8536730f7abfed522d5"
  624. },
  625. "dist": {
  626. "type": "zip",
  627. "url": "https://api.github.com/repos/alipay/alipay-easysdk/zipball/c6008839a22a5fca08e9f8536730f7abfed522d5",
  628. "reference": "c6008839a22a5fca08e9f8536730f7abfed522d5",
  629. "shasum": "",
  630. "mirrors": [
  631. {
  632. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  633. "preferred": true
  634. }
  635. ]
  636. },
  637. "require": {
  638. "alibabacloud/tea": "^3.1",
  639. "alibabacloud/tea-fileform": "^0.3.2",
  640. "ext-ctype": "*",
  641. "ext-curl": "*",
  642. "ext-dom": "*",
  643. "ext-fileinfo": "*",
  644. "ext-json": "*",
  645. "ext-libxml": "*",
  646. "ext-mbstring": "*",
  647. "ext-openssl": "*",
  648. "ext-simplexml": "*",
  649. "ext-xmlwriter": "*",
  650. "guzzlehttp/guzzle": ">=6.3",
  651. "php": ">=7.0"
  652. },
  653. "require-dev": {
  654. "phpunit/phpunit": "^7.5"
  655. },
  656. "type": "library",
  657. "autoload": {
  658. "psr-4": {
  659. "Alipay\\EasySDK\\": "php/src/"
  660. }
  661. },
  662. "notification-url": "https://packagist.org/downloads/",
  663. "license": [
  664. "Apache-2.0"
  665. ],
  666. "authors": [
  667. {
  668. "name": "junying.wjy",
  669. "email": "junying.wjy@antfin.com"
  670. }
  671. ],
  672. "description": "支付宝官方 Alipay Easy SDK",
  673. "support": {
  674. "source": "https://github.com/alipay/alipay-easysdk/tree/v2.2.3"
  675. },
  676. "time": "2022-11-28T14:04:57+00:00"
  677. },
  678. {
  679. "name": "aliyuncs/oss-sdk-php",
  680. "version": "v2.7.2",
  681. "source": {
  682. "type": "git",
  683. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  684. "reference": "483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5"
  685. },
  686. "dist": {
  687. "type": "zip",
  688. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5",
  689. "reference": "483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5",
  690. "shasum": "",
  691. "mirrors": [
  692. {
  693. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  694. "preferred": true
  695. }
  696. ]
  697. },
  698. "require": {
  699. "php": ">=5.3"
  700. },
  701. "require-dev": {
  702. "php-coveralls/php-coveralls": "*",
  703. "phpunit/phpunit": "*"
  704. },
  705. "type": "library",
  706. "autoload": {
  707. "psr-4": {
  708. "OSS\\": "src/OSS"
  709. }
  710. },
  711. "notification-url": "https://packagist.org/downloads/",
  712. "license": [
  713. "MIT"
  714. ],
  715. "authors": [
  716. {
  717. "name": "Aliyuncs",
  718. "homepage": "http://www.aliyun.com"
  719. }
  720. ],
  721. "description": "Aliyun OSS SDK for PHP",
  722. "homepage": "http://www.aliyun.com/product/oss/",
  723. "support": {
  724. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  725. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.7.2"
  726. },
  727. "time": "2024-10-28T10:41:12+00:00"
  728. },
  729. {
  730. "name": "async-aws/core",
  731. "version": "1.21.0",
  732. "source": {
  733. "type": "git",
  734. "url": "https://github.com/async-aws/core.git",
  735. "reference": "eb23cc59515d8d529163313bbf9e02f666e515ef"
  736. },
  737. "dist": {
  738. "type": "zip",
  739. "url": "https://api.github.com/repos/async-aws/core/zipball/eb23cc59515d8d529163313bbf9e02f666e515ef",
  740. "reference": "eb23cc59515d8d529163313bbf9e02f666e515ef",
  741. "shasum": "",
  742. "mirrors": [
  743. {
  744. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  745. "preferred": true
  746. }
  747. ]
  748. },
  749. "require": {
  750. "ext-hash": "*",
  751. "ext-json": "*",
  752. "ext-simplexml": "*",
  753. "php": "^7.2.5 || ^8.0",
  754. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  755. "psr/log": "^1.0 || ^2.0 || ^3.0",
  756. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  757. "symfony/http-client": "^4.4.16 || ^5.1.7 || ^6.0 || ^7.0",
  758. "symfony/http-client-contracts": "^1.1.8 || ^2.0 || ^3.0",
  759. "symfony/service-contracts": "^1.0 || ^2.0 || ^3.0"
  760. },
  761. "conflict": {
  762. "async-aws/s3": "<1.1",
  763. "symfony/http-client": "5.2.0"
  764. },
  765. "type": "library",
  766. "extra": {
  767. "branch-alias": {
  768. "dev-master": "1.21-dev"
  769. }
  770. },
  771. "autoload": {
  772. "psr-4": {
  773. "AsyncAws\\Core\\": "src"
  774. }
  775. },
  776. "notification-url": "https://packagist.org/downloads/",
  777. "license": [
  778. "MIT"
  779. ],
  780. "description": "Core package to integrate with AWS. This is a lightweight AWS SDK provider by AsyncAws.",
  781. "keywords": [
  782. "amazon",
  783. "async-aws",
  784. "aws",
  785. "sdk",
  786. "sts"
  787. ],
  788. "support": {
  789. "source": "https://github.com/async-aws/core/tree/1.21.0"
  790. },
  791. "funding": [
  792. {
  793. "url": "https://github.com/jderusse",
  794. "type": "github"
  795. },
  796. {
  797. "url": "https://github.com/nyholm",
  798. "type": "github"
  799. }
  800. ],
  801. "time": "2024-02-27T14:44:12+00:00"
  802. },
  803. {
  804. "name": "bacon/bacon-qr-code",
  805. "version": "2.0.8",
  806. "source": {
  807. "type": "git",
  808. "url": "https://github.com/Bacon/BaconQrCode.git",
  809. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22"
  810. },
  811. "dist": {
  812. "type": "zip",
  813. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22",
  814. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22",
  815. "shasum": "",
  816. "mirrors": [
  817. {
  818. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  819. "preferred": true
  820. }
  821. ]
  822. },
  823. "require": {
  824. "dasprid/enum": "^1.0.3",
  825. "ext-iconv": "*",
  826. "php": "^7.1 || ^8.0"
  827. },
  828. "require-dev": {
  829. "phly/keep-a-changelog": "^2.1",
  830. "phpunit/phpunit": "^7 | ^8 | ^9",
  831. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  832. "squizlabs/php_codesniffer": "^3.4"
  833. },
  834. "suggest": {
  835. "ext-imagick": "to generate QR code images"
  836. },
  837. "type": "library",
  838. "autoload": {
  839. "psr-4": {
  840. "BaconQrCode\\": "src/"
  841. }
  842. },
  843. "notification-url": "https://packagist.org/downloads/",
  844. "license": [
  845. "BSD-2-Clause"
  846. ],
  847. "authors": [
  848. {
  849. "name": "Ben Scholzen 'DASPRiD'",
  850. "email": "mail@dasprids.de",
  851. "homepage": "https://dasprids.de/",
  852. "role": "Developer"
  853. }
  854. ],
  855. "description": "BaconQrCode is a QR code generator for PHP.",
  856. "homepage": "https://github.com/Bacon/BaconQrCode",
  857. "support": {
  858. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  859. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.8"
  860. },
  861. "time": "2022-12-07T17:46:57+00:00"
  862. },
  863. {
  864. "name": "carbonphp/carbon-doctrine-types",
  865. "version": "2.1.0",
  866. "source": {
  867. "type": "git",
  868. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  869. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb"
  870. },
  871. "dist": {
  872. "type": "zip",
  873. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  874. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  875. "shasum": "",
  876. "mirrors": [
  877. {
  878. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  879. "preferred": true
  880. }
  881. ]
  882. },
  883. "require": {
  884. "php": "^7.4 || ^8.0"
  885. },
  886. "conflict": {
  887. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  888. },
  889. "require-dev": {
  890. "doctrine/dbal": "^3.7.0",
  891. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  892. "phpunit/phpunit": "^10.3"
  893. },
  894. "type": "library",
  895. "autoload": {
  896. "psr-4": {
  897. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  898. }
  899. },
  900. "notification-url": "https://packagist.org/downloads/",
  901. "license": [
  902. "MIT"
  903. ],
  904. "authors": [
  905. {
  906. "name": "KyleKatarn",
  907. "email": "kylekatarnls@gmail.com"
  908. }
  909. ],
  910. "description": "Types to use Carbon in Doctrine",
  911. "keywords": [
  912. "carbon",
  913. "date",
  914. "datetime",
  915. "doctrine",
  916. "time"
  917. ],
  918. "support": {
  919. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  920. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0"
  921. },
  922. "funding": [
  923. {
  924. "url": "https://github.com/kylekatarnls",
  925. "type": "github"
  926. },
  927. {
  928. "url": "https://opencollective.com/Carbon",
  929. "type": "open_collective"
  930. },
  931. {
  932. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  933. "type": "tidelift"
  934. }
  935. ],
  936. "time": "2023-12-11T17:09:12+00:00"
  937. },
  938. {
  939. "name": "dasprid/enum",
  940. "version": "1.0.5",
  941. "source": {
  942. "type": "git",
  943. "url": "https://github.com/DASPRiD/Enum.git",
  944. "reference": "6faf451159fb8ba4126b925ed2d78acfce0dc016"
  945. },
  946. "dist": {
  947. "type": "zip",
  948. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/6faf451159fb8ba4126b925ed2d78acfce0dc016",
  949. "reference": "6faf451159fb8ba4126b925ed2d78acfce0dc016",
  950. "shasum": "",
  951. "mirrors": [
  952. {
  953. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  954. "preferred": true
  955. }
  956. ]
  957. },
  958. "require": {
  959. "php": ">=7.1 <9.0"
  960. },
  961. "require-dev": {
  962. "phpunit/phpunit": "^7 | ^8 | ^9",
  963. "squizlabs/php_codesniffer": "*"
  964. },
  965. "type": "library",
  966. "autoload": {
  967. "psr-4": {
  968. "DASPRiD\\Enum\\": "src/"
  969. }
  970. },
  971. "notification-url": "https://packagist.org/downloads/",
  972. "license": [
  973. "BSD-2-Clause"
  974. ],
  975. "authors": [
  976. {
  977. "name": "Ben Scholzen 'DASPRiD'",
  978. "email": "mail@dasprids.de",
  979. "homepage": "https://dasprids.de/",
  980. "role": "Developer"
  981. }
  982. ],
  983. "description": "PHP 7.1 enum implementation",
  984. "keywords": [
  985. "enum",
  986. "map"
  987. ],
  988. "support": {
  989. "issues": "https://github.com/DASPRiD/Enum/issues",
  990. "source": "https://github.com/DASPRiD/Enum/tree/1.0.5"
  991. },
  992. "time": "2023-08-25T16:18:39+00:00"
  993. },
  994. {
  995. "name": "easywechat-composer/easywechat-composer",
  996. "version": "1.4.1",
  997. "source": {
  998. "type": "git",
  999. "url": "https://github.com/mingyoung/easywechat-composer.git",
  1000. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  1001. },
  1002. "dist": {
  1003. "type": "zip",
  1004. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1005. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1006. "shasum": "",
  1007. "mirrors": [
  1008. {
  1009. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1010. "preferred": true
  1011. }
  1012. ]
  1013. },
  1014. "require": {
  1015. "composer-plugin-api": "^1.0 || ^2.0",
  1016. "php": ">=7.0"
  1017. },
  1018. "require-dev": {
  1019. "composer/composer": "^1.0 || ^2.0",
  1020. "phpunit/phpunit": "^6.5 || ^7.0"
  1021. },
  1022. "type": "composer-plugin",
  1023. "extra": {
  1024. "class": "EasyWeChatComposer\\Plugin"
  1025. },
  1026. "autoload": {
  1027. "psr-4": {
  1028. "EasyWeChatComposer\\": "src/"
  1029. }
  1030. },
  1031. "notification-url": "https://packagist.org/downloads/",
  1032. "license": [
  1033. "MIT"
  1034. ],
  1035. "authors": [
  1036. {
  1037. "name": "张铭阳",
  1038. "email": "mingyoungcheung@gmail.com"
  1039. }
  1040. ],
  1041. "description": "The composer plugin for EasyWeChat",
  1042. "support": {
  1043. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  1044. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  1045. },
  1046. "time": "2021-07-05T04:03:22+00:00"
  1047. },
  1048. {
  1049. "name": "endroid/qr-code",
  1050. "version": "4.6.1",
  1051. "source": {
  1052. "type": "git",
  1053. "url": "https://github.com/endroid/qr-code.git",
  1054. "reference": "a75c913b0e4d6ad275e49a2c1de1cacffc6c2184"
  1055. },
  1056. "dist": {
  1057. "type": "zip",
  1058. "url": "https://api.github.com/repos/endroid/qr-code/zipball/a75c913b0e4d6ad275e49a2c1de1cacffc6c2184",
  1059. "reference": "a75c913b0e4d6ad275e49a2c1de1cacffc6c2184",
  1060. "shasum": "",
  1061. "mirrors": [
  1062. {
  1063. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1064. "preferred": true
  1065. }
  1066. ]
  1067. },
  1068. "require": {
  1069. "bacon/bacon-qr-code": "^2.0.5",
  1070. "php": "^7.4||^8.0"
  1071. },
  1072. "require-dev": {
  1073. "endroid/quality": "dev-master",
  1074. "ext-gd": "*",
  1075. "khanamiryan/qrcode-detector-decoder": "^1.0.4",
  1076. "setasign/fpdf": "^1.8.2"
  1077. },
  1078. "suggest": {
  1079. "ext-gd": "Enables you to write PNG images",
  1080. "khanamiryan/qrcode-detector-decoder": "Enables you to use the image validator",
  1081. "roave/security-advisories": "Makes sure package versions with known security issues are not installed",
  1082. "setasign/fpdf": "Enables you to use the PDF writer"
  1083. },
  1084. "type": "library",
  1085. "extra": {
  1086. "branch-alias": {
  1087. "dev-master": "4.x-dev"
  1088. }
  1089. },
  1090. "autoload": {
  1091. "psr-4": {
  1092. "Endroid\\QrCode\\": "src/"
  1093. }
  1094. },
  1095. "notification-url": "https://packagist.org/downloads/",
  1096. "license": [
  1097. "MIT"
  1098. ],
  1099. "authors": [
  1100. {
  1101. "name": "Jeroen van den Enden",
  1102. "email": "info@endroid.nl"
  1103. }
  1104. ],
  1105. "description": "Endroid QR Code",
  1106. "homepage": "https://github.com/endroid/qr-code",
  1107. "keywords": [
  1108. "code",
  1109. "endroid",
  1110. "php",
  1111. "qr",
  1112. "qrcode"
  1113. ],
  1114. "support": {
  1115. "issues": "https://github.com/endroid/qr-code/issues",
  1116. "source": "https://github.com/endroid/qr-code/tree/4.6.1"
  1117. },
  1118. "funding": [
  1119. {
  1120. "url": "https://github.com/endroid",
  1121. "type": "github"
  1122. }
  1123. ],
  1124. "time": "2022-10-26T08:48:17+00:00"
  1125. },
  1126. {
  1127. "name": "ezyang/htmlpurifier",
  1128. "version": "v4.18.0",
  1129. "source": {
  1130. "type": "git",
  1131. "url": "https://github.com/ezyang/htmlpurifier.git",
  1132. "reference": "cb56001e54359df7ae76dc522d08845dc741621b"
  1133. },
  1134. "dist": {
  1135. "type": "zip",
  1136. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/cb56001e54359df7ae76dc522d08845dc741621b",
  1137. "reference": "cb56001e54359df7ae76dc522d08845dc741621b",
  1138. "shasum": "",
  1139. "mirrors": [
  1140. {
  1141. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1142. "preferred": true
  1143. }
  1144. ]
  1145. },
  1146. "require": {
  1147. "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  1148. },
  1149. "require-dev": {
  1150. "cerdic/css-tidy": "^1.7 || ^2.0",
  1151. "simpletest/simpletest": "dev-master"
  1152. },
  1153. "suggest": {
  1154. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  1155. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  1156. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  1157. "ext-tidy": "Used for pretty-printing HTML"
  1158. },
  1159. "type": "library",
  1160. "autoload": {
  1161. "files": [
  1162. "library/HTMLPurifier.composer.php"
  1163. ],
  1164. "psr-0": {
  1165. "HTMLPurifier": "library/"
  1166. },
  1167. "exclude-from-classmap": [
  1168. "/library/HTMLPurifier/Language/"
  1169. ]
  1170. },
  1171. "notification-url": "https://packagist.org/downloads/",
  1172. "license": [
  1173. "LGPL-2.1-or-later"
  1174. ],
  1175. "authors": [
  1176. {
  1177. "name": "Edward Z. Yang",
  1178. "email": "admin@htmlpurifier.org",
  1179. "homepage": "http://ezyang.com"
  1180. }
  1181. ],
  1182. "description": "Standards compliant HTML filter written in PHP",
  1183. "homepage": "http://htmlpurifier.org/",
  1184. "keywords": [
  1185. "html"
  1186. ],
  1187. "support": {
  1188. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1189. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.18.0"
  1190. },
  1191. "time": "2024-11-01T03:51:45+00:00"
  1192. },
  1193. {
  1194. "name": "fastknife/ajcaptcha",
  1195. "version": "v1.2.2",
  1196. "source": {
  1197. "type": "git",
  1198. "url": "https://gitee.com/fastknife/aj-captcha.git",
  1199. "reference": "87c122b6cd950fd98702e929685e5e7c0c517ddc"
  1200. },
  1201. "require": {
  1202. "ext-gd": "*",
  1203. "ext-iconv": "*",
  1204. "ext-json": "*",
  1205. "ext-openssl": "*",
  1206. "intervention/image": "^2.5",
  1207. "php": ">=7.1"
  1208. },
  1209. "type": "library",
  1210. "autoload": {
  1211. "psr-4": {
  1212. "Fastknife\\": "src"
  1213. }
  1214. },
  1215. "notification-url": "https://packagist.org/downloads/",
  1216. "license": [
  1217. "GPL-3.0-only"
  1218. ],
  1219. "authors": [
  1220. {
  1221. "name": "bruce",
  1222. "email": "2777314125@qq.com"
  1223. }
  1224. ],
  1225. "description": "This is a behavior verification code PHP back-end implementation package",
  1226. "time": "2023-03-29T10:35:25+00:00"
  1227. },
  1228. {
  1229. "name": "firebase/php-jwt",
  1230. "version": "v6.10.0",
  1231. "source": {
  1232. "type": "git",
  1233. "url": "https://github.com/firebase/php-jwt.git",
  1234. "reference": "a49db6f0a5033aef5143295342f1c95521b075ff"
  1235. },
  1236. "dist": {
  1237. "type": "zip",
  1238. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/a49db6f0a5033aef5143295342f1c95521b075ff",
  1239. "reference": "a49db6f0a5033aef5143295342f1c95521b075ff",
  1240. "shasum": "",
  1241. "mirrors": [
  1242. {
  1243. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1244. "preferred": true
  1245. }
  1246. ]
  1247. },
  1248. "require": {
  1249. "php": "^7.4||^8.0"
  1250. },
  1251. "require-dev": {
  1252. "guzzlehttp/guzzle": "^6.5||^7.4",
  1253. "phpspec/prophecy-phpunit": "^2.0",
  1254. "phpunit/phpunit": "^9.5",
  1255. "psr/cache": "^1.0||^2.0",
  1256. "psr/http-client": "^1.0",
  1257. "psr/http-factory": "^1.0"
  1258. },
  1259. "suggest": {
  1260. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  1261. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1262. },
  1263. "type": "library",
  1264. "autoload": {
  1265. "psr-4": {
  1266. "Firebase\\JWT\\": "src"
  1267. }
  1268. },
  1269. "notification-url": "https://packagist.org/downloads/",
  1270. "license": [
  1271. "BSD-3-Clause"
  1272. ],
  1273. "authors": [
  1274. {
  1275. "name": "Neuman Vong",
  1276. "email": "neuman+pear@twilio.com",
  1277. "role": "Developer"
  1278. },
  1279. {
  1280. "name": "Anant Narayanan",
  1281. "email": "anant@php.net",
  1282. "role": "Developer"
  1283. }
  1284. ],
  1285. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1286. "homepage": "https://github.com/firebase/php-jwt",
  1287. "keywords": [
  1288. "jwt",
  1289. "php"
  1290. ],
  1291. "support": {
  1292. "issues": "https://github.com/firebase/php-jwt/issues",
  1293. "source": "https://github.com/firebase/php-jwt/tree/v6.10.0"
  1294. },
  1295. "time": "2023-12-01T16:26:39+00:00"
  1296. },
  1297. {
  1298. "name": "guzzlehttp/command",
  1299. "version": "1.3.1",
  1300. "source": {
  1301. "type": "git",
  1302. "url": "https://github.com/guzzle/command.git",
  1303. "reference": "0eebc653784f4902b3272e826fe8e88743d14e77"
  1304. },
  1305. "dist": {
  1306. "type": "zip",
  1307. "url": "https://api.github.com/repos/guzzle/command/zipball/0eebc653784f4902b3272e826fe8e88743d14e77",
  1308. "reference": "0eebc653784f4902b3272e826fe8e88743d14e77",
  1309. "shasum": "",
  1310. "mirrors": [
  1311. {
  1312. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1313. "preferred": true
  1314. }
  1315. ]
  1316. },
  1317. "require": {
  1318. "guzzlehttp/guzzle": "^7.8",
  1319. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  1320. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  1321. "php": "^7.2.5 || ^8.0"
  1322. },
  1323. "require-dev": {
  1324. "bamarni/composer-bin-plugin": "^1.8.2",
  1325. "phpunit/phpunit": "^8.5.19 || ^9.5.8"
  1326. },
  1327. "type": "library",
  1328. "extra": {
  1329. "bamarni-bin": {
  1330. "bin-links": true,
  1331. "forward-command": false
  1332. }
  1333. },
  1334. "autoload": {
  1335. "psr-4": {
  1336. "GuzzleHttp\\Command\\": "src/"
  1337. }
  1338. },
  1339. "notification-url": "https://packagist.org/downloads/",
  1340. "license": [
  1341. "MIT"
  1342. ],
  1343. "authors": [
  1344. {
  1345. "name": "Graham Campbell",
  1346. "email": "hello@gjcampbell.co.uk",
  1347. "homepage": "https://github.com/GrahamCampbell"
  1348. },
  1349. {
  1350. "name": "Michael Dowling",
  1351. "email": "mtdowling@gmail.com",
  1352. "homepage": "https://github.com/mtdowling"
  1353. },
  1354. {
  1355. "name": "Jeremy Lindblom",
  1356. "email": "jeremeamia@gmail.com",
  1357. "homepage": "https://github.com/jeremeamia"
  1358. },
  1359. {
  1360. "name": "Tobias Nyholm",
  1361. "email": "tobias.nyholm@gmail.com",
  1362. "homepage": "https://github.com/Nyholm"
  1363. }
  1364. ],
  1365. "description": "Provides the foundation for building command-based web service clients",
  1366. "support": {
  1367. "issues": "https://github.com/guzzle/command/issues",
  1368. "source": "https://github.com/guzzle/command/tree/1.3.1"
  1369. },
  1370. "funding": [
  1371. {
  1372. "url": "https://github.com/GrahamCampbell",
  1373. "type": "github"
  1374. },
  1375. {
  1376. "url": "https://github.com/Nyholm",
  1377. "type": "github"
  1378. },
  1379. {
  1380. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/command",
  1381. "type": "tidelift"
  1382. }
  1383. ],
  1384. "time": "2023-12-03T20:46:20+00:00"
  1385. },
  1386. {
  1387. "name": "guzzlehttp/guzzle",
  1388. "version": "7.9.2",
  1389. "source": {
  1390. "type": "git",
  1391. "url": "https://github.com/guzzle/guzzle.git",
  1392. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  1393. },
  1394. "dist": {
  1395. "type": "zip",
  1396. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  1397. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  1398. "shasum": "",
  1399. "mirrors": [
  1400. {
  1401. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1402. "preferred": true
  1403. }
  1404. ]
  1405. },
  1406. "require": {
  1407. "ext-json": "*",
  1408. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  1409. "guzzlehttp/psr7": "^2.7.0",
  1410. "php": "^7.2.5 || ^8.0",
  1411. "psr/http-client": "^1.0",
  1412. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1413. },
  1414. "provide": {
  1415. "psr/http-client-implementation": "1.0"
  1416. },
  1417. "require-dev": {
  1418. "bamarni/composer-bin-plugin": "^1.8.2",
  1419. "ext-curl": "*",
  1420. "guzzle/client-integration-tests": "3.0.2",
  1421. "php-http/message-factory": "^1.1",
  1422. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  1423. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1424. },
  1425. "suggest": {
  1426. "ext-curl": "Required for CURL handler support",
  1427. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1428. "psr/log": "Required for using the Log middleware"
  1429. },
  1430. "type": "library",
  1431. "extra": {
  1432. "bamarni-bin": {
  1433. "bin-links": true,
  1434. "forward-command": false
  1435. }
  1436. },
  1437. "autoload": {
  1438. "files": [
  1439. "src/functions_include.php"
  1440. ],
  1441. "psr-4": {
  1442. "GuzzleHttp\\": "src/"
  1443. }
  1444. },
  1445. "notification-url": "https://packagist.org/downloads/",
  1446. "license": [
  1447. "MIT"
  1448. ],
  1449. "authors": [
  1450. {
  1451. "name": "Graham Campbell",
  1452. "email": "hello@gjcampbell.co.uk",
  1453. "homepage": "https://github.com/GrahamCampbell"
  1454. },
  1455. {
  1456. "name": "Michael Dowling",
  1457. "email": "mtdowling@gmail.com",
  1458. "homepage": "https://github.com/mtdowling"
  1459. },
  1460. {
  1461. "name": "Jeremy Lindblom",
  1462. "email": "jeremeamia@gmail.com",
  1463. "homepage": "https://github.com/jeremeamia"
  1464. },
  1465. {
  1466. "name": "George Mponos",
  1467. "email": "gmponos@gmail.com",
  1468. "homepage": "https://github.com/gmponos"
  1469. },
  1470. {
  1471. "name": "Tobias Nyholm",
  1472. "email": "tobias.nyholm@gmail.com",
  1473. "homepage": "https://github.com/Nyholm"
  1474. },
  1475. {
  1476. "name": "Márk Sági-Kazár",
  1477. "email": "mark.sagikazar@gmail.com",
  1478. "homepage": "https://github.com/sagikazarmark"
  1479. },
  1480. {
  1481. "name": "Tobias Schultze",
  1482. "email": "webmaster@tubo-world.de",
  1483. "homepage": "https://github.com/Tobion"
  1484. }
  1485. ],
  1486. "description": "Guzzle is a PHP HTTP client library",
  1487. "keywords": [
  1488. "client",
  1489. "curl",
  1490. "framework",
  1491. "http",
  1492. "http client",
  1493. "psr-18",
  1494. "psr-7",
  1495. "rest",
  1496. "web service"
  1497. ],
  1498. "support": {
  1499. "issues": "https://github.com/guzzle/guzzle/issues",
  1500. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  1501. },
  1502. "funding": [
  1503. {
  1504. "url": "https://github.com/GrahamCampbell",
  1505. "type": "github"
  1506. },
  1507. {
  1508. "url": "https://github.com/Nyholm",
  1509. "type": "github"
  1510. },
  1511. {
  1512. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1513. "type": "tidelift"
  1514. }
  1515. ],
  1516. "time": "2024-07-24T11:22:20+00:00"
  1517. },
  1518. {
  1519. "name": "guzzlehttp/guzzle-services",
  1520. "version": "1.4.1",
  1521. "source": {
  1522. "type": "git",
  1523. "url": "https://github.com/guzzle/guzzle-services.git",
  1524. "reference": "bcab7c0d61672b606510a6fe5af3039d04968c0f"
  1525. },
  1526. "dist": {
  1527. "type": "zip",
  1528. "url": "https://api.github.com/repos/guzzle/guzzle-services/zipball/bcab7c0d61672b606510a6fe5af3039d04968c0f",
  1529. "reference": "bcab7c0d61672b606510a6fe5af3039d04968c0f",
  1530. "shasum": "",
  1531. "mirrors": [
  1532. {
  1533. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1534. "preferred": true
  1535. }
  1536. ]
  1537. },
  1538. "require": {
  1539. "guzzlehttp/command": "^1.3.1",
  1540. "guzzlehttp/guzzle": "^7.8",
  1541. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  1542. "guzzlehttp/uri-template": "^1.0.1",
  1543. "php": "^7.2.5 || ^8.0"
  1544. },
  1545. "require-dev": {
  1546. "bamarni/composer-bin-plugin": "^1.8.2",
  1547. "phpunit/phpunit": "^8.5.19 || ^9.5.8"
  1548. },
  1549. "suggest": {
  1550. "gimler/guzzle-description-loader": "^0.0.4"
  1551. },
  1552. "type": "library",
  1553. "extra": {
  1554. "bamarni-bin": {
  1555. "bin-links": true,
  1556. "forward-command": false
  1557. }
  1558. },
  1559. "autoload": {
  1560. "psr-4": {
  1561. "GuzzleHttp\\Command\\Guzzle\\": "src/"
  1562. }
  1563. },
  1564. "notification-url": "https://packagist.org/downloads/",
  1565. "license": [
  1566. "MIT"
  1567. ],
  1568. "authors": [
  1569. {
  1570. "name": "Graham Campbell",
  1571. "email": "hello@gjcampbell.co.uk",
  1572. "homepage": "https://github.com/GrahamCampbell"
  1573. },
  1574. {
  1575. "name": "Michael Dowling",
  1576. "email": "mtdowling@gmail.com",
  1577. "homepage": "https://github.com/mtdowling"
  1578. },
  1579. {
  1580. "name": "Stefano Kowalke",
  1581. "email": "blueduck@mail.org",
  1582. "homepage": "https://github.com/Konafets"
  1583. },
  1584. {
  1585. "name": "Tobias Nyholm",
  1586. "email": "tobias.nyholm@gmail.com",
  1587. "homepage": "https://github.com/Nyholm"
  1588. }
  1589. ],
  1590. "description": "Provides an implementation of the Guzzle Command library that uses Guzzle service descriptions to describe web services, serialize requests, and parse responses into easy to use model structures.",
  1591. "support": {
  1592. "issues": "https://github.com/guzzle/guzzle-services/issues",
  1593. "source": "https://github.com/guzzle/guzzle-services/tree/1.4.1"
  1594. },
  1595. "funding": [
  1596. {
  1597. "url": "https://github.com/GrahamCampbell",
  1598. "type": "github"
  1599. },
  1600. {
  1601. "url": "https://github.com/Nyholm",
  1602. "type": "github"
  1603. },
  1604. {
  1605. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle-services",
  1606. "type": "tidelift"
  1607. }
  1608. ],
  1609. "time": "2023-12-03T20:48:14+00:00"
  1610. },
  1611. {
  1612. "name": "guzzlehttp/promises",
  1613. "version": "2.0.3",
  1614. "source": {
  1615. "type": "git",
  1616. "url": "https://github.com/guzzle/promises.git",
  1617. "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8"
  1618. },
  1619. "dist": {
  1620. "type": "zip",
  1621. "url": "https://api.github.com/repos/guzzle/promises/zipball/6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8",
  1622. "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8",
  1623. "shasum": "",
  1624. "mirrors": [
  1625. {
  1626. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1627. "preferred": true
  1628. }
  1629. ]
  1630. },
  1631. "require": {
  1632. "php": "^7.2.5 || ^8.0"
  1633. },
  1634. "require-dev": {
  1635. "bamarni/composer-bin-plugin": "^1.8.2",
  1636. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1637. },
  1638. "type": "library",
  1639. "extra": {
  1640. "bamarni-bin": {
  1641. "bin-links": true,
  1642. "forward-command": false
  1643. }
  1644. },
  1645. "autoload": {
  1646. "psr-4": {
  1647. "GuzzleHttp\\Promise\\": "src/"
  1648. }
  1649. },
  1650. "notification-url": "https://packagist.org/downloads/",
  1651. "license": [
  1652. "MIT"
  1653. ],
  1654. "authors": [
  1655. {
  1656. "name": "Graham Campbell",
  1657. "email": "hello@gjcampbell.co.uk",
  1658. "homepage": "https://github.com/GrahamCampbell"
  1659. },
  1660. {
  1661. "name": "Michael Dowling",
  1662. "email": "mtdowling@gmail.com",
  1663. "homepage": "https://github.com/mtdowling"
  1664. },
  1665. {
  1666. "name": "Tobias Nyholm",
  1667. "email": "tobias.nyholm@gmail.com",
  1668. "homepage": "https://github.com/Nyholm"
  1669. },
  1670. {
  1671. "name": "Tobias Schultze",
  1672. "email": "webmaster@tubo-world.de",
  1673. "homepage": "https://github.com/Tobion"
  1674. }
  1675. ],
  1676. "description": "Guzzle promises library",
  1677. "keywords": [
  1678. "promise"
  1679. ],
  1680. "support": {
  1681. "issues": "https://github.com/guzzle/promises/issues",
  1682. "source": "https://github.com/guzzle/promises/tree/2.0.3"
  1683. },
  1684. "funding": [
  1685. {
  1686. "url": "https://github.com/GrahamCampbell",
  1687. "type": "github"
  1688. },
  1689. {
  1690. "url": "https://github.com/Nyholm",
  1691. "type": "github"
  1692. },
  1693. {
  1694. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1695. "type": "tidelift"
  1696. }
  1697. ],
  1698. "time": "2024-07-18T10:29:17+00:00"
  1699. },
  1700. {
  1701. "name": "guzzlehttp/psr7",
  1702. "version": "2.7.0",
  1703. "source": {
  1704. "type": "git",
  1705. "url": "https://github.com/guzzle/psr7.git",
  1706. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  1707. },
  1708. "dist": {
  1709. "type": "zip",
  1710. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1711. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1712. "shasum": "",
  1713. "mirrors": [
  1714. {
  1715. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1716. "preferred": true
  1717. }
  1718. ]
  1719. },
  1720. "require": {
  1721. "php": "^7.2.5 || ^8.0",
  1722. "psr/http-factory": "^1.0",
  1723. "psr/http-message": "^1.1 || ^2.0",
  1724. "ralouphie/getallheaders": "^3.0"
  1725. },
  1726. "provide": {
  1727. "psr/http-factory-implementation": "1.0",
  1728. "psr/http-message-implementation": "1.0"
  1729. },
  1730. "require-dev": {
  1731. "bamarni/composer-bin-plugin": "^1.8.2",
  1732. "http-interop/http-factory-tests": "0.9.0",
  1733. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1734. },
  1735. "suggest": {
  1736. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1737. },
  1738. "type": "library",
  1739. "extra": {
  1740. "bamarni-bin": {
  1741. "bin-links": true,
  1742. "forward-command": false
  1743. }
  1744. },
  1745. "autoload": {
  1746. "psr-4": {
  1747. "GuzzleHttp\\Psr7\\": "src/"
  1748. }
  1749. },
  1750. "notification-url": "https://packagist.org/downloads/",
  1751. "license": [
  1752. "MIT"
  1753. ],
  1754. "authors": [
  1755. {
  1756. "name": "Graham Campbell",
  1757. "email": "hello@gjcampbell.co.uk",
  1758. "homepage": "https://github.com/GrahamCampbell"
  1759. },
  1760. {
  1761. "name": "Michael Dowling",
  1762. "email": "mtdowling@gmail.com",
  1763. "homepage": "https://github.com/mtdowling"
  1764. },
  1765. {
  1766. "name": "George Mponos",
  1767. "email": "gmponos@gmail.com",
  1768. "homepage": "https://github.com/gmponos"
  1769. },
  1770. {
  1771. "name": "Tobias Nyholm",
  1772. "email": "tobias.nyholm@gmail.com",
  1773. "homepage": "https://github.com/Nyholm"
  1774. },
  1775. {
  1776. "name": "Márk Sági-Kazár",
  1777. "email": "mark.sagikazar@gmail.com",
  1778. "homepage": "https://github.com/sagikazarmark"
  1779. },
  1780. {
  1781. "name": "Tobias Schultze",
  1782. "email": "webmaster@tubo-world.de",
  1783. "homepage": "https://github.com/Tobion"
  1784. },
  1785. {
  1786. "name": "Márk Sági-Kazár",
  1787. "email": "mark.sagikazar@gmail.com",
  1788. "homepage": "https://sagikazarmark.hu"
  1789. }
  1790. ],
  1791. "description": "PSR-7 message implementation that also provides common utility methods",
  1792. "keywords": [
  1793. "http",
  1794. "message",
  1795. "psr-7",
  1796. "request",
  1797. "response",
  1798. "stream",
  1799. "uri",
  1800. "url"
  1801. ],
  1802. "support": {
  1803. "issues": "https://github.com/guzzle/psr7/issues",
  1804. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  1805. },
  1806. "funding": [
  1807. {
  1808. "url": "https://github.com/GrahamCampbell",
  1809. "type": "github"
  1810. },
  1811. {
  1812. "url": "https://github.com/Nyholm",
  1813. "type": "github"
  1814. },
  1815. {
  1816. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1817. "type": "tidelift"
  1818. }
  1819. ],
  1820. "time": "2024-07-18T11:15:46+00:00"
  1821. },
  1822. {
  1823. "name": "guzzlehttp/ringphp",
  1824. "version": "1.1.1",
  1825. "source": {
  1826. "type": "git",
  1827. "url": "https://github.com/guzzle/RingPHP.git",
  1828. "reference": "5e2a174052995663dd68e6b5ad838afd47dd615b"
  1829. },
  1830. "dist": {
  1831. "type": "zip",
  1832. "url": "https://api.github.com/repos/guzzle/RingPHP/zipball/5e2a174052995663dd68e6b5ad838afd47dd615b",
  1833. "reference": "5e2a174052995663dd68e6b5ad838afd47dd615b",
  1834. "shasum": "",
  1835. "mirrors": [
  1836. {
  1837. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1838. "preferred": true
  1839. }
  1840. ]
  1841. },
  1842. "require": {
  1843. "guzzlehttp/streams": "~3.0",
  1844. "php": ">=5.4.0",
  1845. "react/promise": "~2.0"
  1846. },
  1847. "require-dev": {
  1848. "ext-curl": "*",
  1849. "phpunit/phpunit": "~4.0"
  1850. },
  1851. "suggest": {
  1852. "ext-curl": "Guzzle will use specific adapters if cURL is present"
  1853. },
  1854. "type": "library",
  1855. "extra": {
  1856. "branch-alias": {
  1857. "dev-master": "1.1-dev"
  1858. }
  1859. },
  1860. "autoload": {
  1861. "psr-4": {
  1862. "GuzzleHttp\\Ring\\": "src/"
  1863. }
  1864. },
  1865. "notification-url": "https://packagist.org/downloads/",
  1866. "license": [
  1867. "MIT"
  1868. ],
  1869. "authors": [
  1870. {
  1871. "name": "Michael Dowling",
  1872. "email": "mtdowling@gmail.com",
  1873. "homepage": "https://github.com/mtdowling"
  1874. }
  1875. ],
  1876. "description": "Provides a simple API and specification that abstracts away the details of HTTP into a single PHP function.",
  1877. "support": {
  1878. "issues": "https://github.com/guzzle/RingPHP/issues",
  1879. "source": "https://github.com/guzzle/RingPHP/tree/1.1.1"
  1880. },
  1881. "abandoned": true,
  1882. "time": "2018-07-31T13:22:33+00:00"
  1883. },
  1884. {
  1885. "name": "guzzlehttp/streams",
  1886. "version": "3.0.0",
  1887. "source": {
  1888. "type": "git",
  1889. "url": "https://github.com/guzzle/streams.git",
  1890. "reference": "47aaa48e27dae43d39fc1cea0ccf0d84ac1a2ba5"
  1891. },
  1892. "dist": {
  1893. "type": "zip",
  1894. "url": "https://api.github.com/repos/guzzle/streams/zipball/47aaa48e27dae43d39fc1cea0ccf0d84ac1a2ba5",
  1895. "reference": "47aaa48e27dae43d39fc1cea0ccf0d84ac1a2ba5",
  1896. "shasum": "",
  1897. "mirrors": [
  1898. {
  1899. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1900. "preferred": true
  1901. }
  1902. ]
  1903. },
  1904. "require": {
  1905. "php": ">=5.4.0"
  1906. },
  1907. "require-dev": {
  1908. "phpunit/phpunit": "~4.0"
  1909. },
  1910. "type": "library",
  1911. "extra": {
  1912. "branch-alias": {
  1913. "dev-master": "3.0-dev"
  1914. }
  1915. },
  1916. "autoload": {
  1917. "psr-4": {
  1918. "GuzzleHttp\\Stream\\": "src/"
  1919. }
  1920. },
  1921. "notification-url": "https://packagist.org/downloads/",
  1922. "license": [
  1923. "MIT"
  1924. ],
  1925. "authors": [
  1926. {
  1927. "name": "Michael Dowling",
  1928. "email": "mtdowling@gmail.com",
  1929. "homepage": "https://github.com/mtdowling"
  1930. }
  1931. ],
  1932. "description": "Provides a simple abstraction over streams of data",
  1933. "homepage": "http://guzzlephp.org/",
  1934. "keywords": [
  1935. "Guzzle",
  1936. "stream"
  1937. ],
  1938. "support": {
  1939. "issues": "https://github.com/guzzle/streams/issues",
  1940. "source": "https://github.com/guzzle/streams/tree/master"
  1941. },
  1942. "abandoned": true,
  1943. "time": "2014-10-12T19:18:40+00:00"
  1944. },
  1945. {
  1946. "name": "guzzlehttp/uri-template",
  1947. "version": "v1.0.3",
  1948. "source": {
  1949. "type": "git",
  1950. "url": "https://github.com/guzzle/uri-template.git",
  1951. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c"
  1952. },
  1953. "dist": {
  1954. "type": "zip",
  1955. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1956. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1957. "shasum": "",
  1958. "mirrors": [
  1959. {
  1960. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1961. "preferred": true
  1962. }
  1963. ]
  1964. },
  1965. "require": {
  1966. "php": "^7.2.5 || ^8.0",
  1967. "symfony/polyfill-php80": "^1.24"
  1968. },
  1969. "require-dev": {
  1970. "bamarni/composer-bin-plugin": "^1.8.2",
  1971. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  1972. "uri-template/tests": "1.0.0"
  1973. },
  1974. "type": "library",
  1975. "extra": {
  1976. "bamarni-bin": {
  1977. "bin-links": true,
  1978. "forward-command": false
  1979. }
  1980. },
  1981. "autoload": {
  1982. "psr-4": {
  1983. "GuzzleHttp\\UriTemplate\\": "src"
  1984. }
  1985. },
  1986. "notification-url": "https://packagist.org/downloads/",
  1987. "license": [
  1988. "MIT"
  1989. ],
  1990. "authors": [
  1991. {
  1992. "name": "Graham Campbell",
  1993. "email": "hello@gjcampbell.co.uk",
  1994. "homepage": "https://github.com/GrahamCampbell"
  1995. },
  1996. {
  1997. "name": "Michael Dowling",
  1998. "email": "mtdowling@gmail.com",
  1999. "homepage": "https://github.com/mtdowling"
  2000. },
  2001. {
  2002. "name": "George Mponos",
  2003. "email": "gmponos@gmail.com",
  2004. "homepage": "https://github.com/gmponos"
  2005. },
  2006. {
  2007. "name": "Tobias Nyholm",
  2008. "email": "tobias.nyholm@gmail.com",
  2009. "homepage": "https://github.com/Nyholm"
  2010. }
  2011. ],
  2012. "description": "A polyfill class for uri_template of PHP",
  2013. "keywords": [
  2014. "guzzlehttp",
  2015. "uri-template"
  2016. ],
  2017. "support": {
  2018. "issues": "https://github.com/guzzle/uri-template/issues",
  2019. "source": "https://github.com/guzzle/uri-template/tree/v1.0.3"
  2020. },
  2021. "funding": [
  2022. {
  2023. "url": "https://github.com/GrahamCampbell",
  2024. "type": "github"
  2025. },
  2026. {
  2027. "url": "https://github.com/Nyholm",
  2028. "type": "github"
  2029. },
  2030. {
  2031. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  2032. "type": "tidelift"
  2033. }
  2034. ],
  2035. "time": "2023-12-03T19:50:20+00:00"
  2036. },
  2037. {
  2038. "name": "intervention/image",
  2039. "version": "2.7.2",
  2040. "source": {
  2041. "type": "git",
  2042. "url": "https://github.com/Intervention/image.git",
  2043. "reference": "04be355f8d6734c826045d02a1079ad658322dad"
  2044. },
  2045. "dist": {
  2046. "type": "zip",
  2047. "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad",
  2048. "reference": "04be355f8d6734c826045d02a1079ad658322dad",
  2049. "shasum": "",
  2050. "mirrors": [
  2051. {
  2052. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2053. "preferred": true
  2054. }
  2055. ]
  2056. },
  2057. "require": {
  2058. "ext-fileinfo": "*",
  2059. "guzzlehttp/psr7": "~1.1 || ^2.0",
  2060. "php": ">=5.4.0"
  2061. },
  2062. "require-dev": {
  2063. "mockery/mockery": "~0.9.2",
  2064. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  2065. },
  2066. "suggest": {
  2067. "ext-gd": "to use GD library based image processing.",
  2068. "ext-imagick": "to use Imagick based image processing.",
  2069. "intervention/imagecache": "Caching extension for the Intervention Image library"
  2070. },
  2071. "type": "library",
  2072. "extra": {
  2073. "branch-alias": {
  2074. "dev-master": "2.4-dev"
  2075. },
  2076. "laravel": {
  2077. "providers": [
  2078. "Intervention\\Image\\ImageServiceProvider"
  2079. ],
  2080. "aliases": {
  2081. "Image": "Intervention\\Image\\Facades\\Image"
  2082. }
  2083. }
  2084. },
  2085. "autoload": {
  2086. "psr-4": {
  2087. "Intervention\\Image\\": "src/Intervention/Image"
  2088. }
  2089. },
  2090. "notification-url": "https://packagist.org/downloads/",
  2091. "license": [
  2092. "MIT"
  2093. ],
  2094. "authors": [
  2095. {
  2096. "name": "Oliver Vogel",
  2097. "email": "oliver@intervention.io",
  2098. "homepage": "https://intervention.io/"
  2099. }
  2100. ],
  2101. "description": "Image handling and manipulation library with support for Laravel integration",
  2102. "homepage": "http://image.intervention.io/",
  2103. "keywords": [
  2104. "gd",
  2105. "image",
  2106. "imagick",
  2107. "laravel",
  2108. "thumbnail",
  2109. "watermark"
  2110. ],
  2111. "support": {
  2112. "issues": "https://github.com/Intervention/image/issues",
  2113. "source": "https://github.com/Intervention/image/tree/2.7.2"
  2114. },
  2115. "funding": [
  2116. {
  2117. "url": "https://paypal.me/interventionio",
  2118. "type": "custom"
  2119. },
  2120. {
  2121. "url": "https://github.com/Intervention",
  2122. "type": "github"
  2123. }
  2124. ],
  2125. "time": "2022-05-21T17:30:32+00:00"
  2126. },
  2127. {
  2128. "name": "joypack/tencent-map",
  2129. "version": "1.0.0",
  2130. "source": {
  2131. "type": "git",
  2132. "url": "https://gitee.com/lphkxd/tencent-map",
  2133. "reference": "97c0269086d53dbecb9c3c6e1d2717645d7940a8"
  2134. },
  2135. "require": {
  2136. "php": ">=5.6"
  2137. },
  2138. "type": "library",
  2139. "autoload": {
  2140. "psr-4": {
  2141. "Joypack\\Tencent\\Map\\": "src"
  2142. }
  2143. },
  2144. "notification-url": "https://packagist.org/downloads/",
  2145. "license": [
  2146. "Apache-2.0"
  2147. ],
  2148. "authors": [
  2149. {
  2150. "name": "堪笑",
  2151. "email": "jixiang.f@gmail.com",
  2152. "homepage": "http://cli.life",
  2153. "role": "Developer"
  2154. }
  2155. ],
  2156. "description": "腾讯位置服务(WebService)",
  2157. "homepage": "https://github.com/joypack/tencent-map",
  2158. "keywords": [
  2159. "LBS",
  2160. "腾讯位置服务"
  2161. ],
  2162. "support": {
  2163. "email": "jixiang.f@gmail.com",
  2164. "issues": "https://github.com/joypack/tencent-map/issues",
  2165. "wiki": "https://github.com/joypack/tencent-map/wiki"
  2166. },
  2167. "time": "2021-11-16T06:49:35+00:00"
  2168. },
  2169. {
  2170. "name": "league/flysystem",
  2171. "version": "1.1.10",
  2172. "source": {
  2173. "type": "git",
  2174. "url": "https://github.com/thephpleague/flysystem.git",
  2175. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  2176. },
  2177. "dist": {
  2178. "type": "zip",
  2179. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2180. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2181. "shasum": "",
  2182. "mirrors": [
  2183. {
  2184. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2185. "preferred": true
  2186. }
  2187. ]
  2188. },
  2189. "require": {
  2190. "ext-fileinfo": "*",
  2191. "league/mime-type-detection": "^1.3",
  2192. "php": "^7.2.5 || ^8.0"
  2193. },
  2194. "conflict": {
  2195. "league/flysystem-sftp": "<1.0.6"
  2196. },
  2197. "require-dev": {
  2198. "phpspec/prophecy": "^1.11.1",
  2199. "phpunit/phpunit": "^8.5.8"
  2200. },
  2201. "suggest": {
  2202. "ext-ftp": "Allows you to use FTP server storage",
  2203. "ext-openssl": "Allows you to use FTPS server storage",
  2204. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2205. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2206. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2207. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2208. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2209. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2210. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2211. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2212. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2213. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2214. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2215. },
  2216. "type": "library",
  2217. "extra": {
  2218. "branch-alias": {
  2219. "dev-master": "1.1-dev"
  2220. }
  2221. },
  2222. "autoload": {
  2223. "psr-4": {
  2224. "League\\Flysystem\\": "src/"
  2225. }
  2226. },
  2227. "notification-url": "https://packagist.org/downloads/",
  2228. "license": [
  2229. "MIT"
  2230. ],
  2231. "authors": [
  2232. {
  2233. "name": "Frank de Jonge",
  2234. "email": "info@frenky.net"
  2235. }
  2236. ],
  2237. "description": "Filesystem abstraction: Many filesystems, one API.",
  2238. "keywords": [
  2239. "Cloud Files",
  2240. "WebDAV",
  2241. "abstraction",
  2242. "aws",
  2243. "cloud",
  2244. "copy.com",
  2245. "dropbox",
  2246. "file systems",
  2247. "files",
  2248. "filesystem",
  2249. "filesystems",
  2250. "ftp",
  2251. "rackspace",
  2252. "remote",
  2253. "s3",
  2254. "sftp",
  2255. "storage"
  2256. ],
  2257. "support": {
  2258. "issues": "https://github.com/thephpleague/flysystem/issues",
  2259. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  2260. },
  2261. "funding": [
  2262. {
  2263. "url": "https://offset.earth/frankdejonge",
  2264. "type": "other"
  2265. }
  2266. ],
  2267. "time": "2022-10-04T09:16:37+00:00"
  2268. },
  2269. {
  2270. "name": "league/flysystem-cached-adapter",
  2271. "version": "1.1.0",
  2272. "source": {
  2273. "type": "git",
  2274. "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
  2275. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff"
  2276. },
  2277. "dist": {
  2278. "type": "zip",
  2279. "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  2280. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  2281. "shasum": "",
  2282. "mirrors": [
  2283. {
  2284. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2285. "preferred": true
  2286. }
  2287. ]
  2288. },
  2289. "require": {
  2290. "league/flysystem": "~1.0",
  2291. "psr/cache": "^1.0.0"
  2292. },
  2293. "require-dev": {
  2294. "mockery/mockery": "~0.9",
  2295. "phpspec/phpspec": "^3.4",
  2296. "phpunit/phpunit": "^5.7",
  2297. "predis/predis": "~1.0",
  2298. "tedivm/stash": "~0.12"
  2299. },
  2300. "suggest": {
  2301. "ext-phpredis": "Pure C implemented extension for PHP"
  2302. },
  2303. "type": "library",
  2304. "autoload": {
  2305. "psr-4": {
  2306. "League\\Flysystem\\Cached\\": "src/"
  2307. }
  2308. },
  2309. "notification-url": "https://packagist.org/downloads/",
  2310. "license": [
  2311. "MIT"
  2312. ],
  2313. "authors": [
  2314. {
  2315. "name": "frankdejonge",
  2316. "email": "info@frenky.net"
  2317. }
  2318. ],
  2319. "description": "An adapter decorator to enable meta-data caching.",
  2320. "support": {
  2321. "issues": "https://github.com/thephpleague/flysystem-cached-adapter/issues",
  2322. "source": "https://github.com/thephpleague/flysystem-cached-adapter/tree/master"
  2323. },
  2324. "time": "2020-07-25T15:56:04+00:00"
  2325. },
  2326. {
  2327. "name": "league/mime-type-detection",
  2328. "version": "1.15.0",
  2329. "source": {
  2330. "type": "git",
  2331. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2332. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301"
  2333. },
  2334. "dist": {
  2335. "type": "zip",
  2336. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  2337. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  2338. "shasum": "",
  2339. "mirrors": [
  2340. {
  2341. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2342. "preferred": true
  2343. }
  2344. ]
  2345. },
  2346. "require": {
  2347. "ext-fileinfo": "*",
  2348. "php": "^7.4 || ^8.0"
  2349. },
  2350. "require-dev": {
  2351. "friendsofphp/php-cs-fixer": "^3.2",
  2352. "phpstan/phpstan": "^0.12.68",
  2353. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  2354. },
  2355. "type": "library",
  2356. "autoload": {
  2357. "psr-4": {
  2358. "League\\MimeTypeDetection\\": "src"
  2359. }
  2360. },
  2361. "notification-url": "https://packagist.org/downloads/",
  2362. "license": [
  2363. "MIT"
  2364. ],
  2365. "authors": [
  2366. {
  2367. "name": "Frank de Jonge",
  2368. "email": "info@frankdejonge.nl"
  2369. }
  2370. ],
  2371. "description": "Mime-type detection for Flysystem",
  2372. "support": {
  2373. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2374. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.15.0"
  2375. },
  2376. "funding": [
  2377. {
  2378. "url": "https://github.com/frankdejonge",
  2379. "type": "github"
  2380. },
  2381. {
  2382. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2383. "type": "tidelift"
  2384. }
  2385. ],
  2386. "time": "2024-01-28T23:22:08+00:00"
  2387. },
  2388. {
  2389. "name": "lizhichao/one-sm",
  2390. "version": "1.10",
  2391. "source": {
  2392. "type": "git",
  2393. "url": "https://github.com/lizhichao/sm.git",
  2394. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a"
  2395. },
  2396. "dist": {
  2397. "type": "zip",
  2398. "url": "https://api.github.com/repos/lizhichao/sm/zipball/687a012a44a5bfd4d9143a0234e1060543be455a",
  2399. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a",
  2400. "shasum": "",
  2401. "mirrors": [
  2402. {
  2403. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2404. "preferred": true
  2405. }
  2406. ]
  2407. },
  2408. "require": {
  2409. "php": ">=5.6"
  2410. },
  2411. "type": "library",
  2412. "autoload": {
  2413. "psr-4": {
  2414. "OneSm\\": "src/"
  2415. }
  2416. },
  2417. "notification-url": "https://packagist.org/downloads/",
  2418. "license": [
  2419. "Apache-2.0"
  2420. ],
  2421. "authors": [
  2422. {
  2423. "name": "tanszhe",
  2424. "email": "1018595261@qq.com"
  2425. }
  2426. ],
  2427. "description": "国密sm3",
  2428. "keywords": [
  2429. "php",
  2430. "sm3"
  2431. ],
  2432. "support": {
  2433. "issues": "https://github.com/lizhichao/sm/issues",
  2434. "source": "https://github.com/lizhichao/sm/tree/1.10"
  2435. },
  2436. "funding": [
  2437. {
  2438. "url": "https://www.vicsdf.com/img/w.jpg",
  2439. "type": "custom"
  2440. },
  2441. {
  2442. "url": "https://www.vicsdf.com/img/z.jpg",
  2443. "type": "custom"
  2444. }
  2445. ],
  2446. "time": "2021-05-26T06:19:22+00:00"
  2447. },
  2448. {
  2449. "name": "maennchen/zipstream-php",
  2450. "version": "2.2.6",
  2451. "source": {
  2452. "type": "git",
  2453. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2454. "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f"
  2455. },
  2456. "dist": {
  2457. "type": "zip",
  2458. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f",
  2459. "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f",
  2460. "shasum": "",
  2461. "mirrors": [
  2462. {
  2463. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2464. "preferred": true
  2465. }
  2466. ]
  2467. },
  2468. "require": {
  2469. "myclabs/php-enum": "^1.5",
  2470. "php": "^7.4 || ^8.0",
  2471. "psr/http-message": "^1.0",
  2472. "symfony/polyfill-mbstring": "^1.0"
  2473. },
  2474. "require-dev": {
  2475. "ext-zip": "*",
  2476. "friendsofphp/php-cs-fixer": "^3.9",
  2477. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  2478. "mikey179/vfsstream": "^1.6",
  2479. "php-coveralls/php-coveralls": "^2.4",
  2480. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  2481. "vimeo/psalm": "^4.1"
  2482. },
  2483. "type": "library",
  2484. "autoload": {
  2485. "psr-4": {
  2486. "ZipStream\\": "src/"
  2487. }
  2488. },
  2489. "notification-url": "https://packagist.org/downloads/",
  2490. "license": [
  2491. "MIT"
  2492. ],
  2493. "authors": [
  2494. {
  2495. "name": "Paul Duncan",
  2496. "email": "pabs@pablotron.org"
  2497. },
  2498. {
  2499. "name": "Jonatan Männchen",
  2500. "email": "jonatan@maennchen.ch"
  2501. },
  2502. {
  2503. "name": "Jesse Donat",
  2504. "email": "donatj@gmail.com"
  2505. },
  2506. {
  2507. "name": "András Kolesár",
  2508. "email": "kolesar@kolesar.hu"
  2509. }
  2510. ],
  2511. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2512. "keywords": [
  2513. "stream",
  2514. "zip"
  2515. ],
  2516. "support": {
  2517. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2518. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.2.6"
  2519. },
  2520. "funding": [
  2521. {
  2522. "url": "https://github.com/maennchen",
  2523. "type": "github"
  2524. },
  2525. {
  2526. "url": "https://opencollective.com/zipstream",
  2527. "type": "open_collective"
  2528. }
  2529. ],
  2530. "time": "2022-11-25T18:57:19+00:00"
  2531. },
  2532. {
  2533. "name": "markbaker/complex",
  2534. "version": "3.0.2",
  2535. "source": {
  2536. "type": "git",
  2537. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2538. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  2539. },
  2540. "dist": {
  2541. "type": "zip",
  2542. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2543. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2544. "shasum": "",
  2545. "mirrors": [
  2546. {
  2547. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2548. "preferred": true
  2549. }
  2550. ]
  2551. },
  2552. "require": {
  2553. "php": "^7.2 || ^8.0"
  2554. },
  2555. "require-dev": {
  2556. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2557. "phpcompatibility/php-compatibility": "^9.3",
  2558. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2559. "squizlabs/php_codesniffer": "^3.7"
  2560. },
  2561. "type": "library",
  2562. "autoload": {
  2563. "psr-4": {
  2564. "Complex\\": "classes/src/"
  2565. }
  2566. },
  2567. "notification-url": "https://packagist.org/downloads/",
  2568. "license": [
  2569. "MIT"
  2570. ],
  2571. "authors": [
  2572. {
  2573. "name": "Mark Baker",
  2574. "email": "mark@lange.demon.co.uk"
  2575. }
  2576. ],
  2577. "description": "PHP Class for working with complex numbers",
  2578. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2579. "keywords": [
  2580. "complex",
  2581. "mathematics"
  2582. ],
  2583. "support": {
  2584. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2585. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  2586. },
  2587. "time": "2022-12-06T16:21:08+00:00"
  2588. },
  2589. {
  2590. "name": "markbaker/matrix",
  2591. "version": "3.0.1",
  2592. "source": {
  2593. "type": "git",
  2594. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2595. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  2596. },
  2597. "dist": {
  2598. "type": "zip",
  2599. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  2600. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  2601. "shasum": "",
  2602. "mirrors": [
  2603. {
  2604. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2605. "preferred": true
  2606. }
  2607. ]
  2608. },
  2609. "require": {
  2610. "php": "^7.1 || ^8.0"
  2611. },
  2612. "require-dev": {
  2613. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2614. "phpcompatibility/php-compatibility": "^9.3",
  2615. "phpdocumentor/phpdocumentor": "2.*",
  2616. "phploc/phploc": "^4.0",
  2617. "phpmd/phpmd": "2.*",
  2618. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2619. "sebastian/phpcpd": "^4.0",
  2620. "squizlabs/php_codesniffer": "^3.7"
  2621. },
  2622. "type": "library",
  2623. "autoload": {
  2624. "psr-4": {
  2625. "Matrix\\": "classes/src/"
  2626. }
  2627. },
  2628. "notification-url": "https://packagist.org/downloads/",
  2629. "license": [
  2630. "MIT"
  2631. ],
  2632. "authors": [
  2633. {
  2634. "name": "Mark Baker",
  2635. "email": "mark@demon-angel.eu"
  2636. }
  2637. ],
  2638. "description": "PHP Class for working with matrices",
  2639. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2640. "keywords": [
  2641. "mathematics",
  2642. "matrix",
  2643. "vector"
  2644. ],
  2645. "support": {
  2646. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2647. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  2648. },
  2649. "time": "2022-12-02T22:17:43+00:00"
  2650. },
  2651. {
  2652. "name": "monolog/monolog",
  2653. "version": "2.10.0",
  2654. "source": {
  2655. "type": "git",
  2656. "url": "https://github.com/Seldaek/monolog.git",
  2657. "reference": "5cf826f2991858b54d5c3809bee745560a1042a7"
  2658. },
  2659. "dist": {
  2660. "type": "zip",
  2661. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/5cf826f2991858b54d5c3809bee745560a1042a7",
  2662. "reference": "5cf826f2991858b54d5c3809bee745560a1042a7",
  2663. "shasum": "",
  2664. "mirrors": [
  2665. {
  2666. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2667. "preferred": true
  2668. }
  2669. ]
  2670. },
  2671. "require": {
  2672. "php": ">=7.2",
  2673. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  2674. },
  2675. "provide": {
  2676. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  2677. },
  2678. "require-dev": {
  2679. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2680. "doctrine/couchdb": "~1.0@dev",
  2681. "elasticsearch/elasticsearch": "^7 || ^8",
  2682. "ext-json": "*",
  2683. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  2684. "guzzlehttp/guzzle": "^7.4",
  2685. "guzzlehttp/psr7": "^2.2",
  2686. "mongodb/mongodb": "^1.8",
  2687. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2688. "phpspec/prophecy": "^1.15",
  2689. "phpstan/phpstan": "^1.10",
  2690. "phpunit/phpunit": "^8.5.38 || ^9.6.19",
  2691. "predis/predis": "^1.1 || ^2.0",
  2692. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  2693. "ruflin/elastica": "^7",
  2694. "swiftmailer/swiftmailer": "^5.3|^6.0",
  2695. "symfony/mailer": "^5.4 || ^6",
  2696. "symfony/mime": "^5.4 || ^6"
  2697. },
  2698. "suggest": {
  2699. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2700. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2701. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2702. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2703. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2704. "ext-mbstring": "Allow to work properly with unicode symbols",
  2705. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2706. "ext-openssl": "Required to send log messages using SSL",
  2707. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2708. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2709. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2710. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2711. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2712. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2713. },
  2714. "type": "library",
  2715. "extra": {
  2716. "branch-alias": {
  2717. "dev-main": "2.x-dev"
  2718. }
  2719. },
  2720. "autoload": {
  2721. "psr-4": {
  2722. "Monolog\\": "src/Monolog"
  2723. }
  2724. },
  2725. "notification-url": "https://packagist.org/downloads/",
  2726. "license": [
  2727. "MIT"
  2728. ],
  2729. "authors": [
  2730. {
  2731. "name": "Jordi Boggiano",
  2732. "email": "j.boggiano@seld.be",
  2733. "homepage": "https://seld.be"
  2734. }
  2735. ],
  2736. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2737. "homepage": "https://github.com/Seldaek/monolog",
  2738. "keywords": [
  2739. "log",
  2740. "logging",
  2741. "psr-3"
  2742. ],
  2743. "support": {
  2744. "issues": "https://github.com/Seldaek/monolog/issues",
  2745. "source": "https://github.com/Seldaek/monolog/tree/2.10.0"
  2746. },
  2747. "funding": [
  2748. {
  2749. "url": "https://github.com/Seldaek",
  2750. "type": "github"
  2751. },
  2752. {
  2753. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2754. "type": "tidelift"
  2755. }
  2756. ],
  2757. "time": "2024-11-12T12:43:37+00:00"
  2758. },
  2759. {
  2760. "name": "myclabs/php-enum",
  2761. "version": "1.8.4",
  2762. "source": {
  2763. "type": "git",
  2764. "url": "https://github.com/myclabs/php-enum.git",
  2765. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  2766. },
  2767. "dist": {
  2768. "type": "zip",
  2769. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  2770. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  2771. "shasum": "",
  2772. "mirrors": [
  2773. {
  2774. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2775. "preferred": true
  2776. }
  2777. ]
  2778. },
  2779. "require": {
  2780. "ext-json": "*",
  2781. "php": "^7.3 || ^8.0"
  2782. },
  2783. "require-dev": {
  2784. "phpunit/phpunit": "^9.5",
  2785. "squizlabs/php_codesniffer": "1.*",
  2786. "vimeo/psalm": "^4.6.2"
  2787. },
  2788. "type": "library",
  2789. "autoload": {
  2790. "psr-4": {
  2791. "MyCLabs\\Enum\\": "src/"
  2792. },
  2793. "classmap": [
  2794. "stubs/Stringable.php"
  2795. ]
  2796. },
  2797. "notification-url": "https://packagist.org/downloads/",
  2798. "license": [
  2799. "MIT"
  2800. ],
  2801. "authors": [
  2802. {
  2803. "name": "PHP Enum contributors",
  2804. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2805. }
  2806. ],
  2807. "description": "PHP Enum implementation",
  2808. "homepage": "http://github.com/myclabs/php-enum",
  2809. "keywords": [
  2810. "enum"
  2811. ],
  2812. "support": {
  2813. "issues": "https://github.com/myclabs/php-enum/issues",
  2814. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  2815. },
  2816. "funding": [
  2817. {
  2818. "url": "https://github.com/mnapoli",
  2819. "type": "github"
  2820. },
  2821. {
  2822. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  2823. "type": "tidelift"
  2824. }
  2825. ],
  2826. "time": "2022-08-04T09:53:51+00:00"
  2827. },
  2828. {
  2829. "name": "nesbot/carbon",
  2830. "version": "2.72.5",
  2831. "source": {
  2832. "type": "git",
  2833. "url": "https://github.com/briannesbitt/Carbon.git",
  2834. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  2835. },
  2836. "dist": {
  2837. "type": "zip",
  2838. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  2839. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  2840. "shasum": "",
  2841. "mirrors": [
  2842. {
  2843. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2844. "preferred": true
  2845. }
  2846. ]
  2847. },
  2848. "require": {
  2849. "carbonphp/carbon-doctrine-types": "*",
  2850. "ext-json": "*",
  2851. "php": "^7.1.8 || ^8.0",
  2852. "psr/clock": "^1.0",
  2853. "symfony/polyfill-mbstring": "^1.0",
  2854. "symfony/polyfill-php80": "^1.16",
  2855. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  2856. },
  2857. "provide": {
  2858. "psr/clock-implementation": "1.0"
  2859. },
  2860. "require-dev": {
  2861. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  2862. "doctrine/orm": "^2.7 || ^3.0",
  2863. "friendsofphp/php-cs-fixer": "^3.0",
  2864. "kylekatarnls/multi-tester": "^2.0",
  2865. "ondrejmirtes/better-reflection": "*",
  2866. "phpmd/phpmd": "^2.9",
  2867. "phpstan/extension-installer": "^1.0",
  2868. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  2869. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  2870. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  2871. "squizlabs/php_codesniffer": "^3.4"
  2872. },
  2873. "bin": [
  2874. "bin/carbon"
  2875. ],
  2876. "type": "library",
  2877. "extra": {
  2878. "branch-alias": {
  2879. "dev-master": "3.x-dev",
  2880. "dev-2.x": "2.x-dev"
  2881. },
  2882. "laravel": {
  2883. "providers": [
  2884. "Carbon\\Laravel\\ServiceProvider"
  2885. ]
  2886. },
  2887. "phpstan": {
  2888. "includes": [
  2889. "extension.neon"
  2890. ]
  2891. }
  2892. },
  2893. "autoload": {
  2894. "psr-4": {
  2895. "Carbon\\": "src/Carbon/"
  2896. }
  2897. },
  2898. "notification-url": "https://packagist.org/downloads/",
  2899. "license": [
  2900. "MIT"
  2901. ],
  2902. "authors": [
  2903. {
  2904. "name": "Brian Nesbitt",
  2905. "email": "brian@nesbot.com",
  2906. "homepage": "https://markido.com"
  2907. },
  2908. {
  2909. "name": "kylekatarnls",
  2910. "homepage": "https://github.com/kylekatarnls"
  2911. }
  2912. ],
  2913. "description": "An API extension for DateTime that supports 281 different languages.",
  2914. "homepage": "https://carbon.nesbot.com",
  2915. "keywords": [
  2916. "date",
  2917. "datetime",
  2918. "time"
  2919. ],
  2920. "support": {
  2921. "docs": "https://carbon.nesbot.com/docs",
  2922. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2923. "source": "https://github.com/briannesbitt/Carbon"
  2924. },
  2925. "funding": [
  2926. {
  2927. "url": "https://github.com/sponsors/kylekatarnls",
  2928. "type": "github"
  2929. },
  2930. {
  2931. "url": "https://opencollective.com/Carbon#sponsor",
  2932. "type": "opencollective"
  2933. },
  2934. {
  2935. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  2936. "type": "tidelift"
  2937. }
  2938. ],
  2939. "time": "2024-06-03T19:18:41+00:00"
  2940. },
  2941. {
  2942. "name": "nette/php-generator",
  2943. "version": "v3.6.9",
  2944. "source": {
  2945. "type": "git",
  2946. "url": "https://github.com/nette/php-generator.git",
  2947. "reference": "d31782f7bd2ae84ad06f863391ec3fb77ca4d0a6"
  2948. },
  2949. "dist": {
  2950. "type": "zip",
  2951. "url": "https://api.github.com/repos/nette/php-generator/zipball/d31782f7bd2ae84ad06f863391ec3fb77ca4d0a6",
  2952. "reference": "d31782f7bd2ae84ad06f863391ec3fb77ca4d0a6",
  2953. "shasum": "",
  2954. "mirrors": [
  2955. {
  2956. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2957. "preferred": true
  2958. }
  2959. ]
  2960. },
  2961. "require": {
  2962. "nette/utils": "^3.1.2",
  2963. "php": ">=7.2 <8.3"
  2964. },
  2965. "require-dev": {
  2966. "nette/tester": "^2.4",
  2967. "nikic/php-parser": "^4.13",
  2968. "phpstan/phpstan": "^0.12",
  2969. "tracy/tracy": "^2.8"
  2970. },
  2971. "suggest": {
  2972. "nikic/php-parser": "to use ClassType::withBodiesFrom() & GlobalFunction::withBodyFrom()"
  2973. },
  2974. "type": "library",
  2975. "extra": {
  2976. "branch-alias": {
  2977. "dev-master": "3.6-dev"
  2978. }
  2979. },
  2980. "autoload": {
  2981. "classmap": [
  2982. "src/"
  2983. ]
  2984. },
  2985. "notification-url": "https://packagist.org/downloads/",
  2986. "license": [
  2987. "BSD-3-Clause",
  2988. "GPL-2.0-only",
  2989. "GPL-3.0-only"
  2990. ],
  2991. "authors": [
  2992. {
  2993. "name": "David Grudl",
  2994. "homepage": "https://davidgrudl.com"
  2995. },
  2996. {
  2997. "name": "Nette Community",
  2998. "homepage": "https://nette.org/contributors"
  2999. }
  3000. ],
  3001. "description": "🐘 Nette PHP Generator: generates neat PHP code for you. Supports new PHP 8.1 features.",
  3002. "homepage": "https://nette.org",
  3003. "keywords": [
  3004. "code",
  3005. "nette",
  3006. "php",
  3007. "scaffolding"
  3008. ],
  3009. "support": {
  3010. "issues": "https://github.com/nette/php-generator/issues",
  3011. "source": "https://github.com/nette/php-generator/tree/v3.6.9"
  3012. },
  3013. "time": "2022-10-04T11:49:47+00:00"
  3014. },
  3015. {
  3016. "name": "nette/utils",
  3017. "version": "v3.2.10",
  3018. "source": {
  3019. "type": "git",
  3020. "url": "https://github.com/nette/utils.git",
  3021. "reference": "a4175c62652f2300c8017fb7e640f9ccb11648d2"
  3022. },
  3023. "dist": {
  3024. "type": "zip",
  3025. "url": "https://api.github.com/repos/nette/utils/zipball/a4175c62652f2300c8017fb7e640f9ccb11648d2",
  3026. "reference": "a4175c62652f2300c8017fb7e640f9ccb11648d2",
  3027. "shasum": "",
  3028. "mirrors": [
  3029. {
  3030. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3031. "preferred": true
  3032. }
  3033. ]
  3034. },
  3035. "require": {
  3036. "php": ">=7.2 <8.4"
  3037. },
  3038. "conflict": {
  3039. "nette/di": "<3.0.6"
  3040. },
  3041. "require-dev": {
  3042. "jetbrains/phpstorm-attributes": "dev-master",
  3043. "nette/tester": "~2.0",
  3044. "phpstan/phpstan": "^1.0",
  3045. "tracy/tracy": "^2.3"
  3046. },
  3047. "suggest": {
  3048. "ext-gd": "to use Image",
  3049. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3050. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3051. "ext-json": "to use Nette\\Utils\\Json",
  3052. "ext-mbstring": "to use Strings::lower() etc...",
  3053. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  3054. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  3055. },
  3056. "type": "library",
  3057. "extra": {
  3058. "branch-alias": {
  3059. "dev-master": "3.2-dev"
  3060. }
  3061. },
  3062. "autoload": {
  3063. "classmap": [
  3064. "src/"
  3065. ]
  3066. },
  3067. "notification-url": "https://packagist.org/downloads/",
  3068. "license": [
  3069. "BSD-3-Clause",
  3070. "GPL-2.0-only",
  3071. "GPL-3.0-only"
  3072. ],
  3073. "authors": [
  3074. {
  3075. "name": "David Grudl",
  3076. "homepage": "https://davidgrudl.com"
  3077. },
  3078. {
  3079. "name": "Nette Community",
  3080. "homepage": "https://nette.org/contributors"
  3081. }
  3082. ],
  3083. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3084. "homepage": "https://nette.org",
  3085. "keywords": [
  3086. "array",
  3087. "core",
  3088. "datetime",
  3089. "images",
  3090. "json",
  3091. "nette",
  3092. "paginator",
  3093. "password",
  3094. "slugify",
  3095. "string",
  3096. "unicode",
  3097. "utf-8",
  3098. "utility",
  3099. "validation"
  3100. ],
  3101. "support": {
  3102. "issues": "https://github.com/nette/utils/issues",
  3103. "source": "https://github.com/nette/utils/tree/v3.2.10"
  3104. },
  3105. "time": "2023-07-30T15:38:18+00:00"
  3106. },
  3107. {
  3108. "name": "open-smf/connection-pool",
  3109. "version": "v1.0.16",
  3110. "source": {
  3111. "type": "git",
  3112. "url": "https://github.com/open-smf/connection-pool.git",
  3113. "reference": "f70e47dbf56f1869d3207e15825cf38810b865e0"
  3114. },
  3115. "dist": {
  3116. "type": "zip",
  3117. "url": "https://api.github.com/repos/open-smf/connection-pool/zipball/f70e47dbf56f1869d3207e15825cf38810b865e0",
  3118. "reference": "f70e47dbf56f1869d3207e15825cf38810b865e0",
  3119. "shasum": "",
  3120. "mirrors": [
  3121. {
  3122. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3123. "preferred": true
  3124. }
  3125. ]
  3126. },
  3127. "require": {
  3128. "ext-json": "*",
  3129. "ext-swoole": ">=4.2.9",
  3130. "php": ">=7.0.0"
  3131. },
  3132. "require-dev": {
  3133. "swoole/ide-helper": "@dev"
  3134. },
  3135. "suggest": {
  3136. "ext-redis": "A PHP extension for Redis."
  3137. },
  3138. "type": "library",
  3139. "autoload": {
  3140. "psr-4": {
  3141. "Smf\\ConnectionPool\\": "src"
  3142. }
  3143. },
  3144. "notification-url": "https://packagist.org/downloads/",
  3145. "license": [
  3146. "MIT"
  3147. ],
  3148. "authors": [
  3149. {
  3150. "name": "Xie Biao",
  3151. "email": "hhxsv5@sina.com"
  3152. }
  3153. ],
  3154. "description": "A common connection pool based on Swoole is usually used as the database connection pool.",
  3155. "homepage": "https://github.com/open-smf/connection-pool",
  3156. "keywords": [
  3157. "connection-pool",
  3158. "database-connection-pool",
  3159. "swoole"
  3160. ],
  3161. "support": {
  3162. "issues": "https://github.com/open-smf/connection-pool/issues",
  3163. "source": "https://github.com/open-smf/connection-pool"
  3164. },
  3165. "time": "2021-03-01T04:13:24+00:00"
  3166. },
  3167. {
  3168. "name": "overtrue/socialite",
  3169. "version": "3.5.4",
  3170. "source": {
  3171. "type": "git",
  3172. "url": "https://github.com/overtrue/socialite.git",
  3173. "reference": "6bd4f0230bcaec5ccfd64a10581a9063233b5a48"
  3174. },
  3175. "dist": {
  3176. "type": "zip",
  3177. "url": "https://api.github.com/repos/overtrue/socialite/zipball/6bd4f0230bcaec5ccfd64a10581a9063233b5a48",
  3178. "reference": "6bd4f0230bcaec5ccfd64a10581a9063233b5a48",
  3179. "shasum": "",
  3180. "mirrors": [
  3181. {
  3182. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3183. "preferred": true
  3184. }
  3185. ]
  3186. },
  3187. "require": {
  3188. "ext-json": "*",
  3189. "ext-openssl": "*",
  3190. "guzzlehttp/guzzle": "~6.0|~7.0",
  3191. "php": ">=7.4",
  3192. "symfony/http-foundation": "^5.0",
  3193. "symfony/psr-http-message-bridge": "^2.0"
  3194. },
  3195. "require-dev": {
  3196. "friendsofphp/php-cs-fixer": "^3.0",
  3197. "mockery/mockery": "~1.2",
  3198. "phpunit/phpunit": "~9.0"
  3199. },
  3200. "type": "library",
  3201. "autoload": {
  3202. "psr-4": {
  3203. "Overtrue\\Socialite\\": "src/"
  3204. }
  3205. },
  3206. "notification-url": "https://packagist.org/downloads/",
  3207. "license": [
  3208. "MIT"
  3209. ],
  3210. "authors": [
  3211. {
  3212. "name": "overtrue",
  3213. "email": "anzhengchao@gmail.com"
  3214. }
  3215. ],
  3216. "description": "A collection of OAuth 2 packages.",
  3217. "keywords": [
  3218. "Feishu",
  3219. "login",
  3220. "oauth",
  3221. "qcloud",
  3222. "qq",
  3223. "social",
  3224. "wechat",
  3225. "weibo"
  3226. ],
  3227. "support": {
  3228. "issues": "https://github.com/overtrue/socialite/issues",
  3229. "source": "https://github.com/overtrue/socialite/tree/3.5.4"
  3230. },
  3231. "funding": [
  3232. {
  3233. "url": "https://github.com/overtrue",
  3234. "type": "github"
  3235. }
  3236. ],
  3237. "time": "2022-11-19T13:32:42+00:00"
  3238. },
  3239. {
  3240. "name": "overtrue/wechat",
  3241. "version": "5.30.0",
  3242. "source": {
  3243. "type": "git",
  3244. "url": "https://github.com/w7corp/easywechat.git",
  3245. "reference": "245d1e821bc5a4609625c3244b111f570692cfc2"
  3246. },
  3247. "dist": {
  3248. "type": "zip",
  3249. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/245d1e821bc5a4609625c3244b111f570692cfc2",
  3250. "reference": "245d1e821bc5a4609625c3244b111f570692cfc2",
  3251. "shasum": "",
  3252. "mirrors": [
  3253. {
  3254. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3255. "preferred": true
  3256. }
  3257. ]
  3258. },
  3259. "require": {
  3260. "easywechat-composer/easywechat-composer": "^1.1",
  3261. "ext-fileinfo": "*",
  3262. "ext-libxml": "*",
  3263. "ext-openssl": "*",
  3264. "ext-simplexml": "*",
  3265. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  3266. "monolog/monolog": "^1.22 || ^2.0",
  3267. "overtrue/socialite": "^3.2 || ^4.0",
  3268. "php": ">=7.4",
  3269. "pimple/pimple": "^3.0",
  3270. "psr/simple-cache": "^1.0||^2.0||^3.0",
  3271. "symfony/cache": "^3.3 || ^4.3 || ^5.0 || ^6.0",
  3272. "symfony/event-dispatcher": "^4.3 || ^5.0 || ^6.0",
  3273. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0",
  3274. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  3275. },
  3276. "require-dev": {
  3277. "brainmaestro/composer-git-hooks": "^2.7",
  3278. "dms/phpunit-arraysubset-asserts": "^0.2.0",
  3279. "friendsofphp/php-cs-fixer": "^3.5.0",
  3280. "mikey179/vfsstream": "^1.6",
  3281. "mockery/mockery": "^1.2.3",
  3282. "phpstan/phpstan": "^0.12.0",
  3283. "phpunit/phpunit": "^9.3"
  3284. },
  3285. "type": "library",
  3286. "extra": {
  3287. "hooks": {
  3288. "pre-commit": [
  3289. "composer test",
  3290. "composer fix-style"
  3291. ],
  3292. "pre-push": [
  3293. "composer test",
  3294. "composer fix-style"
  3295. ]
  3296. }
  3297. },
  3298. "autoload": {
  3299. "files": [
  3300. "src/Kernel/Support/Helpers.php",
  3301. "src/Kernel/Helpers.php"
  3302. ],
  3303. "psr-4": {
  3304. "EasyWeChat\\": "src/"
  3305. }
  3306. },
  3307. "notification-url": "https://packagist.org/downloads/",
  3308. "license": [
  3309. "MIT"
  3310. ],
  3311. "authors": [
  3312. {
  3313. "name": "overtrue",
  3314. "email": "anzhengchao@gmail.com"
  3315. }
  3316. ],
  3317. "description": "微信SDK",
  3318. "keywords": [
  3319. "easywechat",
  3320. "sdk",
  3321. "wechat",
  3322. "weixin",
  3323. "weixin-sdk"
  3324. ],
  3325. "support": {
  3326. "issues": "https://github.com/w7corp/easywechat/issues",
  3327. "source": "https://github.com/w7corp/easywechat/tree/5.30.0"
  3328. },
  3329. "funding": [
  3330. {
  3331. "url": "https://github.com/overtrue",
  3332. "type": "github"
  3333. }
  3334. ],
  3335. "abandoned": "w7corp/easywechat",
  3336. "time": "2022-09-05T08:22:34+00:00"
  3337. },
  3338. {
  3339. "name": "phpoffice/phpspreadsheet",
  3340. "version": "1.29.4",
  3341. "source": {
  3342. "type": "git",
  3343. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3344. "reference": "7ca7e325dca3adb6a598385aab81f527b8d6c75d"
  3345. },
  3346. "dist": {
  3347. "type": "zip",
  3348. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/7ca7e325dca3adb6a598385aab81f527b8d6c75d",
  3349. "reference": "7ca7e325dca3adb6a598385aab81f527b8d6c75d",
  3350. "shasum": "",
  3351. "mirrors": [
  3352. {
  3353. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3354. "preferred": true
  3355. }
  3356. ]
  3357. },
  3358. "require": {
  3359. "ext-ctype": "*",
  3360. "ext-dom": "*",
  3361. "ext-fileinfo": "*",
  3362. "ext-gd": "*",
  3363. "ext-iconv": "*",
  3364. "ext-libxml": "*",
  3365. "ext-mbstring": "*",
  3366. "ext-simplexml": "*",
  3367. "ext-xml": "*",
  3368. "ext-xmlreader": "*",
  3369. "ext-xmlwriter": "*",
  3370. "ext-zip": "*",
  3371. "ext-zlib": "*",
  3372. "ezyang/htmlpurifier": "^4.15",
  3373. "maennchen/zipstream-php": "^2.1 || ^3.0",
  3374. "markbaker/complex": "^3.0",
  3375. "markbaker/matrix": "^3.0",
  3376. "php": "^7.4 || ^8.0",
  3377. "psr/http-client": "^1.0",
  3378. "psr/http-factory": "^1.0",
  3379. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  3380. },
  3381. "require-dev": {
  3382. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  3383. "dompdf/dompdf": "^1.0 || ^2.0",
  3384. "friendsofphp/php-cs-fixer": "^3.2",
  3385. "mitoteam/jpgraph": "^10.3",
  3386. "mpdf/mpdf": "^8.1.1",
  3387. "phpcompatibility/php-compatibility": "^9.3",
  3388. "phpstan/phpstan": "^1.1",
  3389. "phpstan/phpstan-phpunit": "^1.0",
  3390. "phpunit/phpunit": "^8.5 || ^9.0",
  3391. "squizlabs/php_codesniffer": "^3.7",
  3392. "tecnickcom/tcpdf": "^6.5"
  3393. },
  3394. "suggest": {
  3395. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  3396. "ext-intl": "PHP Internationalization Functions",
  3397. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3398. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3399. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  3400. },
  3401. "type": "library",
  3402. "autoload": {
  3403. "psr-4": {
  3404. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3405. }
  3406. },
  3407. "notification-url": "https://packagist.org/downloads/",
  3408. "license": [
  3409. "MIT"
  3410. ],
  3411. "authors": [
  3412. {
  3413. "name": "Maarten Balliauw",
  3414. "homepage": "https://blog.maartenballiauw.be"
  3415. },
  3416. {
  3417. "name": "Mark Baker",
  3418. "homepage": "https://markbakeruk.net"
  3419. },
  3420. {
  3421. "name": "Franck Lefevre",
  3422. "homepage": "https://rootslabs.net"
  3423. },
  3424. {
  3425. "name": "Erik Tilt"
  3426. },
  3427. {
  3428. "name": "Adrien Crivelli"
  3429. }
  3430. ],
  3431. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3432. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3433. "keywords": [
  3434. "OpenXML",
  3435. "excel",
  3436. "gnumeric",
  3437. "ods",
  3438. "php",
  3439. "spreadsheet",
  3440. "xls",
  3441. "xlsx"
  3442. ],
  3443. "support": {
  3444. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3445. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.4"
  3446. },
  3447. "time": "2024-11-10T16:26:22+00:00"
  3448. },
  3449. {
  3450. "name": "pimple/pimple",
  3451. "version": "v3.5.0",
  3452. "source": {
  3453. "type": "git",
  3454. "url": "https://github.com/silexphp/Pimple.git",
  3455. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  3456. },
  3457. "dist": {
  3458. "type": "zip",
  3459. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  3460. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  3461. "shasum": "",
  3462. "mirrors": [
  3463. {
  3464. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3465. "preferred": true
  3466. }
  3467. ]
  3468. },
  3469. "require": {
  3470. "php": ">=7.2.5",
  3471. "psr/container": "^1.1 || ^2.0"
  3472. },
  3473. "require-dev": {
  3474. "symfony/phpunit-bridge": "^5.4@dev"
  3475. },
  3476. "type": "library",
  3477. "extra": {
  3478. "branch-alias": {
  3479. "dev-master": "3.4.x-dev"
  3480. }
  3481. },
  3482. "autoload": {
  3483. "psr-0": {
  3484. "Pimple": "src/"
  3485. }
  3486. },
  3487. "notification-url": "https://packagist.org/downloads/",
  3488. "license": [
  3489. "MIT"
  3490. ],
  3491. "authors": [
  3492. {
  3493. "name": "Fabien Potencier",
  3494. "email": "fabien@symfony.com"
  3495. }
  3496. ],
  3497. "description": "Pimple, a simple Dependency Injection Container",
  3498. "homepage": "https://pimple.symfony.com",
  3499. "keywords": [
  3500. "container",
  3501. "dependency injection"
  3502. ],
  3503. "support": {
  3504. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  3505. },
  3506. "time": "2021-10-28T11:13:42+00:00"
  3507. },
  3508. {
  3509. "name": "psr/cache",
  3510. "version": "1.0.1",
  3511. "source": {
  3512. "type": "git",
  3513. "url": "https://github.com/php-fig/cache.git",
  3514. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  3515. },
  3516. "dist": {
  3517. "type": "zip",
  3518. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  3519. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  3520. "shasum": "",
  3521. "mirrors": [
  3522. {
  3523. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3524. "preferred": true
  3525. }
  3526. ]
  3527. },
  3528. "require": {
  3529. "php": ">=5.3.0"
  3530. },
  3531. "type": "library",
  3532. "extra": {
  3533. "branch-alias": {
  3534. "dev-master": "1.0.x-dev"
  3535. }
  3536. },
  3537. "autoload": {
  3538. "psr-4": {
  3539. "Psr\\Cache\\": "src/"
  3540. }
  3541. },
  3542. "notification-url": "https://packagist.org/downloads/",
  3543. "license": [
  3544. "MIT"
  3545. ],
  3546. "authors": [
  3547. {
  3548. "name": "PHP-FIG",
  3549. "homepage": "http://www.php-fig.org/"
  3550. }
  3551. ],
  3552. "description": "Common interface for caching libraries",
  3553. "keywords": [
  3554. "cache",
  3555. "psr",
  3556. "psr-6"
  3557. ],
  3558. "support": {
  3559. "source": "https://github.com/php-fig/cache/tree/master"
  3560. },
  3561. "time": "2016-08-06T20:24:11+00:00"
  3562. },
  3563. {
  3564. "name": "psr/clock",
  3565. "version": "1.0.0",
  3566. "source": {
  3567. "type": "git",
  3568. "url": "https://github.com/php-fig/clock.git",
  3569. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  3570. },
  3571. "dist": {
  3572. "type": "zip",
  3573. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3574. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3575. "shasum": "",
  3576. "mirrors": [
  3577. {
  3578. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3579. "preferred": true
  3580. }
  3581. ]
  3582. },
  3583. "require": {
  3584. "php": "^7.0 || ^8.0"
  3585. },
  3586. "type": "library",
  3587. "autoload": {
  3588. "psr-4": {
  3589. "Psr\\Clock\\": "src/"
  3590. }
  3591. },
  3592. "notification-url": "https://packagist.org/downloads/",
  3593. "license": [
  3594. "MIT"
  3595. ],
  3596. "authors": [
  3597. {
  3598. "name": "PHP-FIG",
  3599. "homepage": "https://www.php-fig.org/"
  3600. }
  3601. ],
  3602. "description": "Common interface for reading the clock.",
  3603. "homepage": "https://github.com/php-fig/clock",
  3604. "keywords": [
  3605. "clock",
  3606. "now",
  3607. "psr",
  3608. "psr-20",
  3609. "time"
  3610. ],
  3611. "support": {
  3612. "issues": "https://github.com/php-fig/clock/issues",
  3613. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  3614. },
  3615. "time": "2022-11-25T14:36:26+00:00"
  3616. },
  3617. {
  3618. "name": "psr/container",
  3619. "version": "1.1.2",
  3620. "source": {
  3621. "type": "git",
  3622. "url": "https://github.com/php-fig/container.git",
  3623. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  3624. },
  3625. "dist": {
  3626. "type": "zip",
  3627. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  3628. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  3629. "shasum": "",
  3630. "mirrors": [
  3631. {
  3632. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3633. "preferred": true
  3634. }
  3635. ]
  3636. },
  3637. "require": {
  3638. "php": ">=7.4.0"
  3639. },
  3640. "type": "library",
  3641. "autoload": {
  3642. "psr-4": {
  3643. "Psr\\Container\\": "src/"
  3644. }
  3645. },
  3646. "notification-url": "https://packagist.org/downloads/",
  3647. "license": [
  3648. "MIT"
  3649. ],
  3650. "authors": [
  3651. {
  3652. "name": "PHP-FIG",
  3653. "homepage": "https://www.php-fig.org/"
  3654. }
  3655. ],
  3656. "description": "Common Container Interface (PHP FIG PSR-11)",
  3657. "homepage": "https://github.com/php-fig/container",
  3658. "keywords": [
  3659. "PSR-11",
  3660. "container",
  3661. "container-interface",
  3662. "container-interop",
  3663. "psr"
  3664. ],
  3665. "support": {
  3666. "issues": "https://github.com/php-fig/container/issues",
  3667. "source": "https://github.com/php-fig/container/tree/1.1.2"
  3668. },
  3669. "time": "2021-11-05T16:50:12+00:00"
  3670. },
  3671. {
  3672. "name": "psr/event-dispatcher",
  3673. "version": "1.0.0",
  3674. "source": {
  3675. "type": "git",
  3676. "url": "https://github.com/php-fig/event-dispatcher.git",
  3677. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3678. },
  3679. "dist": {
  3680. "type": "zip",
  3681. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3682. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3683. "shasum": "",
  3684. "mirrors": [
  3685. {
  3686. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3687. "preferred": true
  3688. }
  3689. ]
  3690. },
  3691. "require": {
  3692. "php": ">=7.2.0"
  3693. },
  3694. "type": "library",
  3695. "extra": {
  3696. "branch-alias": {
  3697. "dev-master": "1.0.x-dev"
  3698. }
  3699. },
  3700. "autoload": {
  3701. "psr-4": {
  3702. "Psr\\EventDispatcher\\": "src/"
  3703. }
  3704. },
  3705. "notification-url": "https://packagist.org/downloads/",
  3706. "license": [
  3707. "MIT"
  3708. ],
  3709. "authors": [
  3710. {
  3711. "name": "PHP-FIG",
  3712. "homepage": "http://www.php-fig.org/"
  3713. }
  3714. ],
  3715. "description": "Standard interfaces for event handling.",
  3716. "keywords": [
  3717. "events",
  3718. "psr",
  3719. "psr-14"
  3720. ],
  3721. "support": {
  3722. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3723. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3724. },
  3725. "time": "2019-01-08T18:20:26+00:00"
  3726. },
  3727. {
  3728. "name": "psr/http-client",
  3729. "version": "1.0.3",
  3730. "source": {
  3731. "type": "git",
  3732. "url": "https://github.com/php-fig/http-client.git",
  3733. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  3734. },
  3735. "dist": {
  3736. "type": "zip",
  3737. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3738. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3739. "shasum": "",
  3740. "mirrors": [
  3741. {
  3742. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3743. "preferred": true
  3744. }
  3745. ]
  3746. },
  3747. "require": {
  3748. "php": "^7.0 || ^8.0",
  3749. "psr/http-message": "^1.0 || ^2.0"
  3750. },
  3751. "type": "library",
  3752. "extra": {
  3753. "branch-alias": {
  3754. "dev-master": "1.0.x-dev"
  3755. }
  3756. },
  3757. "autoload": {
  3758. "psr-4": {
  3759. "Psr\\Http\\Client\\": "src/"
  3760. }
  3761. },
  3762. "notification-url": "https://packagist.org/downloads/",
  3763. "license": [
  3764. "MIT"
  3765. ],
  3766. "authors": [
  3767. {
  3768. "name": "PHP-FIG",
  3769. "homepage": "https://www.php-fig.org/"
  3770. }
  3771. ],
  3772. "description": "Common interface for HTTP clients",
  3773. "homepage": "https://github.com/php-fig/http-client",
  3774. "keywords": [
  3775. "http",
  3776. "http-client",
  3777. "psr",
  3778. "psr-18"
  3779. ],
  3780. "support": {
  3781. "source": "https://github.com/php-fig/http-client"
  3782. },
  3783. "time": "2023-09-23T14:17:50+00:00"
  3784. },
  3785. {
  3786. "name": "psr/http-factory",
  3787. "version": "1.0.2",
  3788. "source": {
  3789. "type": "git",
  3790. "url": "https://github.com/php-fig/http-factory.git",
  3791. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  3792. },
  3793. "dist": {
  3794. "type": "zip",
  3795. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  3796. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  3797. "shasum": "",
  3798. "mirrors": [
  3799. {
  3800. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3801. "preferred": true
  3802. }
  3803. ]
  3804. },
  3805. "require": {
  3806. "php": ">=7.0.0",
  3807. "psr/http-message": "^1.0 || ^2.0"
  3808. },
  3809. "type": "library",
  3810. "extra": {
  3811. "branch-alias": {
  3812. "dev-master": "1.0.x-dev"
  3813. }
  3814. },
  3815. "autoload": {
  3816. "psr-4": {
  3817. "Psr\\Http\\Message\\": "src/"
  3818. }
  3819. },
  3820. "notification-url": "https://packagist.org/downloads/",
  3821. "license": [
  3822. "MIT"
  3823. ],
  3824. "authors": [
  3825. {
  3826. "name": "PHP-FIG",
  3827. "homepage": "https://www.php-fig.org/"
  3828. }
  3829. ],
  3830. "description": "Common interfaces for PSR-7 HTTP message factories",
  3831. "keywords": [
  3832. "factory",
  3833. "http",
  3834. "message",
  3835. "psr",
  3836. "psr-17",
  3837. "psr-7",
  3838. "request",
  3839. "response"
  3840. ],
  3841. "support": {
  3842. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  3843. },
  3844. "time": "2023-04-10T20:10:41+00:00"
  3845. },
  3846. {
  3847. "name": "psr/http-message",
  3848. "version": "1.1",
  3849. "source": {
  3850. "type": "git",
  3851. "url": "https://github.com/php-fig/http-message.git",
  3852. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  3853. },
  3854. "dist": {
  3855. "type": "zip",
  3856. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  3857. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  3858. "shasum": "",
  3859. "mirrors": [
  3860. {
  3861. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3862. "preferred": true
  3863. }
  3864. ]
  3865. },
  3866. "require": {
  3867. "php": "^7.2 || ^8.0"
  3868. },
  3869. "type": "library",
  3870. "extra": {
  3871. "branch-alias": {
  3872. "dev-master": "1.1.x-dev"
  3873. }
  3874. },
  3875. "autoload": {
  3876. "psr-4": {
  3877. "Psr\\Http\\Message\\": "src/"
  3878. }
  3879. },
  3880. "notification-url": "https://packagist.org/downloads/",
  3881. "license": [
  3882. "MIT"
  3883. ],
  3884. "authors": [
  3885. {
  3886. "name": "PHP-FIG",
  3887. "homepage": "http://www.php-fig.org/"
  3888. }
  3889. ],
  3890. "description": "Common interface for HTTP messages",
  3891. "homepage": "https://github.com/php-fig/http-message",
  3892. "keywords": [
  3893. "http",
  3894. "http-message",
  3895. "psr",
  3896. "psr-7",
  3897. "request",
  3898. "response"
  3899. ],
  3900. "support": {
  3901. "source": "https://github.com/php-fig/http-message/tree/1.1"
  3902. },
  3903. "time": "2023-04-04T09:50:52+00:00"
  3904. },
  3905. {
  3906. "name": "psr/log",
  3907. "version": "1.1.4",
  3908. "source": {
  3909. "type": "git",
  3910. "url": "https://github.com/php-fig/log.git",
  3911. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  3912. },
  3913. "dist": {
  3914. "type": "zip",
  3915. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  3916. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  3917. "shasum": "",
  3918. "mirrors": [
  3919. {
  3920. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3921. "preferred": true
  3922. }
  3923. ]
  3924. },
  3925. "require": {
  3926. "php": ">=5.3.0"
  3927. },
  3928. "type": "library",
  3929. "extra": {
  3930. "branch-alias": {
  3931. "dev-master": "1.1.x-dev"
  3932. }
  3933. },
  3934. "autoload": {
  3935. "psr-4": {
  3936. "Psr\\Log\\": "Psr/Log/"
  3937. }
  3938. },
  3939. "notification-url": "https://packagist.org/downloads/",
  3940. "license": [
  3941. "MIT"
  3942. ],
  3943. "authors": [
  3944. {
  3945. "name": "PHP-FIG",
  3946. "homepage": "https://www.php-fig.org/"
  3947. }
  3948. ],
  3949. "description": "Common interface for logging libraries",
  3950. "homepage": "https://github.com/php-fig/log",
  3951. "keywords": [
  3952. "log",
  3953. "psr",
  3954. "psr-3"
  3955. ],
  3956. "support": {
  3957. "source": "https://github.com/php-fig/log/tree/1.1.4"
  3958. },
  3959. "time": "2021-05-03T11:20:27+00:00"
  3960. },
  3961. {
  3962. "name": "psr/simple-cache",
  3963. "version": "1.0.1",
  3964. "source": {
  3965. "type": "git",
  3966. "url": "https://github.com/php-fig/simple-cache.git",
  3967. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3968. },
  3969. "dist": {
  3970. "type": "zip",
  3971. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3972. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3973. "shasum": "",
  3974. "mirrors": [
  3975. {
  3976. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3977. "preferred": true
  3978. }
  3979. ]
  3980. },
  3981. "require": {
  3982. "php": ">=5.3.0"
  3983. },
  3984. "type": "library",
  3985. "extra": {
  3986. "branch-alias": {
  3987. "dev-master": "1.0.x-dev"
  3988. }
  3989. },
  3990. "autoload": {
  3991. "psr-4": {
  3992. "Psr\\SimpleCache\\": "src/"
  3993. }
  3994. },
  3995. "notification-url": "https://packagist.org/downloads/",
  3996. "license": [
  3997. "MIT"
  3998. ],
  3999. "authors": [
  4000. {
  4001. "name": "PHP-FIG",
  4002. "homepage": "http://www.php-fig.org/"
  4003. }
  4004. ],
  4005. "description": "Common interfaces for simple caching",
  4006. "keywords": [
  4007. "cache",
  4008. "caching",
  4009. "psr",
  4010. "psr-16",
  4011. "simple-cache"
  4012. ],
  4013. "support": {
  4014. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4015. },
  4016. "time": "2017-10-23T01:57:42+00:00"
  4017. },
  4018. {
  4019. "name": "qcloud/cos-sdk-v5",
  4020. "version": "v2.6.15",
  4021. "source": {
  4022. "type": "git",
  4023. "url": "https://github.com/tencentyun/cos-php-sdk-v5.git",
  4024. "reference": "17b973a388dc8848947054daace0fff8d2a4eee0"
  4025. },
  4026. "dist": {
  4027. "type": "zip",
  4028. "url": "https://api.github.com/repos/tencentyun/cos-php-sdk-v5/zipball/17b973a388dc8848947054daace0fff8d2a4eee0",
  4029. "reference": "17b973a388dc8848947054daace0fff8d2a4eee0",
  4030. "shasum": "",
  4031. "mirrors": [
  4032. {
  4033. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4034. "preferred": true
  4035. }
  4036. ]
  4037. },
  4038. "require": {
  4039. "ext-curl": "*",
  4040. "ext-json": "*",
  4041. "ext-libxml": "*",
  4042. "ext-mbstring": "*",
  4043. "ext-simplexml": "*",
  4044. "guzzlehttp/guzzle": "^6.2.1 || ^7.0",
  4045. "guzzlehttp/guzzle-services": "^1.1",
  4046. "guzzlehttp/psr7": "^1.3.1 || ^2.0",
  4047. "php": ">=5.6"
  4048. },
  4049. "type": "library",
  4050. "extra": {
  4051. "branch-alias": {
  4052. "dev-master": "2.4-dev"
  4053. }
  4054. },
  4055. "autoload": {
  4056. "files": [
  4057. "src/Common.php"
  4058. ],
  4059. "psr-4": {
  4060. "Qcloud\\Cos\\": "src/"
  4061. }
  4062. },
  4063. "notification-url": "https://packagist.org/downloads/",
  4064. "license": [
  4065. "MIT"
  4066. ],
  4067. "authors": [
  4068. {
  4069. "name": "yaozongyou",
  4070. "email": "yaozongyou@vip.qq.com"
  4071. },
  4072. {
  4073. "name": "lewzylu",
  4074. "email": "327874225@qq.com"
  4075. },
  4076. {
  4077. "name": "tuunalai",
  4078. "email": "550566181@qq.com"
  4079. }
  4080. ],
  4081. "description": "PHP SDK for QCloud COS",
  4082. "keywords": [
  4083. "cos",
  4084. "php",
  4085. "qcloud"
  4086. ],
  4087. "support": {
  4088. "issues": "https://github.com/tencentyun/cos-php-sdk-v5/issues",
  4089. "source": "https://github.com/tencentyun/cos-php-sdk-v5/tree/v2.6.15"
  4090. },
  4091. "time": "2024-11-08T09:31:12+00:00"
  4092. },
  4093. {
  4094. "name": "qiniu/php-sdk",
  4095. "version": "v7.14.0",
  4096. "source": {
  4097. "type": "git",
  4098. "url": "https://github.com/qiniu/php-sdk.git",
  4099. "reference": "ee752ffa7263ce99fca0bd7340cf13c486a3516c"
  4100. },
  4101. "dist": {
  4102. "type": "zip",
  4103. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/ee752ffa7263ce99fca0bd7340cf13c486a3516c",
  4104. "reference": "ee752ffa7263ce99fca0bd7340cf13c486a3516c",
  4105. "shasum": "",
  4106. "mirrors": [
  4107. {
  4108. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4109. "preferred": true
  4110. }
  4111. ]
  4112. },
  4113. "require": {
  4114. "ext-curl": "*",
  4115. "ext-xml": "*",
  4116. "myclabs/php-enum": "~1.5.2 || ~1.6.6 || ~1.7.7 || ~1.8.4",
  4117. "php": ">=5.3.3"
  4118. },
  4119. "require-dev": {
  4120. "paragonie/random_compat": ">=2",
  4121. "phpunit/phpunit": "^4.8 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4",
  4122. "squizlabs/php_codesniffer": "^2.3 || ~3.6"
  4123. },
  4124. "type": "library",
  4125. "autoload": {
  4126. "files": [
  4127. "src/Qiniu/functions.php",
  4128. "src/Qiniu/Http/Middleware/Middleware.php"
  4129. ],
  4130. "psr-4": {
  4131. "Qiniu\\": "src/Qiniu"
  4132. }
  4133. },
  4134. "notification-url": "https://packagist.org/downloads/",
  4135. "license": [
  4136. "MIT"
  4137. ],
  4138. "authors": [
  4139. {
  4140. "name": "Qiniu",
  4141. "email": "sdk@qiniu.com",
  4142. "homepage": "http://www.qiniu.com"
  4143. }
  4144. ],
  4145. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  4146. "homepage": "http://developer.qiniu.com/",
  4147. "keywords": [
  4148. "cloud",
  4149. "qiniu",
  4150. "sdk",
  4151. "storage"
  4152. ],
  4153. "support": {
  4154. "issues": "https://github.com/qiniu/php-sdk/issues",
  4155. "source": "https://github.com/qiniu/php-sdk/tree/v7.14.0"
  4156. },
  4157. "time": "2024-10-25T08:39:01+00:00"
  4158. },
  4159. {
  4160. "name": "ralouphie/getallheaders",
  4161. "version": "3.0.3",
  4162. "source": {
  4163. "type": "git",
  4164. "url": "https://github.com/ralouphie/getallheaders.git",
  4165. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4166. },
  4167. "dist": {
  4168. "type": "zip",
  4169. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4170. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4171. "shasum": "",
  4172. "mirrors": [
  4173. {
  4174. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4175. "preferred": true
  4176. }
  4177. ]
  4178. },
  4179. "require": {
  4180. "php": ">=5.6"
  4181. },
  4182. "require-dev": {
  4183. "php-coveralls/php-coveralls": "^2.1",
  4184. "phpunit/phpunit": "^5 || ^6.5"
  4185. },
  4186. "type": "library",
  4187. "autoload": {
  4188. "files": [
  4189. "src/getallheaders.php"
  4190. ]
  4191. },
  4192. "notification-url": "https://packagist.org/downloads/",
  4193. "license": [
  4194. "MIT"
  4195. ],
  4196. "authors": [
  4197. {
  4198. "name": "Ralph Khattar",
  4199. "email": "ralph.khattar@gmail.com"
  4200. }
  4201. ],
  4202. "description": "A polyfill for getallheaders.",
  4203. "support": {
  4204. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4205. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4206. },
  4207. "time": "2019-03-08T08:55:37+00:00"
  4208. },
  4209. {
  4210. "name": "react/promise",
  4211. "version": "v2.11.0",
  4212. "source": {
  4213. "type": "git",
  4214. "url": "https://github.com/reactphp/promise.git",
  4215. "reference": "1a8460931ea36dc5c76838fec5734d55c88c6831"
  4216. },
  4217. "dist": {
  4218. "type": "zip",
  4219. "url": "https://api.github.com/repos/reactphp/promise/zipball/1a8460931ea36dc5c76838fec5734d55c88c6831",
  4220. "reference": "1a8460931ea36dc5c76838fec5734d55c88c6831",
  4221. "shasum": "",
  4222. "mirrors": [
  4223. {
  4224. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4225. "preferred": true
  4226. }
  4227. ]
  4228. },
  4229. "require": {
  4230. "php": ">=5.4.0"
  4231. },
  4232. "require-dev": {
  4233. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  4234. },
  4235. "type": "library",
  4236. "autoload": {
  4237. "files": [
  4238. "src/functions_include.php"
  4239. ],
  4240. "psr-4": {
  4241. "React\\Promise\\": "src/"
  4242. }
  4243. },
  4244. "notification-url": "https://packagist.org/downloads/",
  4245. "license": [
  4246. "MIT"
  4247. ],
  4248. "authors": [
  4249. {
  4250. "name": "Jan Sorgalla",
  4251. "email": "jsorgalla@gmail.com",
  4252. "homepage": "https://sorgalla.com/"
  4253. },
  4254. {
  4255. "name": "Christian Lück",
  4256. "email": "christian@clue.engineering",
  4257. "homepage": "https://clue.engineering/"
  4258. },
  4259. {
  4260. "name": "Cees-Jan Kiewiet",
  4261. "email": "reactphp@ceesjankiewiet.nl",
  4262. "homepage": "https://wyrihaximus.net/"
  4263. },
  4264. {
  4265. "name": "Chris Boden",
  4266. "email": "cboden@gmail.com",
  4267. "homepage": "https://cboden.dev/"
  4268. }
  4269. ],
  4270. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  4271. "keywords": [
  4272. "promise",
  4273. "promises"
  4274. ],
  4275. "support": {
  4276. "issues": "https://github.com/reactphp/promise/issues",
  4277. "source": "https://github.com/reactphp/promise/tree/v2.11.0"
  4278. },
  4279. "funding": [
  4280. {
  4281. "url": "https://opencollective.com/reactphp",
  4282. "type": "open_collective"
  4283. }
  4284. ],
  4285. "time": "2023-11-16T16:16:50+00:00"
  4286. },
  4287. {
  4288. "name": "stechstudio/backoff",
  4289. "version": "1.2.1",
  4290. "source": {
  4291. "type": "git",
  4292. "url": "https://github.com/stechstudio/backoff.git",
  4293. "reference": "7204cddf3f1afcd5368d74d52f4d8c447c5dc311"
  4294. },
  4295. "dist": {
  4296. "type": "zip",
  4297. "url": "https://api.github.com/repos/stechstudio/backoff/zipball/7204cddf3f1afcd5368d74d52f4d8c447c5dc311",
  4298. "reference": "7204cddf3f1afcd5368d74d52f4d8c447c5dc311",
  4299. "shasum": "",
  4300. "mirrors": [
  4301. {
  4302. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4303. "preferred": true
  4304. }
  4305. ]
  4306. },
  4307. "require-dev": {
  4308. "phpunit/phpunit": "^10.0"
  4309. },
  4310. "type": "library",
  4311. "autoload": {
  4312. "files": [
  4313. "src/helpers.php"
  4314. ],
  4315. "psr-4": {
  4316. "STS\\Backoff\\": "src"
  4317. }
  4318. },
  4319. "notification-url": "https://packagist.org/downloads/",
  4320. "license": [
  4321. "MIT"
  4322. ],
  4323. "authors": [
  4324. {
  4325. "name": "Joseph Szobody",
  4326. "email": "joseph@stechstudio.com"
  4327. }
  4328. ],
  4329. "description": "PHP library providing retry functionality with multiple backoff strategies and jitter support",
  4330. "support": {
  4331. "issues": "https://github.com/stechstudio/backoff/issues",
  4332. "source": "https://github.com/stechstudio/backoff/tree/1.2.1"
  4333. },
  4334. "time": "2024-03-07T21:00:19+00:00"
  4335. },
  4336. {
  4337. "name": "swoole/ide-helper",
  4338. "version": "4.8.13",
  4339. "source": {
  4340. "type": "git",
  4341. "url": "https://github.com/swoole/ide-helper.git",
  4342. "reference": "d100c446b2e3d56430cbcab5dc3fa20a9f35c4ef"
  4343. },
  4344. "dist": {
  4345. "type": "zip",
  4346. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/d100c446b2e3d56430cbcab5dc3fa20a9f35c4ef",
  4347. "reference": "d100c446b2e3d56430cbcab5dc3fa20a9f35c4ef",
  4348. "shasum": "",
  4349. "mirrors": [
  4350. {
  4351. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4352. "preferred": true
  4353. }
  4354. ]
  4355. },
  4356. "type": "library",
  4357. "notification-url": "https://packagist.org/downloads/",
  4358. "license": [
  4359. "Apache-2.0"
  4360. ],
  4361. "authors": [
  4362. {
  4363. "name": "Team Swoole",
  4364. "email": "team@swoole.com"
  4365. }
  4366. ],
  4367. "description": "IDE help files for Swoole.",
  4368. "support": {
  4369. "issues": "https://github.com/swoole/ide-helper/issues",
  4370. "source": "https://github.com/swoole/ide-helper/tree/4.8.13"
  4371. },
  4372. "time": "2023-03-20T06:46:24+00:00"
  4373. },
  4374. {
  4375. "name": "symfony/cache",
  4376. "version": "v5.4.46",
  4377. "source": {
  4378. "type": "git",
  4379. "url": "https://github.com/symfony/cache.git",
  4380. "reference": "0fe08ee32cec2748fbfea10c52d3ee02049e0f6b"
  4381. },
  4382. "dist": {
  4383. "type": "zip",
  4384. "url": "https://api.github.com/repos/symfony/cache/zipball/0fe08ee32cec2748fbfea10c52d3ee02049e0f6b",
  4385. "reference": "0fe08ee32cec2748fbfea10c52d3ee02049e0f6b",
  4386. "shasum": "",
  4387. "mirrors": [
  4388. {
  4389. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4390. "preferred": true
  4391. }
  4392. ]
  4393. },
  4394. "require": {
  4395. "php": ">=7.2.5",
  4396. "psr/cache": "^1.0|^2.0",
  4397. "psr/log": "^1.1|^2|^3",
  4398. "symfony/cache-contracts": "^1.1.7|^2",
  4399. "symfony/deprecation-contracts": "^2.1|^3",
  4400. "symfony/polyfill-php73": "^1.9",
  4401. "symfony/polyfill-php80": "^1.16",
  4402. "symfony/service-contracts": "^1.1|^2|^3",
  4403. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  4404. },
  4405. "conflict": {
  4406. "doctrine/dbal": "<2.13.1",
  4407. "symfony/dependency-injection": "<4.4",
  4408. "symfony/http-kernel": "<4.4",
  4409. "symfony/var-dumper": "<4.4"
  4410. },
  4411. "provide": {
  4412. "psr/cache-implementation": "1.0|2.0",
  4413. "psr/simple-cache-implementation": "1.0|2.0",
  4414. "symfony/cache-implementation": "1.0|2.0"
  4415. },
  4416. "require-dev": {
  4417. "cache/integration-tests": "dev-master",
  4418. "doctrine/cache": "^1.6|^2.0",
  4419. "doctrine/dbal": "^2.13.1|^3|^4",
  4420. "predis/predis": "^1.1|^2.0",
  4421. "psr/simple-cache": "^1.0|^2.0",
  4422. "symfony/config": "^4.4|^5.0|^6.0",
  4423. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4424. "symfony/filesystem": "^4.4|^5.0|^6.0",
  4425. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  4426. "symfony/messenger": "^4.4|^5.0|^6.0",
  4427. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  4428. },
  4429. "type": "library",
  4430. "autoload": {
  4431. "psr-4": {
  4432. "Symfony\\Component\\Cache\\": ""
  4433. },
  4434. "exclude-from-classmap": [
  4435. "/Tests/"
  4436. ]
  4437. },
  4438. "notification-url": "https://packagist.org/downloads/",
  4439. "license": [
  4440. "MIT"
  4441. ],
  4442. "authors": [
  4443. {
  4444. "name": "Nicolas Grekas",
  4445. "email": "p@tchwork.com"
  4446. },
  4447. {
  4448. "name": "Symfony Community",
  4449. "homepage": "https://symfony.com/contributors"
  4450. }
  4451. ],
  4452. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  4453. "homepage": "https://symfony.com",
  4454. "keywords": [
  4455. "caching",
  4456. "psr6"
  4457. ],
  4458. "support": {
  4459. "source": "https://github.com/symfony/cache/tree/v5.4.46"
  4460. },
  4461. "funding": [
  4462. {
  4463. "url": "https://symfony.com/sponsor",
  4464. "type": "custom"
  4465. },
  4466. {
  4467. "url": "https://github.com/fabpot",
  4468. "type": "github"
  4469. },
  4470. {
  4471. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4472. "type": "tidelift"
  4473. }
  4474. ],
  4475. "time": "2024-11-04T11:43:55+00:00"
  4476. },
  4477. {
  4478. "name": "symfony/cache-contracts",
  4479. "version": "v2.5.4",
  4480. "source": {
  4481. "type": "git",
  4482. "url": "https://github.com/symfony/cache-contracts.git",
  4483. "reference": "517c3a3619dadfa6952c4651767fcadffb4df65e"
  4484. },
  4485. "dist": {
  4486. "type": "zip",
  4487. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/517c3a3619dadfa6952c4651767fcadffb4df65e",
  4488. "reference": "517c3a3619dadfa6952c4651767fcadffb4df65e",
  4489. "shasum": "",
  4490. "mirrors": [
  4491. {
  4492. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4493. "preferred": true
  4494. }
  4495. ]
  4496. },
  4497. "require": {
  4498. "php": ">=7.2.5",
  4499. "psr/cache": "^1.0|^2.0|^3.0"
  4500. },
  4501. "suggest": {
  4502. "symfony/cache-implementation": ""
  4503. },
  4504. "type": "library",
  4505. "extra": {
  4506. "branch-alias": {
  4507. "dev-main": "2.5-dev"
  4508. },
  4509. "thanks": {
  4510. "name": "symfony/contracts",
  4511. "url": "https://github.com/symfony/contracts"
  4512. }
  4513. },
  4514. "autoload": {
  4515. "psr-4": {
  4516. "Symfony\\Contracts\\Cache\\": ""
  4517. }
  4518. },
  4519. "notification-url": "https://packagist.org/downloads/",
  4520. "license": [
  4521. "MIT"
  4522. ],
  4523. "authors": [
  4524. {
  4525. "name": "Nicolas Grekas",
  4526. "email": "p@tchwork.com"
  4527. },
  4528. {
  4529. "name": "Symfony Community",
  4530. "homepage": "https://symfony.com/contributors"
  4531. }
  4532. ],
  4533. "description": "Generic abstractions related to caching",
  4534. "homepage": "https://symfony.com",
  4535. "keywords": [
  4536. "abstractions",
  4537. "contracts",
  4538. "decoupling",
  4539. "interfaces",
  4540. "interoperability",
  4541. "standards"
  4542. ],
  4543. "support": {
  4544. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.4"
  4545. },
  4546. "funding": [
  4547. {
  4548. "url": "https://symfony.com/sponsor",
  4549. "type": "custom"
  4550. },
  4551. {
  4552. "url": "https://github.com/fabpot",
  4553. "type": "github"
  4554. },
  4555. {
  4556. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4557. "type": "tidelift"
  4558. }
  4559. ],
  4560. "time": "2024-09-25T14:11:13+00:00"
  4561. },
  4562. {
  4563. "name": "symfony/deprecation-contracts",
  4564. "version": "v2.5.3",
  4565. "source": {
  4566. "type": "git",
  4567. "url": "https://github.com/symfony/deprecation-contracts.git",
  4568. "reference": "80d075412b557d41002320b96a096ca65aa2c98d"
  4569. },
  4570. "dist": {
  4571. "type": "zip",
  4572. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/80d075412b557d41002320b96a096ca65aa2c98d",
  4573. "reference": "80d075412b557d41002320b96a096ca65aa2c98d",
  4574. "shasum": "",
  4575. "mirrors": [
  4576. {
  4577. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4578. "preferred": true
  4579. }
  4580. ]
  4581. },
  4582. "require": {
  4583. "php": ">=7.1"
  4584. },
  4585. "type": "library",
  4586. "extra": {
  4587. "branch-alias": {
  4588. "dev-main": "2.5-dev"
  4589. },
  4590. "thanks": {
  4591. "name": "symfony/contracts",
  4592. "url": "https://github.com/symfony/contracts"
  4593. }
  4594. },
  4595. "autoload": {
  4596. "files": [
  4597. "function.php"
  4598. ]
  4599. },
  4600. "notification-url": "https://packagist.org/downloads/",
  4601. "license": [
  4602. "MIT"
  4603. ],
  4604. "authors": [
  4605. {
  4606. "name": "Nicolas Grekas",
  4607. "email": "p@tchwork.com"
  4608. },
  4609. {
  4610. "name": "Symfony Community",
  4611. "homepage": "https://symfony.com/contributors"
  4612. }
  4613. ],
  4614. "description": "A generic function and convention to trigger deprecation notices",
  4615. "homepage": "https://symfony.com",
  4616. "support": {
  4617. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.3"
  4618. },
  4619. "funding": [
  4620. {
  4621. "url": "https://symfony.com/sponsor",
  4622. "type": "custom"
  4623. },
  4624. {
  4625. "url": "https://github.com/fabpot",
  4626. "type": "github"
  4627. },
  4628. {
  4629. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4630. "type": "tidelift"
  4631. }
  4632. ],
  4633. "time": "2023-01-24T14:02:46+00:00"
  4634. },
  4635. {
  4636. "name": "symfony/event-dispatcher",
  4637. "version": "v5.4.45",
  4638. "source": {
  4639. "type": "git",
  4640. "url": "https://github.com/symfony/event-dispatcher.git",
  4641. "reference": "72982eb416f61003e9bb6e91f8b3213600dcf9e9"
  4642. },
  4643. "dist": {
  4644. "type": "zip",
  4645. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/72982eb416f61003e9bb6e91f8b3213600dcf9e9",
  4646. "reference": "72982eb416f61003e9bb6e91f8b3213600dcf9e9",
  4647. "shasum": "",
  4648. "mirrors": [
  4649. {
  4650. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4651. "preferred": true
  4652. }
  4653. ]
  4654. },
  4655. "require": {
  4656. "php": ">=7.2.5",
  4657. "symfony/deprecation-contracts": "^2.1|^3",
  4658. "symfony/event-dispatcher-contracts": "^2|^3",
  4659. "symfony/polyfill-php80": "^1.16"
  4660. },
  4661. "conflict": {
  4662. "symfony/dependency-injection": "<4.4"
  4663. },
  4664. "provide": {
  4665. "psr/event-dispatcher-implementation": "1.0",
  4666. "symfony/event-dispatcher-implementation": "2.0"
  4667. },
  4668. "require-dev": {
  4669. "psr/log": "^1|^2|^3",
  4670. "symfony/config": "^4.4|^5.0|^6.0",
  4671. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4672. "symfony/error-handler": "^4.4|^5.0|^6.0",
  4673. "symfony/expression-language": "^4.4|^5.0|^6.0",
  4674. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  4675. "symfony/service-contracts": "^1.1|^2|^3",
  4676. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  4677. },
  4678. "suggest": {
  4679. "symfony/dependency-injection": "",
  4680. "symfony/http-kernel": ""
  4681. },
  4682. "type": "library",
  4683. "autoload": {
  4684. "psr-4": {
  4685. "Symfony\\Component\\EventDispatcher\\": ""
  4686. },
  4687. "exclude-from-classmap": [
  4688. "/Tests/"
  4689. ]
  4690. },
  4691. "notification-url": "https://packagist.org/downloads/",
  4692. "license": [
  4693. "MIT"
  4694. ],
  4695. "authors": [
  4696. {
  4697. "name": "Fabien Potencier",
  4698. "email": "fabien@symfony.com"
  4699. },
  4700. {
  4701. "name": "Symfony Community",
  4702. "homepage": "https://symfony.com/contributors"
  4703. }
  4704. ],
  4705. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  4706. "homepage": "https://symfony.com",
  4707. "support": {
  4708. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.45"
  4709. },
  4710. "funding": [
  4711. {
  4712. "url": "https://symfony.com/sponsor",
  4713. "type": "custom"
  4714. },
  4715. {
  4716. "url": "https://github.com/fabpot",
  4717. "type": "github"
  4718. },
  4719. {
  4720. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4721. "type": "tidelift"
  4722. }
  4723. ],
  4724. "time": "2024-09-25T14:11:13+00:00"
  4725. },
  4726. {
  4727. "name": "symfony/event-dispatcher-contracts",
  4728. "version": "v2.5.4",
  4729. "source": {
  4730. "type": "git",
  4731. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4732. "reference": "e0fe3d79b516eb75126ac6fa4cbf19b79b08c99f"
  4733. },
  4734. "dist": {
  4735. "type": "zip",
  4736. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/e0fe3d79b516eb75126ac6fa4cbf19b79b08c99f",
  4737. "reference": "e0fe3d79b516eb75126ac6fa4cbf19b79b08c99f",
  4738. "shasum": "",
  4739. "mirrors": [
  4740. {
  4741. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4742. "preferred": true
  4743. }
  4744. ]
  4745. },
  4746. "require": {
  4747. "php": ">=7.2.5",
  4748. "psr/event-dispatcher": "^1"
  4749. },
  4750. "suggest": {
  4751. "symfony/event-dispatcher-implementation": ""
  4752. },
  4753. "type": "library",
  4754. "extra": {
  4755. "branch-alias": {
  4756. "dev-main": "2.5-dev"
  4757. },
  4758. "thanks": {
  4759. "name": "symfony/contracts",
  4760. "url": "https://github.com/symfony/contracts"
  4761. }
  4762. },
  4763. "autoload": {
  4764. "psr-4": {
  4765. "Symfony\\Contracts\\EventDispatcher\\": ""
  4766. }
  4767. },
  4768. "notification-url": "https://packagist.org/downloads/",
  4769. "license": [
  4770. "MIT"
  4771. ],
  4772. "authors": [
  4773. {
  4774. "name": "Nicolas Grekas",
  4775. "email": "p@tchwork.com"
  4776. },
  4777. {
  4778. "name": "Symfony Community",
  4779. "homepage": "https://symfony.com/contributors"
  4780. }
  4781. ],
  4782. "description": "Generic abstractions related to dispatching event",
  4783. "homepage": "https://symfony.com",
  4784. "keywords": [
  4785. "abstractions",
  4786. "contracts",
  4787. "decoupling",
  4788. "interfaces",
  4789. "interoperability",
  4790. "standards"
  4791. ],
  4792. "support": {
  4793. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.4"
  4794. },
  4795. "funding": [
  4796. {
  4797. "url": "https://symfony.com/sponsor",
  4798. "type": "custom"
  4799. },
  4800. {
  4801. "url": "https://github.com/fabpot",
  4802. "type": "github"
  4803. },
  4804. {
  4805. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4806. "type": "tidelift"
  4807. }
  4808. ],
  4809. "time": "2024-09-25T14:11:13+00:00"
  4810. },
  4811. {
  4812. "name": "symfony/finder",
  4813. "version": "v5.4.45",
  4814. "source": {
  4815. "type": "git",
  4816. "url": "https://github.com/symfony/finder.git",
  4817. "reference": "63741784cd7b9967975eec610b256eed3ede022b"
  4818. },
  4819. "dist": {
  4820. "type": "zip",
  4821. "url": "https://api.github.com/repos/symfony/finder/zipball/63741784cd7b9967975eec610b256eed3ede022b",
  4822. "reference": "63741784cd7b9967975eec610b256eed3ede022b",
  4823. "shasum": "",
  4824. "mirrors": [
  4825. {
  4826. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4827. "preferred": true
  4828. }
  4829. ]
  4830. },
  4831. "require": {
  4832. "php": ">=7.2.5",
  4833. "symfony/deprecation-contracts": "^2.1|^3",
  4834. "symfony/polyfill-php80": "^1.16"
  4835. },
  4836. "type": "library",
  4837. "autoload": {
  4838. "psr-4": {
  4839. "Symfony\\Component\\Finder\\": ""
  4840. },
  4841. "exclude-from-classmap": [
  4842. "/Tests/"
  4843. ]
  4844. },
  4845. "notification-url": "https://packagist.org/downloads/",
  4846. "license": [
  4847. "MIT"
  4848. ],
  4849. "authors": [
  4850. {
  4851. "name": "Fabien Potencier",
  4852. "email": "fabien@symfony.com"
  4853. },
  4854. {
  4855. "name": "Symfony Community",
  4856. "homepage": "https://symfony.com/contributors"
  4857. }
  4858. ],
  4859. "description": "Finds files and directories via an intuitive fluent interface",
  4860. "homepage": "https://symfony.com",
  4861. "support": {
  4862. "source": "https://github.com/symfony/finder/tree/v5.4.45"
  4863. },
  4864. "funding": [
  4865. {
  4866. "url": "https://symfony.com/sponsor",
  4867. "type": "custom"
  4868. },
  4869. {
  4870. "url": "https://github.com/fabpot",
  4871. "type": "github"
  4872. },
  4873. {
  4874. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4875. "type": "tidelift"
  4876. }
  4877. ],
  4878. "time": "2024-09-28T13:32:08+00:00"
  4879. },
  4880. {
  4881. "name": "symfony/http-client",
  4882. "version": "v5.4.47",
  4883. "source": {
  4884. "type": "git",
  4885. "url": "https://github.com/symfony/http-client.git",
  4886. "reference": "3b643b83f87e1765d2e9b1e946bb56ee0b4b7bde"
  4887. },
  4888. "dist": {
  4889. "type": "zip",
  4890. "url": "https://api.github.com/repos/symfony/http-client/zipball/3b643b83f87e1765d2e9b1e946bb56ee0b4b7bde",
  4891. "reference": "3b643b83f87e1765d2e9b1e946bb56ee0b4b7bde",
  4892. "shasum": "",
  4893. "mirrors": [
  4894. {
  4895. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4896. "preferred": true
  4897. }
  4898. ]
  4899. },
  4900. "require": {
  4901. "php": ">=7.2.5",
  4902. "psr/log": "^1|^2|^3",
  4903. "symfony/deprecation-contracts": "^2.1|^3",
  4904. "symfony/http-client-contracts": "^2.5.3",
  4905. "symfony/polyfill-php73": "^1.11",
  4906. "symfony/polyfill-php80": "^1.16",
  4907. "symfony/service-contracts": "^1.0|^2|^3"
  4908. },
  4909. "provide": {
  4910. "php-http/async-client-implementation": "*",
  4911. "php-http/client-implementation": "*",
  4912. "psr/http-client-implementation": "1.0",
  4913. "symfony/http-client-implementation": "2.4"
  4914. },
  4915. "require-dev": {
  4916. "amphp/amp": "^2.5",
  4917. "amphp/http-client": "^4.2.1",
  4918. "amphp/http-tunnel": "^1.0",
  4919. "amphp/socket": "^1.1",
  4920. "guzzlehttp/promises": "^1.4|^2.0",
  4921. "nyholm/psr7": "^1.0",
  4922. "php-http/httplug": "^1.0|^2.0",
  4923. "php-http/message-factory": "^1.0",
  4924. "psr/http-client": "^1.0",
  4925. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4926. "symfony/http-kernel": "^4.4.13|^5.1.5|^6.0",
  4927. "symfony/process": "^4.4|^5.0|^6.0",
  4928. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  4929. },
  4930. "type": "library",
  4931. "autoload": {
  4932. "psr-4": {
  4933. "Symfony\\Component\\HttpClient\\": ""
  4934. },
  4935. "exclude-from-classmap": [
  4936. "/Tests/"
  4937. ]
  4938. },
  4939. "notification-url": "https://packagist.org/downloads/",
  4940. "license": [
  4941. "MIT"
  4942. ],
  4943. "authors": [
  4944. {
  4945. "name": "Nicolas Grekas",
  4946. "email": "p@tchwork.com"
  4947. },
  4948. {
  4949. "name": "Symfony Community",
  4950. "homepage": "https://symfony.com/contributors"
  4951. }
  4952. ],
  4953. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4954. "homepage": "https://symfony.com",
  4955. "keywords": [
  4956. "http"
  4957. ],
  4958. "support": {
  4959. "source": "https://github.com/symfony/http-client/tree/v5.4.47"
  4960. },
  4961. "funding": [
  4962. {
  4963. "url": "https://symfony.com/sponsor",
  4964. "type": "custom"
  4965. },
  4966. {
  4967. "url": "https://github.com/fabpot",
  4968. "type": "github"
  4969. },
  4970. {
  4971. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4972. "type": "tidelift"
  4973. }
  4974. ],
  4975. "time": "2024-11-13T12:18:12+00:00"
  4976. },
  4977. {
  4978. "name": "symfony/http-client-contracts",
  4979. "version": "v2.5.3",
  4980. "source": {
  4981. "type": "git",
  4982. "url": "https://github.com/symfony/http-client-contracts.git",
  4983. "reference": "e5cc97c2b4a4db0ba26bebc154f1426e3fd1d2f1"
  4984. },
  4985. "dist": {
  4986. "type": "zip",
  4987. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/e5cc97c2b4a4db0ba26bebc154f1426e3fd1d2f1",
  4988. "reference": "e5cc97c2b4a4db0ba26bebc154f1426e3fd1d2f1",
  4989. "shasum": "",
  4990. "mirrors": [
  4991. {
  4992. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4993. "preferred": true
  4994. }
  4995. ]
  4996. },
  4997. "require": {
  4998. "php": ">=7.2.5"
  4999. },
  5000. "suggest": {
  5001. "symfony/http-client-implementation": ""
  5002. },
  5003. "type": "library",
  5004. "extra": {
  5005. "branch-alias": {
  5006. "dev-main": "2.5-dev"
  5007. },
  5008. "thanks": {
  5009. "name": "symfony/contracts",
  5010. "url": "https://github.com/symfony/contracts"
  5011. }
  5012. },
  5013. "autoload": {
  5014. "psr-4": {
  5015. "Symfony\\Contracts\\HttpClient\\": ""
  5016. }
  5017. },
  5018. "notification-url": "https://packagist.org/downloads/",
  5019. "license": [
  5020. "MIT"
  5021. ],
  5022. "authors": [
  5023. {
  5024. "name": "Nicolas Grekas",
  5025. "email": "p@tchwork.com"
  5026. },
  5027. {
  5028. "name": "Symfony Community",
  5029. "homepage": "https://symfony.com/contributors"
  5030. }
  5031. ],
  5032. "description": "Generic abstractions related to HTTP clients",
  5033. "homepage": "https://symfony.com",
  5034. "keywords": [
  5035. "abstractions",
  5036. "contracts",
  5037. "decoupling",
  5038. "interfaces",
  5039. "interoperability",
  5040. "standards"
  5041. ],
  5042. "support": {
  5043. "source": "https://github.com/symfony/http-client-contracts/tree/v2.5.3"
  5044. },
  5045. "funding": [
  5046. {
  5047. "url": "https://symfony.com/sponsor",
  5048. "type": "custom"
  5049. },
  5050. {
  5051. "url": "https://github.com/fabpot",
  5052. "type": "github"
  5053. },
  5054. {
  5055. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5056. "type": "tidelift"
  5057. }
  5058. ],
  5059. "time": "2024-03-26T19:42:53+00:00"
  5060. },
  5061. {
  5062. "name": "symfony/http-foundation",
  5063. "version": "v5.4.48",
  5064. "source": {
  5065. "type": "git",
  5066. "url": "https://github.com/symfony/http-foundation.git",
  5067. "reference": "3f38b8af283b830e1363acd79e5bc3412d055341"
  5068. },
  5069. "dist": {
  5070. "type": "zip",
  5071. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3f38b8af283b830e1363acd79e5bc3412d055341",
  5072. "reference": "3f38b8af283b830e1363acd79e5bc3412d055341",
  5073. "shasum": "",
  5074. "mirrors": [
  5075. {
  5076. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5077. "preferred": true
  5078. }
  5079. ]
  5080. },
  5081. "require": {
  5082. "php": ">=7.2.5",
  5083. "symfony/deprecation-contracts": "^2.1|^3",
  5084. "symfony/polyfill-mbstring": "~1.1",
  5085. "symfony/polyfill-php80": "^1.16"
  5086. },
  5087. "require-dev": {
  5088. "predis/predis": "^1.0|^2.0",
  5089. "symfony/cache": "^4.4|^5.0|^6.0",
  5090. "symfony/dependency-injection": "^5.4|^6.0",
  5091. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5092. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  5093. "symfony/mime": "^4.4|^5.0|^6.0",
  5094. "symfony/rate-limiter": "^5.2|^6.0"
  5095. },
  5096. "suggest": {
  5097. "symfony/mime": "To use the file extension guesser"
  5098. },
  5099. "type": "library",
  5100. "autoload": {
  5101. "psr-4": {
  5102. "Symfony\\Component\\HttpFoundation\\": ""
  5103. },
  5104. "exclude-from-classmap": [
  5105. "/Tests/"
  5106. ]
  5107. },
  5108. "notification-url": "https://packagist.org/downloads/",
  5109. "license": [
  5110. "MIT"
  5111. ],
  5112. "authors": [
  5113. {
  5114. "name": "Fabien Potencier",
  5115. "email": "fabien@symfony.com"
  5116. },
  5117. {
  5118. "name": "Symfony Community",
  5119. "homepage": "https://symfony.com/contributors"
  5120. }
  5121. ],
  5122. "description": "Defines an object-oriented layer for the HTTP specification",
  5123. "homepage": "https://symfony.com",
  5124. "support": {
  5125. "source": "https://github.com/symfony/http-foundation/tree/v5.4.48"
  5126. },
  5127. "funding": [
  5128. {
  5129. "url": "https://symfony.com/sponsor",
  5130. "type": "custom"
  5131. },
  5132. {
  5133. "url": "https://github.com/fabpot",
  5134. "type": "github"
  5135. },
  5136. {
  5137. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5138. "type": "tidelift"
  5139. }
  5140. ],
  5141. "time": "2024-11-13T18:58:02+00:00"
  5142. },
  5143. {
  5144. "name": "symfony/polyfill-mbstring",
  5145. "version": "v1.31.0",
  5146. "source": {
  5147. "type": "git",
  5148. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5149. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  5150. },
  5151. "dist": {
  5152. "type": "zip",
  5153. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  5154. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  5155. "shasum": "",
  5156. "mirrors": [
  5157. {
  5158. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5159. "preferred": true
  5160. }
  5161. ]
  5162. },
  5163. "require": {
  5164. "php": ">=7.2"
  5165. },
  5166. "provide": {
  5167. "ext-mbstring": "*"
  5168. },
  5169. "suggest": {
  5170. "ext-mbstring": "For best performance"
  5171. },
  5172. "type": "library",
  5173. "extra": {
  5174. "thanks": {
  5175. "name": "symfony/polyfill",
  5176. "url": "https://github.com/symfony/polyfill"
  5177. }
  5178. },
  5179. "autoload": {
  5180. "files": [
  5181. "bootstrap.php"
  5182. ],
  5183. "psr-4": {
  5184. "Symfony\\Polyfill\\Mbstring\\": ""
  5185. }
  5186. },
  5187. "notification-url": "https://packagist.org/downloads/",
  5188. "license": [
  5189. "MIT"
  5190. ],
  5191. "authors": [
  5192. {
  5193. "name": "Nicolas Grekas",
  5194. "email": "p@tchwork.com"
  5195. },
  5196. {
  5197. "name": "Symfony Community",
  5198. "homepage": "https://symfony.com/contributors"
  5199. }
  5200. ],
  5201. "description": "Symfony polyfill for the Mbstring extension",
  5202. "homepage": "https://symfony.com",
  5203. "keywords": [
  5204. "compatibility",
  5205. "mbstring",
  5206. "polyfill",
  5207. "portable",
  5208. "shim"
  5209. ],
  5210. "support": {
  5211. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  5212. },
  5213. "funding": [
  5214. {
  5215. "url": "https://symfony.com/sponsor",
  5216. "type": "custom"
  5217. },
  5218. {
  5219. "url": "https://github.com/fabpot",
  5220. "type": "github"
  5221. },
  5222. {
  5223. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5224. "type": "tidelift"
  5225. }
  5226. ],
  5227. "time": "2024-09-09T11:45:10+00:00"
  5228. },
  5229. {
  5230. "name": "symfony/polyfill-php73",
  5231. "version": "v1.31.0",
  5232. "source": {
  5233. "type": "git",
  5234. "url": "https://github.com/symfony/polyfill-php73.git",
  5235. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb"
  5236. },
  5237. "dist": {
  5238. "type": "zip",
  5239. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  5240. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  5241. "shasum": "",
  5242. "mirrors": [
  5243. {
  5244. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5245. "preferred": true
  5246. }
  5247. ]
  5248. },
  5249. "require": {
  5250. "php": ">=7.2"
  5251. },
  5252. "type": "library",
  5253. "extra": {
  5254. "thanks": {
  5255. "name": "symfony/polyfill",
  5256. "url": "https://github.com/symfony/polyfill"
  5257. }
  5258. },
  5259. "autoload": {
  5260. "files": [
  5261. "bootstrap.php"
  5262. ],
  5263. "psr-4": {
  5264. "Symfony\\Polyfill\\Php73\\": ""
  5265. },
  5266. "classmap": [
  5267. "Resources/stubs"
  5268. ]
  5269. },
  5270. "notification-url": "https://packagist.org/downloads/",
  5271. "license": [
  5272. "MIT"
  5273. ],
  5274. "authors": [
  5275. {
  5276. "name": "Nicolas Grekas",
  5277. "email": "p@tchwork.com"
  5278. },
  5279. {
  5280. "name": "Symfony Community",
  5281. "homepage": "https://symfony.com/contributors"
  5282. }
  5283. ],
  5284. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  5285. "homepage": "https://symfony.com",
  5286. "keywords": [
  5287. "compatibility",
  5288. "polyfill",
  5289. "portable",
  5290. "shim"
  5291. ],
  5292. "support": {
  5293. "source": "https://github.com/symfony/polyfill-php73/tree/v1.31.0"
  5294. },
  5295. "funding": [
  5296. {
  5297. "url": "https://symfony.com/sponsor",
  5298. "type": "custom"
  5299. },
  5300. {
  5301. "url": "https://github.com/fabpot",
  5302. "type": "github"
  5303. },
  5304. {
  5305. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5306. "type": "tidelift"
  5307. }
  5308. ],
  5309. "time": "2024-09-09T11:45:10+00:00"
  5310. },
  5311. {
  5312. "name": "symfony/polyfill-php80",
  5313. "version": "v1.31.0",
  5314. "source": {
  5315. "type": "git",
  5316. "url": "https://github.com/symfony/polyfill-php80.git",
  5317. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  5318. },
  5319. "dist": {
  5320. "type": "zip",
  5321. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  5322. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  5323. "shasum": "",
  5324. "mirrors": [
  5325. {
  5326. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5327. "preferred": true
  5328. }
  5329. ]
  5330. },
  5331. "require": {
  5332. "php": ">=7.2"
  5333. },
  5334. "type": "library",
  5335. "extra": {
  5336. "thanks": {
  5337. "name": "symfony/polyfill",
  5338. "url": "https://github.com/symfony/polyfill"
  5339. }
  5340. },
  5341. "autoload": {
  5342. "files": [
  5343. "bootstrap.php"
  5344. ],
  5345. "psr-4": {
  5346. "Symfony\\Polyfill\\Php80\\": ""
  5347. },
  5348. "classmap": [
  5349. "Resources/stubs"
  5350. ]
  5351. },
  5352. "notification-url": "https://packagist.org/downloads/",
  5353. "license": [
  5354. "MIT"
  5355. ],
  5356. "authors": [
  5357. {
  5358. "name": "Ion Bazan",
  5359. "email": "ion.bazan@gmail.com"
  5360. },
  5361. {
  5362. "name": "Nicolas Grekas",
  5363. "email": "p@tchwork.com"
  5364. },
  5365. {
  5366. "name": "Symfony Community",
  5367. "homepage": "https://symfony.com/contributors"
  5368. }
  5369. ],
  5370. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5371. "homepage": "https://symfony.com",
  5372. "keywords": [
  5373. "compatibility",
  5374. "polyfill",
  5375. "portable",
  5376. "shim"
  5377. ],
  5378. "support": {
  5379. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  5380. },
  5381. "funding": [
  5382. {
  5383. "url": "https://symfony.com/sponsor",
  5384. "type": "custom"
  5385. },
  5386. {
  5387. "url": "https://github.com/fabpot",
  5388. "type": "github"
  5389. },
  5390. {
  5391. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5392. "type": "tidelift"
  5393. }
  5394. ],
  5395. "time": "2024-09-09T11:45:10+00:00"
  5396. },
  5397. {
  5398. "name": "symfony/process",
  5399. "version": "v5.4.46",
  5400. "source": {
  5401. "type": "git",
  5402. "url": "https://github.com/symfony/process.git",
  5403. "reference": "01906871cb9b5e3cf872863b91aba4ec9767daf4"
  5404. },
  5405. "dist": {
  5406. "type": "zip",
  5407. "url": "https://api.github.com/repos/symfony/process/zipball/01906871cb9b5e3cf872863b91aba4ec9767daf4",
  5408. "reference": "01906871cb9b5e3cf872863b91aba4ec9767daf4",
  5409. "shasum": "",
  5410. "mirrors": [
  5411. {
  5412. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5413. "preferred": true
  5414. }
  5415. ]
  5416. },
  5417. "require": {
  5418. "php": ">=7.2.5",
  5419. "symfony/polyfill-php80": "^1.16"
  5420. },
  5421. "type": "library",
  5422. "autoload": {
  5423. "psr-4": {
  5424. "Symfony\\Component\\Process\\": ""
  5425. },
  5426. "exclude-from-classmap": [
  5427. "/Tests/"
  5428. ]
  5429. },
  5430. "notification-url": "https://packagist.org/downloads/",
  5431. "license": [
  5432. "MIT"
  5433. ],
  5434. "authors": [
  5435. {
  5436. "name": "Fabien Potencier",
  5437. "email": "fabien@symfony.com"
  5438. },
  5439. {
  5440. "name": "Symfony Community",
  5441. "homepage": "https://symfony.com/contributors"
  5442. }
  5443. ],
  5444. "description": "Executes commands in sub-processes",
  5445. "homepage": "https://symfony.com",
  5446. "support": {
  5447. "source": "https://github.com/symfony/process/tree/v5.4.46"
  5448. },
  5449. "funding": [
  5450. {
  5451. "url": "https://symfony.com/sponsor",
  5452. "type": "custom"
  5453. },
  5454. {
  5455. "url": "https://github.com/fabpot",
  5456. "type": "github"
  5457. },
  5458. {
  5459. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5460. "type": "tidelift"
  5461. }
  5462. ],
  5463. "time": "2024-11-06T09:18:28+00:00"
  5464. },
  5465. {
  5466. "name": "symfony/psr-http-message-bridge",
  5467. "version": "v2.3.1",
  5468. "source": {
  5469. "type": "git",
  5470. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  5471. "reference": "581ca6067eb62640de5ff08ee1ba6850a0ee472e"
  5472. },
  5473. "dist": {
  5474. "type": "zip",
  5475. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/581ca6067eb62640de5ff08ee1ba6850a0ee472e",
  5476. "reference": "581ca6067eb62640de5ff08ee1ba6850a0ee472e",
  5477. "shasum": "",
  5478. "mirrors": [
  5479. {
  5480. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5481. "preferred": true
  5482. }
  5483. ]
  5484. },
  5485. "require": {
  5486. "php": ">=7.2.5",
  5487. "psr/http-message": "^1.0 || ^2.0",
  5488. "symfony/deprecation-contracts": "^2.5 || ^3.0",
  5489. "symfony/http-foundation": "^5.4 || ^6.0"
  5490. },
  5491. "require-dev": {
  5492. "nyholm/psr7": "^1.1",
  5493. "psr/log": "^1.1 || ^2 || ^3",
  5494. "symfony/browser-kit": "^5.4 || ^6.0",
  5495. "symfony/config": "^5.4 || ^6.0",
  5496. "symfony/event-dispatcher": "^5.4 || ^6.0",
  5497. "symfony/framework-bundle": "^5.4 || ^6.0",
  5498. "symfony/http-kernel": "^5.4 || ^6.0",
  5499. "symfony/phpunit-bridge": "^6.2"
  5500. },
  5501. "suggest": {
  5502. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  5503. },
  5504. "type": "symfony-bridge",
  5505. "extra": {
  5506. "branch-alias": {
  5507. "dev-main": "2.3-dev"
  5508. }
  5509. },
  5510. "autoload": {
  5511. "psr-4": {
  5512. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  5513. },
  5514. "exclude-from-classmap": [
  5515. "/Tests/"
  5516. ]
  5517. },
  5518. "notification-url": "https://packagist.org/downloads/",
  5519. "license": [
  5520. "MIT"
  5521. ],
  5522. "authors": [
  5523. {
  5524. "name": "Fabien Potencier",
  5525. "email": "fabien@symfony.com"
  5526. },
  5527. {
  5528. "name": "Symfony Community",
  5529. "homepage": "http://symfony.com/contributors"
  5530. }
  5531. ],
  5532. "description": "PSR HTTP message bridge",
  5533. "homepage": "http://symfony.com",
  5534. "keywords": [
  5535. "http",
  5536. "http-message",
  5537. "psr-17",
  5538. "psr-7"
  5539. ],
  5540. "support": {
  5541. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  5542. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.3.1"
  5543. },
  5544. "funding": [
  5545. {
  5546. "url": "https://symfony.com/sponsor",
  5547. "type": "custom"
  5548. },
  5549. {
  5550. "url": "https://github.com/fabpot",
  5551. "type": "github"
  5552. },
  5553. {
  5554. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5555. "type": "tidelift"
  5556. }
  5557. ],
  5558. "time": "2023-07-26T11:53:26+00:00"
  5559. },
  5560. {
  5561. "name": "symfony/service-contracts",
  5562. "version": "v2.5.3",
  5563. "source": {
  5564. "type": "git",
  5565. "url": "https://github.com/symfony/service-contracts.git",
  5566. "reference": "a2329596ddc8fd568900e3fc76cba42489ecc7f3"
  5567. },
  5568. "dist": {
  5569. "type": "zip",
  5570. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/a2329596ddc8fd568900e3fc76cba42489ecc7f3",
  5571. "reference": "a2329596ddc8fd568900e3fc76cba42489ecc7f3",
  5572. "shasum": "",
  5573. "mirrors": [
  5574. {
  5575. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5576. "preferred": true
  5577. }
  5578. ]
  5579. },
  5580. "require": {
  5581. "php": ">=7.2.5",
  5582. "psr/container": "^1.1",
  5583. "symfony/deprecation-contracts": "^2.1|^3"
  5584. },
  5585. "conflict": {
  5586. "ext-psr": "<1.1|>=2"
  5587. },
  5588. "suggest": {
  5589. "symfony/service-implementation": ""
  5590. },
  5591. "type": "library",
  5592. "extra": {
  5593. "branch-alias": {
  5594. "dev-main": "2.5-dev"
  5595. },
  5596. "thanks": {
  5597. "name": "symfony/contracts",
  5598. "url": "https://github.com/symfony/contracts"
  5599. }
  5600. },
  5601. "autoload": {
  5602. "psr-4": {
  5603. "Symfony\\Contracts\\Service\\": ""
  5604. }
  5605. },
  5606. "notification-url": "https://packagist.org/downloads/",
  5607. "license": [
  5608. "MIT"
  5609. ],
  5610. "authors": [
  5611. {
  5612. "name": "Nicolas Grekas",
  5613. "email": "p@tchwork.com"
  5614. },
  5615. {
  5616. "name": "Symfony Community",
  5617. "homepage": "https://symfony.com/contributors"
  5618. }
  5619. ],
  5620. "description": "Generic abstractions related to writing services",
  5621. "homepage": "https://symfony.com",
  5622. "keywords": [
  5623. "abstractions",
  5624. "contracts",
  5625. "decoupling",
  5626. "interfaces",
  5627. "interoperability",
  5628. "standards"
  5629. ],
  5630. "support": {
  5631. "source": "https://github.com/symfony/service-contracts/tree/v2.5.3"
  5632. },
  5633. "funding": [
  5634. {
  5635. "url": "https://symfony.com/sponsor",
  5636. "type": "custom"
  5637. },
  5638. {
  5639. "url": "https://github.com/fabpot",
  5640. "type": "github"
  5641. },
  5642. {
  5643. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5644. "type": "tidelift"
  5645. }
  5646. ],
  5647. "time": "2023-04-21T15:04:16+00:00"
  5648. },
  5649. {
  5650. "name": "symfony/translation",
  5651. "version": "v5.4.45",
  5652. "source": {
  5653. "type": "git",
  5654. "url": "https://github.com/symfony/translation.git",
  5655. "reference": "98f26acc99341ca4bab345fb14d7b1d7cb825bed"
  5656. },
  5657. "dist": {
  5658. "type": "zip",
  5659. "url": "https://api.github.com/repos/symfony/translation/zipball/98f26acc99341ca4bab345fb14d7b1d7cb825bed",
  5660. "reference": "98f26acc99341ca4bab345fb14d7b1d7cb825bed",
  5661. "shasum": "",
  5662. "mirrors": [
  5663. {
  5664. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5665. "preferred": true
  5666. }
  5667. ]
  5668. },
  5669. "require": {
  5670. "php": ">=7.2.5",
  5671. "symfony/deprecation-contracts": "^2.1|^3",
  5672. "symfony/polyfill-mbstring": "~1.0",
  5673. "symfony/polyfill-php80": "^1.16",
  5674. "symfony/translation-contracts": "^2.3"
  5675. },
  5676. "conflict": {
  5677. "symfony/config": "<4.4",
  5678. "symfony/console": "<5.3",
  5679. "symfony/dependency-injection": "<5.0",
  5680. "symfony/http-kernel": "<5.0",
  5681. "symfony/twig-bundle": "<5.0",
  5682. "symfony/yaml": "<4.4"
  5683. },
  5684. "provide": {
  5685. "symfony/translation-implementation": "2.3"
  5686. },
  5687. "require-dev": {
  5688. "psr/log": "^1|^2|^3",
  5689. "symfony/config": "^4.4|^5.0|^6.0",
  5690. "symfony/console": "^5.4|^6.0",
  5691. "symfony/dependency-injection": "^5.0|^6.0",
  5692. "symfony/finder": "^4.4|^5.0|^6.0",
  5693. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  5694. "symfony/http-kernel": "^5.0|^6.0",
  5695. "symfony/intl": "^4.4|^5.0|^6.0",
  5696. "symfony/polyfill-intl-icu": "^1.21",
  5697. "symfony/service-contracts": "^1.1.2|^2|^3",
  5698. "symfony/yaml": "^4.4|^5.0|^6.0"
  5699. },
  5700. "suggest": {
  5701. "psr/log-implementation": "To use logging capability in translator",
  5702. "symfony/config": "",
  5703. "symfony/yaml": ""
  5704. },
  5705. "type": "library",
  5706. "autoload": {
  5707. "files": [
  5708. "Resources/functions.php"
  5709. ],
  5710. "psr-4": {
  5711. "Symfony\\Component\\Translation\\": ""
  5712. },
  5713. "exclude-from-classmap": [
  5714. "/Tests/"
  5715. ]
  5716. },
  5717. "notification-url": "https://packagist.org/downloads/",
  5718. "license": [
  5719. "MIT"
  5720. ],
  5721. "authors": [
  5722. {
  5723. "name": "Fabien Potencier",
  5724. "email": "fabien@symfony.com"
  5725. },
  5726. {
  5727. "name": "Symfony Community",
  5728. "homepage": "https://symfony.com/contributors"
  5729. }
  5730. ],
  5731. "description": "Provides tools to internationalize your application",
  5732. "homepage": "https://symfony.com",
  5733. "support": {
  5734. "source": "https://github.com/symfony/translation/tree/v5.4.45"
  5735. },
  5736. "funding": [
  5737. {
  5738. "url": "https://symfony.com/sponsor",
  5739. "type": "custom"
  5740. },
  5741. {
  5742. "url": "https://github.com/fabpot",
  5743. "type": "github"
  5744. },
  5745. {
  5746. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5747. "type": "tidelift"
  5748. }
  5749. ],
  5750. "time": "2024-09-25T14:11:13+00:00"
  5751. },
  5752. {
  5753. "name": "symfony/translation-contracts",
  5754. "version": "v2.5.3",
  5755. "source": {
  5756. "type": "git",
  5757. "url": "https://github.com/symfony/translation-contracts.git",
  5758. "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664"
  5759. },
  5760. "dist": {
  5761. "type": "zip",
  5762. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b0073a77ac0b7ea55131020e87b1e3af540f4664",
  5763. "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664",
  5764. "shasum": "",
  5765. "mirrors": [
  5766. {
  5767. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5768. "preferred": true
  5769. }
  5770. ]
  5771. },
  5772. "require": {
  5773. "php": ">=7.2.5"
  5774. },
  5775. "suggest": {
  5776. "symfony/translation-implementation": ""
  5777. },
  5778. "type": "library",
  5779. "extra": {
  5780. "branch-alias": {
  5781. "dev-main": "2.5-dev"
  5782. },
  5783. "thanks": {
  5784. "name": "symfony/contracts",
  5785. "url": "https://github.com/symfony/contracts"
  5786. }
  5787. },
  5788. "autoload": {
  5789. "psr-4": {
  5790. "Symfony\\Contracts\\Translation\\": ""
  5791. }
  5792. },
  5793. "notification-url": "https://packagist.org/downloads/",
  5794. "license": [
  5795. "MIT"
  5796. ],
  5797. "authors": [
  5798. {
  5799. "name": "Nicolas Grekas",
  5800. "email": "p@tchwork.com"
  5801. },
  5802. {
  5803. "name": "Symfony Community",
  5804. "homepage": "https://symfony.com/contributors"
  5805. }
  5806. ],
  5807. "description": "Generic abstractions related to translation",
  5808. "homepage": "https://symfony.com",
  5809. "keywords": [
  5810. "abstractions",
  5811. "contracts",
  5812. "decoupling",
  5813. "interfaces",
  5814. "interoperability",
  5815. "standards"
  5816. ],
  5817. "support": {
  5818. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.3"
  5819. },
  5820. "funding": [
  5821. {
  5822. "url": "https://symfony.com/sponsor",
  5823. "type": "custom"
  5824. },
  5825. {
  5826. "url": "https://github.com/fabpot",
  5827. "type": "github"
  5828. },
  5829. {
  5830. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5831. "type": "tidelift"
  5832. }
  5833. ],
  5834. "time": "2024-01-23T13:51:25+00:00"
  5835. },
  5836. {
  5837. "name": "symfony/var-exporter",
  5838. "version": "v5.4.45",
  5839. "source": {
  5840. "type": "git",
  5841. "url": "https://github.com/symfony/var-exporter.git",
  5842. "reference": "862700068db0ddfd8c5b850671e029a90246ec75"
  5843. },
  5844. "dist": {
  5845. "type": "zip",
  5846. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/862700068db0ddfd8c5b850671e029a90246ec75",
  5847. "reference": "862700068db0ddfd8c5b850671e029a90246ec75",
  5848. "shasum": "",
  5849. "mirrors": [
  5850. {
  5851. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5852. "preferred": true
  5853. }
  5854. ]
  5855. },
  5856. "require": {
  5857. "php": ">=7.2.5",
  5858. "symfony/polyfill-php80": "^1.16"
  5859. },
  5860. "require-dev": {
  5861. "symfony/var-dumper": "^4.4.9|^5.0.9|^6.0"
  5862. },
  5863. "type": "library",
  5864. "autoload": {
  5865. "psr-4": {
  5866. "Symfony\\Component\\VarExporter\\": ""
  5867. },
  5868. "exclude-from-classmap": [
  5869. "/Tests/"
  5870. ]
  5871. },
  5872. "notification-url": "https://packagist.org/downloads/",
  5873. "license": [
  5874. "MIT"
  5875. ],
  5876. "authors": [
  5877. {
  5878. "name": "Nicolas Grekas",
  5879. "email": "p@tchwork.com"
  5880. },
  5881. {
  5882. "name": "Symfony Community",
  5883. "homepage": "https://symfony.com/contributors"
  5884. }
  5885. ],
  5886. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  5887. "homepage": "https://symfony.com",
  5888. "keywords": [
  5889. "clone",
  5890. "construct",
  5891. "export",
  5892. "hydrate",
  5893. "instantiate",
  5894. "serialize"
  5895. ],
  5896. "support": {
  5897. "source": "https://github.com/symfony/var-exporter/tree/v5.4.45"
  5898. },
  5899. "funding": [
  5900. {
  5901. "url": "https://symfony.com/sponsor",
  5902. "type": "custom"
  5903. },
  5904. {
  5905. "url": "https://github.com/fabpot",
  5906. "type": "github"
  5907. },
  5908. {
  5909. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5910. "type": "tidelift"
  5911. }
  5912. ],
  5913. "time": "2024-09-25T14:11:13+00:00"
  5914. },
  5915. {
  5916. "name": "topthink/framework",
  5917. "version": "v6.1.4",
  5918. "source": {
  5919. "type": "git",
  5920. "url": "https://github.com/top-think/framework.git",
  5921. "reference": "66eb9cf4d627df12911344cd328faf9bb596bf2c"
  5922. },
  5923. "dist": {
  5924. "type": "zip",
  5925. "url": "https://api.github.com/repos/top-think/framework/zipball/66eb9cf4d627df12911344cd328faf9bb596bf2c",
  5926. "reference": "66eb9cf4d627df12911344cd328faf9bb596bf2c",
  5927. "shasum": "",
  5928. "mirrors": [
  5929. {
  5930. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5931. "preferred": true
  5932. }
  5933. ]
  5934. },
  5935. "require": {
  5936. "ext-json": "*",
  5937. "ext-mbstring": "*",
  5938. "php": ">=7.2.5",
  5939. "psr/container": "~1.0",
  5940. "psr/http-message": "^1.0",
  5941. "psr/log": "~1.0",
  5942. "psr/simple-cache": "^1.0",
  5943. "topthink/think-helper": "^3.1.1",
  5944. "topthink/think-orm": "^2.0|^3.0"
  5945. },
  5946. "require-dev": {
  5947. "guzzlehttp/psr7": "^2.1.0",
  5948. "mikey179/vfsstream": "^1.6",
  5949. "mockery/mockery": "^1.2",
  5950. "phpunit/phpunit": "^7.0"
  5951. },
  5952. "type": "library",
  5953. "autoload": {
  5954. "files": [],
  5955. "psr-4": {
  5956. "think\\": "src/think/"
  5957. }
  5958. },
  5959. "notification-url": "https://packagist.org/downloads/",
  5960. "license": [
  5961. "Apache-2.0"
  5962. ],
  5963. "authors": [
  5964. {
  5965. "name": "liu21st",
  5966. "email": "liu21st@gmail.com"
  5967. },
  5968. {
  5969. "name": "yunwuxin",
  5970. "email": "448901948@qq.com"
  5971. }
  5972. ],
  5973. "description": "The ThinkPHP Framework.",
  5974. "homepage": "http://thinkphp.cn/",
  5975. "keywords": [
  5976. "framework",
  5977. "orm",
  5978. "thinkphp"
  5979. ],
  5980. "support": {
  5981. "issues": "https://github.com/top-think/framework/issues",
  5982. "source": "https://github.com/top-think/framework/tree/v6.1.4"
  5983. },
  5984. "time": "2023-07-11T15:16:03+00:00"
  5985. },
  5986. {
  5987. "name": "topthink/think-captcha",
  5988. "version": "v3.0.9",
  5989. "source": {
  5990. "type": "git",
  5991. "url": "https://github.com/top-think/think-captcha.git",
  5992. "reference": "b1ef360670578214edeebcf824aaf6ab7ee0528b"
  5993. },
  5994. "dist": {
  5995. "type": "zip",
  5996. "url": "https://api.github.com/repos/top-think/think-captcha/zipball/b1ef360670578214edeebcf824aaf6ab7ee0528b",
  5997. "reference": "b1ef360670578214edeebcf824aaf6ab7ee0528b",
  5998. "shasum": "",
  5999. "mirrors": [
  6000. {
  6001. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6002. "preferred": true
  6003. }
  6004. ]
  6005. },
  6006. "require": {
  6007. "topthink/framework": "^6.0|^8.0"
  6008. },
  6009. "type": "library",
  6010. "extra": {
  6011. "think": {
  6012. "services": [
  6013. "think\\captcha\\CaptchaService"
  6014. ],
  6015. "config": {
  6016. "captcha": "src/config.php"
  6017. }
  6018. }
  6019. },
  6020. "autoload": {
  6021. "files": [
  6022. "src/helper.php"
  6023. ],
  6024. "psr-4": {
  6025. "think\\captcha\\": "src/"
  6026. }
  6027. },
  6028. "notification-url": "https://packagist.org/downloads/",
  6029. "license": [
  6030. "Apache-2.0"
  6031. ],
  6032. "authors": [
  6033. {
  6034. "name": "yunwuxin",
  6035. "email": "448901948@qq.com"
  6036. }
  6037. ],
  6038. "description": "captcha package for thinkphp",
  6039. "support": {
  6040. "issues": "https://github.com/top-think/think-captcha/issues",
  6041. "source": "https://github.com/top-think/think-captcha/tree/v3.0.9"
  6042. },
  6043. "time": "2023-04-27T07:18:40+00:00"
  6044. },
  6045. {
  6046. "name": "topthink/think-filesystem",
  6047. "version": "v1.0.3",
  6048. "source": {
  6049. "type": "git",
  6050. "url": "https://github.com/top-think/think-filesystem.git",
  6051. "reference": "29f19f140a9267c717fecd7ccb22c84c2d72382e"
  6052. },
  6053. "dist": {
  6054. "type": "zip",
  6055. "url": "https://api.github.com/repos/top-think/think-filesystem/zipball/29f19f140a9267c717fecd7ccb22c84c2d72382e",
  6056. "reference": "29f19f140a9267c717fecd7ccb22c84c2d72382e",
  6057. "shasum": "",
  6058. "mirrors": [
  6059. {
  6060. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6061. "preferred": true
  6062. }
  6063. ]
  6064. },
  6065. "require": {
  6066. "league/flysystem": "^1.1.4",
  6067. "league/flysystem-cached-adapter": "^1.0",
  6068. "php": ">=7.2.5",
  6069. "topthink/framework": "^6.1|^8.0"
  6070. },
  6071. "require-dev": {
  6072. "mikey179/vfsstream": "^1.6",
  6073. "mockery/mockery": "^1.2",
  6074. "phpunit/phpunit": "^8.0"
  6075. },
  6076. "type": "library",
  6077. "autoload": {
  6078. "psr-4": {
  6079. "think\\": "src"
  6080. }
  6081. },
  6082. "notification-url": "https://packagist.org/downloads/",
  6083. "license": [
  6084. "Apache-2.0"
  6085. ],
  6086. "authors": [
  6087. {
  6088. "name": "yunwuxin",
  6089. "email": "448901948@qq.com"
  6090. }
  6091. ],
  6092. "description": "The ThinkPHP6.1 Filesystem Package",
  6093. "support": {
  6094. "issues": "https://github.com/top-think/think-filesystem/issues",
  6095. "source": "https://github.com/top-think/think-filesystem/tree/v1.0.3"
  6096. },
  6097. "time": "2023-02-08T01:25:15+00:00"
  6098. },
  6099. {
  6100. "name": "topthink/think-helper",
  6101. "version": "v3.1.8",
  6102. "source": {
  6103. "type": "git",
  6104. "url": "https://github.com/top-think/think-helper.git",
  6105. "reference": "612eea76eec2a22f41b0e24be27f49454e4fd5f5"
  6106. },
  6107. "dist": {
  6108. "type": "zip",
  6109. "url": "https://api.github.com/repos/top-think/think-helper/zipball/612eea76eec2a22f41b0e24be27f49454e4fd5f5",
  6110. "reference": "612eea76eec2a22f41b0e24be27f49454e4fd5f5",
  6111. "shasum": "",
  6112. "mirrors": [
  6113. {
  6114. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6115. "preferred": true
  6116. }
  6117. ]
  6118. },
  6119. "require": {
  6120. "php": ">=7.1.0"
  6121. },
  6122. "require-dev": {
  6123. "phpunit/phpunit": "^9.5"
  6124. },
  6125. "type": "library",
  6126. "autoload": {
  6127. "files": [
  6128. "src/helper.php"
  6129. ],
  6130. "psr-4": {
  6131. "think\\": "src"
  6132. }
  6133. },
  6134. "notification-url": "https://packagist.org/downloads/",
  6135. "license": [
  6136. "Apache-2.0"
  6137. ],
  6138. "authors": [
  6139. {
  6140. "name": "yunwuxin",
  6141. "email": "448901948@qq.com"
  6142. }
  6143. ],
  6144. "description": "The ThinkPHP6 Helper Package",
  6145. "support": {
  6146. "issues": "https://github.com/top-think/think-helper/issues",
  6147. "source": "https://github.com/top-think/think-helper/tree/v3.1.8"
  6148. },
  6149. "time": "2024-08-26T15:07:58+00:00"
  6150. },
  6151. {
  6152. "name": "topthink/think-image",
  6153. "version": "v1.0.7",
  6154. "source": {
  6155. "type": "git",
  6156. "url": "https://github.com/top-think/think-image.git",
  6157. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512"
  6158. },
  6159. "dist": {
  6160. "type": "zip",
  6161. "url": "https://api.github.com/repos/top-think/think-image/zipball/8586cf47f117481c6d415b20f7dedf62e79d5512",
  6162. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512",
  6163. "shasum": "",
  6164. "mirrors": [
  6165. {
  6166. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6167. "preferred": true
  6168. }
  6169. ]
  6170. },
  6171. "require": {
  6172. "ext-gd": "*"
  6173. },
  6174. "require-dev": {
  6175. "phpunit/phpunit": "4.8.*",
  6176. "topthink/framework": "^5.0"
  6177. },
  6178. "type": "library",
  6179. "autoload": {
  6180. "psr-4": {
  6181. "think\\": "src"
  6182. }
  6183. },
  6184. "notification-url": "https://packagist.org/downloads/",
  6185. "license": [
  6186. "Apache-2.0"
  6187. ],
  6188. "authors": [
  6189. {
  6190. "name": "yunwuxin",
  6191. "email": "448901948@qq.com"
  6192. }
  6193. ],
  6194. "description": "The ThinkPHP5 Image Package",
  6195. "support": {
  6196. "issues": "https://github.com/top-think/think-image/issues",
  6197. "source": "https://github.com/top-think/think-image/tree/master"
  6198. },
  6199. "time": "2016-09-29T06:05:43+00:00"
  6200. },
  6201. {
  6202. "name": "topthink/think-orm",
  6203. "version": "v2.0.62",
  6204. "source": {
  6205. "type": "git",
  6206. "url": "https://github.com/top-think/think-orm.git",
  6207. "reference": "e53bfea572a133039ad687077120de5521af617f"
  6208. },
  6209. "dist": {
  6210. "type": "zip",
  6211. "url": "https://api.github.com/repos/top-think/think-orm/zipball/e53bfea572a133039ad687077120de5521af617f",
  6212. "reference": "e53bfea572a133039ad687077120de5521af617f",
  6213. "shasum": "",
  6214. "mirrors": [
  6215. {
  6216. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6217. "preferred": true
  6218. }
  6219. ]
  6220. },
  6221. "require": {
  6222. "ext-json": "*",
  6223. "ext-pdo": "*",
  6224. "php": ">=7.1.0",
  6225. "psr/log": "^1.0|^2.0",
  6226. "psr/simple-cache": "^1.0|^2.0",
  6227. "topthink/think-helper": "^3.1"
  6228. },
  6229. "require-dev": {
  6230. "phpunit/phpunit": "^7|^8|^9.5"
  6231. },
  6232. "type": "library",
  6233. "autoload": {
  6234. "files": [
  6235. "stubs/load_stubs.php"
  6236. ],
  6237. "psr-4": {
  6238. "think\\": "src"
  6239. }
  6240. },
  6241. "notification-url": "https://packagist.org/downloads/",
  6242. "license": [
  6243. "Apache-2.0"
  6244. ],
  6245. "authors": [
  6246. {
  6247. "name": "liu21st",
  6248. "email": "liu21st@gmail.com"
  6249. }
  6250. ],
  6251. "description": "think orm",
  6252. "keywords": [
  6253. "database",
  6254. "orm"
  6255. ],
  6256. "support": {
  6257. "issues": "https://github.com/top-think/think-orm/issues",
  6258. "source": "https://github.com/top-think/think-orm/tree/v2.0.62"
  6259. },
  6260. "time": "2024-09-22T06:17:47+00:00"
  6261. },
  6262. {
  6263. "name": "topthink/think-queue",
  6264. "version": "v3.0.9",
  6265. "source": {
  6266. "type": "git",
  6267. "url": "https://github.com/top-think/think-queue.git",
  6268. "reference": "654812b47dd7c708c4443deed27f212f8382e8da"
  6269. },
  6270. "dist": {
  6271. "type": "zip",
  6272. "url": "https://api.github.com/repos/top-think/think-queue/zipball/654812b47dd7c708c4443deed27f212f8382e8da",
  6273. "reference": "654812b47dd7c708c4443deed27f212f8382e8da",
  6274. "shasum": "",
  6275. "mirrors": [
  6276. {
  6277. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6278. "preferred": true
  6279. }
  6280. ]
  6281. },
  6282. "require": {
  6283. "ext-json": "*",
  6284. "nesbot/carbon": "^2.16",
  6285. "symfony/process": ">=4.2",
  6286. "topthink/framework": "^6.0 || ^8.0"
  6287. },
  6288. "require-dev": {
  6289. "mockery/mockery": "^1.2",
  6290. "phpunit/phpunit": "^6.2",
  6291. "topthink/think-migration": "^3.0"
  6292. },
  6293. "type": "library",
  6294. "extra": {
  6295. "think": {
  6296. "services": [
  6297. "think\\queue\\Service"
  6298. ],
  6299. "config": {
  6300. "queue": "src/config.php"
  6301. }
  6302. }
  6303. },
  6304. "autoload": {
  6305. "files": [
  6306. "src/common.php"
  6307. ],
  6308. "psr-4": {
  6309. "think\\": "src"
  6310. }
  6311. },
  6312. "notification-url": "https://packagist.org/downloads/",
  6313. "license": [
  6314. "Apache-2.0"
  6315. ],
  6316. "authors": [
  6317. {
  6318. "name": "yunwuxin",
  6319. "email": "448901948@qq.com"
  6320. }
  6321. ],
  6322. "description": "The ThinkPHP6 Queue Package",
  6323. "support": {
  6324. "issues": "https://github.com/top-think/think-queue/issues",
  6325. "source": "https://github.com/top-think/think-queue/tree/v3.0.9"
  6326. },
  6327. "time": "2023-07-03T05:42:01+00:00"
  6328. },
  6329. {
  6330. "name": "topthink/think-swoole",
  6331. "version": "v4.0.9",
  6332. "source": {
  6333. "type": "git",
  6334. "url": "https://github.com/top-think/think-swoole.git",
  6335. "reference": "edc326d92fc738c290d5777f0c544477759fa7f3"
  6336. },
  6337. "dist": {
  6338. "type": "zip",
  6339. "url": "https://api.github.com/repos/top-think/think-swoole/zipball/edc326d92fc738c290d5777f0c544477759fa7f3",
  6340. "reference": "edc326d92fc738c290d5777f0c544477759fa7f3",
  6341. "shasum": "",
  6342. "mirrors": [
  6343. {
  6344. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6345. "preferred": true
  6346. }
  6347. ]
  6348. },
  6349. "require": {
  6350. "ext-json": "*",
  6351. "ext-swoole": ">=4.6",
  6352. "nette/php-generator": "^3.2",
  6353. "open-smf/connection-pool": "~1.0",
  6354. "php": ">=7.4",
  6355. "stechstudio/backoff": "^1.2",
  6356. "swoole/ide-helper": "^4.3",
  6357. "symfony/finder": "^4.3.2|^5.1",
  6358. "topthink/framework": "^6.0"
  6359. },
  6360. "require-dev": {
  6361. "phpunit/phpunit": "^9.5",
  6362. "symfony/var-dumper": "^4.3|^5.1",
  6363. "topthink/think-queue": "^3.0",
  6364. "topthink/think-tracing": "^1.0"
  6365. },
  6366. "type": "library",
  6367. "extra": {
  6368. "think": {
  6369. "services": [
  6370. "think\\swoole\\Service"
  6371. ],
  6372. "config": {
  6373. "swoole": "src/config/swoole.php"
  6374. }
  6375. }
  6376. },
  6377. "autoload": {
  6378. "files": [
  6379. "src/helpers.php"
  6380. ],
  6381. "psr-4": {
  6382. "think\\swoole\\": "src"
  6383. }
  6384. },
  6385. "notification-url": "https://packagist.org/downloads/",
  6386. "license": [
  6387. "Apache-2.0"
  6388. ],
  6389. "authors": [
  6390. {
  6391. "name": "liu21st",
  6392. "email": "liu21st@gmail.com"
  6393. }
  6394. ],
  6395. "description": "Swoole extend for thinkphp",
  6396. "support": {
  6397. "issues": "https://github.com/top-think/think-swoole/issues",
  6398. "source": "https://github.com/top-think/think-swoole/tree/v4.0.9"
  6399. },
  6400. "time": "2023-03-09T07:52:09+00:00"
  6401. },
  6402. {
  6403. "name": "yurunsoft/composer-include-files",
  6404. "version": "v2.0.0",
  6405. "source": {
  6406. "type": "git",
  6407. "url": "https://github.com/Yurunsoft/composer-include-files.git",
  6408. "reference": "277ed077b85d7a9d7b6b73ff148a48d9d676218d"
  6409. },
  6410. "dist": {
  6411. "type": "zip",
  6412. "url": "https://api.github.com/repos/Yurunsoft/composer-include-files/zipball/277ed077b85d7a9d7b6b73ff148a48d9d676218d",
  6413. "reference": "277ed077b85d7a9d7b6b73ff148a48d9d676218d",
  6414. "shasum": "",
  6415. "mirrors": [
  6416. {
  6417. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6418. "preferred": true
  6419. }
  6420. ]
  6421. },
  6422. "require": {
  6423. "composer-plugin-api": "^1.0 || ^2.0"
  6424. },
  6425. "type": "composer-plugin",
  6426. "extra": {
  6427. "class": "ComposerIncludeFiles\\Plugin"
  6428. },
  6429. "autoload": {
  6430. "psr-4": {
  6431. "ComposerIncludeFiles\\": "src"
  6432. }
  6433. },
  6434. "notification-url": "https://packagist.org/downloads/",
  6435. "license": [
  6436. "MIT"
  6437. ],
  6438. "authors": [
  6439. {
  6440. "name": "Tim Robertson",
  6441. "email": "funkjedi@gmail.com"
  6442. }
  6443. ],
  6444. "description": "Include files at a higher priority than autoload files.",
  6445. "homepage": "https://github.com/funkjedi/composer-include-files",
  6446. "keywords": [
  6447. "autoload",
  6448. "composer"
  6449. ],
  6450. "support": {
  6451. "source": "https://github.com/Yurunsoft/composer-include-files/tree/v2.0.0"
  6452. },
  6453. "time": "2020-10-26T05:59:11+00:00"
  6454. },
  6455. {
  6456. "name": "yurunsoft/guzzle-swoole",
  6457. "version": "v2.2.4",
  6458. "source": {
  6459. "type": "git",
  6460. "url": "https://github.com/Yurunsoft/Guzzle-Swoole.git",
  6461. "reference": "89bb58446aa0a3d6448de3943b40a5d79b18cbda"
  6462. },
  6463. "dist": {
  6464. "type": "zip",
  6465. "url": "https://api.github.com/repos/Yurunsoft/Guzzle-Swoole/zipball/89bb58446aa0a3d6448de3943b40a5d79b18cbda",
  6466. "reference": "89bb58446aa0a3d6448de3943b40a5d79b18cbda",
  6467. "shasum": "",
  6468. "mirrors": [
  6469. {
  6470. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6471. "preferred": true
  6472. }
  6473. ]
  6474. },
  6475. "require": {
  6476. "composer-plugin-api": "^1.0|^2.0",
  6477. "guzzlehttp/guzzle": "~6.0|~7.0",
  6478. "guzzlehttp/ringphp": "~1.0",
  6479. "php": ">=7.1",
  6480. "yurunsoft/composer-include-files": "^1.0|^2.0",
  6481. "yurunsoft/yurun-http": "^4.0"
  6482. },
  6483. "require-dev": {
  6484. "composer/composer": "^1.0|^2.0",
  6485. "phpunit/phpunit": ">=7",
  6486. "swoole/ide-helper": "*"
  6487. },
  6488. "type": "composer-plugin",
  6489. "extra": {
  6490. "class": "Yurun\\Util\\Swoole\\Guzzle\\Plugin\\Plugin",
  6491. "include_files": [
  6492. "src/load_include.php",
  6493. "src/functions.php"
  6494. ]
  6495. },
  6496. "autoload": {
  6497. "psr-4": {
  6498. "GuzzleHttp\\": "src/GuzzleHttp/",
  6499. "Yurun\\Util\\Swoole\\Guzzle\\": "src/"
  6500. }
  6501. },
  6502. "notification-url": "https://packagist.org/downloads/",
  6503. "license": [
  6504. "MIT"
  6505. ],
  6506. "description": "让 Guzzle 支持 Swoole 协程,可以用于 ElasticSearch、AWS 等 SDK 当中",
  6507. "support": {
  6508. "issues": "https://github.com/Yurunsoft/Guzzle-Swoole/issues",
  6509. "source": "https://github.com/Yurunsoft/Guzzle-Swoole/tree/v2.2.4"
  6510. },
  6511. "time": "2022-01-10T08:45:12+00:00"
  6512. },
  6513. {
  6514. "name": "yurunsoft/yurun-http",
  6515. "version": "v4.4.4",
  6516. "source": {
  6517. "type": "git",
  6518. "url": "https://github.com/Yurunsoft/YurunHttp.git",
  6519. "reference": "427d17c1e870d67e47a51ddd231932da2b041b5c"
  6520. },
  6521. "dist": {
  6522. "type": "zip",
  6523. "url": "https://api.github.com/repos/Yurunsoft/YurunHttp/zipball/427d17c1e870d67e47a51ddd231932da2b041b5c",
  6524. "reference": "427d17c1e870d67e47a51ddd231932da2b041b5c",
  6525. "shasum": "",
  6526. "mirrors": [
  6527. {
  6528. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6529. "preferred": true
  6530. }
  6531. ]
  6532. },
  6533. "require": {
  6534. "php": ">=5.5.0",
  6535. "psr/http-message": "~1.0",
  6536. "psr/log": "~1.0|~2.0|~3.0"
  6537. },
  6538. "require-dev": {
  6539. "monolog/monolog": "*",
  6540. "phpunit/phpunit": ">=4 <9.7",
  6541. "swoole/ide-helper": "^4.5",
  6542. "workerman/workerman": "^4.0"
  6543. },
  6544. "type": "library",
  6545. "autoload": {
  6546. "psr-4": {
  6547. "Yurun\\Util\\": "./src/"
  6548. }
  6549. },
  6550. "notification-url": "https://packagist.org/downloads/",
  6551. "license": [
  6552. "MIT"
  6553. ],
  6554. "description": "YurunHttp 是开源的 PHP HTTP 类库,支持链式操作,简单易用。支持 Curl、Swoole,支持 Http、Http2、WebSocket!",
  6555. "support": {
  6556. "issues": "https://github.com/Yurunsoft/YurunHttp/issues",
  6557. "source": "https://github.com/Yurunsoft/YurunHttp/tree/v4.4.4"
  6558. },
  6559. "time": "2023-10-16T03:37:26+00:00"
  6560. }
  6561. ],
  6562. "packages-dev": [
  6563. {
  6564. "name": "symfony/polyfill-php72",
  6565. "version": "v1.31.0",
  6566. "source": {
  6567. "type": "git",
  6568. "url": "https://github.com/symfony/polyfill-php72.git",
  6569. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce"
  6570. },
  6571. "dist": {
  6572. "type": "zip",
  6573. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  6574. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  6575. "shasum": "",
  6576. "mirrors": [
  6577. {
  6578. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6579. "preferred": true
  6580. }
  6581. ]
  6582. },
  6583. "require": {
  6584. "php": ">=7.2"
  6585. },
  6586. "type": "metapackage",
  6587. "extra": {
  6588. "thanks": {
  6589. "name": "symfony/polyfill",
  6590. "url": "https://github.com/symfony/polyfill"
  6591. }
  6592. },
  6593. "notification-url": "https://packagist.org/downloads/",
  6594. "license": [
  6595. "MIT"
  6596. ],
  6597. "authors": [
  6598. {
  6599. "name": "Nicolas Grekas",
  6600. "email": "p@tchwork.com"
  6601. },
  6602. {
  6603. "name": "Symfony Community",
  6604. "homepage": "https://symfony.com/contributors"
  6605. }
  6606. ],
  6607. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6608. "homepage": "https://symfony.com",
  6609. "keywords": [
  6610. "compatibility",
  6611. "polyfill",
  6612. "portable",
  6613. "shim"
  6614. ],
  6615. "support": {
  6616. "source": "https://github.com/symfony/polyfill-php72/tree/v1.31.0"
  6617. },
  6618. "funding": [
  6619. {
  6620. "url": "https://symfony.com/sponsor",
  6621. "type": "custom"
  6622. },
  6623. {
  6624. "url": "https://github.com/fabpot",
  6625. "type": "github"
  6626. },
  6627. {
  6628. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6629. "type": "tidelift"
  6630. }
  6631. ],
  6632. "time": "2024-09-09T11:45:10+00:00"
  6633. },
  6634. {
  6635. "name": "symfony/var-dumper",
  6636. "version": "v4.4.47",
  6637. "source": {
  6638. "type": "git",
  6639. "url": "https://github.com/symfony/var-dumper.git",
  6640. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63"
  6641. },
  6642. "dist": {
  6643. "type": "zip",
  6644. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1069c7a3fca74578022fab6f81643248d02f8e63",
  6645. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63",
  6646. "shasum": "",
  6647. "mirrors": [
  6648. {
  6649. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6650. "preferred": true
  6651. }
  6652. ]
  6653. },
  6654. "require": {
  6655. "php": ">=7.1.3",
  6656. "symfony/polyfill-mbstring": "~1.0",
  6657. "symfony/polyfill-php72": "~1.5",
  6658. "symfony/polyfill-php80": "^1.16"
  6659. },
  6660. "conflict": {
  6661. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  6662. "symfony/console": "<3.4"
  6663. },
  6664. "require-dev": {
  6665. "ext-iconv": "*",
  6666. "symfony/console": "^3.4|^4.0|^5.0",
  6667. "symfony/process": "^4.4|^5.0",
  6668. "twig/twig": "^1.43|^2.13|^3.0.4"
  6669. },
  6670. "suggest": {
  6671. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6672. "ext-intl": "To show region name in time zone dump",
  6673. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6674. },
  6675. "bin": [
  6676. "Resources/bin/var-dump-server"
  6677. ],
  6678. "type": "library",
  6679. "autoload": {
  6680. "files": [
  6681. "Resources/functions/dump.php"
  6682. ],
  6683. "psr-4": {
  6684. "Symfony\\Component\\VarDumper\\": ""
  6685. },
  6686. "exclude-from-classmap": [
  6687. "/Tests/"
  6688. ]
  6689. },
  6690. "notification-url": "https://packagist.org/downloads/",
  6691. "license": [
  6692. "MIT"
  6693. ],
  6694. "authors": [
  6695. {
  6696. "name": "Nicolas Grekas",
  6697. "email": "p@tchwork.com"
  6698. },
  6699. {
  6700. "name": "Symfony Community",
  6701. "homepage": "https://symfony.com/contributors"
  6702. }
  6703. ],
  6704. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  6705. "homepage": "https://symfony.com",
  6706. "keywords": [
  6707. "debug",
  6708. "dump"
  6709. ],
  6710. "support": {
  6711. "source": "https://github.com/symfony/var-dumper/tree/v4.4.47"
  6712. },
  6713. "funding": [
  6714. {
  6715. "url": "https://symfony.com/sponsor",
  6716. "type": "custom"
  6717. },
  6718. {
  6719. "url": "https://github.com/fabpot",
  6720. "type": "github"
  6721. },
  6722. {
  6723. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6724. "type": "tidelift"
  6725. }
  6726. ],
  6727. "time": "2022-10-03T15:15:11+00:00"
  6728. },
  6729. {
  6730. "name": "topthink/think-trace",
  6731. "version": "v1.6",
  6732. "source": {
  6733. "type": "git",
  6734. "url": "https://github.com/top-think/think-trace.git",
  6735. "reference": "136cd5d97e8bdb780e4b5c1637c588ed7ca3e142"
  6736. },
  6737. "dist": {
  6738. "type": "zip",
  6739. "url": "https://api.github.com/repos/top-think/think-trace/zipball/136cd5d97e8bdb780e4b5c1637c588ed7ca3e142",
  6740. "reference": "136cd5d97e8bdb780e4b5c1637c588ed7ca3e142",
  6741. "shasum": "",
  6742. "mirrors": [
  6743. {
  6744. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6745. "preferred": true
  6746. }
  6747. ]
  6748. },
  6749. "require": {
  6750. "php": ">=7.1.0",
  6751. "topthink/framework": "^6.0|^8.0"
  6752. },
  6753. "type": "library",
  6754. "extra": {
  6755. "think": {
  6756. "services": [
  6757. "think\\trace\\Service"
  6758. ],
  6759. "config": {
  6760. "trace": "src/config.php"
  6761. }
  6762. }
  6763. },
  6764. "autoload": {
  6765. "psr-4": {
  6766. "think\\trace\\": "src"
  6767. }
  6768. },
  6769. "notification-url": "https://packagist.org/downloads/",
  6770. "license": [
  6771. "Apache-2.0"
  6772. ],
  6773. "authors": [
  6774. {
  6775. "name": "liu21st",
  6776. "email": "liu21st@gmail.com"
  6777. }
  6778. ],
  6779. "description": "thinkphp debug trace",
  6780. "support": {
  6781. "issues": "https://github.com/top-think/think-trace/issues",
  6782. "source": "https://github.com/top-think/think-trace/tree/v1.6"
  6783. },
  6784. "time": "2023-02-07T08:36:32+00:00"
  6785. }
  6786. ],
  6787. "aliases": [],
  6788. "minimum-stability": "stable",
  6789. "stability-flags": [],
  6790. "prefer-stable": false,
  6791. "prefer-lowest": false,
  6792. "platform": {
  6793. "php": ">=7.2.5",
  6794. "ext-libxml": "*",
  6795. "ext-simplexml": "*",
  6796. "ext-curl": "*",
  6797. "ext-json": "*",
  6798. "ext-zlib": "*",
  6799. "ext-redis": "*",
  6800. "ext-bcmath": "*",
  6801. "ext-gd": "*",
  6802. "ext-iconv": "*",
  6803. "ext-openssl": "*"
  6804. },
  6805. "platform-dev": [],
  6806. "plugin-api-version": "2.0.0"
  6807. }